From cd8d4d4471e331559b3523f423412df95912820c Mon Sep 17 00:00:00 2001 From: Christoph Hansknecht Date: Thu, 21 Nov 2024 22:49:32 +0100 Subject: [PATCH 1/2] Add support for "for-from loops" with "by" argument --- grammar.js | 4 + src/grammar.json | 21 + src/node-types.json | 18 + src/parser.c | 325851 +++++++++++++++++++------------------- test/corpus/cython.txt | 20 + 5 files changed, 165789 insertions(+), 160125 deletions(-) diff --git a/grammar.js b/grammar.js index 82b137a..87c889d 100644 --- a/grammar.js +++ b/grammar.js @@ -729,6 +729,10 @@ module.exports = grammar(Python, { choice("in", "from"), )), field("right", $._expressions), + optional(seq( + "by", + $._expressions, + )), ":", field("body", $._suite), field("alternative", optional($.else_clause)), diff --git a/src/grammar.json b/src/grammar.json index fad94b6..d5a6dc2 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1212,6 +1212,27 @@ "name": "_expressions" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "by" + }, + { + "type": "SYMBOL", + "name": "_expressions" + } + ] + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": ":" diff --git a/src/node-types.json b/src/node-types.json index cbfd7e6..662462c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2358,6 +2358,20 @@ } ] } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "expression_list", + "named": true + } + ] } }, { @@ -4648,6 +4662,10 @@ "type": "break", "named": false }, + { + "type": "by", + "named": false + }, { "type": "case", "named": false diff --git a/src/parser.c b/src/parser.c index e29eb23..ecfcd1c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5755 -#define LARGE_STATE_COUNT 1063 -#define SYMBOL_COUNT 398 +#define STATE_COUNT 5827 +#define LARGE_STATE_COUNT 1079 +#define SYMBOL_COUNT 399 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 168 +#define TOKEN_COUNT 169 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 33 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 264 +#define PRODUCTION_ID_COUNT 280 enum ts_symbol_identifiers { sym_identifier = 1, @@ -47,375 +47,376 @@ enum ts_symbol_identifiers { anon_sym_async = 29, anon_sym_for = 30, anon_sym_in = 31, - anon_sym_while = 32, - anon_sym_try = 33, - anon_sym_except = 34, - anon_sym_except_STAR = 35, - anon_sym_finally = 36, - anon_sym_with = 37, - anon_sym_def = 38, - anon_sym_DASH_GT = 39, - anon_sym_STAR_STAR = 40, - anon_sym_global = 41, - anon_sym_nonlocal = 42, - anon_sym_exec = 43, - anon_sym_type = 44, - anon_sym_EQ = 45, - anon_sym_class = 46, - anon_sym_LBRACK = 47, - anon_sym_RBRACK = 48, - anon_sym_AT = 49, - anon_sym_DASH = 50, - anon_sym__ = 51, - anon_sym_PIPE = 52, - anon_sym_LBRACE = 53, - anon_sym_RBRACE = 54, - anon_sym_PLUS = 55, - anon_sym_not = 56, - anon_sym_and = 57, - anon_sym_or = 58, - anon_sym_SLASH = 59, - anon_sym_PERCENT = 60, - anon_sym_SLASH_SLASH = 61, - anon_sym_AMP = 62, - anon_sym_CARET = 63, - anon_sym_LT_LT = 64, - anon_sym_TILDE = 65, - anon_sym_is = 66, - anon_sym_LT = 67, - anon_sym_LT_EQ = 68, - anon_sym_EQ_EQ = 69, - anon_sym_BANG_EQ = 70, - anon_sym_GT_EQ = 71, - anon_sym_GT = 72, - anon_sym_LT_GT = 73, - anon_sym_lambda = 74, - anon_sym_PLUS_EQ = 75, - anon_sym_DASH_EQ = 76, - anon_sym_STAR_EQ = 77, - anon_sym_SLASH_EQ = 78, - anon_sym_AT_EQ = 79, - anon_sym_SLASH_SLASH_EQ = 80, - anon_sym_PERCENT_EQ = 81, - anon_sym_STAR_STAR_EQ = 82, - anon_sym_GT_GT_EQ = 83, - anon_sym_LT_LT_EQ = 84, - anon_sym_AMP_EQ = 85, - anon_sym_CARET_EQ = 86, - anon_sym_PIPE_EQ = 87, - anon_sym_yield = 88, - anon_sym_DOT_DOT_DOT = 89, - anon_sym_None = 90, - sym_escape_sequence = 91, - anon_sym_BSLASH = 92, - aux_sym_format_specifier_token1 = 93, - sym_type_conversion = 94, - sym_integer = 95, - sym_float = 96, - anon_sym_await = 97, - anon_sym_api = 98, - sym_true = 99, - sym_false = 100, - sym_comment = 101, - sym_line_continuation = 102, - anon_sym_PYTHON = 103, - aux_sym_run_directive_token1 = 104, - anon_sym_object = 105, - anon_sym_property = 106, - anon_sym_include = 107, - anon_sym_DEF = 108, - anon_sym_cdef = 109, - anon_sym_cpdef = 110, - anon_sym_extern = 111, - anon_sym_namespace = 112, - anon_sym_nogil = 113, - anon_sym_int = 114, - anon_sym_double = 115, - anon_sym_complex = 116, - anon_sym_operator = 117, - anon_sym_co_await = 118, - anon_sym_BANG = 119, - anon_sym_LT_EQ_GT = 120, - anon_sym_AMP_AMP = 121, - anon_sym_PIPE_PIPE = 122, - anon_sym_PLUS_PLUS = 123, - anon_sym_DASH_DASH = 124, - anon_sym_DASH_GT_STAR = 125, - anon_sym_LPAREN_RPAREN = 126, - anon_sym_LBRACK_RBRACK = 127, - anon_sym_xor = 128, - anon_sym_bitand = 129, - anon_sym_bitor = 130, - anon_sym_compl = 131, - anon_sym_xor_eq = 132, - anon_sym_and_eq = 133, - anon_sym_or_eq = 134, - anon_sym_not_eq = 135, - anon_sym_new = 136, - anon_sym_delete = 137, - anon_sym_DQUOTE_DQUOTE = 138, - anon_sym_signed = 139, - anon_sym_unsigned = 140, - anon_sym_char = 141, - anon_sym_short = 142, - anon_sym_long = 143, - anon_sym_const = 144, - anon_sym_volatile = 145, - anon_sym___stdcall = 146, - anon_sym_ctypedef = 147, - anon_sym_gil = 148, - anon_sym_QMARK = 149, - anon_sym_noexcept = 150, - anon_sym_struct = 151, - anon_sym_union = 152, - anon_sym_enum = 153, - anon_sym_cppclass = 154, - anon_sym_fused = 155, - anon_sym_public = 156, - anon_sym_packed = 157, - anon_sym_inline = 158, - anon_sym_readonly = 159, - anon_sym_sizeof = 160, - sym__newline = 161, - sym__indent = 162, - sym__dedent = 163, - sym_string_start = 164, - sym__string_content = 165, - sym_escape_interpolation = 166, - sym_string_end = 167, - sym_module = 168, - sym__statement = 169, - sym__simple_statements = 170, - sym_import_statement = 171, - sym_import_prefix = 172, - sym_relative_import = 173, - sym_future_import_statement = 174, - sym_import_from_statement = 175, - sym__import_list = 176, - sym_aliased_import = 177, - sym_wildcard_import = 178, - sym_print_statement = 179, - sym_chevron = 180, - sym_assert_statement = 181, - sym_expression_statement = 182, - sym_named_expression = 183, - sym__named_expression_lhs = 184, - sym_return_statement = 185, - sym_delete_statement = 186, - sym_raise_statement = 187, - sym_pass_statement = 188, - sym_break_statement = 189, - sym_continue_statement = 190, - sym_if_statement = 191, - sym_elif_clause = 192, - sym_else_clause = 193, - sym_match_statement = 194, - sym__match_block = 195, - sym_case_clause = 196, - sym_for_statement = 197, - sym_while_statement = 198, - sym_try_statement = 199, - sym_except_clause = 200, - sym_except_group_clause = 201, - sym_finally_clause = 202, - sym_with_statement = 203, - sym_with_clause = 204, - sym_with_item = 205, - sym_function_definition = 206, - sym_parameters = 207, - sym_lambda_parameters = 208, - sym_list_splat = 209, - sym_dictionary_splat = 210, - sym_global_statement = 211, - sym_nonlocal_statement = 212, - sym_exec_statement = 213, - sym_type_alias_statement = 214, - sym_class_definition = 215, - sym_type_parameter = 216, - sym_parenthesized_list_splat = 217, - sym_argument_list = 218, - sym_decorated_definition = 219, - sym_decorator = 220, - sym_block = 221, - sym_expression_list = 222, - sym_dotted_name = 223, - sym_case_pattern = 224, - sym__simple_pattern = 225, - sym__as_pattern = 226, - sym_union_pattern = 227, - sym__list_pattern = 228, - sym__tuple_pattern = 229, - sym_dict_pattern = 230, - sym__key_value_pattern = 231, - sym_keyword_pattern = 232, - sym_splat_pattern = 233, - sym_class_pattern = 234, - sym_complex_pattern = 235, - sym__parameters = 236, - sym__patterns = 237, - sym_parameter = 238, - sym_pattern = 239, - sym_tuple_pattern = 240, - sym_list_pattern = 241, - sym_default_parameter = 242, - sym_typed_default_parameter = 243, - sym_list_splat_pattern = 244, - sym_dictionary_splat_pattern = 245, - sym_as_pattern = 246, - sym__expression_within_for_in_clause = 247, - sym_expression = 248, - sym_primary_expression = 249, - sym_not_operator = 250, - sym_boolean_operator = 251, - sym_binary_operator = 252, - sym_unary_operator = 253, - sym__not_in = 254, - sym__is_not = 255, - sym_comparison_operator = 256, - sym_lambda = 257, - sym_lambda_within_for_in_clause = 258, - sym_assignment = 259, - sym_augmented_assignment = 260, - sym_pattern_list = 261, - sym__right_hand_side = 262, - sym_yield = 263, - sym_attribute = 264, - sym_subscript = 265, - sym_slice = 266, - sym_ellipsis = 267, - sym_call = 268, - sym_typed_parameter = 269, - sym_type = 270, - sym_splat_type = 271, - sym_generic_type = 272, - sym_union_type = 273, - sym_constrained_type = 274, - sym_member_type = 275, - sym_keyword_argument = 276, - sym_list = 277, - sym_set = 278, - sym_tuple = 279, - sym_dictionary = 280, - sym_pair = 281, - sym_list_comprehension = 282, - sym_dictionary_comprehension = 283, - sym_set_comprehension = 284, - sym_generator_expression = 285, - sym__comprehension_clauses = 286, - sym_parenthesized_expression = 287, - sym__collection_elements = 288, - sym_for_in_clause = 289, - sym_if_clause = 290, - sym_conditional_expression = 291, - sym_concatenated_string = 292, - sym_string = 293, - sym_string_content = 294, - sym_interpolation = 295, - sym__f_expression = 296, - sym__not_escape_sequence = 297, - sym_format_specifier = 298, - sym_none = 299, - sym_await = 300, - sym_positional_separator = 301, - sym_keyword_separator = 302, - sym_run_directive = 303, - sym_external_definition = 304, - sym_property_definition = 305, - sym_include_statement = 306, - sym_def_statement = 307, - sym_cdef_statement = 308, - sym_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_c_function_argument_type = 334, - sym__typedargument = 335, - sym__typedargslist = 336, - sym_gil_spec = 337, - sym_exception_value = 338, - sym_struct = 339, - sym_struct_suite = 340, - sym_enum = 341, - sym_cppclass = 342, - sym__cppclass_suite = 343, - sym_fused = 344, - sym_storageclass = 345, - sym_new_expression = 346, - sym_sizeof_expression = 347, - sym_cast_expression = 348, - aux_sym_module_repeat1 = 349, - aux_sym__simple_statements_repeat1 = 350, - aux_sym_import_prefix_repeat1 = 351, - aux_sym__import_list_repeat1 = 352, - aux_sym_print_statement_repeat1 = 353, - aux_sym_assert_statement_repeat1 = 354, - aux_sym_if_statement_repeat1 = 355, - aux_sym_match_statement_repeat1 = 356, - aux_sym__match_block_repeat1 = 357, - aux_sym_case_clause_repeat1 = 358, - aux_sym_try_statement_repeat1 = 359, - aux_sym_try_statement_repeat2 = 360, - aux_sym_with_clause_repeat1 = 361, - aux_sym_global_statement_repeat1 = 362, - aux_sym_class_definition_repeat1 = 363, - aux_sym_class_definition_repeat2 = 364, - aux_sym_type_parameter_repeat1 = 365, - aux_sym_argument_list_repeat1 = 366, - aux_sym_decorated_definition_repeat1 = 367, - aux_sym_union_pattern_repeat1 = 368, - aux_sym_dict_pattern_repeat1 = 369, - aux_sym__parameters_repeat1 = 370, - aux_sym__patterns_repeat1 = 371, - aux_sym_comparison_operator_repeat1 = 372, - aux_sym_subscript_repeat1 = 373, - aux_sym_dictionary_repeat1 = 374, - aux_sym__comprehension_clauses_repeat1 = 375, - aux_sym__collection_elements_repeat1 = 376, - aux_sym_for_in_clause_repeat1 = 377, - aux_sym_concatenated_string_repeat1 = 378, - aux_sym_string_repeat1 = 379, - aux_sym_string_content_repeat1 = 380, - aux_sym_format_specifier_repeat1 = 381, - aux_sym_external_definition_repeat1 = 382, - aux_sym_cdef_definition_block_repeat1 = 383, - aux_sym_cvar_def_repeat1 = 384, - aux_sym_extern_suite_repeat1 = 385, - aux_sym_cvar_decl_repeat1 = 386, - aux_sym_cvar_decl_repeat2 = 387, - aux_sym_function_pointer_type_repeat1 = 388, - aux_sym_c_type_repeat1 = 389, - aux_sym_type_qualifier_repeat1 = 390, - aux_sym_type_index_repeat1 = 391, - aux_sym_type_index_repeat2 = 392, - aux_sym_template_params_repeat1 = 393, - aux_sym__typedargslist_repeat1 = 394, - aux_sym_struct_suite_repeat1 = 395, - aux_sym__cppclass_suite_repeat1 = 396, - aux_sym_fused_repeat1 = 397, - alias_sym_as_pattern_target = 398, - alias_sym_format_expression = 399, - anon_alias_sym_longlong = 400, + anon_sym_by = 32, + anon_sym_while = 33, + anon_sym_try = 34, + anon_sym_except = 35, + anon_sym_except_STAR = 36, + anon_sym_finally = 37, + anon_sym_with = 38, + anon_sym_def = 39, + anon_sym_DASH_GT = 40, + anon_sym_STAR_STAR = 41, + anon_sym_global = 42, + anon_sym_nonlocal = 43, + anon_sym_exec = 44, + anon_sym_type = 45, + anon_sym_EQ = 46, + anon_sym_class = 47, + anon_sym_LBRACK = 48, + anon_sym_RBRACK = 49, + anon_sym_AT = 50, + anon_sym_DASH = 51, + anon_sym__ = 52, + anon_sym_PIPE = 53, + anon_sym_LBRACE = 54, + anon_sym_RBRACE = 55, + anon_sym_PLUS = 56, + anon_sym_not = 57, + anon_sym_and = 58, + anon_sym_or = 59, + anon_sym_SLASH = 60, + anon_sym_PERCENT = 61, + anon_sym_SLASH_SLASH = 62, + anon_sym_AMP = 63, + anon_sym_CARET = 64, + anon_sym_LT_LT = 65, + anon_sym_TILDE = 66, + anon_sym_is = 67, + anon_sym_LT = 68, + anon_sym_LT_EQ = 69, + anon_sym_EQ_EQ = 70, + anon_sym_BANG_EQ = 71, + anon_sym_GT_EQ = 72, + anon_sym_GT = 73, + anon_sym_LT_GT = 74, + anon_sym_lambda = 75, + anon_sym_PLUS_EQ = 76, + anon_sym_DASH_EQ = 77, + anon_sym_STAR_EQ = 78, + anon_sym_SLASH_EQ = 79, + anon_sym_AT_EQ = 80, + anon_sym_SLASH_SLASH_EQ = 81, + anon_sym_PERCENT_EQ = 82, + anon_sym_STAR_STAR_EQ = 83, + anon_sym_GT_GT_EQ = 84, + anon_sym_LT_LT_EQ = 85, + anon_sym_AMP_EQ = 86, + anon_sym_CARET_EQ = 87, + anon_sym_PIPE_EQ = 88, + anon_sym_yield = 89, + anon_sym_DOT_DOT_DOT = 90, + anon_sym_None = 91, + sym_escape_sequence = 92, + anon_sym_BSLASH = 93, + aux_sym_format_specifier_token1 = 94, + sym_type_conversion = 95, + sym_integer = 96, + sym_float = 97, + anon_sym_await = 98, + anon_sym_api = 99, + sym_true = 100, + sym_false = 101, + sym_comment = 102, + sym_line_continuation = 103, + anon_sym_PYTHON = 104, + aux_sym_run_directive_token1 = 105, + anon_sym_object = 106, + anon_sym_property = 107, + anon_sym_include = 108, + anon_sym_DEF = 109, + anon_sym_cdef = 110, + anon_sym_cpdef = 111, + anon_sym_extern = 112, + anon_sym_namespace = 113, + anon_sym_nogil = 114, + anon_sym_int = 115, + anon_sym_double = 116, + anon_sym_complex = 117, + anon_sym_operator = 118, + anon_sym_co_await = 119, + anon_sym_BANG = 120, + anon_sym_LT_EQ_GT = 121, + anon_sym_AMP_AMP = 122, + anon_sym_PIPE_PIPE = 123, + anon_sym_PLUS_PLUS = 124, + anon_sym_DASH_DASH = 125, + anon_sym_DASH_GT_STAR = 126, + anon_sym_LPAREN_RPAREN = 127, + anon_sym_LBRACK_RBRACK = 128, + anon_sym_xor = 129, + anon_sym_bitand = 130, + anon_sym_bitor = 131, + anon_sym_compl = 132, + anon_sym_xor_eq = 133, + anon_sym_and_eq = 134, + anon_sym_or_eq = 135, + anon_sym_not_eq = 136, + anon_sym_new = 137, + anon_sym_delete = 138, + anon_sym_DQUOTE_DQUOTE = 139, + anon_sym_signed = 140, + anon_sym_unsigned = 141, + anon_sym_char = 142, + anon_sym_short = 143, + anon_sym_long = 144, + anon_sym_const = 145, + anon_sym_volatile = 146, + anon_sym___stdcall = 147, + anon_sym_ctypedef = 148, + anon_sym_gil = 149, + anon_sym_QMARK = 150, + anon_sym_noexcept = 151, + anon_sym_struct = 152, + anon_sym_union = 153, + anon_sym_enum = 154, + anon_sym_cppclass = 155, + anon_sym_fused = 156, + anon_sym_public = 157, + anon_sym_packed = 158, + anon_sym_inline = 159, + anon_sym_readonly = 160, + anon_sym_sizeof = 161, + sym__newline = 162, + sym__indent = 163, + sym__dedent = 164, + sym_string_start = 165, + sym__string_content = 166, + sym_escape_interpolation = 167, + sym_string_end = 168, + sym_module = 169, + sym__statement = 170, + sym__simple_statements = 171, + sym_import_statement = 172, + sym_import_prefix = 173, + sym_relative_import = 174, + sym_future_import_statement = 175, + sym_import_from_statement = 176, + sym__import_list = 177, + sym_aliased_import = 178, + sym_wildcard_import = 179, + sym_print_statement = 180, + sym_chevron = 181, + sym_assert_statement = 182, + sym_expression_statement = 183, + sym_named_expression = 184, + sym__named_expression_lhs = 185, + sym_return_statement = 186, + sym_delete_statement = 187, + sym_raise_statement = 188, + sym_pass_statement = 189, + sym_break_statement = 190, + sym_continue_statement = 191, + sym_if_statement = 192, + sym_elif_clause = 193, + sym_else_clause = 194, + sym_match_statement = 195, + sym__match_block = 196, + sym_case_clause = 197, + sym_for_statement = 198, + sym_while_statement = 199, + sym_try_statement = 200, + sym_except_clause = 201, + sym_except_group_clause = 202, + sym_finally_clause = 203, + sym_with_statement = 204, + sym_with_clause = 205, + sym_with_item = 206, + sym_function_definition = 207, + sym_parameters = 208, + sym_lambda_parameters = 209, + sym_list_splat = 210, + sym_dictionary_splat = 211, + sym_global_statement = 212, + sym_nonlocal_statement = 213, + sym_exec_statement = 214, + sym_type_alias_statement = 215, + sym_class_definition = 216, + sym_type_parameter = 217, + sym_parenthesized_list_splat = 218, + sym_argument_list = 219, + sym_decorated_definition = 220, + sym_decorator = 221, + sym_block = 222, + sym_expression_list = 223, + sym_dotted_name = 224, + sym_case_pattern = 225, + sym__simple_pattern = 226, + sym__as_pattern = 227, + sym_union_pattern = 228, + sym__list_pattern = 229, + sym__tuple_pattern = 230, + sym_dict_pattern = 231, + sym__key_value_pattern = 232, + sym_keyword_pattern = 233, + sym_splat_pattern = 234, + sym_class_pattern = 235, + sym_complex_pattern = 236, + sym__parameters = 237, + sym__patterns = 238, + sym_parameter = 239, + sym_pattern = 240, + sym_tuple_pattern = 241, + sym_list_pattern = 242, + sym_default_parameter = 243, + sym_typed_default_parameter = 244, + sym_list_splat_pattern = 245, + sym_dictionary_splat_pattern = 246, + sym_as_pattern = 247, + sym__expression_within_for_in_clause = 248, + sym_expression = 249, + sym_primary_expression = 250, + sym_not_operator = 251, + sym_boolean_operator = 252, + sym_binary_operator = 253, + sym_unary_operator = 254, + sym__not_in = 255, + sym__is_not = 256, + sym_comparison_operator = 257, + sym_lambda = 258, + sym_lambda_within_for_in_clause = 259, + sym_assignment = 260, + sym_augmented_assignment = 261, + sym_pattern_list = 262, + sym__right_hand_side = 263, + sym_yield = 264, + sym_attribute = 265, + sym_subscript = 266, + sym_slice = 267, + sym_ellipsis = 268, + sym_call = 269, + sym_typed_parameter = 270, + sym_type = 271, + sym_splat_type = 272, + sym_generic_type = 273, + sym_union_type = 274, + sym_constrained_type = 275, + sym_member_type = 276, + sym_keyword_argument = 277, + sym_list = 278, + sym_set = 279, + sym_tuple = 280, + sym_dictionary = 281, + sym_pair = 282, + sym_list_comprehension = 283, + sym_dictionary_comprehension = 284, + sym_set_comprehension = 285, + sym_generator_expression = 286, + sym__comprehension_clauses = 287, + sym_parenthesized_expression = 288, + sym__collection_elements = 289, + sym_for_in_clause = 290, + sym_if_clause = 291, + sym_conditional_expression = 292, + sym_concatenated_string = 293, + sym_string = 294, + sym_string_content = 295, + sym_interpolation = 296, + sym__f_expression = 297, + sym__not_escape_sequence = 298, + sym_format_specifier = 299, + sym_none = 300, + sym_await = 301, + sym_positional_separator = 302, + sym_keyword_separator = 303, + sym_run_directive = 304, + sym_external_definition = 305, + sym_property_definition = 306, + sym_include_statement = 307, + sym_def_statement = 308, + sym_cdef_statement = 309, + sym_cdef_definition_block = 310, + sym_cvar_def = 311, + sym_cdef_type_declaration = 312, + sym_extern_block = 313, + sym_extern_suite = 314, + sym_ctype_declaration = 315, + sym_cvar_decl = 316, + sym_int_type = 317, + sym_operator_name = 318, + sym__signedness = 319, + sym__longness = 320, + sym_function_pointer_type = 321, + sym_c_type = 322, + sym_c_name = 323, + sym_maybe_typed_name = 324, + sym_c_function_pointer_name = 325, + sym_type_qualifier = 326, + sym_type_index = 327, + sym_memory_view_index = 328, + sym_ctypedef_statement = 329, + sym_c_function_definition = 330, + sym_template_default = 331, + sym_template_param = 332, + sym_template_params = 333, + sym_c_parameters = 334, + sym_c_function_argument_type = 335, + sym__typedargument = 336, + sym__typedargslist = 337, + sym_gil_spec = 338, + sym_exception_value = 339, + sym_struct = 340, + sym_struct_suite = 341, + sym_enum = 342, + sym_cppclass = 343, + sym__cppclass_suite = 344, + sym_fused = 345, + sym_storageclass = 346, + sym_new_expression = 347, + sym_sizeof_expression = 348, + sym_cast_expression = 349, + aux_sym_module_repeat1 = 350, + aux_sym__simple_statements_repeat1 = 351, + aux_sym_import_prefix_repeat1 = 352, + aux_sym__import_list_repeat1 = 353, + aux_sym_print_statement_repeat1 = 354, + aux_sym_assert_statement_repeat1 = 355, + aux_sym_if_statement_repeat1 = 356, + aux_sym_match_statement_repeat1 = 357, + aux_sym__match_block_repeat1 = 358, + aux_sym_case_clause_repeat1 = 359, + aux_sym_try_statement_repeat1 = 360, + aux_sym_try_statement_repeat2 = 361, + aux_sym_with_clause_repeat1 = 362, + aux_sym_global_statement_repeat1 = 363, + aux_sym_class_definition_repeat1 = 364, + aux_sym_class_definition_repeat2 = 365, + aux_sym_type_parameter_repeat1 = 366, + aux_sym_argument_list_repeat1 = 367, + aux_sym_decorated_definition_repeat1 = 368, + aux_sym_union_pattern_repeat1 = 369, + aux_sym_dict_pattern_repeat1 = 370, + aux_sym__parameters_repeat1 = 371, + aux_sym__patterns_repeat1 = 372, + aux_sym_comparison_operator_repeat1 = 373, + aux_sym_subscript_repeat1 = 374, + aux_sym_dictionary_repeat1 = 375, + aux_sym__comprehension_clauses_repeat1 = 376, + aux_sym__collection_elements_repeat1 = 377, + aux_sym_for_in_clause_repeat1 = 378, + aux_sym_concatenated_string_repeat1 = 379, + aux_sym_string_repeat1 = 380, + aux_sym_string_content_repeat1 = 381, + aux_sym_format_specifier_repeat1 = 382, + aux_sym_external_definition_repeat1 = 383, + aux_sym_cdef_definition_block_repeat1 = 384, + aux_sym_cvar_def_repeat1 = 385, + aux_sym_extern_suite_repeat1 = 386, + aux_sym_cvar_decl_repeat1 = 387, + aux_sym_cvar_decl_repeat2 = 388, + aux_sym_function_pointer_type_repeat1 = 389, + aux_sym_c_type_repeat1 = 390, + aux_sym_type_qualifier_repeat1 = 391, + aux_sym_type_index_repeat1 = 392, + aux_sym_type_index_repeat2 = 393, + aux_sym_template_params_repeat1 = 394, + aux_sym__typedargslist_repeat1 = 395, + aux_sym_struct_suite_repeat1 = 396, + aux_sym__cppclass_suite_repeat1 = 397, + aux_sym_fused_repeat1 = 398, + alias_sym_as_pattern_target = 399, + alias_sym_format_expression = 400, + anon_alias_sym_longlong = 401, }; static const char * const ts_symbol_names[] = { @@ -451,6 +452,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_async] = "async", [anon_sym_for] = "for", [anon_sym_in] = "in", + [anon_sym_by] = "by", [anon_sym_while] = "while", [anon_sym_try] = "try", [anon_sym_except] = "except", @@ -855,6 +857,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_async] = anon_sym_async, [anon_sym_for] = anon_sym_for, [anon_sym_in] = anon_sym_in, + [anon_sym_by] = anon_sym_by, [anon_sym_while] = anon_sym_while, [anon_sym_try] = anon_sym_try, [anon_sym_except] = anon_sym_except, @@ -1355,6 +1358,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_by] = { + .visible = true, + .named = false, + }, [anon_sym_while] = { .visible = true, .named = false, @@ -3016,148 +3023,164 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [112] = {.index = 198, .length = 2}, [113] = {.index = 200, .length = 3}, [114] = {.index = 203, .length = 4}, - [115] = {.index = 207, .length = 3}, - [116] = {.index = 210, .length = 4}, - [117] = {.index = 214, .length = 4}, - [118] = {.index = 218, .length = 4}, - [119] = {.index = 222, .length = 2}, - [120] = {.index = 224, .length = 4}, - [121] = {.index = 228, .length = 4}, - [122] = {.index = 232, .length = 4}, - [123] = {.index = 236, .length = 3}, - [124] = {.index = 239, .length = 3}, - [125] = {.index = 242, .length = 3}, - [126] = {.index = 245, .length = 3}, - [127] = {.index = 248, .length = 2}, + [115] = {.index = 207, .length = 2}, + [116] = {.index = 209, .length = 3}, + [117] = {.index = 212, .length = 4}, + [118] = {.index = 216, .length = 4}, + [119] = {.index = 220, .length = 4}, + [120] = {.index = 224, .length = 2}, + [121] = {.index = 226, .length = 4}, + [122] = {.index = 230, .length = 4}, + [123] = {.index = 234, .length = 4}, + [124] = {.index = 238, .length = 3}, + [125] = {.index = 241, .length = 3}, + [126] = {.index = 244, .length = 3}, + [127] = {.index = 247, .length = 3}, [128] = {.index = 250, .length = 2}, - [130] = {.index = 252, .length = 1}, - [131] = {.index = 253, .length = 2}, - [132] = {.index = 255, .length = 1}, - [133] = {.index = 256, .length = 3}, - [134] = {.index = 259, .length = 3}, - [135] = {.index = 262, .length = 3}, - [136] = {.index = 265, .length = 2}, - [137] = {.index = 267, .length = 3}, - [138] = {.index = 270, .length = 2}, - [139] = {.index = 272, .length = 3}, - [140] = {.index = 275, .length = 5}, - [141] = {.index = 280, .length = 4}, - [142] = {.index = 284, .length = 3}, - [143] = {.index = 287, .length = 4}, - [144] = {.index = 291, .length = 4}, - [145] = {.index = 295, .length = 4}, - [146] = {.index = 299, .length = 4}, - [147] = {.index = 303, .length = 4}, - [148] = {.index = 307, .length = 5}, - [149] = {.index = 312, .length = 2}, - [150] = {.index = 314, .length = 5}, - [151] = {.index = 319, .length = 2}, - [152] = {.index = 321, .length = 4}, - [153] = {.index = 325, .length = 4}, - [154] = {.index = 329, .length = 4}, - [155] = {.index = 333, .length = 2}, - [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}, + [129] = {.index = 252, .length = 2}, + [131] = {.index = 254, .length = 1}, + [132] = {.index = 255, .length = 2}, + [133] = {.index = 257, .length = 1}, + [134] = {.index = 258, .length = 3}, + [135] = {.index = 261, .length = 3}, + [136] = {.index = 264, .length = 3}, + [137] = {.index = 267, .length = 2}, + [138] = {.index = 269, .length = 3}, + [139] = {.index = 272, .length = 2}, + [140] = {.index = 274, .length = 3}, + [141] = {.index = 277, .length = 5}, + [142] = {.index = 282, .length = 4}, + [143] = {.index = 286, .length = 2}, + [144] = {.index = 288, .length = 3}, + [145] = {.index = 291, .length = 4}, + [146] = {.index = 295, .length = 4}, + [147] = {.index = 299, .length = 3}, + [148] = {.index = 302, .length = 3}, + [149] = {.index = 305, .length = 4}, + [150] = {.index = 309, .length = 4}, + [151] = {.index = 313, .length = 4}, + [152] = {.index = 317, .length = 5}, + [153] = {.index = 322, .length = 2}, + [154] = {.index = 324, .length = 5}, + [155] = {.index = 329, .length = 2}, + [156] = {.index = 331, .length = 4}, + [157] = {.index = 335, .length = 4}, + [158] = {.index = 339, .length = 4}, + [159] = {.index = 343, .length = 2}, + [161] = {.index = 345, .length = 1}, + [162] = {.index = 346, .length = 2}, + [163] = {.index = 348, .length = 2}, + [164] = {.index = 350, .length = 2}, + [165] = {.index = 352, .length = 1}, + [166] = {.index = 353, .length = 2}, + [167] = {.index = 355, .length = 4}, + [168] = {.index = 359, .length = 4}, + [169] = {.index = 363, .length = 4}, + [170] = {.index = 367, .length = 3}, + [171] = {.index = 370, .length = 3}, + [172] = {.index = 373, .length = 3}, + [173] = {.index = 376, .length = 3}, + [174] = {.index = 379, .length = 2}, + [175] = {.index = 381, .length = 1}, + [176] = {.index = 382, .length = 3}, + [177] = {.index = 385, .length = 3}, + [178] = {.index = 388, .length = 4}, + [179] = {.index = 392, .length = 4}, + [180] = {.index = 396, .length = 4}, + [181] = {.index = 400, .length = 5}, + [182] = {.index = 405, .length = 4}, + [183] = {.index = 409, .length = 5}, + [184] = {.index = 414, .length = 3}, + [185] = {.index = 417, .length = 5}, + [186] = {.index = 422, .length = 5}, + [187] = {.index = 427, .length = 3}, + [188] = {.index = 430, .length = 3}, + [189] = {.index = 433, .length = 3}, + [190] = {.index = 436, .length = 2}, + [191] = {.index = 438, .length = 5}, + [193] = {.index = 443, .length = 2}, + [194] = {.index = 445, .length = 1}, + [195] = {.index = 446, .length = 2}, + [196] = {.index = 448, .length = 3}, + [197] = {.index = 451, .length = 2}, + [198] = {.index = 453, .length = 2}, + [199] = {.index = 455, .length = 2}, + [200] = {.index = 457, .length = 5}, + [201] = {.index = 462, .length = 2}, + [202] = {.index = 464, .length = 4}, + [203] = {.index = 468, .length = 4}, + [204] = {.index = 472, .length = 4}, + [205] = {.index = 476, .length = 4}, + [206] = {.index = 480, .length = 4}, + [207] = {.index = 484, .length = 2}, + [208] = {.index = 486, .length = 1}, + [209] = {.index = 487, .length = 2}, + [210] = {.index = 489, .length = 2}, + [211] = {.index = 491, .length = 4}, + [212] = {.index = 495, .length = 5}, + [213] = {.index = 500, .length = 3}, + [214] = {.index = 503, .length = 5}, + [215] = {.index = 508, .length = 5}, + [216] = {.index = 513, .length = 4}, + [217] = {.index = 517, .length = 4}, + [218] = {.index = 521, .length = 6}, + [219] = {.index = 527, .length = 4}, + [220] = {.index = 531, .length = 4}, + [221] = {.index = 535, .length = 4}, + [222] = {.index = 539, .length = 3}, + [223] = {.index = 542, .length = 3}, + [224] = {.index = 545, .length = 3}, + [226] = {.index = 548, .length = 2}, + [227] = {.index = 550, .length = 2}, + [228] = {.index = 552, .length = 1}, + [229] = {.index = 553, .length = 3}, + [230] = {.index = 556, .length = 2}, + [231] = {.index = 558, .length = 3}, + [232] = {.index = 561, .length = 3}, + [233] = {.index = 564, .length = 3}, + [234] = {.index = 567, .length = 3}, [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}, + [236] = {.index = 572, .length = 5}, + [237] = {.index = 577, .length = 2}, + [238] = {.index = 579, .length = 2}, + [239] = {.index = 581, .length = 3}, + [240] = {.index = 584, .length = 1}, + [241] = {.index = 585, .length = 4}, + [242] = {.index = 589, .length = 4}, + [243] = {.index = 593, .length = 6}, + [244] = {.index = 599, .length = 5}, + [245] = {.index = 604, .length = 5}, + [246] = {.index = 609, .length = 4}, + [247] = {.index = 613, .length = 4}, + [248] = {.index = 617, .length = 4}, + [250] = {.index = 621, .length = 2}, + [251] = {.index = 623, .length = 3}, + [252] = {.index = 626, .length = 2}, + [253] = {.index = 628, .length = 2}, + [254] = {.index = 630, .length = 1}, + [255] = {.index = 631, .length = 3}, + [256] = {.index = 634, .length = 4}, + [257] = {.index = 638, .length = 4}, + [258] = {.index = 642, .length = 4}, + [259] = {.index = 646, .length = 3}, + [260] = {.index = 649, .length = 3}, + [261] = {.index = 652, .length = 3}, + [262] = {.index = 655, .length = 3}, + [263] = {.index = 658, .length = 2}, + [264] = {.index = 660, .length = 2}, + [265] = {.index = 662, .length = 5}, + [266] = {.index = 667, .length = 5}, + [268] = {.index = 672, .length = 3}, + [269] = {.index = 675, .length = 2}, + [270] = {.index = 677, .length = 3}, + [271] = {.index = 680, .length = 2}, + [272] = {.index = 682, .length = 5}, + [273] = {.index = 687, .length = 4}, + [274] = {.index = 691, .length = 4}, + [275] = {.index = 695, .length = 4}, + [276] = {.index = 699, .length = 3}, + [278] = {.index = 702, .length = 3}, + [279] = {.index = 705, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3471,589 +3494,661 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 4}, {field_right, 1}, [207] = + {field_body, 5}, + {field_right, 1}, + [209] = {field_body, 5}, {field_left, 1}, {field_right, 3}, - [210] = + [212] = {field_alternative, 5}, {field_body, 3}, {field_body, 4}, {field_condition, 1}, - [214] = + [216] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_parameters, 2}, - [218] = + [220] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [222] = + [224] = {field_name, 1}, {field_name_specification, 5}, - [224] = + [226] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_superclasses, 2}, - [228] = + [230] = {field_body, 5}, {field_name, 1}, {field_name_specification, 3}, {field_superclasses, 2}, - [232] = + [234] = {field_body, 4}, {field_body, 5}, {field_name, 1}, {field_name_specification, 2}, - [236] = + [238] = {field_body, 4}, {field_body, 5}, {field_name, 1}, - [239] = + [241] = {field_body, 5}, {field_name, 1}, {field_superclasses, 3}, - [242] = + [244] = {field_body, 5}, {field_name, 1}, {field_name_specification, 3}, - [245] = + [247] = {field_name, 1}, {field_type, 0}, {field_value, 4}, - [248] = + [250] = {field_name, 4}, {field_type, 0}, - [250] = + [252] = {field_name, 4}, {field_type, 1}, - [252] = + [254] = {field_alias, 3}, - [253] = + [255] = {field_alias, 2}, {field_alias, 3, .inherited = true}, - [255] = + [257] = {field_alias, 3, .inherited = true}, - [256] = + [258] = {field_body, 4}, {field_body, 5}, {field_name, 2}, - [259] = + [261] = {field_body, 5}, {field_name, 2}, {field_superclasses, 3}, - [262] = + [264] = {field_body, 5}, {field_name, 2}, {field_name_specification, 3}, - [265] = + [267] = {field_body, 5}, {field_name, 2}, - [267] = + [269] = {field_expression, 1}, {field_format_specifier, 4}, {field_type_conversion, 3}, - [270] = + [272] = {field_left, 2}, {field_right, 4}, - [272] = + [274] = {field_left, 1}, {field_right, 3}, {field_right, 4}, - [275] = + [277] = {field_alternative, 5, .inherited = true}, {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, {field_consequence, 4}, - [280] = + [282] = {field_alternative, 6}, {field_body, 4}, {field_body, 5}, {field_right, 2}, - [284] = + [286] = + {field_body, 6}, + {field_right, 2}, + [288] = {field_body, 6}, {field_left, 2}, {field_right, 4}, - [287] = + [291] = {field_body, 5}, {field_body, 6}, {field_name, 2}, {field_parameters, 3}, - [291] = + [295] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [295] = + [299] = + {field_alternative, 6}, + {field_body, 5}, + {field_right, 1}, + [302] = + {field_body, 5}, + {field_body, 6}, + {field_right, 1}, + [305] = {field_alternative, 6}, {field_body, 5}, {field_left, 1}, {field_right, 3}, - [299] = + [309] = {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [303] = + [313] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [307] = + [317] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [312] = + [322] = {field_body, 6}, {field_name, 1}, - [314] = + [324] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_name_specification, 3}, {field_superclasses, 2}, - [319] = + [329] = {field_name, 1}, {field_name_specification, 6}, - [321] = + [331] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_superclasses, 3}, - [325] = + [335] = {field_body, 6}, {field_name, 1}, {field_name_specification, 4}, {field_superclasses, 3}, - [329] = + [339] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_name_specification, 3}, - [333] = + [343] = {field_name, 5}, {field_type, 1}, - [335] = + [345] = {field_alias, 4, .inherited = true}, - [336] = + [346] = {field_alias, 2}, {field_alias, 4, .inherited = true}, - [338] = + [348] = {field_alias, 3}, {field_alias, 4, .inherited = true}, - [340] = + [350] = {field_alias, 2}, {field_alias, 4}, - [342] = + [352] = {field_alias, 4}, - [343] = + [353] = {field_name, 2}, {field_name_specification, 6}, - [345] = + [355] = {field_body, 5}, {field_body, 6}, {field_name, 2}, {field_superclasses, 3}, - [349] = + [359] = {field_body, 6}, {field_name, 2}, {field_name_specification, 4}, {field_superclasses, 3}, - [353] = + [363] = {field_body, 5}, {field_body, 6}, {field_name, 2}, {field_name_specification, 3}, - [357] = + [367] = {field_body, 5}, {field_body, 6}, {field_name, 2}, - [360] = + [370] = {field_body, 6}, {field_name, 2}, {field_superclasses, 4}, - [363] = + [373] = {field_body, 6}, {field_name, 2}, {field_name_specification, 4}, - [366] = + [376] = {field_left, 2}, {field_right, 4}, {field_right, 5}, - [369] = + [379] = {field_key, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [371] = + [381] = {field_consequence, 3}, - [372] = + [382] = + {field_alternative, 7}, + {field_body, 6}, + {field_right, 2}, + [385] = + {field_body, 6}, + {field_body, 7}, + {field_right, 2}, + [388] = {field_alternative, 7}, {field_body, 6}, {field_left, 2}, {field_right, 4}, - [376] = + [392] = {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [380] = + [396] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [384] = + [400] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [389] = + [405] = + {field_alternative, 7}, + {field_body, 5}, + {field_body, 6}, + {field_right, 1}, + [409] = {field_alternative, 7}, {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [394] = + [414] = + {field_body, 7}, + {field_left, 1}, + {field_right, 3}, + [417] = {field_body, 6}, {field_body, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [399] = + [422] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [404] = + [427] = {field_body, 6}, {field_body, 7}, {field_name, 1}, - [407] = + [430] = {field_body, 7}, {field_name, 1}, {field_superclasses, 5}, - [410] = + [433] = {field_body, 7}, {field_name, 1}, {field_name_specification, 5}, - [413] = + [436] = {field_body, 7}, {field_name, 1}, - [415] = + [438] = {field_body, 6}, {field_body, 7}, {field_name, 1}, {field_name_specification, 4}, {field_superclasses, 3}, - [420] = + [443] = {field_alias, 2}, {field_alias, 5, .inherited = true}, - [422] = + [445] = {field_alias, 5, .inherited = true}, - [423] = + [446] = {field_alias, 3}, {field_alias, 5, .inherited = true}, - [425] = + [448] = {field_alias, 2}, {field_alias, 4}, {field_alias, 5, .inherited = true}, - [428] = + [451] = {field_alias, 4}, {field_alias, 5, .inherited = true}, - [430] = + [453] = {field_alias, 3}, {field_alias, 5}, - [432] = + [455] = {field_body, 7}, {field_name, 2}, - [434] = + [457] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_name_specification, 4}, {field_superclasses, 3}, - [439] = + [462] = {field_name, 2}, {field_name_specification, 7}, - [441] = + [464] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_superclasses, 4}, - [445] = + [468] = {field_body, 7}, {field_name, 2}, {field_name_specification, 5}, {field_superclasses, 4}, - [449] = + [472] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_name_specification, 4}, - [453] = + [476] = {field_key, 1, .inherited = true}, {field_key, 2, .inherited = true}, {field_value, 1, .inherited = true}, {field_value, 2, .inherited = true}, - [457] = + [480] = {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [461] = + [484] = {field_key, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [463] = + [486] = {field_consequence, 4}, - [464] = + [487] = {field_consequence, 3}, {field_consequence, 4}, - [466] = + [489] = {field_consequence, 4}, {field_guard, 2}, - [468] = + [491] = {field_alternative, 8}, {field_body, 6}, {field_body, 7}, + {field_right, 2}, + [495] = + {field_alternative, 8}, + {field_body, 6}, + {field_body, 7}, + {field_left, 2}, + {field_right, 4}, + [500] = + {field_body, 8}, {field_left, 2}, {field_right, 4}, - [473] = + [503] = {field_body, 7}, {field_body, 8}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [478] = + [508] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [483] = + [513] = + {field_alternative, 8}, + {field_body, 7}, + {field_left, 1}, + {field_right, 3}, + [517] = + {field_body, 7}, + {field_body, 8}, + {field_left, 1}, + {field_right, 3}, + [521] = {field_body, 7}, {field_body, 8}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [489] = + [527] = {field_body, 7}, {field_body, 8}, {field_name, 1}, {field_superclasses, 5}, - [493] = + [531] = {field_body, 8}, {field_name, 1}, {field_name_specification, 6}, {field_superclasses, 5}, - [497] = + [535] = {field_body, 7}, {field_body, 8}, {field_name, 1}, {field_name_specification, 5}, - [501] = + [539] = {field_body, 7}, {field_body, 8}, {field_name, 1}, - [504] = + [542] = {field_body, 8}, {field_name, 1}, {field_superclasses, 6}, - [507] = + [545] = {field_body, 8}, {field_name, 1}, {field_name_specification, 6}, - [510] = + [548] = {field_alias, 2}, {field_alias, 6, .inherited = true}, - [512] = + [550] = {field_alias, 3}, {field_alias, 6, .inherited = true}, - [514] = + [552] = {field_alias, 6, .inherited = true}, - [515] = + [553] = {field_alias, 2}, {field_alias, 4}, {field_alias, 6, .inherited = true}, - [518] = + [556] = {field_alias, 4}, {field_alias, 6, .inherited = true}, - [520] = + [558] = {field_alias, 3}, {field_alias, 5}, {field_alias, 6, .inherited = true}, - [523] = + [561] = {field_body, 7}, {field_body, 8}, {field_name, 2}, - [526] = + [564] = {field_body, 8}, {field_name, 2}, {field_superclasses, 6}, - [529] = + [567] = {field_body, 8}, {field_name, 2}, {field_name_specification, 6}, - [532] = + [570] = {field_body, 8}, {field_name, 2}, - [534] = + [572] = {field_body, 7}, {field_body, 8}, {field_name, 2}, {field_name_specification, 5}, {field_superclasses, 4}, - [539] = + [577] = {field_consequence, 4}, {field_consequence, 5}, - [541] = + [579] = {field_consequence, 5}, {field_guard, 3}, - [543] = + [581] = {field_consequence, 4}, {field_consequence, 5}, {field_guard, 2}, - [546] = + [584] = {field_consequence, 5}, - [547] = + [585] = + {field_alternative, 9}, + {field_body, 8}, + {field_left, 2}, + {field_right, 4}, + [589] = + {field_body, 8}, + {field_body, 9}, + {field_left, 2}, + {field_right, 4}, + [593] = {field_body, 8}, {field_body, 9}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [553] = + [599] = + {field_alternative, 9}, + {field_body, 7}, + {field_body, 8}, + {field_left, 1}, + {field_right, 3}, + [604] = {field_body, 8}, {field_body, 9}, {field_name, 1}, {field_name_specification, 6}, {field_superclasses, 5}, - [558] = + [609] = {field_body, 8}, {field_body, 9}, {field_name, 1}, {field_superclasses, 6}, - [562] = + [613] = {field_body, 9}, {field_name, 1}, {field_name_specification, 7}, {field_superclasses, 6}, - [566] = + [617] = {field_body, 8}, {field_body, 9}, {field_name, 1}, {field_name_specification, 6}, - [570] = + [621] = {field_alias, 3}, {field_alias, 7, .inherited = true}, - [572] = + [623] = {field_alias, 2}, {field_alias, 4}, {field_alias, 7, .inherited = true}, - [575] = + [626] = {field_alias, 2}, {field_alias, 7, .inherited = true}, - [577] = + [628] = {field_alias, 4}, {field_alias, 7, .inherited = true}, - [579] = + [630] = {field_alias, 7, .inherited = true}, - [580] = + [631] = {field_alias, 3}, {field_alias, 5}, {field_alias, 7, .inherited = true}, - [583] = + [634] = {field_body, 8}, {field_body, 9}, {field_name, 2}, {field_superclasses, 6}, - [587] = + [638] = {field_body, 9}, {field_name, 2}, {field_name_specification, 7}, {field_superclasses, 6}, - [591] = + [642] = {field_body, 8}, {field_body, 9}, {field_name, 2}, {field_name_specification, 6}, - [595] = + [646] = {field_body, 8}, {field_body, 9}, {field_name, 2}, - [598] = + [649] = {field_body, 9}, {field_name, 2}, {field_superclasses, 7}, - [601] = + [652] = {field_body, 9}, {field_name, 2}, {field_name_specification, 7}, - [604] = + [655] = {field_consequence, 5}, {field_consequence, 6}, {field_guard, 3}, - [607] = + [658] = {field_consequence, 5}, {field_consequence, 6}, - [609] = + [660] = {field_consequence, 6}, {field_guard, 4}, - [611] = + [662] = + {field_alternative, 10}, + {field_body, 8}, + {field_body, 9}, + {field_left, 2}, + {field_right, 4}, + [667] = {field_body, 9}, {field_body, 10}, {field_name, 1}, {field_name_specification, 7}, {field_superclasses, 6}, - [616] = + [672] = {field_alias, 2}, {field_alias, 4}, {field_alias, 8, .inherited = true}, - [619] = + [675] = {field_alias, 4}, {field_alias, 8, .inherited = true}, - [621] = + [677] = {field_alias, 3}, {field_alias, 5}, {field_alias, 8, .inherited = true}, - [624] = + [680] = {field_alias, 3}, {field_alias, 8, .inherited = true}, - [626] = + [682] = {field_body, 9}, {field_body, 10}, {field_name, 2}, {field_name_specification, 7}, {field_superclasses, 6}, - [631] = + [687] = {field_body, 9}, {field_body, 10}, {field_name, 2}, {field_superclasses, 7}, - [635] = + [691] = {field_body, 10}, {field_name, 2}, {field_name_specification, 8}, {field_superclasses, 7}, - [639] = + [695] = {field_body, 9}, {field_body, 10}, {field_name, 2}, {field_name_specification, 7}, - [643] = + [699] = {field_consequence, 6}, {field_consequence, 7}, {field_guard, 4}, - [646] = + [702] = {field_alias, 3}, {field_alias, 5}, {field_alias, 9, .inherited = true}, - [649] = + [705] = {field_body, 10}, {field_body, 11}, {field_name, 2}, @@ -4160,151 +4255,175 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [115] = { [5] = sym_block, }, - [118] = { + [116] = { [5] = sym_block, }, - [121] = { + [119] = { [5] = sym_block, }, - [124] = { + [122] = { [5] = sym_block, }, [125] = { [5] = sym_block, }, - [129] = { - [4] = sym_block, - }, - [134] = { + [126] = { [5] = sym_block, }, + [130] = { + [4] = sym_block, + }, [135] = { [5] = sym_block, }, [136] = { [5] = sym_block, }, - [142] = { + [137] = { + [5] = sym_block, + }, + [143] = { [6] = sym_block, }, [144] = { [6] = sym_block, }, - [145] = { - [5] = sym_block, + [146] = { + [6] = sym_block, }, [147] = { - [6] = sym_block, + [5] = sym_block, }, [149] = { + [5] = sym_block, + }, + [151] = { [6] = sym_block, }, [153] = { [6] = sym_block, }, - [156] = { + [157] = { + [6] = sym_block, + }, + [160] = { [5] = sym_block, }, - [164] = { + [168] = { [6] = sym_block, }, - [167] = { + [171] = { [6] = sym_block, }, - [168] = { + [172] = { [6] = sym_block, }, - [171] = { + [175] = { [3] = sym_block, }, - [172] = { + [176] = { [6] = sym_block, }, - [174] = { + [178] = { + [6] = sym_block, + }, + [180] = { [7] = sym_block, }, - [178] = { + [184] = { [7] = sym_block, }, - [180] = { + [186] = { [7] = sym_block, }, - [181] = { + [188] = { [7] = sym_block, }, - [182] = { + [189] = { [7] = sym_block, }, - [184] = { + [190] = { + [7] = sym_block, + }, + [192] = { [6] = sym_block, }, - [191] = { + [199] = { [7] = sym_block, }, - [195] = { + [203] = { [7] = sym_block, }, - [200] = { + [208] = { [4] = sym_block, }, - [202] = { + [210] = { [4] = sym_block, }, - [205] = { + [213] = { [8] = sym_block, }, - [208] = { + [215] = { [8] = sym_block, }, - [211] = { + [216] = { + [7] = sym_block, + }, + [220] = { [8] = sym_block, }, - [212] = { + [223] = { [8] = sym_block, }, - [213] = { + [224] = { + [8] = sym_block, + }, + [225] = { [7] = sym_block, }, - [221] = { + [233] = { [8] = sym_block, }, - [222] = { + [234] = { [8] = sym_block, }, - [223] = { + [235] = { [8] = sym_block, }, - [226] = { + [238] = { [5] = sym_block, }, - [228] = { + [240] = { [5] = sym_block, }, - [232] = { + [241] = { + [8] = sym_block, + }, + [247] = { [9] = sym_block, }, - [234] = { + [249] = { [8] = sym_block, }, - [242] = { + [257] = { [9] = sym_block, }, - [245] = { + [260] = { [9] = sym_block, }, - [246] = { + [261] = { [9] = sym_block, }, - [249] = { + [264] = { [6] = sym_block, }, - [251] = { + [267] = { [9] = sym_block, }, - [258] = { + [274] = { [10] = sym_block, }, - [261] = { + [277] = { [10] = sym_block, }, }; @@ -4333,7 +4452,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, + [4] = 3, [5] = 5, [6] = 6, [7] = 7, @@ -4361,7 +4480,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [29] = 29, [30] = 30, [31] = 31, - [32] = 32, + [32] = 2, [33] = 33, [34] = 34, [35] = 35, @@ -4409,171 +4528,171 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [77] = 77, [78] = 78, [79] = 79, - [80] = 4, - [81] = 5, - [82] = 2, - [83] = 6, - [84] = 7, - [85] = 8, - [86] = 9, - [87] = 10, - [88] = 11, - [89] = 12, - [90] = 13, - [91] = 14, - [92] = 15, - [93] = 16, - [94] = 17, - [95] = 18, - [96] = 19, - [97] = 20, - [98] = 21, - [99] = 22, - [100] = 23, - [101] = 24, - [102] = 25, - [103] = 26, - [104] = 27, - [105] = 28, - [106] = 29, - [107] = 30, - [108] = 31, - [109] = 32, - [110] = 3, - [111] = 34, - [112] = 35, - [113] = 36, - [114] = 37, - [115] = 38, - [116] = 39, - [117] = 40, - [118] = 41, - [119] = 42, - [120] = 43, - [121] = 44, - [122] = 45, - [123] = 47, - [124] = 48, - [125] = 49, - [126] = 50, - [127] = 51, - [128] = 52, - [129] = 53, - [130] = 54, - [131] = 55, - [132] = 58, - [133] = 59, - [134] = 60, - [135] = 61, - [136] = 62, - [137] = 63, - [138] = 64, - [139] = 65, - [140] = 66, - [141] = 67, - [142] = 68, - [143] = 71, - [144] = 72, - [145] = 73, - [146] = 74, - [147] = 75, - [148] = 77, - [149] = 78, - [150] = 79, - [151] = 7, - [152] = 9, - [153] = 13, - [154] = 14, - [155] = 15, - [156] = 16, - [157] = 17, - [158] = 18, - [159] = 24, - [160] = 25, - [161] = 26, - [162] = 27, - [163] = 28, - [164] = 29, - [165] = 30, - [166] = 31, - [167] = 38, - [168] = 39, - [169] = 40, - [170] = 41, - [171] = 42, - [172] = 43, - [173] = 44, - [174] = 49, - [175] = 50, - [176] = 51, - [177] = 52, - [178] = 53, - [179] = 54, - [180] = 55, - [181] = 61, - [182] = 62, - [183] = 63, - [184] = 64, - [185] = 65, - [186] = 66, - [187] = 67, - [188] = 68, - [189] = 71, - [190] = 72, - [191] = 73, - [192] = 74, - [193] = 75, - [194] = 77, - [195] = 78, - [196] = 79, - [197] = 33, - [198] = 198, - [199] = 199, - [200] = 200, - [201] = 199, - [202] = 202, - [203] = 202, - [204] = 199, - [205] = 199, - [206] = 199, - [207] = 199, - [208] = 199, - [209] = 199, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, + [84] = 84, + [85] = 85, + [86] = 5, + [87] = 6, + [88] = 7, + [89] = 8, + [90] = 9, + [91] = 10, + [92] = 11, + [93] = 12, + [94] = 13, + [95] = 14, + [96] = 15, + [97] = 16, + [98] = 17, + [99] = 18, + [100] = 19, + [101] = 20, + [102] = 21, + [103] = 22, + [104] = 23, + [105] = 24, + [106] = 25, + [107] = 26, + [108] = 27, + [109] = 28, + [110] = 29, + [111] = 30, + [112] = 31, + [113] = 33, + [114] = 34, + [115] = 36, + [116] = 37, + [117] = 38, + [118] = 39, + [119] = 40, + [120] = 41, + [121] = 42, + [122] = 43, + [123] = 44, + [124] = 45, + [125] = 46, + [126] = 47, + [127] = 48, + [128] = 49, + [129] = 51, + [130] = 52, + [131] = 53, + [132] = 54, + [133] = 55, + [134] = 56, + [135] = 57, + [136] = 58, + [137] = 59, + [138] = 60, + [139] = 63, + [140] = 64, + [141] = 65, + [142] = 66, + [143] = 67, + [144] = 68, + [145] = 69, + [146] = 70, + [147] = 71, + [148] = 72, + [149] = 73, + [150] = 74, + [151] = 77, + [152] = 78, + [153] = 79, + [154] = 80, + [155] = 81, + [156] = 83, + [157] = 84, + [158] = 85, + [159] = 9, + [160] = 11, + [161] = 15, + [162] = 16, + [163] = 17, + [164] = 18, + [165] = 19, + [166] = 20, + [167] = 27, + [168] = 28, + [169] = 29, + [170] = 30, + [171] = 31, + [172] = 2, + [173] = 33, + [174] = 34, + [175] = 42, + [176] = 43, + [177] = 44, + [178] = 45, + [179] = 46, + [180] = 47, + [181] = 48, + [182] = 54, + [183] = 55, + [184] = 56, + [185] = 57, + [186] = 58, + [187] = 59, + [188] = 60, + [189] = 67, + [190] = 68, + [191] = 69, + [192] = 70, + [193] = 71, + [194] = 72, + [195] = 73, + [196] = 74, + [197] = 77, + [198] = 78, + [199] = 79, + [200] = 80, + [201] = 81, + [202] = 83, + [203] = 84, + [204] = 85, + [205] = 35, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, [210] = 210, - [211] = 211, - [212] = 212, - [213] = 213, - [214] = 214, - [215] = 214, - [216] = 213, - [217] = 217, - [218] = 217, - [219] = 213, - [220] = 211, + [211] = 206, + [212] = 207, + [213] = 206, + [214] = 206, + [215] = 206, + [216] = 206, + [217] = 206, + [218] = 206, + [219] = 219, + [220] = 220, [221] = 221, - [222] = 214, - [223] = 217, - [224] = 211, - [225] = 212, - [226] = 212, - [227] = 221, - [228] = 221, - [229] = 229, - [230] = 230, - [231] = 229, - [232] = 232, - [233] = 233, - [234] = 233, - [235] = 232, - [236] = 230, + [222] = 222, + [223] = 220, + [224] = 221, + [225] = 225, + [226] = 226, + [227] = 225, + [228] = 220, + [229] = 225, + [230] = 219, + [231] = 222, + [232] = 221, + [233] = 226, + [234] = 226, + [235] = 222, + [236] = 219, [237] = 237, - [238] = 238, + [238] = 237, [239] = 239, [240] = 240, [241] = 241, - [242] = 242, - [243] = 243, - [244] = 244, + [242] = 240, + [243] = 239, + [244] = 241, [245] = 245, [246] = 246, [247] = 247, @@ -4584,259 +4703,259 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [252] = 252, [253] = 253, [254] = 254, - [255] = 255, - [256] = 238, + [255] = 245, + [256] = 256, [257] = 257, [258] = 258, [259] = 259, [260] = 260, [261] = 261, [262] = 262, - [263] = 239, + [263] = 263, [264] = 264, [265] = 265, [266] = 266, - [267] = 241, + [267] = 267, [268] = 268, [269] = 269, [270] = 270, [271] = 271, [272] = 272, - [273] = 244, - [274] = 274, - [275] = 245, + [273] = 273, + [274] = 246, + [275] = 275, [276] = 276, [277] = 277, [278] = 278, [279] = 279, [280] = 280, - [281] = 248, + [281] = 281, [282] = 282, [283] = 283, [284] = 284, [285] = 250, [286] = 286, - [287] = 242, - [288] = 243, - [289] = 246, + [287] = 287, + [288] = 288, + [289] = 253, [290] = 290, - [291] = 249, + [291] = 291, [292] = 292, - [293] = 293, - [294] = 252, - [295] = 259, - [296] = 262, - [297] = 297, - [298] = 298, - [299] = 266, + [293] = 251, + [294] = 256, + [295] = 295, + [296] = 245, + [297] = 257, + [298] = 259, + [299] = 261, [300] = 300, - [301] = 253, + [301] = 301, [302] = 302, - [303] = 276, - [304] = 254, - [305] = 305, - [306] = 280, - [307] = 255, - [308] = 283, - [309] = 284, - [310] = 257, + [303] = 267, + [304] = 268, + [305] = 260, + [306] = 271, + [307] = 272, + [308] = 273, + [309] = 309, + [310] = 310, [311] = 311, - [312] = 292, - [313] = 293, - [314] = 314, - [315] = 297, - [316] = 298, - [317] = 300, - [318] = 260, - [319] = 261, + [312] = 312, + [313] = 313, + [314] = 262, + [315] = 315, + [316] = 291, + [317] = 263, + [318] = 264, + [319] = 295, [320] = 320, [321] = 321, - [322] = 314, - [323] = 323, - [324] = 265, - [325] = 320, - [326] = 326, - [327] = 327, + [322] = 322, + [323] = 301, + [324] = 324, + [325] = 325, + [326] = 309, + [327] = 310, [328] = 328, - [329] = 323, + [329] = 315, [330] = 330, - [331] = 268, - [332] = 327, - [333] = 328, - [334] = 334, + [331] = 331, + [332] = 321, + [333] = 270, + [334] = 328, [335] = 335, - [336] = 336, - [337] = 335, + [336] = 286, + [337] = 311, [338] = 338, - [339] = 270, - [340] = 340, - [341] = 341, - [342] = 338, - [343] = 271, + [339] = 265, + [340] = 266, + [341] = 275, + [342] = 342, + [343] = 288, [344] = 344, - [345] = 264, - [346] = 346, - [347] = 330, - [348] = 336, - [349] = 340, - [350] = 341, + [345] = 292, + [346] = 300, + [347] = 282, + [348] = 348, + [349] = 286, + [350] = 302, [351] = 351, - [352] = 274, - [353] = 353, + [352] = 352, + [353] = 311, [354] = 354, - [355] = 241, + [355] = 355, [356] = 356, [357] = 357, - [358] = 244, - [359] = 245, - [360] = 248, - [361] = 250, - [362] = 290, - [363] = 252, - [364] = 253, - [365] = 265, - [366] = 268, - [367] = 270, - [368] = 271, - [369] = 274, + [358] = 247, + [359] = 248, + [360] = 250, + [361] = 361, + [362] = 348, + [363] = 253, + [364] = 356, + [365] = 361, + [366] = 256, + [367] = 276, + [368] = 257, + [369] = 369, [370] = 277, - [371] = 278, - [372] = 242, - [373] = 243, - [374] = 246, - [375] = 356, - [376] = 249, - [377] = 259, - [378] = 262, - [379] = 266, - [380] = 321, - [381] = 326, - [382] = 280, - [383] = 346, - [384] = 357, + [371] = 260, + [372] = 265, + [373] = 266, + [374] = 262, + [375] = 263, + [376] = 275, + [377] = 276, + [378] = 277, + [379] = 278, + [380] = 278, + [381] = 280, + [382] = 351, + [383] = 288, + [384] = 280, [385] = 283, [386] = 284, - [387] = 344, - [388] = 258, - [389] = 264, - [390] = 292, - [391] = 293, - [392] = 297, - [393] = 298, - [394] = 300, - [395] = 277, - [396] = 282, - [397] = 314, - [398] = 286, - [399] = 278, - [400] = 320, - [401] = 279, - [402] = 351, - [403] = 403, - [404] = 323, - [405] = 237, - [406] = 327, - [407] = 328, - [408] = 335, - [409] = 330, - [410] = 336, - [411] = 340, - [412] = 338, - [413] = 353, - [414] = 341, - [415] = 351, - [416] = 353, + [387] = 292, + [388] = 300, + [389] = 287, + [390] = 352, + [391] = 391, + [392] = 312, + [393] = 320, + [394] = 259, + [395] = 261, + [396] = 324, + [397] = 325, + [398] = 330, + [399] = 267, + [400] = 268, + [401] = 338, + [402] = 271, + [403] = 272, + [404] = 273, + [405] = 335, + [406] = 283, + [407] = 348, + [408] = 291, + [409] = 284, + [410] = 354, + [411] = 295, + [412] = 351, + [413] = 352, + [414] = 342, + [415] = 301, + [416] = 287, [417] = 354, - [418] = 354, - [419] = 344, - [420] = 240, - [421] = 311, - [422] = 247, - [423] = 251, - [424] = 290, - [425] = 425, - [426] = 425, - [427] = 427, - [428] = 427, - [429] = 429, - [430] = 427, - [431] = 429, - [432] = 429, - [433] = 427, - [434] = 429, - [435] = 427, - [436] = 429, - [437] = 427, - [438] = 429, - [439] = 429, - [440] = 427, - [441] = 427, - [442] = 429, + [418] = 309, + [419] = 310, + [420] = 355, + [421] = 315, + [422] = 355, + [423] = 344, + [424] = 357, + [425] = 321, + [426] = 247, + [427] = 248, + [428] = 328, + [429] = 249, + [430] = 252, + [431] = 254, + [432] = 432, + [433] = 258, + [434] = 357, + [435] = 435, + [436] = 391, + [437] = 290, + [438] = 331, + [439] = 269, + [440] = 369, + [441] = 441, + [442] = 441, [443] = 443, - [444] = 444, - [445] = 444, + [444] = 443, + [445] = 443, [446] = 446, - [447] = 447, - [448] = 447, - [449] = 449, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 450, - [454] = 450, - [455] = 450, - [456] = 450, - [457] = 451, - [458] = 450, + [447] = 443, + [448] = 446, + [449] = 446, + [450] = 443, + [451] = 446, + [452] = 446, + [453] = 443, + [454] = 443, + [455] = 446, + [456] = 446, + [457] = 446, + [458] = 443, [459] = 459, - [460] = 450, - [461] = 450, - [462] = 450, - [463] = 450, - [464] = 450, - [465] = 450, - [466] = 450, - [467] = 450, - [468] = 450, - [469] = 450, - [470] = 470, - [471] = 450, - [472] = 450, - [473] = 459, - [474] = 470, - [475] = 452, - [476] = 451, - [477] = 459, - [478] = 470, - [479] = 452, - [480] = 450, - [481] = 481, - [482] = 482, - [483] = 481, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 446, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 496, + [460] = 460, + [461] = 460, + [462] = 462, + [463] = 463, + [464] = 463, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 467, + [469] = 469, + [470] = 466, + [471] = 471, + [472] = 472, + [473] = 467, + [474] = 467, + [475] = 467, + [476] = 467, + [477] = 467, + [478] = 467, + [479] = 467, + [480] = 467, + [481] = 467, + [482] = 467, + [483] = 467, + [484] = 467, + [485] = 467, + [486] = 467, + [487] = 467, + [488] = 467, + [489] = 467, + [490] = 469, + [491] = 472, + [492] = 471, + [493] = 466, + [494] = 469, + [495] = 472, + [496] = 471, [497] = 497, [498] = 498, - [499] = 499, + [499] = 498, [500] = 500, [501] = 501, [502] = 502, [503] = 503, [504] = 504, [505] = 505, - [506] = 503, - [507] = 507, + [506] = 506, + [507] = 462, [508] = 508, [509] = 509, [510] = 510, @@ -4848,10 +4967,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [516] = 516, [517] = 517, [518] = 518, - [519] = 519, - [520] = 520, + [519] = 462, + [520] = 462, [521] = 521, - [522] = 522, + [522] = 502, [523] = 523, [524] = 524, [525] = 525, @@ -4951,7 +5070,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [619] = 619, [620] = 620, [621] = 621, - [622] = 484, + [622] = 502, [623] = 623, [624] = 624, [625] = 625, @@ -5035,5055 +5154,5127 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [703] = 703, [704] = 704, [705] = 705, - [706] = 444, - [707] = 446, - [708] = 503, - [709] = 503, - [710] = 503, - [711] = 503, - [712] = 503, - [713] = 503, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 711, + [712] = 712, + [713] = 713, [714] = 714, [715] = 715, - [716] = 484, + [716] = 716, [717] = 717, [718] = 718, [719] = 719, [720] = 720, - [721] = 721, + [721] = 521, [722] = 722, - [723] = 723, - [724] = 724, - [725] = 446, - [726] = 726, - [727] = 727, - [728] = 484, - [729] = 491, - [730] = 446, - [731] = 731, + [723] = 521, + [724] = 521, + [725] = 521, + [726] = 521, + [727] = 521, + [728] = 521, + [729] = 729, + [730] = 730, + [731] = 460, [732] = 732, - [733] = 484, - [734] = 444, - [735] = 484, - [736] = 491, - [737] = 446, - [738] = 444, - [739] = 484, - [740] = 444, - [741] = 491, - [742] = 719, - [743] = 719, - [744] = 732, - [745] = 446, - [746] = 491, - [747] = 484, - [748] = 491, - [749] = 727, - [750] = 446, - [751] = 491, - [752] = 491, - [753] = 753, - [754] = 754, - [755] = 755, - [756] = 756, - [757] = 753, - [758] = 754, - [759] = 755, - [760] = 753, - [761] = 754, - [762] = 755, - [763] = 753, - [764] = 754, - [765] = 753, - [766] = 754, - [767] = 755, - [768] = 755, - [769] = 754, - [770] = 753, - [771] = 753, - [772] = 754, - [773] = 753, - [774] = 754, - [775] = 754, - [776] = 754, - [777] = 753, - [778] = 754, - [779] = 755, - [780] = 756, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 754, - [785] = 753, - [786] = 755, - [787] = 755, - [788] = 788, - [789] = 789, - [790] = 788, - [791] = 789, - [792] = 789, - [793] = 793, - [794] = 788, - [795] = 793, - [796] = 796, - [797] = 797, + [733] = 733, + [734] = 734, + [735] = 735, + [736] = 736, + [737] = 506, + [738] = 738, + [739] = 739, + [740] = 740, + [741] = 741, + [742] = 506, + [743] = 460, + [744] = 502, + [745] = 745, + [746] = 746, + [747] = 747, + [748] = 748, + [749] = 462, + [750] = 750, + [751] = 460, + [752] = 462, + [753] = 460, + [754] = 502, + [755] = 750, + [756] = 502, + [757] = 502, + [758] = 506, + [759] = 733, + [760] = 750, + [761] = 506, + [762] = 462, + [763] = 734, + [764] = 506, + [765] = 506, + [766] = 462, + [767] = 502, + [768] = 506, + [769] = 769, + [770] = 769, + [771] = 771, + [772] = 772, + [773] = 769, + [774] = 771, + [775] = 775, + [776] = 772, + [777] = 769, + [778] = 771, + [779] = 779, + [780] = 772, + [781] = 769, + [782] = 771, + [783] = 769, + [784] = 772, + [785] = 769, + [786] = 771, + [787] = 771, + [788] = 772, + [789] = 769, + [790] = 790, + [791] = 772, + [792] = 772, + [793] = 769, + [794] = 769, + [795] = 769, + [796] = 779, + [797] = 771, [798] = 798, - [799] = 799, - [800] = 800, - [801] = 796, - [802] = 802, - [803] = 803, + [799] = 772, + [800] = 769, + [801] = 771, + [802] = 772, + [803] = 772, [804] = 804, - [805] = 805, - [806] = 802, - [807] = 797, + [805] = 804, + [806] = 804, + [807] = 807, [808] = 808, - [809] = 809, - [810] = 799, - [811] = 802, + [809] = 807, + [810] = 808, + [811] = 808, [812] = 812, [813] = 813, - [814] = 802, - [815] = 815, - [816] = 797, - [817] = 802, - [818] = 818, - [819] = 815, + [814] = 814, + [815] = 812, + [816] = 816, + [817] = 817, + [818] = 814, + [819] = 814, [820] = 820, - [821] = 804, - [822] = 800, - [823] = 802, - [824] = 824, - [825] = 802, - [826] = 800, - [827] = 797, - [828] = 828, - [829] = 818, - [830] = 830, - [831] = 800, - [832] = 805, - [833] = 820, - [834] = 815, - [835] = 830, - [836] = 824, - [837] = 802, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 817, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 817, + [829] = 814, + [830] = 825, + [831] = 831, + [832] = 831, + [833] = 833, + [834] = 831, + [835] = 826, + [836] = 836, + [837] = 814, [838] = 838, - [839] = 803, - [840] = 840, - [841] = 800, - [842] = 797, + [839] = 839, + [840] = 823, + [841] = 823, + [842] = 817, [843] = 843, [844] = 844, - [845] = 845, - [846] = 845, - [847] = 847, + [845] = 823, + [846] = 813, + [847] = 839, [848] = 848, - [849] = 849, - [850] = 843, - [851] = 847, + [849] = 848, + [850] = 814, + [851] = 820, [852] = 852, - [853] = 844, - [854] = 849, - [855] = 843, - [856] = 845, - [857] = 847, - [858] = 848, - [859] = 849, - [860] = 843, - [861] = 852, - [862] = 844, - [863] = 845, - [864] = 847, - [865] = 848, - [866] = 849, - [867] = 843, - [868] = 852, - [869] = 844, - [870] = 845, - [871] = 847, - [872] = 848, - [873] = 849, - [874] = 843, - [875] = 852, - [876] = 844, - [877] = 845, - [878] = 847, - [879] = 852, - [880] = 848, - [881] = 849, - [882] = 843, - [883] = 852, - [884] = 844, - [885] = 845, - [886] = 847, - [887] = 849, - [888] = 843, - [889] = 852, - [890] = 844, - [891] = 845, - [892] = 847, - [893] = 849, - [894] = 843, - [895] = 852, - [896] = 844, - [897] = 849, - [898] = 852, - [899] = 844, - [900] = 849, - [901] = 843, - [902] = 852, - [903] = 844, - [904] = 849, - [905] = 843, - [906] = 852, - [907] = 844, - [908] = 908, - [909] = 848, - [910] = 910, - [911] = 911, - [912] = 910, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 798, - [918] = 911, - [919] = 910, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 916, - [925] = 922, + [853] = 814, + [854] = 844, + [855] = 814, + [856] = 823, + [857] = 817, + [858] = 827, + [859] = 859, + [860] = 859, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 861, + [865] = 865, + [866] = 866, + [867] = 862, + [868] = 868, + [869] = 859, + [870] = 865, + [871] = 866, + [872] = 861, + [873] = 862, + [874] = 863, + [875] = 865, + [876] = 866, + [877] = 868, + [878] = 859, + [879] = 861, + [880] = 862, + [881] = 863, + [882] = 865, + [883] = 866, + [884] = 868, + [885] = 859, + [886] = 861, + [887] = 862, + [888] = 863, + [889] = 865, + [890] = 866, + [891] = 868, + [892] = 859, + [893] = 861, + [894] = 862, + [895] = 863, + [896] = 865, + [897] = 866, + [898] = 868, + [899] = 859, + [900] = 861, + [901] = 862, + [902] = 865, + [903] = 866, + [904] = 868, + [905] = 859, + [906] = 861, + [907] = 862, + [908] = 865, + [909] = 866, + [910] = 868, + [911] = 859, + [912] = 865, + [913] = 866, + [914] = 868, + [915] = 865, + [916] = 866, + [917] = 868, + [918] = 859, + [919] = 865, + [920] = 866, + [921] = 868, + [922] = 859, + [923] = 863, + [924] = 924, + [925] = 868, [926] = 926, - [927] = 840, + [927] = 927, [928] = 928, - [929] = 916, - [930] = 915, - [931] = 931, - [932] = 922, - [933] = 923, - [934] = 913, - [935] = 914, + [929] = 929, + [930] = 930, + [931] = 928, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 930, [936] = 936, - [937] = 920, - [938] = 921, - [939] = 926, - [940] = 940, - [941] = 936, - [942] = 911, - [943] = 915, - [944] = 928, - [945] = 931, - [946] = 936, - [947] = 485, - [948] = 948, - [949] = 908, + [937] = 926, + [938] = 938, + [939] = 939, + [940] = 939, + [941] = 929, + [942] = 942, + [943] = 943, + [944] = 932, + [945] = 933, + [946] = 833, + [947] = 947, + [948] = 929, + [949] = 822, [950] = 950, - [951] = 951, - [952] = 948, - [953] = 948, - [954] = 908, - [955] = 950, - [956] = 951, - [957] = 950, - [958] = 958, - [959] = 959, - [960] = 948, - [961] = 950, - [962] = 948, - [963] = 486, + [951] = 943, + [952] = 934, + [953] = 947, + [954] = 939, + [955] = 936, + [956] = 950, + [957] = 943, + [958] = 942, + [959] = 927, + [960] = 947, + [961] = 930, + [962] = 950, + [963] = 963, [964] = 964, - [965] = 948, - [966] = 950, - [967] = 948, - [968] = 489, - [969] = 487, - [970] = 970, - [971] = 970, - [972] = 950, - [973] = 948, - [974] = 488, - [975] = 950, - [976] = 951, - [977] = 950, - [978] = 908, - [979] = 908, - [980] = 980, - [981] = 981, - [982] = 486, - [983] = 983, - [984] = 983, - [985] = 985, - [986] = 986, - [987] = 987, - [988] = 980, - [989] = 488, - [990] = 990, - [991] = 991, - [992] = 983, - [993] = 993, - [994] = 486, - [995] = 489, + [965] = 965, + [966] = 963, + [967] = 963, + [968] = 963, + [969] = 965, + [970] = 963, + [971] = 924, + [972] = 972, + [973] = 972, + [974] = 500, + [975] = 501, + [976] = 976, + [977] = 924, + [978] = 963, + [979] = 979, + [980] = 505, + [981] = 965, + [982] = 963, + [983] = 965, + [984] = 965, + [985] = 963, + [986] = 503, + [987] = 965, + [988] = 965, + [989] = 924, + [990] = 972, + [991] = 504, + [992] = 976, + [993] = 965, + [994] = 924, + [995] = 995, [996] = 996, - [997] = 983, - [998] = 486, - [999] = 986, - [1000] = 987, - [1001] = 980, - [1002] = 1002, - [1003] = 990, - [1004] = 987, - [1005] = 1005, - [1006] = 1006, - [1007] = 964, - [1008] = 980, - [1009] = 983, - [1010] = 983, - [1011] = 1011, - [1012] = 1012, - [1013] = 987, - [1014] = 980, - [1015] = 485, - [1016] = 488, - [1017] = 958, - [1018] = 1018, - [1019] = 487, - [1020] = 487, - [1021] = 487, - [1022] = 983, - [1023] = 485, - [1024] = 489, - [1025] = 987, - [1026] = 980, - [1027] = 1027, - [1028] = 485, - [1029] = 488, - [1030] = 983, - [1031] = 987, - [1032] = 987, - [1033] = 987, - [1034] = 980, - [1035] = 489, - [1036] = 983, - [1037] = 983, - [1038] = 996, - [1039] = 980, - [1040] = 987, - [1041] = 980, - [1042] = 1005, - [1043] = 1011, - [1044] = 983, - [1045] = 981, - [1046] = 985, - [1047] = 987, - [1048] = 980, - [1049] = 983, - [1050] = 987, - [1051] = 987, - [1052] = 980, - [1053] = 488, - [1054] = 1054, - [1055] = 1018, - [1056] = 1027, - [1057] = 980, - [1058] = 1006, - [1059] = 487, - [1060] = 489, - [1061] = 486, - [1062] = 485, - [1063] = 964, - [1064] = 1064, - [1065] = 1065, - [1066] = 496, - [1067] = 1067, - [1068] = 498, - [1069] = 1069, - [1070] = 1067, - [1071] = 1071, - [1072] = 1067, - [1073] = 494, - [1074] = 1074, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 998, + [1001] = 500, + [1002] = 501, + [1003] = 1003, + [1004] = 1004, + [1005] = 504, + [1006] = 505, + [1007] = 505, + [1008] = 995, + [1009] = 503, + [1010] = 1003, + [1011] = 1004, + [1012] = 1003, + [1013] = 998, + [1014] = 1014, + [1015] = 996, + [1016] = 1003, + [1017] = 1004, + [1018] = 501, + [1019] = 504, + [1020] = 505, + [1021] = 998, + [1022] = 1022, + [1023] = 1023, + [1024] = 1024, + [1025] = 998, + [1026] = 500, + [1027] = 503, + [1028] = 1003, + [1029] = 1004, + [1030] = 501, + [1031] = 1031, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 998, + [1038] = 999, + [1039] = 964, + [1040] = 504, + [1041] = 1004, + [1042] = 1004, + [1043] = 504, + [1044] = 998, + [1045] = 1003, + [1046] = 1003, + [1047] = 1004, + [1048] = 1004, + [1049] = 998, + [1050] = 998, + [1051] = 1051, + [1052] = 505, + [1053] = 1003, + [1054] = 1004, + [1055] = 500, + [1056] = 503, + [1057] = 998, + [1058] = 1022, + [1059] = 998, + [1060] = 1003, + [1061] = 1004, + [1062] = 501, + [1063] = 998, + [1064] = 1003, + [1065] = 1004, + [1066] = 1023, + [1067] = 1003, + [1068] = 1014, + [1069] = 1004, + [1070] = 1035, + [1071] = 1036, + [1072] = 1024, + [1073] = 1031, + [1074] = 1034, [1075] = 1075, - [1076] = 1076, - [1077] = 1077, - [1078] = 446, + [1076] = 503, + [1077] = 500, + [1078] = 1003, [1079] = 1079, - [1080] = 495, + [1080] = 1080, [1081] = 1081, - [1082] = 446, - [1083] = 1083, + [1082] = 1082, + [1083] = 511, [1084] = 1084, [1085] = 1085, [1086] = 1086, [1087] = 1087, - [1088] = 1086, - [1089] = 1064, + [1088] = 1088, + [1089] = 1089, [1090] = 1090, [1091] = 1091, - [1092] = 1065, + [1092] = 1092, [1093] = 1093, - [1094] = 958, + [1094] = 1094, [1095] = 1095, [1096] = 1096, [1097] = 1097, - [1098] = 727, - [1099] = 1099, + [1098] = 510, + [1099] = 1097, [1100] = 1100, - [1101] = 1077, - [1102] = 1102, - [1103] = 501, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 493, - [1108] = 497, - [1109] = 492, - [1110] = 1110, - [1111] = 1071, - [1112] = 1074, - [1113] = 1081, - [1114] = 1085, - [1115] = 958, - [1116] = 1079, - [1117] = 964, - [1118] = 1105, + [1101] = 1101, + [1102] = 517, + [1103] = 1103, + [1104] = 964, + [1105] = 513, + [1106] = 1094, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 1097, + [1111] = 1111, + [1112] = 1084, + [1113] = 1113, + [1114] = 1114, + [1115] = 515, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, [1119] = 1119, - [1120] = 1120, - [1121] = 500, + [1120] = 1114, + [1121] = 1090, [1122] = 1122, - [1123] = 1075, - [1124] = 1083, - [1125] = 1102, - [1126] = 1086, - [1127] = 1095, - [1128] = 1076, + [1123] = 1091, + [1124] = 1092, + [1125] = 1125, + [1126] = 1093, + [1127] = 1127, + [1128] = 1128, [1129] = 1129, [1130] = 1130, - [1131] = 1131, - [1132] = 1095, + [1131] = 995, + [1132] = 734, [1133] = 1133, - [1134] = 1134, - [1135] = 1135, - [1136] = 1106, - [1137] = 1079, - [1138] = 499, - [1139] = 1139, - [1140] = 1129, - [1141] = 1129, - [1142] = 1129, - [1143] = 1129, - [1144] = 1129, - [1145] = 1129, - [1146] = 1129, - [1147] = 1129, - [1148] = 1129, - [1149] = 1129, - [1150] = 1129, - [1151] = 1130, - [1152] = 1139, - [1153] = 1077, - [1154] = 1110, - [1155] = 958, - [1156] = 964, + [1134] = 1094, + [1135] = 964, + [1136] = 1136, + [1137] = 995, + [1138] = 1138, + [1139] = 995, + [1140] = 1140, + [1141] = 462, + [1142] = 462, + [1143] = 964, + [1144] = 1144, + [1145] = 1145, + [1146] = 1146, + [1147] = 508, + [1148] = 1116, + [1149] = 512, + [1150] = 516, + [1151] = 1084, + [1152] = 1100, + [1153] = 1103, + [1154] = 1113, + [1155] = 1117, + [1156] = 1122, [1157] = 1157, - [1158] = 1131, - [1159] = 1091, - [1160] = 583, - [1161] = 508, - [1162] = 616, - [1163] = 637, - [1164] = 611, - [1165] = 638, - [1166] = 542, - [1167] = 1167, - [1168] = 563, - [1169] = 564, - [1170] = 543, - [1171] = 642, - [1172] = 565, - [1173] = 505, - [1174] = 566, - [1175] = 510, - [1176] = 512, - [1177] = 513, - [1178] = 544, - [1179] = 567, - [1180] = 686, - [1181] = 687, - [1182] = 677, - [1183] = 688, - [1184] = 1184, - [1185] = 689, - [1186] = 678, - [1187] = 679, - [1188] = 690, - [1189] = 514, - [1190] = 702, - [1191] = 515, - [1192] = 691, - [1193] = 568, - [1194] = 639, - [1195] = 680, - [1196] = 617, - [1197] = 618, - [1198] = 521, - [1199] = 619, - [1200] = 964, - [1201] = 569, - [1202] = 570, - [1203] = 571, - [1204] = 620, - [1205] = 703, - [1206] = 519, - [1207] = 1167, - [1208] = 621, - [1209] = 623, - [1210] = 643, - [1211] = 644, - [1212] = 572, - [1213] = 573, - [1214] = 574, - [1215] = 522, - [1216] = 523, - [1217] = 681, - [1218] = 575, - [1219] = 576, - [1220] = 524, - [1221] = 577, - [1222] = 578, - [1223] = 525, - [1224] = 704, - [1225] = 624, - [1226] = 625, - [1227] = 610, - [1228] = 615, - [1229] = 511, - [1230] = 705, - [1231] = 682, - [1232] = 579, - [1233] = 580, - [1234] = 581, - [1235] = 683, - [1236] = 626, - [1237] = 526, - [1238] = 582, - [1239] = 1239, - [1240] = 648, - [1241] = 627, - [1242] = 684, - [1243] = 697, - [1244] = 649, - [1245] = 527, - [1246] = 650, - [1247] = 1247, - [1248] = 666, - [1249] = 667, - [1250] = 668, - [1251] = 669, - [1252] = 584, - [1253] = 670, - [1254] = 685, - [1255] = 671, - [1256] = 628, - [1257] = 585, - [1258] = 586, - [1259] = 520, - [1260] = 545, - [1261] = 587, - [1262] = 546, - [1263] = 547, - [1264] = 629, - [1265] = 548, - [1266] = 651, - [1267] = 652, - [1268] = 672, - [1269] = 549, - [1270] = 502, - [1271] = 550, - [1272] = 551, - [1273] = 656, - [1274] = 673, - [1275] = 1104, - [1276] = 657, - [1277] = 658, - [1278] = 674, - [1279] = 659, - [1280] = 701, - [1281] = 653, - [1282] = 675, - [1283] = 676, - [1284] = 552, - [1285] = 528, - [1286] = 529, - [1287] = 530, - [1288] = 531, - [1289] = 532, - [1290] = 661, - [1291] = 533, - [1292] = 534, - [1293] = 630, - [1294] = 662, - [1295] = 1184, - [1296] = 1296, - [1297] = 553, - [1298] = 554, - [1299] = 631, - [1300] = 588, - [1301] = 589, - [1302] = 1302, - [1303] = 507, - [1304] = 446, - [1305] = 555, - [1306] = 556, - [1307] = 509, - [1308] = 535, - [1309] = 536, - [1310] = 590, - [1311] = 591, - [1312] = 645, - [1313] = 654, - [1314] = 537, - [1315] = 655, - [1316] = 538, - [1317] = 646, + [1158] = 1158, + [1159] = 1101, + [1160] = 1114, + [1161] = 1133, + [1162] = 514, + [1163] = 1136, + [1164] = 1138, + [1165] = 1165, + [1166] = 1119, + [1167] = 1107, + [1168] = 1108, + [1169] = 1082, + [1170] = 1144, + [1171] = 1109, + [1172] = 1082, + [1173] = 1082, + [1174] = 1119, + [1175] = 1082, + [1176] = 1082, + [1177] = 1082, + [1178] = 1082, + [1179] = 1082, + [1180] = 1082, + [1181] = 1082, + [1182] = 1082, + [1183] = 1095, + [1184] = 1085, + [1185] = 1165, + [1186] = 1086, + [1187] = 1145, + [1188] = 1088, + [1189] = 995, + [1190] = 964, + [1191] = 1089, + [1192] = 1192, + [1193] = 509, + [1194] = 542, + [1195] = 578, + [1196] = 579, + [1197] = 580, + [1198] = 645, + [1199] = 613, + [1200] = 581, + [1201] = 646, + [1202] = 647, + [1203] = 1203, + [1204] = 530, + [1205] = 656, + [1206] = 664, + [1207] = 648, + [1208] = 1208, + [1209] = 657, + [1210] = 658, + [1211] = 659, + [1212] = 1212, + [1213] = 649, + [1214] = 526, + [1215] = 650, + [1216] = 1203, + [1217] = 615, + [1218] = 660, + [1219] = 619, + [1220] = 1220, + [1221] = 661, + [1222] = 665, + [1223] = 582, + [1224] = 583, + [1225] = 729, + [1226] = 730, + [1227] = 531, + [1228] = 584, + [1229] = 532, + [1230] = 585, + [1231] = 636, + [1232] = 662, + [1233] = 663, + [1234] = 641, + [1235] = 666, + [1236] = 621, + [1237] = 623, + [1238] = 674, + [1239] = 533, + [1240] = 538, + [1241] = 1241, + [1242] = 732, + [1243] = 651, + [1244] = 527, + [1245] = 637, + [1246] = 558, + [1247] = 556, + [1248] = 586, + [1249] = 706, + [1250] = 707, + [1251] = 629, + [1252] = 617, + [1253] = 614, + [1254] = 1254, + [1255] = 708, + [1256] = 624, + [1257] = 554, + [1258] = 631, + [1259] = 528, + [1260] = 524, + [1261] = 1261, + [1262] = 638, + [1263] = 559, + [1264] = 560, + [1265] = 639, + [1266] = 1254, + [1267] = 540, + [1268] = 534, + [1269] = 709, + [1270] = 710, + [1271] = 1271, + [1272] = 630, + [1273] = 539, + [1274] = 616, + [1275] = 1275, + [1276] = 652, + [1277] = 1277, + [1278] = 711, + [1279] = 587, + [1280] = 640, + [1281] = 561, + [1282] = 562, + [1283] = 1283, + [1284] = 518, + [1285] = 541, + [1286] = 718, + [1287] = 667, + [1288] = 588, + [1289] = 589, + [1290] = 543, + [1291] = 563, + [1292] = 544, + [1293] = 590, + [1294] = 591, + [1295] = 697, + [1296] = 592, + [1297] = 593, + [1298] = 594, + [1299] = 625, + [1300] = 626, + [1301] = 698, + [1302] = 699, + [1303] = 525, + [1304] = 620, + [1305] = 627, + [1306] = 618, + [1307] = 595, + [1308] = 596, + [1309] = 597, + [1310] = 545, + [1311] = 668, + [1312] = 598, + [1313] = 599, + [1314] = 628, + [1315] = 600, + [1316] = 601, + [1317] = 669, [1318] = 1318, - [1319] = 592, - [1320] = 539, - [1321] = 714, - [1322] = 557, - [1323] = 632, - [1324] = 663, - [1325] = 593, - [1326] = 664, - [1327] = 692, - [1328] = 558, - [1329] = 1296, - [1330] = 693, - [1331] = 614, - [1332] = 694, - [1333] = 559, - [1334] = 1302, - [1335] = 665, - [1336] = 695, - [1337] = 696, - [1338] = 1338, - [1339] = 647, - [1340] = 1338, - [1341] = 518, - [1342] = 1342, - [1343] = 594, - [1344] = 640, - [1345] = 595, - [1346] = 560, - [1347] = 596, - [1348] = 561, - [1349] = 597, - [1350] = 1350, - [1351] = 598, - [1352] = 504, - [1353] = 562, - [1354] = 540, - [1355] = 541, - [1356] = 613, - [1357] = 599, - [1358] = 635, - [1359] = 698, - [1360] = 636, - [1361] = 641, - [1362] = 1342, - [1363] = 600, - [1364] = 601, - [1365] = 602, - [1366] = 1239, - [1367] = 603, - [1368] = 604, - [1369] = 605, - [1370] = 633, - [1371] = 606, - [1372] = 607, - [1373] = 608, - [1374] = 1350, - [1375] = 634, - [1376] = 958, - [1377] = 516, - [1378] = 699, - [1379] = 517, - [1380] = 612, - [1381] = 700, - [1382] = 609, - [1383] = 660, - [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 1387, - [1388] = 1388, - [1389] = 1389, - [1390] = 1390, - [1391] = 1391, - [1392] = 1392, - [1393] = 1393, - [1394] = 1394, - [1395] = 1395, - [1396] = 1396, - [1397] = 1397, - [1398] = 1398, - [1399] = 1399, - [1400] = 1400, - [1401] = 1401, - [1402] = 1402, - [1403] = 1403, - [1404] = 723, - [1405] = 1405, - [1406] = 1406, - [1407] = 1407, - [1408] = 1408, - [1409] = 1409, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 1414, - [1415] = 1415, - [1416] = 1416, - [1417] = 1417, - [1418] = 1418, - [1419] = 446, - [1420] = 1420, - [1421] = 1421, - [1422] = 1422, - [1423] = 1423, + [1319] = 670, + [1320] = 557, + [1321] = 685, + [1322] = 686, + [1323] = 687, + [1324] = 688, + [1325] = 689, + [1326] = 1326, + [1327] = 675, + [1328] = 602, + [1329] = 690, + [1330] = 632, + [1331] = 633, + [1332] = 642, + [1333] = 603, + [1334] = 643, + [1335] = 720, + [1336] = 676, + [1337] = 644, + [1338] = 604, + [1339] = 700, + [1340] = 634, + [1341] = 722, + [1342] = 671, + [1343] = 523, + [1344] = 691, + [1345] = 692, + [1346] = 605, + [1347] = 677, + [1348] = 693, + [1349] = 672, + [1350] = 694, + [1351] = 701, + [1352] = 695, + [1353] = 696, + [1354] = 1140, + [1355] = 606, + [1356] = 547, + [1357] = 548, + [1358] = 549, + [1359] = 550, + [1360] = 702, + [1361] = 703, + [1362] = 551, + [1363] = 678, + [1364] = 679, + [1365] = 680, + [1366] = 681, + [1367] = 529, + [1368] = 552, + [1369] = 704, + [1370] = 1370, + [1371] = 1208, + [1372] = 462, + [1373] = 553, + [1374] = 1241, + [1375] = 682, + [1376] = 705, + [1377] = 635, + [1378] = 683, + [1379] = 564, + [1380] = 565, + [1381] = 566, + [1382] = 717, + [1383] = 567, + [1384] = 607, + [1385] = 568, + [1386] = 608, + [1387] = 569, + [1388] = 570, + [1389] = 571, + [1390] = 572, + [1391] = 573, + [1392] = 1370, + [1393] = 1212, + [1394] = 574, + [1395] = 555, + [1396] = 575, + [1397] = 1261, + [1398] = 1271, + [1399] = 609, + [1400] = 610, + [1401] = 611, + [1402] = 1275, + [1403] = 1277, + [1404] = 653, + [1405] = 684, + [1406] = 673, + [1407] = 612, + [1408] = 1318, + [1409] = 719, + [1410] = 712, + [1411] = 1220, + [1412] = 713, + [1413] = 654, + [1414] = 655, + [1415] = 576, + [1416] = 535, + [1417] = 714, + [1418] = 536, + [1419] = 715, + [1420] = 716, + [1421] = 537, + [1422] = 577, + [1423] = 546, [1424] = 1424, [1425] = 1425, [1426] = 1426, [1427] = 1427, - [1428] = 1384, - [1429] = 1422, + [1428] = 1428, + [1429] = 1429, [1430] = 1430, [1431] = 1431, - [1432] = 1432, - [1433] = 1425, - [1434] = 1426, - [1435] = 1427, - [1436] = 1384, - [1437] = 1437, - [1438] = 1438, - [1439] = 1438, - [1440] = 1440, - [1441] = 1441, - [1442] = 1442, - [1443] = 727, - [1444] = 1444, - [1445] = 1445, - [1446] = 1446, - [1447] = 1447, - [1448] = 1442, - [1449] = 1431, - [1450] = 1450, + [1432] = 1424, + [1433] = 1433, + [1434] = 1425, + [1435] = 1426, + [1436] = 1436, + [1437] = 1427, + [1438] = 1428, + [1439] = 735, + [1440] = 736, + [1441] = 1429, + [1442] = 1430, + [1443] = 1431, + [1444] = 1424, + [1445] = 1433, + [1446] = 1425, + [1447] = 1426, + [1448] = 1425, + [1449] = 1427, + [1450] = 1428, [1451] = 1451, - [1452] = 1452, - [1453] = 1444, - [1454] = 1454, - [1455] = 1455, - [1456] = 1422, - [1457] = 1423, + [1452] = 1426, + [1453] = 1429, + [1454] = 1430, + [1455] = 1431, + [1456] = 1424, + [1457] = 1433, [1458] = 1425, [1459] = 1426, [1460] = 1427, - [1461] = 1384, - [1462] = 1444, - [1463] = 1463, - [1464] = 1422, - [1465] = 1425, - [1466] = 1426, - [1467] = 1427, - [1468] = 1384, - [1469] = 1442, - [1470] = 1444, - [1471] = 1452, - [1472] = 1463, - [1473] = 1422, - [1474] = 1425, - [1475] = 1426, - [1476] = 1427, - [1477] = 1384, - [1478] = 1438, - [1479] = 1444, - [1480] = 1463, - [1481] = 1422, - [1482] = 1425, - [1483] = 1426, - [1484] = 1427, - [1485] = 1384, - [1486] = 1444, - [1487] = 1463, - [1488] = 1422, - [1489] = 1425, - [1490] = 1426, - [1491] = 1427, - [1492] = 1384, - [1493] = 1444, - [1494] = 1463, - [1495] = 1422, - [1496] = 1425, - [1497] = 1426, - [1498] = 1427, - [1499] = 1384, - [1500] = 1444, - [1501] = 1463, - [1502] = 1422, - [1503] = 1425, - [1504] = 1426, - [1505] = 1427, - [1506] = 1384, - [1507] = 1444, - [1508] = 1463, - [1509] = 1450, - [1510] = 1463, + [1461] = 1428, + [1462] = 1429, + [1463] = 1430, + [1464] = 1431, + [1465] = 1424, + [1466] = 1433, + [1467] = 1425, + [1468] = 1426, + [1469] = 1427, + [1470] = 1428, + [1471] = 1471, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, + [1477] = 1477, + [1478] = 1478, + [1479] = 1429, + [1480] = 1480, + [1481] = 1430, + [1482] = 1431, + [1483] = 1424, + [1484] = 1433, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, + [1490] = 1490, + [1491] = 1491, + [1492] = 1426, + [1493] = 1493, + [1494] = 1494, + [1495] = 1495, + [1496] = 1427, + [1497] = 1497, + [1498] = 1428, + [1499] = 1499, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 1430, + [1504] = 1428, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, + [1508] = 1508, + [1509] = 1509, + [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1454, + [1513] = 1513, [1514] = 1514, - [1515] = 1515, + [1515] = 1495, [1516] = 1516, [1517] = 1517, [1518] = 1518, - [1519] = 1438, - [1520] = 1408, - [1521] = 1452, - [1522] = 1522, - [1523] = 1463, - [1524] = 1524, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1416, - [1529] = 1515, - [1530] = 726, - [1531] = 1432, - [1532] = 1440, - [1533] = 1441, - [1534] = 715, - [1535] = 1451, - [1536] = 1455, - [1537] = 1514, + [1519] = 745, + [1520] = 1520, + [1521] = 1521, + [1522] = 1480, + [1523] = 1487, + [1524] = 1488, + [1525] = 1493, + [1526] = 1431, + [1527] = 1476, + [1528] = 1478, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, + [1532] = 1532, + [1533] = 1533, + [1534] = 1534, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, [1538] = 1538, - [1539] = 1524, + [1539] = 1424, [1540] = 1540, - [1541] = 1527, + [1541] = 1541, [1542] = 1542, [1543] = 1543, [1544] = 1544, - [1545] = 1540, + [1545] = 1545, [1546] = 1546, - [1547] = 1546, - [1548] = 1548, + [1547] = 1547, + [1548] = 1433, [1549] = 1549, [1550] = 1550, [1551] = 1551, - [1552] = 1518, + [1552] = 1552, [1553] = 1553, [1554] = 1554, - [1555] = 1422, + [1555] = 1555, [1556] = 1556, - [1557] = 1385, - [1558] = 1391, - [1559] = 1423, - [1560] = 1392, - [1561] = 1393, - [1562] = 1395, - [1563] = 1563, - [1564] = 1398, - [1565] = 1399, - [1566] = 1402, - [1567] = 1422, - [1568] = 1403, - [1569] = 1425, + [1557] = 1557, + [1558] = 1558, + [1559] = 1559, + [1560] = 1560, + [1561] = 1561, + [1562] = 1562, + [1563] = 1486, + [1564] = 1564, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1489, + [1569] = 1569, [1570] = 1570, - [1571] = 1426, - [1572] = 1427, - [1573] = 1384, - [1574] = 1438, - [1575] = 1410, - [1576] = 1442, - [1577] = 1444, - [1578] = 1412, - [1579] = 717, - [1580] = 1414, - [1581] = 1452, - [1582] = 1415, - [1583] = 1463, - [1584] = 1417, + [1571] = 1571, + [1572] = 1572, + [1573] = 1529, + [1574] = 1473, + [1575] = 1531, + [1576] = 1475, + [1577] = 1532, + [1578] = 1533, + [1579] = 1534, + [1580] = 1580, + [1581] = 1535, + [1582] = 1536, + [1583] = 1537, + [1584] = 1584, [1585] = 1585, - [1586] = 1586, - [1587] = 1424, - [1588] = 1422, - [1589] = 1425, - [1590] = 1426, - [1591] = 1427, - [1592] = 1384, - [1593] = 718, - [1594] = 1442, - [1595] = 1595, - [1596] = 1444, - [1597] = 1452, - [1598] = 1463, - [1599] = 1423, - [1600] = 1422, - [1601] = 1425, - [1602] = 1426, - [1603] = 1427, - [1604] = 1384, - [1605] = 1444, - [1606] = 1463, - [1607] = 1516, - [1608] = 1511, - [1609] = 1512, - [1610] = 1517, - [1611] = 1512, - [1612] = 1422, + [1586] = 1540, + [1587] = 1587, + [1588] = 1588, + [1589] = 1544, + [1590] = 1549, + [1591] = 1591, + [1592] = 1552, + [1593] = 1553, + [1594] = 1556, + [1595] = 1557, + [1596] = 1596, + [1597] = 1597, + [1598] = 1558, + [1599] = 1429, + [1600] = 1600, + [1601] = 1430, + [1602] = 1431, + [1603] = 1424, + [1604] = 1433, + [1605] = 1426, + [1606] = 1428, + [1607] = 1559, + [1608] = 1429, + [1609] = 1430, + [1610] = 1431, + [1611] = 1424, + [1612] = 1433, [1613] = 1425, [1614] = 1426, [1615] = 1427, - [1616] = 1408, - [1617] = 1384, - [1618] = 1442, - [1619] = 1619, - [1620] = 1511, - [1621] = 1512, - [1622] = 1444, - [1623] = 1386, - [1624] = 1387, - [1625] = 1452, - [1626] = 1388, - [1627] = 1463, - [1628] = 1628, - [1629] = 1549, - [1630] = 1550, - [1631] = 1422, - [1632] = 1551, - [1633] = 1425, - [1634] = 1426, - [1635] = 1427, - [1636] = 1384, - [1637] = 1511, - [1638] = 1512, - [1639] = 1442, - [1640] = 1444, - [1641] = 1390, - [1642] = 1642, - [1643] = 1452, - [1644] = 1644, - [1645] = 1463, - [1646] = 1646, - [1647] = 1647, - [1648] = 1422, - [1649] = 1649, - [1650] = 1425, + [1616] = 1428, + [1617] = 1429, + [1618] = 1430, + [1619] = 1431, + [1620] = 1424, + [1621] = 1433, + [1622] = 1436, + [1623] = 1426, + [1624] = 1428, + [1625] = 1429, + [1626] = 1430, + [1627] = 1431, + [1628] = 1424, + [1629] = 1433, + [1630] = 1426, + [1631] = 1428, + [1632] = 1429, + [1633] = 1430, + [1634] = 1431, + [1635] = 1424, + [1636] = 1433, + [1637] = 1426, + [1638] = 1428, + [1639] = 1429, + [1640] = 1430, + [1641] = 1431, + [1642] = 1424, + [1643] = 1433, + [1644] = 1426, + [1645] = 1428, + [1646] = 1429, + [1647] = 1430, + [1648] = 1431, + [1649] = 1424, + [1650] = 1433, [1651] = 1426, - [1652] = 1427, - [1653] = 1511, - [1654] = 1384, - [1655] = 1442, - [1656] = 1444, - [1657] = 1657, - [1658] = 1452, - [1659] = 1463, - [1660] = 1442, - [1661] = 1511, - [1662] = 1662, - [1663] = 1663, + [1652] = 1428, + [1653] = 1542, + [1654] = 1472, + [1655] = 1473, + [1656] = 1543, + [1657] = 1545, + [1658] = 1427, + [1659] = 1546, + [1660] = 1547, + [1661] = 1499, + [1662] = 1497, + [1663] = 1495, [1664] = 1664, [1665] = 1665, - [1666] = 1452, + [1666] = 1666, [1667] = 1667, - [1668] = 1511, - [1669] = 1642, - [1670] = 1670, - [1671] = 1511, - [1672] = 1644, - [1673] = 1512, - [1674] = 1522, - [1675] = 1511, - [1676] = 1676, - [1677] = 1542, + [1668] = 1668, + [1669] = 1436, + [1670] = 1472, + [1671] = 1671, + [1672] = 1664, + [1673] = 1665, + [1674] = 1674, + [1675] = 1666, + [1676] = 1667, + [1677] = 1668, [1678] = 1678, - [1679] = 1422, - [1680] = 1646, - [1681] = 1425, - [1682] = 1511, - [1683] = 1426, - [1684] = 1427, - [1685] = 1384, - [1686] = 1647, - [1687] = 1649, - [1688] = 724, + [1679] = 1674, + [1680] = 1554, + [1681] = 1555, + [1682] = 748, + [1683] = 1683, + [1684] = 1684, + [1685] = 1685, + [1686] = 1686, + [1687] = 740, + [1688] = 741, [1689] = 1689, - [1690] = 1511, - [1691] = 1691, - [1692] = 1657, + [1690] = 1690, + [1691] = 1428, + [1692] = 1692, [1693] = 1693, - [1694] = 1444, - [1695] = 1511, - [1696] = 1511, - [1697] = 1693, - [1698] = 1511, - [1699] = 1444, - [1700] = 1511, - [1701] = 1662, - [1702] = 1511, - [1703] = 1663, - [1704] = 1408, + [1694] = 1694, + [1695] = 1695, + [1696] = 1696, + [1697] = 1697, + [1698] = 1698, + [1699] = 1699, + [1700] = 1700, + [1701] = 1701, + [1702] = 1702, + [1703] = 1692, + [1704] = 1693, [1705] = 1705, - [1706] = 1664, - [1707] = 1511, - [1708] = 1708, - [1709] = 1665, + [1706] = 1694, + [1707] = 1477, + [1708] = 739, + [1709] = 1490, [1710] = 1710, [1711] = 1711, - [1712] = 1712, - [1713] = 1713, - [1714] = 1711, - [1715] = 1715, - [1716] = 1716, - [1717] = 1619, - [1718] = 1718, - [1719] = 1719, - [1720] = 1563, - [1721] = 1585, - [1722] = 1586, - [1723] = 1394, - [1724] = 1396, - [1725] = 1397, - [1726] = 1400, - [1727] = 1401, - [1728] = 1543, - [1729] = 1548, - [1730] = 1553, - [1731] = 1554, - [1732] = 1710, - [1733] = 1418, - [1734] = 1708, - [1735] = 1421, - [1736] = 1712, - [1737] = 1715, - [1738] = 1716, - [1739] = 1619, - [1740] = 1718, - [1741] = 1719, - [1742] = 1563, - [1743] = 1585, - [1744] = 1586, - [1745] = 1394, - [1746] = 1396, - [1747] = 1397, - [1748] = 1400, - [1749] = 1401, - [1750] = 1543, - [1751] = 1548, - [1752] = 1553, - [1753] = 1554, - [1754] = 1710, - [1755] = 1430, - [1756] = 1708, - [1757] = 1437, - [1758] = 1619, - [1759] = 1670, - [1760] = 1708, - [1761] = 1718, - [1762] = 1708, - [1763] = 1763, - [1764] = 1446, - [1765] = 1708, - [1766] = 1447, - [1767] = 1719, - [1768] = 1708, - [1769] = 1708, - [1770] = 1463, - [1771] = 1708, - [1772] = 1426, - [1773] = 1708, - [1774] = 722, - [1775] = 1708, - [1776] = 1708, - [1777] = 1708, - [1778] = 1708, - [1779] = 1708, - [1780] = 1708, - [1781] = 1544, - [1782] = 1712, - [1783] = 1667, - [1784] = 1427, - [1785] = 1785, - [1786] = 1708, - [1787] = 1406, - [1788] = 731, - [1789] = 1715, - [1790] = 1384, - [1791] = 1526, - [1792] = 1716, - [1793] = 1793, - [1794] = 720, - [1795] = 1413, - [1796] = 721, - [1797] = 1797, - [1798] = 1405, - [1799] = 1422, - [1800] = 1425, - [1801] = 1426, - [1802] = 1427, - [1803] = 1384, - [1804] = 1438, - [1805] = 1444, - [1806] = 1463, - [1807] = 1463, - [1808] = 1628, - [1809] = 1422, - [1810] = 1425, - [1811] = 1426, - [1812] = 1427, - [1813] = 1444, - [1814] = 1463, - [1815] = 1511, - [1816] = 1423, - [1817] = 1511, - [1818] = 1708, - [1819] = 1708, - [1820] = 1820, - [1821] = 1821, - [1822] = 1422, - [1823] = 1425, - [1824] = 1426, - [1825] = 1427, - [1826] = 1384, - [1827] = 1444, - [1828] = 1463, - [1829] = 1676, - [1830] = 1678, - [1831] = 1511, - [1832] = 1708, - [1833] = 1425, - [1834] = 727, - [1835] = 727, - [1836] = 446, - [1837] = 446, - [1838] = 491, - [1839] = 1839, - [1840] = 1840, - [1841] = 1841, - [1842] = 798, - [1843] = 840, - [1844] = 1841, - [1845] = 1845, - [1846] = 798, - [1847] = 1845, - [1848] = 840, - [1849] = 1849, - [1850] = 1849, - [1851] = 1851, - [1852] = 1851, - [1853] = 1853, - [1854] = 1854, - [1855] = 1855, - [1856] = 1856, - [1857] = 1857, - [1858] = 1857, - [1859] = 1854, - [1860] = 1851, - [1861] = 1855, - [1862] = 1855, - [1863] = 1863, - [1864] = 1864, - [1865] = 1863, - [1866] = 1863, - [1867] = 1863, - [1868] = 1863, - [1869] = 1863, - [1870] = 1870, - [1871] = 1871, - [1872] = 1872, - [1873] = 1873, - [1874] = 1874, - [1875] = 1871, - [1876] = 1873, - [1877] = 1877, - [1878] = 1878, - [1879] = 1879, - [1880] = 1880, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1885, - [1886] = 1886, - [1887] = 1884, - [1888] = 1884, - [1889] = 1884, - [1890] = 1885, - [1891] = 1886, - [1892] = 1881, - [1893] = 1877, - [1894] = 1884, + [1712] = 1425, + [1713] = 1502, + [1714] = 1505, + [1715] = 1506, + [1716] = 1507, + [1717] = 1600, + [1718] = 1429, + [1719] = 1430, + [1720] = 1431, + [1721] = 1424, + [1722] = 1433, + [1723] = 1426, + [1724] = 1428, + [1725] = 1429, + [1726] = 1726, + [1727] = 1472, + [1728] = 1473, + [1729] = 1560, + [1730] = 1430, + [1731] = 1431, + [1732] = 1424, + [1733] = 1433, + [1734] = 1495, + [1735] = 1472, + [1736] = 1473, + [1737] = 1491, + [1738] = 1561, + [1739] = 1436, + [1740] = 1509, + [1741] = 1426, + [1742] = 1742, + [1743] = 1425, + [1744] = 734, + [1745] = 1426, + [1746] = 1564, + [1747] = 1510, + [1748] = 1565, + [1749] = 1472, + [1750] = 1473, + [1751] = 1751, + [1752] = 1566, + [1753] = 1427, + [1754] = 1567, + [1755] = 1429, + [1756] = 1705, + [1757] = 1512, + [1758] = 1600, + [1759] = 1472, + [1760] = 1760, + [1761] = 1569, + [1762] = 1428, + [1763] = 1570, + [1764] = 1513, + [1765] = 1571, + [1766] = 738, + [1767] = 1572, + [1768] = 746, + [1769] = 1514, + [1770] = 1770, + [1771] = 1472, + [1772] = 747, + [1773] = 1517, + [1774] = 1518, + [1775] = 1472, + [1776] = 1472, + [1777] = 462, + [1778] = 1472, + [1779] = 1779, + [1780] = 1472, + [1781] = 1429, + [1782] = 1600, + [1783] = 1472, + [1784] = 1472, + [1785] = 1770, + [1786] = 1472, + [1787] = 1472, + [1788] = 1430, + [1789] = 1472, + [1790] = 1431, + [1791] = 1424, + [1792] = 1433, + [1793] = 1538, + [1794] = 1751, + [1795] = 1760, + [1796] = 1685, + [1797] = 1686, + [1798] = 1471, + [1799] = 1541, + [1800] = 1550, + [1801] = 1699, + [1802] = 1701, + [1803] = 1702, + [1804] = 1494, + [1805] = 1500, + [1806] = 1501, + [1807] = 1508, + [1808] = 1511, + [1809] = 1584, + [1810] = 1585, + [1811] = 1587, + [1812] = 1588, + [1813] = 1696, + [1814] = 1538, + [1815] = 1760, + [1816] = 1685, + [1817] = 1686, + [1818] = 1471, + [1819] = 1541, + [1820] = 1550, + [1821] = 1699, + [1822] = 1701, + [1823] = 1702, + [1824] = 1494, + [1825] = 1500, + [1826] = 1501, + [1827] = 1508, + [1828] = 1511, + [1829] = 1584, + [1830] = 1585, + [1831] = 1587, + [1832] = 1588, + [1833] = 1696, + [1834] = 1538, + [1835] = 1471, + [1836] = 1538, + [1837] = 1538, + [1838] = 1538, + [1839] = 1538, + [1840] = 1538, + [1841] = 1538, + [1842] = 1538, + [1843] = 1538, + [1844] = 1538, + [1845] = 1538, + [1846] = 1538, + [1847] = 1538, + [1848] = 1700, + [1849] = 1683, + [1850] = 1538, + [1851] = 1429, + [1852] = 1430, + [1853] = 1431, + [1854] = 1424, + [1855] = 1562, + [1856] = 1433, + [1857] = 1711, + [1858] = 1591, + [1859] = 1429, + [1860] = 1430, + [1861] = 1431, + [1862] = 1424, + [1863] = 1433, + [1864] = 1436, + [1865] = 1426, + [1866] = 1428, + [1867] = 1429, + [1868] = 1430, + [1869] = 1431, + [1870] = 1424, + [1871] = 1433, + [1872] = 1426, + [1873] = 1428, + [1874] = 1472, + [1875] = 1600, + [1876] = 1472, + [1877] = 1538, + [1878] = 1538, + [1879] = 1436, + [1880] = 1580, + [1881] = 1429, + [1882] = 1430, + [1883] = 1431, + [1884] = 1433, + [1885] = 1426, + [1886] = 1428, + [1887] = 1472, + [1888] = 1538, + [1889] = 1474, + [1890] = 734, + [1891] = 462, + [1892] = 734, + [1893] = 462, + [1894] = 506, [1895] = 1895, [1896] = 1896, - [1897] = 1884, - [1898] = 1898, - [1899] = 1899, - [1900] = 1900, - [1901] = 1884, - [1902] = 1884, - [1903] = 1903, + [1897] = 1897, + [1898] = 833, + [1899] = 822, + [1900] = 1897, + [1901] = 1901, + [1902] = 1901, + [1903] = 822, [1904] = 1904, [1905] = 1904, - [1906] = 1906, + [1906] = 833, [1907] = 1907, [1908] = 1908, [1909] = 1909, [1910] = 1910, - [1911] = 1911, - [1912] = 1907, - [1913] = 1913, - [1914] = 1910, + [1911] = 1909, + [1912] = 1912, + [1913] = 1910, + [1914] = 1908, [1915] = 1915, - [1916] = 1903, - [1917] = 1903, + [1916] = 1907, + [1917] = 1908, [1918] = 1909, [1919] = 1919, - [1920] = 1920, - [1921] = 1910, - [1922] = 1911, - [1923] = 1913, - [1924] = 1909, - [1925] = 1903, - [1926] = 1906, - [1927] = 1919, - [1928] = 1908, + [1920] = 1919, + [1921] = 1919, + [1922] = 1919, + [1923] = 1919, + [1924] = 1919, + [1925] = 1925, + [1926] = 1926, + [1927] = 1927, + [1928] = 1928, [1929] = 1929, - [1930] = 1920, - [1931] = 1908, + [1930] = 1930, + [1931] = 1930, [1932] = 1929, [1933] = 1933, - [1934] = 1909, - [1935] = 1933, - [1936] = 1911, - [1937] = 1913, - [1938] = 1910, - [1939] = 1919, - [1940] = 1920, - [1941] = 1908, - [1942] = 1933, - [1943] = 1929, - [1944] = 1933, - [1945] = 1909, - [1946] = 1906, - [1947] = 1909, - [1948] = 1906, - [1949] = 1906, - [1950] = 1909, - [1951] = 1908, - [1952] = 1911, - [1953] = 1913, - [1954] = 1903, - [1955] = 1919, - [1956] = 1920, - [1957] = 1920, - [1958] = 1929, - [1959] = 1929, - [1960] = 1933, - [1961] = 1909, - [1962] = 1909, - [1963] = 1919, - [1964] = 1909, - [1965] = 1919, - [1966] = 1909, - [1967] = 1933, - [1968] = 1911, - [1969] = 1906, - [1970] = 1913, - [1971] = 1920, - [1972] = 1929, - [1973] = 1933, - [1974] = 1911, - [1975] = 1913, - [1976] = 1919, - [1977] = 1920, - [1978] = 1911, - [1979] = 1908, - [1980] = 1929, - [1981] = 1933, - [1982] = 1907, - [1983] = 1908, - [1984] = 1913, - [1985] = 1903, - [1986] = 1919, - [1987] = 1920, - [1988] = 1908, - [1989] = 1929, - [1990] = 1933, - [1991] = 1909, - [1992] = 1929, - [1993] = 1906, - [1994] = 1909, - [1995] = 1920, - [1996] = 1906, - [1997] = 1909, - [1998] = 1913, - [1999] = 1903, - [2000] = 1906, - [2001] = 1909, - [2002] = 1911, - [2003] = 1915, - [2004] = 1911, - [2005] = 1913, - [2006] = 1903, - [2007] = 1909, - [2008] = 1909, - [2009] = 1919, - [2010] = 1908, - [2011] = 2011, - [2012] = 2011, - [2013] = 2013, - [2014] = 2011, - [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 2018, - [2019] = 2019, - [2020] = 2017, - [2021] = 2018, - [2022] = 2019, - [2023] = 2015, - [2024] = 2016, - [2025] = 2025, - [2026] = 2026, - [2027] = 2027, - [2028] = 2028, - [2029] = 2026, - [2030] = 2030, - [2031] = 2031, - [2032] = 2031, - [2033] = 2027, - [2034] = 2030, + [1934] = 1934, + [1935] = 1935, + [1936] = 1936, + [1937] = 1937, + [1938] = 1938, + [1939] = 1939, + [1940] = 1940, + [1941] = 1941, + [1942] = 1937, + [1943] = 1943, + [1944] = 1944, + [1945] = 1945, + [1946] = 1946, + [1947] = 1947, + [1948] = 1947, + [1949] = 1947, + [1950] = 1947, + [1951] = 1943, + [1952] = 1944, + [1953] = 1947, + [1954] = 1947, + [1955] = 1947, + [1956] = 1947, + [1957] = 1946, + [1958] = 1958, + [1959] = 1959, + [1960] = 1959, + [1961] = 1961, + [1962] = 1962, + [1963] = 1963, + [1964] = 1959, + [1965] = 1965, + [1966] = 1966, + [1967] = 1967, + [1968] = 1968, + [1969] = 1969, + [1970] = 1970, + [1971] = 1962, + [1972] = 1959, + [1973] = 1963, + [1974] = 1965, + [1975] = 1966, + [1976] = 1963, + [1977] = 1977, + [1978] = 1967, + [1979] = 1979, + [1980] = 1968, + [1981] = 1968, + [1982] = 1969, + [1983] = 1970, + [1984] = 1962, + [1985] = 1968, + [1986] = 1959, + [1987] = 1963, + [1988] = 1965, + [1989] = 1966, + [1990] = 1969, + [1991] = 1977, + [1992] = 1967, + [1993] = 1970, + [1994] = 1962, + [1995] = 1977, + [1996] = 1967, + [1997] = 1959, + [1998] = 1968, + [1999] = 1968, + [2000] = 1969, + [2001] = 1962, + [2002] = 1959, + [2003] = 2003, + [2004] = 1963, + [2005] = 1977, + [2006] = 1965, + [2007] = 1967, + [2008] = 1966, + [2009] = 1963, + [2010] = 1965, + [2011] = 1977, + [2012] = 1967, + [2013] = 1970, + [2014] = 1969, + [2015] = 1970, + [2016] = 1977, + [2017] = 1967, + [2018] = 1977, + [2019] = 1977, + [2020] = 1961, + [2021] = 1977, + [2022] = 1977, + [2023] = 1977, + [2024] = 1977, + [2025] = 1977, + [2026] = 1977, + [2027] = 1977, + [2028] = 1967, + [2029] = 1968, + [2030] = 1969, + [2031] = 1970, + [2032] = 1962, + [2033] = 1959, + [2034] = 1963, [2035] = 2035, - [2036] = 2028, - [2037] = 2035, - [2038] = 2038, - [2039] = 2039, - [2040] = 1840, - [2041] = 2041, - [2042] = 2042, - [2043] = 2043, - [2044] = 2044, - [2045] = 2045, - [2046] = 2031, - [2047] = 2031, - [2048] = 2048, - [2049] = 2031, - [2050] = 2050, - [2051] = 2031, - [2052] = 2052, - [2053] = 2053, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, - [2057] = 2057, - [2058] = 2058, - [2059] = 2059, - [2060] = 2060, - [2061] = 2054, - [2062] = 2062, - [2063] = 2063, - [2064] = 2031, - [2065] = 2031, - [2066] = 2031, - [2067] = 2031, - [2068] = 2031, + [2036] = 1961, + [2037] = 1968, + [2038] = 1969, + [2039] = 1970, + [2040] = 2035, + [2041] = 1962, + [2042] = 1965, + [2043] = 1966, + [2044] = 1959, + [2045] = 1977, + [2046] = 1967, + [2047] = 1977, + [2048] = 1963, + [2049] = 1979, + [2050] = 1965, + [2051] = 1968, + [2052] = 1969, + [2053] = 1970, + [2054] = 1962, + [2055] = 2035, + [2056] = 1963, + [2057] = 1965, + [2058] = 1966, + [2059] = 1961, + [2060] = 2003, + [2061] = 1962, + [2062] = 1965, + [2063] = 1966, + [2064] = 1966, + [2065] = 1969, + [2066] = 1966, + [2067] = 2067, + [2068] = 2067, [2069] = 2069, - [2070] = 2031, + [2070] = 2067, [2071] = 2071, - [2072] = 2031, - [2073] = 2043, + [2072] = 2072, + [2073] = 2073, [2074] = 2074, - [2075] = 2041, - [2076] = 2076, - [2077] = 2077, + [2075] = 2075, + [2076] = 2074, + [2077] = 2073, [2078] = 2078, - [2079] = 2079, - [2080] = 2080, - [2081] = 2081, + [2079] = 2075, + [2080] = 2072, + [2081] = 2071, [2082] = 2082, [2083] = 2083, [2084] = 2084, [2085] = 2085, [2086] = 2086, - [2087] = 2039, - [2088] = 2038, - [2089] = 2039, - [2090] = 2038, + [2087] = 2084, + [2088] = 2083, + [2089] = 2085, + [2090] = 2086, [2091] = 2091, - [2092] = 2092, - [2093] = 2093, + [2092] = 2082, + [2093] = 2091, [2094] = 2094, - [2095] = 2042, + [2095] = 1896, [2096] = 2096, [2097] = 2097, [2098] = 2098, [2099] = 2099, - [2100] = 2044, + [2100] = 2100, [2101] = 2101, [2102] = 2102, [2103] = 2103, - [2104] = 2041, + [2104] = 2104, [2105] = 2105, [2106] = 2106, [2107] = 2107, - [2108] = 2108, + [2108] = 2091, [2109] = 2109, [2110] = 2110, - [2111] = 1880, - [2112] = 2031, + [2111] = 2091, + [2112] = 2112, [2113] = 2113, - [2114] = 2044, - [2115] = 1878, - [2116] = 2116, - [2117] = 1882, + [2114] = 2091, + [2115] = 2107, + [2116] = 2091, + [2117] = 2091, [2118] = 2118, - [2119] = 2119, - [2120] = 2120, - [2121] = 1898, - [2122] = 1899, - [2123] = 1879, - [2124] = 1900, - [2125] = 1896, + [2119] = 2091, + [2120] = 2091, + [2121] = 2091, + [2122] = 2091, + [2123] = 2123, + [2124] = 2124, + [2125] = 2125, [2126] = 2126, - [2127] = 2031, - [2128] = 1883, - [2129] = 2129, + [2127] = 2091, + [2128] = 2091, + [2129] = 1939, [2130] = 2130, - [2131] = 2131, + [2131] = 2096, [2132] = 2132, [2133] = 2133, [2134] = 2134, - [2135] = 2043, - [2136] = 2052, - [2137] = 2048, - [2138] = 2038, - [2139] = 2056, - [2140] = 2057, - [2141] = 2053, - [2142] = 2055, - [2143] = 2043, - [2144] = 2059, - [2145] = 2060, - [2146] = 2058, - [2147] = 2043, - [2148] = 2045, - [2149] = 2031, - [2150] = 2039, - [2151] = 2041, - [2152] = 2044, - [2153] = 2041, - [2154] = 2039, - [2155] = 2031, - [2156] = 2044, - [2157] = 2039, - [2158] = 2044, - [2159] = 2056, - [2160] = 2057, - [2161] = 2055, - [2162] = 2059, - [2163] = 2060, - [2164] = 2058, - [2165] = 2045, - [2166] = 2043, - [2167] = 2031, - [2168] = 2031, - [2169] = 2038, - [2170] = 2050, - [2171] = 2053, - [2172] = 2052, - [2173] = 2031, - [2174] = 2050, - [2175] = 2041, - [2176] = 2048, - [2177] = 2038, - [2178] = 2053, - [2179] = 2179, - [2180] = 2071, - [2181] = 2048, - [2182] = 2069, - [2183] = 2058, - [2184] = 2179, + [2135] = 2135, + [2136] = 2136, + [2137] = 2137, + [2138] = 2138, + [2139] = 2139, + [2140] = 2140, + [2141] = 2141, + [2142] = 2142, + [2143] = 2100, + [2144] = 1936, + [2145] = 2145, + [2146] = 2146, + [2147] = 2147, + [2148] = 2148, + [2149] = 2098, + [2150] = 2098, + [2151] = 1938, + [2152] = 2096, + [2153] = 2100, + [2154] = 1958, + [2155] = 2155, + [2156] = 2156, + [2157] = 2094, + [2158] = 1935, + [2159] = 1945, + [2160] = 1934, + [2161] = 2161, + [2162] = 2096, + [2163] = 1940, + [2164] = 2164, + [2165] = 2165, + [2166] = 2166, + [2167] = 2167, + [2168] = 2168, + [2169] = 2169, + [2170] = 2170, + [2171] = 2171, + [2172] = 2172, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, + [2176] = 2099, + [2177] = 2091, + [2178] = 2097, + [2179] = 2099, + [2180] = 2097, + [2181] = 2099, + [2182] = 2097, + [2183] = 1941, + [2184] = 2184, [2185] = 2185, - [2186] = 2063, + [2186] = 2186, [2187] = 2187, - [2188] = 2071, - [2189] = 2056, - [2190] = 2057, - [2191] = 2062, - [2192] = 2055, - [2193] = 2059, - [2194] = 2060, - [2195] = 2058, - [2196] = 2045, - [2197] = 2050, - [2198] = 2062, - [2199] = 2199, - [2200] = 2059, - [2201] = 2201, - [2202] = 2052, - [2203] = 2179, - [2204] = 2048, - [2205] = 2039, - [2206] = 2041, - [2207] = 2055, - [2208] = 2208, - [2209] = 2045, - [2210] = 1873, - [2211] = 2211, - [2212] = 2056, - [2213] = 2048, - [2214] = 2201, - [2215] = 2052, - [2216] = 2069, - [2217] = 2050, - [2218] = 2053, - [2219] = 2038, - [2220] = 2043, - [2221] = 2201, - [2222] = 2057, - [2223] = 2060, - [2224] = 2044, - [2225] = 2056, - [2226] = 2057, - [2227] = 2053, - [2228] = 2055, - [2229] = 2059, - [2230] = 2060, - [2231] = 2058, - [2232] = 2045, - [2233] = 2052, - [2234] = 1874, - [2235] = 2063, - [2236] = 2050, - [2237] = 2208, - [2238] = 2101, - [2239] = 2043, - [2240] = 2132, - [2241] = 1881, - [2242] = 2041, - [2243] = 2091, - [2244] = 1878, - [2245] = 2092, - [2246] = 2211, - [2247] = 2093, - [2248] = 2108, - [2249] = 2103, - [2250] = 2074, - [2251] = 2098, - [2252] = 2099, - [2253] = 2044, - [2254] = 2102, - [2255] = 1882, - [2256] = 2116, - [2257] = 2109, - [2258] = 1898, - [2259] = 1899, - [2260] = 1879, - [2261] = 1900, - [2262] = 1874, - [2263] = 1896, - [2264] = 2031, - [2265] = 2120, - [2266] = 2096, - [2267] = 1883, - [2268] = 2069, - [2269] = 1880, - [2270] = 2110, - [2271] = 2126, - [2272] = 2063, - [2273] = 2129, - [2274] = 2062, - [2275] = 2052, - [2276] = 2079, - [2277] = 2050, - [2278] = 2081, - [2279] = 2082, - [2280] = 2084, - [2281] = 2085, - [2282] = 2069, - [2283] = 2086, - [2284] = 1898, - [2285] = 1873, - [2286] = 1899, - [2287] = 1883, - [2288] = 2110, - [2289] = 1879, - [2290] = 2131, - [2291] = 1883, - [2292] = 2199, - [2293] = 2063, - [2294] = 2118, - [2295] = 2119, - [2296] = 2053, - [2297] = 2062, - [2298] = 1873, - [2299] = 2077, - [2300] = 2078, - [2301] = 2071, - [2302] = 2130, - [2303] = 2080, - [2304] = 2069, - [2305] = 2118, - [2306] = 2119, - [2307] = 2079, - [2308] = 2080, - [2309] = 2081, - [2310] = 2082, - [2311] = 2083, - [2312] = 2071, - [2313] = 2208, - [2314] = 2211, - [2315] = 2084, - [2316] = 2056, - [2317] = 2057, - [2318] = 2055, - [2319] = 2059, - [2320] = 2060, - [2321] = 1880, - [2322] = 2045, - [2323] = 2076, - [2324] = 2085, - [2325] = 2083, - [2326] = 2086, - [2327] = 2097, - [2328] = 1878, - [2329] = 1880, - [2330] = 1877, - [2331] = 2094, - [2332] = 2076, - [2333] = 1882, - [2334] = 2106, - [2335] = 2107, - [2336] = 2126, - [2337] = 2129, - [2338] = 2131, - [2339] = 1878, - [2340] = 2097, - [2341] = 2078, - [2342] = 2094, - [2343] = 2130, - [2344] = 2071, - [2345] = 1874, - [2346] = 2106, - [2347] = 2107, - [2348] = 1883, - [2349] = 2105, - [2350] = 2133, - [2351] = 2134, - [2352] = 2105, - [2353] = 2133, - [2354] = 2063, - [2355] = 2062, - [2356] = 2134, - [2357] = 2101, - [2358] = 2039, - [2359] = 2038, - [2360] = 2132, - [2361] = 2048, - [2362] = 2102, - [2363] = 2091, - [2364] = 2092, - [2365] = 2093, - [2366] = 1882, - [2367] = 2108, - [2368] = 1878, - [2369] = 1900, - [2370] = 1896, - [2371] = 2109, - [2372] = 2103, - [2373] = 2074, - [2374] = 1898, - [2375] = 1899, - [2376] = 1879, - [2377] = 2098, - [2378] = 1882, - [2379] = 1898, - [2380] = 1899, - [2381] = 1879, - [2382] = 1900, - [2383] = 1896, - [2384] = 2116, - [2385] = 2120, - [2386] = 2096, - [2387] = 2099, - [2388] = 2077, - [2389] = 1885, - [2390] = 1900, - [2391] = 1886, - [2392] = 1896, - [2393] = 2058, - [2394] = 2106, - [2395] = 1883, - [2396] = 2069, - [2397] = 1880, - [2398] = 2118, - [2399] = 2119, - [2400] = 2071, - [2401] = 2108, - [2402] = 2402, - [2403] = 2110, - [2404] = 2102, - [2405] = 1883, - [2406] = 1882, - [2407] = 2109, - [2408] = 2118, - [2409] = 2077, - [2410] = 1885, - [2411] = 1886, - [2412] = 1881, - [2413] = 1877, - [2414] = 2078, - [2415] = 2079, - [2416] = 2080, - [2417] = 2081, - [2418] = 2082, - [2419] = 2083, - [2420] = 2084, - [2421] = 2109, - [2422] = 2085, - [2423] = 2119, - [2424] = 2086, - [2425] = 1883, - [2426] = 1878, - [2427] = 1898, - [2428] = 1882, - [2429] = 1898, - [2430] = 1899, - [2431] = 1879, - [2432] = 1900, - [2433] = 1896, - [2434] = 1899, - [2435] = 1879, - [2436] = 1880, - [2437] = 1900, - [2438] = 1896, - [2439] = 2048, - [2440] = 1883, - [2441] = 2098, - [2442] = 2099, - [2443] = 1880, - [2444] = 2444, - [2445] = 2063, - [2446] = 2062, - [2447] = 2052, - [2448] = 2050, - [2449] = 2118, - [2450] = 2119, - [2451] = 2110, - [2452] = 2452, - [2453] = 2116, - [2454] = 2120, - [2455] = 2096, - [2456] = 2077, - [2457] = 2079, - [2458] = 1885, - [2459] = 2081, - [2460] = 2082, - [2461] = 2084, - [2462] = 2085, - [2463] = 2086, - [2464] = 1886, - [2465] = 1881, - [2466] = 1873, - [2467] = 1883, - [2468] = 2116, - [2469] = 2120, - [2470] = 2079, - [2471] = 2096, - [2472] = 2081, - [2473] = 2082, - [2474] = 2084, - [2475] = 2085, - [2476] = 1874, - [2477] = 2086, - [2478] = 2053, - [2479] = 2110, - [2480] = 2130, - [2481] = 2076, - [2482] = 1877, - [2483] = 2130, - [2484] = 2076, - [2485] = 2078, - [2486] = 2094, - [2487] = 2107, - [2488] = 1878, - [2489] = 2126, - [2490] = 2093, - [2491] = 2131, - [2492] = 2097, - [2493] = 2105, - [2494] = 2133, - [2495] = 2134, - [2496] = 2101, - [2497] = 2132, - [2498] = 2094, - [2499] = 2091, - [2500] = 2106, - [2501] = 2092, - [2502] = 2093, - [2503] = 2107, - [2504] = 2108, - [2505] = 1895, - [2506] = 2199, - [2507] = 2126, - [2508] = 2129, - [2509] = 2103, - [2510] = 2074, - [2511] = 2131, - [2512] = 2098, - [2513] = 2099, - [2514] = 2091, - [2515] = 2080, - [2516] = 2083, - [2517] = 2097, - [2518] = 2185, - [2519] = 2187, - [2520] = 2103, - [2521] = 2074, - [2522] = 2452, - [2523] = 2105, - [2524] = 2116, - [2525] = 2120, - [2526] = 2096, - [2527] = 2077, - [2528] = 1885, - [2529] = 1886, - [2530] = 1881, - [2531] = 1877, - [2532] = 2130, - [2533] = 2092, - [2534] = 2076, - [2535] = 2078, - [2536] = 2133, - [2537] = 2134, - [2538] = 2101, - [2539] = 2132, - [2540] = 2094, - [2541] = 2106, - [2542] = 2107, - [2543] = 2102, - [2544] = 2126, - [2545] = 2129, - [2546] = 2131, - [2547] = 2080, - [2548] = 2083, - [2549] = 2056, - [2550] = 2097, - [2551] = 2057, - [2552] = 2055, - [2553] = 2059, - [2554] = 2060, - [2555] = 2058, - [2556] = 2045, - [2557] = 2105, - [2558] = 2133, - [2559] = 2134, - [2560] = 2101, - [2561] = 2132, - [2562] = 2102, - [2563] = 2091, - [2564] = 2092, - [2565] = 2093, - [2566] = 2108, - [2567] = 2109, - [2568] = 2103, - [2569] = 2074, - [2570] = 2098, - [2571] = 2099, - [2572] = 2129, - [2573] = 2108, - [2574] = 2063, - [2575] = 2208, - [2576] = 2211, - [2577] = 2102, - [2578] = 2118, - [2579] = 2103, - [2580] = 2119, - [2581] = 1882, - [2582] = 2109, - [2583] = 1898, - [2584] = 1899, - [2585] = 1879, - [2586] = 1900, - [2587] = 1896, - [2588] = 2074, - [2589] = 2062, - [2590] = 1885, - [2591] = 1886, - [2592] = 1881, - [2593] = 1877, - [2594] = 2079, - [2595] = 2081, - [2596] = 2082, - [2597] = 2084, - [2598] = 2085, - [2599] = 2086, - [2600] = 1895, - [2601] = 2116, - [2602] = 2120, - [2603] = 2096, - [2604] = 2077, - [2605] = 2069, - [2606] = 1880, - [2607] = 2130, - [2608] = 2110, - [2609] = 2093, - [2610] = 2078, - [2611] = 2094, - [2612] = 2071, - [2613] = 2106, - [2614] = 2107, - [2615] = 2126, - [2616] = 2129, - [2617] = 2131, - [2618] = 2080, - [2619] = 2098, - [2620] = 2083, - [2621] = 2208, - [2622] = 2211, - [2623] = 2099, - [2624] = 2097, - [2625] = 2208, - [2626] = 2211, - [2627] = 1883, - [2628] = 2105, - [2629] = 1878, - [2630] = 2133, - [2631] = 2134, - [2632] = 2101, - [2633] = 2132, - [2634] = 2091, - [2635] = 2038, - [2636] = 2092, - [2637] = 2076, - [2638] = 1883, - [2639] = 1883, - [2640] = 2092, - [2641] = 2093, - [2642] = 1882, - [2643] = 2643, - [2644] = 2108, - [2645] = 2103, - [2646] = 2074, - [2647] = 2116, - [2648] = 1898, - [2649] = 2120, - [2650] = 1883, - [2651] = 2096, - [2652] = 1895, - [2653] = 2098, - [2654] = 1883, - [2655] = 2099, - [2656] = 2656, - [2657] = 2077, - [2658] = 1885, - [2659] = 2097, - [2660] = 2083, - [2661] = 2129, - [2662] = 1880, - [2663] = 1886, - [2664] = 1898, - [2665] = 1899, - [2666] = 1881, - [2667] = 1879, - [2668] = 2656, - [2669] = 2402, - [2670] = 2656, - [2671] = 2656, - [2672] = 2672, - [2673] = 2656, - [2674] = 2109, - [2675] = 2656, - [2676] = 2131, - [2677] = 2656, - [2678] = 2105, - [2679] = 2656, - [2680] = 2656, - [2681] = 2656, - [2682] = 2656, - [2683] = 1882, - [2684] = 2656, - [2685] = 2656, - [2686] = 2656, - [2687] = 2672, - [2688] = 2688, - [2689] = 1900, - [2690] = 1896, - [2691] = 1879, - [2692] = 2133, - [2693] = 2110, - [2694] = 2134, - [2695] = 2101, - [2696] = 2672, + [2188] = 2188, + [2189] = 2189, + [2190] = 2190, + [2191] = 2098, + [2192] = 2192, + [2193] = 2100, + [2194] = 2194, + [2195] = 2091, + [2196] = 2196, + [2197] = 2091, + [2198] = 2103, + [2199] = 2106, + [2200] = 2112, + [2201] = 2102, + [2202] = 2100, + [2203] = 2110, + [2204] = 2113, + [2205] = 2106, + [2206] = 2097, + [2207] = 2110, + [2208] = 2091, + [2209] = 2091, + [2210] = 2112, + [2211] = 2099, + [2212] = 2103, + [2213] = 2118, + [2214] = 2105, + [2215] = 2096, + [2216] = 2101, + [2217] = 2118, + [2218] = 2105, + [2219] = 2109, + [2220] = 2091, + [2221] = 2091, + [2222] = 2099, + [2223] = 2097, + [2224] = 2109, + [2225] = 2096, + [2226] = 2118, + [2227] = 2109, + [2228] = 2104, + [2229] = 2100, + [2230] = 2101, + [2231] = 2102, + [2232] = 2113, + [2233] = 2105, + [2234] = 2102, + [2235] = 2113, + [2236] = 2098, + [2237] = 2106, + [2238] = 2112, + [2239] = 2103, + [2240] = 2101, + [2241] = 2104, + [2242] = 2098, + [2243] = 2110, + [2244] = 2104, + [2245] = 1940, + [2246] = 1935, + [2247] = 2102, + [2248] = 2125, + [2249] = 2101, + [2250] = 2106, + [2251] = 2124, + [2252] = 1938, + [2253] = 2253, + [2254] = 2254, + [2255] = 1941, + [2256] = 2256, + [2257] = 2096, + [2258] = 2105, + [2259] = 2110, + [2260] = 2109, + [2261] = 2112, + [2262] = 2124, + [2263] = 2101, + [2264] = 2113, + [2265] = 2098, + [2266] = 2266, + [2267] = 2104, + [2268] = 2102, + [2269] = 2103, + [2270] = 2125, + [2271] = 1945, + [2272] = 2126, + [2273] = 1936, + [2274] = 2118, + [2275] = 1934, + [2276] = 2099, + [2277] = 2113, + [2278] = 2097, + [2279] = 1926, + [2280] = 2280, + [2281] = 2104, + [2282] = 2124, + [2283] = 1958, + [2284] = 2110, + [2285] = 1939, + [2286] = 2125, + [2287] = 2103, + [2288] = 2126, + [2289] = 2289, + [2290] = 2112, + [2291] = 2289, + [2292] = 2100, + [2293] = 2126, + [2294] = 2106, + [2295] = 2105, + [2296] = 2123, + [2297] = 2123, + [2298] = 2109, + [2299] = 2289, + [2300] = 2300, + [2301] = 2280, + [2302] = 2280, + [2303] = 2118, + [2304] = 2123, + [2305] = 1929, + [2306] = 2118, + [2307] = 2300, + [2308] = 2137, + [2309] = 2138, + [2310] = 2164, + [2311] = 2123, + [2312] = 2164, + [2313] = 1935, + [2314] = 1945, + [2315] = 1934, + [2316] = 1938, + [2317] = 2145, + [2318] = 2156, + [2319] = 2185, + [2320] = 2133, + [2321] = 2146, + [2322] = 2190, + [2323] = 1939, + [2324] = 2139, + [2325] = 2140, + [2326] = 2141, + [2327] = 2146, + [2328] = 2194, + [2329] = 2130, + [2330] = 1940, + [2331] = 2196, + [2332] = 2184, + [2333] = 2161, + [2334] = 2145, + [2335] = 2098, + [2336] = 2161, + [2337] = 2168, + [2338] = 2187, + [2339] = 2167, + [2340] = 2155, + [2341] = 2186, + [2342] = 2188, + [2343] = 2192, + [2344] = 2133, + [2345] = 2189, + [2346] = 2190, + [2347] = 2194, + [2348] = 1938, + [2349] = 2166, + [2350] = 2170, + [2351] = 2171, + [2352] = 2173, + [2353] = 2174, + [2354] = 2134, + [2355] = 2130, + [2356] = 2168, + [2357] = 2169, + [2358] = 2134, + [2359] = 2135, + [2360] = 2170, + [2361] = 2132, + [2362] = 2171, + [2363] = 2172, + [2364] = 2173, + [2365] = 2175, + [2366] = 2105, + [2367] = 2135, + [2368] = 2104, + [2369] = 2139, + [2370] = 2102, + [2371] = 2113, + [2372] = 1958, + [2373] = 2106, + [2374] = 2112, + [2375] = 2147, + [2376] = 2148, + [2377] = 2132, + [2378] = 2187, + [2379] = 2147, + [2380] = 2148, + [2381] = 1941, + [2382] = 2096, + [2383] = 2125, + [2384] = 2124, + [2385] = 2174, + [2386] = 1926, + [2387] = 2146, + [2388] = 1935, + [2389] = 2137, + [2390] = 2138, + [2391] = 1945, + [2392] = 2155, + [2393] = 1934, + [2394] = 2137, + [2395] = 2126, + [2396] = 1929, + [2397] = 2138, + [2398] = 2175, + [2399] = 1939, + [2400] = 1940, + [2401] = 1958, + [2402] = 2187, + [2403] = 1936, + [2404] = 1935, + [2405] = 2136, + [2406] = 1945, + [2407] = 1934, + [2408] = 1939, + [2409] = 1929, + [2410] = 2100, + [2411] = 1940, + [2412] = 2186, + [2413] = 2091, + [2414] = 1941, + [2415] = 2142, + [2416] = 2188, + [2417] = 2192, + [2418] = 2161, + [2419] = 1938, + [2420] = 2133, + [2421] = 2166, + [2422] = 2196, + [2423] = 2110, + [2424] = 2155, + [2425] = 2103, + [2426] = 2167, + [2427] = 2168, + [2428] = 2169, + [2429] = 2170, + [2430] = 2171, + [2431] = 2172, + [2432] = 2173, + [2433] = 2174, + [2434] = 2175, + [2435] = 2300, + [2436] = 2253, + [2437] = 2140, + [2438] = 2189, + [2439] = 1926, + [2440] = 2253, + [2441] = 2141, + [2442] = 2190, + [2443] = 2194, + [2444] = 1926, + [2445] = 1941, + [2446] = 1958, + [2447] = 2186, + [2448] = 1929, + [2449] = 2166, + [2450] = 2099, + [2451] = 2156, + [2452] = 2188, + [2453] = 2097, + [2454] = 2125, + [2455] = 2256, + [2456] = 2124, + [2457] = 2109, + [2458] = 2136, + [2459] = 2130, + [2460] = 2142, + [2461] = 2134, + [2462] = 2135, + [2463] = 2169, + [2464] = 2185, + [2465] = 2132, + [2466] = 2172, + [2467] = 2147, + [2468] = 2196, + [2469] = 1937, + [2470] = 2148, + [2471] = 2164, + [2472] = 2156, + [2473] = 2185, + [2474] = 1943, + [2475] = 2189, + [2476] = 2126, + [2477] = 1944, + [2478] = 2184, + [2479] = 2145, + [2480] = 1936, + [2481] = 2192, + [2482] = 1946, + [2483] = 2136, + [2484] = 2142, + [2485] = 2139, + [2486] = 2140, + [2487] = 2167, + [2488] = 2123, + [2489] = 2141, + [2490] = 2101, + [2491] = 2184, + [2492] = 2142, + [2493] = 2168, + [2494] = 2161, + [2495] = 2123, + [2496] = 1944, + [2497] = 2137, + [2498] = 2175, + [2499] = 1941, + [2500] = 2254, + [2501] = 2156, + [2502] = 2110, + [2503] = 2130, + [2504] = 2504, + [2505] = 2147, + [2506] = 2112, + [2507] = 2169, + [2508] = 2133, + [2509] = 2174, + [2510] = 2190, + [2511] = 1941, + [2512] = 2194, + [2513] = 2172, + [2514] = 2514, + [2515] = 2186, + [2516] = 2140, + [2517] = 1946, + [2518] = 1938, + [2519] = 2136, + [2520] = 2138, + [2521] = 1958, + [2522] = 1935, + [2523] = 1945, + [2524] = 1934, + [2525] = 1939, + [2526] = 1940, + [2527] = 2101, + [2528] = 2137, + [2529] = 1937, + [2530] = 1939, + [2531] = 1943, + [2532] = 1936, + [2533] = 2103, + [2534] = 2142, + [2535] = 1944, + [2536] = 2196, + [2537] = 1941, + [2538] = 1937, + [2539] = 2134, + [2540] = 2168, + [2541] = 1943, + [2542] = 2138, + [2543] = 2167, + [2544] = 1944, + [2545] = 2126, + [2546] = 2166, + [2547] = 2135, + [2548] = 2109, + [2549] = 2173, + [2550] = 2189, + [2551] = 2256, + [2552] = 2190, + [2553] = 2134, + [2554] = 1938, + [2555] = 1946, + [2556] = 2194, + [2557] = 1946, + [2558] = 1941, + [2559] = 2141, + [2560] = 2175, + [2561] = 2170, + [2562] = 2132, + [2563] = 2136, + [2564] = 2164, + [2565] = 1936, + [2566] = 1940, + [2567] = 1934, + [2568] = 1946, + [2569] = 1958, + [2570] = 1936, + [2571] = 2171, + [2572] = 2125, + [2573] = 1933, + [2574] = 2148, + [2575] = 2187, + [2576] = 2171, + [2577] = 2124, + [2578] = 2155, + [2579] = 2196, + [2580] = 2192, + [2581] = 2173, + [2582] = 1937, + [2583] = 2174, + [2584] = 2135, + [2585] = 2132, + [2586] = 2187, + [2587] = 2104, + [2588] = 2514, + [2589] = 2102, + [2590] = 2147, + [2591] = 2113, + [2592] = 2592, + [2593] = 2141, + [2594] = 2139, + [2595] = 2170, + [2596] = 2106, + [2597] = 1935, + [2598] = 2156, + [2599] = 2164, + [2600] = 2146, + [2601] = 1937, + [2602] = 1941, + [2603] = 2185, + [2604] = 2166, + [2605] = 2184, + [2606] = 2118, + [2607] = 2161, + [2608] = 2189, + [2609] = 2145, + [2610] = 2146, + [2611] = 2105, + [2612] = 2130, + [2613] = 2148, + [2614] = 2266, + [2615] = 2184, + [2616] = 2155, + [2617] = 2145, + [2618] = 1943, + [2619] = 1944, + [2620] = 2169, + [2621] = 1945, + [2622] = 2185, + [2623] = 1943, + [2624] = 2188, + [2625] = 2186, + [2626] = 2188, + [2627] = 2172, + [2628] = 2139, + [2629] = 2140, + [2630] = 2192, + [2631] = 2133, + [2632] = 2167, + [2633] = 2142, + [2634] = 2300, + [2635] = 2253, + [2636] = 2125, + [2637] = 2124, + [2638] = 2300, + [2639] = 2253, + [2640] = 2300, + [2641] = 2253, + [2642] = 2166, + [2643] = 2156, + [2644] = 2185, + [2645] = 2189, + [2646] = 2190, + [2647] = 2194, + [2648] = 2196, + [2649] = 2126, + [2650] = 1936, + [2651] = 2136, + [2652] = 2167, + [2653] = 2164, + [2654] = 2123, + [2655] = 2184, + [2656] = 2145, + [2657] = 2139, + [2658] = 2140, + [2659] = 2141, + [2660] = 2169, + [2661] = 1933, + [2662] = 2161, + [2663] = 2155, + [2664] = 2186, + [2665] = 2188, + [2666] = 2192, + [2667] = 2133, + [2668] = 2130, + [2669] = 2134, + [2670] = 2135, + [2671] = 2132, + [2672] = 2147, + [2673] = 2148, + [2674] = 2137, + [2675] = 2138, + [2676] = 1938, + [2677] = 2146, + [2678] = 1958, + [2679] = 2187, + [2680] = 1935, + [2681] = 1945, + [2682] = 1934, + [2683] = 1939, + [2684] = 1940, + [2685] = 1941, + [2686] = 2097, + [2687] = 2168, + [2688] = 2170, + [2689] = 2171, + [2690] = 2173, + [2691] = 2174, + [2692] = 2175, + [2693] = 2172, + [2694] = 1958, + [2695] = 2134, + [2696] = 2135, [2697] = 2132, - [2698] = 1877, - [2699] = 2130, - [2700] = 2656, - [2701] = 2076, - [2702] = 2078, - [2703] = 2079, - [2704] = 2081, - [2705] = 2082, - [2706] = 2084, - [2707] = 2118, - [2708] = 2119, - [2709] = 1878, - [2710] = 2085, - [2711] = 2711, - [2712] = 2086, - [2713] = 1900, - [2714] = 2094, - [2715] = 1880, - [2716] = 2091, - [2717] = 1878, - [2718] = 1896, - [2719] = 2106, - [2720] = 2656, - [2721] = 2126, - [2722] = 2656, - [2723] = 2107, - [2724] = 2080, - [2725] = 2102, - [2726] = 1883, - [2727] = 1899, - [2728] = 2656, - [2729] = 2656, - [2730] = 2656, - [2731] = 2731, - [2732] = 2731, - [2733] = 2733, - [2734] = 2734, - [2735] = 2735, + [2698] = 2147, + [2699] = 2148, + [2700] = 2137, + [2701] = 2138, + [2702] = 2702, + [2703] = 2166, + [2704] = 2156, + [2705] = 1936, + [2706] = 1938, + [2707] = 2185, + [2708] = 2189, + [2709] = 2190, + [2710] = 2194, + [2711] = 2146, + [2712] = 2196, + [2713] = 1937, + [2714] = 1943, + [2715] = 1958, + [2716] = 1944, + [2717] = 2187, + [2718] = 1946, + [2719] = 1935, + [2720] = 1945, + [2721] = 1934, + [2722] = 2136, + [2723] = 2142, + [2724] = 1939, + [2725] = 1940, + [2726] = 1941, + [2727] = 2167, + [2728] = 1933, + [2729] = 2164, + [2730] = 2184, + [2731] = 2145, + [2732] = 2139, + [2733] = 2140, + [2734] = 2141, + [2735] = 1938, [2736] = 2736, - [2737] = 2734, - [2738] = 2731, - [2739] = 2734, - [2740] = 2740, - [2741] = 2740, - [2742] = 2742, - [2743] = 2743, - [2744] = 2744, - [2745] = 2745, - [2746] = 2746, - [2747] = 2747, - [2748] = 2746, - [2749] = 2749, - [2750] = 2750, - [2751] = 2740, - [2752] = 2746, - [2753] = 2753, - [2754] = 2743, - [2755] = 2755, - [2756] = 2749, - [2757] = 2750, - [2758] = 2755, - [2759] = 2759, - [2760] = 2743, - [2761] = 2744, - [2762] = 2745, - [2763] = 2747, - [2764] = 2759, - [2765] = 2746, - [2766] = 2740, - [2767] = 2759, - [2768] = 2749, - [2769] = 2750, - [2770] = 2753, - [2771] = 2755, - [2772] = 2744, - [2773] = 2745, - [2774] = 2742, - [2775] = 2745, - [2776] = 2749, - [2777] = 2750, - [2778] = 2744, - [2779] = 2759, - [2780] = 2753, - [2781] = 2755, - [2782] = 2753, - [2783] = 2783, - [2784] = 2784, + [2737] = 1935, + [2738] = 1945, + [2739] = 1934, + [2740] = 1939, + [2741] = 1940, + [2742] = 2130, + [2743] = 2169, + [2744] = 2736, + [2745] = 1941, + [2746] = 1941, + [2747] = 1941, + [2748] = 1941, + [2749] = 2736, + [2750] = 2592, + [2751] = 2168, + [2752] = 2170, + [2753] = 2171, + [2754] = 2173, + [2755] = 2174, + [2756] = 2175, + [2757] = 2172, + [2758] = 2161, + [2759] = 2155, + [2760] = 2186, + [2761] = 2188, + [2762] = 2192, + [2763] = 2736, + [2764] = 2764, + [2765] = 2736, + [2766] = 2766, + [2767] = 2736, + [2768] = 2736, + [2769] = 2736, + [2770] = 2736, + [2771] = 2736, + [2772] = 2736, + [2773] = 2736, + [2774] = 2736, + [2775] = 2736, + [2776] = 2736, + [2777] = 2736, + [2778] = 2736, + [2779] = 2736, + [2780] = 2764, + [2781] = 2764, + [2782] = 2133, + [2783] = 2736, + [2784] = 2736, [2785] = 2785, - [2786] = 2786, - [2787] = 486, + [2786] = 1936, + [2787] = 2787, [2788] = 2788, [2789] = 2789, - [2790] = 485, - [2791] = 2791, + [2790] = 2790, + [2791] = 2788, [2792] = 2792, [2793] = 2788, - [2794] = 2785, - [2795] = 489, - [2796] = 2786, - [2797] = 487, - [2798] = 2792, + [2794] = 2790, + [2795] = 2790, + [2796] = 2796, + [2797] = 2797, + [2798] = 2798, [2799] = 2799, - [2800] = 2792, - [2801] = 2786, - [2802] = 488, + [2800] = 2796, + [2801] = 2801, + [2802] = 2802, [2803] = 2803, - [2804] = 2788, - [2805] = 2784, - [2806] = 2784, + [2804] = 2799, + [2805] = 2805, + [2806] = 2798, [2807] = 2807, - [2808] = 605, - [2809] = 606, - [2810] = 547, - [2811] = 2071, - [2812] = 616, - [2813] = 617, - [2814] = 618, - [2815] = 2815, - [2816] = 619, - [2817] = 620, - [2818] = 621, - [2819] = 548, - [2820] = 623, - [2821] = 624, - [2822] = 625, - [2823] = 549, - [2824] = 626, - [2825] = 2825, - [2826] = 550, - [2827] = 2807, - [2828] = 634, - [2829] = 635, - [2830] = 636, - [2831] = 637, - [2832] = 638, - [2833] = 551, - [2834] = 2815, - [2835] = 643, - [2836] = 2836, - [2837] = 552, - [2838] = 714, - [2839] = 674, - [2840] = 553, - [2841] = 507, - [2842] = 493, - [2843] = 534, - [2844] = 554, - [2845] = 555, - [2846] = 495, - [2847] = 2847, - [2848] = 496, + [2808] = 2808, + [2809] = 2802, + [2810] = 2797, + [2811] = 2811, + [2812] = 2807, + [2813] = 2803, + [2814] = 2799, + [2815] = 2808, + [2816] = 2798, + [2817] = 2796, + [2818] = 2801, + [2819] = 2811, + [2820] = 2801, + [2821] = 2807, + [2822] = 2808, + [2823] = 2797, + [2824] = 2803, + [2825] = 2799, + [2826] = 2798, + [2827] = 2796, + [2828] = 2801, + [2829] = 2811, + [2830] = 2805, + [2831] = 2811, + [2832] = 2832, + [2833] = 2805, + [2834] = 2832, + [2835] = 2807, + [2836] = 2808, + [2837] = 2797, + [2838] = 2803, + [2839] = 501, + [2840] = 2840, + [2841] = 505, + [2842] = 2842, + [2843] = 2843, + [2844] = 2844, + [2845] = 503, + [2846] = 2840, + [2847] = 500, + [2848] = 2843, [2849] = 2849, - [2850] = 531, + [2850] = 504, [2851] = 2851, - [2852] = 689, - [2853] = 690, + [2852] = 2849, + [2853] = 2849, [2854] = 2854, - [2855] = 683, - [2856] = 2847, - [2857] = 2825, - [2858] = 2836, - [2859] = 664, - [2860] = 494, - [2861] = 2815, - [2862] = 532, - [2863] = 533, - [2864] = 684, - [2865] = 568, - [2866] = 516, - [2867] = 530, - [2868] = 518, - [2869] = 2869, + [2855] = 2840, + [2856] = 2842, + [2857] = 2857, + [2858] = 2844, + [2859] = 2844, + [2860] = 2860, + [2861] = 2861, + [2862] = 2843, + [2863] = 2863, + [2864] = 513, + [2865] = 564, + [2866] = 565, + [2867] = 566, + [2868] = 567, + [2869] = 568, [2870] = 569, - [2871] = 2869, - [2872] = 655, - [2873] = 570, - [2874] = 571, - [2875] = 572, - [2876] = 573, - [2877] = 2854, - [2878] = 574, - [2879] = 575, - [2880] = 2849, - [2881] = 499, - [2882] = 576, - [2883] = 695, - [2884] = 696, - [2885] = 497, - [2886] = 577, - [2887] = 2069, - [2888] = 578, - [2889] = 579, - [2890] = 580, - [2891] = 2815, - [2892] = 581, - [2893] = 500, - [2894] = 2854, - [2895] = 2849, - [2896] = 2825, - [2897] = 2836, - [2898] = 501, - [2899] = 699, - [2900] = 2847, - [2901] = 673, - [2902] = 545, - [2903] = 594, - [2904] = 595, - [2905] = 2807, - [2906] = 596, - [2907] = 597, - [2908] = 2854, - [2909] = 2849, - [2910] = 598, - [2911] = 599, - [2912] = 600, - [2913] = 492, - [2914] = 601, - [2915] = 2825, - [2916] = 546, - [2917] = 2836, - [2918] = 498, - [2919] = 602, - [2920] = 603, - [2921] = 604, - [2922] = 2869, - [2923] = 665, - [2924] = 528, - [2925] = 529, - [2926] = 517, - [2927] = 650, - [2928] = 682, - [2929] = 2929, - [2930] = 685, + [2871] = 570, + [2872] = 571, + [2873] = 572, + [2874] = 573, + [2875] = 574, + [2876] = 515, + [2877] = 587, + [2878] = 588, + [2879] = 589, + [2880] = 590, + [2881] = 591, + [2882] = 592, + [2883] = 593, + [2884] = 594, + [2885] = 595, + [2886] = 596, + [2887] = 597, + [2888] = 598, + [2889] = 599, + [2890] = 600, + [2891] = 514, + [2892] = 613, + [2893] = 614, + [2894] = 615, + [2895] = 616, + [2896] = 617, + [2897] = 618, + [2898] = 619, + [2899] = 620, + [2900] = 621, + [2901] = 623, + [2902] = 624, + [2903] = 625, + [2904] = 626, + [2905] = 2126, + [2906] = 636, + [2907] = 637, + [2908] = 2123, + [2909] = 638, + [2910] = 639, + [2911] = 640, + [2912] = 518, + [2913] = 642, + [2914] = 643, + [2915] = 644, + [2916] = 645, + [2917] = 2917, + [2918] = 2917, + [2919] = 653, + [2920] = 654, + [2921] = 655, + [2922] = 2922, + [2923] = 525, + [2924] = 657, + [2925] = 2925, + [2926] = 2926, + [2927] = 2927, + [2928] = 674, + [2929] = 662, + [2930] = 2930, [2931] = 2931, - [2932] = 505, - [2933] = 2933, - [2934] = 2038, - [2935] = 2929, - [2936] = 508, - [2937] = 509, - [2938] = 510, - [2939] = 653, - [2940] = 651, - [2941] = 2929, - [2942] = 686, - [2943] = 687, - [2944] = 511, - [2945] = 688, - [2946] = 512, - [2947] = 513, - [2948] = 514, - [2949] = 515, - [2950] = 666, - [2951] = 691, - [2952] = 2952, - [2953] = 654, - [2954] = 519, - [2955] = 520, - [2956] = 521, - [2957] = 656, - [2958] = 522, - [2959] = 523, - [2960] = 524, - [2961] = 525, - [2962] = 526, - [2963] = 527, - [2964] = 657, - [2965] = 658, - [2966] = 659, - [2967] = 660, - [2968] = 661, - [2969] = 2039, - [2970] = 662, - [2971] = 535, - [2972] = 536, - [2973] = 537, - [2974] = 538, - [2975] = 539, - [2976] = 540, - [2977] = 541, - [2978] = 692, - [2979] = 693, - [2980] = 542, - [2981] = 543, - [2982] = 544, - [2983] = 694, - [2984] = 645, - [2985] = 646, - [2986] = 647, - [2987] = 667, - [2988] = 668, - [2989] = 2989, - [2990] = 669, - [2991] = 670, - [2992] = 556, - [2993] = 671, - [2994] = 557, - [2995] = 558, - [2996] = 559, - [2997] = 560, - [2998] = 561, - [2999] = 681, - [3000] = 563, - [3001] = 564, - [3002] = 565, - [3003] = 566, - [3004] = 567, - [3005] = 697, - [3006] = 698, - [3007] = 582, - [3008] = 583, - [3009] = 584, - [3010] = 585, - [3011] = 672, - [3012] = 586, - [3013] = 587, - [3014] = 588, - [3015] = 589, - [3016] = 590, - [3017] = 591, - [3018] = 592, - [3019] = 593, - [3020] = 700, - [3021] = 701, - [3022] = 607, - [3023] = 608, - [3024] = 609, - [3025] = 610, - [3026] = 611, - [3027] = 612, - [3028] = 613, - [3029] = 614, - [3030] = 615, - [3031] = 502, - [3032] = 675, - [3033] = 676, - [3034] = 627, - [3035] = 628, - [3036] = 629, - [3037] = 630, + [2932] = 683, + [2933] = 684, + [2934] = 509, + [2935] = 529, + [2936] = 510, + [2937] = 2926, + [2938] = 2927, + [2939] = 516, + [2940] = 2917, + [2941] = 517, + [2942] = 2922, + [2943] = 535, + [2944] = 536, + [2945] = 693, + [2946] = 694, + [2947] = 2925, + [2948] = 537, + [2949] = 2863, + [2950] = 2926, + [2951] = 2927, + [2952] = 2922, + [2953] = 511, + [2954] = 2930, + [2955] = 2931, + [2956] = 703, + [2957] = 704, + [2958] = 512, + [2959] = 2922, + [2960] = 2926, + [2961] = 2927, + [2962] = 2930, + [2963] = 2931, + [2964] = 2930, + [2965] = 2931, + [2966] = 709, + [2967] = 710, + [2968] = 547, + [2969] = 2969, + [2970] = 715, + [2971] = 716, + [2972] = 548, + [2973] = 549, + [2974] = 550, + [2975] = 551, + [2976] = 552, + [2977] = 553, + [2978] = 719, + [2979] = 2863, + [2980] = 2925, + [2981] = 508, + [2982] = 656, + [2983] = 524, + [2984] = 612, + [2985] = 658, + [2986] = 585, + [2987] = 659, + [2988] = 660, + [2989] = 661, + [2990] = 586, + [2991] = 526, + [2992] = 667, + [2993] = 668, + [2994] = 669, + [2995] = 670, + [2996] = 671, + [2997] = 672, + [2998] = 673, + [2999] = 562, + [3000] = 663, + [3001] = 563, + [3002] = 3002, + [3003] = 527, + [3004] = 528, + [3005] = 675, + [3006] = 676, + [3007] = 677, + [3008] = 678, + [3009] = 679, + [3010] = 680, + [3011] = 681, + [3012] = 682, + [3013] = 560, + [3014] = 575, + [3015] = 561, + [3016] = 576, + [3017] = 530, + [3018] = 577, + [3019] = 531, + [3020] = 578, + [3021] = 627, + [3022] = 532, + [3023] = 628, + [3024] = 533, + [3025] = 685, + [3026] = 686, + [3027] = 2097, + [3028] = 534, + [3029] = 629, + [3030] = 687, + [3031] = 688, + [3032] = 689, + [3033] = 690, + [3034] = 3034, + [3035] = 691, + [3036] = 630, + [3037] = 692, [3038] = 631, [3039] = 632, [3040] = 633, - [3041] = 702, - [3042] = 703, - [3043] = 639, - [3044] = 640, - [3045] = 641, - [3046] = 642, - [3047] = 644, - [3048] = 704, - [3049] = 705, - [3050] = 652, - [3051] = 663, - [3052] = 677, - [3053] = 648, - [3054] = 649, - [3055] = 678, - [3056] = 679, - [3057] = 680, - [3058] = 504, - [3059] = 562, + [3041] = 695, + [3042] = 696, + [3043] = 634, + [3044] = 635, + [3045] = 579, + [3046] = 538, + [3047] = 539, + [3048] = 580, + [3049] = 581, + [3050] = 540, + [3051] = 697, + [3052] = 698, + [3053] = 699, + [3054] = 700, + [3055] = 559, + [3056] = 702, + [3057] = 582, + [3058] = 583, + [3059] = 705, [3060] = 3060, - [3061] = 721, - [3062] = 722, - [3063] = 726, - [3064] = 715, - [3065] = 724, - [3066] = 3060, - [3067] = 717, - [3068] = 3060, - [3069] = 3069, - [3070] = 723, - [3071] = 718, - [3072] = 731, - [3073] = 3069, - [3074] = 3060, - [3075] = 3069, - [3076] = 3069, - [3077] = 720, - [3078] = 3078, - [3079] = 3078, - [3080] = 3078, - [3081] = 3081, - [3082] = 3082, - [3083] = 3082, - [3084] = 3084, - [3085] = 2080, - [3086] = 2069, - [3087] = 3087, - [3088] = 3088, - [3089] = 2077, - [3090] = 2071, - [3091] = 2083, - [3092] = 3092, - [3093] = 2078, - [3094] = 3094, - [3095] = 3095, - [3096] = 2038, - [3097] = 2039, - [3098] = 2038, - [3099] = 2038, - [3100] = 2039, - [3101] = 2038, - [3102] = 3102, - [3103] = 2039, - [3104] = 2039, - [3105] = 3105, - [3106] = 1882, - [3107] = 3107, - [3108] = 1883, - [3109] = 1881, - [3110] = 2402, - [3111] = 2038, - [3112] = 2048, - [3113] = 3107, - [3114] = 3107, - [3115] = 1898, + [3061] = 601, + [3062] = 602, + [3063] = 603, + [3064] = 584, + [3065] = 541, + [3066] = 542, + [3067] = 604, + [3068] = 605, + [3069] = 543, + [3070] = 606, + [3071] = 544, + [3072] = 706, + [3073] = 707, + [3074] = 708, + [3075] = 545, + [3076] = 646, + [3077] = 647, + [3078] = 711, + [3079] = 546, + [3080] = 664, + [3081] = 648, + [3082] = 3034, + [3083] = 712, + [3084] = 713, + [3085] = 714, + [3086] = 665, + [3087] = 666, + [3088] = 649, + [3089] = 650, + [3090] = 651, + [3091] = 652, + [3092] = 717, + [3093] = 607, + [3094] = 718, + [3095] = 608, + [3096] = 554, + [3097] = 720, + [3098] = 722, + [3099] = 555, + [3100] = 729, + [3101] = 730, + [3102] = 641, + [3103] = 732, + [3104] = 609, + [3105] = 2099, + [3106] = 556, + [3107] = 523, + [3108] = 3108, + [3109] = 557, + [3110] = 610, + [3111] = 611, + [3112] = 3034, + [3113] = 558, + [3114] = 3114, + [3115] = 701, [3116] = 3116, - [3117] = 2039, - [3118] = 3118, - [3119] = 3107, - [3120] = 2038, - [3121] = 1899, - [3122] = 1879, - [3123] = 1900, - [3124] = 1896, - [3125] = 1880, - [3126] = 1878, - [3127] = 1877, - [3128] = 2039, - [3129] = 1885, - [3130] = 1883, - [3131] = 1886, - [3132] = 1880, - [3133] = 3133, - [3134] = 2085, + [3117] = 739, + [3118] = 741, + [3119] = 3116, + [3120] = 3120, + [3121] = 3116, + [3122] = 747, + [3123] = 746, + [3124] = 745, + [3125] = 748, + [3126] = 735, + [3127] = 738, + [3128] = 736, + [3129] = 3120, + [3130] = 3120, + [3131] = 3120, + [3132] = 3116, + [3133] = 740, + [3134] = 3134, [3135] = 3135, - [3136] = 2086, - [3137] = 3137, - [3138] = 3138, - [3139] = 3137, - [3140] = 1880, - [3141] = 3141, - [3142] = 3142, - [3143] = 2102, + [3136] = 3136, + [3137] = 3136, + [3138] = 2196, + [3139] = 2167, + [3140] = 3135, + [3141] = 2169, + [3142] = 3135, + [3143] = 2172, [3144] = 3144, - [3145] = 2079, - [3146] = 3144, - [3147] = 3147, - [3148] = 3148, - [3149] = 3118, - [3150] = 1883, - [3151] = 2081, - [3152] = 2082, - [3153] = 2084, - [3154] = 3116, - [3155] = 3135, - [3156] = 3133, - [3157] = 3157, - [3158] = 3158, - [3159] = 2109, + [3145] = 2126, + [3146] = 3146, + [3147] = 2099, + [3148] = 2097, + [3149] = 3149, + [3150] = 2123, + [3151] = 3151, + [3152] = 3152, + [3153] = 3153, + [3154] = 2099, + [3155] = 2097, + [3156] = 2097, + [3157] = 2099, + [3158] = 2099, + [3159] = 2097, [3160] = 3160, - [3161] = 3157, - [3162] = 3138, - [3163] = 3142, - [3164] = 3148, - [3165] = 1886, - [3166] = 3166, - [3167] = 3167, - [3168] = 3158, - [3169] = 3169, - [3170] = 1885, - [3171] = 3171, - [3172] = 1877, - [3173] = 3173, - [3174] = 3174, - [3175] = 3175, - [3176] = 3175, - [3177] = 3177, - [3178] = 3141, - [3179] = 2039, - [3180] = 3180, - [3181] = 1881, - [3182] = 3167, - [3183] = 3183, - [3184] = 3171, - [3185] = 3180, + [3161] = 3161, + [3162] = 2099, + [3163] = 3163, + [3164] = 1945, + [3165] = 1934, + [3166] = 1939, + [3167] = 1940, + [3168] = 1936, + [3169] = 2099, + [3170] = 1937, + [3171] = 1936, + [3172] = 2109, + [3173] = 2097, + [3174] = 1943, + [3175] = 2097, + [3176] = 1941, + [3177] = 2592, + [3178] = 1944, + [3179] = 1946, + [3180] = 1941, + [3181] = 3163, + [3182] = 1938, + [3183] = 1958, + [3184] = 3163, + [3185] = 3185, [3186] = 3186, - [3187] = 3180, - [3188] = 3175, - [3189] = 2402, - [3190] = 3190, - [3191] = 2038, - [3192] = 2060, - [3193] = 3193, - [3194] = 3194, - [3195] = 2056, - [3196] = 2057, - [3197] = 2055, - [3198] = 2059, - [3199] = 2058, - [3200] = 2045, - [3201] = 1886, + [3187] = 3163, + [3188] = 1935, + [3189] = 3189, + [3190] = 2170, + [3191] = 2171, + [3192] = 2173, + [3193] = 2174, + [3194] = 2175, + [3195] = 3195, + [3196] = 3196, + [3197] = 3197, + [3198] = 3198, + [3199] = 3197, + [3200] = 1941, + [3201] = 3198, [3202] = 3202, - [3203] = 3203, - [3204] = 1885, - [3205] = 1881, - [3206] = 1885, - [3207] = 3207, - [3208] = 3194, + [3203] = 3202, + [3204] = 2187, + [3205] = 1936, + [3206] = 3206, + [3207] = 2146, + [3208] = 3208, [3209] = 3209, - [3210] = 3207, - [3211] = 3211, - [3212] = 3209, - [3213] = 3202, - [3214] = 1886, - [3215] = 3194, - [3216] = 1881, - [3217] = 3211, - [3218] = 3218, - [3219] = 3194, - [3220] = 3218, - [3221] = 3194, - [3222] = 3194, - [3223] = 3194, - [3224] = 3194, - [3225] = 3194, - [3226] = 3193, - [3227] = 3194, - [3228] = 3194, - [3229] = 1877, - [3230] = 3194, - [3231] = 2402, - [3232] = 1877, - [3233] = 2052, - [3234] = 3202, - [3235] = 3133, - [3236] = 2050, - [3237] = 2402, - [3238] = 3202, + [3210] = 3209, + [3211] = 3185, + [3212] = 3195, + [3213] = 3213, + [3214] = 3186, + [3215] = 3215, + [3216] = 2168, + [3217] = 3217, + [3218] = 3208, + [3219] = 3213, + [3220] = 3206, + [3221] = 3215, + [3222] = 1944, + [3223] = 3223, + [3224] = 1946, + [3225] = 1937, + [3226] = 3226, + [3227] = 1943, + [3228] = 3228, + [3229] = 3229, + [3230] = 3230, + [3231] = 2099, + [3232] = 3230, + [3233] = 3233, + [3234] = 3234, + [3235] = 2592, + [3236] = 3234, + [3237] = 3237, + [3238] = 3238, [3239] = 3239, [3240] = 3240, - [3241] = 3241, - [3242] = 3242, - [3243] = 3243, + [3241] = 3239, + [3242] = 3234, + [3243] = 3226, [3244] = 3244, - [3245] = 3245, - [3246] = 3246, - [3247] = 3241, + [3245] = 3230, + [3246] = 2097, + [3247] = 3196, [3248] = 3248, [3249] = 3249, - [3250] = 3186, + [3250] = 3250, [3251] = 3251, [3252] = 3252, [3253] = 3253, - [3254] = 3254, - [3255] = 3183, + [3254] = 3250, + [3255] = 3255, [3256] = 3256, - [3257] = 3248, - [3258] = 3245, - [3259] = 3251, - [3260] = 3174, - [3261] = 3261, - [3262] = 3256, - [3263] = 3263, - [3264] = 3253, - [3265] = 3265, - [3266] = 3266, - [3267] = 3267, - [3268] = 3243, - [3269] = 3245, - [3270] = 3270, - [3271] = 3248, - [3272] = 3249, - [3273] = 3273, - [3274] = 3253, - [3275] = 3263, - [3276] = 3276, - [3277] = 3256, - [3278] = 3276, - [3279] = 3279, - [3280] = 3280, - [3281] = 2048, - [3282] = 3282, - [3283] = 3243, - [3284] = 3245, - [3285] = 3285, + [3257] = 1937, + [3258] = 3252, + [3259] = 1943, + [3260] = 1944, + [3261] = 2102, + [3262] = 2592, + [3263] = 1946, + [3264] = 2109, + [3265] = 3252, + [3266] = 2113, + [3267] = 2106, + [3268] = 3248, + [3269] = 2104, + [3270] = 3253, + [3271] = 2118, + [3272] = 3248, + [3273] = 3209, + [3274] = 3249, + [3275] = 2592, + [3276] = 3252, + [3277] = 3251, + [3278] = 3255, + [3279] = 1937, + [3280] = 1943, + [3281] = 1944, + [3282] = 1946, + [3283] = 2105, + [3284] = 3248, + [3285] = 2110, [3286] = 3248, - [3287] = 3287, - [3288] = 3253, - [3289] = 3256, - [3290] = 3290, - [3291] = 3243, - [3292] = 3245, - [3293] = 3249, - [3294] = 3243, - [3295] = 3245, + [3287] = 3248, + [3288] = 3248, + [3289] = 3248, + [3290] = 2103, + [3291] = 3248, + [3292] = 3248, + [3293] = 3248, + [3294] = 3248, + [3295] = 2112, [3296] = 3296, - [3297] = 3243, + [3297] = 3297, [3298] = 3298, - [3299] = 3298, - [3300] = 3243, - [3301] = 3245, - [3302] = 3240, - [3303] = 3243, - [3304] = 3245, - [3305] = 3183, - [3306] = 3245, + [3299] = 3299, + [3300] = 3300, + [3301] = 3301, + [3302] = 3302, + [3303] = 3303, + [3304] = 3304, + [3305] = 3305, + [3306] = 3306, [3307] = 3307, - [3308] = 3245, + [3308] = 3308, [3309] = 3309, - [3310] = 3245, - [3311] = 3245, - [3312] = 3245, - [3313] = 3245, - [3314] = 3245, - [3315] = 3245, - [3316] = 3245, - [3317] = 3245, + [3310] = 3229, + [3311] = 3311, + [3312] = 3312, + [3313] = 3313, + [3314] = 3298, + [3315] = 3299, + [3316] = 3300, + [3317] = 3301, [3318] = 3318, [3319] = 3319, - [3320] = 3244, - [3321] = 3248, + [3320] = 3320, + [3321] = 3321, [3322] = 3322, - [3323] = 3323, - [3324] = 3261, - [3325] = 3253, - [3326] = 3280, - [3327] = 3254, - [3328] = 3282, - [3329] = 3265, - [3330] = 3307, - [3331] = 3270, + [3323] = 3244, + [3324] = 3324, + [3325] = 3324, + [3326] = 3326, + [3327] = 3327, + [3328] = 3328, + [3329] = 3329, + [3330] = 3330, + [3331] = 3331, [3332] = 3332, - [3333] = 3249, - [3334] = 3279, + [3333] = 3309, + [3334] = 3334, [3335] = 3335, - [3336] = 3243, + [3336] = 3319, [3337] = 3337, - [3338] = 3266, - [3339] = 3285, + [3338] = 3297, + [3339] = 3339, [3340] = 3296, - [3341] = 3323, - [3342] = 3253, - [3343] = 3265, - [3344] = 3270, - [3345] = 3279, - [3346] = 3335, - [3347] = 3245, - [3348] = 3239, - [3349] = 3249, - [3350] = 3249, - [3351] = 3245, + [3341] = 3341, + [3342] = 3342, + [3343] = 3240, + [3344] = 3326, + [3345] = 3309, + [3346] = 3328, + [3347] = 3329, + [3348] = 3330, + [3349] = 3331, + [3350] = 3332, + [3351] = 3342, [3352] = 3352, - [3353] = 3352, - [3354] = 3354, - [3355] = 3355, - [3356] = 2048, + [3353] = 3306, + [3354] = 3335, + [3355] = 3318, + [3356] = 3309, [3357] = 3357, - [3358] = 3337, - [3359] = 3133, - [3360] = 3360, - [3361] = 3246, - [3362] = 3362, - [3363] = 2048, - [3364] = 3364, - [3365] = 3365, - [3366] = 3322, - [3367] = 3367, + [3358] = 3334, + [3359] = 3359, + [3360] = 3306, + [3361] = 3335, + [3362] = 3318, + [3363] = 3309, + [3364] = 3357, + [3365] = 3334, + [3366] = 3306, + [3367] = 3335, [3368] = 3318, - [3369] = 3242, - [3370] = 3370, - [3371] = 3203, - [3372] = 3319, - [3373] = 3203, - [3374] = 3374, - [3375] = 3357, - [3376] = 3364, - [3377] = 3332, - [3378] = 3378, - [3379] = 2048, - [3380] = 3380, - [3381] = 3381, - [3382] = 3382, - [3383] = 3383, - [3384] = 3384, - [3385] = 3385, - [3386] = 3382, + [3369] = 3357, + [3370] = 3334, + [3371] = 3339, + [3372] = 3306, + [3373] = 3335, + [3374] = 3309, + [3375] = 3306, + [3376] = 3335, + [3377] = 3306, + [3378] = 3335, + [3379] = 3306, + [3380] = 3335, + [3381] = 3357, + [3382] = 3306, + [3383] = 3335, + [3384] = 3244, + [3385] = 3335, + [3386] = 3335, [3387] = 3387, - [3388] = 3388, - [3389] = 3389, - [3390] = 3387, - [3391] = 3374, - [3392] = 3374, - [3393] = 3393, - [3394] = 3394, - [3395] = 3389, - [3396] = 3362, - [3397] = 3397, - [3398] = 3239, - [3399] = 3399, - [3400] = 3400, - [3401] = 3381, - [3402] = 3382, - [3403] = 3403, - [3404] = 2048, - [3405] = 3405, - [3406] = 3388, - [3407] = 3400, - [3408] = 3384, - [3409] = 3381, - [3410] = 3405, - [3411] = 2048, - [3412] = 3362, + [3388] = 3335, + [3389] = 3335, + [3390] = 3335, + [3391] = 3335, + [3392] = 3335, + [3393] = 3335, + [3394] = 3335, + [3395] = 3335, + [3396] = 3318, + [3397] = 3357, + [3398] = 3305, + [3399] = 3387, + [3400] = 3359, + [3401] = 3357, + [3402] = 3305, + [3403] = 3337, + [3404] = 3387, + [3405] = 3359, + [3406] = 3335, + [3407] = 3327, + [3408] = 3408, + [3409] = 2109, + [3410] = 3410, + [3411] = 3411, + [3412] = 3312, [3413] = 3413, - [3414] = 3352, - [3415] = 3415, - [3416] = 3357, - [3417] = 3417, - [3418] = 3397, + [3414] = 3414, + [3415] = 3313, + [3416] = 3416, + [3417] = 3416, + [3418] = 3418, [3419] = 3419, - [3420] = 3362, - [3421] = 3383, - [3422] = 3382, - [3423] = 3364, - [3424] = 2077, - [3425] = 3417, - [3426] = 3426, + [3420] = 3420, + [3421] = 3421, + [3422] = 3256, + [3423] = 3423, + [3424] = 3256, + [3425] = 2109, + [3426] = 3322, [3427] = 3427, - [3428] = 3183, - [3429] = 3399, - [3430] = 2080, - [3431] = 3385, - [3432] = 3374, - [3433] = 3433, - [3434] = 3434, - [3435] = 3435, - [3436] = 3436, - [3437] = 3433, - [3438] = 3393, - [3439] = 3387, - [3440] = 3440, - [3441] = 3427, - [3442] = 3442, - [3443] = 2078, - [3444] = 3403, - [3445] = 3440, - [3446] = 2083, - [3447] = 3413, - [3448] = 3442, + [3428] = 3428, + [3429] = 3429, + [3430] = 3311, + [3431] = 3321, + [3432] = 3303, + [3433] = 3304, + [3434] = 3410, + [3435] = 3421, + [3436] = 2109, + [3437] = 3437, + [3438] = 3209, + [3439] = 3439, + [3440] = 3423, + [3441] = 3420, + [3442] = 2109, + [3443] = 3443, + [3444] = 3444, + [3445] = 3413, + [3446] = 3446, + [3447] = 3447, + [3448] = 3448, [3449] = 3449, - [3450] = 3415, - [3451] = 3451, - [3452] = 3417, - [3453] = 3381, - [3454] = 3433, + [3450] = 3413, + [3451] = 3449, + [3452] = 3452, + [3453] = 2109, + [3454] = 3454, [3455] = 3455, - [3456] = 3456, - [3457] = 3203, - [3458] = 3362, - [3459] = 3405, - [3460] = 2081, - [3461] = 3461, - [3462] = 3442, - [3463] = 3374, - [3464] = 3464, + [3456] = 3454, + [3457] = 3457, + [3458] = 3420, + [3459] = 3339, + [3460] = 3423, + [3461] = 3446, + [3462] = 3462, + [3463] = 3429, + [3464] = 3429, [3465] = 3465, - [3466] = 3388, - [3467] = 3467, - [3468] = 3468, - [3469] = 3434, - [3470] = 2085, - [3471] = 3389, - [3472] = 3456, - [3473] = 3449, - [3474] = 3436, - [3475] = 3381, - [3476] = 3239, - [3477] = 3413, - [3478] = 3435, - [3479] = 2079, - [3480] = 2084, - [3481] = 2086, - [3482] = 3482, - [3483] = 3483, - [3484] = 3400, - [3485] = 2048, - [3486] = 3382, + [3466] = 3443, + [3467] = 3465, + [3468] = 3462, + [3469] = 3429, + [3470] = 3470, + [3471] = 3471, + [3472] = 3472, + [3473] = 3457, + [3474] = 3474, + [3475] = 3471, + [3476] = 3476, + [3477] = 3477, + [3478] = 3439, + [3479] = 3444, + [3480] = 3448, + [3481] = 2172, + [3482] = 3416, + [3483] = 3420, + [3484] = 3484, + [3485] = 2167, + [3486] = 3477, [3487] = 3487, [3488] = 3488, [3489] = 3489, - [3490] = 3456, - [3491] = 3491, - [3492] = 3491, - [3493] = 2082, - [3494] = 3494, - [3495] = 3495, - [3496] = 3384, - [3497] = 3374, - [3498] = 3449, - [3499] = 3499, - [3500] = 3436, - [3501] = 3501, - [3502] = 3502, - [3503] = 3503, - [3504] = 3504, - [3505] = 3505, - [3506] = 3506, - [3507] = 3507, - [3508] = 3508, - [3509] = 3491, - [3510] = 3435, - [3511] = 3511, - [3512] = 3362, - [3513] = 3382, + [3490] = 3421, + [3491] = 3488, + [3492] = 2196, + [3493] = 3493, + [3494] = 3493, + [3495] = 3472, + [3496] = 3496, + [3497] = 3496, + [3498] = 3455, + [3499] = 2169, + [3500] = 3500, + [3501] = 3489, + [3502] = 3454, + [3503] = 3410, + [3504] = 3244, + [3505] = 3447, + [3506] = 3423, + [3507] = 3488, + [3508] = 3462, + [3509] = 3484, + [3510] = 3420, + [3511] = 3423, + [3512] = 3512, + [3513] = 3476, [3514] = 3514, - [3515] = 3434, - [3516] = 3504, - [3517] = 3415, - [3518] = 3518, - [3519] = 3519, - [3520] = 3520, - [3521] = 3521, - [3522] = 3522, - [3523] = 3523, + [3515] = 2175, + [3516] = 3516, + [3517] = 3517, + [3518] = 3420, + [3519] = 3423, + [3520] = 3516, + [3521] = 3429, + [3522] = 3446, + [3523] = 3512, [3524] = 3524, [3525] = 3525, - [3526] = 3502, - [3527] = 3451, - [3528] = 3465, - [3529] = 3468, - [3530] = 3508, - [3531] = 3483, - [3532] = 3489, - [3533] = 3505, - [3534] = 3534, + [3526] = 3526, + [3527] = 3500, + [3528] = 3429, + [3529] = 3529, + [3530] = 3474, + [3531] = 3413, + [3532] = 3339, + [3533] = 2109, + [3534] = 3484, [3535] = 3535, - [3536] = 3427, - [3537] = 3525, - [3538] = 3502, - [3539] = 3451, - [3540] = 3540, + [3536] = 3449, + [3537] = 2174, + [3538] = 3472, + [3539] = 3471, + [3540] = 3493, [3541] = 3541, - [3542] = 3504, - [3543] = 3518, + [3542] = 3542, + [3543] = 2168, [3544] = 3544, - [3545] = 3545, - [3546] = 3546, - [3547] = 3547, - [3548] = 3548, - [3549] = 3434, - [3550] = 3364, + [3545] = 3256, + [3546] = 3516, + [3547] = 2170, + [3548] = 3465, + [3549] = 3549, + [3550] = 3550, [3551] = 3551, - [3552] = 3465, - [3553] = 3468, - [3554] = 3464, - [3555] = 3352, - [3556] = 3508, - [3557] = 3436, - [3558] = 3506, - [3559] = 3357, + [3552] = 3552, + [3553] = 3553, + [3554] = 2171, + [3555] = 3555, + [3556] = 2173, + [3557] = 3557, + [3558] = 3558, + [3559] = 3559, [3560] = 3560, - [3561] = 3561, - [3562] = 3562, + [3561] = 3500, + [3562] = 3443, [3563] = 3563, - [3564] = 3435, - [3565] = 3499, - [3566] = 3387, - [3567] = 3461, - [3568] = 3507, - [3569] = 3495, - [3570] = 3514, - [3571] = 3560, - [3572] = 3488, - [3573] = 3519, - [3574] = 3455, - [3575] = 3487, - [3576] = 3561, - [3577] = 3467, - [3578] = 3501, - [3579] = 3511, - [3580] = 3503, - [3581] = 3562, - [3582] = 3563, - [3583] = 3483, - [3584] = 3489, - [3585] = 3521, - [3586] = 3522, - [3587] = 3523, - [3588] = 3524, - [3589] = 3440, - [3590] = 3464, - [3591] = 3506, - [3592] = 3499, - [3593] = 3461, - [3594] = 3507, - [3595] = 3495, - [3596] = 3514, - [3597] = 3488, - [3598] = 3455, - [3599] = 3487, - [3600] = 3534, - [3601] = 3467, - [3602] = 3501, - [3603] = 3511, - [3604] = 3503, - [3605] = 3505, - [3606] = 3534, - [3607] = 3545, - [3608] = 3546, - [3609] = 3535, - [3610] = 3547, - [3611] = 3548, - [3612] = 3534, + [3564] = 3564, + [3565] = 3474, + [3566] = 3413, + [3567] = 3517, + [3568] = 3517, + [3569] = 3569, + [3570] = 3476, + [3571] = 3571, + [3572] = 3572, + [3573] = 3573, + [3574] = 3574, + [3575] = 3575, + [3576] = 3576, + [3577] = 3558, + [3578] = 3578, + [3579] = 3525, + [3580] = 3549, + [3581] = 3542, + [3582] = 3560, + [3583] = 3583, + [3584] = 3584, + [3585] = 3585, + [3586] = 3525, + [3587] = 3474, + [3588] = 3588, + [3589] = 3416, + [3590] = 3584, + [3591] = 3588, + [3592] = 3592, + [3593] = 3585, + [3594] = 3594, + [3595] = 3573, + [3596] = 3596, + [3597] = 3542, + [3598] = 3410, + [3599] = 3476, + [3600] = 3560, + [3601] = 3421, + [3602] = 3551, + [3603] = 3563, + [3604] = 3549, + [3605] = 3605, + [3606] = 3477, + [3607] = 3607, + [3608] = 3608, + [3609] = 3500, + [3610] = 3571, + [3611] = 3512, + [3612] = 3592, [3613] = 3613, - [3614] = 3534, + [3614] = 3454, [3615] = 3615, [3616] = 3616, - [3617] = 3534, - [3618] = 3534, - [3619] = 3534, - [3620] = 3540, - [3621] = 3613, - [3622] = 3615, - [3623] = 3616, - [3624] = 3541, - [3625] = 3449, - [3626] = 3626, - [3627] = 3503, - [3628] = 3628, - [3629] = 3629, - [3630] = 3626, - [3631] = 3631, - [3632] = 3632, - [3633] = 3633, - [3634] = 3632, - [3635] = 3436, - [3636] = 3636, - [3637] = 3628, - [3638] = 3435, - [3639] = 3639, + [3617] = 3617, + [3618] = 3574, + [3619] = 3559, + [3620] = 3564, + [3621] = 3621, + [3622] = 3578, + [3623] = 3583, + [3624] = 3526, + [3625] = 3625, + [3626] = 3594, + [3627] = 3627, + [3628] = 3572, + [3629] = 3608, + [3630] = 3630, + [3631] = 3541, + [3632] = 3571, + [3633] = 3484, + [3634] = 3559, + [3635] = 3544, + [3636] = 3555, + [3637] = 3564, + [3638] = 3569, + [3639] = 3630, [3640] = 3640, - [3641] = 3449, - [3642] = 3502, - [3643] = 3413, - [3644] = 3636, - [3645] = 3626, - [3646] = 3451, - [3647] = 3631, - [3648] = 3632, - [3649] = 3434, - [3650] = 3417, - [3651] = 3465, - [3652] = 3468, - [3653] = 3626, - [3654] = 3508, - [3655] = 3655, - [3656] = 3631, - [3657] = 3632, - [3658] = 3628, - [3659] = 3483, - [3660] = 3436, - [3661] = 3442, - [3662] = 3636, - [3663] = 3489, - [3664] = 3628, - [3665] = 3505, - [3666] = 3435, - [3667] = 3631, - [3668] = 3632, - [3669] = 3628, - [3670] = 3626, - [3671] = 3631, - [3672] = 3632, - [3673] = 3628, - [3674] = 3626, - [3675] = 3525, - [3676] = 3631, - [3677] = 3632, - [3678] = 3628, - [3679] = 3626, - [3680] = 3631, - [3681] = 3632, - [3682] = 3628, - [3683] = 3626, - [3684] = 3631, - [3685] = 3639, - [3686] = 3626, - [3687] = 3631, - [3688] = 3626, - [3689] = 3631, - [3690] = 3449, - [3691] = 3433, - [3692] = 3633, - [3693] = 3626, - [3694] = 3633, - [3695] = 3695, - [3696] = 3464, - [3697] = 3506, - [3698] = 3633, - [3699] = 3639, - [3700] = 3633, - [3701] = 3631, - [3702] = 3499, - [3703] = 3633, - [3704] = 3461, - [3705] = 3507, - [3706] = 3495, - [3707] = 3633, - [3708] = 3633, - [3709] = 3514, - [3710] = 3488, - [3711] = 3455, - [3712] = 3487, - [3713] = 3467, - [3714] = 3501, - [3715] = 3511, - [3716] = 3434, - [3717] = 3467, - [3718] = 3461, - [3719] = 3508, - [3720] = 3514, - [3721] = 2099, - [3722] = 3722, - [3723] = 3488, - [3724] = 3455, - [3725] = 3487, - [3726] = 3520, - [3727] = 3502, - [3728] = 3507, - [3729] = 3415, - [3730] = 3495, - [3731] = 3551, - [3732] = 3483, - [3733] = 2092, - [3734] = 3489, - [3735] = 3427, - [3736] = 3505, - [3737] = 3499, - [3738] = 3483, - [3739] = 3400, - [3740] = 3489, - [3741] = 3514, - [3742] = 3451, - [3743] = 3488, - [3744] = 3455, - [3745] = 3451, - [3746] = 3487, - [3747] = 3520, - [3748] = 2103, - [3749] = 3467, - [3750] = 3501, - [3751] = 3511, - [3752] = 3544, - [3753] = 3461, - [3754] = 3505, - [3755] = 3755, - [3756] = 3464, - [3757] = 2098, - [3758] = 3405, - [3759] = 3504, - [3760] = 3464, - [3761] = 3501, - [3762] = 2093, - [3763] = 3511, - [3764] = 3544, - [3765] = 3506, - [3766] = 3506, - [3767] = 3440, - [3768] = 3388, - [3769] = 3465, - [3770] = 3507, - [3771] = 3389, - [3772] = 3772, - [3773] = 3495, - [3774] = 3774, - [3775] = 3551, - [3776] = 3465, - [3777] = 3468, - [3778] = 3508, - [3779] = 3384, - [3780] = 3502, - [3781] = 3468, - [3782] = 2074, - [3783] = 3503, - [3784] = 3503, - [3785] = 3785, - [3786] = 3755, - [3787] = 3787, - [3788] = 2079, - [3789] = 2081, - [3790] = 2082, - [3791] = 2084, - [3792] = 2085, - [3793] = 2086, - [3794] = 3499, + [3641] = 3496, + [3642] = 3596, + [3643] = 3514, + [3644] = 3630, + [3645] = 3550, + [3646] = 3551, + [3647] = 3572, + [3648] = 3514, + [3649] = 3563, + [3650] = 3630, + [3651] = 3630, + [3652] = 3575, + [3653] = 3630, + [3654] = 3576, + [3655] = 3630, + [3656] = 3526, + [3657] = 3541, + [3658] = 3544, + [3659] = 3555, + [3660] = 3625, + [3661] = 3640, + [3662] = 3550, + [3663] = 3552, + [3664] = 3553, + [3665] = 3529, + [3666] = 3552, + [3667] = 3605, + [3668] = 3607, + [3669] = 3615, + [3670] = 3553, + [3671] = 3671, + [3672] = 3535, + [3673] = 3671, + [3674] = 3535, + [3675] = 3616, + [3676] = 3558, + [3677] = 3529, + [3678] = 3630, + [3679] = 3617, + [3680] = 3489, + [3681] = 3569, + [3682] = 3552, + [3683] = 3683, + [3684] = 3683, + [3685] = 3500, + [3686] = 3686, + [3687] = 3560, + [3688] = 3525, + [3689] = 3535, + [3690] = 3690, + [3691] = 3691, + [3692] = 3555, + [3693] = 3686, + [3694] = 3694, + [3695] = 3550, + [3696] = 3696, + [3697] = 3697, + [3698] = 3474, + [3699] = 3683, + [3700] = 3700, + [3701] = 3471, + [3702] = 3691, + [3703] = 3700, + [3704] = 3671, + [3705] = 3683, + [3706] = 3686, + [3707] = 3696, + [3708] = 3549, + [3709] = 3690, + [3710] = 3691, + [3711] = 3711, + [3712] = 3697, + [3713] = 3683, + [3714] = 3686, + [3715] = 3686, + [3716] = 3696, + [3717] = 3691, + [3718] = 3697, + [3719] = 3493, + [3720] = 3484, + [3721] = 3526, + [3722] = 3683, + [3723] = 3484, + [3724] = 3571, + [3725] = 3686, + [3726] = 3559, + [3727] = 3697, + [3728] = 3476, + [3729] = 3544, + [3730] = 3686, + [3731] = 3697, + [3732] = 3686, + [3733] = 3696, + [3734] = 3697, + [3735] = 3683, + [3736] = 3488, + [3737] = 3553, + [3738] = 3738, + [3739] = 3697, + [3740] = 3572, + [3741] = 3476, + [3742] = 3472, + [3743] = 3474, + [3744] = 3542, + [3745] = 3691, + [3746] = 3696, + [3747] = 3747, + [3748] = 3551, + [3749] = 3690, + [3750] = 3683, + [3751] = 3683, + [3752] = 3500, + [3753] = 3700, + [3754] = 3686, + [3755] = 3529, + [3756] = 3696, + [3757] = 3564, + [3758] = 3558, + [3759] = 3691, + [3760] = 3683, + [3761] = 3514, + [3762] = 3686, + [3763] = 3691, + [3764] = 3569, + [3765] = 3686, + [3766] = 3691, + [3767] = 3541, + [3768] = 3697, + [3769] = 3683, + [3770] = 3563, + [3771] = 3696, + [3772] = 3696, + [3773] = 2174, + [3774] = 3550, + [3775] = 3535, + [3776] = 3525, + [3777] = 3613, + [3778] = 3549, + [3779] = 3541, + [3780] = 3571, + [3781] = 3443, + [3782] = 3551, + [3783] = 3526, + [3784] = 3572, + [3785] = 3514, + [3786] = 3563, + [3787] = 3535, + [3788] = 3560, + [3789] = 3789, + [3790] = 3558, + [3791] = 3552, + [3792] = 3477, + [3793] = 3489, + [3794] = 3789, [3795] = 3795, - [3796] = 2084, - [3797] = 3797, - [3798] = 2086, - [3799] = 3797, - [3800] = 2103, - [3801] = 3801, - [3802] = 3802, - [3803] = 3803, - [3804] = 3525, - [3805] = 2077, - [3806] = 3803, - [3807] = 3807, - [3808] = 2078, - [3809] = 3809, - [3810] = 3801, - [3811] = 3774, - [3812] = 3812, - [3813] = 3813, - [3814] = 3551, - [3815] = 3802, - [3816] = 3813, - [3817] = 2086, - [3818] = 3807, - [3819] = 3819, - [3820] = 3820, - [3821] = 3803, - [3822] = 3822, - [3823] = 3809, - [3824] = 3822, - [3825] = 2085, - [3826] = 2079, - [3827] = 2080, - [3828] = 2081, - [3829] = 2082, - [3830] = 2083, - [3831] = 2084, - [3832] = 3819, - [3833] = 3801, - [3834] = 2074, - [3835] = 3802, + [3796] = 3462, + [3797] = 3564, + [3798] = 3798, + [3799] = 3526, + [3800] = 3553, + [3801] = 3541, + [3802] = 3551, + [3803] = 3544, + [3804] = 3804, + [3805] = 3559, + [3806] = 2175, + [3807] = 3572, + [3808] = 3529, + [3809] = 3514, + [3810] = 3544, + [3811] = 3563, + [3812] = 3571, + [3813] = 3542, + [3814] = 3559, + [3815] = 3564, + [3816] = 3555, + [3817] = 3449, + [3818] = 3496, + [3819] = 3446, + [3820] = 3621, + [3821] = 3550, + [3822] = 3569, + [3823] = 3558, + [3824] = 3552, + [3825] = 3553, + [3826] = 3512, + [3827] = 3525, + [3828] = 3549, + [3829] = 3627, + [3830] = 3613, + [3831] = 3621, + [3832] = 3832, + [3833] = 3465, + [3834] = 3542, + [3835] = 2174, [3836] = 3836, - [3837] = 2079, - [3838] = 2081, - [3839] = 3809, - [3840] = 2092, - [3841] = 3841, - [3842] = 2082, - [3843] = 3843, - [3844] = 3844, - [3845] = 2084, - [3846] = 3520, - [3847] = 2085, - [3848] = 3820, - [3849] = 3774, - [3850] = 2086, - [3851] = 2085, - [3852] = 3807, - [3853] = 3819, - [3854] = 3820, - [3855] = 3812, - [3856] = 2086, - [3857] = 2079, - [3858] = 2081, - [3859] = 2081, - [3860] = 2082, - [3861] = 3844, + [3837] = 3555, + [3838] = 3560, + [3839] = 3627, + [3840] = 2168, + [3841] = 2134, + [3842] = 2135, + [3843] = 2147, + [3844] = 2148, + [3845] = 2170, + [3846] = 3529, + [3847] = 2168, + [3848] = 2171, + [3849] = 2170, + [3850] = 2171, + [3851] = 2173, + [3852] = 2137, + [3853] = 2175, + [3854] = 2173, + [3855] = 2138, + [3856] = 3569, + [3857] = 3857, + [3858] = 3858, + [3859] = 3859, + [3860] = 2170, + [3861] = 3861, [3862] = 3862, - [3863] = 2084, - [3864] = 2079, - [3865] = 3843, - [3866] = 2098, - [3867] = 2099, - [3868] = 3836, - [3869] = 3822, - [3870] = 3544, - [3871] = 3871, - [3872] = 3843, - [3873] = 2093, - [3874] = 2085, - [3875] = 2082, - [3876] = 3841, - [3877] = 3841, - [3878] = 3844, - [3879] = 2079, - [3880] = 2085, - [3881] = 3881, - [3882] = 2092, - [3883] = 3883, - [3884] = 2093, + [3863] = 3863, + [3864] = 3864, + [3865] = 3865, + [3866] = 2171, + [3867] = 2172, + [3868] = 3868, + [3869] = 3671, + [3870] = 2170, + [3871] = 2134, + [3872] = 2135, + [3873] = 3873, + [3874] = 2147, + [3875] = 2148, + [3876] = 3876, + [3877] = 3864, + [3878] = 3858, + [3879] = 3627, + [3880] = 3880, + [3881] = 2137, + [3882] = 2138, + [3883] = 3832, + [3884] = 3880, [3885] = 3885, - [3886] = 3886, - [3887] = 3887, - [3888] = 2085, - [3889] = 3889, - [3890] = 3785, - [3891] = 3885, - [3892] = 2103, - [3893] = 3885, - [3894] = 3894, - [3895] = 3895, - [3896] = 2086, - [3897] = 3795, - [3898] = 3898, - [3899] = 3898, - [3900] = 3900, - [3901] = 3901, - [3902] = 3902, - [3903] = 2074, - [3904] = 3885, - [3905] = 3905, - [3906] = 2098, - [3907] = 3907, - [3908] = 2099, - [3909] = 3885, - [3910] = 3910, - [3911] = 3911, - [3912] = 3774, - [3913] = 2079, - [3914] = 3914, - [3915] = 3885, - [3916] = 3894, - [3917] = 3917, - [3918] = 3918, - [3919] = 3919, - [3920] = 3920, - [3921] = 3885, - [3922] = 3922, - [3923] = 3923, + [3886] = 2174, + [3887] = 2173, + [3888] = 3864, + [3889] = 2175, + [3890] = 3890, + [3891] = 3861, + [3892] = 3865, + [3893] = 3880, + [3894] = 3857, + [3895] = 2174, + [3896] = 3896, + [3897] = 3876, + [3898] = 2171, + [3899] = 2173, + [3900] = 3868, + [3901] = 2174, + [3902] = 3859, + [3903] = 2168, + [3904] = 2175, + [3905] = 3873, + [3906] = 2196, + [3907] = 3861, + [3908] = 3865, + [3909] = 2168, + [3910] = 3613, + [3911] = 3896, + [3912] = 2170, + [3913] = 2171, + [3914] = 3885, + [3915] = 3915, + [3916] = 2168, + [3917] = 3863, + [3918] = 2173, + [3919] = 3858, + [3920] = 3885, + [3921] = 2175, + [3922] = 3890, + [3923] = 3621, [3924] = 3924, - [3925] = 3905, - [3926] = 3885, - [3927] = 3883, - [3928] = 3928, - [3929] = 3886, - [3930] = 3930, - [3931] = 3885, - [3932] = 3885, - [3933] = 3894, - [3934] = 2081, - [3935] = 2082, - [3936] = 3885, - [3937] = 3885, - [3938] = 2086, - [3939] = 2084, - [3940] = 3887, - [3941] = 3922, - [3942] = 3923, - [3943] = 3871, - [3944] = 3795, - [3945] = 3928, - [3946] = 3918, - [3947] = 3930, - [3948] = 3922, - [3949] = 3917, - [3950] = 3923, - [3951] = 3883, - [3952] = 3952, - [3953] = 3952, - [3954] = 3886, - [3955] = 3928, + [3925] = 3896, + [3926] = 2167, + [3927] = 3927, + [3928] = 2169, + [3929] = 3873, + [3930] = 3832, + [3931] = 3868, + [3932] = 3857, + [3933] = 3876, + [3934] = 3927, + [3935] = 3935, + [3936] = 3936, + [3937] = 3937, + [3938] = 2170, + [3939] = 3836, + [3940] = 3940, + [3941] = 3941, + [3942] = 3942, + [3943] = 3943, + [3944] = 3944, + [3945] = 3945, + [3946] = 3944, + [3947] = 3947, + [3948] = 3862, + [3949] = 3949, + [3950] = 3950, + [3951] = 3951, + [3952] = 2174, + [3953] = 3944, + [3954] = 3941, + [3955] = 2171, [3956] = 3956, - [3957] = 3957, - [3958] = 3920, - [3959] = 3917, - [3960] = 3905, + [3957] = 2173, + [3958] = 3936, + [3959] = 3935, + [3960] = 3944, [3961] = 3961, - [3962] = 3962, - [3963] = 3907, - [3964] = 3920, - [3965] = 3887, - [3966] = 3795, - [3967] = 3952, - [3968] = 3930, - [3969] = 2079, - [3970] = 2081, - [3971] = 2082, - [3972] = 2084, - [3973] = 2085, - [3974] = 2086, - [3975] = 3901, - [3976] = 3976, - [3977] = 2081, - [3978] = 2082, - [3979] = 2084, - [3980] = 3901, + [3962] = 2168, + [3963] = 3937, + [3964] = 3924, + [3965] = 3944, + [3966] = 3944, + [3967] = 3967, + [3968] = 3968, + [3969] = 2170, + [3970] = 2171, + [3971] = 3971, + [3972] = 3972, + [3973] = 3950, + [3974] = 3974, + [3975] = 3975, + [3976] = 2173, + [3977] = 3832, + [3978] = 3935, + [3979] = 3979, + [3980] = 3972, [3981] = 3981, - [3982] = 3982, - [3983] = 3772, - [3984] = 3984, - [3985] = 3985, + [3982] = 3949, + [3983] = 3944, + [3984] = 3944, + [3985] = 3943, [3986] = 3986, - [3987] = 3987, - [3988] = 3988, - [3989] = 3989, - [3990] = 3990, - [3991] = 3787, + [3987] = 3944, + [3988] = 3949, + [3989] = 2134, + [3990] = 2137, + [3991] = 3975, [3992] = 3992, - [3993] = 3993, + [3993] = 2175, [3994] = 3994, - [3995] = 3995, - [3996] = 3996, - [3997] = 3981, - [3998] = 3998, - [3999] = 3999, - [4000] = 3989, - [4001] = 4001, - [4002] = 3995, + [3995] = 2147, + [3996] = 2168, + [3997] = 3997, + [3998] = 2170, + [3999] = 2171, + [4000] = 2173, + [4001] = 2175, + [4002] = 2174, [4003] = 4003, - [4004] = 4004, - [4005] = 3895, - [4006] = 4006, - [4007] = 4007, - [4008] = 3989, - [4009] = 3785, + [4004] = 2175, + [4005] = 4005, + [4006] = 3862, + [4007] = 3862, + [4008] = 3997, + [4009] = 2168, [4010] = 4010, - [4011] = 3993, - [4012] = 3989, - [4013] = 4013, + [4011] = 4010, + [4012] = 4012, + [4013] = 3975, [4014] = 4014, - [4015] = 3989, - [4016] = 3183, - [4017] = 4017, - [4018] = 4018, + [4015] = 3956, + [4016] = 3968, + [4017] = 3943, + [4018] = 3956, [4019] = 4019, [4020] = 4020, - [4021] = 4021, - [4022] = 4022, - [4023] = 4023, - [4024] = 4024, - [4025] = 3982, - [4026] = 4026, - [4027] = 3987, - [4028] = 4028, - [4029] = 3982, - [4030] = 4030, - [4031] = 3996, - [4032] = 3981, - [4033] = 4033, - [4034] = 4034, - [4035] = 4026, - [4036] = 4036, - [4037] = 3989, - [4038] = 4030, - [4039] = 3998, - [4040] = 3993, + [4021] = 2138, + [4022] = 3942, + [4023] = 4010, + [4024] = 3944, + [4025] = 2148, + [4026] = 3947, + [4027] = 3994, + [4028] = 2174, + [4029] = 3937, + [4030] = 3936, + [4031] = 2135, + [4032] = 4005, + [4033] = 3968, + [4034] = 3994, + [4035] = 4014, + [4036] = 4005, + [4037] = 3944, + [4038] = 3992, + [4039] = 4012, + [4040] = 4040, [4041] = 4041, - [4042] = 4028, - [4043] = 3895, - [4044] = 3989, - [4045] = 3987, - [4046] = 4046, - [4047] = 4047, - [4048] = 3785, - [4049] = 3989, + [4042] = 3944, + [4043] = 3950, + [4044] = 3947, + [4045] = 4045, + [4046] = 3924, + [4047] = 2123, + [4048] = 3798, + [4049] = 4049, [4050] = 4050, - [4051] = 4041, + [4051] = 4051, [4052] = 4052, [4053] = 4053, - [4054] = 4046, - [4055] = 2069, - [4056] = 3772, - [4057] = 3982, - [4058] = 3982, - [4059] = 4004, - [4060] = 4020, - [4061] = 4022, - [4062] = 4052, - [4063] = 4053, - [4064] = 3982, - [4065] = 4006, - [4066] = 4021, - [4067] = 4006, - [4068] = 4004, - [4069] = 4020, - [4070] = 3785, - [4071] = 3996, - [4072] = 3998, + [4054] = 4054, + [4055] = 4055, + [4056] = 4056, + [4057] = 4057, + [4058] = 4058, + [4059] = 4059, + [4060] = 4060, + [4061] = 4061, + [4062] = 4062, + [4063] = 4063, + [4064] = 4064, + [4065] = 4065, + [4066] = 4066, + [4067] = 4067, + [4068] = 4068, + [4069] = 4069, + [4070] = 4045, + [4071] = 4071, + [4072] = 4072, [4073] = 4073, - [4074] = 4022, - [4075] = 4052, - [4076] = 4053, + [4074] = 4074, + [4075] = 4075, + [4076] = 4076, [4077] = 4077, - [4078] = 4078, + [4078] = 4056, [4079] = 4079, [4080] = 4080, [4081] = 4081, [4082] = 4082, - [4083] = 3989, - [4084] = 4077, - [4085] = 4021, + [4083] = 4083, + [4084] = 4084, + [4085] = 4085, [4086] = 4086, [4087] = 4087, - [4088] = 2071, - [4089] = 4089, - [4090] = 3787, - [4091] = 4073, - [4092] = 4078, - [4093] = 3999, - [4094] = 4003, - [4095] = 4010, - [4096] = 4013, - [4097] = 4014, - [4098] = 4017, - [4099] = 4018, - [4100] = 4007, - [4101] = 3994, - [4102] = 4034, - [4103] = 4007, + [4088] = 4088, + [4089] = 4076, + [4090] = 4080, + [4091] = 4088, + [4092] = 4092, + [4093] = 4093, + [4094] = 4094, + [4095] = 4092, + [4096] = 4096, + [4097] = 4051, + [4098] = 4052, + [4099] = 4099, + [4100] = 4053, + [4101] = 4101, + [4102] = 4054, + [4103] = 4055, [4104] = 4104, - [4105] = 4050, - [4106] = 4001, - [4107] = 4001, - [4108] = 3772, - [4109] = 3982, - [4110] = 4079, - [4111] = 4036, - [4112] = 3895, - [4113] = 4113, - [4114] = 4077, - [4115] = 4078, - [4116] = 4079, - [4117] = 3989, - [4118] = 4080, - [4119] = 4081, - [4120] = 4073, - [4121] = 3994, - [4122] = 4036, - [4123] = 3999, - [4124] = 4003, - [4125] = 4033, - [4126] = 4010, - [4127] = 3989, - [4128] = 4080, - [4129] = 4081, - [4130] = 4082, - [4131] = 4086, - [4132] = 4047, - [4133] = 3787, - [4134] = 4013, - [4135] = 4087, - [4136] = 4026, - [4137] = 4030, - [4138] = 3984, - [4139] = 4014, - [4140] = 4017, - [4141] = 4018, - [4142] = 4082, - [4143] = 4047, - [4144] = 3774, - [4145] = 4089, - [4146] = 4086, - [4147] = 4087, - [4148] = 3982, - [4149] = 4041, - [4150] = 3984, - [4151] = 3995, - [4152] = 4001, + [4105] = 4105, + [4106] = 4106, + [4107] = 3940, + [4108] = 4099, + [4109] = 4109, + [4110] = 4110, + [4111] = 4093, + [4112] = 4094, + [4113] = 4096, + [4114] = 4114, + [4115] = 4049, + [4116] = 4067, + [4117] = 4068, + [4118] = 4051, + [4119] = 4052, + [4120] = 4053, + [4121] = 4054, + [4122] = 4055, + [4123] = 4123, + [4124] = 3940, + [4125] = 4058, + [4126] = 4059, + [4127] = 4060, + [4128] = 4061, + [4129] = 4062, + [4130] = 4063, + [4131] = 4064, + [4132] = 4065, + [4133] = 4069, + [4134] = 4045, + [4135] = 4071, + [4136] = 4072, + [4137] = 4068, + [4138] = 4074, + [4139] = 4075, + [4140] = 4140, + [4141] = 4082, + [4142] = 4083, + [4143] = 4084, + [4144] = 4085, + [4145] = 4086, + [4146] = 4087, + [4147] = 4076, + [4148] = 4080, + [4149] = 4088, + [4150] = 4092, + [4151] = 4096, + [4152] = 4099, [4153] = 4153, - [4154] = 4154, - [4155] = 3988, - [4156] = 4156, - [4157] = 4157, - [4158] = 4158, - [4159] = 3976, - [4160] = 4160, - [4161] = 4161, - [4162] = 4162, - [4163] = 3976, - [4164] = 4164, - [4165] = 3174, - [4166] = 3871, - [4167] = 4157, - [4168] = 4168, - [4169] = 4169, + [4154] = 3804, + [4155] = 4114, + [4156] = 3940, + [4157] = 4058, + [4158] = 4056, + [4159] = 4093, + [4160] = 4094, + [4161] = 4099, + [4162] = 4114, + [4163] = 4099, + [4164] = 4114, + [4165] = 3798, + [4166] = 3836, + [4167] = 4099, + [4168] = 4058, + [4169] = 4114, [4170] = 4170, - [4171] = 4171, - [4172] = 4156, - [4173] = 4173, - [4174] = 4174, - [4175] = 4175, - [4176] = 4176, - [4177] = 4177, - [4178] = 4178, - [4179] = 4179, - [4180] = 4019, - [4181] = 4176, - [4182] = 4156, - [4183] = 4183, - [4184] = 4184, - [4185] = 3988, - [4186] = 4186, - [4187] = 4187, - [4188] = 4188, - [4189] = 4189, - [4190] = 4190, - [4191] = 4019, - [4192] = 4192, - [4193] = 3186, - [4194] = 4194, - [4195] = 4195, - [4196] = 4196, - [4197] = 4197, - [4198] = 4198, - [4199] = 4199, - [4200] = 4186, - [4201] = 4162, - [4202] = 4202, - [4203] = 4203, - [4204] = 4179, - [4205] = 4196, - [4206] = 4206, - [4207] = 4207, - [4208] = 4208, - [4209] = 4198, - [4210] = 4210, - [4211] = 4211, - [4212] = 4177, - [4213] = 3871, - [4214] = 4214, - [4215] = 4178, - [4216] = 3203, - [4217] = 4195, - [4218] = 4183, - [4219] = 3976, - [4220] = 4175, + [4171] = 4099, + [4172] = 4114, + [4173] = 4069, + [4174] = 4114, + [4175] = 2126, + [4176] = 3804, + [4177] = 4082, + [4178] = 4114, + [4179] = 4114, + [4180] = 4104, + [4181] = 4083, + [4182] = 4099, + [4183] = 3244, + [4184] = 4081, + [4185] = 4084, + [4186] = 4050, + [4187] = 4085, + [4188] = 4123, + [4189] = 4153, + [4190] = 4077, + [4191] = 4059, + [4192] = 4071, + [4193] = 4060, + [4194] = 4114, + [4195] = 3804, + [4196] = 4061, + [4197] = 4072, + [4198] = 4062, + [4199] = 4063, + [4200] = 4064, + [4201] = 4065, + [4202] = 4086, + [4203] = 4087, + [4204] = 3836, + [4205] = 3836, + [4206] = 4073, + [4207] = 4114, + [4208] = 4106, + [4209] = 3798, + [4210] = 4104, + [4211] = 4074, + [4212] = 4075, + [4213] = 4213, + [4214] = 4049, + [4215] = 3832, + [4216] = 4067, + [4217] = 4073, + [4218] = 4218, + [4219] = 4213, + [4220] = 4220, [4221] = 4221, - [4222] = 3988, - [4223] = 4194, + [4222] = 2175, + [4223] = 4223, [4224] = 4224, - [4225] = 4225, - [4226] = 4190, - [4227] = 4227, + [4225] = 4041, + [4226] = 4226, + [4227] = 4140, [4228] = 4228, - [4229] = 4175, - [4230] = 4196, - [4231] = 3772, - [4232] = 3871, - [4233] = 3787, + [4229] = 4229, + [4230] = 4230, + [4231] = 4231, + [4232] = 4232, + [4233] = 4233, [4234] = 4234, - [4235] = 4234, + [4235] = 4235, [4236] = 4236, - [4237] = 4237, - [4238] = 4236, + [4237] = 4229, + [4238] = 4238, [4239] = 4239, - [4240] = 4225, - [4241] = 4225, + [4240] = 4240, + [4241] = 4241, [4242] = 4242, - [4243] = 4236, - [4244] = 4198, - [4245] = 3976, - [4246] = 4177, - [4247] = 4247, + [4243] = 4140, + [4244] = 4244, + [4245] = 4245, + [4246] = 4246, + [4247] = 4244, [4248] = 4248, [4249] = 4249, - [4250] = 4178, - [4251] = 4176, - [4252] = 4019, + [4250] = 4250, + [4251] = 4213, + [4252] = 4041, [4253] = 4253, [4254] = 4254, - [4255] = 4249, - [4256] = 4206, - [4257] = 4257, - [4258] = 4258, + [4255] = 4255, + [4256] = 4224, + [4257] = 3240, + [4258] = 3924, [4259] = 4259, - [4260] = 2086, - [4261] = 4249, - [4262] = 4262, + [4260] = 4248, + [4261] = 4261, + [4262] = 4248, [4263] = 4263, - [4264] = 2079, - [4265] = 4162, + [4264] = 4264, + [4265] = 4265, [4266] = 4266, - [4267] = 2079, - [4268] = 2081, - [4269] = 2081, - [4270] = 2082, - [4271] = 2084, - [4272] = 2085, - [4273] = 2082, - [4274] = 2086, - [4275] = 4275, - [4276] = 2084, - [4277] = 4277, + [4267] = 4267, + [4268] = 4249, + [4269] = 4213, + [4270] = 4270, + [4271] = 4271, + [4272] = 4272, + [4273] = 4224, + [4274] = 4274, + [4275] = 4140, + [4276] = 4276, + [4277] = 4241, [4278] = 4278, - [4279] = 4194, + [4279] = 4233, [4280] = 4280, - [4281] = 4195, - [4282] = 2085, - [4283] = 4283, - [4284] = 3914, - [4285] = 4168, - [4286] = 4206, + [4281] = 4281, + [4282] = 4282, + [4283] = 4235, + [4284] = 4245, + [4285] = 4253, + [4286] = 4278, [4287] = 4287, [4288] = 4288, - [4289] = 3871, + [4289] = 4249, [4290] = 4290, - [4291] = 4291, + [4291] = 4253, [4292] = 4292, - [4293] = 4224, - [4294] = 4294, - [4295] = 4295, - [4296] = 4296, - [4297] = 4161, - [4298] = 4207, - [4299] = 4208, - [4300] = 4300, + [4293] = 4293, + [4294] = 4278, + [4295] = 3229, + [4296] = 4231, + [4297] = 4242, + [4298] = 4254, + [4299] = 4299, + [4300] = 3924, [4301] = 4301, [4302] = 4302, [4303] = 4303, - [4304] = 4228, - [4305] = 4161, - [4306] = 4207, - [4307] = 4208, - [4308] = 4295, + [4304] = 4304, + [4305] = 4241, + [4306] = 4306, + [4307] = 3967, + [4308] = 4267, [4309] = 4309, - [4310] = 4302, - [4311] = 4303, - [4312] = 4277, + [4310] = 3256, + [4311] = 4311, + [4312] = 4312, [4313] = 4313, [4314] = 4314, - [4315] = 4228, - [4316] = 4316, - [4317] = 4317, - [4318] = 4318, - [4319] = 4319, - [4320] = 4320, - [4321] = 4295, - [4322] = 4322, - [4323] = 4323, - [4324] = 4302, - [4325] = 4303, - [4326] = 4303, - [4327] = 4300, + [4315] = 4315, + [4316] = 4311, + [4317] = 3804, + [4318] = 2168, + [4319] = 4261, + [4320] = 4306, + [4321] = 4309, + [4322] = 4244, + [4323] = 2170, + [4324] = 2171, + [4325] = 2173, + [4326] = 3798, + [4327] = 4327, [4328] = 4328, - [4329] = 4329, - [4330] = 4309, - [4331] = 4331, - [4332] = 4208, - [4333] = 4303, - [4334] = 4334, - [4335] = 4335, - [4336] = 4336, - [4337] = 4337, - [4338] = 4338, - [4339] = 4303, + [4329] = 4254, + [4330] = 4231, + [4331] = 4263, + [4332] = 4264, + [4333] = 4333, + [4334] = 4263, + [4335] = 4267, + [4336] = 4041, + [4337] = 4264, + [4338] = 4245, + [4339] = 4339, [4340] = 4340, - [4341] = 4341, - [4342] = 4184, - [4343] = 4317, - [4344] = 4344, - [4345] = 4345, - [4346] = 4303, - [4347] = 4347, - [4348] = 4348, + [4341] = 2174, + [4342] = 2168, + [4343] = 2170, + [4344] = 2171, + [4345] = 2173, + [4346] = 2174, + [4347] = 2175, + [4348] = 4041, [4349] = 4349, [4350] = 4350, - [4351] = 4189, - [4352] = 4352, - [4353] = 4303, - [4354] = 4354, + [4351] = 4351, + [4352] = 4229, + [4353] = 4353, + [4354] = 3924, [4355] = 4355, [4356] = 4356, - [4357] = 4303, + [4357] = 4357, [4358] = 4358, - [4359] = 4317, - [4360] = 4303, + [4359] = 4234, + [4360] = 4360, [4361] = 4361, - [4362] = 4355, - [4363] = 4303, - [4364] = 4303, + [4362] = 4362, + [4363] = 4363, + [4364] = 4364, [4365] = 4365, - [4366] = 4319, + [4366] = 4366, [4367] = 4367, [4368] = 4368, - [4369] = 4369, - [4370] = 4370, - [4371] = 4197, - [4372] = 4336, - [4373] = 4373, - [4374] = 4348, - [4375] = 4187, - [4376] = 4376, - [4377] = 4338, - [4378] = 4189, - [4379] = 4379, + [4369] = 4362, + [4370] = 4228, + [4371] = 4340, + [4372] = 4250, + [4373] = 4272, + [4374] = 4303, + [4375] = 4375, + [4376] = 4367, + [4377] = 4377, + [4378] = 4367, + [4379] = 4368, [4380] = 4380, - [4381] = 4381, - [4382] = 4331, - [4383] = 3211, - [4384] = 4303, - [4385] = 4302, - [4386] = 4303, + [4381] = 4270, + [4382] = 4276, + [4383] = 4383, + [4384] = 4281, + [4385] = 4218, + [4386] = 4377, [4387] = 4387, - [4388] = 4187, - [4389] = 4389, + [4388] = 4365, + [4389] = 4366, [4390] = 4390, - [4391] = 4350, - [4392] = 4301, - [4393] = 4393, - [4394] = 4387, - [4395] = 4376, - [4396] = 4393, + [4391] = 4391, + [4392] = 3250, + [4393] = 3255, + [4394] = 4367, + [4395] = 4368, + [4396] = 4396, [4397] = 4397, - [4398] = 4254, - [4399] = 4296, - [4400] = 4207, - [4401] = 4345, - [4402] = 4026, - [4403] = 4403, - [4404] = 4302, - [4405] = 4319, - [4406] = 4322, - [4407] = 4407, - [4408] = 4303, - [4409] = 4376, - [4410] = 4410, - [4411] = 4197, - [4412] = 4373, - [4413] = 4309, - [4414] = 4414, - [4415] = 4345, - [4416] = 4322, - [4417] = 4348, - [4418] = 4341, - [4419] = 4419, + [4398] = 4398, + [4399] = 4399, + [4400] = 4390, + [4401] = 4282, + [4402] = 4402, + [4403] = 4377, + [4404] = 4404, + [4405] = 4405, + [4406] = 4367, + [4407] = 4368, + [4408] = 4408, + [4409] = 4409, + [4410] = 3249, + [4411] = 4363, + [4412] = 4228, + [4413] = 4413, + [4414] = 4409, + [4415] = 4368, + [4416] = 4250, + [4417] = 4417, + [4418] = 4368, + [4419] = 4272, [4420] = 4420, - [4421] = 3209, + [4421] = 4421, [4422] = 4422, - [4423] = 4169, - [4424] = 4345, - [4425] = 4337, - [4426] = 4426, - [4427] = 4390, - [4428] = 4390, - [4429] = 4202, - [4430] = 4203, - [4431] = 4224, - [4432] = 4254, - [4433] = 4224, - [4434] = 4373, - [4435] = 4369, - [4436] = 4436, - [4437] = 4338, - [4438] = 4438, - [4439] = 4420, - [4440] = 4440, - [4441] = 4303, - [4442] = 4420, - [4443] = 4331, - [4444] = 4302, - [4445] = 4296, - [4446] = 4361, - [4447] = 4337, - [4448] = 4448, - [4449] = 4341, - [4450] = 4350, - [4451] = 4451, - [4452] = 4361, - [4453] = 4187, - [4454] = 4189, - [4455] = 4455, - [4456] = 4456, - [4457] = 4329, - [4458] = 4389, - [4459] = 4459, - [4460] = 4303, - [4461] = 4302, - [4462] = 4303, - [4463] = 4266, - [4464] = 4248, - [4465] = 4300, - [4466] = 4361, - [4467] = 4301, - [4468] = 4352, - [4469] = 3218, - [4470] = 3207, - [4471] = 4302, - [4472] = 4303, - [4473] = 4303, - [4474] = 4161, - [4475] = 4275, - [4476] = 4275, - [4477] = 4334, - [4478] = 4478, - [4479] = 4456, - [4480] = 4349, - [4481] = 4365, + [4423] = 4423, + [4424] = 4368, + [4425] = 3253, + [4426] = 4353, + [4427] = 4368, + [4428] = 4428, + [4429] = 4429, + [4430] = 4368, + [4431] = 4431, + [4432] = 4368, + [4433] = 4365, + [4434] = 4368, + [4435] = 4435, + [4436] = 4413, + [4437] = 4368, + [4438] = 4368, + [4439] = 4439, + [4440] = 4271, + [4441] = 4439, + [4442] = 4421, + [4443] = 4405, + [4444] = 4093, + [4445] = 4445, + [4446] = 4446, + [4447] = 4435, + [4448] = 4435, + [4449] = 4449, + [4450] = 4383, + [4451] = 4368, + [4452] = 4452, + [4453] = 4453, + [4454] = 4454, + [4455] = 4383, + [4456] = 4363, + [4457] = 4446, + [4458] = 4458, + [4459] = 4413, + [4460] = 4420, + [4461] = 4417, + [4462] = 4423, + [4463] = 4463, + [4464] = 4402, + [4465] = 4465, + [4466] = 4465, + [4467] = 4467, + [4468] = 4282, + [4469] = 4465, + [4470] = 4470, + [4471] = 4471, + [4472] = 4408, + [4473] = 4280, + [4474] = 4439, + [4475] = 4475, + [4476] = 4228, + [4477] = 4477, + [4478] = 4250, + [4479] = 4479, + [4480] = 4480, + [4481] = 4481, [4482] = 4482, - [4483] = 4352, - [4484] = 4314, - [4485] = 4320, - [4486] = 4486, + [4483] = 4445, + [4484] = 4367, + [4485] = 4282, + [4486] = 4368, [4487] = 4487, - [4488] = 4367, - [4489] = 4354, - [4490] = 4323, - [4491] = 4368, + [4488] = 4477, + [4489] = 4303, + [4490] = 4490, + [4491] = 4272, [4492] = 4492, - [4493] = 4358, - [4494] = 4365, - [4495] = 4495, - [4496] = 4496, - [4497] = 4356, - [4498] = 4367, - [4499] = 4499, - [4500] = 4266, - [4501] = 4501, - [4502] = 4275, - [4503] = 4503, - [4504] = 4344, - [4505] = 4368, - [4506] = 4506, - [4507] = 4507, + [4493] = 4366, + [4494] = 4479, + [4495] = 4357, + [4496] = 4387, + [4497] = 4357, + [4498] = 4479, + [4499] = 4271, + [4500] = 4265, + [4501] = 4270, + [4502] = 4397, + [4503] = 4481, + [4504] = 4265, + [4505] = 4314, + [4506] = 4387, + [4507] = 4315, [4508] = 4508, - [4509] = 4509, + [4509] = 4380, [4510] = 4510, - [4511] = 4487, - [4512] = 4410, - [4513] = 4513, - [4514] = 4514, - [4515] = 4370, - [4516] = 4508, - [4517] = 4517, - [4518] = 4518, - [4519] = 4519, - [4520] = 4520, - [4521] = 4379, + [4511] = 4367, + [4512] = 4390, + [4513] = 4375, + [4514] = 4405, + [4515] = 4408, + [4516] = 4516, + [4517] = 4367, + [4518] = 4368, + [4519] = 4368, + [4520] = 4397, + [4521] = 4387, [4522] = 4522, - [4523] = 4523, - [4524] = 4380, - [4525] = 4525, - [4526] = 4526, - [4527] = 4277, - [4528] = 4525, - [4529] = 4508, + [4523] = 4368, + [4524] = 4524, + [4525] = 4368, + [4526] = 4270, + [4527] = 4409, + [4528] = 4481, + [4529] = 4529, [4530] = 4530, - [4531] = 4531, - [4532] = 4419, - [4533] = 4455, - [4534] = 4531, - [4535] = 4535, - [4536] = 4370, - [4537] = 3433, - [4538] = 4459, - [4539] = 4539, - [4540] = 4455, - [4541] = 4440, - [4542] = 4539, - [4543] = 4478, - [4544] = 4499, - [4545] = 4456, - [4546] = 4407, - [4547] = 4451, + [4531] = 4423, + [4532] = 4532, + [4533] = 4533, + [4534] = 4534, + [4535] = 4234, + [4536] = 4536, + [4537] = 4537, + [4538] = 4265, + [4539] = 4281, + [4540] = 4409, + [4541] = 4368, + [4542] = 4477, + [4543] = 4530, + [4544] = 4449, + [4545] = 4449, + [4546] = 4546, + [4547] = 4276, [4548] = 4548, - [4549] = 4314, - [4550] = 4550, - [4551] = 4499, - [4552] = 4552, - [4553] = 4517, - [4554] = 4459, - [4555] = 4347, - [4556] = 4358, - [4557] = 4365, - [4558] = 4349, - [4559] = 4352, - [4560] = 4508, - [4561] = 4202, - [4562] = 4539, - [4563] = 4354, - [4564] = 4564, - [4565] = 4356, - [4566] = 4203, - [4567] = 4567, - [4568] = 4320, - [4569] = 4367, - [4570] = 4419, - [4571] = 4550, - [4572] = 4535, - [4573] = 4573, - [4574] = 4574, + [4549] = 4549, + [4550] = 4482, + [4551] = 4551, + [4552] = 4428, + [4553] = 4429, + [4554] = 4554, + [4555] = 4555, + [4556] = 4431, + [4557] = 4453, + [4558] = 4463, + [4559] = 4482, + [4560] = 4399, + [4561] = 4561, + [4562] = 4562, + [4563] = 4522, + [4564] = 4490, + [4565] = 4554, + [4566] = 4422, + [4567] = 4340, + [4568] = 4492, + [4569] = 4554, + [4570] = 4562, + [4571] = 4571, + [4572] = 4572, + [4573] = 4546, + [4574] = 4548, [4575] = 4575, - [4576] = 4292, - [4577] = 4577, - [4578] = 4368, - [4579] = 4486, - [4580] = 4314, - [4581] = 4323, - [4582] = 4370, - [4583] = 4583, + [4576] = 4576, + [4577] = 4399, + [4578] = 4578, + [4579] = 4522, + [4580] = 4572, + [4581] = 4562, + [4582] = 4452, + [4583] = 3240, [4584] = 4584, - [4585] = 4509, - [4586] = 4503, - [4587] = 4587, - [4588] = 4379, - [4589] = 4517, - [4590] = 4380, - [4591] = 4499, - [4592] = 4592, - [4593] = 4535, - [4594] = 4320, - [4595] = 4577, - [4596] = 4596, - [4597] = 4323, - [4598] = 4519, - [4599] = 4379, - [4600] = 4600, - [4601] = 4448, - [4602] = 4486, - [4603] = 4456, - [4604] = 3186, - [4605] = 4448, - [4606] = 4340, - [4607] = 4607, - [4608] = 4184, - [4609] = 4487, - [4610] = 4344, - [4611] = 4611, - [4612] = 4612, - [4613] = 4613, - [4614] = 4340, - [4615] = 4496, - [4616] = 4616, - [4617] = 4448, - [4618] = 4509, - [4619] = 4517, - [4620] = 4478, - [4621] = 4535, - [4622] = 4622, - [4623] = 3174, - [4624] = 4347, - [4625] = 4486, - [4626] = 4548, - [4627] = 4627, - [4628] = 4349, - [4629] = 4519, - [4630] = 4358, - [4631] = 4407, - [4632] = 4632, - [4633] = 4354, - [4634] = 4419, - [4635] = 4503, + [4585] = 4516, + [4586] = 3229, + [4587] = 4452, + [4588] = 4281, + [4589] = 4589, + [4590] = 4590, + [4591] = 4428, + [4592] = 4429, + [4593] = 4431, + [4594] = 4594, + [4595] = 4453, + [4596] = 4516, + [4597] = 4530, + [4598] = 4598, + [4599] = 4599, + [4600] = 4572, + [4601] = 4601, + [4602] = 4602, + [4603] = 4533, + [4604] = 4218, + [4605] = 4530, + [4606] = 4606, + [4607] = 4532, + [4608] = 4449, + [4609] = 4482, + [4610] = 4399, + [4611] = 4536, + [4612] = 4522, + [4613] = 4463, + [4614] = 4537, + [4615] = 4615, + [4616] = 4358, + [4617] = 4422, + [4618] = 4618, + [4619] = 4619, + [4620] = 4620, + [4621] = 4621, + [4622] = 4422, + [4623] = 4471, + [4624] = 4508, + [4625] = 4551, + [4626] = 4554, + [4627] = 4353, + [4628] = 4508, + [4629] = 4629, + [4630] = 4630, + [4631] = 4549, + [4632] = 4510, + [4633] = 4380, + [4634] = 4510, + [4635] = 4635, [4636] = 4636, - [4637] = 4575, - [4638] = 4638, - [4639] = 4356, - [4640] = 4340, - [4641] = 4407, - [4642] = 4347, - [4643] = 4344, - [4644] = 4455, + [4637] = 4615, + [4638] = 4524, + [4639] = 4639, + [4640] = 4640, + [4641] = 4629, + [4642] = 4642, + [4643] = 4643, + [4644] = 4644, [4645] = 4645, - [4646] = 4459, - [4647] = 4632, - [4648] = 4478, - [4649] = 4380, + [4646] = 4646, + [4647] = 4532, + [4648] = 4524, + [4649] = 4649, [4650] = 4650, [4651] = 4651, [4652] = 4652, - [4653] = 4653, - [4654] = 4652, - [4655] = 4655, - [4656] = 4656, - [4657] = 487, - [4658] = 4658, - [4659] = 4659, + [4653] = 4280, + [4654] = 4575, + [4655] = 4571, + [4656] = 4508, + [4657] = 4657, + [4658] = 4584, + [4659] = 4536, [4660] = 4660, - [4661] = 4661, + [4661] = 4524, [4662] = 4662, [4663] = 4663, - [4664] = 4664, + [4664] = 4549, [4665] = 4665, [4666] = 4666, - [4667] = 4667, - [4668] = 4668, + [4667] = 4551, + [4668] = 4537, [4669] = 4669, - [4670] = 4670, - [4671] = 4671, - [4672] = 4248, - [4673] = 4673, - [4674] = 4674, - [4675] = 4656, - [4676] = 4676, - [4677] = 4677, - [4678] = 4678, - [4679] = 4679, - [4680] = 4680, - [4681] = 4658, - [4682] = 4659, - [4683] = 4683, - [4684] = 4660, - [4685] = 4685, - [4686] = 4661, - [4687] = 4662, - [4688] = 4688, - [4689] = 4689, - [4690] = 4690, - [4691] = 4688, - [4692] = 4692, - [4693] = 4663, - [4694] = 4664, - [4695] = 4695, - [4696] = 4696, - [4697] = 4666, - [4698] = 4698, - [4699] = 4699, - [4700] = 4667, - [4701] = 4670, - [4702] = 4702, - [4703] = 4703, - [4704] = 4703, - [4705] = 4596, - [4706] = 4655, - [4707] = 4169, - [4708] = 4708, - [4709] = 4676, - [4710] = 4710, - [4711] = 4711, - [4712] = 4677, - [4713] = 4713, - [4714] = 4714, - [4715] = 4715, + [4670] = 4361, + [4671] = 4546, + [4672] = 4602, + [4673] = 4639, + [4674] = 4548, + [4675] = 4358, + [4676] = 4562, + [4677] = 4516, + [4678] = 4314, + [4679] = 4618, + [4680] = 4471, + [4681] = 4681, + [4682] = 4532, + [4683] = 4536, + [4684] = 4629, + [4685] = 4537, + [4686] = 4358, + [4687] = 4471, + [4688] = 4467, + [4689] = 4380, + [4690] = 4533, + [4691] = 4467, + [4692] = 4428, + [4693] = 4429, + [4694] = 4694, + [4695] = 4572, + [4696] = 4431, + [4697] = 4453, + [4698] = 4463, + [4699] = 4452, + [4700] = 4602, + [4701] = 4630, + [4702] = 4635, + [4703] = 4510, + [4704] = 4487, + [4705] = 4315, + [4706] = 4706, + [4707] = 4630, + [4708] = 4546, + [4709] = 4709, + [4710] = 4548, + [4711] = 4706, + [4712] = 4712, + [4713] = 3472, + [4714] = 4533, + [4715] = 4467, [4716] = 4716, - [4717] = 4678, - [4718] = 4671, + [4717] = 4717, + [4718] = 4718, [4719] = 4719, - [4720] = 4679, + [4720] = 4327, [4721] = 4721, [4722] = 4722, [4723] = 4723, - [4724] = 4724, + [4724] = 4650, [4725] = 4725, [4726] = 4726, [4727] = 4727, [4728] = 4728, - [4729] = 4690, - [4730] = 4685, + [4729] = 4729, + [4730] = 4730, [4731] = 4731, [4732] = 4732, [4733] = 4733, [4734] = 4734, - [4735] = 4678, - [4736] = 4692, - [4737] = 4683, - [4738] = 4738, - [4739] = 4738, - [4740] = 4662, - [4741] = 4688, + [4735] = 4735, + [4736] = 4736, + [4737] = 4737, + [4738] = 4716, + [4739] = 4739, + [4740] = 4740, + [4741] = 4741, [4742] = 4742, - [4743] = 4690, - [4744] = 4723, - [4745] = 4692, + [4743] = 4743, + [4744] = 4744, + [4745] = 4745, [4746] = 4746, [4747] = 4747, - [4748] = 4695, - [4749] = 4673, + [4748] = 4748, + [4749] = 4749, [4750] = 4750, - [4751] = 4751, + [4751] = 4333, [4752] = 4752, [4753] = 4753, [4754] = 4754, - [4755] = 4698, - [4756] = 4699, - [4757] = 488, + [4755] = 4755, + [4756] = 4756, + [4757] = 4757, [4758] = 4758, - [4759] = 4733, - [4760] = 4734, - [4761] = 4674, - [4762] = 4738, + [4759] = 4759, + [4760] = 4760, + [4761] = 4743, + [4762] = 4762, [4763] = 4763, [4764] = 4764, - [4765] = 4703, + [4765] = 4765, [4766] = 4766, - [4767] = 4695, - [4768] = 4768, + [4767] = 4767, + [4768] = 3240, [4769] = 4769, - [4770] = 4770, - [4771] = 4746, - [4772] = 4758, + [4770] = 4745, + [4771] = 501, + [4772] = 4772, [4773] = 4773, - [4774] = 4689, + [4774] = 4774, [4775] = 4775, - [4776] = 4708, + [4776] = 4776, [4777] = 4777, - [4778] = 4754, + [4778] = 4778, [4779] = 4779, - [4780] = 4679, - [4781] = 4710, - [4782] = 4652, - [4783] = 4711, - [4784] = 4784, - [4785] = 4656, - [4786] = 4676, - [4787] = 4677, - [4788] = 4788, - [4789] = 4678, - [4790] = 4713, - [4791] = 4679, - [4792] = 4714, - [4793] = 4715, - [4794] = 4611, - [4795] = 4716, - [4796] = 4703, - [4797] = 4764, - [4798] = 3417, - [4799] = 4799, + [4780] = 4721, + [4781] = 4781, + [4782] = 4782, + [4783] = 4783, + [4784] = 4752, + [4785] = 4785, + [4786] = 4776, + [4787] = 4787, + [4788] = 4576, + [4789] = 4789, + [4790] = 4790, + [4791] = 4791, + [4792] = 4792, + [4793] = 4793, + [4794] = 4794, + [4795] = 4795, + [4796] = 4717, + [4797] = 4797, + [4798] = 4719, + [4799] = 4731, [4800] = 4800, - [4801] = 485, - [4802] = 4723, - [4803] = 4257, - [4804] = 4747, - [4805] = 4258, - [4806] = 4259, + [4801] = 4718, + [4802] = 4725, + [4803] = 4803, + [4804] = 4734, + [4805] = 4805, + [4806] = 4806, [4807] = 4807, - [4808] = 4673, - [4809] = 4724, - [4810] = 4751, - [4811] = 4725, - [4812] = 4752, - [4813] = 4726, - [4814] = 4727, - [4815] = 4754, + [4808] = 4808, + [4809] = 4809, + [4810] = 4810, + [4811] = 4806, + [4812] = 4741, + [4813] = 4813, + [4814] = 4814, + [4815] = 4815, [4816] = 4816, - [4817] = 4728, - [4818] = 4733, - [4819] = 4734, - [4820] = 4738, + [4817] = 4817, + [4818] = 4803, + [4819] = 4807, + [4820] = 4820, [4821] = 4821, - [4822] = 489, - [4823] = 4731, - [4824] = 4766, - [4825] = 4825, - [4826] = 4768, - [4827] = 4769, - [4828] = 4770, + [4822] = 4822, + [4823] = 4823, + [4824] = 4824, + [4825] = 4750, + [4826] = 4826, + [4827] = 4772, + [4828] = 4828, [4829] = 4829, - [4830] = 4650, - [4831] = 4742, - [4832] = 4636, - [4833] = 4702, - [4834] = 4723, - [4835] = 4835, - [4836] = 4836, - [4837] = 4747, - [4838] = 4698, - [4839] = 4676, - [4840] = 4673, - [4841] = 4552, - [4842] = 4751, - [4843] = 4636, - [4844] = 4752, - [4845] = 4613, - [4846] = 4846, - [4847] = 4754, - [4848] = 4848, - [4849] = 4849, - [4850] = 4850, - [4851] = 4733, - [4852] = 4734, - [4853] = 4738, - [4854] = 4708, - [4855] = 4855, - [4856] = 4856, - [4857] = 4766, - [4858] = 4768, - [4859] = 4859, - [4860] = 4769, - [4861] = 4770, + [4830] = 4830, + [4831] = 4831, + [4832] = 4723, + [4833] = 4728, + [4834] = 4754, + [4835] = 4797, + [4836] = 4810, + [4837] = 4837, + [4838] = 4838, + [4839] = 4839, + [4840] = 4840, + [4841] = 4651, + [4842] = 4842, + [4843] = 4843, + [4844] = 4844, + [4845] = 4718, + [4846] = 4238, + [4847] = 4723, + [4848] = 4743, + [4849] = 4747, + [4850] = 4745, + [4851] = 4239, + [4852] = 4747, + [4853] = 4748, + [4854] = 4854, + [4855] = 4844, + [4856] = 4774, + [4857] = 4857, + [4858] = 4814, + [4859] = 4240, + [4860] = 4860, + [4861] = 4810, [4862] = 4862, [4863] = 4863, - [4864] = 4699, - [4865] = 4763, - [4866] = 4866, + [4864] = 4814, + [4865] = 4726, + [4866] = 4816, [4867] = 4867, - [4868] = 4723, - [4869] = 4513, - [4870] = 4518, - [4871] = 4747, - [4872] = 4872, - [4873] = 4673, - [4874] = 4874, - [4875] = 4751, - [4876] = 4752, - [4877] = 4877, - [4878] = 4754, + [4868] = 4803, + [4869] = 4869, + [4870] = 4807, + [4871] = 4727, + [4872] = 4822, + [4873] = 4642, + [4874] = 4729, + [4875] = 4823, + [4876] = 4824, + [4877] = 4826, + [4878] = 4810, [4879] = 4879, - [4880] = 4816, - [4881] = 4733, - [4882] = 4734, - [4883] = 3207, - [4884] = 4884, - [4885] = 4738, - [4886] = 4886, - [4887] = 4887, - [4888] = 4766, - [4889] = 4889, - [4890] = 4768, - [4891] = 4769, - [4892] = 4770, - [4893] = 4773, + [4880] = 4831, + [4881] = 4748, + [4882] = 4728, + [4883] = 4754, + [4884] = 4797, + [4885] = 4837, + [4886] = 4814, + [4887] = 4730, + [4888] = 4645, + [4889] = 4636, + [4890] = 4650, + [4891] = 4619, + [4892] = 4651, + [4893] = 4810, [4894] = 4894, - [4895] = 4895, - [4896] = 4248, - [4897] = 4723, - [4898] = 4898, - [4899] = 4747, - [4900] = 4766, - [4901] = 4673, - [4902] = 4768, - [4903] = 4751, - [4904] = 4752, - [4905] = 4905, - [4906] = 4769, - [4907] = 4754, - [4908] = 4770, - [4909] = 4710, - [4910] = 4733, - [4911] = 4734, - [4912] = 4912, - [4913] = 4738, - [4914] = 4766, - [4915] = 4768, - [4916] = 4779, - [4917] = 4769, - [4918] = 4770, - [4919] = 4919, - [4920] = 4836, - [4921] = 4719, - [4922] = 4922, - [4923] = 4751, - [4924] = 4924, - [4925] = 4733, - [4926] = 4734, - [4927] = 4724, - [4928] = 4738, - [4929] = 4816, - [4930] = 4248, - [4931] = 4766, - [4932] = 4751, - [4933] = 4768, - [4934] = 4769, - [4935] = 4770, - [4936] = 4936, - [4937] = 4613, - [4938] = 4846, - [4939] = 4939, - [4940] = 4711, - [4941] = 4725, - [4942] = 4850, - [4943] = 4943, - [4944] = 4733, - [4945] = 4734, - [4946] = 4753, - [4947] = 4738, - [4948] = 4726, - [4949] = 4766, - [4950] = 4768, - [4951] = 4951, - [4952] = 4769, - [4953] = 4770, - [4954] = 4719, - [4955] = 4723, - [4956] = 4723, - [4957] = 4169, - [4958] = 4958, - [4959] = 4733, - [4960] = 4734, - [4961] = 4961, - [4962] = 4738, - [4963] = 4747, - [4964] = 4766, - [4965] = 4768, - [4966] = 4769, - [4967] = 4770, - [4968] = 4968, - [4969] = 4969, - [4970] = 4970, - [4971] = 4727, - [4972] = 4713, - [4973] = 4746, - [4974] = 4738, - [4975] = 4769, - [4976] = 4770, - [4977] = 4673, - [4978] = 4758, - [4979] = 3442, - [4980] = 4980, - [4981] = 4751, - [4982] = 4773, - [4983] = 4652, - [4984] = 4984, - [4985] = 4752, - [4986] = 4171, - [4987] = 4173, - [4988] = 4174, - [4989] = 4714, - [4990] = 4990, - [4991] = 4784, - [4992] = 4848, - [4993] = 4733, - [4994] = 4994, - [4995] = 4754, - [4996] = 4728, - [4997] = 4722, - [4998] = 4734, - [4999] = 4747, - [5000] = 4611, - [5001] = 4835, - [5002] = 4653, - [5003] = 3413, - [5004] = 5004, - [5005] = 4685, - [5006] = 4689, + [4895] = 4814, + [4896] = 4896, + [4897] = 4816, + [4898] = 4732, + [4899] = 4803, + [4900] = 4807, + [4901] = 4842, + [4902] = 4822, + [4903] = 4816, + [4904] = 4733, + [4905] = 4823, + [4906] = 4824, + [4907] = 4907, + [4908] = 4826, + [4909] = 4838, + [4910] = 4910, + [4911] = 4831, + [4912] = 4728, + [4913] = 4803, + [4914] = 4754, + [4915] = 4797, + [4916] = 4735, + [4917] = 4736, + [4918] = 4918, + [4919] = 4793, + [4920] = 4810, + [4921] = 4753, + [4922] = 4807, + [4923] = 4814, + [4924] = 4816, + [4925] = 4803, + [4926] = 4807, + [4927] = 4822, + [4928] = 4809, + [4929] = 4929, + [4930] = 4823, + [4931] = 4824, + [4932] = 4340, + [4933] = 4826, + [4934] = 4934, + [4935] = 4935, + [4936] = 4831, + [4937] = 4728, + [4938] = 4938, + [4939] = 4754, + [4940] = 4797, + [4941] = 505, + [4942] = 504, + [4943] = 4778, + [4944] = 4944, + [4945] = 4822, + [4946] = 4946, + [4947] = 4810, + [4948] = 4814, + [4949] = 4816, + [4950] = 4803, + [4951] = 4807, + [4952] = 4837, + [4953] = 4822, + [4954] = 4860, + [4955] = 4955, + [4956] = 4823, + [4957] = 4824, + [4958] = 4838, + [4959] = 4726, + [4960] = 4826, + [4961] = 4794, + [4962] = 4831, + [4963] = 4728, + [4964] = 3471, + [4965] = 4754, + [4966] = 4797, + [4967] = 4967, + [4968] = 4789, + [4969] = 4790, + [4970] = 4929, + [4971] = 4779, + [4972] = 4972, + [4973] = 4828, + [4974] = 4727, + [4975] = 4743, + [4976] = 4803, + [4977] = 4795, + [4978] = 4823, + [4979] = 4824, + [4980] = 4353, + [4981] = 4826, + [4982] = 4831, + [4983] = 4728, + [4984] = 4754, + [4985] = 4797, + [4986] = 4640, + [4987] = 4757, + [4988] = 4644, + [4989] = 4745, + [4990] = 4839, + [4991] = 4758, + [4992] = 4823, + [4993] = 4824, + [4994] = 4823, + [4995] = 4824, + [4996] = 4717, + [4997] = 4826, + [4998] = 4998, + [4999] = 4831, + [5000] = 3253, + [5001] = 4728, + [5002] = 4826, + [5003] = 4754, + [5004] = 4797, + [5005] = 4894, + [5006] = 5006, [5007] = 5007, - [5008] = 5008, - [5009] = 4677, - [5010] = 4855, - [5011] = 4702, - [5012] = 4859, - [5013] = 4715, - [5014] = 5014, - [5015] = 4924, - [5016] = 4936, - [5017] = 5017, - [5018] = 5018, - [5019] = 5019, - [5020] = 5020, - [5021] = 5021, - [5022] = 4777, - [5023] = 486, - [5024] = 4680, - [5025] = 4733, - [5026] = 4734, - [5027] = 4825, - [5028] = 4895, - [5029] = 4912, - [5030] = 5018, - [5031] = 4738, - [5032] = 5032, - [5033] = 5033, - [5034] = 4905, - [5035] = 5035, - [5036] = 4872, - [5037] = 4943, - [5038] = 5038, - [5039] = 3174, - [5040] = 4673, + [5008] = 4795, + [5009] = 4810, + [5010] = 4823, + [5011] = 4824, + [5012] = 4826, + [5013] = 4747, + [5014] = 4831, + [5015] = 4728, + [5016] = 4754, + [5017] = 4797, + [5018] = 4760, + [5019] = 4719, + [5020] = 4748, + [5021] = 4340, + [5022] = 4826, + [5023] = 4754, + [5024] = 4797, + [5025] = 4829, + [5026] = 4814, + [5027] = 4822, + [5028] = 5028, + [5029] = 4781, + [5030] = 5030, + [5031] = 4774, + [5032] = 4839, + [5033] = 4816, + [5034] = 5034, + [5035] = 4840, + [5036] = 4729, + [5037] = 4803, + [5038] = 4823, + [5039] = 5039, + [5040] = 5040, [5041] = 5041, - [5042] = 4961, - [5043] = 4874, - [5044] = 4764, - [5045] = 5021, - [5046] = 4653, - [5047] = 5047, - [5048] = 5007, - [5049] = 5049, - [5050] = 4683, - [5051] = 4859, - [5052] = 4751, - [5053] = 4924, - [5054] = 4169, - [5055] = 5019, - [5056] = 5020, - [5057] = 3174, - [5058] = 4680, - [5059] = 4912, - [5060] = 5060, - [5061] = 5032, - [5062] = 4836, - [5063] = 4887, - [5064] = 5035, - [5065] = 5032, - [5066] = 4846, - [5067] = 4943, - [5068] = 5049, - [5069] = 4872, - [5070] = 4874, - [5071] = 5071, - [5072] = 4887, - [5073] = 4656, - [5074] = 4970, - [5075] = 4766, - [5076] = 4768, - [5077] = 4769, - [5078] = 4770, - [5079] = 4764, - [5080] = 5080, + [5042] = 4353, + [5043] = 5043, + [5044] = 5044, + [5045] = 5045, + [5046] = 4762, + [5047] = 4824, + [5048] = 5048, + [5049] = 4857, + [5050] = 3493, + [5051] = 4807, + [5052] = 5040, + [5053] = 4782, + [5054] = 5054, + [5055] = 5055, + [5056] = 4813, + [5057] = 4817, + [5058] = 4753, + [5059] = 4854, + [5060] = 4759, + [5061] = 4805, + [5062] = 4955, + [5063] = 5063, + [5064] = 4815, + [5065] = 4831, + [5066] = 4826, + [5067] = 4757, + [5068] = 4728, + [5069] = 5044, + [5070] = 4758, + [5071] = 4792, + [5072] = 4754, + [5073] = 4879, + [5074] = 4896, + [5075] = 4740, + [5076] = 4797, + [5077] = 5077, + [5078] = 5030, + [5079] = 4775, + [5080] = 4809, [5081] = 5081, - [5082] = 4753, - [5083] = 4886, - [5084] = 4766, - [5085] = 4752, - [5086] = 4716, - [5087] = 4211, - [5088] = 4247, - [5089] = 4747, - [5090] = 5090, - [5091] = 4746, - [5092] = 4758, - [5093] = 4779, - [5094] = 4768, - [5095] = 4773, - [5096] = 4567, - [5097] = 4835, - [5098] = 4731, - [5099] = 4752, - [5100] = 4769, - [5101] = 4770, - [5102] = 5102, - [5103] = 5007, - [5104] = 4584, - [5105] = 5019, - [5106] = 5014, - [5107] = 5014, - [5108] = 5108, - [5109] = 4919, - [5110] = 4658, - [5111] = 4905, - [5112] = 4275, - [5113] = 5113, - [5114] = 5041, - [5115] = 4961, - [5116] = 4659, - [5117] = 5021, - [5118] = 4807, - [5119] = 4660, - [5120] = 5049, - [5121] = 4661, - [5122] = 4784, - [5123] = 4848, - [5124] = 5020, - [5125] = 4169, - [5126] = 4674, - [5127] = 4611, - [5128] = 4663, - [5129] = 4664, - [5130] = 4829, - [5131] = 4849, - [5132] = 4779, - [5133] = 4750, - [5134] = 4668, - [5135] = 4788, - [5136] = 4863, - [5137] = 4866, - [5138] = 4666, - [5139] = 4667, - [5140] = 4670, - [5141] = 5113, - [5142] = 5142, - [5143] = 5113, - [5144] = 4799, - [5145] = 5017, - [5146] = 4877, - [5147] = 5035, - [5148] = 4879, - [5149] = 4788, - [5150] = 4863, - [5151] = 4889, - [5152] = 4866, - [5153] = 5153, - [5154] = 4877, - [5155] = 4879, - [5156] = 4894, - [5157] = 4889, - [5158] = 4754, - [5159] = 4248, - [5160] = 4894, - [5161] = 4552, - [5162] = 5162, - [5163] = 4636, - [5164] = 5041, - [5165] = 5165, - [5166] = 5166, - [5167] = 5167, - [5168] = 4438, - [5169] = 5169, - [5170] = 5170, - [5171] = 5171, - [5172] = 5172, - [5173] = 5173, - [5174] = 5174, - [5175] = 5175, - [5176] = 5176, - [5177] = 5177, - [5178] = 5178, - [5179] = 5179, - [5180] = 5180, - [5181] = 4210, - [5182] = 5171, - [5183] = 5171, - [5184] = 5184, - [5185] = 5185, + [5082] = 4929, + [5083] = 4787, + [5084] = 4742, + [5085] = 4760, + [5086] = 5086, + [5087] = 4749, + [5088] = 5048, + [5089] = 5089, + [5090] = 4730, + [5091] = 4731, + [5092] = 5092, + [5093] = 5093, + [5094] = 4762, + [5095] = 4857, + [5096] = 4822, + [5097] = 5040, + [5098] = 4764, + [5099] = 4813, + [5100] = 4854, + [5101] = 4755, + [5102] = 4805, + [5103] = 4955, + [5104] = 4800, + [5105] = 4756, + [5106] = 5044, + [5107] = 4896, + [5108] = 4842, + [5109] = 4775, + [5110] = 4765, + [5111] = 4837, + [5112] = 4838, + [5113] = 4764, + [5114] = 5089, + [5115] = 4787, + [5116] = 4839, + [5117] = 4773, + [5118] = 5086, + [5119] = 4829, + [5120] = 4636, + [5121] = 4650, + [5122] = 4619, + [5123] = 5054, + [5124] = 4722, + [5125] = 4789, + [5126] = 4790, + [5127] = 5127, + [5128] = 4732, + [5129] = 4766, + [5130] = 4766, + [5131] = 4828, + [5132] = 4767, + [5133] = 5039, + [5134] = 4767, + [5135] = 4752, + [5136] = 4823, + [5137] = 5137, + [5138] = 4824, + [5139] = 4733, + [5140] = 4826, + [5141] = 4651, + [5142] = 5137, + [5143] = 5143, + [5144] = 5144, + [5145] = 4763, + [5146] = 4721, + [5147] = 4783, + [5148] = 5148, + [5149] = 503, + [5150] = 5041, + [5151] = 5086, + [5152] = 4734, + [5153] = 4741, + [5154] = 5154, + [5155] = 4808, + [5156] = 4750, + [5157] = 4772, + [5158] = 4998, + [5159] = 4830, + [5160] = 4774, + [5161] = 4785, + [5162] = 4723, + [5163] = 5055, + [5164] = 4998, + [5165] = 4800, + [5166] = 4725, + [5167] = 4281, + [5168] = 4735, + [5169] = 5030, + [5170] = 4816, + [5171] = 5143, + [5172] = 4842, + [5173] = 4829, + [5174] = 3488, + [5175] = 4355, + [5176] = 4776, + [5177] = 4736, + [5178] = 4221, + [5179] = 4223, + [5180] = 4867, + [5181] = 4353, + [5182] = 4778, + [5183] = 4716, + [5184] = 4779, + [5185] = 5006, [5186] = 5186, - [5187] = 5187, + [5187] = 5039, [5188] = 5188, - [5189] = 5189, - [5190] = 5171, - [5191] = 3207, - [5192] = 4438, - [5193] = 4160, - [5194] = 5194, - [5195] = 4221, - [5196] = 5196, - [5197] = 5197, + [5189] = 4781, + [5190] = 4782, + [5191] = 5191, + [5192] = 4783, + [5193] = 5006, + [5194] = 5041, + [5195] = 4785, + [5196] = 5144, + [5197] = 4740, [5198] = 5198, - [5199] = 5199, - [5200] = 5171, + [5199] = 4742, + [5200] = 4718, [5201] = 5201, - [5202] = 4227, - [5203] = 5203, - [5204] = 5171, - [5205] = 5205, - [5206] = 5206, - [5207] = 5207, - [5208] = 5208, - [5209] = 5209, - [5210] = 5210, - [5211] = 5211, - [5212] = 5212, - [5213] = 5213, - [5214] = 5214, - [5215] = 5179, - [5216] = 5214, - [5217] = 5212, - [5218] = 5212, - [5219] = 5219, - [5220] = 5171, - [5221] = 5221, - [5222] = 5166, - [5223] = 5184, + [5202] = 4749, + [5203] = 5127, + [5204] = 4934, + [5205] = 4755, + [5206] = 4756, + [5207] = 4722, + [5208] = 4765, + [5209] = 5054, + [5210] = 5055, + [5211] = 3240, + [5212] = 5077, + [5213] = 4773, + [5214] = 4817, + [5215] = 500, + [5216] = 5216, + [5217] = 5217, + [5218] = 4831, + [5219] = 4831, + [5220] = 4728, + [5221] = 5043, + [5222] = 4340, + [5223] = 4793, [5224] = 5224, - [5225] = 5225, - [5226] = 5175, - [5227] = 5227, - [5228] = 5228, - [5229] = 5174, - [5230] = 5189, + [5225] = 4754, + [5226] = 4797, + [5227] = 4794, + [5228] = 5217, + [5229] = 5229, + [5230] = 5230, [5231] = 5231, [5232] = 5232, - [5233] = 5203, - [5234] = 5189, + [5233] = 3249, + [5234] = 5234, [5235] = 5235, - [5236] = 5189, - [5237] = 5188, - [5238] = 5208, + [5236] = 5236, + [5237] = 5237, + [5238] = 5238, [5239] = 5239, [5240] = 5240, - [5241] = 5241, + [5241] = 5234, [5242] = 5242, - [5243] = 5211, - [5244] = 5244, - [5245] = 5178, - [5246] = 3209, + [5243] = 5243, + [5244] = 5234, + [5245] = 5245, + [5246] = 5246, [5247] = 5247, - [5248] = 5189, - [5249] = 5227, - [5250] = 5176, - [5251] = 3218, - [5252] = 3218, + [5248] = 5248, + [5249] = 5229, + [5250] = 5250, + [5251] = 5234, + [5252] = 5252, [5253] = 5253, - [5254] = 5254, - [5255] = 5197, - [5256] = 5256, - [5257] = 5171, - [5258] = 5171, - [5259] = 5171, - [5260] = 5171, - [5261] = 5171, - [5262] = 5171, - [5263] = 5171, + [5254] = 5248, + [5255] = 5255, + [5256] = 5239, + [5257] = 4907, + [5258] = 5258, + [5259] = 5259, + [5260] = 5260, + [5261] = 5261, + [5262] = 5262, + [5263] = 5245, [5264] = 5264, [5265] = 5265, - [5266] = 705, - [5267] = 5207, - [5268] = 5231, - [5269] = 5174, - [5270] = 5212, - [5271] = 5212, - [5272] = 5174, - [5273] = 3211, - [5274] = 5184, - [5275] = 5228, - [5276] = 5224, + [5266] = 5266, + [5267] = 5267, + [5268] = 5268, + [5269] = 4304, + [5270] = 5270, + [5271] = 5148, + [5272] = 5272, + [5273] = 5273, + [5274] = 5274, + [5275] = 5234, + [5276] = 5276, [5277] = 5277, - [5278] = 5174, - [5279] = 5279, - [5280] = 5280, - [5281] = 4438, - [5282] = 5235, - [5283] = 5188, - [5284] = 5208, - [5285] = 5239, + [5278] = 5234, + [5279] = 4480, + [5280] = 5235, + [5281] = 5154, + [5282] = 5282, + [5283] = 5282, + [5284] = 5284, + [5285] = 5285, [5286] = 5286, - [5287] = 5171, - [5288] = 5242, + [5287] = 5287, + [5288] = 5285, [5289] = 5289, - [5290] = 5265, - [5291] = 5178, + [5290] = 5290, + [5291] = 4339, [5292] = 5292, - [5293] = 5247, - [5294] = 5294, - [5295] = 5295, - [5296] = 5235, + [5293] = 5293, + [5294] = 5245, + [5295] = 3250, + [5296] = 5296, [5297] = 5297, [5298] = 5298, - [5299] = 5179, - [5300] = 5300, - [5301] = 5171, - [5302] = 5197, + [5299] = 5299, + [5300] = 5231, + [5301] = 5298, + [5302] = 5232, [5303] = 5303, - [5304] = 5171, - [5305] = 5305, + [5304] = 5304, + [5305] = 5234, [5306] = 5306, - [5307] = 5264, - [5308] = 5279, - [5309] = 5309, - [5310] = 5310, + [5307] = 5252, + [5308] = 5239, + [5309] = 5282, + [5310] = 5247, [5311] = 5311, [5312] = 5312, - [5313] = 5171, + [5313] = 5313, [5314] = 5314, - [5315] = 5315, - [5316] = 5189, - [5317] = 5317, - [5318] = 5198, - [5319] = 5319, - [5320] = 5239, - [5321] = 5321, - [5322] = 5322, - [5323] = 5323, - [5324] = 5170, - [5325] = 5325, - [5326] = 5264, - [5327] = 5327, - [5328] = 5279, - [5329] = 5212, - [5330] = 5289, - [5331] = 4867, + [5315] = 5239, + [5316] = 5316, + [5317] = 4288, + [5318] = 3255, + [5319] = 3249, + [5320] = 5234, + [5321] = 5234, + [5322] = 5234, + [5323] = 5234, + [5324] = 5234, + [5325] = 5234, + [5326] = 5234, + [5327] = 5250, + [5328] = 5239, + [5329] = 5329, + [5330] = 5287, + [5331] = 5331, [5332] = 5332, - [5333] = 5332, - [5334] = 5224, - [5335] = 5335, - [5336] = 5336, - [5337] = 5189, - [5338] = 5338, + [5333] = 5282, + [5334] = 5287, + [5335] = 5246, + [5336] = 5293, + [5337] = 5272, + [5338] = 5245, [5339] = 5339, - [5340] = 5170, - [5341] = 5228, - [5342] = 5207, - [5343] = 4898, - [5344] = 5171, - [5345] = 5211, - [5346] = 5176, - [5347] = 5294, - [5348] = 5244, - [5349] = 5332, - [5350] = 5350, - [5351] = 5298, - [5352] = 5247, - [5353] = 3209, - [5354] = 5213, + [5340] = 5340, + [5341] = 5341, + [5342] = 5232, + [5343] = 5303, + [5344] = 5304, + [5345] = 5282, + [5346] = 4480, + [5347] = 5252, + [5348] = 5289, + [5349] = 5349, + [5350] = 5247, + [5351] = 5351, + [5352] = 5311, + [5353] = 5312, + [5354] = 5234, [5355] = 5355, [5356] = 5356, - [5357] = 5357, - [5358] = 5244, - [5359] = 5359, - [5360] = 5240, - [5361] = 5174, - [5362] = 5359, - [5363] = 5197, - [5364] = 5364, - [5365] = 5194, + [5357] = 5230, + [5358] = 5358, + [5359] = 5268, + [5360] = 5255, + [5361] = 5361, + [5362] = 5234, + [5363] = 5277, + [5364] = 5292, + [5365] = 5365, [5366] = 5366, - [5367] = 5264, - [5368] = 5171, - [5369] = 5279, - [5370] = 5210, - [5371] = 5242, - [5372] = 5198, - [5373] = 5373, - [5374] = 5207, - [5375] = 5298, - [5376] = 5376, - [5377] = 5357, - [5378] = 5357, - [5379] = 5298, - [5380] = 5189, - [5381] = 5172, + [5367] = 5245, + [5368] = 5234, + [5369] = 5369, + [5370] = 5370, + [5371] = 5270, + [5372] = 5372, + [5373] = 5239, + [5374] = 5374, + [5375] = 4480, + [5376] = 5293, + [5377] = 4246, + [5378] = 5303, + [5379] = 5379, + [5380] = 5243, + [5381] = 5246, [5382] = 5382, - [5383] = 5335, - [5384] = 5199, - [5385] = 5194, - [5386] = 5359, - [5387] = 5338, + [5383] = 5239, + [5384] = 5384, + [5385] = 5385, + [5386] = 5273, + [5387] = 5387, [5388] = 5388, - [5389] = 3211, - [5390] = 5240, - [5391] = 4800, - [5392] = 5169, - [5393] = 5393, - [5394] = 5232, - [5395] = 5210, + [5389] = 5389, + [5390] = 5390, + [5391] = 5270, + [5392] = 5392, + [5393] = 5240, + [5394] = 5311, + [5395] = 5304, [5396] = 5396, [5397] = 5397, - [5398] = 5398, - [5399] = 5398, + [5398] = 5297, + [5399] = 5399, [5400] = 5400, - [5401] = 5396, - [5402] = 5402, + [5401] = 5401, + [5402] = 5234, [5403] = 5403, - [5404] = 5404, - [5405] = 5405, - [5406] = 5396, - [5407] = 5396, - [5408] = 5408, - [5409] = 5409, - [5410] = 5410, - [5411] = 5396, - [5412] = 5412, - [5413] = 492, - [5414] = 5414, - [5415] = 5415, + [5404] = 5356, + [5405] = 5262, + [5406] = 5406, + [5407] = 5407, + [5408] = 3253, + [5409] = 5369, + [5410] = 5238, + [5411] = 5372, + [5412] = 5255, + [5413] = 5413, + [5414] = 5260, + [5415] = 5255, [5416] = 5416, - [5417] = 5417, - [5418] = 5396, + [5417] = 5260, + [5418] = 5365, [5419] = 5419, - [5420] = 5420, - [5421] = 5421, - [5422] = 5422, - [5423] = 5423, - [5424] = 5424, - [5425] = 5425, - [5426] = 5426, + [5420] = 3250, + [5421] = 5299, + [5422] = 5384, + [5423] = 732, + [5424] = 5245, + [5425] = 5312, + [5426] = 5268, [5427] = 5427, - [5428] = 5428, - [5429] = 5402, - [5430] = 5430, - [5431] = 5431, - [5432] = 5432, - [5433] = 5433, - [5434] = 5400, - [5435] = 5432, - [5436] = 5436, - [5437] = 5400, - [5438] = 5410, - [5439] = 5439, - [5440] = 5430, - [5441] = 5441, - [5442] = 5442, - [5443] = 5400, - [5444] = 5444, - [5445] = 5445, - [5446] = 5422, - [5447] = 5447, - [5448] = 5448, + [5428] = 5282, + [5429] = 5229, + [5430] = 5284, + [5431] = 5234, + [5432] = 5298, + [5433] = 5290, + [5434] = 5284, + [5435] = 5273, + [5436] = 5234, + [5437] = 5437, + [5438] = 5438, + [5439] = 5407, + [5440] = 5440, + [5441] = 5231, + [5442] = 5231, + [5443] = 5239, + [5444] = 5387, + [5445] = 5341, + [5446] = 5369, + [5447] = 5407, + [5448] = 5407, [5449] = 5449, - [5450] = 5397, - [5451] = 5398, - [5452] = 5448, + [5450] = 5450, + [5451] = 3255, + [5452] = 5243, [5453] = 5453, - [5454] = 5420, - [5455] = 5455, - [5456] = 5408, - [5457] = 5405, - [5458] = 5432, - [5459] = 5441, - [5460] = 5400, - [5461] = 5461, - [5462] = 5462, - [5463] = 5441, - [5464] = 5397, - [5465] = 5430, - [5466] = 5466, - [5467] = 5420, - [5468] = 5421, + [5454] = 5240, + [5455] = 5403, + [5456] = 5238, + [5457] = 5457, + [5458] = 5413, + [5459] = 5459, + [5460] = 5240, + [5461] = 5413, + [5462] = 5384, + [5463] = 5286, + [5464] = 5449, + [5465] = 5465, + [5466] = 5260, + [5467] = 5356, + [5468] = 5468, [5469] = 5469, - [5470] = 5447, + [5470] = 5470, [5471] = 5471, [5472] = 5472, [5473] = 5473, - [5474] = 5397, - [5475] = 5420, - [5476] = 5476, + [5474] = 5474, + [5475] = 5475, + [5476] = 5468, [5477] = 5477, - [5478] = 5405, - [5479] = 5449, + [5478] = 5478, + [5479] = 5479, [5480] = 5480, [5481] = 5481, - [5482] = 5397, - [5483] = 5449, - [5484] = 5430, + [5482] = 5482, + [5483] = 5478, + [5484] = 5484, [5485] = 5485, - [5486] = 5397, + [5486] = 5470, [5487] = 5487, - [5488] = 5419, + [5488] = 5468, [5489] = 5489, - [5490] = 5471, + [5490] = 5490, [5491] = 5491, [5492] = 5492, - [5493] = 5491, - [5494] = 5403, - [5495] = 5449, - [5496] = 5397, - [5497] = 5402, - [5498] = 5480, - [5499] = 5415, - [5500] = 5420, + [5493] = 5493, + [5494] = 5474, + [5495] = 5477, + [5496] = 5496, + [5497] = 5497, + [5498] = 5498, + [5499] = 5468, + [5500] = 5500, [5501] = 5501, - [5502] = 5502, - [5503] = 5415, - [5504] = 5416, - [5505] = 5419, - [5506] = 5449, - [5507] = 5449, - [5508] = 5397, - [5509] = 5400, - [5510] = 5409, - [5511] = 5430, - [5512] = 5489, - [5513] = 5491, - [5514] = 5428, - [5515] = 5397, - [5516] = 5405, - [5517] = 5420, - [5518] = 5397, - [5519] = 5433, - [5520] = 5449, - [5521] = 5397, - [5522] = 5436, - [5523] = 5397, - [5524] = 5524, - [5525] = 5397, - [5526] = 5405, + [5502] = 5480, + [5503] = 5503, + [5504] = 5504, + [5505] = 5505, + [5506] = 5477, + [5507] = 5507, + [5508] = 5508, + [5509] = 5509, + [5510] = 5510, + [5511] = 5511, + [5512] = 5491, + [5513] = 5493, + [5514] = 5471, + [5515] = 5515, + [5516] = 5516, + [5517] = 5511, + [5518] = 5480, + [5519] = 5477, + [5520] = 5493, + [5521] = 5521, + [5522] = 5492, + [5523] = 5523, + [5524] = 5505, + [5525] = 5525, + [5526] = 5475, [5527] = 5527, - [5528] = 5502, + [5528] = 5528, [5529] = 5529, - [5530] = 5442, - [5531] = 5449, - [5532] = 5532, - [5533] = 5533, - [5534] = 5466, - [5535] = 5405, - [5536] = 5536, - [5537] = 5537, - [5538] = 5538, + [5530] = 5530, + [5531] = 5504, + [5532] = 5496, + [5533] = 5480, + [5534] = 5534, + [5535] = 5535, + [5536] = 5515, + [5537] = 5485, + [5538] = 5511, [5539] = 5539, [5540] = 5540, - [5541] = 5447, - [5542] = 5539, - [5543] = 5449, - [5544] = 5532, - [5545] = 5448, - [5546] = 5546, - [5547] = 5537, - [5548] = 5449, - [5549] = 5549, - [5550] = 5422, - [5551] = 5551, - [5552] = 5491, - [5553] = 5537, - [5554] = 5546, - [5555] = 5441, - [5556] = 5405, - [5557] = 5538, - [5558] = 5532, - [5559] = 5405, - [5560] = 5560, - [5561] = 5444, - [5562] = 5562, - [5563] = 5398, - [5564] = 5532, - [5565] = 5549, - [5566] = 5566, - [5567] = 5396, - [5568] = 5445, - [5569] = 5569, - [5570] = 5422, - [5571] = 5571, - [5572] = 5572, - [5573] = 5573, + [5541] = 5541, + [5542] = 5542, + [5543] = 5470, + [5544] = 5544, + [5545] = 5542, + [5546] = 5477, + [5547] = 5491, + [5548] = 5548, + [5549] = 5493, + [5550] = 5490, + [5551] = 5493, + [5552] = 5552, + [5553] = 5553, + [5554] = 5554, + [5555] = 5535, + [5556] = 5556, + [5557] = 5485, + [5558] = 5558, + [5559] = 5491, + [5560] = 5491, + [5561] = 5493, + [5562] = 5510, + [5563] = 5563, + [5564] = 5554, + [5565] = 5565, + [5566] = 5521, + [5567] = 5567, + [5568] = 5568, + [5569] = 5554, + [5570] = 5563, + [5571] = 5481, + [5572] = 5482, + [5573] = 5487, [5574] = 5574, - [5575] = 5575, - [5576] = 5397, - [5577] = 5577, - [5578] = 5430, - [5579] = 5472, - [5580] = 5455, - [5581] = 5581, - [5582] = 5408, - [5583] = 5581, + [5575] = 5491, + [5576] = 5493, + [5577] = 5542, + [5578] = 5578, + [5579] = 5471, + [5580] = 5474, + [5581] = 5491, + [5582] = 5496, + [5583] = 5528, [5584] = 5584, - [5585] = 5432, - [5586] = 5402, - [5587] = 5587, - [5588] = 5487, - [5589] = 5410, - [5590] = 5449, - [5591] = 5591, - [5592] = 5466, - [5593] = 5549, - [5594] = 5461, - [5595] = 5396, - [5596] = 5596, - [5597] = 5491, - [5598] = 5436, - [5599] = 5417, - [5600] = 5402, - [5601] = 5540, - [5602] = 5602, - [5603] = 5603, - [5604] = 5604, - [5605] = 5400, - [5606] = 5405, - [5607] = 5607, - [5608] = 5608, - [5609] = 5575, - [5610] = 5610, - [5611] = 5396, - [5612] = 498, - [5613] = 5602, - [5614] = 5405, - [5615] = 5430, - [5616] = 5581, - [5617] = 5422, - [5618] = 5539, - [5619] = 5466, - [5620] = 5420, - [5621] = 5621, - [5622] = 5562, - [5623] = 5573, - [5624] = 5577, - [5625] = 5431, - [5626] = 5546, - [5627] = 5397, - [5628] = 5537, - [5629] = 5629, - [5630] = 5532, - [5631] = 5433, - [5632] = 5610, - [5633] = 5473, - [5634] = 5424, - [5635] = 5425, - [5636] = 5636, - [5637] = 5410, - [5638] = 5621, - [5639] = 5539, - [5640] = 5640, - [5641] = 5449, - [5642] = 5642, - [5643] = 5469, - [5644] = 5471, - [5645] = 5398, - [5646] = 5402, - [5647] = 5647, + [5585] = 5585, + [5586] = 5470, + [5587] = 5501, + [5588] = 5491, + [5589] = 5493, + [5590] = 5504, + [5591] = 5490, + [5592] = 5592, + [5593] = 5491, + [5594] = 5542, + [5595] = 5595, + [5596] = 5471, + [5597] = 5597, + [5598] = 5585, + [5599] = 5490, + [5600] = 5556, + [5601] = 5563, + [5602] = 5534, + [5603] = 5554, + [5604] = 5585, + [5605] = 5492, + [5606] = 5480, + [5607] = 5493, + [5608] = 5515, + [5609] = 5493, + [5610] = 5492, + [5611] = 5468, + [5612] = 5469, + [5613] = 5471, + [5614] = 5491, + [5615] = 5615, + [5616] = 5474, + [5617] = 5475, + [5618] = 5511, + [5619] = 5490, + [5620] = 5620, + [5621] = 5477, + [5622] = 5622, + [5623] = 5471, + [5624] = 5480, + [5625] = 5492, + [5626] = 5592, + [5627] = 5469, + [5628] = 5628, + [5629] = 5485, + [5630] = 5470, + [5631] = 5471, + [5632] = 5468, + [5633] = 5633, + [5634] = 5634, + [5635] = 5509, + [5636] = 5563, + [5637] = 5542, + [5638] = 5634, + [5639] = 5501, + [5640] = 5508, + [5641] = 5477, + [5642] = 5493, + [5643] = 5474, + [5644] = 5480, + [5645] = 5645, + [5646] = 5646, + [5647] = 5493, [5648] = 5648, - [5649] = 5549, - [5650] = 5396, - [5651] = 5400, - [5652] = 5491, - [5653] = 5430, - [5654] = 5539, - [5655] = 5537, - [5656] = 5405, - [5657] = 5549, - [5658] = 5485, - [5659] = 5473, - [5660] = 5608, - [5661] = 5420, - [5662] = 5422, - [5663] = 5607, - [5664] = 5537, - [5665] = 5551, - [5666] = 5445, - [5667] = 5397, - [5668] = 5439, - [5669] = 5455, - [5670] = 5402, - [5671] = 5491, - [5672] = 5532, - [5673] = 5476, - [5674] = 5405, - [5675] = 5675, - [5676] = 5676, - [5677] = 5537, - [5678] = 5532, - [5679] = 5449, - [5680] = 5397, - [5681] = 4969, - [5682] = 5426, - [5683] = 5071, - [5684] = 5410, - [5685] = 5449, - [5686] = 5397, - [5687] = 5397, - [5688] = 5688, - [5689] = 5549, - [5690] = 5604, - [5691] = 5603, - [5692] = 5608, - [5693] = 5693, - [5694] = 5694, - [5695] = 5431, - [5696] = 5422, - [5697] = 5574, - [5698] = 5491, - [5699] = 5448, - [5700] = 5396, - [5701] = 5416, - [5702] = 5549, - [5703] = 5604, - [5704] = 5480, - [5705] = 5604, - [5706] = 5604, - [5707] = 5604, - [5708] = 5604, - [5709] = 5640, - [5710] = 5477, - [5711] = 5711, - [5712] = 5711, - [5713] = 5713, - [5714] = 5398, - [5715] = 5422, - [5716] = 5491, - [5717] = 5717, - [5718] = 5718, - [5719] = 5398, - [5720] = 5693, - [5721] = 5485, - [5722] = 5688, - [5723] = 5713, - [5724] = 5551, - [5725] = 5427, - [5726] = 5584, - [5727] = 5636, - [5728] = 5402, - [5729] = 5428, - [5730] = 5461, + [5649] = 5493, + [5650] = 5475, + [5651] = 5539, + [5652] = 5652, + [5653] = 5521, + [5654] = 5548, + [5655] = 5655, + [5656] = 5656, + [5657] = 5491, + [5658] = 5658, + [5659] = 5659, + [5660] = 5592, + [5661] = 5523, + [5662] = 5505, + [5663] = 5480, + [5664] = 5470, + [5665] = 5665, + [5666] = 5201, + [5667] = 5667, + [5668] = 5529, + [5669] = 5669, + [5670] = 5670, + [5671] = 5671, + [5672] = 5672, + [5673] = 5481, + [5674] = 5471, + [5675] = 5490, + [5676] = 5511, + [5677] = 5500, + [5678] = 5530, + [5679] = 5679, + [5680] = 5558, + [5681] = 5681, + [5682] = 5679, + [5683] = 5683, + [5684] = 5672, + [5685] = 5685, + [5686] = 5585, + [5687] = 5482, + [5688] = 5492, + [5689] = 5491, + [5690] = 5475, + [5691] = 5633, + [5692] = 5692, + [5693] = 5507, + [5694] = 5656, + [5695] = 5563, + [5696] = 5493, + [5697] = 5534, + [5698] = 5698, + [5699] = 5480, + [5700] = 5491, + [5701] = 5652, + [5702] = 5468, + [5703] = 5703, + [5704] = 5497, + [5705] = 5525, + [5706] = 5706, + [5707] = 5707, + [5708] = 5487, + [5709] = 5528, + [5710] = 5707, + [5711] = 5485, + [5712] = 5539, + [5713] = 5528, + [5714] = 5527, + [5715] = 5534, + [5716] = 5554, + [5717] = 5470, + [5718] = 5471, + [5719] = 5469, + [5720] = 5474, + [5721] = 5491, + [5722] = 5541, + [5723] = 5723, + [5724] = 5542, + [5725] = 5544, + [5726] = 5671, + [5727] = 5479, + [5728] = 5542, + [5729] = 5729, + [5730] = 5578, [5731] = 5731, - [5732] = 5403, - [5733] = 5604, - [5734] = 5537, - [5735] = 5532, - [5736] = 5449, - [5737] = 5449, - [5738] = 5731, - [5739] = 5432, - [5740] = 5476, - [5741] = 5449, - [5742] = 5569, - [5743] = 5449, - [5744] = 5441, - [5745] = 5487, - [5746] = 5693, - [5747] = 5584, - [5748] = 5549, - [5749] = 5449, - [5750] = 5449, - [5751] = 5397, - [5752] = 5398, - [5753] = 5546, - [5754] = 5718, + [5732] = 5527, + [5733] = 5733, + [5734] = 5585, + [5735] = 5490, + [5736] = 5648, + [5737] = 5491, + [5738] = 5698, + [5739] = 5492, + [5740] = 5542, + [5741] = 5741, + [5742] = 5493, + [5743] = 5669, + [5744] = 5469, + [5745] = 5475, + [5746] = 5558, + [5747] = 5471, + [5748] = 5544, + [5749] = 5585, + [5750] = 5750, + [5751] = 5491, + [5752] = 5493, + [5753] = 5474, + [5754] = 5475, + [5755] = 5474, + [5756] = 5670, + [5757] = 5491, + [5758] = 5493, + [5759] = 5574, + [5760] = 517, + [5761] = 5485, + [5762] = 5672, + [5763] = 5470, + [5764] = 5468, + [5765] = 5585, + [5766] = 5471, + [5767] = 5656, + [5768] = 5548, + [5769] = 5769, + [5770] = 5658, + [5771] = 5491, + [5772] = 5490, + [5773] = 5553, + [5774] = 5477, + [5775] = 5672, + [5776] = 5723, + [5777] = 5672, + [5778] = 5672, + [5779] = 5672, + [5780] = 5672, + [5781] = 5659, + [5782] = 5473, + [5783] = 5646, + [5784] = 5541, + [5785] = 5785, + [5786] = 5553, + [5787] = 5787, + [5788] = 5480, + [5789] = 5698, + [5790] = 5503, + [5791] = 5475, + [5792] = 5706, + [5793] = 5493, + [5794] = 5529, + [5795] = 5471, + [5796] = 516, + [5797] = 5552, + [5798] = 5683, + [5799] = 5799, + [5800] = 5491, + [5801] = 5801, + [5802] = 5535, + [5803] = 5628, + [5804] = 5492, + [5805] = 5484, + [5806] = 5468, + [5807] = 5480, + [5808] = 5741, + [5809] = 5485, + [5810] = 4820, + [5811] = 5785, + [5812] = 5812, + [5813] = 5493, + [5814] = 5523, + [5815] = 5729, + [5816] = 5472, + [5817] = 5692, + [5818] = 5706, + [5819] = 5683, + [5820] = 5485, + [5821] = 5510, + [5822] = 5491, + [5823] = 5493, + [5824] = 5824, + [5825] = 5698, + [5826] = 5585, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -10811,7 +11002,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(200); + if (lookahead == 'e') ADVANCE(199); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || @@ -11153,6 +11344,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); @@ -11179,7 +11371,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); @@ -11805,12 +11996,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 196: 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 197: 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 198: @@ -11992,1129 +12183,1133 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { case 8: if (lookahead == 'i') ADVANCE(38); if (lookahead == 'r') ADVANCE(39); + if (lookahead == 'y') ADVANCE(40); END_STATE(); case 9: ADVANCE_MAP( - 'a', 40, - 'd', 41, - 'h', 42, - 'i', 43, - 'l', 44, - 'o', 45, - 'p', 46, - 't', 47, + 'a', 41, + 'd', 42, + 'h', 43, + 'i', 44, + 'l', 45, + 'o', 46, + 'p', 47, + 't', 48, ); END_STATE(); case 10: - if (lookahead == 'e') ADVANCE(48); - if (lookahead == 'o') ADVANCE(49); + if (lookahead == 'e') ADVANCE(49); + if (lookahead == 'o') ADVANCE(50); END_STATE(); case 11: - if (lookahead == 'l') ADVANCE(50); - if (lookahead == 'n') ADVANCE(51); - if (lookahead == 'x') ADVANCE(52); + if (lookahead == 'l') ADVANCE(51); + if (lookahead == 'n') ADVANCE(52); + if (lookahead == 'x') ADVANCE(53); END_STATE(); case 12: - if (lookahead == 'i') ADVANCE(53); - if (lookahead == 'o') ADVANCE(54); - if (lookahead == 'r') ADVANCE(55); - if (lookahead == 'u') ADVANCE(56); + if (lookahead == 'i') ADVANCE(54); + if (lookahead == 'o') ADVANCE(55); + if (lookahead == 'r') ADVANCE(56); + if (lookahead == 'u') ADVANCE(57); END_STATE(); case 13: - if (lookahead == 'i') ADVANCE(57); - if (lookahead == 'l') ADVANCE(58); + if (lookahead == 'i') ADVANCE(58); + if (lookahead == 'l') ADVANCE(59); END_STATE(); case 14: - if (lookahead == 'f') ADVANCE(59); - if (lookahead == 'm') ADVANCE(60); - if (lookahead == 'n') ADVANCE(61); - if (lookahead == 's') ADVANCE(62); + if (lookahead == 'f') ADVANCE(60); + if (lookahead == 'm') ADVANCE(61); + if (lookahead == 'n') ADVANCE(62); + if (lookahead == 's') ADVANCE(63); END_STATE(); case 15: - if (lookahead == 'a') ADVANCE(63); - if (lookahead == 'o') ADVANCE(64); + if (lookahead == 'a') ADVANCE(64); + if (lookahead == 'o') ADVANCE(65); END_STATE(); case 16: - if (lookahead == 'a') ADVANCE(65); + if (lookahead == 'a') ADVANCE(66); END_STATE(); case 17: - if (lookahead == 'a') ADVANCE(66); - if (lookahead == 'e') ADVANCE(67); - if (lookahead == 'o') ADVANCE(68); + if (lookahead == 'a') ADVANCE(67); + if (lookahead == 'e') ADVANCE(68); + if (lookahead == 'o') ADVANCE(69); END_STATE(); case 18: - if (lookahead == 'b') ADVANCE(69); - if (lookahead == 'p') ADVANCE(70); - if (lookahead == 'r') ADVANCE(71); + if (lookahead == 'b') ADVANCE(70); + if (lookahead == 'p') ADVANCE(71); + if (lookahead == 'r') ADVANCE(72); END_STATE(); case 19: - if (lookahead == 'a') ADVANCE(72); - if (lookahead == 'r') ADVANCE(73); - if (lookahead == 'u') ADVANCE(74); + if (lookahead == 'a') ADVANCE(73); + if (lookahead == 'r') ADVANCE(74); + if (lookahead == 'u') ADVANCE(75); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(75); - if (lookahead == 'e') ADVANCE(76); + if (lookahead == 'a') ADVANCE(76); + if (lookahead == 'e') ADVANCE(77); END_STATE(); case 21: - if (lookahead == 'h') ADVANCE(77); - if (lookahead == 'i') ADVANCE(78); - if (lookahead == 't') ADVANCE(79); + if (lookahead == 'h') ADVANCE(78); + if (lookahead == 'i') ADVANCE(79); + if (lookahead == 't') ADVANCE(80); END_STATE(); case 22: - if (lookahead == 'r') ADVANCE(80); - if (lookahead == 'y') ADVANCE(81); + if (lookahead == 'r') ADVANCE(81); + if (lookahead == 'y') ADVANCE(82); END_STATE(); case 23: - if (lookahead == 'n') ADVANCE(82); + if (lookahead == 'n') ADVANCE(83); END_STATE(); case 24: - if (lookahead == 'o') ADVANCE(83); + if (lookahead == 'o') ADVANCE(84); END_STATE(); case 25: - if (lookahead == 'h') ADVANCE(84); - if (lookahead == 'i') ADVANCE(85); + if (lookahead == 'h') ADVANCE(85); + if (lookahead == 'i') ADVANCE(86); END_STATE(); case 26: - if (lookahead == 'o') ADVANCE(86); + if (lookahead == 'o') ADVANCE(87); END_STATE(); case 27: - if (lookahead == 'i') ADVANCE(87); + if (lookahead == 'i') ADVANCE(88); END_STATE(); case 28: - if (lookahead == 'F') ADVANCE(88); + if (lookahead == 'F') ADVANCE(89); END_STATE(); case 29: - if (lookahead == 'l') ADVANCE(89); + if (lookahead == 'l') ADVANCE(90); END_STATE(); case 30: - if (lookahead == 'n') ADVANCE(90); + if (lookahead == 'n') ADVANCE(91); END_STATE(); case 31: - if (lookahead == 'T') ADVANCE(91); + if (lookahead == 'T') ADVANCE(92); END_STATE(); case 32: - if (lookahead == 'u') ADVANCE(92); + if (lookahead == 'u') ADVANCE(93); END_STATE(); case 33: - if (lookahead == 'f') ADVANCE(93); - if (lookahead == 's') ADVANCE(94); + if (lookahead == 'f') ADVANCE(94); + if (lookahead == 's') ADVANCE(95); END_STATE(); case 34: - if (lookahead == 'd') ADVANCE(95); + if (lookahead == 'd') ADVANCE(96); END_STATE(); case 35: - if (lookahead == 'i') ADVANCE(96); + if (lookahead == 'i') ADVANCE(97); END_STATE(); case 36: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 's') ADVANCE(97); - if (lookahead == 'y') ADVANCE(98); + if (lookahead == 's') ADVANCE(98); + if (lookahead == 'y') ADVANCE(99); END_STATE(); case 37: - if (lookahead == 'a') ADVANCE(99); + if (lookahead == 'a') ADVANCE(100); END_STATE(); case 38: - if (lookahead == 't') ADVANCE(100); + if (lookahead == 't') ADVANCE(101); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 40: - if (lookahead == 's') ADVANCE(102); + ACCEPT_TOKEN(anon_sym_by); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(103); + if (lookahead == 's') ADVANCE(103); END_STATE(); case 42: - if (lookahead == 'a') ADVANCE(104); + if (lookahead == 'e') ADVANCE(104); END_STATE(); case 43: - if (lookahead == 'm') ADVANCE(105); + if (lookahead == 'a') ADVANCE(105); END_STATE(); case 44: - if (lookahead == 'a') ADVANCE(106); + if (lookahead == 'm') ADVANCE(106); END_STATE(); case 45: - if (lookahead == '_') ADVANCE(107); - if (lookahead == 'm') ADVANCE(108); - if (lookahead == 'n') ADVANCE(109); + if (lookahead == 'a') ADVANCE(107); END_STATE(); case 46: - if (lookahead == 'd') ADVANCE(110); - if (lookahead == 'p') ADVANCE(111); + if (lookahead == '_') ADVANCE(108); + if (lookahead == 'm') ADVANCE(109); + if (lookahead == 'n') ADVANCE(110); END_STATE(); case 47: - if (lookahead == 'y') ADVANCE(112); + if (lookahead == 'd') ADVANCE(111); + if (lookahead == 'p') ADVANCE(112); END_STATE(); case 48: - if (lookahead == 'f') ADVANCE(113); - if (lookahead == 'l') ADVANCE(114); + if (lookahead == 'y') ADVANCE(113); END_STATE(); case 49: - if (lookahead == 'u') ADVANCE(115); + if (lookahead == 'f') ADVANCE(114); + if (lookahead == 'l') ADVANCE(115); END_STATE(); case 50: - if (lookahead == 'i') ADVANCE(116); - if (lookahead == 's') ADVANCE(117); + if (lookahead == 'u') ADVANCE(116); END_STATE(); case 51: - if (lookahead == 'u') ADVANCE(118); + if (lookahead == 'i') ADVANCE(117); + if (lookahead == 's') ADVANCE(118); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(119); - if (lookahead == 't') ADVANCE(120); + if (lookahead == 'u') ADVANCE(119); END_STATE(); case 53: - if (lookahead == 'n') ADVANCE(121); + if (lookahead == 'e') ADVANCE(120); + if (lookahead == 't') ADVANCE(121); END_STATE(); case 54: - if (lookahead == 'r') ADVANCE(122); + if (lookahead == 'n') ADVANCE(122); END_STATE(); case 55: - if (lookahead == 'o') ADVANCE(123); + if (lookahead == 'r') ADVANCE(123); END_STATE(); case 56: - if (lookahead == 's') ADVANCE(124); + if (lookahead == 'o') ADVANCE(124); END_STATE(); case 57: - if (lookahead == 'l') ADVANCE(125); + if (lookahead == 's') ADVANCE(125); END_STATE(); case 58: - if (lookahead == 'o') ADVANCE(126); + if (lookahead == 'l') ADVANCE(126); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'o') ADVANCE(127); END_STATE(); case 60: - if (lookahead == 'p') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'c') ADVANCE(128); - if (lookahead == 'l') ADVANCE(129); - if (lookahead == 't') ADVANCE(130); + if (lookahead == 'p') ADVANCE(128); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_is); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'l') ADVANCE(130); + if (lookahead == 't') ADVANCE(131); END_STATE(); case 63: - if (lookahead == 'm') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_is); END_STATE(); case 64: - if (lookahead == 'n') ADVANCE(132); + if (lookahead == 'm') ADVANCE(132); END_STATE(); case 65: - if (lookahead == 't') ADVANCE(133); + if (lookahead == 'n') ADVANCE(133); END_STATE(); case 66: - if (lookahead == 'm') ADVANCE(134); + if (lookahead == 't') ADVANCE(134); END_STATE(); case 67: - if (lookahead == 'w') ADVANCE(135); + if (lookahead == 'm') ADVANCE(135); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(136); - if (lookahead == 'g') ADVANCE(137); - if (lookahead == 'n') ADVANCE(138); - if (lookahead == 't') ADVANCE(139); + if (lookahead == 'w') ADVANCE(136); END_STATE(); case 69: - if (lookahead == 'j') ADVANCE(140); + if (lookahead == 'e') ADVANCE(137); + if (lookahead == 'g') ADVANCE(138); + if (lookahead == 'n') ADVANCE(139); + if (lookahead == 't') ADVANCE(140); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(141); + if (lookahead == 'j') ADVANCE(141); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '_') ADVANCE(142); + if (lookahead == 'e') ADVANCE(142); END_STATE(); case 72: - if (lookahead == 'c') ADVANCE(143); - if (lookahead == 's') ADVANCE(144); + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '_') ADVANCE(143); END_STATE(); case 73: - if (lookahead == 'i') ADVANCE(145); - if (lookahead == 'o') ADVANCE(146); + if (lookahead == 'c') ADVANCE(144); + if (lookahead == 's') ADVANCE(145); END_STATE(); case 74: - if (lookahead == 'b') ADVANCE(147); + if (lookahead == 'i') ADVANCE(146); + if (lookahead == 'o') ADVANCE(147); END_STATE(); case 75: - if (lookahead == 'i') ADVANCE(148); + if (lookahead == 'b') ADVANCE(148); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(149); - if (lookahead == 't') ADVANCE(150); + if (lookahead == 'i') ADVANCE(149); END_STATE(); case 77: - if (lookahead == 'o') ADVANCE(151); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 't') ADVANCE(151); END_STATE(); case 78: - if (lookahead == 'g') ADVANCE(152); - if (lookahead == 'z') ADVANCE(153); + if (lookahead == 'o') ADVANCE(152); END_STATE(); case 79: - if (lookahead == 'r') ADVANCE(154); + if (lookahead == 'g') ADVANCE(153); + if (lookahead == 'z') ADVANCE(154); END_STATE(); case 80: - if (lookahead == 'y') ADVANCE(155); + if (lookahead == 'r') ADVANCE(155); END_STATE(); case 81: - if (lookahead == 'p') ADVANCE(156); + if (lookahead == 'y') ADVANCE(156); END_STATE(); case 82: - if (lookahead == 'i') ADVANCE(157); - if (lookahead == 's') ADVANCE(158); + if (lookahead == 'p') ADVANCE(157); END_STATE(); case 83: - if (lookahead == 'l') ADVANCE(159); + if (lookahead == 'i') ADVANCE(158); + if (lookahead == 's') ADVANCE(159); END_STATE(); case 84: - if (lookahead == 'i') ADVANCE(160); + if (lookahead == 'l') ADVANCE(160); END_STATE(); case 85: - if (lookahead == 't') ADVANCE(161); + if (lookahead == 'i') ADVANCE(161); END_STATE(); case 86: - if (lookahead == 'r') ADVANCE(162); + if (lookahead == 't') ADVANCE(162); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(163); + if (lookahead == 'r') ADVANCE(163); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_DEF); + if (lookahead == 'e') ADVANCE(164); END_STATE(); case 89: - if (lookahead == 's') ADVANCE(164); + ACCEPT_TOKEN(anon_sym_DEF); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(165); + if (lookahead == 's') ADVANCE(165); END_STATE(); case 91: - if (lookahead == 'H') ADVANCE(166); + if (lookahead == 'e') ADVANCE(166); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(167); + if (lookahead == 'H') ADVANCE(167); END_STATE(); case 93: - if (lookahead == 'u') ADVANCE(168); + if (lookahead == 'e') ADVANCE(168); END_STATE(); case 94: - if (lookahead == 't') ADVANCE(169); + if (lookahead == 'u') ADVANCE(169); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '_') ADVANCE(170); + if (lookahead == 't') ADVANCE(170); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_api); + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '_') ADVANCE(171); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_api); END_STATE(); case 98: - if (lookahead == 'n') ADVANCE(172); + if (lookahead == 'e') ADVANCE(172); END_STATE(); case 99: - if (lookahead == 'i') ADVANCE(173); + if (lookahead == 'n') ADVANCE(173); END_STATE(); case 100: - if (lookahead == 'a') ADVANCE(174); - if (lookahead == 'o') ADVANCE(175); + if (lookahead == 'i') ADVANCE(174); END_STATE(); case 101: - if (lookahead == 'a') ADVANCE(176); + if (lookahead == 'a') ADVANCE(175); + if (lookahead == 'o') ADVANCE(176); END_STATE(); case 102: - if (lookahead == 'e') ADVANCE(177); + if (lookahead == 'a') ADVANCE(177); END_STATE(); case 103: - if (lookahead == 'f') ADVANCE(178); + if (lookahead == 'e') ADVANCE(178); END_STATE(); case 104: - if (lookahead == 'r') ADVANCE(179); + if (lookahead == 'f') ADVANCE(179); END_STATE(); case 105: - if (lookahead == 'p') ADVANCE(180); + if (lookahead == 'r') ADVANCE(180); END_STATE(); case 106: - if (lookahead == 's') ADVANCE(181); + if (lookahead == 'p') ADVANCE(181); END_STATE(); case 107: - if (lookahead == 'a') ADVANCE(182); + if (lookahead == 's') ADVANCE(182); END_STATE(); case 108: - if (lookahead == 'p') ADVANCE(183); + if (lookahead == 'a') ADVANCE(183); END_STATE(); case 109: - if (lookahead == 's') ADVANCE(184); - if (lookahead == 't') ADVANCE(185); + if (lookahead == 'p') ADVANCE(184); END_STATE(); case 110: - if (lookahead == 'e') ADVANCE(186); + if (lookahead == 's') ADVANCE(185); + if (lookahead == 't') ADVANCE(186); END_STATE(); case 111: - if (lookahead == 'c') ADVANCE(187); + if (lookahead == 'e') ADVANCE(187); END_STATE(); case 112: - if (lookahead == 'p') ADVANCE(188); + if (lookahead == 'c') ADVANCE(188); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_def); + if (lookahead == 'p') ADVANCE(189); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_del); - if (lookahead == 'e') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 115: - if (lookahead == 'b') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_del); + if (lookahead == 'e') ADVANCE(190); END_STATE(); case 116: - if (lookahead == 'f') ADVANCE(191); + if (lookahead == 'b') ADVANCE(191); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(192); + if (lookahead == 'f') ADVANCE(192); END_STATE(); case 118: - if (lookahead == 'm') ADVANCE(193); + if (lookahead == 'e') ADVANCE(193); END_STATE(); case 119: - if (lookahead == 'c') ADVANCE(194); + if (lookahead == 'm') ADVANCE(194); END_STATE(); case 120: - if (lookahead == 'e') ADVANCE(195); + if (lookahead == 'c') ADVANCE(195); END_STATE(); case 121: - if (lookahead == 'a') ADVANCE(196); + if (lookahead == 'e') ADVANCE(196); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'a') ADVANCE(197); END_STATE(); case 123: - if (lookahead == 'm') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 124: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'm') ADVANCE(198); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_gil); + if (lookahead == 'e') ADVANCE(199); END_STATE(); case 126: - if (lookahead == 'b') ADVANCE(199); + ACCEPT_TOKEN(anon_sym_gil); END_STATE(); case 127: - if (lookahead == 'o') ADVANCE(200); + if (lookahead == 'b') ADVANCE(200); END_STATE(); case 128: - if (lookahead == 'l') ADVANCE(201); + if (lookahead == 'o') ADVANCE(201); END_STATE(); case 129: - if (lookahead == 'i') ADVANCE(202); + if (lookahead == 'l') ADVANCE(202); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_int); + if (lookahead == 'i') ADVANCE(203); END_STATE(); case 131: - if (lookahead == 'b') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_int); END_STATE(); case 132: - if (lookahead == 'g') ADVANCE(204); + if (lookahead == 'b') ADVANCE(204); END_STATE(); case 133: - if (lookahead == 'c') ADVANCE(205); + if (lookahead == 'g') ADVANCE(205); END_STATE(); case 134: - if (lookahead == 'e') ADVANCE(206); + if (lookahead == 'c') ADVANCE(206); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 'e') ADVANCE(207); END_STATE(); case 136: - if (lookahead == 'x') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 137: - if (lookahead == 'i') ADVANCE(208); + if (lookahead == 'x') ADVANCE(208); END_STATE(); case 138: - if (lookahead == 'l') ADVANCE(209); + if (lookahead == 'i') ADVANCE(209); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '_') ADVANCE(210); + if (lookahead == 'l') ADVANCE(210); END_STATE(); case 140: - if (lookahead == 'e') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == '_') ADVANCE(211); END_STATE(); case 141: - if (lookahead == 'r') ADVANCE(212); + if (lookahead == 'e') ADVANCE(212); END_STATE(); case 142: - if (lookahead == 'e') ADVANCE(213); + if (lookahead == 'r') ADVANCE(213); END_STATE(); case 143: - if (lookahead == 'k') ADVANCE(214); + if (lookahead == 'e') ADVANCE(214); END_STATE(); case 144: - if (lookahead == 's') ADVANCE(215); + if (lookahead == 'k') ADVANCE(215); END_STATE(); case 145: - if (lookahead == 'n') ADVANCE(216); + if (lookahead == 's') ADVANCE(216); END_STATE(); case 146: - if (lookahead == 'p') ADVANCE(217); + if (lookahead == 'n') ADVANCE(217); END_STATE(); case 147: - if (lookahead == 'l') ADVANCE(218); + if (lookahead == 'p') ADVANCE(218); END_STATE(); case 148: - if (lookahead == 's') ADVANCE(219); + if (lookahead == 'l') ADVANCE(219); END_STATE(); case 149: - if (lookahead == 'd') ADVANCE(220); + if (lookahead == 's') ADVANCE(220); END_STATE(); case 150: - if (lookahead == 'u') ADVANCE(221); + if (lookahead == 'd') ADVANCE(221); END_STATE(); case 151: - if (lookahead == 'r') ADVANCE(222); + if (lookahead == 'u') ADVANCE(222); END_STATE(); case 152: - if (lookahead == 'n') ADVANCE(223); + if (lookahead == 'r') ADVANCE(223); END_STATE(); case 153: - if (lookahead == 'e') ADVANCE(224); + if (lookahead == 'n') ADVANCE(224); END_STATE(); case 154: - if (lookahead == 'u') ADVANCE(225); + if (lookahead == 'e') ADVANCE(225); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'u') ADVANCE(226); END_STATE(); case 156: - if (lookahead == 'e') ADVANCE(226); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 157: - if (lookahead == 'o') ADVANCE(227); + if (lookahead == 'e') ADVANCE(227); END_STATE(); case 158: - if (lookahead == 'i') ADVANCE(228); + if (lookahead == 'o') ADVANCE(228); END_STATE(); case 159: - if (lookahead == 'a') ADVANCE(229); + if (lookahead == 'i') ADVANCE(229); END_STATE(); case 160: - if (lookahead == 'l') ADVANCE(230); + if (lookahead == 'a') ADVANCE(230); END_STATE(); case 161: - if (lookahead == 'h') ADVANCE(231); + if (lookahead == 'l') ADVANCE(231); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '_') ADVANCE(232); + if (lookahead == 'h') ADVANCE(232); END_STATE(); case 163: - if (lookahead == 'l') ADVANCE(233); + ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '_') ADVANCE(233); END_STATE(); case 164: - if (lookahead == 'e') ADVANCE(234); + if (lookahead == 'l') ADVANCE(234); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_None); + if (lookahead == 'e') ADVANCE(235); END_STATE(); case 166: - if (lookahead == 'O') ADVANCE(235); + ACCEPT_TOKEN(anon_sym_None); END_STATE(); case 167: - ACCEPT_TOKEN(sym_true); + if (lookahead == 'O') ADVANCE(236); END_STATE(); case 168: - if (lookahead == 't') ADVANCE(236); + ACCEPT_TOKEN(sym_true); END_STATE(); case 169: - if (lookahead == 'd') ADVANCE(237); + if (lookahead == 't') ADVANCE(237); END_STATE(); case 170: - if (lookahead == 'e') ADVANCE(238); + if (lookahead == 'd') ADVANCE(238); END_STATE(); case 171: - if (lookahead == 'r') ADVANCE(239); + if (lookahead == 'e') ADVANCE(239); END_STATE(); case 172: - if (lookahead == 'c') ADVANCE(240); + if (lookahead == 'r') ADVANCE(240); END_STATE(); case 173: - if (lookahead == 't') ADVANCE(241); + if (lookahead == 'c') ADVANCE(241); END_STATE(); case 174: - if (lookahead == 'n') ADVANCE(242); + if (lookahead == 't') ADVANCE(242); END_STATE(); case 175: - if (lookahead == 'r') ADVANCE(243); + if (lookahead == 'n') ADVANCE(243); END_STATE(); case 176: - if (lookahead == 'k') ADVANCE(244); + if (lookahead == 'r') ADVANCE(244); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'k') ADVANCE(245); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_cdef); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_char); + ACCEPT_TOKEN(anon_sym_cdef); END_STATE(); case 180: - if (lookahead == 'o') ADVANCE(245); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 181: - if (lookahead == 's') ADVANCE(246); + if (lookahead == 'o') ADVANCE(246); END_STATE(); case 182: - if (lookahead == 'w') ADVANCE(247); + if (lookahead == 's') ADVANCE(247); END_STATE(); case 183: - if (lookahead == 'l') ADVANCE(248); + if (lookahead == 'w') ADVANCE(248); END_STATE(); case 184: - if (lookahead == 't') ADVANCE(249); + if (lookahead == 'l') ADVANCE(249); END_STATE(); case 185: - if (lookahead == 'i') ADVANCE(250); + if (lookahead == 't') ADVANCE(250); END_STATE(); case 186: - if (lookahead == 'f') ADVANCE(251); + if (lookahead == 'i') ADVANCE(251); END_STATE(); case 187: - if (lookahead == 'l') ADVANCE(252); + if (lookahead == 'f') ADVANCE(252); END_STATE(); case 188: - if (lookahead == 'e') ADVANCE(253); + if (lookahead == 'l') ADVANCE(253); END_STATE(); case 189: - if (lookahead == 't') ADVANCE(254); + if (lookahead == 'e') ADVANCE(254); END_STATE(); case 190: - if (lookahead == 'l') ADVANCE(255); + if (lookahead == 't') ADVANCE(255); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == 'l') ADVANCE(256); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_elif); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_enum); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_exec); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 195: - if (lookahead == 'r') ADVANCE(256); + ACCEPT_TOKEN(anon_sym_exec); END_STATE(); case 196: - if (lookahead == 'l') ADVANCE(257); + if (lookahead == 'r') ADVANCE(257); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_from); + if (lookahead == 'l') ADVANCE(258); END_STATE(); case 198: - if (lookahead == 'd') ADVANCE(258); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 199: - if (lookahead == 'a') ADVANCE(259); + if (lookahead == 'd') ADVANCE(259); END_STATE(); case 200: - if (lookahead == 'r') ADVANCE(260); + if (lookahead == 'a') ADVANCE(260); END_STATE(); case 201: - if (lookahead == 'u') ADVANCE(261); + if (lookahead == 'r') ADVANCE(261); END_STATE(); case 202: - if (lookahead == 'n') ADVANCE(262); + if (lookahead == 'u') ADVANCE(262); END_STATE(); case 203: - if (lookahead == 'd') ADVANCE(263); + if (lookahead == 'n') ADVANCE(263); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == 'd') ADVANCE(264); END_STATE(); case 205: - if (lookahead == 'h') ADVANCE(264); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 206: - if (lookahead == 's') ADVANCE(265); + if (lookahead == 'h') ADVANCE(265); END_STATE(); case 207: - if (lookahead == 'c') ADVANCE(266); + if (lookahead == 's') ADVANCE(266); END_STATE(); case 208: - if (lookahead == 'l') ADVANCE(267); + if (lookahead == 'c') ADVANCE(267); END_STATE(); case 209: - if (lookahead == 'o') ADVANCE(268); + if (lookahead == 'l') ADVANCE(268); END_STATE(); case 210: - if (lookahead == 'e') ADVANCE(269); + if (lookahead == 'o') ADVANCE(269); END_STATE(); case 211: - if (lookahead == 'c') ADVANCE(270); + if (lookahead == 'e') ADVANCE(270); END_STATE(); case 212: - if (lookahead == 'a') ADVANCE(271); + if (lookahead == 'c') ADVANCE(271); END_STATE(); case 213: - if (lookahead == 'q') ADVANCE(272); + if (lookahead == 'a') ADVANCE(272); END_STATE(); case 214: - if (lookahead == 'e') ADVANCE(273); + if (lookahead == 'q') ADVANCE(273); END_STATE(); case 215: - ACCEPT_TOKEN(anon_sym_pass); + if (lookahead == 'e') ADVANCE(274); END_STATE(); case 216: - if (lookahead == 't') ADVANCE(274); + ACCEPT_TOKEN(anon_sym_pass); END_STATE(); case 217: - if (lookahead == 'e') ADVANCE(275); + if (lookahead == 't') ADVANCE(275); END_STATE(); case 218: - if (lookahead == 'i') ADVANCE(276); + if (lookahead == 'e') ADVANCE(276); END_STATE(); case 219: - if (lookahead == 'e') ADVANCE(277); + if (lookahead == 'i') ADVANCE(277); END_STATE(); case 220: - if (lookahead == 'o') ADVANCE(278); + if (lookahead == 'e') ADVANCE(278); END_STATE(); case 221: - if (lookahead == 'r') ADVANCE(279); + if (lookahead == 'o') ADVANCE(279); END_STATE(); case 222: - if (lookahead == 't') ADVANCE(280); + if (lookahead == 'r') ADVANCE(280); END_STATE(); case 223: - if (lookahead == 'e') ADVANCE(281); + if (lookahead == 't') ADVANCE(281); END_STATE(); case 224: - if (lookahead == 'o') ADVANCE(282); + if (lookahead == 'e') ADVANCE(282); END_STATE(); case 225: - if (lookahead == 'c') ADVANCE(283); + if (lookahead == 'o') ADVANCE(283); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'c') ADVANCE(284); END_STATE(); case 227: - if (lookahead == 'n') ADVANCE(284); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 228: - if (lookahead == 'g') ADVANCE(285); + if (lookahead == 'n') ADVANCE(285); END_STATE(); case 229: - if (lookahead == 't') ADVANCE(286); + if (lookahead == 'g') ADVANCE(286); END_STATE(); case 230: - if (lookahead == 'e') ADVANCE(287); + if (lookahead == 't') ADVANCE(287); END_STATE(); case 231: - ACCEPT_TOKEN(anon_sym_with); + if (lookahead == 'e') ADVANCE(288); END_STATE(); case 232: - if (lookahead == 'e') ADVANCE(288); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 233: - if (lookahead == 'd') ADVANCE(289); + if (lookahead == 'e') ADVANCE(289); END_STATE(); case 234: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'd') ADVANCE(290); END_STATE(); case 235: - if (lookahead == 'N') ADVANCE(290); + ACCEPT_TOKEN(sym_false); END_STATE(); case 236: - if (lookahead == 'u') ADVANCE(291); + if (lookahead == 'N') ADVANCE(291); END_STATE(); case 237: - if (lookahead == 'c') ADVANCE(292); + if (lookahead == 'u') ADVANCE(292); END_STATE(); case 238: - if (lookahead == 'q') ADVANCE(293); + if (lookahead == 'c') ADVANCE(293); END_STATE(); case 239: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 'q') ADVANCE(294); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 't') ADVANCE(295); END_STATE(); case 241: - ACCEPT_TOKEN(anon_sym_await); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 242: - if (lookahead == 'd') ADVANCE(295); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 243: - ACCEPT_TOKEN(anon_sym_bitor); + if (lookahead == 'd') ADVANCE(296); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_bitor); END_STATE(); case 245: - if (lookahead == 'r') ADVANCE(296); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 246: - ACCEPT_TOKEN(anon_sym_class); + if (lookahead == 'r') ADVANCE(297); END_STATE(); case 247: - if (lookahead == 'a') ADVANCE(297); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_compl); - if (lookahead == 'e') ADVANCE(298); + if (lookahead == 'a') ADVANCE(298); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_compl); + if (lookahead == 'e') ADVANCE(299); END_STATE(); case 250: - if (lookahead == 'n') ADVANCE(299); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 251: - ACCEPT_TOKEN(anon_sym_cpdef); + if (lookahead == 'n') ADVANCE(300); END_STATE(); case 252: - if (lookahead == 'a') ADVANCE(300); + ACCEPT_TOKEN(anon_sym_cpdef); END_STATE(); case 253: - if (lookahead == 'd') ADVANCE(301); + if (lookahead == 'a') ADVANCE(301); END_STATE(); case 254: - if (lookahead == 'e') ADVANCE(302); + if (lookahead == 'd') ADVANCE(302); END_STATE(); case 255: if (lookahead == 'e') ADVANCE(303); END_STATE(); case 256: - if (lookahead == 'n') ADVANCE(304); + if (lookahead == 'e') ADVANCE(304); END_STATE(); case 257: - if (lookahead == 'l') ADVANCE(305); + if (lookahead == 'n') ADVANCE(305); END_STATE(); case 258: - ACCEPT_TOKEN(anon_sym_fused); + if (lookahead == 'l') ADVANCE(306); END_STATE(); case 259: - if (lookahead == 'l') ADVANCE(306); + ACCEPT_TOKEN(anon_sym_fused); END_STATE(); case 260: - if (lookahead == 't') ADVANCE(307); + if (lookahead == 'l') ADVANCE(307); END_STATE(); case 261: - if (lookahead == 'd') ADVANCE(308); + if (lookahead == 't') ADVANCE(308); END_STATE(); case 262: - if (lookahead == 'e') ADVANCE(309); + if (lookahead == 'd') ADVANCE(309); END_STATE(); case 263: - if (lookahead == 'a') ADVANCE(310); + if (lookahead == 'e') ADVANCE(310); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 'a') ADVANCE(311); END_STATE(); case 265: - if (lookahead == 'p') ADVANCE(311); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 266: - if (lookahead == 'e') ADVANCE(312); + if (lookahead == 'p') ADVANCE(312); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_nogil); + if (lookahead == 'e') ADVANCE(313); END_STATE(); case 268: - if (lookahead == 'c') ADVANCE(313); + ACCEPT_TOKEN(anon_sym_nogil); END_STATE(); case 269: - if (lookahead == 'q') ADVANCE(314); + if (lookahead == 'c') ADVANCE(314); END_STATE(); case 270: - if (lookahead == 't') ADVANCE(315); + if (lookahead == 'q') ADVANCE(315); END_STATE(); case 271: if (lookahead == 't') ADVANCE(316); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_or_eq); + if (lookahead == 't') ADVANCE(317); END_STATE(); case 273: - if (lookahead == 'd') ADVANCE(317); + ACCEPT_TOKEN(anon_sym_or_eq); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_print); + if (lookahead == 'd') ADVANCE(318); END_STATE(); case 275: - if (lookahead == 'r') ADVANCE(318); + ACCEPT_TOKEN(anon_sym_print); END_STATE(); case 276: - if (lookahead == 'c') ADVANCE(319); + if (lookahead == 'r') ADVANCE(319); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_raise); + if (lookahead == 'c') ADVANCE(320); END_STATE(); case 278: - if (lookahead == 'n') ADVANCE(320); + ACCEPT_TOKEN(anon_sym_raise); END_STATE(); case 279: if (lookahead == 'n') ADVANCE(321); END_STATE(); case 280: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 'n') ADVANCE(322); END_STATE(); case 281: - if (lookahead == 'd') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 282: - if (lookahead == 'f') ADVANCE(323); + if (lookahead == 'd') ADVANCE(323); END_STATE(); case 283: - if (lookahead == 't') ADVANCE(324); + if (lookahead == 'f') ADVANCE(324); END_STATE(); case 284: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 't') ADVANCE(325); END_STATE(); case 285: - if (lookahead == 'n') ADVANCE(325); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 286: - if (lookahead == 'i') ADVANCE(326); + if (lookahead == 'n') ADVANCE(326); END_STATE(); case 287: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'i') ADVANCE(327); END_STATE(); case 288: - if (lookahead == 'q') ADVANCE(327); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 289: - ACCEPT_TOKEN(anon_sym_yield); + if (lookahead == 'q') ADVANCE(328); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym_PYTHON); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 291: - if (lookahead == 'r') ADVANCE(328); + ACCEPT_TOKEN(anon_sym_PYTHON); END_STATE(); case 292: - if (lookahead == 'a') ADVANCE(329); + if (lookahead == 'r') ADVANCE(329); END_STATE(); case 293: - ACCEPT_TOKEN(anon_sym_and_eq); + if (lookahead == 'a') ADVANCE(330); END_STATE(); case 294: - ACCEPT_TOKEN(anon_sym_assert); + ACCEPT_TOKEN(anon_sym_and_eq); END_STATE(); case 295: - ACCEPT_TOKEN(anon_sym_bitand); + ACCEPT_TOKEN(anon_sym_assert); END_STATE(); case 296: - if (lookahead == 't') ADVANCE(330); + ACCEPT_TOKEN(anon_sym_bitand); END_STATE(); case 297: - if (lookahead == 'i') ADVANCE(331); + if (lookahead == 't') ADVANCE(331); END_STATE(); case 298: - if (lookahead == 'x') ADVANCE(332); + if (lookahead == 'i') ADVANCE(332); END_STATE(); case 299: - if (lookahead == 'u') ADVANCE(333); + if (lookahead == 'x') ADVANCE(333); END_STATE(); case 300: - if (lookahead == 's') ADVANCE(334); + if (lookahead == 'u') ADVANCE(334); END_STATE(); case 301: - if (lookahead == 'e') ADVANCE(335); + if (lookahead == 's') ADVANCE(335); END_STATE(); case 302: - ACCEPT_TOKEN(anon_sym_delete); + if (lookahead == 'e') ADVANCE(336); END_STATE(); case 303: - ACCEPT_TOKEN(anon_sym_double); + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 304: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_double); END_STATE(); case 305: - if (lookahead == 'y') ADVANCE(336); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 306: - ACCEPT_TOKEN(anon_sym_global); + if (lookahead == 'y') ADVANCE(337); END_STATE(); case 307: - ACCEPT_TOKEN(anon_sym_import); + ACCEPT_TOKEN(anon_sym_global); END_STATE(); case 308: - if (lookahead == 'e') ADVANCE(337); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 309: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 'e') ADVANCE(338); END_STATE(); case 310: - ACCEPT_TOKEN(anon_sym_lambda); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 311: - if (lookahead == 'a') ADVANCE(338); + ACCEPT_TOKEN(anon_sym_lambda); END_STATE(); case 312: - if (lookahead == 'p') ADVANCE(339); + if (lookahead == 'a') ADVANCE(339); END_STATE(); case 313: - if (lookahead == 'a') ADVANCE(340); + if (lookahead == 'p') ADVANCE(340); END_STATE(); case 314: - ACCEPT_TOKEN(anon_sym_not_eq); + if (lookahead == 'a') ADVANCE(341); END_STATE(); case 315: - ACCEPT_TOKEN(anon_sym_object); + ACCEPT_TOKEN(anon_sym_not_eq); END_STATE(); case 316: - if (lookahead == 'o') ADVANCE(341); + ACCEPT_TOKEN(anon_sym_object); END_STATE(); case 317: - ACCEPT_TOKEN(anon_sym_packed); + if (lookahead == 'o') ADVANCE(342); END_STATE(); case 318: - if (lookahead == 't') ADVANCE(342); + ACCEPT_TOKEN(anon_sym_packed); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym_public); + if (lookahead == 't') ADVANCE(343); END_STATE(); case 320: - if (lookahead == 'l') ADVANCE(343); + ACCEPT_TOKEN(anon_sym_public); END_STATE(); case 321: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'l') ADVANCE(344); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym_signed); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 323: - ACCEPT_TOKEN(anon_sym_sizeof); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 324: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 325: - if (lookahead == 'e') ADVANCE(344); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 326: - if (lookahead == 'l') ADVANCE(345); + if (lookahead == 'e') ADVANCE(345); END_STATE(); case 327: - ACCEPT_TOKEN(anon_sym_xor_eq); + if (lookahead == 'l') ADVANCE(346); END_STATE(); case 328: - if (lookahead == 'e') ADVANCE(346); + ACCEPT_TOKEN(anon_sym_xor_eq); END_STATE(); case 329: - if (lookahead == 'l') ADVANCE(347); + if (lookahead == 'e') ADVANCE(347); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym_cimport); + if (lookahead == 'l') ADVANCE(348); END_STATE(); case 331: - if (lookahead == 't') ADVANCE(348); + ACCEPT_TOKEN(anon_sym_cimport); END_STATE(); case 332: - ACCEPT_TOKEN(anon_sym_complex); + if (lookahead == 't') ADVANCE(349); END_STATE(); case 333: - if (lookahead == 'e') ADVANCE(349); + ACCEPT_TOKEN(anon_sym_complex); END_STATE(); case 334: - if (lookahead == 's') ADVANCE(350); + if (lookahead == 'e') ADVANCE(350); END_STATE(); case 335: - if (lookahead == 'f') ADVANCE(351); + if (lookahead == 's') ADVANCE(351); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == 'f') ADVANCE(352); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_include); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 338: - if (lookahead == 'c') ADVANCE(352); + ACCEPT_TOKEN(anon_sym_include); END_STATE(); case 339: - if (lookahead == 't') ADVANCE(353); + if (lookahead == 'c') ADVANCE(353); END_STATE(); case 340: - if (lookahead == 'l') ADVANCE(354); + if (lookahead == 't') ADVANCE(354); END_STATE(); case 341: - if (lookahead == 'r') ADVANCE(355); + if (lookahead == 'l') ADVANCE(355); END_STATE(); case 342: - if (lookahead == 'y') ADVANCE(356); + if (lookahead == 'r') ADVANCE(356); END_STATE(); case 343: if (lookahead == 'y') ADVANCE(357); END_STATE(); case 344: - if (lookahead == 'd') ADVANCE(358); + if (lookahead == 'y') ADVANCE(358); END_STATE(); case 345: - if (lookahead == 'e') ADVANCE(359); + if (lookahead == 'd') ADVANCE(359); END_STATE(); case 346: - if (lookahead == '_') ADVANCE(360); + if (lookahead == 'e') ADVANCE(360); END_STATE(); case 347: - if (lookahead == 'l') ADVANCE(361); + if (lookahead == '_') ADVANCE(361); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_co_await); + if (lookahead == 'l') ADVANCE(362); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_co_await); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_cppclass); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_ctypedef); + ACCEPT_TOKEN(anon_sym_cppclass); END_STATE(); case 352: - if (lookahead == 'e') ADVANCE(362); + ACCEPT_TOKEN(anon_sym_ctypedef); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_noexcept); + if (lookahead == 'e') ADVANCE(363); END_STATE(); case 354: - ACCEPT_TOKEN(anon_sym_nonlocal); + ACCEPT_TOKEN(anon_sym_noexcept); END_STATE(); case 355: - ACCEPT_TOKEN(anon_sym_operator); + ACCEPT_TOKEN(anon_sym_nonlocal); END_STATE(); case 356: - ACCEPT_TOKEN(anon_sym_property); + ACCEPT_TOKEN(anon_sym_operator); END_STATE(); case 357: - ACCEPT_TOKEN(anon_sym_readonly); + ACCEPT_TOKEN(anon_sym_property); END_STATE(); case 358: - ACCEPT_TOKEN(anon_sym_unsigned); + ACCEPT_TOKEN(anon_sym_readonly); END_STATE(); case 359: - ACCEPT_TOKEN(anon_sym_volatile); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 360: - if (lookahead == '_') ADVANCE(363); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 361: - ACCEPT_TOKEN(anon_sym___stdcall); + if (lookahead == '_') ADVANCE(364); END_STATE(); case 362: - ACCEPT_TOKEN(anon_sym_namespace); + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); case 363: + ACCEPT_TOKEN(anon_sym_namespace); + END_STATE(); + case 364: ACCEPT_TOKEN(anon_sym___future__); END_STATE(); default: @@ -13321,27 +13516,27 @@ 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}, + [198] = {.lex_state = 66, .external_lex_state = 3}, [199] = {.lex_state = 66, .external_lex_state = 3}, - [200] = {.lex_state = 66, .external_lex_state = 2}, + [200] = {.lex_state = 66, .external_lex_state = 3}, [201] = {.lex_state = 66, .external_lex_state = 3}, [202] = {.lex_state = 66, .external_lex_state = 3}, - [203] = {.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}, [207] = {.lex_state = 66, .external_lex_state = 3}, - [208] = {.lex_state = 66, .external_lex_state = 3}, - [209] = {.lex_state = 66, .external_lex_state = 3}, + [208] = {.lex_state = 66, .external_lex_state = 2}, + [209] = {.lex_state = 66, .external_lex_state = 2}, [210] = {.lex_state = 66, .external_lex_state = 2}, - [211] = {.lex_state = 66, .external_lex_state = 4}, - [212] = {.lex_state = 66, .external_lex_state = 4}, - [213] = {.lex_state = 66, .external_lex_state = 4}, - [214] = {.lex_state = 66, .external_lex_state = 4}, - [215] = {.lex_state = 66, .external_lex_state = 4}, - [216] = {.lex_state = 66, .external_lex_state = 4}, - [217] = {.lex_state = 66, .external_lex_state = 4}, - [218] = {.lex_state = 66, .external_lex_state = 4}, + [211] = {.lex_state = 66, .external_lex_state = 3}, + [212] = {.lex_state = 66, .external_lex_state = 2}, + [213] = {.lex_state = 66, .external_lex_state = 3}, + [214] = {.lex_state = 66, .external_lex_state = 3}, + [215] = {.lex_state = 66, .external_lex_state = 3}, + [216] = {.lex_state = 66, .external_lex_state = 3}, + [217] = {.lex_state = 66, .external_lex_state = 3}, + [218] = {.lex_state = 66, .external_lex_state = 3}, [219] = {.lex_state = 66, .external_lex_state = 4}, [220] = {.lex_state = 66, .external_lex_state = 4}, [221] = {.lex_state = 66, .external_lex_state = 4}, @@ -13352,22 +13547,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [226] = {.lex_state = 66, .external_lex_state = 4}, [227] = {.lex_state = 66, .external_lex_state = 4}, [228] = {.lex_state = 66, .external_lex_state = 4}, - [229] = {.lex_state = 5, .external_lex_state = 4}, - [230] = {.lex_state = 5, .external_lex_state = 4}, - [231] = {.lex_state = 5, .external_lex_state = 4}, - [232] = {.lex_state = 5, .external_lex_state = 4}, - [233] = {.lex_state = 5, .external_lex_state = 4}, - [234] = {.lex_state = 5, .external_lex_state = 4}, - [235] = {.lex_state = 5, .external_lex_state = 4}, - [236] = {.lex_state = 5, .external_lex_state = 4}, - [237] = {.lex_state = 66, .external_lex_state = 4}, - [238] = {.lex_state = 66, .external_lex_state = 4}, - [239] = {.lex_state = 66, .external_lex_state = 4}, - [240] = {.lex_state = 66, .external_lex_state = 4}, - [241] = {.lex_state = 66, .external_lex_state = 4}, - [242] = {.lex_state = 66, .external_lex_state = 4}, - [243] = {.lex_state = 66, .external_lex_state = 4}, - [244] = {.lex_state = 66, .external_lex_state = 4}, + [229] = {.lex_state = 66, .external_lex_state = 4}, + [230] = {.lex_state = 66, .external_lex_state = 4}, + [231] = {.lex_state = 66, .external_lex_state = 4}, + [232] = {.lex_state = 66, .external_lex_state = 4}, + [233] = {.lex_state = 66, .external_lex_state = 4}, + [234] = {.lex_state = 66, .external_lex_state = 4}, + [235] = {.lex_state = 66, .external_lex_state = 4}, + [236] = {.lex_state = 66, .external_lex_state = 4}, + [237] = {.lex_state = 5, .external_lex_state = 4}, + [238] = {.lex_state = 5, .external_lex_state = 4}, + [239] = {.lex_state = 5, .external_lex_state = 4}, + [240] = {.lex_state = 5, .external_lex_state = 4}, + [241] = {.lex_state = 5, .external_lex_state = 4}, + [242] = {.lex_state = 5, .external_lex_state = 4}, + [243] = {.lex_state = 5, .external_lex_state = 4}, + [244] = {.lex_state = 5, .external_lex_state = 4}, [245] = {.lex_state = 66, .external_lex_state = 4}, [246] = {.lex_state = 66, .external_lex_state = 4}, [247] = {.lex_state = 66, .external_lex_state = 4}, @@ -13454,7 +13649,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [328] = {.lex_state = 66, .external_lex_state = 4}, [329] = {.lex_state = 66, .external_lex_state = 4}, [330] = {.lex_state = 66, .external_lex_state = 4}, - [331] = {.lex_state = 66, .external_lex_state = 4}, + [331] = {.lex_state = 6, .external_lex_state = 5}, [332] = {.lex_state = 66, .external_lex_state = 4}, [333] = {.lex_state = 66, .external_lex_state = 4}, [334] = {.lex_state = 66, .external_lex_state = 4}, @@ -13479,7 +13674,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [353] = {.lex_state = 66, .external_lex_state = 4}, [354] = {.lex_state = 66, .external_lex_state = 4}, [355] = {.lex_state = 66, .external_lex_state = 4}, - [356] = {.lex_state = 6, .external_lex_state = 5}, + [356] = {.lex_state = 66, .external_lex_state = 4}, [357] = {.lex_state = 66, .external_lex_state = 4}, [358] = {.lex_state = 66, .external_lex_state = 4}, [359] = {.lex_state = 66, .external_lex_state = 4}, @@ -13498,7 +13693,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [372] = {.lex_state = 66, .external_lex_state = 4}, [373] = {.lex_state = 66, .external_lex_state = 4}, [374] = {.lex_state = 66, .external_lex_state = 4}, - [375] = {.lex_state = 6, .external_lex_state = 5}, + [375] = {.lex_state = 66, .external_lex_state = 4}, [376] = {.lex_state = 66, .external_lex_state = 4}, [377] = {.lex_state = 66, .external_lex_state = 4}, [378] = {.lex_state = 66, .external_lex_state = 4}, @@ -13548,47 +13743,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [422] = {.lex_state = 66, .external_lex_state = 4}, [423] = {.lex_state = 66, .external_lex_state = 4}, [424] = {.lex_state = 66, .external_lex_state = 4}, - [425] = {.lex_state = 6, .external_lex_state = 5}, - [426] = {.lex_state = 6, .external_lex_state = 5}, - [427] = {.lex_state = 66, .external_lex_state = 5}, - [428] = {.lex_state = 66, .external_lex_state = 5}, - [429] = {.lex_state = 66, .external_lex_state = 5}, - [430] = {.lex_state = 66, .external_lex_state = 5}, - [431] = {.lex_state = 66, .external_lex_state = 5}, - [432] = {.lex_state = 66, .external_lex_state = 5}, - [433] = {.lex_state = 66, .external_lex_state = 5}, - [434] = {.lex_state = 66, .external_lex_state = 5}, - [435] = {.lex_state = 66, .external_lex_state = 5}, - [436] = {.lex_state = 66, .external_lex_state = 5}, - [437] = {.lex_state = 66, .external_lex_state = 5}, - [438] = {.lex_state = 66, .external_lex_state = 5}, - [439] = {.lex_state = 66, .external_lex_state = 5}, - [440] = {.lex_state = 66, .external_lex_state = 5}, - [441] = {.lex_state = 66, .external_lex_state = 5}, - [442] = {.lex_state = 66, .external_lex_state = 5}, - [443] = {.lex_state = 66, .external_lex_state = 2}, - [444] = {.lex_state = 6, .external_lex_state = 5}, - [445] = {.lex_state = 6, .external_lex_state = 5}, - [446] = {.lex_state = 22, .external_lex_state = 5}, - [447] = {.lex_state = 66, .external_lex_state = 6}, - [448] = {.lex_state = 66, .external_lex_state = 6}, - [449] = {.lex_state = 66, .external_lex_state = 6}, - [450] = {.lex_state = 5, .external_lex_state = 6}, - [451] = {.lex_state = 5, .external_lex_state = 6}, - [452] = {.lex_state = 5, .external_lex_state = 6}, - [453] = {.lex_state = 5, .external_lex_state = 6}, - [454] = {.lex_state = 5, .external_lex_state = 6}, - [455] = {.lex_state = 5, .external_lex_state = 6}, - [456] = {.lex_state = 5, .external_lex_state = 6}, - [457] = {.lex_state = 5, .external_lex_state = 6}, - [458] = {.lex_state = 5, .external_lex_state = 6}, - [459] = {.lex_state = 5, .external_lex_state = 6}, - [460] = {.lex_state = 5, .external_lex_state = 6}, - [461] = {.lex_state = 5, .external_lex_state = 6}, - [462] = {.lex_state = 5, .external_lex_state = 6}, - [463] = {.lex_state = 5, .external_lex_state = 6}, - [464] = {.lex_state = 5, .external_lex_state = 6}, - [465] = {.lex_state = 5, .external_lex_state = 6}, + [425] = {.lex_state = 66, .external_lex_state = 4}, + [426] = {.lex_state = 66, .external_lex_state = 4}, + [427] = {.lex_state = 66, .external_lex_state = 4}, + [428] = {.lex_state = 66, .external_lex_state = 4}, + [429] = {.lex_state = 66, .external_lex_state = 4}, + [430] = {.lex_state = 66, .external_lex_state = 4}, + [431] = {.lex_state = 66, .external_lex_state = 4}, + [432] = {.lex_state = 66, .external_lex_state = 4}, + [433] = {.lex_state = 66, .external_lex_state = 4}, + [434] = {.lex_state = 66, .external_lex_state = 4}, + [435] = {.lex_state = 66, .external_lex_state = 4}, + [436] = {.lex_state = 66, .external_lex_state = 4}, + [437] = {.lex_state = 66, .external_lex_state = 4}, + [438] = {.lex_state = 6, .external_lex_state = 5}, + [439] = {.lex_state = 66, .external_lex_state = 4}, + [440] = {.lex_state = 66, .external_lex_state = 4}, + [441] = {.lex_state = 6, .external_lex_state = 5}, + [442] = {.lex_state = 6, .external_lex_state = 5}, + [443] = {.lex_state = 66, .external_lex_state = 5}, + [444] = {.lex_state = 66, .external_lex_state = 5}, + [445] = {.lex_state = 66, .external_lex_state = 5}, + [446] = {.lex_state = 66, .external_lex_state = 5}, + [447] = {.lex_state = 66, .external_lex_state = 5}, + [448] = {.lex_state = 66, .external_lex_state = 5}, + [449] = {.lex_state = 66, .external_lex_state = 5}, + [450] = {.lex_state = 66, .external_lex_state = 5}, + [451] = {.lex_state = 66, .external_lex_state = 5}, + [452] = {.lex_state = 66, .external_lex_state = 5}, + [453] = {.lex_state = 66, .external_lex_state = 5}, + [454] = {.lex_state = 66, .external_lex_state = 5}, + [455] = {.lex_state = 66, .external_lex_state = 5}, + [456] = {.lex_state = 66, .external_lex_state = 5}, + [457] = {.lex_state = 66, .external_lex_state = 5}, + [458] = {.lex_state = 66, .external_lex_state = 5}, + [459] = {.lex_state = 66, .external_lex_state = 2}, + [460] = {.lex_state = 6, .external_lex_state = 5}, + [461] = {.lex_state = 6, .external_lex_state = 5}, + [462] = {.lex_state = 22, .external_lex_state = 5}, + [463] = {.lex_state = 66, .external_lex_state = 6}, + [464] = {.lex_state = 66, .external_lex_state = 6}, + [465] = {.lex_state = 66, .external_lex_state = 6}, [466] = {.lex_state = 5, .external_lex_state = 6}, [467] = {.lex_state = 5, .external_lex_state = 6}, [468] = {.lex_state = 5, .external_lex_state = 6}, @@ -13604,33 +13799,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [478] = {.lex_state = 5, .external_lex_state = 6}, [479] = {.lex_state = 5, .external_lex_state = 6}, [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 = 6}, - [484] = {.lex_state = 7, .external_lex_state = 5}, - [485] = {.lex_state = 66, .external_lex_state = 3}, - [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 = 66, .external_lex_state = 3}, - [490] = {.lex_state = 8, .external_lex_state = 5}, - [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}, - [495] = {.lex_state = 66, .external_lex_state = 3}, - [496] = {.lex_state = 66, .external_lex_state = 3}, - [497] = {.lex_state = 66, .external_lex_state = 3}, - [498] = {.lex_state = 66, .external_lex_state = 3}, - [499] = {.lex_state = 66, .external_lex_state = 3}, + [481] = {.lex_state = 5, .external_lex_state = 6}, + [482] = {.lex_state = 5, .external_lex_state = 6}, + [483] = {.lex_state = 5, .external_lex_state = 6}, + [484] = {.lex_state = 5, .external_lex_state = 6}, + [485] = {.lex_state = 5, .external_lex_state = 6}, + [486] = {.lex_state = 5, .external_lex_state = 6}, + [487] = {.lex_state = 5, .external_lex_state = 6}, + [488] = {.lex_state = 5, .external_lex_state = 6}, + [489] = {.lex_state = 5, .external_lex_state = 6}, + [490] = {.lex_state = 5, .external_lex_state = 6}, + [491] = {.lex_state = 5, .external_lex_state = 6}, + [492] = {.lex_state = 5, .external_lex_state = 6}, + [493] = {.lex_state = 5, .external_lex_state = 6}, + [494] = {.lex_state = 5, .external_lex_state = 6}, + [495] = {.lex_state = 5, .external_lex_state = 6}, + [496] = {.lex_state = 5, .external_lex_state = 6}, + [497] = {.lex_state = 66, .external_lex_state = 6}, + [498] = {.lex_state = 66, .external_lex_state = 6}, + [499] = {.lex_state = 66, .external_lex_state = 6}, [500] = {.lex_state = 66, .external_lex_state = 3}, [501] = {.lex_state = 66, .external_lex_state = 3}, - [502] = {.lex_state = 66, .external_lex_state = 3}, - [503] = {.lex_state = 66, .external_lex_state = 2}, + [502] = {.lex_state = 7, .external_lex_state = 5}, + [503] = {.lex_state = 66, .external_lex_state = 3}, [504] = {.lex_state = 66, .external_lex_state = 3}, [505] = {.lex_state = 66, .external_lex_state = 3}, - [506] = {.lex_state = 66, .external_lex_state = 2}, - [507] = {.lex_state = 66, .external_lex_state = 3}, + [506] = {.lex_state = 8, .external_lex_state = 5}, + [507] = {.lex_state = 8, .external_lex_state = 5}, [508] = {.lex_state = 66, .external_lex_state = 3}, [509] = {.lex_state = 66, .external_lex_state = 3}, [510] = {.lex_state = 66, .external_lex_state = 3}, @@ -13642,10 +13837,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [516] = {.lex_state = 66, .external_lex_state = 3}, [517] = {.lex_state = 66, .external_lex_state = 3}, [518] = {.lex_state = 66, .external_lex_state = 3}, - [519] = {.lex_state = 66, .external_lex_state = 3}, - [520] = {.lex_state = 66, .external_lex_state = 3}, - [521] = {.lex_state = 66, .external_lex_state = 3}, - [522] = {.lex_state = 66, .external_lex_state = 3}, + [519] = {.lex_state = 8, .external_lex_state = 2}, + [520] = {.lex_state = 8, .external_lex_state = 7}, + [521] = {.lex_state = 66, .external_lex_state = 2}, + [522] = {.lex_state = 7, .external_lex_state = 2}, [523] = {.lex_state = 66, .external_lex_state = 3}, [524] = {.lex_state = 66, .external_lex_state = 3}, [525] = {.lex_state = 66, .external_lex_state = 3}, @@ -13829,465 +14024,465 @@ 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 = 8, .external_lex_state = 7}, - [708] = {.lex_state = 66, .external_lex_state = 2}, - [709] = {.lex_state = 66, .external_lex_state = 2}, - [710] = {.lex_state = 66, .external_lex_state = 2}, - [711] = {.lex_state = 66, .external_lex_state = 2}, - [712] = {.lex_state = 66, .external_lex_state = 2}, - [713] = {.lex_state = 66, .external_lex_state = 2}, + [706] = {.lex_state = 66, .external_lex_state = 3}, + [707] = {.lex_state = 66, .external_lex_state = 3}, + [708] = {.lex_state = 66, .external_lex_state = 3}, + [709] = {.lex_state = 66, .external_lex_state = 3}, + [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}, [715] = {.lex_state = 66, .external_lex_state = 3}, - [716] = {.lex_state = 7, .external_lex_state = 7}, + [716] = {.lex_state = 66, .external_lex_state = 3}, [717] = {.lex_state = 66, .external_lex_state = 3}, [718] = {.lex_state = 66, .external_lex_state = 3}, - [719] = {.lex_state = 7, .external_lex_state = 7}, + [719] = {.lex_state = 66, .external_lex_state = 3}, [720] = {.lex_state = 66, .external_lex_state = 3}, - [721] = {.lex_state = 66, .external_lex_state = 3}, + [721] = {.lex_state = 66, .external_lex_state = 2}, [722] = {.lex_state = 66, .external_lex_state = 3}, - [723] = {.lex_state = 66, .external_lex_state = 3}, - [724] = {.lex_state = 66, .external_lex_state = 3}, - [725] = {.lex_state = 8, .external_lex_state = 2}, - [726] = {.lex_state = 66, .external_lex_state = 3}, - [727] = {.lex_state = 9, .external_lex_state = 5}, - [728] = {.lex_state = 7, .external_lex_state = 2}, - [729] = {.lex_state = 8, .external_lex_state = 7}, - [730] = {.lex_state = 9, .external_lex_state = 5}, - [731] = {.lex_state = 66, .external_lex_state = 3}, - [732] = {.lex_state = 7, .external_lex_state = 6}, + [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 = 66, .external_lex_state = 2}, + [729] = {.lex_state = 66, .external_lex_state = 3}, + [730] = {.lex_state = 66, .external_lex_state = 3}, + [731] = {.lex_state = 7, .external_lex_state = 7}, + [732] = {.lex_state = 66, .external_lex_state = 3}, [733] = {.lex_state = 7, .external_lex_state = 6}, - [734] = {.lex_state = 7, .external_lex_state = 2}, - [735] = {.lex_state = 7, .external_lex_state = 8}, - [736] = {.lex_state = 8, .external_lex_state = 7}, - [737] = {.lex_state = 8, .external_lex_state = 8}, - [738] = {.lex_state = 7, .external_lex_state = 8}, - [739] = {.lex_state = 7, .external_lex_state = 8}, - [740] = {.lex_state = 7, .external_lex_state = 6}, - [741] = {.lex_state = 8, .external_lex_state = 2}, - [742] = {.lex_state = 7, .external_lex_state = 6}, - [743] = {.lex_state = 7, .external_lex_state = 8}, - [744] = {.lex_state = 7, .external_lex_state = 6}, - [745] = {.lex_state = 7, .external_lex_state = 6}, - [746] = {.lex_state = 7, .external_lex_state = 8}, - [747] = {.lex_state = 7, .external_lex_state = 6}, - [748] = {.lex_state = 7, .external_lex_state = 6}, - [749] = {.lex_state = 9, .external_lex_state = 2}, - [750] = {.lex_state = 9, .external_lex_state = 2}, - [751] = {.lex_state = 8, .external_lex_state = 8}, - [752] = {.lex_state = 7, .external_lex_state = 6}, - [753] = {.lex_state = 66, .external_lex_state = 6}, - [754] = {.lex_state = 66, .external_lex_state = 8}, - [755] = {.lex_state = 5, .external_lex_state = 7}, - [756] = {.lex_state = 66, .external_lex_state = 6}, - [757] = {.lex_state = 66, .external_lex_state = 6}, - [758] = {.lex_state = 66, .external_lex_state = 8}, - [759] = {.lex_state = 5, .external_lex_state = 7}, - [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 = 66, .external_lex_state = 6}, - [766] = {.lex_state = 66, .external_lex_state = 8}, - [767] = {.lex_state = 5, .external_lex_state = 7}, - [768] = {.lex_state = 5, .external_lex_state = 7}, + [734] = {.lex_state = 9, .external_lex_state = 5}, + [735] = {.lex_state = 66, .external_lex_state = 3}, + [736] = {.lex_state = 66, .external_lex_state = 3}, + [737] = {.lex_state = 8, .external_lex_state = 7}, + [738] = {.lex_state = 66, .external_lex_state = 3}, + [739] = {.lex_state = 66, .external_lex_state = 3}, + [740] = {.lex_state = 66, .external_lex_state = 3}, + [741] = {.lex_state = 66, .external_lex_state = 3}, + [742] = {.lex_state = 8, .external_lex_state = 2}, + [743] = {.lex_state = 7, .external_lex_state = 2}, + [744] = {.lex_state = 7, .external_lex_state = 7}, + [745] = {.lex_state = 66, .external_lex_state = 3}, + [746] = {.lex_state = 66, .external_lex_state = 3}, + [747] = {.lex_state = 66, .external_lex_state = 3}, + [748] = {.lex_state = 66, .external_lex_state = 3}, + [749] = {.lex_state = 9, .external_lex_state = 5}, + [750] = {.lex_state = 7, .external_lex_state = 7}, + [751] = {.lex_state = 7, .external_lex_state = 8}, + [752] = {.lex_state = 8, .external_lex_state = 8}, + [753] = {.lex_state = 7, .external_lex_state = 6}, + [754] = {.lex_state = 7, .external_lex_state = 8}, + [755] = {.lex_state = 7, .external_lex_state = 8}, + [756] = {.lex_state = 7, .external_lex_state = 6}, + [757] = {.lex_state = 7, .external_lex_state = 8}, + [758] = {.lex_state = 8, .external_lex_state = 7}, + [759] = {.lex_state = 7, .external_lex_state = 6}, + [760] = {.lex_state = 7, .external_lex_state = 6}, + [761] = {.lex_state = 8, .external_lex_state = 8}, + [762] = {.lex_state = 9, .external_lex_state = 2}, + [763] = {.lex_state = 9, .external_lex_state = 2}, + [764] = {.lex_state = 7, .external_lex_state = 8}, + [765] = {.lex_state = 7, .external_lex_state = 6}, + [766] = {.lex_state = 7, .external_lex_state = 6}, + [767] = {.lex_state = 7, .external_lex_state = 6}, + [768] = {.lex_state = 7, .external_lex_state = 6}, [769] = {.lex_state = 66, .external_lex_state = 8}, - [770] = {.lex_state = 66, .external_lex_state = 6}, - [771] = {.lex_state = 66, .external_lex_state = 6}, - [772] = {.lex_state = 66, .external_lex_state = 8}, - [773] = {.lex_state = 66, .external_lex_state = 6}, - [774] = {.lex_state = 66, .external_lex_state = 8}, - [775] = {.lex_state = 66, .external_lex_state = 8}, - [776] = {.lex_state = 66, .external_lex_state = 8}, - [777] = {.lex_state = 66, .external_lex_state = 6}, - [778] = {.lex_state = 66, .external_lex_state = 8}, - [779] = {.lex_state = 5, .external_lex_state = 7}, + [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}, + [774] = {.lex_state = 5, .external_lex_state = 7}, + [775] = {.lex_state = 66, .external_lex_state = 2}, + [776] = {.lex_state = 66, .external_lex_state = 6}, + [777] = {.lex_state = 66, .external_lex_state = 8}, + [778] = {.lex_state = 5, .external_lex_state = 7}, + [779] = {.lex_state = 66, .external_lex_state = 6}, [780] = {.lex_state = 66, .external_lex_state = 6}, - [781] = {.lex_state = 66, .external_lex_state = 2}, - [782] = {.lex_state = 66, .external_lex_state = 2}, - [783] = {.lex_state = 66, .external_lex_state = 2}, - [784] = {.lex_state = 66, .external_lex_state = 8}, - [785] = {.lex_state = 66, .external_lex_state = 6}, + [781] = {.lex_state = 66, .external_lex_state = 8}, + [782] = {.lex_state = 5, .external_lex_state = 7}, + [783] = {.lex_state = 66, .external_lex_state = 8}, + [784] = {.lex_state = 66, .external_lex_state = 6}, + [785] = {.lex_state = 66, .external_lex_state = 8}, [786] = {.lex_state = 5, .external_lex_state = 7}, [787] = {.lex_state = 5, .external_lex_state = 7}, - [788] = {.lex_state = 5, .external_lex_state = 8}, - [789] = {.lex_state = 5, .external_lex_state = 8}, - [790] = {.lex_state = 5, .external_lex_state = 8}, - [791] = {.lex_state = 5, .external_lex_state = 8}, - [792] = {.lex_state = 5, .external_lex_state = 8}, - [793] = {.lex_state = 66, .external_lex_state = 2}, - [794] = {.lex_state = 5, .external_lex_state = 8}, - [795] = {.lex_state = 66, .external_lex_state = 2}, - [796] = {.lex_state = 67, .external_lex_state = 2}, - [797] = {.lex_state = 5, .external_lex_state = 2}, - [798] = {.lex_state = 10, .external_lex_state = 5}, + [788] = {.lex_state = 66, .external_lex_state = 6}, + [789] = {.lex_state = 66, .external_lex_state = 8}, + [790] = {.lex_state = 66, .external_lex_state = 2}, + [791] = {.lex_state = 66, .external_lex_state = 6}, + [792] = {.lex_state = 66, .external_lex_state = 6}, + [793] = {.lex_state = 66, .external_lex_state = 8}, + [794] = {.lex_state = 66, .external_lex_state = 8}, + [795] = {.lex_state = 66, .external_lex_state = 8}, + [796] = {.lex_state = 66, .external_lex_state = 6}, + [797] = {.lex_state = 5, .external_lex_state = 7}, + [798] = {.lex_state = 66, .external_lex_state = 2}, [799] = {.lex_state = 66, .external_lex_state = 6}, - [800] = {.lex_state = 5, .external_lex_state = 2}, - [801] = {.lex_state = 67, .external_lex_state = 3}, - [802] = {.lex_state = 5, .external_lex_state = 6}, - [803] = {.lex_state = 68, .external_lex_state = 9}, - [804] = {.lex_state = 67, .external_lex_state = 3}, - [805] = {.lex_state = 5, .external_lex_state = 2}, - [806] = {.lex_state = 5, .external_lex_state = 6}, - [807] = {.lex_state = 5, .external_lex_state = 2}, - [808] = {.lex_state = 5, .external_lex_state = 2}, - [809] = {.lex_state = 5, .external_lex_state = 2}, - [810] = {.lex_state = 66, .external_lex_state = 6}, - [811] = {.lex_state = 5, .external_lex_state = 6}, - [812] = {.lex_state = 5, .external_lex_state = 6}, - [813] = {.lex_state = 5, .external_lex_state = 2}, + [800] = {.lex_state = 66, .external_lex_state = 8}, + [801] = {.lex_state = 5, .external_lex_state = 7}, + [802] = {.lex_state = 66, .external_lex_state = 6}, + [803] = {.lex_state = 66, .external_lex_state = 6}, + [804] = {.lex_state = 5, .external_lex_state = 8}, + [805] = {.lex_state = 5, .external_lex_state = 8}, + [806] = {.lex_state = 5, .external_lex_state = 8}, + [807] = {.lex_state = 66, .external_lex_state = 2}, + [808] = {.lex_state = 5, .external_lex_state = 8}, + [809] = {.lex_state = 66, .external_lex_state = 2}, + [810] = {.lex_state = 5, .external_lex_state = 8}, + [811] = {.lex_state = 5, .external_lex_state = 8}, + [812] = {.lex_state = 5, .external_lex_state = 2}, + [813] = {.lex_state = 67, .external_lex_state = 9}, [814] = {.lex_state = 5, .external_lex_state = 6}, [815] = {.lex_state = 5, .external_lex_state = 2}, [816] = {.lex_state = 5, .external_lex_state = 2}, - [817] = {.lex_state = 5, .external_lex_state = 6}, - [818] = {.lex_state = 5, .external_lex_state = 2}, - [819] = {.lex_state = 5, .external_lex_state = 2}, - [820] = {.lex_state = 5, .external_lex_state = 2}, - [821] = {.lex_state = 67, .external_lex_state = 2}, - [822] = {.lex_state = 5, .external_lex_state = 2}, - [823] = {.lex_state = 5, .external_lex_state = 6}, - [824] = {.lex_state = 68, .external_lex_state = 10}, - [825] = {.lex_state = 5, .external_lex_state = 6}, - [826] = {.lex_state = 5, .external_lex_state = 2}, - [827] = {.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 = 6}, + [820] = {.lex_state = 68, .external_lex_state = 3}, + [821] = {.lex_state = 5, .external_lex_state = 6}, + [822] = {.lex_state = 10, .external_lex_state = 5}, + [823] = {.lex_state = 5, .external_lex_state = 2}, + [824] = {.lex_state = 5, .external_lex_state = 2}, + [825] = {.lex_state = 67, .external_lex_state = 10}, + [826] = {.lex_state = 68, .external_lex_state = 2}, + [827] = {.lex_state = 66, .external_lex_state = 6}, [828] = {.lex_state = 5, .external_lex_state = 2}, - [829] = {.lex_state = 5, .external_lex_state = 2}, - [830] = {.lex_state = 5, .external_lex_state = 2}, + [829] = {.lex_state = 5, .external_lex_state = 6}, + [830] = {.lex_state = 67, .external_lex_state = 9}, [831] = {.lex_state = 5, .external_lex_state = 2}, [832] = {.lex_state = 5, .external_lex_state = 2}, - [833] = {.lex_state = 5, .external_lex_state = 2}, + [833] = {.lex_state = 10, .external_lex_state = 5}, [834] = {.lex_state = 5, .external_lex_state = 2}, - [835] = {.lex_state = 5, .external_lex_state = 2}, - [836] = {.lex_state = 68, .external_lex_state = 9}, + [835] = {.lex_state = 68, .external_lex_state = 3}, + [836] = {.lex_state = 66, .external_lex_state = 6}, [837] = {.lex_state = 5, .external_lex_state = 6}, - [838] = {.lex_state = 66, .external_lex_state = 6}, - [839] = {.lex_state = 68, .external_lex_state = 10}, - [840] = {.lex_state = 10, .external_lex_state = 5}, + [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 = 2}, - [843] = {.lex_state = 5, .external_lex_state = 6}, - [844] = {.lex_state = 5, .external_lex_state = 6}, - [845] = {.lex_state = 66, .external_lex_state = 6}, - [846] = {.lex_state = 66, .external_lex_state = 6}, - [847] = {.lex_state = 66, .external_lex_state = 8}, - [848] = {.lex_state = 66, .external_lex_state = 6}, - [849] = {.lex_state = 5, .external_lex_state = 6}, + [843] = {.lex_state = 5, .external_lex_state = 2}, + [844] = {.lex_state = 5, .external_lex_state = 2}, + [845] = {.lex_state = 5, .external_lex_state = 2}, + [846] = {.lex_state = 67, .external_lex_state = 10}, + [847] = {.lex_state = 5, .external_lex_state = 2}, + [848] = {.lex_state = 5, .external_lex_state = 2}, + [849] = {.lex_state = 5, .external_lex_state = 2}, [850] = {.lex_state = 5, .external_lex_state = 6}, - [851] = {.lex_state = 66, .external_lex_state = 8}, - [852] = {.lex_state = 5, .external_lex_state = 6}, + [851] = {.lex_state = 68, .external_lex_state = 2}, + [852] = {.lex_state = 5, .external_lex_state = 2}, [853] = {.lex_state = 5, .external_lex_state = 6}, - [854] = {.lex_state = 5, .external_lex_state = 6}, + [854] = {.lex_state = 5, .external_lex_state = 2}, [855] = {.lex_state = 5, .external_lex_state = 6}, - [856] = {.lex_state = 66, .external_lex_state = 6}, - [857] = {.lex_state = 66, .external_lex_state = 8}, + [856] = {.lex_state = 5, .external_lex_state = 2}, + [857] = {.lex_state = 5, .external_lex_state = 2}, [858] = {.lex_state = 66, .external_lex_state = 6}, [859] = {.lex_state = 5, .external_lex_state = 6}, [860] = {.lex_state = 5, .external_lex_state = 6}, - [861] = {.lex_state = 5, .external_lex_state = 6}, - [862] = {.lex_state = 5, .external_lex_state = 6}, + [861] = {.lex_state = 66, .external_lex_state = 6}, + [862] = {.lex_state = 66, .external_lex_state = 8}, [863] = {.lex_state = 66, .external_lex_state = 6}, - [864] = {.lex_state = 66, .external_lex_state = 8}, - [865] = {.lex_state = 66, .external_lex_state = 6}, + [864] = {.lex_state = 66, .external_lex_state = 6}, + [865] = {.lex_state = 5, .external_lex_state = 6}, [866] = {.lex_state = 5, .external_lex_state = 6}, - [867] = {.lex_state = 5, .external_lex_state = 6}, + [867] = {.lex_state = 66, .external_lex_state = 8}, [868] = {.lex_state = 5, .external_lex_state = 6}, [869] = {.lex_state = 5, .external_lex_state = 6}, - [870] = {.lex_state = 66, .external_lex_state = 6}, - [871] = {.lex_state = 66, .external_lex_state = 8}, + [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 = 5, .external_lex_state = 6}, - [874] = {.lex_state = 5, .external_lex_state = 6}, + [873] = {.lex_state = 66, .external_lex_state = 8}, + [874] = {.lex_state = 66, .external_lex_state = 6}, [875] = {.lex_state = 5, .external_lex_state = 6}, [876] = {.lex_state = 5, .external_lex_state = 6}, - [877] = {.lex_state = 66, .external_lex_state = 6}, - [878] = {.lex_state = 66, .external_lex_state = 8}, - [879] = {.lex_state = 5, .external_lex_state = 6}, - [880] = {.lex_state = 66, .external_lex_state = 6}, - [881] = {.lex_state = 5, .external_lex_state = 6}, + [877] = {.lex_state = 5, .external_lex_state = 6}, + [878] = {.lex_state = 5, .external_lex_state = 6}, + [879] = {.lex_state = 66, .external_lex_state = 6}, + [880] = {.lex_state = 66, .external_lex_state = 8}, + [881] = {.lex_state = 66, .external_lex_state = 6}, [882] = {.lex_state = 5, .external_lex_state = 6}, [883] = {.lex_state = 5, .external_lex_state = 6}, [884] = {.lex_state = 5, .external_lex_state = 6}, - [885] = {.lex_state = 66, .external_lex_state = 6}, - [886] = {.lex_state = 66, .external_lex_state = 8}, - [887] = {.lex_state = 5, .external_lex_state = 6}, - [888] = {.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 = 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 = 66, .external_lex_state = 6}, - [892] = {.lex_state = 66, .external_lex_state = 8}, - [893] = {.lex_state = 5, .external_lex_state = 6}, - [894] = {.lex_state = 5, .external_lex_state = 6}, - [895] = {.lex_state = 5, .external_lex_state = 6}, + [891] = {.lex_state = 5, .external_lex_state = 6}, + [892] = {.lex_state = 5, .external_lex_state = 6}, + [893] = {.lex_state = 66, .external_lex_state = 6}, + [894] = {.lex_state = 66, .external_lex_state = 8}, + [895] = {.lex_state = 66, .external_lex_state = 6}, [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 = 5, .external_lex_state = 6}, - [900] = {.lex_state = 5, .external_lex_state = 6}, - [901] = {.lex_state = 5, .external_lex_state = 6}, + [900] = {.lex_state = 66, .external_lex_state = 6}, + [901] = {.lex_state = 66, .external_lex_state = 8}, [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 = 5, .external_lex_state = 6}, - [906] = {.lex_state = 5, .external_lex_state = 6}, - [907] = {.lex_state = 5, .external_lex_state = 6}, - [908] = {.lex_state = 66, .external_lex_state = 7}, - [909] = {.lex_state = 66, .external_lex_state = 6}, - [910] = {.lex_state = 66, .external_lex_state = 7}, - [911] = {.lex_state = 66, .external_lex_state = 8}, - [912] = {.lex_state = 66, .external_lex_state = 8}, - [913] = {.lex_state = 66, .external_lex_state = 2}, - [914] = {.lex_state = 66, .external_lex_state = 2}, - [915] = {.lex_state = 66, .external_lex_state = 8}, - [916] = {.lex_state = 66, .external_lex_state = 6}, - [917] = {.lex_state = 10, .external_lex_state = 2}, - [918] = {.lex_state = 66, .external_lex_state = 6}, - [919] = {.lex_state = 66, .external_lex_state = 6}, - [920] = {.lex_state = 68, .external_lex_state = 9}, - [921] = {.lex_state = 67, .external_lex_state = 2}, - [922] = {.lex_state = 66, .external_lex_state = 6}, - [923] = {.lex_state = 66, .external_lex_state = 2}, + [906] = {.lex_state = 66, .external_lex_state = 6}, + [907] = {.lex_state = 66, .external_lex_state = 8}, + [908] = {.lex_state = 5, .external_lex_state = 6}, + [909] = {.lex_state = 5, .external_lex_state = 6}, + [910] = {.lex_state = 5, .external_lex_state = 6}, + [911] = {.lex_state = 5, .external_lex_state = 6}, + [912] = {.lex_state = 5, .external_lex_state = 6}, + [913] = {.lex_state = 5, .external_lex_state = 6}, + [914] = {.lex_state = 5, .external_lex_state = 6}, + [915] = {.lex_state = 5, .external_lex_state = 6}, + [916] = {.lex_state = 5, .external_lex_state = 6}, + [917] = {.lex_state = 5, .external_lex_state = 6}, + [918] = {.lex_state = 5, .external_lex_state = 6}, + [919] = {.lex_state = 5, .external_lex_state = 6}, + [920] = {.lex_state = 5, .external_lex_state = 6}, + [921] = {.lex_state = 5, .external_lex_state = 6}, + [922] = {.lex_state = 5, .external_lex_state = 6}, + [923] = {.lex_state = 66, .external_lex_state = 6}, [924] = {.lex_state = 66, .external_lex_state = 7}, - [925] = {.lex_state = 66, .external_lex_state = 7}, + [925] = {.lex_state = 5, .external_lex_state = 6}, [926] = {.lex_state = 66, .external_lex_state = 2}, - [927] = {.lex_state = 10, .external_lex_state = 2}, + [927] = {.lex_state = 66, .external_lex_state = 2}, [928] = {.lex_state = 66, .external_lex_state = 2}, - [929] = {.lex_state = 66, .external_lex_state = 8}, - [930] = {.lex_state = 66, .external_lex_state = 6}, - [931] = {.lex_state = 66, .external_lex_state = 2}, - [932] = {.lex_state = 66, .external_lex_state = 8}, + [929] = {.lex_state = 66, .external_lex_state = 7}, + [930] = {.lex_state = 66, .external_lex_state = 8}, + [931] = {.lex_state = 66, .external_lex_state = 3}, + [932] = {.lex_state = 66, .external_lex_state = 3}, [933] = {.lex_state = 66, .external_lex_state = 3}, - [934] = {.lex_state = 66, .external_lex_state = 3}, - [935] = {.lex_state = 66, .external_lex_state = 3}, - [936] = {.lex_state = 66, .external_lex_state = 7}, - [937] = {.lex_state = 68, .external_lex_state = 10}, - [938] = {.lex_state = 67, .external_lex_state = 3}, - [939] = {.lex_state = 66, .external_lex_state = 3}, - [940] = {.lex_state = 5, .external_lex_state = 2}, + [934] = {.lex_state = 67, .external_lex_state = 9}, + [935] = {.lex_state = 66, .external_lex_state = 7}, + [936] = {.lex_state = 68, .external_lex_state = 3}, + [937] = {.lex_state = 66, .external_lex_state = 3}, + [938] = {.lex_state = 5, .external_lex_state = 2}, + [939] = {.lex_state = 66, .external_lex_state = 8}, + [940] = {.lex_state = 66, .external_lex_state = 6}, [941] = {.lex_state = 66, .external_lex_state = 8}, - [942] = {.lex_state = 66, .external_lex_state = 7}, - [943] = {.lex_state = 66, .external_lex_state = 7}, + [942] = {.lex_state = 66, .external_lex_state = 2}, + [943] = {.lex_state = 66, .external_lex_state = 8}, [944] = {.lex_state = 66, .external_lex_state = 2}, [945] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 66, .external_lex_state = 5}, - [950] = {.lex_state = 5, .external_lex_state = 7}, - [951] = {.lex_state = 66, .external_lex_state = 2}, - [952] = {.lex_state = 5, .external_lex_state = 7}, - [953] = {.lex_state = 5, .external_lex_state = 7}, - [954] = {.lex_state = 66, .external_lex_state = 8}, - [955] = {.lex_state = 5, .external_lex_state = 7}, - [956] = {.lex_state = 66, .external_lex_state = 2}, - [957] = {.lex_state = 5, .external_lex_state = 7}, - [958] = {.lex_state = 66, .external_lex_state = 7}, - [959] = {.lex_state = 66, .external_lex_state = 5}, - [960] = {.lex_state = 5, .external_lex_state = 7}, - [961] = {.lex_state = 5, .external_lex_state = 7}, - [962] = {.lex_state = 5, .external_lex_state = 7}, - [963] = {.lex_state = 66, .external_lex_state = 2}, + [946] = {.lex_state = 10, .external_lex_state = 2}, + [947] = {.lex_state = 66, .external_lex_state = 8}, + [948] = {.lex_state = 66, .external_lex_state = 6}, + [949] = {.lex_state = 10, .external_lex_state = 2}, + [950] = {.lex_state = 66, .external_lex_state = 6}, + [951] = {.lex_state = 66, .external_lex_state = 6}, + [952] = {.lex_state = 67, .external_lex_state = 10}, + [953] = {.lex_state = 66, .external_lex_state = 6}, + [954] = {.lex_state = 66, .external_lex_state = 7}, + [955] = {.lex_state = 68, .external_lex_state = 2}, + [956] = {.lex_state = 66, .external_lex_state = 7}, + [957] = {.lex_state = 66, .external_lex_state = 7}, + [958] = {.lex_state = 66, .external_lex_state = 2}, + [959] = {.lex_state = 66, .external_lex_state = 2}, + [960] = {.lex_state = 66, .external_lex_state = 7}, + [961] = {.lex_state = 66, .external_lex_state = 6}, + [962] = {.lex_state = 66, .external_lex_state = 8}, + [963] = {.lex_state = 5, .external_lex_state = 7}, [964] = {.lex_state = 66, .external_lex_state = 7}, [965] = {.lex_state = 5, .external_lex_state = 7}, [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 = 2}, - [970] = {.lex_state = 66, .external_lex_state = 3}, - [971] = {.lex_state = 66, .external_lex_state = 2}, - [972] = {.lex_state = 5, .external_lex_state = 7}, - [973] = {.lex_state = 5, .external_lex_state = 7}, + [968] = {.lex_state = 5, .external_lex_state = 7}, + [969] = {.lex_state = 5, .external_lex_state = 7}, + [970] = {.lex_state = 5, .external_lex_state = 7}, + [971] = {.lex_state = 66, .external_lex_state = 6}, + [972] = {.lex_state = 66, .external_lex_state = 2}, + [973] = {.lex_state = 66, .external_lex_state = 2}, [974] = {.lex_state = 66, .external_lex_state = 2}, - [975] = {.lex_state = 5, .external_lex_state = 7}, - [976] = {.lex_state = 66, .external_lex_state = 2}, - [977] = {.lex_state = 5, .external_lex_state = 7}, - [978] = {.lex_state = 66, .external_lex_state = 6}, - [979] = {.lex_state = 66, .external_lex_state = 7}, - [980] = {.lex_state = 66, .external_lex_state = 8}, - [981] = {.lex_state = 68, .external_lex_state = 9}, - [982] = {.lex_state = 67, .external_lex_state = 2}, - [983] = {.lex_state = 66, .external_lex_state = 8}, - [984] = {.lex_state = 66, .external_lex_state = 8}, - [985] = {.lex_state = 67, .external_lex_state = 2}, - [986] = {.lex_state = 68, .external_lex_state = 10}, - [987] = {.lex_state = 66, .external_lex_state = 8}, - [988] = {.lex_state = 66, .external_lex_state = 8}, - [989] = {.lex_state = 67, .external_lex_state = 2}, - [990] = {.lex_state = 67, .external_lex_state = 3}, - [991] = {.lex_state = 66, .external_lex_state = 8}, - [992] = {.lex_state = 66, .external_lex_state = 8}, - [993] = {.lex_state = 66, .external_lex_state = 8}, - [994] = {.lex_state = 68, .external_lex_state = 10}, - [995] = {.lex_state = 67, .external_lex_state = 3}, - [996] = {.lex_state = 68, .external_lex_state = 9}, + [975] = {.lex_state = 66, .external_lex_state = 2}, + [976] = {.lex_state = 66, .external_lex_state = 3}, + [977] = {.lex_state = 66, .external_lex_state = 5}, + [978] = {.lex_state = 5, .external_lex_state = 7}, + [979] = {.lex_state = 66, .external_lex_state = 5}, + [980] = {.lex_state = 66, .external_lex_state = 2}, + [981] = {.lex_state = 5, .external_lex_state = 7}, + [982] = {.lex_state = 5, .external_lex_state = 7}, + [983] = {.lex_state = 5, .external_lex_state = 7}, + [984] = {.lex_state = 5, .external_lex_state = 7}, + [985] = {.lex_state = 5, .external_lex_state = 7}, + [986] = {.lex_state = 66, .external_lex_state = 2}, + [987] = {.lex_state = 5, .external_lex_state = 7}, + [988] = {.lex_state = 5, .external_lex_state = 7}, + [989] = {.lex_state = 66, .external_lex_state = 7}, + [990] = {.lex_state = 66, .external_lex_state = 2}, + [991] = {.lex_state = 66, .external_lex_state = 2}, + [992] = {.lex_state = 66, .external_lex_state = 2}, + [993] = {.lex_state = 5, .external_lex_state = 7}, + [994] = {.lex_state = 66, .external_lex_state = 8}, + [995] = {.lex_state = 66, .external_lex_state = 7}, + [996] = {.lex_state = 68, .external_lex_state = 2}, [997] = {.lex_state = 66, .external_lex_state = 8}, - [998] = {.lex_state = 67, .external_lex_state = 3}, - [999] = {.lex_state = 68, .external_lex_state = 9}, + [998] = {.lex_state = 66, .external_lex_state = 8}, + [999] = {.lex_state = 68, .external_lex_state = 2}, [1000] = {.lex_state = 66, .external_lex_state = 8}, - [1001] = {.lex_state = 66, .external_lex_state = 8}, - [1002] = {.lex_state = 5, .external_lex_state = 2}, - [1003] = {.lex_state = 67, .external_lex_state = 2}, + [1001] = {.lex_state = 68, .external_lex_state = 2}, + [1002] = {.lex_state = 68, .external_lex_state = 2}, + [1003] = {.lex_state = 66, .external_lex_state = 8}, [1004] = {.lex_state = 66, .external_lex_state = 8}, - [1005] = {.lex_state = 68, .external_lex_state = 9}, - [1006] = {.lex_state = 67, .external_lex_state = 2}, - [1007] = {.lex_state = 66, .external_lex_state = 5}, - [1008] = {.lex_state = 66, .external_lex_state = 8}, - [1009] = {.lex_state = 66, .external_lex_state = 8}, + [1005] = {.lex_state = 68, .external_lex_state = 2}, + [1006] = {.lex_state = 68, .external_lex_state = 2}, + [1007] = {.lex_state = 67, .external_lex_state = 10}, + [1008] = {.lex_state = 66, .external_lex_state = 5}, + [1009] = {.lex_state = 68, .external_lex_state = 2}, [1010] = {.lex_state = 66, .external_lex_state = 8}, - [1011] = {.lex_state = 68, .external_lex_state = 9}, + [1011] = {.lex_state = 66, .external_lex_state = 8}, [1012] = {.lex_state = 66, .external_lex_state = 8}, [1013] = {.lex_state = 66, .external_lex_state = 8}, - [1014] = {.lex_state = 66, .external_lex_state = 8}, - [1015] = {.lex_state = 68, .external_lex_state = 10}, - [1016] = {.lex_state = 68, .external_lex_state = 10}, - [1017] = {.lex_state = 66, .external_lex_state = 5}, - [1018] = {.lex_state = 68, .external_lex_state = 9}, - [1019] = {.lex_state = 68, .external_lex_state = 10}, - [1020] = {.lex_state = 67, .external_lex_state = 3}, - [1021] = {.lex_state = 67, .external_lex_state = 2}, - [1022] = {.lex_state = 66, .external_lex_state = 8}, - [1023] = {.lex_state = 67, .external_lex_state = 2}, - [1024] = {.lex_state = 68, .external_lex_state = 10}, + [1014] = {.lex_state = 67, .external_lex_state = 9}, + [1015] = {.lex_state = 68, .external_lex_state = 3}, + [1016] = {.lex_state = 66, .external_lex_state = 8}, + [1017] = {.lex_state = 66, .external_lex_state = 8}, + [1018] = {.lex_state = 67, .external_lex_state = 10}, + [1019] = {.lex_state = 67, .external_lex_state = 9}, + [1020] = {.lex_state = 67, .external_lex_state = 9}, + [1021] = {.lex_state = 66, .external_lex_state = 8}, + [1022] = {.lex_state = 67, .external_lex_state = 9}, + [1023] = {.lex_state = 67, .external_lex_state = 9}, + [1024] = {.lex_state = 68, .external_lex_state = 3}, [1025] = {.lex_state = 66, .external_lex_state = 8}, - [1026] = {.lex_state = 66, .external_lex_state = 8}, - [1027] = {.lex_state = 67, .external_lex_state = 2}, - [1028] = {.lex_state = 68, .external_lex_state = 9}, - [1029] = {.lex_state = 67, .external_lex_state = 3}, - [1030] = {.lex_state = 66, .external_lex_state = 8}, - [1031] = {.lex_state = 66, .external_lex_state = 8}, + [1026] = {.lex_state = 67, .external_lex_state = 9}, + [1027] = {.lex_state = 67, .external_lex_state = 9}, + [1028] = {.lex_state = 66, .external_lex_state = 8}, + [1029] = {.lex_state = 66, .external_lex_state = 8}, + [1030] = {.lex_state = 67, .external_lex_state = 9}, + [1031] = {.lex_state = 67, .external_lex_state = 9}, [1032] = {.lex_state = 66, .external_lex_state = 8}, - [1033] = {.lex_state = 66, .external_lex_state = 8}, - [1034] = {.lex_state = 66, .external_lex_state = 8}, - [1035] = {.lex_state = 67, .external_lex_state = 2}, - [1036] = {.lex_state = 66, .external_lex_state = 8}, + [1033] = {.lex_state = 5, .external_lex_state = 2}, + [1034] = {.lex_state = 67, .external_lex_state = 9}, + [1035] = {.lex_state = 67, .external_lex_state = 10}, + [1036] = {.lex_state = 68, .external_lex_state = 2}, [1037] = {.lex_state = 66, .external_lex_state = 8}, - [1038] = {.lex_state = 68, .external_lex_state = 10}, - [1039] = {.lex_state = 66, .external_lex_state = 8}, - [1040] = {.lex_state = 66, .external_lex_state = 8}, + [1038] = {.lex_state = 68, .external_lex_state = 3}, + [1039] = {.lex_state = 66, .external_lex_state = 5}, + [1040] = {.lex_state = 67, .external_lex_state = 10}, [1041] = {.lex_state = 66, .external_lex_state = 8}, - [1042] = {.lex_state = 68, .external_lex_state = 10}, - [1043] = {.lex_state = 68, .external_lex_state = 10}, + [1042] = {.lex_state = 66, .external_lex_state = 8}, + [1043] = {.lex_state = 68, .external_lex_state = 3}, [1044] = {.lex_state = 66, .external_lex_state = 8}, - [1045] = {.lex_state = 68, .external_lex_state = 10}, - [1046] = {.lex_state = 67, .external_lex_state = 3}, + [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 = 66, .external_lex_state = 8}, [1049] = {.lex_state = 66, .external_lex_state = 8}, [1050] = {.lex_state = 66, .external_lex_state = 8}, [1051] = {.lex_state = 66, .external_lex_state = 8}, - [1052] = {.lex_state = 66, .external_lex_state = 8}, - [1053] = {.lex_state = 68, .external_lex_state = 9}, - [1054] = {.lex_state = 66, .external_lex_state = 5}, - [1055] = {.lex_state = 68, .external_lex_state = 10}, - [1056] = {.lex_state = 67, .external_lex_state = 3}, + [1052] = {.lex_state = 68, .external_lex_state = 3}, + [1053] = {.lex_state = 66, .external_lex_state = 8}, + [1054] = {.lex_state = 66, .external_lex_state = 8}, + [1055] = {.lex_state = 68, .external_lex_state = 3}, + [1056] = {.lex_state = 68, .external_lex_state = 3}, [1057] = {.lex_state = 66, .external_lex_state = 8}, - [1058] = {.lex_state = 67, .external_lex_state = 3}, - [1059] = {.lex_state = 68, .external_lex_state = 9}, - [1060] = {.lex_state = 68, .external_lex_state = 9}, - [1061] = {.lex_state = 68, .external_lex_state = 9}, - [1062] = {.lex_state = 67, .external_lex_state = 3}, - [1063] = {.lex_state = 66, .external_lex_state = 6}, - [1064] = {.lex_state = 66, .external_lex_state = 3}, - [1065] = {.lex_state = 66, .external_lex_state = 3}, - [1066] = {.lex_state = 66, .external_lex_state = 2}, - [1067] = {.lex_state = 66, .external_lex_state = 2}, - [1068] = {.lex_state = 66, .external_lex_state = 2}, + [1058] = {.lex_state = 67, .external_lex_state = 10}, + [1059] = {.lex_state = 66, .external_lex_state = 8}, + [1060] = {.lex_state = 66, .external_lex_state = 8}, + [1061] = {.lex_state = 66, .external_lex_state = 8}, + [1062] = {.lex_state = 68, .external_lex_state = 3}, + [1063] = {.lex_state = 66, .external_lex_state = 8}, + [1064] = {.lex_state = 66, .external_lex_state = 8}, + [1065] = {.lex_state = 66, .external_lex_state = 8}, + [1066] = {.lex_state = 67, .external_lex_state = 10}, + [1067] = {.lex_state = 66, .external_lex_state = 8}, + [1068] = {.lex_state = 67, .external_lex_state = 10}, [1069] = {.lex_state = 66, .external_lex_state = 8}, - [1070] = {.lex_state = 66, .external_lex_state = 2}, - [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}, - [1075] = {.lex_state = 66, .external_lex_state = 2}, - [1076] = {.lex_state = 66, .external_lex_state = 3}, - [1077] = {.lex_state = 66, .external_lex_state = 2}, - [1078] = {.lex_state = 11, .external_lex_state = 6}, - [1079] = {.lex_state = 66, .external_lex_state = 2}, - [1080] = {.lex_state = 66, .external_lex_state = 2}, + [1070] = {.lex_state = 67, .external_lex_state = 9}, + [1071] = {.lex_state = 68, .external_lex_state = 3}, + [1072] = {.lex_state = 68, .external_lex_state = 2}, + [1073] = {.lex_state = 67, .external_lex_state = 10}, + [1074] = {.lex_state = 67, .external_lex_state = 10}, + [1075] = {.lex_state = 66, .external_lex_state = 5}, + [1076] = {.lex_state = 67, .external_lex_state = 10}, + [1077] = {.lex_state = 67, .external_lex_state = 10}, + [1078] = {.lex_state = 66, .external_lex_state = 8}, + [1079] = {.lex_state = 66, .external_lex_state = 5}, + [1080] = {.lex_state = 66, .external_lex_state = 8}, [1081] = {.lex_state = 66, .external_lex_state = 2}, - [1082] = {.lex_state = 11, .external_lex_state = 7}, + [1082] = {.lex_state = 66, .external_lex_state = 2}, [1083] = {.lex_state = 66, .external_lex_state = 2}, - [1084] = {.lex_state = 66, .external_lex_state = 5}, + [1084] = {.lex_state = 66, .external_lex_state = 2}, [1085] = {.lex_state = 66, .external_lex_state = 2}, [1086] = {.lex_state = 66, .external_lex_state = 2}, - [1087] = {.lex_state = 66, .external_lex_state = 5}, + [1087] = {.lex_state = 66, .external_lex_state = 8}, [1088] = {.lex_state = 66, .external_lex_state = 2}, [1089] = {.lex_state = 66, .external_lex_state = 2}, - [1090] = {.lex_state = 66, .external_lex_state = 6}, - [1091] = {.lex_state = 66, .external_lex_state = 2}, - [1092] = {.lex_state = 66, .external_lex_state = 2}, - [1093] = {.lex_state = 66, .external_lex_state = 6}, - [1094] = {.lex_state = 66, .external_lex_state = 8}, + [1090] = {.lex_state = 66, .external_lex_state = 3}, + [1091] = {.lex_state = 66, .external_lex_state = 3}, + [1092] = {.lex_state = 66, .external_lex_state = 3}, + [1093] = {.lex_state = 66, .external_lex_state = 3}, + [1094] = {.lex_state = 66, .external_lex_state = 2}, [1095] = {.lex_state = 66, .external_lex_state = 2}, - [1096] = {.lex_state = 66, .external_lex_state = 5}, - [1097] = {.lex_state = 66, .external_lex_state = 5}, - [1098] = {.lex_state = 11, .external_lex_state = 7}, - [1099] = {.lex_state = 66, .external_lex_state = 5}, - [1100] = {.lex_state = 66, .external_lex_state = 5}, + [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 = 2}, + [1100] = {.lex_state = 66, .external_lex_state = 2}, [1101] = {.lex_state = 66, .external_lex_state = 2}, [1102] = {.lex_state = 66, .external_lex_state = 2}, [1103] = {.lex_state = 66, .external_lex_state = 2}, - [1104] = {.lex_state = 11, .external_lex_state = 6}, - [1105] = {.lex_state = 66, .external_lex_state = 3}, - [1106] = {.lex_state = 66, .external_lex_state = 3}, - [1107] = {.lex_state = 66, .external_lex_state = 2}, - [1108] = {.lex_state = 66, .external_lex_state = 2}, - [1109] = {.lex_state = 66, .external_lex_state = 2}, + [1104] = {.lex_state = 66, .external_lex_state = 6}, + [1105] = {.lex_state = 66, .external_lex_state = 2}, + [1106] = {.lex_state = 66, .external_lex_state = 2}, + [1107] = {.lex_state = 66, .external_lex_state = 3}, + [1108] = {.lex_state = 66, .external_lex_state = 3}, + [1109] = {.lex_state = 66, .external_lex_state = 3}, [1110] = {.lex_state = 66, .external_lex_state = 2}, - [1111] = {.lex_state = 66, .external_lex_state = 3}, - [1112] = {.lex_state = 66, .external_lex_state = 3}, - [1113] = {.lex_state = 66, .external_lex_state = 3}, - [1114] = {.lex_state = 66, .external_lex_state = 3}, - [1115] = {.lex_state = 66, .external_lex_state = 6}, - [1116] = {.lex_state = 66, .external_lex_state = 2}, - [1117] = {.lex_state = 66, .external_lex_state = 8}, - [1118] = {.lex_state = 66, .external_lex_state = 2}, + [1111] = {.lex_state = 66, .external_lex_state = 2}, + [1112] = {.lex_state = 66, .external_lex_state = 2}, + [1113] = {.lex_state = 66, .external_lex_state = 2}, + [1114] = {.lex_state = 66, .external_lex_state = 2}, + [1115] = {.lex_state = 66, .external_lex_state = 2}, + [1116] = {.lex_state = 66, .external_lex_state = 3}, + [1117] = {.lex_state = 66, .external_lex_state = 2}, + [1118] = {.lex_state = 66, .external_lex_state = 5}, [1119] = {.lex_state = 66, .external_lex_state = 2}, - [1120] = {.lex_state = 66, .external_lex_state = 8}, + [1120] = {.lex_state = 66, .external_lex_state = 2}, [1121] = {.lex_state = 66, .external_lex_state = 2}, - [1122] = {.lex_state = 66, .external_lex_state = 8}, - [1123] = {.lex_state = 66, .external_lex_state = 3}, - [1124] = {.lex_state = 66, .external_lex_state = 3}, - [1125] = {.lex_state = 66, .external_lex_state = 3}, + [1122] = {.lex_state = 66, .external_lex_state = 2}, + [1123] = {.lex_state = 66, .external_lex_state = 2}, + [1124] = {.lex_state = 66, .external_lex_state = 2}, + [1125] = {.lex_state = 66, .external_lex_state = 6}, [1126] = {.lex_state = 66, .external_lex_state = 2}, - [1127] = {.lex_state = 66, .external_lex_state = 2}, - [1128] = {.lex_state = 66, .external_lex_state = 2}, + [1127] = {.lex_state = 66, .external_lex_state = 5}, + [1128] = {.lex_state = 66, .external_lex_state = 5}, [1129] = {.lex_state = 66, .external_lex_state = 2}, - [1130] = {.lex_state = 66, .external_lex_state = 3}, - [1131] = {.lex_state = 66, .external_lex_state = 3}, - [1132] = {.lex_state = 66, .external_lex_state = 2}, + [1130] = {.lex_state = 66, .external_lex_state = 5}, + [1131] = {.lex_state = 66, .external_lex_state = 8}, + [1132] = {.lex_state = 11, .external_lex_state = 7}, [1133] = {.lex_state = 66, .external_lex_state = 2}, - [1134] = {.lex_state = 66, .external_lex_state = 8}, - [1135] = {.lex_state = 66, .external_lex_state = 2}, + [1134] = {.lex_state = 66, .external_lex_state = 2}, + [1135] = {.lex_state = 66, .external_lex_state = 8}, [1136] = {.lex_state = 66, .external_lex_state = 2}, [1137] = {.lex_state = 66, .external_lex_state = 2}, [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}, + [1139] = {.lex_state = 66, .external_lex_state = 6}, + [1140] = {.lex_state = 11, .external_lex_state = 6}, + [1141] = {.lex_state = 11, .external_lex_state = 6}, + [1142] = {.lex_state = 11, .external_lex_state = 7}, [1143] = {.lex_state = 66, .external_lex_state = 2}, - [1144] = {.lex_state = 66, .external_lex_state = 2}, - [1145] = {.lex_state = 66, .external_lex_state = 2}, - [1146] = {.lex_state = 66, .external_lex_state = 2}, + [1144] = {.lex_state = 66, .external_lex_state = 3}, + [1145] = {.lex_state = 66, .external_lex_state = 3}, + [1146] = {.lex_state = 66, .external_lex_state = 5}, [1147] = {.lex_state = 66, .external_lex_state = 2}, [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 = 7}, - [1156] = {.lex_state = 66, .external_lex_state = 7}, + [1152] = {.lex_state = 66, .external_lex_state = 3}, + [1153] = {.lex_state = 66, .external_lex_state = 3}, + [1154] = {.lex_state = 66, .external_lex_state = 3}, + [1155] = {.lex_state = 66, .external_lex_state = 3}, + [1156] = {.lex_state = 66, .external_lex_state = 3}, [1157] = {.lex_state = 66, .external_lex_state = 8}, - [1158] = {.lex_state = 66, .external_lex_state = 2}, + [1158] = {.lex_state = 66, .external_lex_state = 8}, [1159] = {.lex_state = 66, .external_lex_state = 3}, [1160] = {.lex_state = 66, .external_lex_state = 2}, - [1161] = {.lex_state = 66, .external_lex_state = 2}, + [1161] = {.lex_state = 66, .external_lex_state = 3}, [1162] = {.lex_state = 66, .external_lex_state = 2}, - [1163] = {.lex_state = 66, .external_lex_state = 2}, - [1164] = {.lex_state = 66, .external_lex_state = 2}, + [1163] = {.lex_state = 66, .external_lex_state = 3}, + [1164] = {.lex_state = 66, .external_lex_state = 3}, [1165] = {.lex_state = 66, .external_lex_state = 2}, [1166] = {.lex_state = 66, .external_lex_state = 2}, [1167] = {.lex_state = 66, .external_lex_state = 2}, @@ -14307,15 +14502,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1181] = {.lex_state = 66, .external_lex_state = 2}, [1182] = {.lex_state = 66, .external_lex_state = 2}, [1183] = {.lex_state = 66, .external_lex_state = 2}, - [1184] = {.lex_state = 66, .external_lex_state = 2}, + [1184] = {.lex_state = 66, .external_lex_state = 3}, [1185] = {.lex_state = 66, .external_lex_state = 2}, - [1186] = {.lex_state = 66, .external_lex_state = 2}, + [1186] = {.lex_state = 66, .external_lex_state = 3}, [1187] = {.lex_state = 66, .external_lex_state = 2}, - [1188] = {.lex_state = 66, .external_lex_state = 2}, - [1189] = {.lex_state = 66, .external_lex_state = 2}, - [1190] = {.lex_state = 66, .external_lex_state = 2}, - [1191] = {.lex_state = 66, .external_lex_state = 2}, - [1192] = {.lex_state = 66, .external_lex_state = 2}, + [1188] = {.lex_state = 66, .external_lex_state = 3}, + [1189] = {.lex_state = 66, .external_lex_state = 7}, + [1190] = {.lex_state = 66, .external_lex_state = 7}, + [1191] = {.lex_state = 66, .external_lex_state = 3}, + [1192] = {.lex_state = 66, .external_lex_state = 6}, [1193] = {.lex_state = 66, .external_lex_state = 2}, [1194] = {.lex_state = 66, .external_lex_state = 2}, [1195] = {.lex_state = 66, .external_lex_state = 2}, @@ -14398,7 +14593,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1272] = {.lex_state = 66, .external_lex_state = 2}, [1273] = {.lex_state = 66, .external_lex_state = 2}, [1274] = {.lex_state = 66, .external_lex_state = 2}, - [1275] = {.lex_state = 11, .external_lex_state = 2}, + [1275] = {.lex_state = 66, .external_lex_state = 2}, [1276] = {.lex_state = 66, .external_lex_state = 2}, [1277] = {.lex_state = 66, .external_lex_state = 2}, [1278] = {.lex_state = 66, .external_lex_state = 2}, @@ -14419,7 +14614,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1293] = {.lex_state = 66, .external_lex_state = 2}, [1294] = {.lex_state = 66, .external_lex_state = 2}, [1295] = {.lex_state = 66, .external_lex_state = 2}, - [1296] = {.lex_state = 66, .external_lex_state = 3}, + [1296] = {.lex_state = 66, .external_lex_state = 2}, [1297] = {.lex_state = 66, .external_lex_state = 2}, [1298] = {.lex_state = 66, .external_lex_state = 2}, [1299] = {.lex_state = 66, .external_lex_state = 2}, @@ -14427,7 +14622,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1301] = {.lex_state = 66, .external_lex_state = 2}, [1302] = {.lex_state = 66, .external_lex_state = 2}, [1303] = {.lex_state = 66, .external_lex_state = 2}, - [1304] = {.lex_state = 11, .external_lex_state = 2}, + [1304] = {.lex_state = 66, .external_lex_state = 2}, [1305] = {.lex_state = 66, .external_lex_state = 2}, [1306] = {.lex_state = 66, .external_lex_state = 2}, [1307] = {.lex_state = 66, .external_lex_state = 2}, @@ -14473,11 +14668,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1347] = {.lex_state = 66, .external_lex_state = 2}, [1348] = {.lex_state = 66, .external_lex_state = 2}, [1349] = {.lex_state = 66, .external_lex_state = 2}, - [1350] = {.lex_state = 66, .external_lex_state = 3}, + [1350] = {.lex_state = 66, .external_lex_state = 2}, [1351] = {.lex_state = 66, .external_lex_state = 2}, [1352] = {.lex_state = 66, .external_lex_state = 2}, [1353] = {.lex_state = 66, .external_lex_state = 2}, - [1354] = {.lex_state = 66, .external_lex_state = 2}, + [1354] = {.lex_state = 11, .external_lex_state = 2}, [1355] = {.lex_state = 66, .external_lex_state = 2}, [1356] = {.lex_state = 66, .external_lex_state = 2}, [1357] = {.lex_state = 66, .external_lex_state = 2}, @@ -14494,8 +14689,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1368] = {.lex_state = 66, .external_lex_state = 2}, [1369] = {.lex_state = 66, .external_lex_state = 2}, [1370] = {.lex_state = 66, .external_lex_state = 2}, - [1371] = {.lex_state = 66, .external_lex_state = 2}, - [1372] = {.lex_state = 66, .external_lex_state = 2}, + [1371] = {.lex_state = 66, .external_lex_state = 3}, + [1372] = {.lex_state = 11, .external_lex_state = 2}, [1373] = {.lex_state = 66, .external_lex_state = 2}, [1374] = {.lex_state = 66, .external_lex_state = 2}, [1375] = {.lex_state = 66, .external_lex_state = 2}, @@ -14509,14 +14704,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, - [1387] = {.lex_state = 66, .external_lex_state = 3}, - [1388] = {.lex_state = 66, .external_lex_state = 3}, + [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 = 3}, + [1390] = {.lex_state = 66, .external_lex_state = 2}, [1391] = {.lex_state = 66, .external_lex_state = 2}, [1392] = {.lex_state = 66, .external_lex_state = 2}, - [1393] = {.lex_state = 66, .external_lex_state = 2}, + [1393] = {.lex_state = 66, .external_lex_state = 3}, [1394] = {.lex_state = 66, .external_lex_state = 2}, [1395] = {.lex_state = 66, .external_lex_state = 2}, [1396] = {.lex_state = 66, .external_lex_state = 2}, @@ -14529,7 +14724,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1403] = {.lex_state = 66, .external_lex_state = 2}, [1404] = {.lex_state = 66, .external_lex_state = 2}, [1405] = {.lex_state = 66, .external_lex_state = 2}, - [1406] = {.lex_state = 66, .external_lex_state = 3}, + [1406] = {.lex_state = 66, .external_lex_state = 2}, [1407] = {.lex_state = 66, .external_lex_state = 2}, [1408] = {.lex_state = 66, .external_lex_state = 2}, [1409] = {.lex_state = 66, .external_lex_state = 2}, @@ -14542,19 +14737,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1416] = {.lex_state = 66, .external_lex_state = 2}, [1417] = {.lex_state = 66, .external_lex_state = 2}, [1418] = {.lex_state = 66, .external_lex_state = 2}, - [1419] = {.lex_state = 11, .external_lex_state = 2}, + [1419] = {.lex_state = 66, .external_lex_state = 2}, [1420] = {.lex_state = 66, .external_lex_state = 2}, [1421] = {.lex_state = 66, .external_lex_state = 2}, [1422] = {.lex_state = 66, .external_lex_state = 2}, [1423] = {.lex_state = 66, .external_lex_state = 2}, - [1424] = {.lex_state = 66, .external_lex_state = 3}, + [1424] = {.lex_state = 66, .external_lex_state = 2}, [1425] = {.lex_state = 66, .external_lex_state = 2}, [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 = 66, .external_lex_state = 2}, [1430] = {.lex_state = 66, .external_lex_state = 2}, - [1431] = {.lex_state = 66, .external_lex_state = 3}, + [1431] = {.lex_state = 66, .external_lex_state = 2}, [1432] = {.lex_state = 66, .external_lex_state = 2}, [1433] = {.lex_state = 66, .external_lex_state = 2}, [1434] = {.lex_state = 66, .external_lex_state = 2}, @@ -14566,7 +14761,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1440] = {.lex_state = 66, .external_lex_state = 2}, [1441] = {.lex_state = 66, .external_lex_state = 2}, [1442] = {.lex_state = 66, .external_lex_state = 2}, - [1443] = {.lex_state = 11, .external_lex_state = 2}, + [1443] = {.lex_state = 66, .external_lex_state = 2}, [1444] = {.lex_state = 66, .external_lex_state = 2}, [1445] = {.lex_state = 66, .external_lex_state = 2}, [1446] = {.lex_state = 66, .external_lex_state = 2}, @@ -14599,9 +14794,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1473] = {.lex_state = 66, .external_lex_state = 2}, [1474] = {.lex_state = 66, .external_lex_state = 2}, [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}, + [1478] = {.lex_state = 66, .external_lex_state = 3}, [1479] = {.lex_state = 66, .external_lex_state = 2}, [1480] = {.lex_state = 66, .external_lex_state = 2}, [1481] = {.lex_state = 66, .external_lex_state = 2}, @@ -14609,10 +14804,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1483] = {.lex_state = 66, .external_lex_state = 2}, [1484] = {.lex_state = 66, .external_lex_state = 2}, [1485] = {.lex_state = 66, .external_lex_state = 2}, - [1486] = {.lex_state = 66, .external_lex_state = 2}, + [1486] = {.lex_state = 66, .external_lex_state = 3}, [1487] = {.lex_state = 66, .external_lex_state = 2}, [1488] = {.lex_state = 66, .external_lex_state = 2}, - [1489] = {.lex_state = 66, .external_lex_state = 2}, + [1489] = {.lex_state = 66, .external_lex_state = 3}, [1490] = {.lex_state = 66, .external_lex_state = 2}, [1491] = {.lex_state = 66, .external_lex_state = 2}, [1492] = {.lex_state = 66, .external_lex_state = 2}, @@ -14620,108 +14815,108 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1494] = {.lex_state = 66, .external_lex_state = 2}, [1495] = {.lex_state = 66, .external_lex_state = 2}, [1496] = {.lex_state = 66, .external_lex_state = 2}, - [1497] = {.lex_state = 66, .external_lex_state = 2}, + [1497] = {.lex_state = 66, .external_lex_state = 3}, [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}, + [1502] = {.lex_state = 66, .external_lex_state = 3}, [1503] = {.lex_state = 66, .external_lex_state = 2}, [1504] = {.lex_state = 66, .external_lex_state = 2}, - [1505] = {.lex_state = 66, .external_lex_state = 2}, - [1506] = {.lex_state = 66, .external_lex_state = 2}, - [1507] = {.lex_state = 66, .external_lex_state = 2}, + [1505] = {.lex_state = 66, .external_lex_state = 3}, + [1506] = {.lex_state = 66, .external_lex_state = 3}, + [1507] = {.lex_state = 66, .external_lex_state = 3}, [1508] = {.lex_state = 66, .external_lex_state = 2}, [1509] = {.lex_state = 66, .external_lex_state = 3}, - [1510] = {.lex_state = 66, .external_lex_state = 2}, + [1510] = {.lex_state = 66, .external_lex_state = 3}, [1511] = {.lex_state = 66, .external_lex_state = 2}, - [1512] = {.lex_state = 66, .external_lex_state = 2}, + [1512] = {.lex_state = 66, .external_lex_state = 3}, [1513] = {.lex_state = 66, .external_lex_state = 3}, - [1514] = {.lex_state = 66, .external_lex_state = 2}, - [1515] = {.lex_state = 66, .external_lex_state = 3}, + [1514] = {.lex_state = 66, .external_lex_state = 3}, + [1515] = {.lex_state = 66, .external_lex_state = 2}, [1516] = {.lex_state = 66, .external_lex_state = 2}, - [1517] = {.lex_state = 66, .external_lex_state = 2}, + [1517] = {.lex_state = 66, .external_lex_state = 3}, [1518] = {.lex_state = 66, .external_lex_state = 3}, [1519] = {.lex_state = 66, .external_lex_state = 2}, [1520] = {.lex_state = 66, .external_lex_state = 2}, [1521] = {.lex_state = 66, .external_lex_state = 2}, - [1522] = {.lex_state = 66, .external_lex_state = 3}, - [1523] = {.lex_state = 66, .external_lex_state = 2}, - [1524] = {.lex_state = 66, .external_lex_state = 2}, - [1525] = {.lex_state = 66, .external_lex_state = 2}, + [1522] = {.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 = 3}, - [1529] = {.lex_state = 66, .external_lex_state = 2}, + [1528] = {.lex_state = 66, .external_lex_state = 2}, + [1529] = {.lex_state = 66, .external_lex_state = 3}, [1530] = {.lex_state = 66, .external_lex_state = 2}, [1531] = {.lex_state = 66, .external_lex_state = 3}, [1532] = {.lex_state = 66, .external_lex_state = 3}, [1533] = {.lex_state = 66, .external_lex_state = 3}, - [1534] = {.lex_state = 66, .external_lex_state = 2}, + [1534] = {.lex_state = 66, .external_lex_state = 3}, [1535] = {.lex_state = 66, .external_lex_state = 3}, [1536] = {.lex_state = 66, .external_lex_state = 3}, [1537] = {.lex_state = 66, .external_lex_state = 3}, [1538] = {.lex_state = 66, .external_lex_state = 2}, - [1539] = {.lex_state = 66, .external_lex_state = 3}, - [1540] = {.lex_state = 66, .external_lex_state = 2}, - [1541] = {.lex_state = 66, .external_lex_state = 3}, - [1542] = {.lex_state = 66, .external_lex_state = 2}, - [1543] = {.lex_state = 66, .external_lex_state = 2}, + [1539] = {.lex_state = 66, .external_lex_state = 2}, + [1540] = {.lex_state = 66, .external_lex_state = 3}, + [1541] = {.lex_state = 66, .external_lex_state = 2}, + [1542] = {.lex_state = 66, .external_lex_state = 3}, + [1543] = {.lex_state = 66, .external_lex_state = 3}, [1544] = {.lex_state = 66, .external_lex_state = 2}, [1545] = {.lex_state = 66, .external_lex_state = 3}, [1546] = {.lex_state = 66, .external_lex_state = 3}, - [1547] = {.lex_state = 66, .external_lex_state = 2}, + [1547] = {.lex_state = 66, .external_lex_state = 3}, [1548] = {.lex_state = 66, .external_lex_state = 2}, - [1549] = {.lex_state = 66, .external_lex_state = 3}, - [1550] = {.lex_state = 66, .external_lex_state = 3}, - [1551] = {.lex_state = 66, .external_lex_state = 3}, + [1549] = {.lex_state = 66, .external_lex_state = 2}, + [1550] = {.lex_state = 66, .external_lex_state = 2}, + [1551] = {.lex_state = 66, .external_lex_state = 2}, [1552] = {.lex_state = 66, .external_lex_state = 2}, [1553] = {.lex_state = 66, .external_lex_state = 2}, - [1554] = {.lex_state = 66, .external_lex_state = 2}, - [1555] = {.lex_state = 66, .external_lex_state = 2}, + [1554] = {.lex_state = 66, .external_lex_state = 3}, + [1555] = {.lex_state = 66, .external_lex_state = 3}, [1556] = {.lex_state = 66, .external_lex_state = 2}, - [1557] = {.lex_state = 66, .external_lex_state = 3}, - [1558] = {.lex_state = 66, .external_lex_state = 3}, + [1557] = {.lex_state = 66, .external_lex_state = 2}, + [1558] = {.lex_state = 66, .external_lex_state = 2}, [1559] = {.lex_state = 66, .external_lex_state = 2}, [1560] = {.lex_state = 66, .external_lex_state = 3}, [1561] = {.lex_state = 66, .external_lex_state = 3}, - [1562] = {.lex_state = 66, .external_lex_state = 3}, + [1562] = {.lex_state = 66, .external_lex_state = 2}, [1563] = {.lex_state = 66, .external_lex_state = 2}, [1564] = {.lex_state = 66, .external_lex_state = 3}, [1565] = {.lex_state = 66, .external_lex_state = 3}, [1566] = {.lex_state = 66, .external_lex_state = 3}, - [1567] = {.lex_state = 66, .external_lex_state = 2}, - [1568] = {.lex_state = 66, .external_lex_state = 3}, - [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}, + [1567] = {.lex_state = 66, .external_lex_state = 3}, + [1568] = {.lex_state = 66, .external_lex_state = 2}, + [1569] = {.lex_state = 66, .external_lex_state = 3}, + [1570] = {.lex_state = 66, .external_lex_state = 3}, + [1571] = {.lex_state = 66, .external_lex_state = 3}, + [1572] = {.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 = 3}, - [1576] = {.lex_state = 66, .external_lex_state = 2}, + [1575] = {.lex_state = 66, .external_lex_state = 2}, + [1576] = {.lex_state = 66, .external_lex_state = 3}, [1577] = {.lex_state = 66, .external_lex_state = 2}, - [1578] = {.lex_state = 66, .external_lex_state = 3}, + [1578] = {.lex_state = 66, .external_lex_state = 2}, [1579] = {.lex_state = 66, .external_lex_state = 2}, - [1580] = {.lex_state = 66, .external_lex_state = 3}, + [1580] = {.lex_state = 66, .external_lex_state = 2}, [1581] = {.lex_state = 66, .external_lex_state = 2}, - [1582] = {.lex_state = 66, .external_lex_state = 3}, + [1582] = {.lex_state = 66, .external_lex_state = 2}, [1583] = {.lex_state = 66, .external_lex_state = 2}, - [1584] = {.lex_state = 66, .external_lex_state = 3}, + [1584] = {.lex_state = 66, .external_lex_state = 2}, [1585] = {.lex_state = 66, .external_lex_state = 2}, [1586] = {.lex_state = 66, .external_lex_state = 2}, [1587] = {.lex_state = 66, .external_lex_state = 2}, [1588] = {.lex_state = 66, .external_lex_state = 2}, - [1589] = {.lex_state = 66, .external_lex_state = 2}, - [1590] = {.lex_state = 66, .external_lex_state = 2}, + [1589] = {.lex_state = 66, .external_lex_state = 3}, + [1590] = {.lex_state = 66, .external_lex_state = 3}, [1591] = {.lex_state = 66, .external_lex_state = 2}, - [1592] = {.lex_state = 66, .external_lex_state = 2}, - [1593] = {.lex_state = 66, .external_lex_state = 2}, - [1594] = {.lex_state = 66, .external_lex_state = 2}, - [1595] = {.lex_state = 66, .external_lex_state = 2}, + [1592] = {.lex_state = 66, .external_lex_state = 3}, + [1593] = {.lex_state = 66, .external_lex_state = 3}, + [1594] = {.lex_state = 66, .external_lex_state = 3}, + [1595] = {.lex_state = 66, .external_lex_state = 3}, [1596] = {.lex_state = 66, .external_lex_state = 2}, [1597] = {.lex_state = 66, .external_lex_state = 2}, - [1598] = {.lex_state = 66, .external_lex_state = 2}, + [1598] = {.lex_state = 66, .external_lex_state = 3}, [1599] = {.lex_state = 66, .external_lex_state = 2}, [1600] = {.lex_state = 66, .external_lex_state = 2}, [1601] = {.lex_state = 66, .external_lex_state = 2}, @@ -14733,7 +14928,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1607] = {.lex_state = 66, .external_lex_state = 3}, [1608] = {.lex_state = 66, .external_lex_state = 2}, [1609] = {.lex_state = 66, .external_lex_state = 2}, - [1610] = {.lex_state = 66, .external_lex_state = 3}, + [1610] = {.lex_state = 66, .external_lex_state = 2}, [1611] = {.lex_state = 66, .external_lex_state = 2}, [1612] = {.lex_state = 66, .external_lex_state = 2}, [1613] = {.lex_state = 66, .external_lex_state = 2}, @@ -14765,14 +14960,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1639] = {.lex_state = 66, .external_lex_state = 2}, [1640] = {.lex_state = 66, .external_lex_state = 2}, [1641] = {.lex_state = 66, .external_lex_state = 2}, - [1642] = {.lex_state = 66, .external_lex_state = 3}, + [1642] = {.lex_state = 66, .external_lex_state = 2}, [1643] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 3}, - [1647] = {.lex_state = 66, .external_lex_state = 3}, + [1646] = {.lex_state = 66, .external_lex_state = 2}, + [1647] = {.lex_state = 66, .external_lex_state = 2}, [1648] = {.lex_state = 66, .external_lex_state = 2}, - [1649] = {.lex_state = 66, .external_lex_state = 3}, + [1649] = {.lex_state = 66, .external_lex_state = 2}, [1650] = {.lex_state = 66, .external_lex_state = 2}, [1651] = {.lex_state = 66, .external_lex_state = 2}, [1652] = {.lex_state = 66, .external_lex_state = 2}, @@ -14785,24 +14980,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1659] = {.lex_state = 66, .external_lex_state = 2}, [1660] = {.lex_state = 66, .external_lex_state = 2}, [1661] = {.lex_state = 66, .external_lex_state = 2}, - [1662] = {.lex_state = 66, .external_lex_state = 3}, - [1663] = {.lex_state = 66, .external_lex_state = 3}, - [1664] = {.lex_state = 66, .external_lex_state = 3}, - [1665] = {.lex_state = 66, .external_lex_state = 3}, + [1662] = {.lex_state = 66, .external_lex_state = 2}, + [1663] = {.lex_state = 66, .external_lex_state = 2}, + [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 = 2}, [1668] = {.lex_state = 66, .external_lex_state = 2}, [1669] = {.lex_state = 66, .external_lex_state = 2}, [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}, + [1672] = {.lex_state = 66, .external_lex_state = 3}, + [1673] = {.lex_state = 66, .external_lex_state = 3}, [1674] = {.lex_state = 66, .external_lex_state = 2}, - [1675] = {.lex_state = 66, .external_lex_state = 2}, + [1675] = {.lex_state = 66, .external_lex_state = 3}, [1676] = {.lex_state = 66, .external_lex_state = 3}, - [1677] = {.lex_state = 66, .external_lex_state = 2}, - [1678] = {.lex_state = 66, .external_lex_state = 3}, - [1679] = {.lex_state = 66, .external_lex_state = 2}, + [1677] = {.lex_state = 66, .external_lex_state = 3}, + [1678] = {.lex_state = 66, .external_lex_state = 2}, + [1679] = {.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}, @@ -14815,9 +15010,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1689] = {.lex_state = 66, .external_lex_state = 2}, [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}, + [1692] = {.lex_state = 66, .external_lex_state = 3}, + [1693] = {.lex_state = 66, .external_lex_state = 3}, + [1694] = {.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}, @@ -14828,7 +15023,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1705] = {.lex_state = 66, .external_lex_state = 3}, [1706] = {.lex_state = 66, .external_lex_state = 2}, [1707] = {.lex_state = 66, .external_lex_state = 2}, [1708] = {.lex_state = 66, .external_lex_state = 2}, @@ -14856,9 +15051,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [1733] = {.lex_state = 66, .external_lex_state = 2}, [1734] = {.lex_state = 66, .external_lex_state = 2}, - [1735] = {.lex_state = 66, .external_lex_state = 3}, + [1735] = {.lex_state = 66, .external_lex_state = 2}, [1736] = {.lex_state = 66, .external_lex_state = 2}, [1737] = {.lex_state = 66, .external_lex_state = 2}, [1738] = {.lex_state = 66, .external_lex_state = 2}, @@ -14867,7 +15062,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1741] = {.lex_state = 66, .external_lex_state = 2}, [1742] = {.lex_state = 66, .external_lex_state = 2}, [1743] = {.lex_state = 66, .external_lex_state = 2}, - [1744] = {.lex_state = 66, .external_lex_state = 2}, + [1744] = {.lex_state = 11, .external_lex_state = 2}, [1745] = {.lex_state = 66, .external_lex_state = 2}, [1746] = {.lex_state = 66, .external_lex_state = 2}, [1747] = {.lex_state = 66, .external_lex_state = 2}, @@ -14878,18 +15073,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1752] = {.lex_state = 66, .external_lex_state = 2}, [1753] = {.lex_state = 66, .external_lex_state = 2}, [1754] = {.lex_state = 66, .external_lex_state = 2}, - [1755] = {.lex_state = 66, .external_lex_state = 3}, + [1755] = {.lex_state = 66, .external_lex_state = 2}, [1756] = {.lex_state = 66, .external_lex_state = 2}, - [1757] = {.lex_state = 66, .external_lex_state = 3}, + [1757] = {.lex_state = 66, .external_lex_state = 2}, [1758] = {.lex_state = 66, .external_lex_state = 2}, [1759] = {.lex_state = 66, .external_lex_state = 2}, [1760] = {.lex_state = 66, .external_lex_state = 2}, [1761] = {.lex_state = 66, .external_lex_state = 2}, [1762] = {.lex_state = 66, .external_lex_state = 2}, [1763] = {.lex_state = 66, .external_lex_state = 2}, - [1764] = {.lex_state = 66, .external_lex_state = 3}, + [1764] = {.lex_state = 66, .external_lex_state = 2}, [1765] = {.lex_state = 66, .external_lex_state = 2}, - [1766] = {.lex_state = 66, .external_lex_state = 3}, + [1766] = {.lex_state = 66, .external_lex_state = 2}, [1767] = {.lex_state = 66, .external_lex_state = 2}, [1768] = {.lex_state = 66, .external_lex_state = 2}, [1769] = {.lex_state = 66, .external_lex_state = 2}, @@ -14900,7 +15095,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1774] = {.lex_state = 66, .external_lex_state = 2}, [1775] = {.lex_state = 66, .external_lex_state = 2}, [1776] = {.lex_state = 66, .external_lex_state = 2}, - [1777] = {.lex_state = 66, .external_lex_state = 2}, + [1777] = {.lex_state = 11, .external_lex_state = 2}, [1778] = {.lex_state = 66, .external_lex_state = 2}, [1779] = {.lex_state = 66, .external_lex_state = 2}, [1780] = {.lex_state = 66, .external_lex_state = 2}, @@ -14908,7 +15103,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1782] = {.lex_state = 66, .external_lex_state = 2}, [1783] = {.lex_state = 66, .external_lex_state = 2}, [1784] = {.lex_state = 66, .external_lex_state = 2}, - [1785] = {.lex_state = 66, .external_lex_state = 2}, + [1785] = {.lex_state = 66, .external_lex_state = 3}, [1786] = {.lex_state = 66, .external_lex_state = 2}, [1787] = {.lex_state = 66, .external_lex_state = 2}, [1788] = {.lex_state = 66, .external_lex_state = 2}, @@ -14957,89 +15152,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 11, .external_lex_state = 6}, - [1835] = {.lex_state = 11, .external_lex_state = 8}, - [1836] = {.lex_state = 11, .external_lex_state = 6}, - [1837] = {.lex_state = 11, .external_lex_state = 8}, - [1838] = {.lex_state = 11, .external_lex_state = 2}, - [1839] = {.lex_state = 12, .external_lex_state = 11}, - [1840] = {.lex_state = 12, .external_lex_state = 11}, - [1841] = {.lex_state = 13, .external_lex_state = 12}, - [1842] = {.lex_state = 66, .external_lex_state = 7}, - [1843] = {.lex_state = 66, .external_lex_state = 7}, - [1844] = {.lex_state = 13, .external_lex_state = 12}, - [1845] = {.lex_state = 12, .external_lex_state = 5}, + [1834] = {.lex_state = 66, .external_lex_state = 2}, + [1835] = {.lex_state = 66, .external_lex_state = 2}, + [1836] = {.lex_state = 66, .external_lex_state = 2}, + [1837] = {.lex_state = 66, .external_lex_state = 2}, + [1838] = {.lex_state = 66, .external_lex_state = 2}, + [1839] = {.lex_state = 66, .external_lex_state = 2}, + [1840] = {.lex_state = 66, .external_lex_state = 2}, + [1841] = {.lex_state = 66, .external_lex_state = 2}, + [1842] = {.lex_state = 66, .external_lex_state = 2}, + [1843] = {.lex_state = 66, .external_lex_state = 2}, + [1844] = {.lex_state = 66, .external_lex_state = 2}, + [1845] = {.lex_state = 66, .external_lex_state = 2}, [1846] = {.lex_state = 66, .external_lex_state = 2}, - [1847] = {.lex_state = 12, .external_lex_state = 5}, + [1847] = {.lex_state = 66, .external_lex_state = 2}, [1848] = {.lex_state = 66, .external_lex_state = 2}, - [1849] = {.lex_state = 12, .external_lex_state = 11}, - [1850] = {.lex_state = 12, .external_lex_state = 11}, + [1849] = {.lex_state = 66, .external_lex_state = 2}, + [1850] = {.lex_state = 66, .external_lex_state = 2}, [1851] = {.lex_state = 66, .external_lex_state = 2}, [1852] = {.lex_state = 66, .external_lex_state = 2}, - [1853] = {.lex_state = 66, .external_lex_state = 5}, - [1854] = {.lex_state = 66, .external_lex_state = 6}, + [1853] = {.lex_state = 66, .external_lex_state = 2}, + [1854] = {.lex_state = 66, .external_lex_state = 2}, [1855] = {.lex_state = 66, .external_lex_state = 2}, - [1856] = {.lex_state = 66, .external_lex_state = 5}, - [1857] = {.lex_state = 66, .external_lex_state = 8}, - [1858] = {.lex_state = 66, .external_lex_state = 6}, - [1859] = {.lex_state = 66, .external_lex_state = 8}, + [1856] = {.lex_state = 66, .external_lex_state = 2}, + [1857] = {.lex_state = 66, .external_lex_state = 2}, + [1858] = {.lex_state = 66, .external_lex_state = 2}, + [1859] = {.lex_state = 66, .external_lex_state = 2}, [1860] = {.lex_state = 66, .external_lex_state = 2}, [1861] = {.lex_state = 66, .external_lex_state = 2}, [1862] = {.lex_state = 66, .external_lex_state = 2}, [1863] = {.lex_state = 66, .external_lex_state = 2}, - [1864] = {.lex_state = 12, .external_lex_state = 11}, + [1864] = {.lex_state = 66, .external_lex_state = 2}, [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 = 2}, [1869] = {.lex_state = 66, .external_lex_state = 2}, - [1870] = {.lex_state = 66, .external_lex_state = 6}, + [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 = 66, .external_lex_state = 6}, - [1876] = {.lex_state = 12, .external_lex_state = 11}, - [1877] = {.lex_state = 14, .external_lex_state = 11}, - [1878] = {.lex_state = 14, .external_lex_state = 11}, - [1879] = {.lex_state = 14, .external_lex_state = 11}, - [1880] = {.lex_state = 14, .external_lex_state = 11}, - [1881] = {.lex_state = 14, .external_lex_state = 11}, - [1882] = {.lex_state = 14, .external_lex_state = 11}, - [1883] = {.lex_state = 14, .external_lex_state = 11}, + [1872] = {.lex_state = 66, .external_lex_state = 2}, + [1873] = {.lex_state = 66, .external_lex_state = 2}, + [1874] = {.lex_state = 66, .external_lex_state = 2}, + [1875] = {.lex_state = 66, .external_lex_state = 2}, + [1876] = {.lex_state = 66, .external_lex_state = 2}, + [1877] = {.lex_state = 66, .external_lex_state = 2}, + [1878] = {.lex_state = 66, .external_lex_state = 2}, + [1879] = {.lex_state = 66, .external_lex_state = 2}, + [1880] = {.lex_state = 66, .external_lex_state = 3}, + [1881] = {.lex_state = 66, .external_lex_state = 2}, + [1882] = {.lex_state = 66, .external_lex_state = 2}, + [1883] = {.lex_state = 66, .external_lex_state = 2}, [1884] = {.lex_state = 66, .external_lex_state = 2}, - [1885] = {.lex_state = 14, .external_lex_state = 11}, - [1886] = {.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 = 66, .external_lex_state = 2}, [1888] = {.lex_state = 66, .external_lex_state = 2}, - [1889] = {.lex_state = 66, .external_lex_state = 2}, - [1890] = {.lex_state = 14, .external_lex_state = 11}, - [1891] = {.lex_state = 14, .external_lex_state = 11}, - [1892] = {.lex_state = 14, .external_lex_state = 11}, - [1893] = {.lex_state = 14, .external_lex_state = 11}, - [1894] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 14, .external_lex_state = 11}, - [1899] = {.lex_state = 14, .external_lex_state = 11}, - [1900] = {.lex_state = 14, .external_lex_state = 11}, - [1901] = {.lex_state = 66, .external_lex_state = 2}, - [1902] = {.lex_state = 66, .external_lex_state = 2}, + [1889] = {.lex_state = 66, .external_lex_state = 3}, + [1890] = {.lex_state = 11, .external_lex_state = 8}, + [1891] = {.lex_state = 11, .external_lex_state = 6}, + [1892] = {.lex_state = 11, .external_lex_state = 6}, + [1893] = {.lex_state = 11, .external_lex_state = 8}, + [1894] = {.lex_state = 11, .external_lex_state = 2}, + [1895] = {.lex_state = 12, .external_lex_state = 11}, + [1896] = {.lex_state = 12, .external_lex_state = 11}, + [1897] = {.lex_state = 13, .external_lex_state = 12}, + [1898] = {.lex_state = 66, .external_lex_state = 7}, + [1899] = {.lex_state = 66, .external_lex_state = 7}, + [1900] = {.lex_state = 13, .external_lex_state = 12}, + [1901] = {.lex_state = 12, .external_lex_state = 11}, + [1902] = {.lex_state = 12, .external_lex_state = 11}, [1903] = {.lex_state = 66, .external_lex_state = 2}, - [1904] = {.lex_state = 66, .external_lex_state = 2}, - [1905] = {.lex_state = 66, .external_lex_state = 2}, + [1904] = {.lex_state = 12, .external_lex_state = 5}, + [1905] = {.lex_state = 12, .external_lex_state = 5}, [1906] = {.lex_state = 66, .external_lex_state = 2}, - [1907] = {.lex_state = 66, .external_lex_state = 2}, + [1907] = {.lex_state = 66, .external_lex_state = 6}, [1908] = {.lex_state = 66, .external_lex_state = 2}, [1909] = {.lex_state = 66, .external_lex_state = 2}, - [1910] = {.lex_state = 66, .external_lex_state = 2}, + [1910] = {.lex_state = 66, .external_lex_state = 6}, [1911] = {.lex_state = 66, .external_lex_state = 2}, - [1912] = {.lex_state = 66, .external_lex_state = 2}, - [1913] = {.lex_state = 66, .external_lex_state = 2}, + [1912] = {.lex_state = 66, .external_lex_state = 5}, + [1913] = {.lex_state = 66, .external_lex_state = 8}, [1914] = {.lex_state = 66, .external_lex_state = 2}, - [1915] = {.lex_state = 66, .external_lex_state = 12}, - [1916] = {.lex_state = 66, .external_lex_state = 2}, + [1915] = {.lex_state = 66, .external_lex_state = 5}, + [1916] = {.lex_state = 66, .external_lex_state = 8}, [1917] = {.lex_state = 66, .external_lex_state = 2}, [1918] = {.lex_state = 66, .external_lex_state = 2}, [1919] = {.lex_state = 66, .external_lex_state = 2}, @@ -15048,40 +15243,40 @@ 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}, - [1926] = {.lex_state = 66, .external_lex_state = 2}, - [1927] = {.lex_state = 66, .external_lex_state = 2}, - [1928] = {.lex_state = 66, .external_lex_state = 2}, - [1929] = {.lex_state = 66, .external_lex_state = 2}, + [1925] = {.lex_state = 12, .external_lex_state = 11}, + [1926] = {.lex_state = 12, .external_lex_state = 11}, + [1927] = {.lex_state = 66, .external_lex_state = 6}, + [1928] = {.lex_state = 66, .external_lex_state = 6}, + [1929] = {.lex_state = 12, .external_lex_state = 11}, [1930] = {.lex_state = 66, .external_lex_state = 2}, - [1931] = {.lex_state = 66, .external_lex_state = 2}, - [1932] = {.lex_state = 66, .external_lex_state = 2}, - [1933] = {.lex_state = 66, .external_lex_state = 2}, - [1934] = {.lex_state = 66, .external_lex_state = 2}, - [1935] = {.lex_state = 66, .external_lex_state = 2}, - [1936] = {.lex_state = 66, .external_lex_state = 2}, - [1937] = {.lex_state = 66, .external_lex_state = 2}, - [1938] = {.lex_state = 66, .external_lex_state = 2}, - [1939] = {.lex_state = 66, .external_lex_state = 2}, - [1940] = {.lex_state = 66, .external_lex_state = 2}, - [1941] = {.lex_state = 66, .external_lex_state = 2}, - [1942] = {.lex_state = 66, .external_lex_state = 2}, - [1943] = {.lex_state = 66, .external_lex_state = 2}, - [1944] = {.lex_state = 66, .external_lex_state = 2}, - [1945] = {.lex_state = 66, .external_lex_state = 2}, - [1946] = {.lex_state = 66, .external_lex_state = 2}, + [1931] = {.lex_state = 66, .external_lex_state = 6}, + [1932] = {.lex_state = 12, .external_lex_state = 11}, + [1933] = {.lex_state = 14, .external_lex_state = 11}, + [1934] = {.lex_state = 14, .external_lex_state = 11}, + [1935] = {.lex_state = 14, .external_lex_state = 11}, + [1936] = {.lex_state = 14, .external_lex_state = 11}, + [1937] = {.lex_state = 14, .external_lex_state = 11}, + [1938] = {.lex_state = 14, .external_lex_state = 11}, + [1939] = {.lex_state = 14, .external_lex_state = 11}, + [1940] = {.lex_state = 14, .external_lex_state = 11}, + [1941] = {.lex_state = 14, .external_lex_state = 11}, + [1942] = {.lex_state = 14, .external_lex_state = 11}, + [1943] = {.lex_state = 14, .external_lex_state = 11}, + [1944] = {.lex_state = 14, .external_lex_state = 11}, + [1945] = {.lex_state = 14, .external_lex_state = 11}, + [1946] = {.lex_state = 14, .external_lex_state = 11}, [1947] = {.lex_state = 66, .external_lex_state = 2}, [1948] = {.lex_state = 66, .external_lex_state = 2}, [1949] = {.lex_state = 66, .external_lex_state = 2}, [1950] = {.lex_state = 66, .external_lex_state = 2}, - [1951] = {.lex_state = 66, .external_lex_state = 2}, - [1952] = {.lex_state = 66, .external_lex_state = 2}, + [1951] = {.lex_state = 14, .external_lex_state = 11}, + [1952] = {.lex_state = 14, .external_lex_state = 11}, [1953] = {.lex_state = 66, .external_lex_state = 2}, [1954] = {.lex_state = 66, .external_lex_state = 2}, [1955] = {.lex_state = 66, .external_lex_state = 2}, [1956] = {.lex_state = 66, .external_lex_state = 2}, - [1957] = {.lex_state = 66, .external_lex_state = 2}, - [1958] = {.lex_state = 66, .external_lex_state = 2}, + [1957] = {.lex_state = 14, .external_lex_state = 11}, + [1958] = {.lex_state = 14, .external_lex_state = 11}, [1959] = {.lex_state = 66, .external_lex_state = 2}, [1960] = {.lex_state = 66, .external_lex_state = 2}, [1961] = {.lex_state = 66, .external_lex_state = 2}, @@ -15102,7 +15297,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1976] = {.lex_state = 66, .external_lex_state = 2}, [1977] = {.lex_state = 66, .external_lex_state = 2}, [1978] = {.lex_state = 66, .external_lex_state = 2}, - [1979] = {.lex_state = 66, .external_lex_state = 2}, + [1979] = {.lex_state = 66, .external_lex_state = 12}, [1980] = {.lex_state = 66, .external_lex_state = 2}, [1981] = {.lex_state = 66, .external_lex_state = 2}, [1982] = {.lex_state = 66, .external_lex_state = 2}, @@ -15126,7 +15321,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2000] = {.lex_state = 66, .external_lex_state = 2}, [2001] = {.lex_state = 66, .external_lex_state = 2}, [2002] = {.lex_state = 66, .external_lex_state = 2}, - [2003] = {.lex_state = 66, .external_lex_state = 12}, + [2003] = {.lex_state = 66, .external_lex_state = 2}, [2004] = {.lex_state = 66, .external_lex_state = 2}, [2005] = {.lex_state = 66, .external_lex_state = 2}, [2006] = {.lex_state = 66, .external_lex_state = 2}, @@ -15134,698 +15329,698 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, - [2012] = {.lex_state = 66, .external_lex_state = 3}, - [2013] = {.lex_state = 66, .external_lex_state = 3}, - [2014] = {.lex_state = 66, .external_lex_state = 3}, - [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}, - [2019] = {.lex_state = 66, .external_lex_state = 13}, - [2020] = {.lex_state = 66, .external_lex_state = 13}, - [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 = 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}, - [2030] = {.lex_state = 66, .external_lex_state = 12}, - [2031] = {.lex_state = 15, .external_lex_state = 11}, - [2032] = {.lex_state = 15, .external_lex_state = 11}, - [2033] = {.lex_state = 66, .external_lex_state = 12}, - [2034] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 15, .external_lex_state = 11}, - [2039] = {.lex_state = 15, .external_lex_state = 11}, - [2040] = {.lex_state = 23, .external_lex_state = 14}, - [2041] = {.lex_state = 15, .external_lex_state = 5}, - [2042] = {.lex_state = 23, .external_lex_state = 14}, - [2043] = {.lex_state = 15, .external_lex_state = 5}, - [2044] = {.lex_state = 15, .external_lex_state = 5}, - [2045] = {.lex_state = 15, .external_lex_state = 11}, - [2046] = {.lex_state = 15, .external_lex_state = 15}, - [2047] = {.lex_state = 15, .external_lex_state = 15}, - [2048] = {.lex_state = 15, .external_lex_state = 11}, - [2049] = {.lex_state = 15, .external_lex_state = 15}, - [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 = 23, .external_lex_state = 14}, - [2055] = {.lex_state = 15, .external_lex_state = 11}, - [2056] = {.lex_state = 15, .external_lex_state = 11}, - [2057] = {.lex_state = 15, .external_lex_state = 11}, - [2058] = {.lex_state = 15, .external_lex_state = 11}, - [2059] = {.lex_state = 15, .external_lex_state = 11}, - [2060] = {.lex_state = 15, .external_lex_state = 11}, - [2061] = {.lex_state = 23, .external_lex_state = 14}, - [2062] = {.lex_state = 23, .external_lex_state = 11}, - [2063] = {.lex_state = 23, .external_lex_state = 11}, - [2064] = {.lex_state = 15, .external_lex_state = 11}, - [2065] = {.lex_state = 15, .external_lex_state = 16}, - [2066] = {.lex_state = 15, .external_lex_state = 14}, - [2067] = {.lex_state = 15, .external_lex_state = 14}, - [2068] = {.lex_state = 15, .external_lex_state = 12}, - [2069] = {.lex_state = 15, .external_lex_state = 5}, - [2070] = {.lex_state = 15, .external_lex_state = 12}, - [2071] = {.lex_state = 15, .external_lex_state = 5}, - [2072] = {.lex_state = 15, .external_lex_state = 16}, - [2073] = {.lex_state = 15, .external_lex_state = 7}, - [2074] = {.lex_state = 15, .external_lex_state = 11}, - [2075] = {.lex_state = 15, .external_lex_state = 7}, - [2076] = {.lex_state = 15, .external_lex_state = 11}, - [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 = 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}, - [2087] = {.lex_state = 15, .external_lex_state = 15}, - [2088] = {.lex_state = 15, .external_lex_state = 15}, - [2089] = {.lex_state = 15, .external_lex_state = 15}, - [2090] = {.lex_state = 15, .external_lex_state = 15}, + [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 = 2}, + [2015] = {.lex_state = 66, .external_lex_state = 2}, + [2016] = {.lex_state = 66, .external_lex_state = 2}, + [2017] = {.lex_state = 66, .external_lex_state = 2}, + [2018] = {.lex_state = 66, .external_lex_state = 2}, + [2019] = {.lex_state = 66, .external_lex_state = 2}, + [2020] = {.lex_state = 66, .external_lex_state = 2}, + [2021] = {.lex_state = 66, .external_lex_state = 2}, + [2022] = {.lex_state = 66, .external_lex_state = 2}, + [2023] = {.lex_state = 66, .external_lex_state = 2}, + [2024] = {.lex_state = 66, .external_lex_state = 2}, + [2025] = {.lex_state = 66, .external_lex_state = 2}, + [2026] = {.lex_state = 66, .external_lex_state = 2}, + [2027] = {.lex_state = 66, .external_lex_state = 2}, + [2028] = {.lex_state = 66, .external_lex_state = 2}, + [2029] = {.lex_state = 66, .external_lex_state = 2}, + [2030] = {.lex_state = 66, .external_lex_state = 2}, + [2031] = {.lex_state = 66, .external_lex_state = 2}, + [2032] = {.lex_state = 66, .external_lex_state = 2}, + [2033] = {.lex_state = 66, .external_lex_state = 2}, + [2034] = {.lex_state = 66, .external_lex_state = 2}, + [2035] = {.lex_state = 66, .external_lex_state = 2}, + [2036] = {.lex_state = 66, .external_lex_state = 2}, + [2037] = {.lex_state = 66, .external_lex_state = 2}, + [2038] = {.lex_state = 66, .external_lex_state = 2}, + [2039] = {.lex_state = 66, .external_lex_state = 2}, + [2040] = {.lex_state = 66, .external_lex_state = 2}, + [2041] = {.lex_state = 66, .external_lex_state = 2}, + [2042] = {.lex_state = 66, .external_lex_state = 2}, + [2043] = {.lex_state = 66, .external_lex_state = 2}, + [2044] = {.lex_state = 66, .external_lex_state = 2}, + [2045] = {.lex_state = 66, .external_lex_state = 2}, + [2046] = {.lex_state = 66, .external_lex_state = 2}, + [2047] = {.lex_state = 66, .external_lex_state = 2}, + [2048] = {.lex_state = 66, .external_lex_state = 2}, + [2049] = {.lex_state = 66, .external_lex_state = 12}, + [2050] = {.lex_state = 66, .external_lex_state = 2}, + [2051] = {.lex_state = 66, .external_lex_state = 2}, + [2052] = {.lex_state = 66, .external_lex_state = 2}, + [2053] = {.lex_state = 66, .external_lex_state = 2}, + [2054] = {.lex_state = 66, .external_lex_state = 2}, + [2055] = {.lex_state = 66, .external_lex_state = 2}, + [2056] = {.lex_state = 66, .external_lex_state = 2}, + [2057] = {.lex_state = 66, .external_lex_state = 2}, + [2058] = {.lex_state = 66, .external_lex_state = 2}, + [2059] = {.lex_state = 66, .external_lex_state = 2}, + [2060] = {.lex_state = 66, .external_lex_state = 2}, + [2061] = {.lex_state = 66, .external_lex_state = 2}, + [2062] = {.lex_state = 66, .external_lex_state = 2}, + [2063] = {.lex_state = 66, .external_lex_state = 2}, + [2064] = {.lex_state = 66, .external_lex_state = 2}, + [2065] = {.lex_state = 66, .external_lex_state = 2}, + [2066] = {.lex_state = 66, .external_lex_state = 2}, + [2067] = {.lex_state = 66, .external_lex_state = 3}, + [2068] = {.lex_state = 66, .external_lex_state = 3}, + [2069] = {.lex_state = 66, .external_lex_state = 3}, + [2070] = {.lex_state = 66, .external_lex_state = 3}, + [2071] = {.lex_state = 66, .external_lex_state = 13}, + [2072] = {.lex_state = 66, .external_lex_state = 13}, + [2073] = {.lex_state = 66, .external_lex_state = 13}, + [2074] = {.lex_state = 66, .external_lex_state = 13}, + [2075] = {.lex_state = 66, .external_lex_state = 13}, + [2076] = {.lex_state = 66, .external_lex_state = 13}, + [2077] = {.lex_state = 66, .external_lex_state = 13}, + [2078] = {.lex_state = 66, .external_lex_state = 13}, + [2079] = {.lex_state = 66, .external_lex_state = 13}, + [2080] = {.lex_state = 66, .external_lex_state = 13}, + [2081] = {.lex_state = 66, .external_lex_state = 13}, + [2082] = {.lex_state = 66, .external_lex_state = 12}, + [2083] = {.lex_state = 66, .external_lex_state = 12}, + [2084] = {.lex_state = 66, .external_lex_state = 12}, + [2085] = {.lex_state = 66, .external_lex_state = 12}, + [2086] = {.lex_state = 66, .external_lex_state = 12}, + [2087] = {.lex_state = 66, .external_lex_state = 12}, + [2088] = {.lex_state = 66, .external_lex_state = 12}, + [2089] = {.lex_state = 66, .external_lex_state = 12}, + [2090] = {.lex_state = 66, .external_lex_state = 12}, [2091] = {.lex_state = 15, .external_lex_state = 11}, - [2092] = {.lex_state = 15, .external_lex_state = 11}, + [2092] = {.lex_state = 66, .external_lex_state = 12}, [2093] = {.lex_state = 15, .external_lex_state = 11}, - [2094] = {.lex_state = 15, .external_lex_state = 11}, + [2094] = {.lex_state = 23, .external_lex_state = 14}, [2095] = {.lex_state = 23, .external_lex_state = 14}, - [2096] = {.lex_state = 15, .external_lex_state = 11}, + [2096] = {.lex_state = 15, .external_lex_state = 5}, [2097] = {.lex_state = 15, .external_lex_state = 11}, - [2098] = {.lex_state = 15, .external_lex_state = 11}, + [2098] = {.lex_state = 15, .external_lex_state = 5}, [2099] = {.lex_state = 15, .external_lex_state = 11}, - [2100] = {.lex_state = 15, .external_lex_state = 7}, + [2100] = {.lex_state = 15, .external_lex_state = 5}, [2101] = {.lex_state = 15, .external_lex_state = 11}, [2102] = {.lex_state = 15, .external_lex_state = 11}, [2103] = {.lex_state = 15, .external_lex_state = 11}, - [2104] = {.lex_state = 15, .external_lex_state = 7}, + [2104] = {.lex_state = 15, .external_lex_state = 11}, [2105] = {.lex_state = 15, .external_lex_state = 11}, [2106] = {.lex_state = 15, .external_lex_state = 11}, - [2107] = {.lex_state = 15, .external_lex_state = 11}, - [2108] = {.lex_state = 15, .external_lex_state = 11}, + [2107] = {.lex_state = 23, .external_lex_state = 14}, + [2108] = {.lex_state = 15, .external_lex_state = 12}, [2109] = {.lex_state = 15, .external_lex_state = 11}, [2110] = {.lex_state = 15, .external_lex_state = 11}, - [2111] = {.lex_state = 15, .external_lex_state = 11}, - [2112] = {.lex_state = 15, .external_lex_state = 16}, - [2113] = {.lex_state = 66, .external_lex_state = 12}, - [2114] = {.lex_state = 15, .external_lex_state = 7}, - [2115] = {.lex_state = 15, .external_lex_state = 11}, - [2116] = {.lex_state = 15, .external_lex_state = 11}, - [2117] = {.lex_state = 15, .external_lex_state = 11}, + [2111] = {.lex_state = 15, .external_lex_state = 12}, + [2112] = {.lex_state = 15, .external_lex_state = 11}, + [2113] = {.lex_state = 15, .external_lex_state = 11}, + [2114] = {.lex_state = 15, .external_lex_state = 15}, + [2115] = {.lex_state = 23, .external_lex_state = 14}, + [2116] = {.lex_state = 15, .external_lex_state = 15}, + [2117] = {.lex_state = 15, .external_lex_state = 15}, [2118] = {.lex_state = 15, .external_lex_state = 11}, - [2119] = {.lex_state = 15, .external_lex_state = 11}, - [2120] = {.lex_state = 15, .external_lex_state = 11}, + [2119] = {.lex_state = 15, .external_lex_state = 15}, + [2120] = {.lex_state = 15, .external_lex_state = 16}, [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 = 11}, + [2122] = {.lex_state = 15, .external_lex_state = 14}, + [2123] = {.lex_state = 15, .external_lex_state = 5}, + [2124] = {.lex_state = 23, .external_lex_state = 11}, + [2125] = {.lex_state = 23, .external_lex_state = 11}, + [2126] = {.lex_state = 15, .external_lex_state = 5}, [2127] = {.lex_state = 15, .external_lex_state = 16}, - [2128] = {.lex_state = 15, .external_lex_state = 11}, + [2128] = {.lex_state = 15, .external_lex_state = 14}, [2129] = {.lex_state = 15, .external_lex_state = 11}, [2130] = {.lex_state = 15, .external_lex_state = 11}, - [2131] = {.lex_state = 15, .external_lex_state = 11}, + [2131] = {.lex_state = 15, .external_lex_state = 7}, [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 = 7}, - [2136] = {.lex_state = 15, .external_lex_state = 15}, - [2137] = {.lex_state = 15, .external_lex_state = 15}, - [2138] = {.lex_state = 15, .external_lex_state = 14}, - [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 = 6}, - [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 = 2}, - [2148] = {.lex_state = 15, .external_lex_state = 15}, - [2149] = {.lex_state = 15, .external_lex_state = 14}, - [2150] = {.lex_state = 15, .external_lex_state = 14}, - [2151] = {.lex_state = 15, .external_lex_state = 2}, + [2135] = {.lex_state = 15, .external_lex_state = 11}, + [2136] = {.lex_state = 15, .external_lex_state = 11}, + [2137] = {.lex_state = 15, .external_lex_state = 11}, + [2138] = {.lex_state = 15, .external_lex_state = 11}, + [2139] = {.lex_state = 15, .external_lex_state = 11}, + [2140] = {.lex_state = 15, .external_lex_state = 11}, + [2141] = {.lex_state = 15, .external_lex_state = 11}, + [2142] = {.lex_state = 15, .external_lex_state = 11}, + [2143] = {.lex_state = 15, .external_lex_state = 2}, + [2144] = {.lex_state = 15, .external_lex_state = 11}, + [2145] = {.lex_state = 15, .external_lex_state = 11}, + [2146] = {.lex_state = 15, .external_lex_state = 11}, + [2147] = {.lex_state = 15, .external_lex_state = 11}, + [2148] = {.lex_state = 15, .external_lex_state = 11}, + [2149] = {.lex_state = 15, .external_lex_state = 7}, + [2150] = {.lex_state = 15, .external_lex_state = 2}, + [2151] = {.lex_state = 15, .external_lex_state = 11}, [2152] = {.lex_state = 15, .external_lex_state = 2}, - [2153] = {.lex_state = 15, .external_lex_state = 6}, - [2154] = {.lex_state = 15, .external_lex_state = 12}, - [2155] = {.lex_state = 15, .external_lex_state = 14}, - [2156] = {.lex_state = 15, .external_lex_state = 8}, - [2157] = {.lex_state = 15, .external_lex_state = 16}, - [2158] = {.lex_state = 15, .external_lex_state = 6}, - [2159] = {.lex_state = 15, .external_lex_state = 15}, - [2160] = {.lex_state = 15, .external_lex_state = 15}, - [2161] = {.lex_state = 15, .external_lex_state = 15}, - [2162] = {.lex_state = 15, .external_lex_state = 15}, - [2163] = {.lex_state = 15, .external_lex_state = 15}, - [2164] = {.lex_state = 15, .external_lex_state = 15}, - [2165] = {.lex_state = 15, .external_lex_state = 15}, - [2166] = {.lex_state = 15, .external_lex_state = 8}, - [2167] = {.lex_state = 15, .external_lex_state = 15}, - [2168] = {.lex_state = 15, .external_lex_state = 14}, - [2169] = {.lex_state = 15, .external_lex_state = 16}, - [2170] = {.lex_state = 15, .external_lex_state = 15}, - [2171] = {.lex_state = 15, .external_lex_state = 15}, - [2172] = {.lex_state = 15, .external_lex_state = 15}, - [2173] = {.lex_state = 15, .external_lex_state = 16}, - [2174] = {.lex_state = 15, .external_lex_state = 15}, - [2175] = {.lex_state = 15, .external_lex_state = 8}, - [2176] = {.lex_state = 15, .external_lex_state = 15}, - [2177] = {.lex_state = 15, .external_lex_state = 12}, - [2178] = {.lex_state = 15, .external_lex_state = 14}, - [2179] = {.lex_state = 66, .external_lex_state = 12}, - [2180] = {.lex_state = 15, .external_lex_state = 7}, - [2181] = {.lex_state = 15, .external_lex_state = 12}, - [2182] = {.lex_state = 15, .external_lex_state = 7}, - [2183] = {.lex_state = 15, .external_lex_state = 16}, - [2184] = {.lex_state = 66, .external_lex_state = 12}, - [2185] = {.lex_state = 23, .external_lex_state = 14}, - [2186] = {.lex_state = 23, .external_lex_state = 15}, - [2187] = {.lex_state = 23, .external_lex_state = 14}, - [2188] = {.lex_state = 15, .external_lex_state = 7}, - [2189] = {.lex_state = 15, .external_lex_state = 14}, - [2190] = {.lex_state = 15, .external_lex_state = 14}, - [2191] = {.lex_state = 23, .external_lex_state = 15}, - [2192] = {.lex_state = 15, .external_lex_state = 14}, - [2193] = {.lex_state = 15, .external_lex_state = 14}, - [2194] = {.lex_state = 15, .external_lex_state = 14}, - [2195] = {.lex_state = 15, .external_lex_state = 14}, - [2196] = {.lex_state = 15, .external_lex_state = 14}, - [2197] = {.lex_state = 15, .external_lex_state = 12}, - [2198] = {.lex_state = 23, .external_lex_state = 15}, - [2199] = {.lex_state = 23, .external_lex_state = 11}, - [2200] = {.lex_state = 15, .external_lex_state = 16}, - [2201] = {.lex_state = 66, .external_lex_state = 12}, - [2202] = {.lex_state = 15, .external_lex_state = 14}, - [2203] = {.lex_state = 66, .external_lex_state = 12}, - [2204] = {.lex_state = 15, .external_lex_state = 16}, - [2205] = {.lex_state = 15, .external_lex_state = 16}, - [2206] = {.lex_state = 15, .external_lex_state = 8}, - [2207] = {.lex_state = 15, .external_lex_state = 16}, - [2208] = {.lex_state = 23, .external_lex_state = 15}, + [2153] = {.lex_state = 15, .external_lex_state = 7}, + [2154] = {.lex_state = 15, .external_lex_state = 11}, + [2155] = {.lex_state = 15, .external_lex_state = 11}, + [2156] = {.lex_state = 15, .external_lex_state = 11}, + [2157] = {.lex_state = 23, .external_lex_state = 14}, + [2158] = {.lex_state = 15, .external_lex_state = 11}, + [2159] = {.lex_state = 15, .external_lex_state = 11}, + [2160] = {.lex_state = 15, .external_lex_state = 11}, + [2161] = {.lex_state = 15, .external_lex_state = 11}, + [2162] = {.lex_state = 15, .external_lex_state = 7}, + [2163] = {.lex_state = 15, .external_lex_state = 11}, + [2164] = {.lex_state = 15, .external_lex_state = 11}, + [2165] = {.lex_state = 66, .external_lex_state = 12}, + [2166] = {.lex_state = 15, .external_lex_state = 11}, + [2167] = {.lex_state = 15, .external_lex_state = 11}, + [2168] = {.lex_state = 15, .external_lex_state = 11}, + [2169] = {.lex_state = 15, .external_lex_state = 11}, + [2170] = {.lex_state = 15, .external_lex_state = 11}, + [2171] = {.lex_state = 15, .external_lex_state = 11}, + [2172] = {.lex_state = 15, .external_lex_state = 11}, + [2173] = {.lex_state = 15, .external_lex_state = 11}, + [2174] = {.lex_state = 15, .external_lex_state = 11}, + [2175] = {.lex_state = 15, .external_lex_state = 11}, + [2176] = {.lex_state = 15, .external_lex_state = 12}, + [2177] = {.lex_state = 15, .external_lex_state = 16}, + [2178] = {.lex_state = 15, .external_lex_state = 12}, + [2179] = {.lex_state = 15, .external_lex_state = 15}, + [2180] = {.lex_state = 15, .external_lex_state = 15}, + [2181] = {.lex_state = 15, .external_lex_state = 15}, + [2182] = {.lex_state = 15, .external_lex_state = 15}, + [2183] = {.lex_state = 15, .external_lex_state = 11}, + [2184] = {.lex_state = 15, .external_lex_state = 11}, + [2185] = {.lex_state = 15, .external_lex_state = 11}, + [2186] = {.lex_state = 15, .external_lex_state = 11}, + [2187] = {.lex_state = 15, .external_lex_state = 11}, + [2188] = {.lex_state = 15, .external_lex_state = 11}, + [2189] = {.lex_state = 15, .external_lex_state = 11}, + [2190] = {.lex_state = 15, .external_lex_state = 11}, + [2191] = {.lex_state = 15, .external_lex_state = 7}, + [2192] = {.lex_state = 15, .external_lex_state = 11}, + [2193] = {.lex_state = 15, .external_lex_state = 7}, + [2194] = {.lex_state = 15, .external_lex_state = 11}, + [2195] = {.lex_state = 15, .external_lex_state = 16}, + [2196] = {.lex_state = 15, .external_lex_state = 11}, + [2197] = {.lex_state = 15, .external_lex_state = 14}, + [2198] = {.lex_state = 15, .external_lex_state = 15}, + [2199] = {.lex_state = 15, .external_lex_state = 15}, + [2200] = {.lex_state = 15, .external_lex_state = 15}, + [2201] = {.lex_state = 15, .external_lex_state = 12}, + [2202] = {.lex_state = 15, .external_lex_state = 6}, + [2203] = {.lex_state = 15, .external_lex_state = 12}, + [2204] = {.lex_state = 15, .external_lex_state = 12}, + [2205] = {.lex_state = 15, .external_lex_state = 12}, + [2206] = {.lex_state = 15, .external_lex_state = 14}, + [2207] = {.lex_state = 15, .external_lex_state = 15}, + [2208] = {.lex_state = 15, .external_lex_state = 14}, [2209] = {.lex_state = 15, .external_lex_state = 16}, - [2210] = {.lex_state = 23, .external_lex_state = 15}, - [2211] = {.lex_state = 23, .external_lex_state = 15}, - [2212] = {.lex_state = 15, .external_lex_state = 16}, - [2213] = {.lex_state = 15, .external_lex_state = 14}, - [2214] = {.lex_state = 66, .external_lex_state = 12}, - [2215] = {.lex_state = 15, .external_lex_state = 16}, - [2216] = {.lex_state = 15, .external_lex_state = 7}, - [2217] = {.lex_state = 15, .external_lex_state = 16}, - [2218] = {.lex_state = 15, .external_lex_state = 12}, - [2219] = {.lex_state = 15, .external_lex_state = 16}, - [2220] = {.lex_state = 15, .external_lex_state = 8}, - [2221] = {.lex_state = 66, .external_lex_state = 12}, + [2210] = {.lex_state = 15, .external_lex_state = 12}, + [2211] = {.lex_state = 15, .external_lex_state = 14}, + [2212] = {.lex_state = 15, .external_lex_state = 15}, + [2213] = {.lex_state = 15, .external_lex_state = 15}, + [2214] = {.lex_state = 15, .external_lex_state = 15}, + [2215] = {.lex_state = 15, .external_lex_state = 8}, + [2216] = {.lex_state = 15, .external_lex_state = 15}, + [2217] = {.lex_state = 15, .external_lex_state = 15}, + [2218] = {.lex_state = 15, .external_lex_state = 15}, + [2219] = {.lex_state = 15, .external_lex_state = 12}, + [2220] = {.lex_state = 15, .external_lex_state = 15}, + [2221] = {.lex_state = 15, .external_lex_state = 14}, [2222] = {.lex_state = 15, .external_lex_state = 16}, [2223] = {.lex_state = 15, .external_lex_state = 16}, - [2224] = {.lex_state = 15, .external_lex_state = 8}, - [2225] = {.lex_state = 15, .external_lex_state = 12}, + [2224] = {.lex_state = 15, .external_lex_state = 15}, + [2225] = {.lex_state = 15, .external_lex_state = 6}, [2226] = {.lex_state = 15, .external_lex_state = 12}, - [2227] = {.lex_state = 15, .external_lex_state = 16}, - [2228] = {.lex_state = 15, .external_lex_state = 12}, - [2229] = {.lex_state = 15, .external_lex_state = 12}, + [2227] = {.lex_state = 15, .external_lex_state = 15}, + [2228] = {.lex_state = 15, .external_lex_state = 15}, + [2229] = {.lex_state = 15, .external_lex_state = 8}, [2230] = {.lex_state = 15, .external_lex_state = 12}, - [2231] = {.lex_state = 15, .external_lex_state = 12}, - [2232] = {.lex_state = 15, .external_lex_state = 12}, + [2231] = {.lex_state = 15, .external_lex_state = 15}, + [2232] = {.lex_state = 15, .external_lex_state = 15}, [2233] = {.lex_state = 15, .external_lex_state = 12}, - [2234] = {.lex_state = 23, .external_lex_state = 15}, - [2235] = {.lex_state = 23, .external_lex_state = 15}, - [2236] = {.lex_state = 15, .external_lex_state = 14}, - [2237] = {.lex_state = 23, .external_lex_state = 14}, + [2234] = {.lex_state = 15, .external_lex_state = 15}, + [2235] = {.lex_state = 15, .external_lex_state = 15}, + [2236] = {.lex_state = 15, .external_lex_state = 6}, + [2237] = {.lex_state = 15, .external_lex_state = 15}, [2238] = {.lex_state = 15, .external_lex_state = 15}, - [2239] = {.lex_state = 15, .external_lex_state = 6}, + [2239] = {.lex_state = 15, .external_lex_state = 12}, [2240] = {.lex_state = 15, .external_lex_state = 15}, - [2241] = {.lex_state = 15, .external_lex_state = 15}, - [2242] = {.lex_state = 15, .external_lex_state = 6}, + [2241] = {.lex_state = 15, .external_lex_state = 12}, + [2242] = {.lex_state = 15, .external_lex_state = 8}, [2243] = {.lex_state = 15, .external_lex_state = 15}, [2244] = {.lex_state = 15, .external_lex_state = 15}, - [2245] = {.lex_state = 15, .external_lex_state = 15}, - [2246] = {.lex_state = 23, .external_lex_state = 14}, - [2247] = {.lex_state = 15, .external_lex_state = 15}, - [2248] = {.lex_state = 15, .external_lex_state = 15}, - [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 = 15, .external_lex_state = 6}, - [2254] = {.lex_state = 15, .external_lex_state = 15}, - [2255] = {.lex_state = 15, .external_lex_state = 15}, - [2256] = {.lex_state = 15, .external_lex_state = 15}, - [2257] = {.lex_state = 15, .external_lex_state = 15}, - [2258] = {.lex_state = 15, .external_lex_state = 15}, - [2259] = {.lex_state = 15, .external_lex_state = 15}, - [2260] = {.lex_state = 15, .external_lex_state = 15}, - [2261] = {.lex_state = 15, .external_lex_state = 15}, - [2262] = {.lex_state = 23, .external_lex_state = 14}, - [2263] = {.lex_state = 15, .external_lex_state = 15}, - [2264] = {.lex_state = 15, .external_lex_state = 12}, - [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 = 6}, - [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 = 23, .external_lex_state = 12}, - [2273] = {.lex_state = 15, .external_lex_state = 15}, - [2274] = {.lex_state = 23, .external_lex_state = 12}, - [2275] = {.lex_state = 15, .external_lex_state = 16}, - [2276] = {.lex_state = 15, .external_lex_state = 15}, + [2245] = {.lex_state = 15, .external_lex_state = 12}, + [2246] = {.lex_state = 15, .external_lex_state = 12}, + [2247] = {.lex_state = 15, .external_lex_state = 16}, + [2248] = {.lex_state = 23, .external_lex_state = 12}, + [2249] = {.lex_state = 15, .external_lex_state = 16}, + [2250] = {.lex_state = 15, .external_lex_state = 14}, + [2251] = {.lex_state = 23, .external_lex_state = 12}, + [2252] = {.lex_state = 15, .external_lex_state = 12}, + [2253] = {.lex_state = 23, .external_lex_state = 15}, + [2254] = {.lex_state = 23, .external_lex_state = 14}, + [2255] = {.lex_state = 15, .external_lex_state = 12}, + [2256] = {.lex_state = 23, .external_lex_state = 11}, + [2257] = {.lex_state = 15, .external_lex_state = 8}, + [2258] = {.lex_state = 15, .external_lex_state = 14}, + [2259] = {.lex_state = 15, .external_lex_state = 14}, + [2260] = {.lex_state = 15, .external_lex_state = 16}, + [2261] = {.lex_state = 15, .external_lex_state = 14}, + [2262] = {.lex_state = 23, .external_lex_state = 15}, + [2263] = {.lex_state = 15, .external_lex_state = 14}, + [2264] = {.lex_state = 15, .external_lex_state = 14}, + [2265] = {.lex_state = 15, .external_lex_state = 8}, + [2266] = {.lex_state = 23, .external_lex_state = 14}, + [2267] = {.lex_state = 15, .external_lex_state = 14}, + [2268] = {.lex_state = 15, .external_lex_state = 14}, + [2269] = {.lex_state = 15, .external_lex_state = 14}, + [2270] = {.lex_state = 23, .external_lex_state = 15}, + [2271] = {.lex_state = 15, .external_lex_state = 12}, + [2272] = {.lex_state = 15, .external_lex_state = 2}, + [2273] = {.lex_state = 15, .external_lex_state = 12}, + [2274] = {.lex_state = 15, .external_lex_state = 14}, + [2275] = {.lex_state = 15, .external_lex_state = 12}, + [2276] = {.lex_state = 15, .external_lex_state = 16}, [2277] = {.lex_state = 15, .external_lex_state = 16}, - [2278] = {.lex_state = 15, .external_lex_state = 15}, - [2279] = {.lex_state = 15, .external_lex_state = 15}, - [2280] = {.lex_state = 15, .external_lex_state = 15}, - [2281] = {.lex_state = 15, .external_lex_state = 15}, - [2282] = {.lex_state = 15, .external_lex_state = 2}, - [2283] = {.lex_state = 15, .external_lex_state = 15}, - [2284] = {.lex_state = 15, .external_lex_state = 14}, - [2285] = {.lex_state = 23, .external_lex_state = 16}, - [2286] = {.lex_state = 15, .external_lex_state = 14}, - [2287] = {.lex_state = 15, .external_lex_state = 12}, - [2288] = {.lex_state = 15, .external_lex_state = 15}, - [2289] = {.lex_state = 15, .external_lex_state = 14}, - [2290] = {.lex_state = 15, .external_lex_state = 15}, - [2291] = {.lex_state = 15, .external_lex_state = 15}, - [2292] = {.lex_state = 23, .external_lex_state = 16}, - [2293] = {.lex_state = 23, .external_lex_state = 16}, - [2294] = {.lex_state = 15, .external_lex_state = 15}, - [2295] = {.lex_state = 15, .external_lex_state = 15}, - [2296] = {.lex_state = 15, .external_lex_state = 16}, - [2297] = {.lex_state = 23, .external_lex_state = 16}, - [2298] = {.lex_state = 23, .external_lex_state = 14}, - [2299] = {.lex_state = 15, .external_lex_state = 15}, - [2300] = {.lex_state = 15, .external_lex_state = 15}, - [2301] = {.lex_state = 15, .external_lex_state = 2}, - [2302] = {.lex_state = 15, .external_lex_state = 15}, - [2303] = {.lex_state = 15, .external_lex_state = 15}, - [2304] = {.lex_state = 15, .external_lex_state = 8}, - [2305] = {.lex_state = 15, .external_lex_state = 15}, - [2306] = {.lex_state = 15, .external_lex_state = 15}, - [2307] = {.lex_state = 15, .external_lex_state = 15}, + [2278] = {.lex_state = 15, .external_lex_state = 16}, + [2279] = {.lex_state = 23, .external_lex_state = 15}, + [2280] = {.lex_state = 66, .external_lex_state = 12}, + [2281] = {.lex_state = 15, .external_lex_state = 16}, + [2282] = {.lex_state = 23, .external_lex_state = 15}, + [2283] = {.lex_state = 15, .external_lex_state = 12}, + [2284] = {.lex_state = 15, .external_lex_state = 16}, + [2285] = {.lex_state = 15, .external_lex_state = 12}, + [2286] = {.lex_state = 23, .external_lex_state = 15}, + [2287] = {.lex_state = 15, .external_lex_state = 16}, + [2288] = {.lex_state = 15, .external_lex_state = 7}, + [2289] = {.lex_state = 66, .external_lex_state = 12}, + [2290] = {.lex_state = 15, .external_lex_state = 16}, + [2291] = {.lex_state = 66, .external_lex_state = 12}, + [2292] = {.lex_state = 15, .external_lex_state = 8}, + [2293] = {.lex_state = 15, .external_lex_state = 7}, + [2294] = {.lex_state = 15, .external_lex_state = 16}, + [2295] = {.lex_state = 15, .external_lex_state = 16}, + [2296] = {.lex_state = 15, .external_lex_state = 7}, + [2297] = {.lex_state = 15, .external_lex_state = 2}, + [2298] = {.lex_state = 15, .external_lex_state = 14}, + [2299] = {.lex_state = 66, .external_lex_state = 12}, + [2300] = {.lex_state = 23, .external_lex_state = 15}, + [2301] = {.lex_state = 66, .external_lex_state = 12}, + [2302] = {.lex_state = 66, .external_lex_state = 12}, + [2303] = {.lex_state = 15, .external_lex_state = 16}, + [2304] = {.lex_state = 15, .external_lex_state = 7}, + [2305] = {.lex_state = 23, .external_lex_state = 15}, + [2306] = {.lex_state = 15, .external_lex_state = 16}, + [2307] = {.lex_state = 23, .external_lex_state = 16}, [2308] = {.lex_state = 15, .external_lex_state = 15}, [2309] = {.lex_state = 15, .external_lex_state = 15}, [2310] = {.lex_state = 15, .external_lex_state = 15}, - [2311] = {.lex_state = 15, .external_lex_state = 15}, - [2312] = {.lex_state = 15, .external_lex_state = 6}, - [2313] = {.lex_state = 23, .external_lex_state = 16}, - [2314] = {.lex_state = 23, .external_lex_state = 16}, - [2315] = {.lex_state = 15, .external_lex_state = 15}, - [2316] = {.lex_state = 15, .external_lex_state = 16}, - [2317] = {.lex_state = 15, .external_lex_state = 16}, - [2318] = {.lex_state = 15, .external_lex_state = 16}, - [2319] = {.lex_state = 15, .external_lex_state = 16}, - [2320] = {.lex_state = 15, .external_lex_state = 16}, + [2311] = {.lex_state = 15, .external_lex_state = 8}, + [2312] = {.lex_state = 15, .external_lex_state = 12}, + [2313] = {.lex_state = 15, .external_lex_state = 14}, + [2314] = {.lex_state = 15, .external_lex_state = 14}, + [2315] = {.lex_state = 15, .external_lex_state = 14}, + [2316] = {.lex_state = 15, .external_lex_state = 15}, + [2317] = {.lex_state = 15, .external_lex_state = 12}, + [2318] = {.lex_state = 15, .external_lex_state = 15}, + [2319] = {.lex_state = 15, .external_lex_state = 15}, + [2320] = {.lex_state = 15, .external_lex_state = 15}, [2321] = {.lex_state = 15, .external_lex_state = 15}, - [2322] = {.lex_state = 15, .external_lex_state = 16}, - [2323] = {.lex_state = 15, .external_lex_state = 15}, - [2324] = {.lex_state = 15, .external_lex_state = 15}, - [2325] = {.lex_state = 15, .external_lex_state = 15}, - [2326] = {.lex_state = 15, .external_lex_state = 15}, - [2327] = {.lex_state = 15, .external_lex_state = 15}, - [2328] = {.lex_state = 15, .external_lex_state = 14}, + [2322] = {.lex_state = 15, .external_lex_state = 15}, + [2323] = {.lex_state = 15, .external_lex_state = 14}, + [2324] = {.lex_state = 15, .external_lex_state = 12}, + [2325] = {.lex_state = 15, .external_lex_state = 12}, + [2326] = {.lex_state = 15, .external_lex_state = 12}, + [2327] = {.lex_state = 15, .external_lex_state = 12}, + [2328] = {.lex_state = 15, .external_lex_state = 15}, [2329] = {.lex_state = 15, .external_lex_state = 15}, - [2330] = {.lex_state = 15, .external_lex_state = 15}, + [2330] = {.lex_state = 15, .external_lex_state = 14}, [2331] = {.lex_state = 15, .external_lex_state = 15}, [2332] = {.lex_state = 15, .external_lex_state = 15}, - [2333] = {.lex_state = 15, .external_lex_state = 14}, + [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 = 15}, + [2335] = {.lex_state = 15, .external_lex_state = 6}, + [2336] = {.lex_state = 15, .external_lex_state = 12}, [2337] = {.lex_state = 15, .external_lex_state = 15}, - [2338] = {.lex_state = 15, .external_lex_state = 15}, + [2338] = {.lex_state = 15, .external_lex_state = 12}, [2339] = {.lex_state = 15, .external_lex_state = 15}, - [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 = 8}, - [2345] = {.lex_state = 23, .external_lex_state = 16}, + [2340] = {.lex_state = 15, .external_lex_state = 12}, + [2341] = {.lex_state = 15, .external_lex_state = 12}, + [2342] = {.lex_state = 15, .external_lex_state = 12}, + [2343] = {.lex_state = 15, .external_lex_state = 12}, + [2344] = {.lex_state = 15, .external_lex_state = 12}, + [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}, + [2349] = {.lex_state = 15, .external_lex_state = 12}, [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 = 23, .external_lex_state = 14}, - [2355] = {.lex_state = 23, .external_lex_state = 14}, + [2354] = {.lex_state = 15, .external_lex_state = 15}, + [2355] = {.lex_state = 15, .external_lex_state = 12}, [2356] = {.lex_state = 15, .external_lex_state = 15}, [2357] = {.lex_state = 15, .external_lex_state = 15}, - [2358] = {.lex_state = 15, .external_lex_state = 14}, - [2359] = {.lex_state = 15, .external_lex_state = 14}, + [2358] = {.lex_state = 15, .external_lex_state = 12}, + [2359] = {.lex_state = 15, .external_lex_state = 12}, [2360] = {.lex_state = 15, .external_lex_state = 15}, - [2361] = {.lex_state = 15, .external_lex_state = 16}, + [2361] = {.lex_state = 15, .external_lex_state = 12}, [2362] = {.lex_state = 15, .external_lex_state = 15}, [2363] = {.lex_state = 15, .external_lex_state = 15}, [2364] = {.lex_state = 15, .external_lex_state = 15}, [2365] = {.lex_state = 15, .external_lex_state = 15}, - [2366] = {.lex_state = 15, .external_lex_state = 15}, + [2366] = {.lex_state = 15, .external_lex_state = 16}, [2367] = {.lex_state = 15, .external_lex_state = 15}, - [2368] = {.lex_state = 15, .external_lex_state = 12}, - [2369] = {.lex_state = 15, .external_lex_state = 14}, - [2370] = {.lex_state = 15, .external_lex_state = 14}, - [2371] = {.lex_state = 15, .external_lex_state = 15}, + [2368] = {.lex_state = 15, .external_lex_state = 16}, + [2369] = {.lex_state = 15, .external_lex_state = 15}, + [2370] = {.lex_state = 15, .external_lex_state = 16}, + [2371] = {.lex_state = 15, .external_lex_state = 16}, [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}, + [2373] = {.lex_state = 15, .external_lex_state = 16}, + [2374] = {.lex_state = 15, .external_lex_state = 16}, + [2375] = {.lex_state = 15, .external_lex_state = 12}, + [2376] = {.lex_state = 15, .external_lex_state = 12}, [2377] = {.lex_state = 15, .external_lex_state = 15}, - [2378] = {.lex_state = 15, .external_lex_state = 12}, - [2379] = {.lex_state = 15, .external_lex_state = 12}, - [2380] = {.lex_state = 15, .external_lex_state = 12}, - [2381] = {.lex_state = 15, .external_lex_state = 12}, - [2382] = {.lex_state = 15, .external_lex_state = 12}, - [2383] = {.lex_state = 15, .external_lex_state = 12}, - [2384] = {.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 = 6}, + [2383] = {.lex_state = 23, .external_lex_state = 16}, + [2384] = {.lex_state = 23, .external_lex_state = 16}, [2385] = {.lex_state = 15, .external_lex_state = 15}, - [2386] = {.lex_state = 15, .external_lex_state = 15}, + [2386] = {.lex_state = 23, .external_lex_state = 14}, [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 = 15, .external_lex_state = 15}, + [2389] = {.lex_state = 15, .external_lex_state = 12}, + [2390] = {.lex_state = 15, .external_lex_state = 12}, [2391] = {.lex_state = 15, .external_lex_state = 15}, [2392] = {.lex_state = 15, .external_lex_state = 15}, - [2393] = {.lex_state = 15, .external_lex_state = 16}, - [2394] = {.lex_state = 15, .external_lex_state = 12}, - [2395] = {.lex_state = 15, .external_lex_state = 16}, - [2396] = {.lex_state = 15, .external_lex_state = 8}, - [2397] = {.lex_state = 15, .external_lex_state = 16}, - [2398] = {.lex_state = 15, .external_lex_state = 16}, - [2399] = {.lex_state = 15, .external_lex_state = 16}, - [2400] = {.lex_state = 15, .external_lex_state = 8}, - [2401] = {.lex_state = 15, .external_lex_state = 14}, - [2402] = {.lex_state = 16, .external_lex_state = 11}, - [2403] = {.lex_state = 15, .external_lex_state = 14}, - [2404] = {.lex_state = 15, .external_lex_state = 16}, - [2405] = {.lex_state = 15, .external_lex_state = 14}, - [2406] = {.lex_state = 15, .external_lex_state = 16}, - [2407] = {.lex_state = 15, .external_lex_state = 14}, - [2408] = {.lex_state = 15, .external_lex_state = 14}, - [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 = 15, .external_lex_state = 12}, - [2415] = {.lex_state = 15, .external_lex_state = 12}, - [2416] = {.lex_state = 15, .external_lex_state = 12}, - [2417] = {.lex_state = 15, .external_lex_state = 12}, - [2418] = {.lex_state = 15, .external_lex_state = 12}, - [2419] = {.lex_state = 15, .external_lex_state = 12}, - [2420] = {.lex_state = 15, .external_lex_state = 12}, - [2421] = {.lex_state = 15, .external_lex_state = 16}, + [2393] = {.lex_state = 15, .external_lex_state = 15}, + [2394] = {.lex_state = 15, .external_lex_state = 15}, + [2395] = {.lex_state = 15, .external_lex_state = 6}, + [2396] = {.lex_state = 23, .external_lex_state = 12}, + [2397] = {.lex_state = 15, .external_lex_state = 15}, + [2398] = {.lex_state = 15, .external_lex_state = 15}, + [2399] = {.lex_state = 15, .external_lex_state = 15}, + [2400] = {.lex_state = 15, .external_lex_state = 15}, + [2401] = {.lex_state = 15, .external_lex_state = 15}, + [2402] = {.lex_state = 15, .external_lex_state = 15}, + [2403] = {.lex_state = 15, .external_lex_state = 15}, + [2404] = {.lex_state = 15, .external_lex_state = 15}, + [2405] = {.lex_state = 15, .external_lex_state = 15}, + [2406] = {.lex_state = 15, .external_lex_state = 15}, + [2407] = {.lex_state = 15, .external_lex_state = 15}, + [2408] = {.lex_state = 15, .external_lex_state = 15}, + [2409] = {.lex_state = 23, .external_lex_state = 14}, + [2410] = {.lex_state = 15, .external_lex_state = 6}, + [2411] = {.lex_state = 15, .external_lex_state = 15}, + [2412] = {.lex_state = 15, .external_lex_state = 15}, + [2413] = {.lex_state = 15, .external_lex_state = 12}, + [2414] = {.lex_state = 15, .external_lex_state = 15}, + [2415] = {.lex_state = 15, .external_lex_state = 15}, + [2416] = {.lex_state = 15, .external_lex_state = 15}, + [2417] = {.lex_state = 15, .external_lex_state = 15}, + [2418] = {.lex_state = 15, .external_lex_state = 15}, + [2419] = {.lex_state = 15, .external_lex_state = 14}, + [2420] = {.lex_state = 15, .external_lex_state = 15}, + [2421] = {.lex_state = 15, .external_lex_state = 15}, [2422] = {.lex_state = 15, .external_lex_state = 12}, - [2423] = {.lex_state = 15, .external_lex_state = 14}, - [2424] = {.lex_state = 15, .external_lex_state = 12}, + [2423] = {.lex_state = 15, .external_lex_state = 16}, + [2424] = {.lex_state = 15, .external_lex_state = 15}, [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 = 16, .external_lex_state = 11}, - [2429] = {.lex_state = 16, .external_lex_state = 11}, - [2430] = {.lex_state = 16, .external_lex_state = 11}, - [2431] = {.lex_state = 16, .external_lex_state = 11}, - [2432] = {.lex_state = 16, .external_lex_state = 11}, - [2433] = {.lex_state = 16, .external_lex_state = 11}, - [2434] = {.lex_state = 15, .external_lex_state = 16}, - [2435] = {.lex_state = 15, .external_lex_state = 16}, - [2436] = {.lex_state = 16, .external_lex_state = 11}, - [2437] = {.lex_state = 15, .external_lex_state = 16}, - [2438] = {.lex_state = 15, .external_lex_state = 16}, - [2439] = {.lex_state = 15, .external_lex_state = 14}, - [2440] = {.lex_state = 16, .external_lex_state = 11}, - [2441] = {.lex_state = 15, .external_lex_state = 14}, - [2442] = {.lex_state = 15, .external_lex_state = 14}, - [2443] = {.lex_state = 15, .external_lex_state = 14}, - [2444] = {.lex_state = 15, .external_lex_state = 11}, - [2445] = {.lex_state = 23, .external_lex_state = 16}, - [2446] = {.lex_state = 23, .external_lex_state = 16}, - [2447] = {.lex_state = 15, .external_lex_state = 14}, - [2448] = {.lex_state = 15, .external_lex_state = 14}, - [2449] = {.lex_state = 15, .external_lex_state = 12}, - [2450] = {.lex_state = 15, .external_lex_state = 12}, + [2426] = {.lex_state = 15, .external_lex_state = 12}, + [2427] = {.lex_state = 15, .external_lex_state = 12}, + [2428] = {.lex_state = 15, .external_lex_state = 12}, + [2429] = {.lex_state = 15, .external_lex_state = 12}, + [2430] = {.lex_state = 15, .external_lex_state = 12}, + [2431] = {.lex_state = 15, .external_lex_state = 12}, + [2432] = {.lex_state = 15, .external_lex_state = 12}, + [2433] = {.lex_state = 15, .external_lex_state = 12}, + [2434] = {.lex_state = 15, .external_lex_state = 12}, + [2435] = {.lex_state = 23, .external_lex_state = 14}, + [2436] = {.lex_state = 23, .external_lex_state = 14}, + [2437] = {.lex_state = 15, .external_lex_state = 15}, + [2438] = {.lex_state = 15, .external_lex_state = 12}, + [2439] = {.lex_state = 23, .external_lex_state = 16}, + [2440] = {.lex_state = 23, .external_lex_state = 16}, + [2441] = {.lex_state = 15, .external_lex_state = 15}, + [2442] = {.lex_state = 15, .external_lex_state = 12}, + [2443] = {.lex_state = 15, .external_lex_state = 12}, + [2444] = {.lex_state = 23, .external_lex_state = 12}, + [2445] = {.lex_state = 15, .external_lex_state = 15}, + [2446] = {.lex_state = 15, .external_lex_state = 14}, + [2447] = {.lex_state = 15, .external_lex_state = 15}, + [2448] = {.lex_state = 23, .external_lex_state = 16}, + [2449] = {.lex_state = 15, .external_lex_state = 15}, + [2450] = {.lex_state = 15, .external_lex_state = 14}, [2451] = {.lex_state = 15, .external_lex_state = 12}, - [2452] = {.lex_state = 66, .external_lex_state = 12}, + [2452] = {.lex_state = 15, .external_lex_state = 15}, [2453] = {.lex_state = 15, .external_lex_state = 14}, - [2454] = {.lex_state = 15, .external_lex_state = 14}, - [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 = 14}, - [2459] = {.lex_state = 15, .external_lex_state = 14}, - [2460] = {.lex_state = 15, .external_lex_state = 14}, - [2461] = {.lex_state = 15, .external_lex_state = 14}, - [2462] = {.lex_state = 15, .external_lex_state = 14}, - [2463] = {.lex_state = 15, .external_lex_state = 14}, - [2464] = {.lex_state = 15, .external_lex_state = 14}, - [2465] = {.lex_state = 15, .external_lex_state = 14}, - [2466] = {.lex_state = 23, .external_lex_state = 12}, - [2467] = {.lex_state = 15, .external_lex_state = 14}, - [2468] = {.lex_state = 15, .external_lex_state = 12}, - [2469] = {.lex_state = 15, .external_lex_state = 12}, - [2470] = {.lex_state = 15, .external_lex_state = 16}, - [2471] = {.lex_state = 15, .external_lex_state = 12}, - [2472] = {.lex_state = 15, .external_lex_state = 16}, - [2473] = {.lex_state = 15, .external_lex_state = 16}, - [2474] = {.lex_state = 15, .external_lex_state = 16}, - [2475] = {.lex_state = 15, .external_lex_state = 16}, - [2476] = {.lex_state = 23, .external_lex_state = 12}, - [2477] = {.lex_state = 15, .external_lex_state = 16}, - [2478] = {.lex_state = 15, .external_lex_state = 14}, - [2479] = {.lex_state = 15, .external_lex_state = 16}, - [2480] = {.lex_state = 15, .external_lex_state = 12}, - [2481] = {.lex_state = 15, .external_lex_state = 12}, - [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 = 14}, - [2486] = {.lex_state = 15, .external_lex_state = 12}, - [2487] = {.lex_state = 15, .external_lex_state = 12}, - [2488] = {.lex_state = 15, .external_lex_state = 16}, - [2489] = {.lex_state = 15, .external_lex_state = 12}, - [2490] = {.lex_state = 15, .external_lex_state = 14}, + [2454] = {.lex_state = 23, .external_lex_state = 14}, + [2455] = {.lex_state = 23, .external_lex_state = 16}, + [2456] = {.lex_state = 23, .external_lex_state = 14}, + [2457] = {.lex_state = 15, .external_lex_state = 16}, + [2458] = {.lex_state = 15, .external_lex_state = 12}, + [2459] = {.lex_state = 15, .external_lex_state = 15}, + [2460] = {.lex_state = 15, .external_lex_state = 12}, + [2461] = {.lex_state = 15, .external_lex_state = 15}, + [2462] = {.lex_state = 15, .external_lex_state = 15}, + [2463] = {.lex_state = 15, .external_lex_state = 15}, + [2464] = {.lex_state = 15, .external_lex_state = 12}, + [2465] = {.lex_state = 15, .external_lex_state = 15}, + [2466] = {.lex_state = 15, .external_lex_state = 15}, + [2467] = {.lex_state = 15, .external_lex_state = 15}, + [2468] = {.lex_state = 15, .external_lex_state = 15}, + [2469] = {.lex_state = 15, .external_lex_state = 15}, + [2470] = {.lex_state = 15, .external_lex_state = 15}, + [2471] = {.lex_state = 15, .external_lex_state = 15}, + [2472] = {.lex_state = 15, .external_lex_state = 15}, + [2473] = {.lex_state = 15, .external_lex_state = 15}, + [2474] = {.lex_state = 15, .external_lex_state = 15}, + [2475] = {.lex_state = 15, .external_lex_state = 15}, + [2476] = {.lex_state = 15, .external_lex_state = 8}, + [2477] = {.lex_state = 15, .external_lex_state = 15}, + [2478] = {.lex_state = 15, .external_lex_state = 15}, + [2479] = {.lex_state = 15, .external_lex_state = 15}, + [2480] = {.lex_state = 15, .external_lex_state = 15}, + [2481] = {.lex_state = 15, .external_lex_state = 15}, + [2482] = {.lex_state = 15, .external_lex_state = 15}, + [2483] = {.lex_state = 15, .external_lex_state = 15}, + [2484] = {.lex_state = 15, .external_lex_state = 15}, + [2485] = {.lex_state = 15, .external_lex_state = 15}, + [2486] = {.lex_state = 15, .external_lex_state = 15}, + [2487] = {.lex_state = 15, .external_lex_state = 15}, + [2488] = {.lex_state = 15, .external_lex_state = 6}, + [2489] = {.lex_state = 15, .external_lex_state = 15}, + [2490] = {.lex_state = 15, .external_lex_state = 16}, [2491] = {.lex_state = 15, .external_lex_state = 12}, - [2492] = {.lex_state = 15, .external_lex_state = 12}, - [2493] = {.lex_state = 15, .external_lex_state = 12}, - [2494] = {.lex_state = 15, .external_lex_state = 12}, - [2495] = {.lex_state = 15, .external_lex_state = 12}, - [2496] = {.lex_state = 15, .external_lex_state = 12}, - [2497] = {.lex_state = 15, .external_lex_state = 12}, - [2498] = {.lex_state = 15, .external_lex_state = 14}, - [2499] = {.lex_state = 15, .external_lex_state = 12}, - [2500] = {.lex_state = 15, .external_lex_state = 14}, - [2501] = {.lex_state = 15, .external_lex_state = 12}, - [2502] = {.lex_state = 15, .external_lex_state = 12}, - [2503] = {.lex_state = 15, .external_lex_state = 14}, - [2504] = {.lex_state = 15, .external_lex_state = 12}, - [2505] = {.lex_state = 15, .external_lex_state = 11}, - [2506] = {.lex_state = 23, .external_lex_state = 12}, - [2507] = {.lex_state = 15, .external_lex_state = 14}, - [2508] = {.lex_state = 15, .external_lex_state = 14}, - [2509] = {.lex_state = 15, .external_lex_state = 12}, - [2510] = {.lex_state = 15, .external_lex_state = 12}, - [2511] = {.lex_state = 15, .external_lex_state = 14}, - [2512] = {.lex_state = 15, .external_lex_state = 12}, - [2513] = {.lex_state = 15, .external_lex_state = 12}, - [2514] = {.lex_state = 15, .external_lex_state = 14}, - [2515] = {.lex_state = 15, .external_lex_state = 14}, + [2492] = {.lex_state = 15, .external_lex_state = 16}, + [2493] = {.lex_state = 15, .external_lex_state = 14}, + [2494] = {.lex_state = 15, .external_lex_state = 16}, + [2495] = {.lex_state = 15, .external_lex_state = 8}, + [2496] = {.lex_state = 15, .external_lex_state = 14}, + [2497] = {.lex_state = 15, .external_lex_state = 14}, + [2498] = {.lex_state = 15, .external_lex_state = 16}, + [2499] = {.lex_state = 15, .external_lex_state = 14}, + [2500] = {.lex_state = 23, .external_lex_state = 14}, + [2501] = {.lex_state = 15, .external_lex_state = 14}, + [2502] = {.lex_state = 15, .external_lex_state = 14}, + [2503] = {.lex_state = 15, .external_lex_state = 16}, + [2504] = {.lex_state = 15, .external_lex_state = 11}, + [2505] = {.lex_state = 15, .external_lex_state = 16}, + [2506] = {.lex_state = 15, .external_lex_state = 14}, + [2507] = {.lex_state = 15, .external_lex_state = 16}, + [2508] = {.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 = 16}, + [2512] = {.lex_state = 15, .external_lex_state = 16}, + [2513] = {.lex_state = 15, .external_lex_state = 14}, + [2514] = {.lex_state = 66, .external_lex_state = 12}, + [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 = 23, .external_lex_state = 14}, - [2519] = {.lex_state = 23, .external_lex_state = 14}, + [2518] = {.lex_state = 16, .external_lex_state = 11}, + [2519] = {.lex_state = 15, .external_lex_state = 14}, [2520] = {.lex_state = 15, .external_lex_state = 14}, - [2521] = {.lex_state = 15, .external_lex_state = 14}, - [2522] = {.lex_state = 66, .external_lex_state = 12}, - [2523] = {.lex_state = 15, .external_lex_state = 14}, - [2524] = {.lex_state = 15, .external_lex_state = 16}, - [2525] = {.lex_state = 15, .external_lex_state = 16}, - [2526] = {.lex_state = 15, .external_lex_state = 16}, - [2527] = {.lex_state = 15, .external_lex_state = 16}, + [2521] = {.lex_state = 16, .external_lex_state = 11}, + [2522] = {.lex_state = 16, .external_lex_state = 11}, + [2523] = {.lex_state = 16, .external_lex_state = 11}, + [2524] = {.lex_state = 16, .external_lex_state = 11}, + [2525] = {.lex_state = 16, .external_lex_state = 11}, + [2526] = {.lex_state = 16, .external_lex_state = 11}, + [2527] = {.lex_state = 15, .external_lex_state = 14}, [2528] = {.lex_state = 15, .external_lex_state = 16}, - [2529] = {.lex_state = 15, .external_lex_state = 16}, + [2529] = {.lex_state = 15, .external_lex_state = 12}, [2530] = {.lex_state = 15, .external_lex_state = 16}, - [2531] = {.lex_state = 15, .external_lex_state = 16}, - [2532] = {.lex_state = 15, .external_lex_state = 16}, + [2531] = {.lex_state = 15, .external_lex_state = 12}, + [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 = 16}, - [2536] = {.lex_state = 15, .external_lex_state = 14}, + [2534] = {.lex_state = 15, .external_lex_state = 14}, + [2535] = {.lex_state = 15, .external_lex_state = 12}, + [2536] = {.lex_state = 15, .external_lex_state = 16}, [2537] = {.lex_state = 15, .external_lex_state = 14}, - [2538] = {.lex_state = 15, .external_lex_state = 14}, - [2539] = {.lex_state = 15, .external_lex_state = 14}, + [2538] = {.lex_state = 15, .external_lex_state = 16}, + [2539] = {.lex_state = 15, .external_lex_state = 16}, [2540] = {.lex_state = 15, .external_lex_state = 16}, [2541] = {.lex_state = 15, .external_lex_state = 16}, [2542] = {.lex_state = 15, .external_lex_state = 16}, [2543] = {.lex_state = 15, .external_lex_state = 14}, [2544] = {.lex_state = 15, .external_lex_state = 16}, - [2545] = {.lex_state = 15, .external_lex_state = 16}, + [2545] = {.lex_state = 15, .external_lex_state = 8}, [2546] = {.lex_state = 15, .external_lex_state = 16}, [2547] = {.lex_state = 15, .external_lex_state = 16}, - [2548] = {.lex_state = 15, .external_lex_state = 16}, + [2548] = {.lex_state = 15, .external_lex_state = 14}, [2549] = {.lex_state = 15, .external_lex_state = 14}, - [2550] = {.lex_state = 15, .external_lex_state = 16}, - [2551] = {.lex_state = 15, .external_lex_state = 14}, + [2550] = {.lex_state = 15, .external_lex_state = 14}, + [2551] = {.lex_state = 23, .external_lex_state = 12}, [2552] = {.lex_state = 15, .external_lex_state = 14}, [2553] = {.lex_state = 15, .external_lex_state = 14}, - [2554] = {.lex_state = 15, .external_lex_state = 14}, - [2555] = {.lex_state = 15, .external_lex_state = 14}, + [2554] = {.lex_state = 15, .external_lex_state = 16}, + [2555] = {.lex_state = 15, .external_lex_state = 12}, [2556] = {.lex_state = 15, .external_lex_state = 14}, [2557] = {.lex_state = 15, .external_lex_state = 16}, - [2558] = {.lex_state = 15, .external_lex_state = 16}, + [2558] = {.lex_state = 16, .external_lex_state = 11}, [2559] = {.lex_state = 15, .external_lex_state = 16}, - [2560] = {.lex_state = 15, .external_lex_state = 16}, + [2560] = {.lex_state = 15, .external_lex_state = 14}, [2561] = {.lex_state = 15, .external_lex_state = 16}, - [2562] = {.lex_state = 15, .external_lex_state = 12}, + [2562] = {.lex_state = 15, .external_lex_state = 16}, [2563] = {.lex_state = 15, .external_lex_state = 16}, - [2564] = {.lex_state = 15, .external_lex_state = 16}, - [2565] = {.lex_state = 15, .external_lex_state = 16}, + [2564] = {.lex_state = 15, .external_lex_state = 14}, + [2565] = {.lex_state = 15, .external_lex_state = 14}, [2566] = {.lex_state = 15, .external_lex_state = 16}, - [2567] = {.lex_state = 15, .external_lex_state = 12}, - [2568] = {.lex_state = 15, .external_lex_state = 16}, + [2567] = {.lex_state = 15, .external_lex_state = 16}, + [2568] = {.lex_state = 16, .external_lex_state = 11}, [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 = 12}, - [2573] = {.lex_state = 15, .external_lex_state = 16}, - [2574] = {.lex_state = 23, .external_lex_state = 14}, - [2575] = {.lex_state = 23, .external_lex_state = 16}, - [2576] = {.lex_state = 23, .external_lex_state = 16}, - [2577] = {.lex_state = 15, .external_lex_state = 16}, - [2578] = {.lex_state = 15, .external_lex_state = 16}, - [2579] = {.lex_state = 15, .external_lex_state = 16}, + [2572] = {.lex_state = 23, .external_lex_state = 16}, + [2573] = {.lex_state = 15, .external_lex_state = 11}, + [2574] = {.lex_state = 15, .external_lex_state = 14}, + [2575] = {.lex_state = 15, .external_lex_state = 16}, + [2576] = {.lex_state = 15, .external_lex_state = 14}, + [2577] = {.lex_state = 23, .external_lex_state = 16}, + [2578] = {.lex_state = 15, .external_lex_state = 14}, + [2579] = {.lex_state = 15, .external_lex_state = 14}, [2580] = {.lex_state = 15, .external_lex_state = 16}, [2581] = {.lex_state = 15, .external_lex_state = 16}, - [2582] = {.lex_state = 15, .external_lex_state = 16}, + [2582] = {.lex_state = 15, .external_lex_state = 14}, [2583] = {.lex_state = 15, .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 = 15, .external_lex_state = 16}, - [2589] = {.lex_state = 23, .external_lex_state = 14}, - [2590] = {.lex_state = 15, .external_lex_state = 12}, - [2591] = {.lex_state = 15, .external_lex_state = 12}, - [2592] = {.lex_state = 15, .external_lex_state = 12}, - [2593] = {.lex_state = 15, .external_lex_state = 12}, - [2594] = {.lex_state = 15, .external_lex_state = 16}, - [2595] = {.lex_state = 15, .external_lex_state = 16}, - [2596] = {.lex_state = 15, .external_lex_state = 16}, + [2584] = {.lex_state = 15, .external_lex_state = 14}, + [2585] = {.lex_state = 15, .external_lex_state = 14}, + [2586] = {.lex_state = 15, .external_lex_state = 14}, + [2587] = {.lex_state = 15, .external_lex_state = 14}, + [2588] = {.lex_state = 66, .external_lex_state = 12}, + [2589] = {.lex_state = 15, .external_lex_state = 14}, + [2590] = {.lex_state = 15, .external_lex_state = 14}, + [2591] = {.lex_state = 15, .external_lex_state = 14}, + [2592] = {.lex_state = 16, .external_lex_state = 11}, + [2593] = {.lex_state = 15, .external_lex_state = 14}, + [2594] = {.lex_state = 15, .external_lex_state = 14}, + [2595] = {.lex_state = 15, .external_lex_state = 14}, + [2596] = {.lex_state = 15, .external_lex_state = 14}, [2597] = {.lex_state = 15, .external_lex_state = 16}, [2598] = {.lex_state = 15, .external_lex_state = 16}, [2599] = {.lex_state = 15, .external_lex_state = 16}, [2600] = {.lex_state = 15, .external_lex_state = 16}, - [2601] = {.lex_state = 15, .external_lex_state = 16}, + [2601] = {.lex_state = 16, .external_lex_state = 11}, [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}, - [2606] = {.lex_state = 15, .external_lex_state = 16}, - [2607] = {.lex_state = 15, .external_lex_state = 16}, + [2604] = {.lex_state = 15, .external_lex_state = 14}, + [2605] = {.lex_state = 15, .external_lex_state = 14}, + [2606] = {.lex_state = 15, .external_lex_state = 14}, + [2607] = {.lex_state = 15, .external_lex_state = 14}, [2608] = {.lex_state = 15, .external_lex_state = 16}, - [2609] = {.lex_state = 15, .external_lex_state = 16}, - [2610] = {.lex_state = 15, .external_lex_state = 16}, - [2611] = {.lex_state = 15, .external_lex_state = 16}, - [2612] = {.lex_state = 15, .external_lex_state = 6}, + [2609] = {.lex_state = 15, .external_lex_state = 14}, + [2610] = {.lex_state = 15, .external_lex_state = 14}, + [2611] = {.lex_state = 15, .external_lex_state = 14}, + [2612] = {.lex_state = 15, .external_lex_state = 14}, [2613] = {.lex_state = 15, .external_lex_state = 16}, - [2614] = {.lex_state = 15, .external_lex_state = 16}, + [2614] = {.lex_state = 23, .external_lex_state = 14}, [2615] = {.lex_state = 15, .external_lex_state = 16}, [2616] = {.lex_state = 15, .external_lex_state = 16}, [2617] = {.lex_state = 15, .external_lex_state = 16}, - [2618] = {.lex_state = 15, .external_lex_state = 16}, - [2619] = {.lex_state = 15, .external_lex_state = 16}, - [2620] = {.lex_state = 15, .external_lex_state = 16}, - [2621] = {.lex_state = 23, .external_lex_state = 14}, - [2622] = {.lex_state = 23, .external_lex_state = 14}, - [2623] = {.lex_state = 15, .external_lex_state = 16}, + [2618] = {.lex_state = 16, .external_lex_state = 11}, + [2619] = {.lex_state = 16, .external_lex_state = 11}, + [2620] = {.lex_state = 15, .external_lex_state = 14}, + [2621] = {.lex_state = 15, .external_lex_state = 16}, + [2622] = {.lex_state = 15, .external_lex_state = 14}, + [2623] = {.lex_state = 15, .external_lex_state = 14}, [2624] = {.lex_state = 15, .external_lex_state = 16}, - [2625] = {.lex_state = 23, .external_lex_state = 15}, - [2626] = {.lex_state = 23, .external_lex_state = 15}, + [2625] = {.lex_state = 15, .external_lex_state = 14}, + [2626] = {.lex_state = 15, .external_lex_state = 14}, [2627] = {.lex_state = 15, .external_lex_state = 16}, [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}, + [2630] = {.lex_state = 15, .external_lex_state = 14}, + [2631] = {.lex_state = 15, .external_lex_state = 14}, [2632] = {.lex_state = 15, .external_lex_state = 16}, [2633] = {.lex_state = 15, .external_lex_state = 16}, - [2634] = {.lex_state = 15, .external_lex_state = 16}, - [2635] = {.lex_state = 15, .external_lex_state = 12}, - [2636] = {.lex_state = 15, .external_lex_state = 16}, - [2637] = {.lex_state = 15, .external_lex_state = 16}, - [2638] = {.lex_state = 15, .external_lex_state = 14}, - [2639] = {.lex_state = 15, .external_lex_state = 14}, - [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 = 5, .external_lex_state = 2}, - [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 = 15, .external_lex_state = 14}, - [2648] = {.lex_state = 15, .external_lex_state = 14}, - [2649] = {.lex_state = 15, .external_lex_state = 14}, + [2634] = {.lex_state = 23, .external_lex_state = 14}, + [2635] = {.lex_state = 23, .external_lex_state = 14}, + [2636] = {.lex_state = 23, .external_lex_state = 14}, + [2637] = {.lex_state = 23, .external_lex_state = 14}, + [2638] = {.lex_state = 23, .external_lex_state = 16}, + [2639] = {.lex_state = 23, .external_lex_state = 16}, + [2640] = {.lex_state = 23, .external_lex_state = 15}, + [2641] = {.lex_state = 23, .external_lex_state = 15}, + [2642] = {.lex_state = 15, .external_lex_state = 16}, + [2643] = {.lex_state = 15, .external_lex_state = 16}, + [2644] = {.lex_state = 15, .external_lex_state = 16}, + [2645] = {.lex_state = 15, .external_lex_state = 16}, + [2646] = {.lex_state = 15, .external_lex_state = 16}, + [2647] = {.lex_state = 15, .external_lex_state = 16}, + [2648] = {.lex_state = 15, .external_lex_state = 16}, + [2649] = {.lex_state = 15, .external_lex_state = 6}, [2650] = {.lex_state = 15, .external_lex_state = 16}, - [2651] = {.lex_state = 15, .external_lex_state = 14}, - [2652] = {.lex_state = 15, .external_lex_state = 12}, - [2653] = {.lex_state = 15, .external_lex_state = 14}, - [2654] = {.lex_state = 15, .external_lex_state = 15}, - [2655] = {.lex_state = 15, .external_lex_state = 14}, - [2656] = {.lex_state = 5, .external_lex_state = 12}, - [2657] = {.lex_state = 15, .external_lex_state = 14}, - [2658] = {.lex_state = 16, .external_lex_state = 12}, - [2659] = {.lex_state = 15, .external_lex_state = 14}, - [2660] = {.lex_state = 15, .external_lex_state = 14}, - [2661] = {.lex_state = 15, .external_lex_state = 14}, - [2662] = {.lex_state = 15, .external_lex_state = 14}, - [2663] = {.lex_state = 16, .external_lex_state = 12}, - [2664] = {.lex_state = 16, .external_lex_state = 12}, - [2665] = {.lex_state = 16, .external_lex_state = 12}, - [2666] = {.lex_state = 16, .external_lex_state = 12}, - [2667] = {.lex_state = 16, .external_lex_state = 12}, - [2668] = {.lex_state = 5, .external_lex_state = 12}, - [2669] = {.lex_state = 16, .external_lex_state = 12}, - [2670] = {.lex_state = 5, .external_lex_state = 12}, - [2671] = {.lex_state = 5, .external_lex_state = 12}, - [2672] = {.lex_state = 5, .external_lex_state = 12}, - [2673] = {.lex_state = 5, .external_lex_state = 12}, - [2674] = {.lex_state = 15, .external_lex_state = 14}, - [2675] = {.lex_state = 5, .external_lex_state = 12}, - [2676] = {.lex_state = 15, .external_lex_state = 14}, - [2677] = {.lex_state = 5, .external_lex_state = 12}, - [2678] = {.lex_state = 15, .external_lex_state = 14}, - [2679] = {.lex_state = 5, .external_lex_state = 12}, - [2680] = {.lex_state = 5, .external_lex_state = 12}, - [2681] = {.lex_state = 5, .external_lex_state = 12}, - [2682] = {.lex_state = 5, .external_lex_state = 12}, - [2683] = {.lex_state = 15, .external_lex_state = 14}, - [2684] = {.lex_state = 5, .external_lex_state = 12}, - [2685] = {.lex_state = 5, .external_lex_state = 12}, - [2686] = {.lex_state = 5, .external_lex_state = 12}, - [2687] = {.lex_state = 5, .external_lex_state = 12}, - [2688] = {.lex_state = 5, .external_lex_state = 14}, - [2689] = {.lex_state = 16, .external_lex_state = 12}, - [2690] = {.lex_state = 16, .external_lex_state = 12}, - [2691] = {.lex_state = 15, .external_lex_state = 14}, - [2692] = {.lex_state = 15, .external_lex_state = 14}, - [2693] = {.lex_state = 15, .external_lex_state = 14}, - [2694] = {.lex_state = 15, .external_lex_state = 14}, + [2651] = {.lex_state = 15, .external_lex_state = 16}, + [2652] = {.lex_state = 15, .external_lex_state = 16}, + [2653] = {.lex_state = 15, .external_lex_state = 16}, + [2654] = {.lex_state = 15, .external_lex_state = 6}, + [2655] = {.lex_state = 15, .external_lex_state = 16}, + [2656] = {.lex_state = 15, .external_lex_state = 16}, + [2657] = {.lex_state = 15, .external_lex_state = 16}, + [2658] = {.lex_state = 15, .external_lex_state = 16}, + [2659] = {.lex_state = 15, .external_lex_state = 16}, + [2660] = {.lex_state = 15, .external_lex_state = 16}, + [2661] = {.lex_state = 15, .external_lex_state = 16}, + [2662] = {.lex_state = 15, .external_lex_state = 16}, + [2663] = {.lex_state = 15, .external_lex_state = 16}, + [2664] = {.lex_state = 15, .external_lex_state = 16}, + [2665] = {.lex_state = 15, .external_lex_state = 16}, + [2666] = {.lex_state = 15, .external_lex_state = 16}, + [2667] = {.lex_state = 15, .external_lex_state = 16}, + [2668] = {.lex_state = 15, .external_lex_state = 16}, + [2669] = {.lex_state = 15, .external_lex_state = 16}, + [2670] = {.lex_state = 15, .external_lex_state = 16}, + [2671] = {.lex_state = 15, .external_lex_state = 16}, + [2672] = {.lex_state = 15, .external_lex_state = 16}, + [2673] = {.lex_state = 15, .external_lex_state = 16}, + [2674] = {.lex_state = 15, .external_lex_state = 16}, + [2675] = {.lex_state = 15, .external_lex_state = 16}, + [2676] = {.lex_state = 15, .external_lex_state = 16}, + [2677] = {.lex_state = 15, .external_lex_state = 16}, + [2678] = {.lex_state = 15, .external_lex_state = 16}, + [2679] = {.lex_state = 15, .external_lex_state = 16}, + [2680] = {.lex_state = 15, .external_lex_state = 16}, + [2681] = {.lex_state = 15, .external_lex_state = 16}, + [2682] = {.lex_state = 15, .external_lex_state = 16}, + [2683] = {.lex_state = 15, .external_lex_state = 16}, + [2684] = {.lex_state = 15, .external_lex_state = 16}, + [2685] = {.lex_state = 15, .external_lex_state = 16}, + [2686] = {.lex_state = 15, .external_lex_state = 12}, + [2687] = {.lex_state = 15, .external_lex_state = 16}, + [2688] = {.lex_state = 15, .external_lex_state = 16}, + [2689] = {.lex_state = 15, .external_lex_state = 16}, + [2690] = {.lex_state = 15, .external_lex_state = 16}, + [2691] = {.lex_state = 15, .external_lex_state = 16}, + [2692] = {.lex_state = 15, .external_lex_state = 16}, + [2693] = {.lex_state = 15, .external_lex_state = 16}, + [2694] = {.lex_state = 16, .external_lex_state = 12}, [2695] = {.lex_state = 15, .external_lex_state = 14}, - [2696] = {.lex_state = 5, .external_lex_state = 12}, + [2696] = {.lex_state = 15, .external_lex_state = 14}, [2697] = {.lex_state = 15, .external_lex_state = 14}, - [2698] = {.lex_state = 16, .external_lex_state = 12}, + [2698] = {.lex_state = 15, .external_lex_state = 14}, [2699] = {.lex_state = 15, .external_lex_state = 14}, - [2700] = {.lex_state = 5, .external_lex_state = 12}, + [2700] = {.lex_state = 15, .external_lex_state = 14}, [2701] = {.lex_state = 15, .external_lex_state = 14}, - [2702] = {.lex_state = 15, .external_lex_state = 14}, + [2702] = {.lex_state = 5, .external_lex_state = 2}, [2703] = {.lex_state = 15, .external_lex_state = 14}, [2704] = {.lex_state = 15, .external_lex_state = 14}, [2705] = {.lex_state = 15, .external_lex_state = 14}, @@ -15834,265 +16029,265 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2708] = {.lex_state = 15, .external_lex_state = 14}, [2709] = {.lex_state = 15, .external_lex_state = 14}, [2710] = {.lex_state = 15, .external_lex_state = 14}, - [2711] = {.lex_state = 5, .external_lex_state = 2}, + [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 = 16, .external_lex_state = 12}, - [2716] = {.lex_state = 15, .external_lex_state = 14}, - [2717] = {.lex_state = 16, .external_lex_state = 12}, - [2718] = {.lex_state = 15, .external_lex_state = 14}, + [2713] = {.lex_state = 16, .external_lex_state = 12}, + [2714] = {.lex_state = 16, .external_lex_state = 12}, + [2715] = {.lex_state = 15, .external_lex_state = 14}, + [2716] = {.lex_state = 16, .external_lex_state = 12}, + [2717] = {.lex_state = 15, .external_lex_state = 14}, + [2718] = {.lex_state = 16, .external_lex_state = 12}, [2719] = {.lex_state = 15, .external_lex_state = 14}, - [2720] = {.lex_state = 5, .external_lex_state = 12}, + [2720] = {.lex_state = 15, .external_lex_state = 14}, [2721] = {.lex_state = 15, .external_lex_state = 14}, - [2722] = {.lex_state = 5, .external_lex_state = 12}, + [2722] = {.lex_state = 15, .external_lex_state = 14}, [2723] = {.lex_state = 15, .external_lex_state = 14}, [2724] = {.lex_state = 15, .external_lex_state = 14}, [2725] = {.lex_state = 15, .external_lex_state = 14}, - [2726] = {.lex_state = 16, .external_lex_state = 12}, + [2726] = {.lex_state = 15, .external_lex_state = 14}, [2727] = {.lex_state = 15, .external_lex_state = 14}, - [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 = 66, .external_lex_state = 13}, - [2732] = {.lex_state = 66, .external_lex_state = 13}, - [2733] = {.lex_state = 66, .external_lex_state = 13}, - [2734] = {.lex_state = 66, .external_lex_state = 13}, - [2735] = {.lex_state = 5, .external_lex_state = 14}, - [2736] = {.lex_state = 66, .external_lex_state = 12}, - [2737] = {.lex_state = 66, .external_lex_state = 13}, - [2738] = {.lex_state = 66, .external_lex_state = 13}, - [2739] = {.lex_state = 66, .external_lex_state = 13}, - [2740] = {.lex_state = 5, .external_lex_state = 8}, - [2741] = {.lex_state = 5, .external_lex_state = 8}, - [2742] = {.lex_state = 5, .external_lex_state = 14}, - [2743] = {.lex_state = 66, .external_lex_state = 12}, - [2744] = {.lex_state = 5, .external_lex_state = 6}, - [2745] = {.lex_state = 5, .external_lex_state = 8}, - [2746] = {.lex_state = 5, .external_lex_state = 6}, - [2747] = {.lex_state = 5, .external_lex_state = 12}, - [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 = 8}, - [2752] = {.lex_state = 5, .external_lex_state = 6}, - [2753] = {.lex_state = 5, .external_lex_state = 6}, - [2754] = {.lex_state = 66, .external_lex_state = 12}, - [2755] = {.lex_state = 5, .external_lex_state = 6}, - [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 = 6}, - [2760] = {.lex_state = 66, .external_lex_state = 12}, - [2761] = {.lex_state = 5, .external_lex_state = 6}, - [2762] = {.lex_state = 5, .external_lex_state = 8}, - [2763] = {.lex_state = 5, .external_lex_state = 14}, - [2764] = {.lex_state = 5, .external_lex_state = 6}, - [2765] = {.lex_state = 5, .external_lex_state = 6}, - [2766] = {.lex_state = 5, .external_lex_state = 8}, - [2767] = {.lex_state = 5, .external_lex_state = 6}, - [2768] = {.lex_state = 5, .external_lex_state = 6}, - [2769] = {.lex_state = 5, .external_lex_state = 8}, - [2770] = {.lex_state = 5, .external_lex_state = 6}, - [2771] = {.lex_state = 5, .external_lex_state = 6}, - [2772] = {.lex_state = 5, .external_lex_state = 6}, - [2773] = {.lex_state = 5, .external_lex_state = 8}, + [2728] = {.lex_state = 15, .external_lex_state = 12}, + [2729] = {.lex_state = 15, .external_lex_state = 14}, + [2730] = {.lex_state = 15, .external_lex_state = 14}, + [2731] = {.lex_state = 15, .external_lex_state = 14}, + [2732] = {.lex_state = 15, .external_lex_state = 14}, + [2733] = {.lex_state = 15, .external_lex_state = 14}, + [2734] = {.lex_state = 15, .external_lex_state = 14}, + [2735] = {.lex_state = 16, .external_lex_state = 12}, + [2736] = {.lex_state = 5, .external_lex_state = 12}, + [2737] = {.lex_state = 16, .external_lex_state = 12}, + [2738] = {.lex_state = 16, .external_lex_state = 12}, + [2739] = {.lex_state = 16, .external_lex_state = 12}, + [2740] = {.lex_state = 16, .external_lex_state = 12}, + [2741] = {.lex_state = 16, .external_lex_state = 12}, + [2742] = {.lex_state = 15, .external_lex_state = 14}, + [2743] = {.lex_state = 15, .external_lex_state = 14}, + [2744] = {.lex_state = 5, .external_lex_state = 12}, + [2745] = {.lex_state = 16, .external_lex_state = 12}, + [2746] = {.lex_state = 15, .external_lex_state = 14}, + [2747] = {.lex_state = 15, .external_lex_state = 16}, + [2748] = {.lex_state = 15, .external_lex_state = 15}, + [2749] = {.lex_state = 5, .external_lex_state = 12}, + [2750] = {.lex_state = 16, .external_lex_state = 12}, + [2751] = {.lex_state = 15, .external_lex_state = 14}, + [2752] = {.lex_state = 15, .external_lex_state = 14}, + [2753] = {.lex_state = 15, .external_lex_state = 14}, + [2754] = {.lex_state = 15, .external_lex_state = 14}, + [2755] = {.lex_state = 15, .external_lex_state = 14}, + [2756] = {.lex_state = 15, .external_lex_state = 14}, + [2757] = {.lex_state = 15, .external_lex_state = 14}, + [2758] = {.lex_state = 15, .external_lex_state = 14}, + [2759] = {.lex_state = 15, .external_lex_state = 14}, + [2760] = {.lex_state = 15, .external_lex_state = 14}, + [2761] = {.lex_state = 15, .external_lex_state = 14}, + [2762] = {.lex_state = 15, .external_lex_state = 14}, + [2763] = {.lex_state = 5, .external_lex_state = 12}, + [2764] = {.lex_state = 5, .external_lex_state = 12}, + [2765] = {.lex_state = 5, .external_lex_state = 12}, + [2766] = {.lex_state = 5, .external_lex_state = 14}, + [2767] = {.lex_state = 5, .external_lex_state = 12}, + [2768] = {.lex_state = 5, .external_lex_state = 12}, + [2769] = {.lex_state = 5, .external_lex_state = 12}, + [2770] = {.lex_state = 5, .external_lex_state = 12}, + [2771] = {.lex_state = 5, .external_lex_state = 12}, + [2772] = {.lex_state = 5, .external_lex_state = 12}, + [2773] = {.lex_state = 5, .external_lex_state = 12}, [2774] = {.lex_state = 5, .external_lex_state = 12}, - [2775] = {.lex_state = 5, .external_lex_state = 8}, - [2776] = {.lex_state = 5, .external_lex_state = 6}, - [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 = 6}, - [2781] = {.lex_state = 5, .external_lex_state = 6}, - [2782] = {.lex_state = 5, .external_lex_state = 6}, - [2783] = {.lex_state = 5, .external_lex_state = 2}, - [2784] = {.lex_state = 66, .external_lex_state = 12}, - [2785] = {.lex_state = 5, .external_lex_state = 12}, - [2786] = {.lex_state = 66, .external_lex_state = 12}, + [2775] = {.lex_state = 5, .external_lex_state = 12}, + [2776] = {.lex_state = 5, .external_lex_state = 12}, + [2777] = {.lex_state = 5, .external_lex_state = 12}, + [2778] = {.lex_state = 5, .external_lex_state = 12}, + [2779] = {.lex_state = 5, .external_lex_state = 12}, + [2780] = {.lex_state = 5, .external_lex_state = 12}, + [2781] = {.lex_state = 5, .external_lex_state = 12}, + [2782] = {.lex_state = 15, .external_lex_state = 14}, + [2783] = {.lex_state = 5, .external_lex_state = 12}, + [2784] = {.lex_state = 5, .external_lex_state = 12}, + [2785] = {.lex_state = 5, .external_lex_state = 2}, + [2786] = {.lex_state = 16, .external_lex_state = 12}, [2787] = {.lex_state = 66, .external_lex_state = 13}, [2788] = {.lex_state = 66, .external_lex_state = 13}, [2789] = {.lex_state = 66, .external_lex_state = 12}, [2790] = {.lex_state = 66, .external_lex_state = 13}, - [2791] = {.lex_state = 66, .external_lex_state = 12}, - [2792] = {.lex_state = 5, .external_lex_state = 2}, + [2791] = {.lex_state = 66, .external_lex_state = 13}, + [2792] = {.lex_state = 5, .external_lex_state = 14}, [2793] = {.lex_state = 66, .external_lex_state = 13}, - [2794] = {.lex_state = 5, .external_lex_state = 12}, + [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 = 66, .external_lex_state = 13}, - [2798] = {.lex_state = 5, .external_lex_state = 2}, - [2799] = {.lex_state = 66, .external_lex_state = 12}, - [2800] = {.lex_state = 5, .external_lex_state = 2}, - [2801] = {.lex_state = 66, .external_lex_state = 12}, - [2802] = {.lex_state = 66, .external_lex_state = 13}, - [2803] = {.lex_state = 5, .external_lex_state = 2}, - [2804] = {.lex_state = 66, .external_lex_state = 13}, + [2796] = {.lex_state = 5, .external_lex_state = 8}, + [2797] = {.lex_state = 5, .external_lex_state = 6}, + [2798] = {.lex_state = 5, .external_lex_state = 6}, + [2799] = {.lex_state = 5, .external_lex_state = 8}, + [2800] = {.lex_state = 5, .external_lex_state = 8}, + [2801] = {.lex_state = 5, .external_lex_state = 6}, + [2802] = {.lex_state = 5, .external_lex_state = 12}, + [2803] = {.lex_state = 5, .external_lex_state = 6}, + [2804] = {.lex_state = 5, .external_lex_state = 8}, [2805] = {.lex_state = 66, .external_lex_state = 12}, - [2806] = {.lex_state = 66, .external_lex_state = 12}, - [2807] = {.lex_state = 66, .external_lex_state = 12}, - [2808] = {.lex_state = 66, .external_lex_state = 13}, - [2809] = {.lex_state = 66, .external_lex_state = 13}, - [2810] = {.lex_state = 66, .external_lex_state = 13}, - [2811] = {.lex_state = 66, .external_lex_state = 3}, - [2812] = {.lex_state = 66, .external_lex_state = 13}, - [2813] = {.lex_state = 66, .external_lex_state = 13}, - [2814] = {.lex_state = 66, .external_lex_state = 13}, - [2815] = {.lex_state = 5, .external_lex_state = 7}, - [2816] = {.lex_state = 66, .external_lex_state = 13}, - [2817] = {.lex_state = 66, .external_lex_state = 13}, - [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 = 13}, - [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 = 5, .external_lex_state = 7}, - [2826] = {.lex_state = 66, .external_lex_state = 13}, - [2827] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 13}, - [2832] = {.lex_state = 66, .external_lex_state = 13}, - [2833] = {.lex_state = 66, .external_lex_state = 13}, - [2834] = {.lex_state = 5, .external_lex_state = 7}, - [2835] = {.lex_state = 66, .external_lex_state = 13}, - [2836] = {.lex_state = 5, .external_lex_state = 7}, - [2837] = {.lex_state = 66, .external_lex_state = 13}, - [2838] = {.lex_state = 66, .external_lex_state = 13}, + [2806] = {.lex_state = 5, .external_lex_state = 6}, + [2807] = {.lex_state = 5, .external_lex_state = 6}, + [2808] = {.lex_state = 5, .external_lex_state = 8}, + [2809] = {.lex_state = 5, .external_lex_state = 14}, + [2810] = {.lex_state = 5, .external_lex_state = 6}, + [2811] = {.lex_state = 5, .external_lex_state = 6}, + [2812] = {.lex_state = 5, .external_lex_state = 6}, + [2813] = {.lex_state = 5, .external_lex_state = 6}, + [2814] = {.lex_state = 5, .external_lex_state = 8}, + [2815] = {.lex_state = 5, .external_lex_state = 8}, + [2816] = {.lex_state = 5, .external_lex_state = 6}, + [2817] = {.lex_state = 5, .external_lex_state = 8}, + [2818] = {.lex_state = 5, .external_lex_state = 6}, + [2819] = {.lex_state = 5, .external_lex_state = 6}, + [2820] = {.lex_state = 5, .external_lex_state = 6}, + [2821] = {.lex_state = 5, .external_lex_state = 6}, + [2822] = {.lex_state = 5, .external_lex_state = 8}, + [2823] = {.lex_state = 5, .external_lex_state = 6}, + [2824] = {.lex_state = 5, .external_lex_state = 6}, + [2825] = {.lex_state = 5, .external_lex_state = 8}, + [2826] = {.lex_state = 5, .external_lex_state = 6}, + [2827] = {.lex_state = 5, .external_lex_state = 8}, + [2828] = {.lex_state = 5, .external_lex_state = 6}, + [2829] = {.lex_state = 5, .external_lex_state = 6}, + [2830] = {.lex_state = 66, .external_lex_state = 12}, + [2831] = {.lex_state = 5, .external_lex_state = 6}, + [2832] = {.lex_state = 5, .external_lex_state = 14}, + [2833] = {.lex_state = 66, .external_lex_state = 12}, + [2834] = {.lex_state = 5, .external_lex_state = 12}, + [2835] = {.lex_state = 5, .external_lex_state = 6}, + [2836] = {.lex_state = 5, .external_lex_state = 8}, + [2837] = {.lex_state = 5, .external_lex_state = 6}, + [2838] = {.lex_state = 5, .external_lex_state = 6}, [2839] = {.lex_state = 66, .external_lex_state = 13}, - [2840] = {.lex_state = 66, .external_lex_state = 13}, + [2840] = {.lex_state = 66, .external_lex_state = 12}, [2841] = {.lex_state = 66, .external_lex_state = 13}, - [2842] = {.lex_state = 66, .external_lex_state = 13}, - [2843] = {.lex_state = 66, .external_lex_state = 13}, - [2844] = {.lex_state = 66, .external_lex_state = 13}, + [2842] = {.lex_state = 5, .external_lex_state = 12}, + [2843] = {.lex_state = 5, .external_lex_state = 2}, + [2844] = {.lex_state = 66, .external_lex_state = 12}, [2845] = {.lex_state = 66, .external_lex_state = 13}, - [2846] = {.lex_state = 66, .external_lex_state = 13}, - [2847] = {.lex_state = 66, .external_lex_state = 12}, - [2848] = {.lex_state = 66, .external_lex_state = 13}, - [2849] = {.lex_state = 5, .external_lex_state = 7}, + [2846] = {.lex_state = 66, .external_lex_state = 12}, + [2847] = {.lex_state = 66, .external_lex_state = 13}, + [2848] = {.lex_state = 5, .external_lex_state = 2}, + [2849] = {.lex_state = 66, .external_lex_state = 13}, [2850] = {.lex_state = 66, .external_lex_state = 13}, - [2851] = {.lex_state = 66, .external_lex_state = 3}, + [2851] = {.lex_state = 66, .external_lex_state = 12}, [2852] = {.lex_state = 66, .external_lex_state = 13}, [2853] = {.lex_state = 66, .external_lex_state = 13}, - [2854] = {.lex_state = 5, .external_lex_state = 7}, - [2855] = {.lex_state = 66, .external_lex_state = 13}, - [2856] = {.lex_state = 66, .external_lex_state = 12}, - [2857] = {.lex_state = 5, .external_lex_state = 7}, - [2858] = {.lex_state = 5, .external_lex_state = 7}, - [2859] = {.lex_state = 66, .external_lex_state = 13}, - [2860] = {.lex_state = 66, .external_lex_state = 13}, - [2861] = {.lex_state = 5, .external_lex_state = 7}, - [2862] = {.lex_state = 66, .external_lex_state = 13}, - [2863] = {.lex_state = 66, .external_lex_state = 13}, + [2854] = {.lex_state = 66, .external_lex_state = 12}, + [2855] = {.lex_state = 66, .external_lex_state = 12}, + [2856] = {.lex_state = 5, .external_lex_state = 12}, + [2857] = {.lex_state = 5, .external_lex_state = 2}, + [2858] = {.lex_state = 66, .external_lex_state = 12}, + [2859] = {.lex_state = 66, .external_lex_state = 12}, + [2860] = {.lex_state = 5, .external_lex_state = 2}, + [2861] = {.lex_state = 66, .external_lex_state = 12}, + [2862] = {.lex_state = 5, .external_lex_state = 2}, + [2863] = {.lex_state = 66, .external_lex_state = 12}, [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 = 13}, [2868] = {.lex_state = 66, .external_lex_state = 13}, - [2869] = {.lex_state = 66, .external_lex_state = 12}, + [2869] = {.lex_state = 66, .external_lex_state = 13}, [2870] = {.lex_state = 66, .external_lex_state = 13}, - [2871] = {.lex_state = 66, .external_lex_state = 12}, + [2871] = {.lex_state = 66, .external_lex_state = 13}, [2872] = {.lex_state = 66, .external_lex_state = 13}, [2873] = {.lex_state = 66, .external_lex_state = 13}, [2874] = {.lex_state = 66, .external_lex_state = 13}, [2875] = {.lex_state = 66, .external_lex_state = 13}, [2876] = {.lex_state = 66, .external_lex_state = 13}, - [2877] = {.lex_state = 5, .external_lex_state = 7}, + [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 = 5, .external_lex_state = 7}, + [2880] = {.lex_state = 66, .external_lex_state = 13}, [2881] = {.lex_state = 66, .external_lex_state = 13}, [2882] = {.lex_state = 66, .external_lex_state = 13}, [2883] = {.lex_state = 66, .external_lex_state = 13}, [2884] = {.lex_state = 66, .external_lex_state = 13}, [2885] = {.lex_state = 66, .external_lex_state = 13}, [2886] = {.lex_state = 66, .external_lex_state = 13}, - [2887] = {.lex_state = 66, .external_lex_state = 3}, + [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 = 13}, - [2891] = {.lex_state = 5, .external_lex_state = 7}, + [2891] = {.lex_state = 66, .external_lex_state = 13}, [2892] = {.lex_state = 66, .external_lex_state = 13}, [2893] = {.lex_state = 66, .external_lex_state = 13}, - [2894] = {.lex_state = 5, .external_lex_state = 7}, - [2895] = {.lex_state = 5, .external_lex_state = 7}, - [2896] = {.lex_state = 5, .external_lex_state = 7}, - [2897] = {.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}, [2898] = {.lex_state = 66, .external_lex_state = 13}, [2899] = {.lex_state = 66, .external_lex_state = 13}, - [2900] = {.lex_state = 66, .external_lex_state = 12}, + [2900] = {.lex_state = 66, .external_lex_state = 13}, [2901] = {.lex_state = 66, .external_lex_state = 13}, [2902] = {.lex_state = 66, .external_lex_state = 13}, [2903] = {.lex_state = 66, .external_lex_state = 13}, [2904] = {.lex_state = 66, .external_lex_state = 13}, - [2905] = {.lex_state = 66, .external_lex_state = 12}, + [2905] = {.lex_state = 66, .external_lex_state = 3}, [2906] = {.lex_state = 66, .external_lex_state = 13}, [2907] = {.lex_state = 66, .external_lex_state = 13}, - [2908] = {.lex_state = 5, .external_lex_state = 7}, - [2909] = {.lex_state = 5, .external_lex_state = 7}, + [2908] = {.lex_state = 66, .external_lex_state = 3}, + [2909] = {.lex_state = 66, .external_lex_state = 13}, [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 = 5, .external_lex_state = 7}, + [2915] = {.lex_state = 66, .external_lex_state = 13}, [2916] = {.lex_state = 66, .external_lex_state = 13}, - [2917] = {.lex_state = 5, .external_lex_state = 7}, - [2918] = {.lex_state = 66, .external_lex_state = 13}, + [2917] = {.lex_state = 66, .external_lex_state = 12}, + [2918] = {.lex_state = 66, .external_lex_state = 12}, [2919] = {.lex_state = 66, .external_lex_state = 13}, [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 = 5, .external_lex_state = 7}, [2923] = {.lex_state = 66, .external_lex_state = 13}, [2924] = {.lex_state = 66, .external_lex_state = 13}, - [2925] = {.lex_state = 66, .external_lex_state = 13}, - [2926] = {.lex_state = 66, .external_lex_state = 13}, - [2927] = {.lex_state = 66, .external_lex_state = 13}, + [2925] = {.lex_state = 66, .external_lex_state = 12}, + [2926] = {.lex_state = 5, .external_lex_state = 7}, + [2927] = {.lex_state = 5, .external_lex_state = 7}, [2928] = {.lex_state = 66, .external_lex_state = 13}, [2929] = {.lex_state = 66, .external_lex_state = 13}, - [2930] = {.lex_state = 66, .external_lex_state = 13}, - [2931] = {.lex_state = 66, .external_lex_state = 13}, + [2930] = {.lex_state = 5, .external_lex_state = 7}, + [2931] = {.lex_state = 5, .external_lex_state = 7}, [2932] = {.lex_state = 66, .external_lex_state = 13}, - [2933] = {.lex_state = 66, .external_lex_state = 12}, - [2934] = {.lex_state = 17, .external_lex_state = 11}, + [2933] = {.lex_state = 66, .external_lex_state = 13}, + [2934] = {.lex_state = 66, .external_lex_state = 13}, [2935] = {.lex_state = 66, .external_lex_state = 13}, [2936] = {.lex_state = 66, .external_lex_state = 13}, - [2937] = {.lex_state = 66, .external_lex_state = 13}, - [2938] = {.lex_state = 66, .external_lex_state = 13}, + [2937] = {.lex_state = 5, .external_lex_state = 7}, + [2938] = {.lex_state = 5, .external_lex_state = 7}, [2939] = {.lex_state = 66, .external_lex_state = 13}, - [2940] = {.lex_state = 66, .external_lex_state = 13}, + [2940] = {.lex_state = 66, .external_lex_state = 12}, [2941] = {.lex_state = 66, .external_lex_state = 13}, - [2942] = {.lex_state = 66, .external_lex_state = 13}, + [2942] = {.lex_state = 5, .external_lex_state = 7}, [2943] = {.lex_state = 66, .external_lex_state = 13}, [2944] = {.lex_state = 66, .external_lex_state = 13}, [2945] = {.lex_state = 66, .external_lex_state = 13}, [2946] = {.lex_state = 66, .external_lex_state = 13}, - [2947] = {.lex_state = 66, .external_lex_state = 13}, + [2947] = {.lex_state = 66, .external_lex_state = 12}, [2948] = {.lex_state = 66, .external_lex_state = 13}, - [2949] = {.lex_state = 66, .external_lex_state = 13}, - [2950] = {.lex_state = 66, .external_lex_state = 13}, - [2951] = {.lex_state = 66, .external_lex_state = 13}, - [2952] = {.lex_state = 5, .external_lex_state = 2}, + [2949] = {.lex_state = 66, .external_lex_state = 12}, + [2950] = {.lex_state = 5, .external_lex_state = 7}, + [2951] = {.lex_state = 5, .external_lex_state = 7}, + [2952] = {.lex_state = 5, .external_lex_state = 7}, [2953] = {.lex_state = 66, .external_lex_state = 13}, - [2954] = {.lex_state = 66, .external_lex_state = 13}, - [2955] = {.lex_state = 66, .external_lex_state = 13}, + [2954] = {.lex_state = 5, .external_lex_state = 7}, + [2955] = {.lex_state = 5, .external_lex_state = 7}, [2956] = {.lex_state = 66, .external_lex_state = 13}, [2957] = {.lex_state = 66, .external_lex_state = 13}, [2958] = {.lex_state = 66, .external_lex_state = 13}, - [2959] = {.lex_state = 66, .external_lex_state = 13}, - [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 = 66, .external_lex_state = 13}, - [2964] = {.lex_state = 66, .external_lex_state = 13}, - [2965] = {.lex_state = 66, .external_lex_state = 13}, + [2959] = {.lex_state = 5, .external_lex_state = 7}, + [2960] = {.lex_state = 5, .external_lex_state = 7}, + [2961] = {.lex_state = 5, .external_lex_state = 7}, + [2962] = {.lex_state = 5, .external_lex_state = 7}, + [2963] = {.lex_state = 5, .external_lex_state = 7}, + [2964] = {.lex_state = 5, .external_lex_state = 7}, + [2965] = {.lex_state = 5, .external_lex_state = 7}, [2966] = {.lex_state = 66, .external_lex_state = 13}, [2967] = {.lex_state = 66, .external_lex_state = 13}, [2968] = {.lex_state = 66, .external_lex_state = 13}, - [2969] = {.lex_state = 17, .external_lex_state = 11}, + [2969] = {.lex_state = 66, .external_lex_state = 3}, [2970] = {.lex_state = 66, .external_lex_state = 13}, [2971] = {.lex_state = 66, .external_lex_state = 13}, [2972] = {.lex_state = 66, .external_lex_state = 13}, @@ -16102,8 +16297,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2976] = {.lex_state = 66, .external_lex_state = 13}, [2977] = {.lex_state = 66, .external_lex_state = 13}, [2978] = {.lex_state = 66, .external_lex_state = 13}, - [2979] = {.lex_state = 66, .external_lex_state = 13}, - [2980] = {.lex_state = 66, .external_lex_state = 13}, + [2979] = {.lex_state = 66, .external_lex_state = 12}, + [2980] = {.lex_state = 66, .external_lex_state = 12}, [2981] = {.lex_state = 66, .external_lex_state = 13}, [2982] = {.lex_state = 66, .external_lex_state = 13}, [2983] = {.lex_state = 66, .external_lex_state = 13}, @@ -16112,7 +16307,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 12}, + [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}, @@ -16150,7 +16345,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3024] = {.lex_state = 66, .external_lex_state = 13}, [3025] = {.lex_state = 66, .external_lex_state = 13}, [3026] = {.lex_state = 66, .external_lex_state = 13}, - [3027] = {.lex_state = 66, .external_lex_state = 13}, + [3027] = {.lex_state = 17, .external_lex_state = 11}, [3028] = {.lex_state = 66, .external_lex_state = 13}, [3029] = {.lex_state = 66, .external_lex_state = 13}, [3030] = {.lex_state = 66, .external_lex_state = 13}, @@ -16183,2611 +16378,2611 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 5, .external_lex_state = 2}, + [3060] = {.lex_state = 66, .external_lex_state = 12}, [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 = 66, .external_lex_state = 13}, [3065] = {.lex_state = 66, .external_lex_state = 13}, - [3066] = {.lex_state = 5, .external_lex_state = 2}, + [3066] = {.lex_state = 66, .external_lex_state = 13}, [3067] = {.lex_state = 66, .external_lex_state = 13}, - [3068] = {.lex_state = 5, .external_lex_state = 2}, - [3069] = {.lex_state = 5, .external_lex_state = 2}, + [3068] = {.lex_state = 66, .external_lex_state = 13}, + [3069] = {.lex_state = 66, .external_lex_state = 13}, [3070] = {.lex_state = 66, .external_lex_state = 13}, [3071] = {.lex_state = 66, .external_lex_state = 13}, [3072] = {.lex_state = 66, .external_lex_state = 13}, - [3073] = {.lex_state = 5, .external_lex_state = 2}, - [3074] = {.lex_state = 5, .external_lex_state = 2}, - [3075] = {.lex_state = 5, .external_lex_state = 2}, - [3076] = {.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 = 66, .external_lex_state = 13}, + [3076] = {.lex_state = 66, .external_lex_state = 13}, [3077] = {.lex_state = 66, .external_lex_state = 13}, - [3078] = {.lex_state = 66, .external_lex_state = 12}, - [3079] = {.lex_state = 66, .external_lex_state = 12}, - [3080] = {.lex_state = 66, .external_lex_state = 12}, - [3081] = {.lex_state = 66, .external_lex_state = 12}, - [3082] = {.lex_state = 66, .external_lex_state = 14}, - [3083] = {.lex_state = 66, .external_lex_state = 14}, - [3084] = {.lex_state = 66, .external_lex_state = 2}, - [3085] = {.lex_state = 18, .external_lex_state = 12}, - [3086] = {.lex_state = 66, .external_lex_state = 12}, - [3087] = {.lex_state = 66, .external_lex_state = 2}, - [3088] = {.lex_state = 66, .external_lex_state = 14}, - [3089] = {.lex_state = 18, .external_lex_state = 12}, - [3090] = {.lex_state = 66, .external_lex_state = 12}, - [3091] = {.lex_state = 18, .external_lex_state = 12}, - [3092] = {.lex_state = 66, .external_lex_state = 12}, - [3093] = {.lex_state = 18, .external_lex_state = 12}, - [3094] = {.lex_state = 66, .external_lex_state = 14}, - [3095] = {.lex_state = 15, .external_lex_state = 14}, - [3096] = {.lex_state = 17, .external_lex_state = 12}, - [3097] = {.lex_state = 17, .external_lex_state = 12}, - [3098] = {.lex_state = 17, .external_lex_state = 15}, - [3099] = {.lex_state = 17, .external_lex_state = 16}, - [3100] = {.lex_state = 17, .external_lex_state = 15}, - [3101] = {.lex_state = 17, .external_lex_state = 15}, - [3102] = {.lex_state = 66, .external_lex_state = 12}, - [3103] = {.lex_state = 17, .external_lex_state = 16}, - [3104] = {.lex_state = 17, .external_lex_state = 15}, - [3105] = {.lex_state = 14, .external_lex_state = 16}, - [3106] = {.lex_state = 18, .external_lex_state = 15}, - [3107] = {.lex_state = 14, .external_lex_state = 16}, - [3108] = {.lex_state = 15, .external_lex_state = 14}, - [3109] = {.lex_state = 18, .external_lex_state = 15}, - [3110] = {.lex_state = 18, .external_lex_state = 15}, - [3111] = {.lex_state = 17, .external_lex_state = 14}, - [3112] = {.lex_state = 18, .external_lex_state = 11}, - [3113] = {.lex_state = 14, .external_lex_state = 16}, - [3114] = {.lex_state = 14, .external_lex_state = 16}, - [3115] = {.lex_state = 18, .external_lex_state = 15}, - [3116] = {.lex_state = 15, .external_lex_state = 14}, - [3117] = {.lex_state = 17, .external_lex_state = 14}, - [3118] = {.lex_state = 15, .external_lex_state = 14}, - [3119] = {.lex_state = 14, .external_lex_state = 16}, - [3120] = {.lex_state = 17, .external_lex_state = 16}, - [3121] = {.lex_state = 18, .external_lex_state = 15}, - [3122] = {.lex_state = 18, .external_lex_state = 15}, - [3123] = {.lex_state = 18, .external_lex_state = 15}, - [3124] = {.lex_state = 18, .external_lex_state = 15}, - [3125] = {.lex_state = 15, .external_lex_state = 14}, - [3126] = {.lex_state = 18, .external_lex_state = 15}, - [3127] = {.lex_state = 18, .external_lex_state = 15}, - [3128] = {.lex_state = 17, .external_lex_state = 16}, - [3129] = {.lex_state = 18, .external_lex_state = 15}, - [3130] = {.lex_state = 18, .external_lex_state = 15}, - [3131] = {.lex_state = 18, .external_lex_state = 15}, - [3132] = {.lex_state = 18, .external_lex_state = 15}, - [3133] = {.lex_state = 18, .external_lex_state = 11}, - [3134] = {.lex_state = 15, .external_lex_state = 12}, - [3135] = {.lex_state = 18, .external_lex_state = 14}, - [3136] = {.lex_state = 15, .external_lex_state = 12}, - [3137] = {.lex_state = 18, .external_lex_state = 14}, - [3138] = {.lex_state = 18, .external_lex_state = 11}, - [3139] = {.lex_state = 18, .external_lex_state = 14}, - [3140] = {.lex_state = 15, .external_lex_state = 12}, - [3141] = {.lex_state = 18, .external_lex_state = 14}, - [3142] = {.lex_state = 18, .external_lex_state = 14}, - [3143] = {.lex_state = 15, .external_lex_state = 12}, - [3144] = {.lex_state = 18, .external_lex_state = 14}, - [3145] = {.lex_state = 15, .external_lex_state = 12}, - [3146] = {.lex_state = 18, .external_lex_state = 14}, - [3147] = {.lex_state = 18, .external_lex_state = 14}, - [3148] = {.lex_state = 18, .external_lex_state = 11}, - [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 = 15, .external_lex_state = 12}, - [3153] = {.lex_state = 15, .external_lex_state = 12}, - [3154] = {.lex_state = 15, .external_lex_state = 12}, - [3155] = {.lex_state = 18, .external_lex_state = 14}, - [3156] = {.lex_state = 18, .external_lex_state = 14}, - [3157] = {.lex_state = 18, .external_lex_state = 14}, - [3158] = {.lex_state = 18, .external_lex_state = 14}, - [3159] = {.lex_state = 15, .external_lex_state = 12}, - [3160] = {.lex_state = 18, .external_lex_state = 14}, - [3161] = {.lex_state = 18, .external_lex_state = 14}, - [3162] = {.lex_state = 18, .external_lex_state = 11}, - [3163] = {.lex_state = 18, .external_lex_state = 14}, - [3164] = {.lex_state = 18, .external_lex_state = 11}, - [3165] = {.lex_state = 15, .external_lex_state = 12}, - [3166] = {.lex_state = 18, .external_lex_state = 11}, - [3167] = {.lex_state = 66, .external_lex_state = 14}, - [3168] = {.lex_state = 18, .external_lex_state = 11}, - [3169] = {.lex_state = 18, .external_lex_state = 11}, - [3170] = {.lex_state = 15, .external_lex_state = 12}, - [3171] = {.lex_state = 66, .external_lex_state = 12}, - [3172] = {.lex_state = 15, .external_lex_state = 12}, - [3173] = {.lex_state = 18, .external_lex_state = 11}, - [3174] = {.lex_state = 9, .external_lex_state = 11}, - [3175] = {.lex_state = 66, .external_lex_state = 13}, - [3176] = {.lex_state = 66, .external_lex_state = 13}, - [3177] = {.lex_state = 66, .external_lex_state = 13}, - [3178] = {.lex_state = 18, .external_lex_state = 11}, - [3179] = {.lex_state = 17, .external_lex_state = 14}, - [3180] = {.lex_state = 66, .external_lex_state = 13}, - [3181] = {.lex_state = 15, .external_lex_state = 12}, - [3182] = {.lex_state = 66, .external_lex_state = 14}, - [3183] = {.lex_state = 18, .external_lex_state = 12}, - [3184] = {.lex_state = 66, .external_lex_state = 12}, - [3185] = {.lex_state = 66, .external_lex_state = 13}, - [3186] = {.lex_state = 9, .external_lex_state = 11}, - [3187] = {.lex_state = 66, .external_lex_state = 13}, - [3188] = {.lex_state = 66, .external_lex_state = 13}, - [3189] = {.lex_state = 15, .external_lex_state = 12}, - [3190] = {.lex_state = 18, .external_lex_state = 11}, - [3191] = {.lex_state = 17, .external_lex_state = 14}, + [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 = 13}, + [3083] = {.lex_state = 66, .external_lex_state = 13}, + [3084] = {.lex_state = 66, .external_lex_state = 13}, + [3085] = {.lex_state = 66, .external_lex_state = 13}, + [3086] = {.lex_state = 66, .external_lex_state = 13}, + [3087] = {.lex_state = 66, .external_lex_state = 13}, + [3088] = {.lex_state = 66, .external_lex_state = 13}, + [3089] = {.lex_state = 66, .external_lex_state = 13}, + [3090] = {.lex_state = 66, .external_lex_state = 13}, + [3091] = {.lex_state = 66, .external_lex_state = 13}, + [3092] = {.lex_state = 66, .external_lex_state = 13}, + [3093] = {.lex_state = 66, .external_lex_state = 13}, + [3094] = {.lex_state = 66, .external_lex_state = 13}, + [3095] = {.lex_state = 66, .external_lex_state = 13}, + [3096] = {.lex_state = 66, .external_lex_state = 13}, + [3097] = {.lex_state = 66, .external_lex_state = 13}, + [3098] = {.lex_state = 66, .external_lex_state = 13}, + [3099] = {.lex_state = 66, .external_lex_state = 13}, + [3100] = {.lex_state = 66, .external_lex_state = 13}, + [3101] = {.lex_state = 66, .external_lex_state = 13}, + [3102] = {.lex_state = 66, .external_lex_state = 13}, + [3103] = {.lex_state = 66, .external_lex_state = 13}, + [3104] = {.lex_state = 66, .external_lex_state = 13}, + [3105] = {.lex_state = 17, .external_lex_state = 11}, + [3106] = {.lex_state = 66, .external_lex_state = 13}, + [3107] = {.lex_state = 66, .external_lex_state = 13}, + [3108] = {.lex_state = 66, .external_lex_state = 12}, + [3109] = {.lex_state = 66, .external_lex_state = 13}, + [3110] = {.lex_state = 66, .external_lex_state = 13}, + [3111] = {.lex_state = 66, .external_lex_state = 13}, + [3112] = {.lex_state = 66, .external_lex_state = 13}, + [3113] = {.lex_state = 66, .external_lex_state = 13}, + [3114] = {.lex_state = 5, .external_lex_state = 2}, + [3115] = {.lex_state = 66, .external_lex_state = 13}, + [3116] = {.lex_state = 5, .external_lex_state = 2}, + [3117] = {.lex_state = 66, .external_lex_state = 13}, + [3118] = {.lex_state = 66, .external_lex_state = 13}, + [3119] = {.lex_state = 5, .external_lex_state = 2}, + [3120] = {.lex_state = 5, .external_lex_state = 2}, + [3121] = {.lex_state = 5, .external_lex_state = 2}, + [3122] = {.lex_state = 66, .external_lex_state = 13}, + [3123] = {.lex_state = 66, .external_lex_state = 13}, + [3124] = {.lex_state = 66, .external_lex_state = 13}, + [3125] = {.lex_state = 66, .external_lex_state = 13}, + [3126] = {.lex_state = 66, .external_lex_state = 13}, + [3127] = {.lex_state = 66, .external_lex_state = 13}, + [3128] = {.lex_state = 66, .external_lex_state = 13}, + [3129] = {.lex_state = 5, .external_lex_state = 2}, + [3130] = {.lex_state = 5, .external_lex_state = 2}, + [3131] = {.lex_state = 5, .external_lex_state = 2}, + [3132] = {.lex_state = 5, .external_lex_state = 2}, + [3133] = {.lex_state = 66, .external_lex_state = 13}, + [3134] = {.lex_state = 66, .external_lex_state = 12}, + [3135] = {.lex_state = 66, .external_lex_state = 12}, + [3136] = {.lex_state = 66, .external_lex_state = 14}, + [3137] = {.lex_state = 66, .external_lex_state = 14}, + [3138] = {.lex_state = 18, .external_lex_state = 12}, + [3139] = {.lex_state = 18, .external_lex_state = 12}, + [3140] = {.lex_state = 66, .external_lex_state = 12}, + [3141] = {.lex_state = 18, .external_lex_state = 12}, + [3142] = {.lex_state = 66, .external_lex_state = 12}, + [3143] = {.lex_state = 18, .external_lex_state = 12}, + [3144] = {.lex_state = 66, .external_lex_state = 14}, + [3145] = {.lex_state = 66, .external_lex_state = 12}, + [3146] = {.lex_state = 66, .external_lex_state = 2}, + [3147] = {.lex_state = 17, .external_lex_state = 12}, + [3148] = {.lex_state = 17, .external_lex_state = 12}, + [3149] = {.lex_state = 66, .external_lex_state = 14}, + [3150] = {.lex_state = 66, .external_lex_state = 12}, + [3151] = {.lex_state = 66, .external_lex_state = 12}, + [3152] = {.lex_state = 66, .external_lex_state = 2}, + [3153] = {.lex_state = 15, .external_lex_state = 14}, + [3154] = {.lex_state = 17, .external_lex_state = 15}, + [3155] = {.lex_state = 17, .external_lex_state = 15}, + [3156] = {.lex_state = 17, .external_lex_state = 16}, + [3157] = {.lex_state = 17, .external_lex_state = 16}, + [3158] = {.lex_state = 17, .external_lex_state = 15}, + [3159] = {.lex_state = 17, .external_lex_state = 15}, + [3160] = {.lex_state = 66, .external_lex_state = 12}, + [3161] = {.lex_state = 14, .external_lex_state = 16}, + [3162] = {.lex_state = 17, .external_lex_state = 16}, + [3163] = {.lex_state = 14, .external_lex_state = 16}, + [3164] = {.lex_state = 18, .external_lex_state = 15}, + [3165] = {.lex_state = 18, .external_lex_state = 15}, + [3166] = {.lex_state = 18, .external_lex_state = 15}, + [3167] = {.lex_state = 18, .external_lex_state = 15}, + [3168] = {.lex_state = 15, .external_lex_state = 14}, + [3169] = {.lex_state = 17, .external_lex_state = 14}, + [3170] = {.lex_state = 18, .external_lex_state = 15}, + [3171] = {.lex_state = 18, .external_lex_state = 15}, + [3172] = {.lex_state = 18, .external_lex_state = 11}, + [3173] = {.lex_state = 17, .external_lex_state = 16}, + [3174] = {.lex_state = 18, .external_lex_state = 15}, + [3175] = {.lex_state = 17, .external_lex_state = 14}, + [3176] = {.lex_state = 15, .external_lex_state = 14}, + [3177] = {.lex_state = 18, .external_lex_state = 15}, + [3178] = {.lex_state = 18, .external_lex_state = 15}, + [3179] = {.lex_state = 18, .external_lex_state = 15}, + [3180] = {.lex_state = 18, .external_lex_state = 15}, + [3181] = {.lex_state = 14, .external_lex_state = 16}, + [3182] = {.lex_state = 18, .external_lex_state = 15}, + [3183] = {.lex_state = 18, .external_lex_state = 15}, + [3184] = {.lex_state = 14, .external_lex_state = 16}, + [3185] = {.lex_state = 15, .external_lex_state = 14}, + [3186] = {.lex_state = 15, .external_lex_state = 14}, + [3187] = {.lex_state = 14, .external_lex_state = 16}, + [3188] = {.lex_state = 18, .external_lex_state = 15}, + [3189] = {.lex_state = 18, .external_lex_state = 14}, + [3190] = {.lex_state = 15, .external_lex_state = 12}, + [3191] = {.lex_state = 15, .external_lex_state = 12}, [3192] = {.lex_state = 15, .external_lex_state = 12}, - [3193] = {.lex_state = 66, .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 = 12}, - [3196] = {.lex_state = 15, .external_lex_state = 12}, - [3197] = {.lex_state = 15, .external_lex_state = 12}, - [3198] = {.lex_state = 15, .external_lex_state = 12}, - [3199] = {.lex_state = 15, .external_lex_state = 12}, + [3195] = {.lex_state = 18, .external_lex_state = 14}, + [3196] = {.lex_state = 18, .external_lex_state = 14}, + [3197] = {.lex_state = 18, .external_lex_state = 14}, + [3198] = {.lex_state = 18, .external_lex_state = 14}, + [3199] = {.lex_state = 18, .external_lex_state = 14}, [3200] = {.lex_state = 15, .external_lex_state = 12}, - [3201] = {.lex_state = 15, .external_lex_state = 16}, - [3202] = {.lex_state = 66, .external_lex_state = 14}, - [3203] = {.lex_state = 18, .external_lex_state = 12}, - [3204] = {.lex_state = 15, .external_lex_state = 14}, - [3205] = {.lex_state = 15, .external_lex_state = 16}, - [3206] = {.lex_state = 15, .external_lex_state = 16}, - [3207] = {.lex_state = 9, .external_lex_state = 11}, - [3208] = {.lex_state = 15, .external_lex_state = 12}, - [3209] = {.lex_state = 9, .external_lex_state = 12}, - [3210] = {.lex_state = 9, .external_lex_state = 12}, - [3211] = {.lex_state = 9, .external_lex_state = 12}, - [3212] = {.lex_state = 9, .external_lex_state = 11}, - [3213] = {.lex_state = 66, .external_lex_state = 14}, - [3214] = {.lex_state = 15, .external_lex_state = 14}, - [3215] = {.lex_state = 15, .external_lex_state = 12}, - [3216] = {.lex_state = 15, .external_lex_state = 14}, - [3217] = {.lex_state = 9, .external_lex_state = 11}, - [3218] = {.lex_state = 9, .external_lex_state = 12}, - [3219] = {.lex_state = 15, .external_lex_state = 12}, - [3220] = {.lex_state = 9, .external_lex_state = 11}, - [3221] = {.lex_state = 15, .external_lex_state = 12}, + [3201] = {.lex_state = 18, .external_lex_state = 14}, + [3202] = {.lex_state = 18, .external_lex_state = 14}, + [3203] = {.lex_state = 18, .external_lex_state = 14}, + [3204] = {.lex_state = 15, .external_lex_state = 12}, + [3205] = {.lex_state = 15, .external_lex_state = 12}, + [3206] = {.lex_state = 18, .external_lex_state = 14}, + [3207] = {.lex_state = 15, .external_lex_state = 12}, + [3208] = {.lex_state = 18, .external_lex_state = 11}, + [3209] = {.lex_state = 18, .external_lex_state = 14}, + [3210] = {.lex_state = 18, .external_lex_state = 11}, + [3211] = {.lex_state = 15, .external_lex_state = 12}, + [3212] = {.lex_state = 18, .external_lex_state = 14}, + [3213] = {.lex_state = 18, .external_lex_state = 11}, + [3214] = {.lex_state = 15, .external_lex_state = 12}, + [3215] = {.lex_state = 18, .external_lex_state = 14}, + [3216] = {.lex_state = 15, .external_lex_state = 12}, + [3217] = {.lex_state = 18, .external_lex_state = 14}, + [3218] = {.lex_state = 18, .external_lex_state = 11}, + [3219] = {.lex_state = 18, .external_lex_state = 11}, + [3220] = {.lex_state = 18, .external_lex_state = 14}, + [3221] = {.lex_state = 18, .external_lex_state = 11}, [3222] = {.lex_state = 15, .external_lex_state = 12}, - [3223] = {.lex_state = 15, .external_lex_state = 12}, + [3223] = {.lex_state = 66, .external_lex_state = 13}, [3224] = {.lex_state = 15, .external_lex_state = 12}, [3225] = {.lex_state = 15, .external_lex_state = 12}, [3226] = {.lex_state = 66, .external_lex_state = 12}, [3227] = {.lex_state = 15, .external_lex_state = 12}, - [3228] = {.lex_state = 15, .external_lex_state = 12}, - [3229] = {.lex_state = 15, .external_lex_state = 14}, - [3230] = {.lex_state = 15, .external_lex_state = 12}, - [3231] = {.lex_state = 15, .external_lex_state = 16}, - [3232] = {.lex_state = 15, .external_lex_state = 16}, - [3233] = {.lex_state = 15, .external_lex_state = 12}, - [3234] = {.lex_state = 66, .external_lex_state = 14}, - [3235] = {.lex_state = 5, .external_lex_state = 12}, - [3236] = {.lex_state = 15, .external_lex_state = 12}, - [3237] = {.lex_state = 15, .external_lex_state = 14}, - [3238] = {.lex_state = 66, .external_lex_state = 14}, - [3239] = {.lex_state = 18, .external_lex_state = 14}, - [3240] = {.lex_state = 5, .external_lex_state = 14}, - [3241] = {.lex_state = 9, .external_lex_state = 12}, - [3242] = {.lex_state = 5, .external_lex_state = 14}, + [3228] = {.lex_state = 18, .external_lex_state = 11}, + [3229] = {.lex_state = 9, .external_lex_state = 11}, + [3230] = {.lex_state = 66, .external_lex_state = 13}, + [3231] = {.lex_state = 17, .external_lex_state = 14}, + [3232] = {.lex_state = 66, .external_lex_state = 13}, + [3233] = {.lex_state = 18, .external_lex_state = 11}, + [3234] = {.lex_state = 66, .external_lex_state = 13}, + [3235] = {.lex_state = 15, .external_lex_state = 12}, + [3236] = {.lex_state = 66, .external_lex_state = 13}, + [3237] = {.lex_state = 18, .external_lex_state = 11}, + [3238] = {.lex_state = 18, .external_lex_state = 11}, + [3239] = {.lex_state = 66, .external_lex_state = 14}, + [3240] = {.lex_state = 9, .external_lex_state = 11}, + [3241] = {.lex_state = 66, .external_lex_state = 14}, + [3242] = {.lex_state = 66, .external_lex_state = 13}, [3243] = {.lex_state = 66, .external_lex_state = 12}, - [3244] = {.lex_state = 5, .external_lex_state = 14}, - [3245] = {.lex_state = 66, .external_lex_state = 12}, - [3246] = {.lex_state = 18, .external_lex_state = 14}, - [3247] = {.lex_state = 9, .external_lex_state = 12}, - [3248] = {.lex_state = 66, .external_lex_state = 12}, - [3249] = {.lex_state = 66, .external_lex_state = 12}, + [3244] = {.lex_state = 18, .external_lex_state = 12}, + [3245] = {.lex_state = 66, .external_lex_state = 13}, + [3246] = {.lex_state = 17, .external_lex_state = 14}, + [3247] = {.lex_state = 18, .external_lex_state = 11}, + [3248] = {.lex_state = 15, .external_lex_state = 12}, + [3249] = {.lex_state = 9, .external_lex_state = 11}, [3250] = {.lex_state = 9, .external_lex_state = 12}, - [3251] = {.lex_state = 5, .external_lex_state = 14}, - [3252] = {.lex_state = 66, .external_lex_state = 12}, - [3253] = {.lex_state = 66, .external_lex_state = 12}, - [3254] = {.lex_state = 5, .external_lex_state = 14}, - [3255] = {.lex_state = 18, .external_lex_state = 11}, - [3256] = {.lex_state = 66, .external_lex_state = 12}, - [3257] = {.lex_state = 66, .external_lex_state = 12}, - [3258] = {.lex_state = 66, .external_lex_state = 12}, - [3259] = {.lex_state = 5, .external_lex_state = 14}, - [3260] = {.lex_state = 9, .external_lex_state = 12}, - [3261] = {.lex_state = 5, .external_lex_state = 14}, - [3262] = {.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 = 5, .external_lex_state = 14}, - [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}, - [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 = 5, .external_lex_state = 14}, - [3276] = {.lex_state = 5, .external_lex_state = 14}, + [3251] = {.lex_state = 66, .external_lex_state = 12}, + [3252] = {.lex_state = 66, .external_lex_state = 14}, + [3253] = {.lex_state = 9, .external_lex_state = 11}, + [3254] = {.lex_state = 9, .external_lex_state = 11}, + [3255] = {.lex_state = 9, .external_lex_state = 11}, + [3256] = {.lex_state = 18, .external_lex_state = 12}, + [3257] = {.lex_state = 15, .external_lex_state = 14}, + [3258] = {.lex_state = 66, .external_lex_state = 14}, + [3259] = {.lex_state = 15, .external_lex_state = 14}, + [3260] = {.lex_state = 15, .external_lex_state = 14}, + [3261] = {.lex_state = 15, .external_lex_state = 12}, + [3262] = {.lex_state = 15, .external_lex_state = 14}, + [3263] = {.lex_state = 15, .external_lex_state = 14}, + [3264] = {.lex_state = 18, .external_lex_state = 12}, + [3265] = {.lex_state = 66, .external_lex_state = 14}, + [3266] = {.lex_state = 15, .external_lex_state = 12}, + [3267] = {.lex_state = 15, .external_lex_state = 12}, + [3268] = {.lex_state = 15, .external_lex_state = 12}, + [3269] = {.lex_state = 15, .external_lex_state = 12}, + [3270] = {.lex_state = 9, .external_lex_state = 12}, + [3271] = {.lex_state = 15, .external_lex_state = 12}, + [3272] = {.lex_state = 15, .external_lex_state = 12}, + [3273] = {.lex_state = 5, .external_lex_state = 12}, + [3274] = {.lex_state = 9, .external_lex_state = 12}, + [3275] = {.lex_state = 15, .external_lex_state = 16}, + [3276] = {.lex_state = 66, .external_lex_state = 14}, [3277] = {.lex_state = 66, .external_lex_state = 12}, - [3278] = {.lex_state = 5, .external_lex_state = 14}, - [3279] = {.lex_state = 66, .external_lex_state = 12}, - [3280] = {.lex_state = 5, .external_lex_state = 14}, - [3281] = {.lex_state = 18, .external_lex_state = 12}, - [3282] = {.lex_state = 5, .external_lex_state = 14}, - [3283] = {.lex_state = 66, .external_lex_state = 12}, - [3284] = {.lex_state = 66, .external_lex_state = 12}, - [3285] = {.lex_state = 5, .external_lex_state = 14}, - [3286] = {.lex_state = 66, .external_lex_state = 12}, - [3287] = {.lex_state = 9, .external_lex_state = 11}, - [3288] = {.lex_state = 66, .external_lex_state = 12}, - [3289] = {.lex_state = 66, .external_lex_state = 12}, - [3290] = {.lex_state = 66, .external_lex_state = 12}, - [3291] = {.lex_state = 66, .external_lex_state = 12}, - [3292] = {.lex_state = 66, .external_lex_state = 12}, - [3293] = {.lex_state = 66, .external_lex_state = 12}, - [3294] = {.lex_state = 66, .external_lex_state = 12}, - [3295] = {.lex_state = 66, .external_lex_state = 12}, + [3278] = {.lex_state = 9, .external_lex_state = 12}, + [3279] = {.lex_state = 15, .external_lex_state = 16}, + [3280] = {.lex_state = 15, .external_lex_state = 16}, + [3281] = {.lex_state = 15, .external_lex_state = 16}, + [3282] = {.lex_state = 15, .external_lex_state = 16}, + [3283] = {.lex_state = 15, .external_lex_state = 12}, + [3284] = {.lex_state = 15, .external_lex_state = 12}, + [3285] = {.lex_state = 15, .external_lex_state = 12}, + [3286] = {.lex_state = 15, .external_lex_state = 12}, + [3287] = {.lex_state = 15, .external_lex_state = 12}, + [3288] = {.lex_state = 15, .external_lex_state = 12}, + [3289] = {.lex_state = 15, .external_lex_state = 12}, + [3290] = {.lex_state = 15, .external_lex_state = 12}, + [3291] = {.lex_state = 15, .external_lex_state = 12}, + [3292] = {.lex_state = 15, .external_lex_state = 12}, + [3293] = {.lex_state = 15, .external_lex_state = 12}, + [3294] = {.lex_state = 15, .external_lex_state = 12}, + [3295] = {.lex_state = 15, .external_lex_state = 12}, [3296] = {.lex_state = 5, .external_lex_state = 14}, - [3297] = {.lex_state = 66, .external_lex_state = 12}, + [3297] = {.lex_state = 5, .external_lex_state = 14}, [3298] = {.lex_state = 5, .external_lex_state = 14}, [3299] = {.lex_state = 5, .external_lex_state = 14}, - [3300] = {.lex_state = 66, .external_lex_state = 12}, - [3301] = {.lex_state = 66, .external_lex_state = 12}, - [3302] = {.lex_state = 5, .external_lex_state = 14}, - [3303] = {.lex_state = 66, .external_lex_state = 12}, - [3304] = {.lex_state = 66, .external_lex_state = 12}, - [3305] = {.lex_state = 18, .external_lex_state = 14}, + [3300] = {.lex_state = 5, .external_lex_state = 14}, + [3301] = {.lex_state = 5, .external_lex_state = 14}, + [3302] = {.lex_state = 66, .external_lex_state = 12}, + [3303] = {.lex_state = 5, .external_lex_state = 14}, + [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 = 5, .external_lex_state = 14}, + [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 = 66, .external_lex_state = 12}, - [3311] = {.lex_state = 66, .external_lex_state = 12}, - [3312] = {.lex_state = 66, .external_lex_state = 12}, - [3313] = {.lex_state = 66, .external_lex_state = 12}, - [3314] = {.lex_state = 66, .external_lex_state = 12}, - [3315] = {.lex_state = 66, .external_lex_state = 12}, - [3316] = {.lex_state = 66, .external_lex_state = 12}, - [3317] = {.lex_state = 66, .external_lex_state = 12}, - [3318] = {.lex_state = 5, .external_lex_state = 14}, + [3310] = {.lex_state = 9, .external_lex_state = 12}, + [3311] = {.lex_state = 5, .external_lex_state = 14}, + [3312] = {.lex_state = 5, .external_lex_state = 14}, + [3313] = {.lex_state = 5, .external_lex_state = 14}, + [3314] = {.lex_state = 5, .external_lex_state = 14}, + [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 = 66, .external_lex_state = 12}, [3319] = {.lex_state = 5, .external_lex_state = 14}, - [3320] = {.lex_state = 5, .external_lex_state = 14}, - [3321] = {.lex_state = 66, .external_lex_state = 12}, + [3320] = {.lex_state = 66, .external_lex_state = 12}, + [3321] = {.lex_state = 18, .external_lex_state = 14}, [3322] = {.lex_state = 5, .external_lex_state = 14}, - [3323] = {.lex_state = 5, .external_lex_state = 14}, - [3324] = {.lex_state = 5, .external_lex_state = 14}, - [3325] = {.lex_state = 66, .external_lex_state = 12}, + [3323] = {.lex_state = 18, .external_lex_state = 14}, + [3324] = {.lex_state = 9, .external_lex_state = 12}, + [3325] = {.lex_state = 9, .external_lex_state = 12}, [3326] = {.lex_state = 5, .external_lex_state = 14}, [3327] = {.lex_state = 5, .external_lex_state = 14}, [3328] = {.lex_state = 5, .external_lex_state = 14}, - [3329] = {.lex_state = 66, .external_lex_state = 12}, + [3329] = {.lex_state = 5, .external_lex_state = 14}, [3330] = {.lex_state = 5, .external_lex_state = 14}, - [3331] = {.lex_state = 66, .external_lex_state = 12}, + [3331] = {.lex_state = 5, .external_lex_state = 14}, [3332] = {.lex_state = 5, .external_lex_state = 14}, [3333] = {.lex_state = 66, .external_lex_state = 12}, [3334] = {.lex_state = 66, .external_lex_state = 12}, - [3335] = {.lex_state = 5, .external_lex_state = 14}, - [3336] = {.lex_state = 66, .external_lex_state = 12}, + [3335] = {.lex_state = 66, .external_lex_state = 12}, + [3336] = {.lex_state = 5, .external_lex_state = 14}, [3337] = {.lex_state = 5, .external_lex_state = 14}, [3338] = {.lex_state = 5, .external_lex_state = 14}, - [3339] = {.lex_state = 5, .external_lex_state = 14}, + [3339] = {.lex_state = 18, .external_lex_state = 11}, [3340] = {.lex_state = 5, .external_lex_state = 14}, - [3341] = {.lex_state = 5, .external_lex_state = 14}, - [3342] = {.lex_state = 66, .external_lex_state = 12}, - [3343] = {.lex_state = 66, .external_lex_state = 12}, - [3344] = {.lex_state = 66, .external_lex_state = 12}, + [3341] = {.lex_state = 9, .external_lex_state = 11}, + [3342] = {.lex_state = 5, .external_lex_state = 14}, + [3343] = {.lex_state = 9, .external_lex_state = 12}, + [3344] = {.lex_state = 5, .external_lex_state = 14}, [3345] = {.lex_state = 66, .external_lex_state = 12}, [3346] = {.lex_state = 5, .external_lex_state = 14}, - [3347] = {.lex_state = 66, .external_lex_state = 12}, - [3348] = {.lex_state = 18, .external_lex_state = 11}, - [3349] = {.lex_state = 66, .external_lex_state = 12}, - [3350] = {.lex_state = 66, .external_lex_state = 12}, - [3351] = {.lex_state = 66, .external_lex_state = 12}, - [3352] = {.lex_state = 18, .external_lex_state = 14}, - [3353] = {.lex_state = 18, .external_lex_state = 11}, - [3354] = {.lex_state = 5, .external_lex_state = 11}, - [3355] = {.lex_state = 18, .external_lex_state = 12}, - [3356] = {.lex_state = 5, .external_lex_state = 15}, - [3357] = {.lex_state = 18, .external_lex_state = 11}, - [3358] = {.lex_state = 5, .external_lex_state = 11}, - [3359] = {.lex_state = 5, .external_lex_state = 16}, - [3360] = {.lex_state = 5, .external_lex_state = 11}, - [3361] = {.lex_state = 18, .external_lex_state = 12}, - [3362] = {.lex_state = 18, .external_lex_state = 12}, - [3363] = {.lex_state = 5, .external_lex_state = 15}, - [3364] = {.lex_state = 18, .external_lex_state = 14}, - [3365] = {.lex_state = 18, .external_lex_state = 16}, - [3366] = {.lex_state = 5, .external_lex_state = 11}, - [3367] = {.lex_state = 5, .external_lex_state = 11}, - [3368] = {.lex_state = 5, .external_lex_state = 11}, - [3369] = {.lex_state = 5, .external_lex_state = 11}, - [3370] = {.lex_state = 5, .external_lex_state = 11}, - [3371] = {.lex_state = 18, .external_lex_state = 11}, - [3372] = {.lex_state = 5, .external_lex_state = 11}, - [3373] = {.lex_state = 18, .external_lex_state = 14}, - [3374] = {.lex_state = 18, .external_lex_state = 12}, - [3375] = {.lex_state = 18, .external_lex_state = 14}, - [3376] = {.lex_state = 18, .external_lex_state = 11}, - [3377] = {.lex_state = 5, .external_lex_state = 11}, - [3378] = {.lex_state = 5, .external_lex_state = 11}, - [3379] = {.lex_state = 15, .external_lex_state = 16}, - [3380] = {.lex_state = 5, .external_lex_state = 11}, - [3381] = {.lex_state = 18, .external_lex_state = 12}, - [3382] = {.lex_state = 18, .external_lex_state = 12}, - [3383] = {.lex_state = 5, .external_lex_state = 14}, - [3384] = {.lex_state = 18, .external_lex_state = 14}, - [3385] = {.lex_state = 5, .external_lex_state = 14}, - [3386] = {.lex_state = 18, .external_lex_state = 14}, - [3387] = {.lex_state = 5, .external_lex_state = 11}, - [3388] = {.lex_state = 18, .external_lex_state = 14}, - [3389] = {.lex_state = 18, .external_lex_state = 12}, - [3390] = {.lex_state = 5, .external_lex_state = 14}, - [3391] = {.lex_state = 18, .external_lex_state = 16}, - [3392] = {.lex_state = 18, .external_lex_state = 14}, - [3393] = {.lex_state = 5, .external_lex_state = 14}, - [3394] = {.lex_state = 9, .external_lex_state = 12}, - [3395] = {.lex_state = 18, .external_lex_state = 14}, - [3396] = {.lex_state = 18, .external_lex_state = 16}, - [3397] = {.lex_state = 5, .external_lex_state = 14}, - [3398] = {.lex_state = 5, .external_lex_state = 12}, - [3399] = {.lex_state = 5, .external_lex_state = 14}, - [3400] = {.lex_state = 18, .external_lex_state = 12}, - [3401] = {.lex_state = 18, .external_lex_state = 16}, - [3402] = {.lex_state = 18, .external_lex_state = 16}, + [3347] = {.lex_state = 5, .external_lex_state = 14}, + [3348] = {.lex_state = 5, .external_lex_state = 14}, + [3349] = {.lex_state = 5, .external_lex_state = 14}, + [3350] = {.lex_state = 5, .external_lex_state = 14}, + [3351] = {.lex_state = 5, .external_lex_state = 14}, + [3352] = {.lex_state = 66, .external_lex_state = 12}, + [3353] = {.lex_state = 66, .external_lex_state = 12}, + [3354] = {.lex_state = 66, .external_lex_state = 12}, + [3355] = {.lex_state = 66, .external_lex_state = 12}, + [3356] = {.lex_state = 66, .external_lex_state = 12}, + [3357] = {.lex_state = 66, .external_lex_state = 12}, + [3358] = {.lex_state = 66, .external_lex_state = 12}, + [3359] = {.lex_state = 66, .external_lex_state = 12}, + [3360] = {.lex_state = 66, .external_lex_state = 12}, + [3361] = {.lex_state = 66, .external_lex_state = 12}, + [3362] = {.lex_state = 66, .external_lex_state = 12}, + [3363] = {.lex_state = 66, .external_lex_state = 12}, + [3364] = {.lex_state = 66, .external_lex_state = 12}, + [3365] = {.lex_state = 66, .external_lex_state = 12}, + [3366] = {.lex_state = 66, .external_lex_state = 12}, + [3367] = {.lex_state = 66, .external_lex_state = 12}, + [3368] = {.lex_state = 66, .external_lex_state = 12}, + [3369] = {.lex_state = 66, .external_lex_state = 12}, + [3370] = {.lex_state = 66, .external_lex_state = 12}, + [3371] = {.lex_state = 18, .external_lex_state = 14}, + [3372] = {.lex_state = 66, .external_lex_state = 12}, + [3373] = {.lex_state = 66, .external_lex_state = 12}, + [3374] = {.lex_state = 66, .external_lex_state = 12}, + [3375] = {.lex_state = 66, .external_lex_state = 12}, + [3376] = {.lex_state = 66, .external_lex_state = 12}, + [3377] = {.lex_state = 66, .external_lex_state = 12}, + [3378] = {.lex_state = 66, .external_lex_state = 12}, + [3379] = {.lex_state = 66, .external_lex_state = 12}, + [3380] = {.lex_state = 66, .external_lex_state = 12}, + [3381] = {.lex_state = 66, .external_lex_state = 12}, + [3382] = {.lex_state = 66, .external_lex_state = 12}, + [3383] = {.lex_state = 66, .external_lex_state = 12}, + [3384] = {.lex_state = 18, .external_lex_state = 11}, + [3385] = {.lex_state = 66, .external_lex_state = 12}, + [3386] = {.lex_state = 66, .external_lex_state = 12}, + [3387] = {.lex_state = 66, .external_lex_state = 12}, + [3388] = {.lex_state = 66, .external_lex_state = 12}, + [3389] = {.lex_state = 66, .external_lex_state = 12}, + [3390] = {.lex_state = 66, .external_lex_state = 12}, + [3391] = {.lex_state = 66, .external_lex_state = 12}, + [3392] = {.lex_state = 66, .external_lex_state = 12}, + [3393] = {.lex_state = 66, .external_lex_state = 12}, + [3394] = {.lex_state = 66, .external_lex_state = 12}, + [3395] = {.lex_state = 66, .external_lex_state = 12}, + [3396] = {.lex_state = 66, .external_lex_state = 12}, + [3397] = {.lex_state = 66, .external_lex_state = 12}, + [3398] = {.lex_state = 66, .external_lex_state = 12}, + [3399] = {.lex_state = 66, .external_lex_state = 12}, + [3400] = {.lex_state = 66, .external_lex_state = 12}, + [3401] = {.lex_state = 66, .external_lex_state = 12}, + [3402] = {.lex_state = 66, .external_lex_state = 12}, [3403] = {.lex_state = 5, .external_lex_state = 14}, - [3404] = {.lex_state = 5, .external_lex_state = 16}, - [3405] = {.lex_state = 18, .external_lex_state = 12}, - [3406] = {.lex_state = 18, .external_lex_state = 12}, - [3407] = {.lex_state = 18, .external_lex_state = 14}, - [3408] = {.lex_state = 18, .external_lex_state = 12}, - [3409] = {.lex_state = 18, .external_lex_state = 14}, - [3410] = {.lex_state = 18, .external_lex_state = 14}, - [3411] = {.lex_state = 5, .external_lex_state = 14}, - [3412] = {.lex_state = 18, .external_lex_state = 14}, - [3413] = {.lex_state = 18, .external_lex_state = 14}, - [3414] = {.lex_state = 5, .external_lex_state = 12}, - [3415] = {.lex_state = 18, .external_lex_state = 11}, - [3416] = {.lex_state = 5, .external_lex_state = 12}, - [3417] = {.lex_state = 18, .external_lex_state = 11}, + [3404] = {.lex_state = 66, .external_lex_state = 12}, + [3405] = {.lex_state = 66, .external_lex_state = 12}, + [3406] = {.lex_state = 66, .external_lex_state = 12}, + [3407] = {.lex_state = 5, .external_lex_state = 14}, + [3408] = {.lex_state = 5, .external_lex_state = 11}, + [3409] = {.lex_state = 5, .external_lex_state = 15}, + [3410] = {.lex_state = 18, .external_lex_state = 11}, + [3411] = {.lex_state = 5, .external_lex_state = 11}, + [3412] = {.lex_state = 5, .external_lex_state = 11}, + [3413] = {.lex_state = 18, .external_lex_state = 12}, + [3414] = {.lex_state = 5, .external_lex_state = 11}, + [3415] = {.lex_state = 5, .external_lex_state = 11}, + [3416] = {.lex_state = 18, .external_lex_state = 11}, + [3417] = {.lex_state = 18, .external_lex_state = 14}, [3418] = {.lex_state = 5, .external_lex_state = 11}, - [3419] = {.lex_state = 19, .external_lex_state = 17}, - [3420] = {.lex_state = 15, .external_lex_state = 11}, - [3421] = {.lex_state = 5, .external_lex_state = 11}, - [3422] = {.lex_state = 15, .external_lex_state = 11}, - [3423] = {.lex_state = 5, .external_lex_state = 12}, + [3419] = {.lex_state = 18, .external_lex_state = 12}, + [3420] = {.lex_state = 18, .external_lex_state = 12}, + [3421] = {.lex_state = 18, .external_lex_state = 11}, + [3422] = {.lex_state = 18, .external_lex_state = 14}, + [3423] = {.lex_state = 18, .external_lex_state = 12}, [3424] = {.lex_state = 18, .external_lex_state = 11}, - [3425] = {.lex_state = 18, .external_lex_state = 14}, - [3426] = {.lex_state = 66, .external_lex_state = 12}, - [3427] = {.lex_state = 18, .external_lex_state = 14}, - [3428] = {.lex_state = 18, .external_lex_state = 16}, - [3429] = {.lex_state = 5, .external_lex_state = 11}, - [3430] = {.lex_state = 18, .external_lex_state = 11}, - [3431] = {.lex_state = 5, .external_lex_state = 11}, - [3432] = {.lex_state = 15, .external_lex_state = 11}, - [3433] = {.lex_state = 18, .external_lex_state = 11}, - [3434] = {.lex_state = 5, .external_lex_state = 12}, - [3435] = {.lex_state = 5, .external_lex_state = 12}, - [3436] = {.lex_state = 5, .external_lex_state = 12}, - [3437] = {.lex_state = 18, .external_lex_state = 14}, - [3438] = {.lex_state = 5, .external_lex_state = 11}, - [3439] = {.lex_state = 5, .external_lex_state = 12}, - [3440] = {.lex_state = 18, .external_lex_state = 11}, - [3441] = {.lex_state = 18, .external_lex_state = 11}, - [3442] = {.lex_state = 18, .external_lex_state = 14}, - [3443] = {.lex_state = 18, .external_lex_state = 11}, - [3444] = {.lex_state = 5, .external_lex_state = 11}, - [3445] = {.lex_state = 18, .external_lex_state = 14}, - [3446] = {.lex_state = 18, .external_lex_state = 11}, - [3447] = {.lex_state = 18, .external_lex_state = 11}, - [3448] = {.lex_state = 18, .external_lex_state = 11}, - [3449] = {.lex_state = 5, .external_lex_state = 12}, + [3425] = {.lex_state = 15, .external_lex_state = 16}, + [3426] = {.lex_state = 5, .external_lex_state = 11}, + [3427] = {.lex_state = 5, .external_lex_state = 11}, + [3428] = {.lex_state = 5, .external_lex_state = 11}, + [3429] = {.lex_state = 18, .external_lex_state = 12}, + [3430] = {.lex_state = 5, .external_lex_state = 11}, + [3431] = {.lex_state = 18, .external_lex_state = 12}, + [3432] = {.lex_state = 5, .external_lex_state = 11}, + [3433] = {.lex_state = 5, .external_lex_state = 11}, + [3434] = {.lex_state = 18, .external_lex_state = 14}, + [3435] = {.lex_state = 18, .external_lex_state = 14}, + [3436] = {.lex_state = 5, .external_lex_state = 15}, + [3437] = {.lex_state = 18, .external_lex_state = 16}, + [3438] = {.lex_state = 5, .external_lex_state = 16}, + [3439] = {.lex_state = 5, .external_lex_state = 14}, + [3440] = {.lex_state = 18, .external_lex_state = 14}, + [3441] = {.lex_state = 18, .external_lex_state = 14}, + [3442] = {.lex_state = 5, .external_lex_state = 16}, + [3443] = {.lex_state = 18, .external_lex_state = 12}, + [3444] = {.lex_state = 5, .external_lex_state = 14}, + [3445] = {.lex_state = 18, .external_lex_state = 16}, + [3446] = {.lex_state = 18, .external_lex_state = 14}, + [3447] = {.lex_state = 5, .external_lex_state = 14}, + [3448] = {.lex_state = 5, .external_lex_state = 14}, + [3449] = {.lex_state = 18, .external_lex_state = 14}, [3450] = {.lex_state = 18, .external_lex_state = 14}, - [3451] = {.lex_state = 5, .external_lex_state = 12}, - [3452] = {.lex_state = 18, .external_lex_state = 12}, - [3453] = {.lex_state = 15, .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 = 18, .external_lex_state = 16}, - [3458] = {.lex_state = 15, .external_lex_state = 12}, - [3459] = {.lex_state = 18, .external_lex_state = 11}, - [3460] = {.lex_state = 15, .external_lex_state = 11}, - [3461] = {.lex_state = 5, .external_lex_state = 12}, + [3451] = {.lex_state = 18, .external_lex_state = 12}, + [3452] = {.lex_state = 9, .external_lex_state = 12}, + [3453] = {.lex_state = 5, .external_lex_state = 14}, + [3454] = {.lex_state = 5, .external_lex_state = 14}, + [3455] = {.lex_state = 5, .external_lex_state = 14}, + [3456] = {.lex_state = 5, .external_lex_state = 11}, + [3457] = {.lex_state = 5, .external_lex_state = 14}, + [3458] = {.lex_state = 18, .external_lex_state = 16}, + [3459] = {.lex_state = 5, .external_lex_state = 12}, + [3460] = {.lex_state = 18, .external_lex_state = 16}, + [3461] = {.lex_state = 18, .external_lex_state = 12}, [3462] = {.lex_state = 18, .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 = 18, .external_lex_state = 11}, - [3467] = {.lex_state = 5, .external_lex_state = 12}, - [3468] = {.lex_state = 5, .external_lex_state = 12}, - [3469] = {.lex_state = 5, .external_lex_state = 16}, - [3470] = {.lex_state = 15, .external_lex_state = 11}, - [3471] = {.lex_state = 18, .external_lex_state = 11}, - [3472] = {.lex_state = 5, .external_lex_state = 12}, - [3473] = {.lex_state = 5, .external_lex_state = 14}, - [3474] = {.lex_state = 5, .external_lex_state = 14}, - [3475] = {.lex_state = 15, .external_lex_state = 11}, - [3476] = {.lex_state = 5, .external_lex_state = 16}, - [3477] = {.lex_state = 18, .external_lex_state = 12}, - [3478] = {.lex_state = 5, .external_lex_state = 16}, - [3479] = {.lex_state = 15, .external_lex_state = 11}, - [3480] = {.lex_state = 15, .external_lex_state = 11}, - [3481] = {.lex_state = 15, .external_lex_state = 11}, - [3482] = {.lex_state = 66, .external_lex_state = 13}, - [3483] = {.lex_state = 5, .external_lex_state = 12}, - [3484] = {.lex_state = 18, .external_lex_state = 11}, - [3485] = {.lex_state = 5, .external_lex_state = 14}, - [3486] = {.lex_state = 15, .external_lex_state = 12}, - [3487] = {.lex_state = 5, .external_lex_state = 12}, - [3488] = {.lex_state = 5, .external_lex_state = 12}, - [3489] = {.lex_state = 5, .external_lex_state = 12}, + [3463] = {.lex_state = 18, .external_lex_state = 14}, + [3464] = {.lex_state = 18, .external_lex_state = 16}, + [3465] = {.lex_state = 18, .external_lex_state = 14}, + [3466] = {.lex_state = 18, .external_lex_state = 14}, + [3467] = {.lex_state = 18, .external_lex_state = 12}, + [3468] = {.lex_state = 18, .external_lex_state = 14}, + [3469] = {.lex_state = 15, .external_lex_state = 11}, + [3470] = {.lex_state = 66, .external_lex_state = 12}, + [3471] = {.lex_state = 18, .external_lex_state = 14}, + [3472] = {.lex_state = 18, .external_lex_state = 11}, + [3473] = {.lex_state = 5, .external_lex_state = 11}, + [3474] = {.lex_state = 5, .external_lex_state = 12}, + [3475] = {.lex_state = 18, .external_lex_state = 11}, + [3476] = {.lex_state = 5, .external_lex_state = 12}, + [3477] = {.lex_state = 18, .external_lex_state = 11}, + [3478] = {.lex_state = 5, .external_lex_state = 11}, + [3479] = {.lex_state = 5, .external_lex_state = 11}, + [3480] = {.lex_state = 5, .external_lex_state = 11}, + [3481] = {.lex_state = 18, .external_lex_state = 11}, + [3482] = {.lex_state = 5, .external_lex_state = 12}, + [3483] = {.lex_state = 15, .external_lex_state = 11}, + [3484] = {.lex_state = 5, .external_lex_state = 12}, + [3485] = {.lex_state = 18, .external_lex_state = 11}, + [3486] = {.lex_state = 18, .external_lex_state = 14}, + [3487] = {.lex_state = 19, .external_lex_state = 17}, + [3488] = {.lex_state = 18, .external_lex_state = 14}, + [3489] = {.lex_state = 18, .external_lex_state = 11}, [3490] = {.lex_state = 5, .external_lex_state = 12}, - [3491] = {.lex_state = 5, .external_lex_state = 12}, - [3492] = {.lex_state = 5, .external_lex_state = 12}, - [3493] = {.lex_state = 15, .external_lex_state = 11}, - [3494] = {.lex_state = 66, .external_lex_state = 12}, - [3495] = {.lex_state = 5, .external_lex_state = 12}, + [3491] = {.lex_state = 18, .external_lex_state = 11}, + [3492] = {.lex_state = 18, .external_lex_state = 11}, + [3493] = {.lex_state = 18, .external_lex_state = 14}, + [3494] = {.lex_state = 18, .external_lex_state = 11}, + [3495] = {.lex_state = 18, .external_lex_state = 14}, [3496] = {.lex_state = 18, .external_lex_state = 11}, - [3497] = {.lex_state = 15, .external_lex_state = 12}, - [3498] = {.lex_state = 5, .external_lex_state = 16}, - [3499] = {.lex_state = 5, .external_lex_state = 12}, - [3500] = {.lex_state = 5, .external_lex_state = 16}, - [3501] = {.lex_state = 5, .external_lex_state = 12}, + [3497] = {.lex_state = 18, .external_lex_state = 14}, + [3498] = {.lex_state = 5, .external_lex_state = 11}, + [3499] = {.lex_state = 18, .external_lex_state = 11}, + [3500] = {.lex_state = 5, .external_lex_state = 12}, + [3501] = {.lex_state = 18, .external_lex_state = 14}, [3502] = {.lex_state = 5, .external_lex_state = 12}, [3503] = {.lex_state = 5, .external_lex_state = 12}, - [3504] = {.lex_state = 18, .external_lex_state = 14}, - [3505] = {.lex_state = 5, .external_lex_state = 12}, - [3506] = {.lex_state = 5, .external_lex_state = 12}, - [3507] = {.lex_state = 5, .external_lex_state = 12}, - [3508] = {.lex_state = 5, .external_lex_state = 12}, - [3509] = {.lex_state = 5, .external_lex_state = 12}, - [3510] = {.lex_state = 5, .external_lex_state = 14}, - [3511] = {.lex_state = 5, .external_lex_state = 12}, - [3512] = {.lex_state = 15, .external_lex_state = 12}, - [3513] = {.lex_state = 15, .external_lex_state = 12}, + [3504] = {.lex_state = 18, .external_lex_state = 16}, + [3505] = {.lex_state = 5, .external_lex_state = 11}, + [3506] = {.lex_state = 15, .external_lex_state = 11}, + [3507] = {.lex_state = 18, .external_lex_state = 12}, + [3508] = {.lex_state = 18, .external_lex_state = 11}, + [3509] = {.lex_state = 5, .external_lex_state = 14}, + [3510] = {.lex_state = 15, .external_lex_state = 12}, + [3511] = {.lex_state = 15, .external_lex_state = 12}, + [3512] = {.lex_state = 18, .external_lex_state = 14}, + [3513] = {.lex_state = 5, .external_lex_state = 14}, [3514] = {.lex_state = 5, .external_lex_state = 12}, - [3515] = {.lex_state = 5, .external_lex_state = 14}, - [3516] = {.lex_state = 18, .external_lex_state = 11}, + [3515] = {.lex_state = 15, .external_lex_state = 11}, + [3516] = {.lex_state = 5, .external_lex_state = 12}, [3517] = {.lex_state = 5, .external_lex_state = 12}, - [3518] = {.lex_state = 5, .external_lex_state = 11}, - [3519] = {.lex_state = 5, .external_lex_state = 11}, + [3518] = {.lex_state = 15, .external_lex_state = 12}, + [3519] = {.lex_state = 15, .external_lex_state = 12}, [3520] = {.lex_state = 5, .external_lex_state = 12}, - [3521] = {.lex_state = 5, .external_lex_state = 11}, - [3522] = {.lex_state = 5, .external_lex_state = 11}, - [3523] = {.lex_state = 5, .external_lex_state = 11}, - [3524] = {.lex_state = 5, .external_lex_state = 11}, - [3525] = {.lex_state = 5, .external_lex_state = 14}, - [3526] = {.lex_state = 5, .external_lex_state = 16}, + [3521] = {.lex_state = 15, .external_lex_state = 12}, + [3522] = {.lex_state = 18, .external_lex_state = 11}, + [3523] = {.lex_state = 18, .external_lex_state = 11}, + [3524] = {.lex_state = 66, .external_lex_state = 13}, + [3525] = {.lex_state = 5, .external_lex_state = 12}, + [3526] = {.lex_state = 5, .external_lex_state = 12}, [3527] = {.lex_state = 5, .external_lex_state = 16}, - [3528] = {.lex_state = 5, .external_lex_state = 16}, - [3529] = {.lex_state = 5, .external_lex_state = 16}, - [3530] = {.lex_state = 5, .external_lex_state = 16}, - [3531] = {.lex_state = 5, .external_lex_state = 16}, + [3528] = {.lex_state = 15, .external_lex_state = 12}, + [3529] = {.lex_state = 5, .external_lex_state = 12}, + [3530] = {.lex_state = 5, .external_lex_state = 14}, + [3531] = {.lex_state = 15, .external_lex_state = 11}, [3532] = {.lex_state = 5, .external_lex_state = 16}, - [3533] = {.lex_state = 5, .external_lex_state = 16}, - [3534] = {.lex_state = 66, .external_lex_state = 15}, - [3535] = {.lex_state = 5, .external_lex_state = 14}, - [3536] = {.lex_state = 5, .external_lex_state = 12}, - [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 = 14}, - [3541] = {.lex_state = 5, .external_lex_state = 14}, - [3542] = {.lex_state = 18, .external_lex_state = 12}, - [3543] = {.lex_state = 5, .external_lex_state = 14}, + [3533] = {.lex_state = 5, .external_lex_state = 14}, + [3534] = {.lex_state = 5, .external_lex_state = 16}, + [3535] = {.lex_state = 5, .external_lex_state = 12}, + [3536] = {.lex_state = 18, .external_lex_state = 11}, + [3537] = {.lex_state = 15, .external_lex_state = 11}, + [3538] = {.lex_state = 18, .external_lex_state = 12}, + [3539] = {.lex_state = 18, .external_lex_state = 12}, + [3540] = {.lex_state = 18, .external_lex_state = 12}, + [3541] = {.lex_state = 5, .external_lex_state = 12}, + [3542] = {.lex_state = 5, .external_lex_state = 12}, + [3543] = {.lex_state = 15, .external_lex_state = 11}, [3544] = {.lex_state = 5, .external_lex_state = 12}, - [3545] = {.lex_state = 5, .external_lex_state = 11}, - [3546] = {.lex_state = 5, .external_lex_state = 11}, - [3547] = {.lex_state = 5, .external_lex_state = 11}, - [3548] = {.lex_state = 5, .external_lex_state = 11}, - [3549] = {.lex_state = 5, .external_lex_state = 11}, - [3550] = {.lex_state = 5, .external_lex_state = 16}, + [3545] = {.lex_state = 18, .external_lex_state = 16}, + [3546] = {.lex_state = 5, .external_lex_state = 12}, + [3547] = {.lex_state = 15, .external_lex_state = 11}, + [3548] = {.lex_state = 18, .external_lex_state = 11}, + [3549] = {.lex_state = 5, .external_lex_state = 12}, + [3550] = {.lex_state = 5, .external_lex_state = 12}, [3551] = {.lex_state = 5, .external_lex_state = 12}, - [3552] = {.lex_state = 5, .external_lex_state = 14}, - [3553] = {.lex_state = 5, .external_lex_state = 14}, - [3554] = {.lex_state = 5, .external_lex_state = 14}, - [3555] = {.lex_state = 5, .external_lex_state = 16}, - [3556] = {.lex_state = 5, .external_lex_state = 14}, - [3557] = {.lex_state = 5, .external_lex_state = 11}, - [3558] = {.lex_state = 5, .external_lex_state = 14}, - [3559] = {.lex_state = 5, .external_lex_state = 16}, - [3560] = {.lex_state = 5, .external_lex_state = 14}, + [3552] = {.lex_state = 5, .external_lex_state = 12}, + [3553] = {.lex_state = 5, .external_lex_state = 12}, + [3554] = {.lex_state = 15, .external_lex_state = 11}, + [3555] = {.lex_state = 5, .external_lex_state = 12}, + [3556] = {.lex_state = 15, .external_lex_state = 11}, + [3557] = {.lex_state = 66, .external_lex_state = 12}, + [3558] = {.lex_state = 5, .external_lex_state = 12}, + [3559] = {.lex_state = 5, .external_lex_state = 12}, + [3560] = {.lex_state = 5, .external_lex_state = 12}, [3561] = {.lex_state = 5, .external_lex_state = 14}, - [3562] = {.lex_state = 5, .external_lex_state = 14}, - [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 = 16}, - [3567] = {.lex_state = 5, .external_lex_state = 14}, - [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 = 11}, - [3572] = {.lex_state = 5, .external_lex_state = 14}, - [3573] = {.lex_state = 5, .external_lex_state = 14}, + [3562] = {.lex_state = 18, .external_lex_state = 11}, + [3563] = {.lex_state = 5, .external_lex_state = 12}, + [3564] = {.lex_state = 5, .external_lex_state = 12}, + [3565] = {.lex_state = 5, .external_lex_state = 16}, + [3566] = {.lex_state = 15, .external_lex_state = 12}, + [3567] = {.lex_state = 5, .external_lex_state = 12}, + [3568] = {.lex_state = 5, .external_lex_state = 12}, + [3569] = {.lex_state = 5, .external_lex_state = 12}, + [3570] = {.lex_state = 5, .external_lex_state = 16}, + [3571] = {.lex_state = 5, .external_lex_state = 12}, + [3572] = {.lex_state = 5, .external_lex_state = 12}, + [3573] = {.lex_state = 5, .external_lex_state = 11}, [3574] = {.lex_state = 5, .external_lex_state = 14}, - [3575] = {.lex_state = 5, .external_lex_state = 14}, + [3575] = {.lex_state = 5, .external_lex_state = 11}, [3576] = {.lex_state = 5, .external_lex_state = 11}, [3577] = {.lex_state = 5, .external_lex_state = 14}, [3578] = {.lex_state = 5, .external_lex_state = 14}, [3579] = {.lex_state = 5, .external_lex_state = 14}, [3580] = {.lex_state = 5, .external_lex_state = 14}, - [3581] = {.lex_state = 5, .external_lex_state = 11}, - [3582] = {.lex_state = 5, .external_lex_state = 11}, + [3581] = {.lex_state = 5, .external_lex_state = 16}, + [3582] = {.lex_state = 5, .external_lex_state = 16}, [3583] = {.lex_state = 5, .external_lex_state = 14}, [3584] = {.lex_state = 5, .external_lex_state = 14}, - [3585] = {.lex_state = 5, .external_lex_state = 14}, - [3586] = {.lex_state = 5, .external_lex_state = 14}, - [3587] = {.lex_state = 5, .external_lex_state = 14}, + [3585] = {.lex_state = 5, .external_lex_state = 11}, + [3586] = {.lex_state = 5, .external_lex_state = 16}, + [3587] = {.lex_state = 5, .external_lex_state = 11}, [3588] = {.lex_state = 5, .external_lex_state = 14}, - [3589] = {.lex_state = 5, .external_lex_state = 12}, - [3590] = {.lex_state = 5, .external_lex_state = 16}, - [3591] = {.lex_state = 5, .external_lex_state = 16}, - [3592] = {.lex_state = 5, .external_lex_state = 16}, - [3593] = {.lex_state = 5, .external_lex_state = 16}, - [3594] = {.lex_state = 5, .external_lex_state = 16}, - [3595] = {.lex_state = 5, .external_lex_state = 16}, - [3596] = {.lex_state = 5, .external_lex_state = 16}, - [3597] = {.lex_state = 5, .external_lex_state = 16}, + [3589] = {.lex_state = 5, .external_lex_state = 16}, + [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 = 14}, + [3594] = {.lex_state = 5, .external_lex_state = 11}, + [3595] = {.lex_state = 5, .external_lex_state = 14}, + [3596] = {.lex_state = 5, .external_lex_state = 14}, + [3597] = {.lex_state = 5, .external_lex_state = 14}, [3598] = {.lex_state = 5, .external_lex_state = 16}, - [3599] = {.lex_state = 5, .external_lex_state = 16}, - [3600] = {.lex_state = 66, .external_lex_state = 15}, + [3599] = {.lex_state = 5, .external_lex_state = 11}, + [3600] = {.lex_state = 5, .external_lex_state = 14}, [3601] = {.lex_state = 5, .external_lex_state = 16}, [3602] = {.lex_state = 5, .external_lex_state = 16}, [3603] = {.lex_state = 5, .external_lex_state = 16}, [3604] = {.lex_state = 5, .external_lex_state = 16}, [3605] = {.lex_state = 5, .external_lex_state = 14}, - [3606] = {.lex_state = 66, .external_lex_state = 15}, + [3606] = {.lex_state = 5, .external_lex_state = 12}, [3607] = {.lex_state = 5, .external_lex_state = 14}, [3608] = {.lex_state = 5, .external_lex_state = 14}, [3609] = {.lex_state = 5, .external_lex_state = 11}, [3610] = {.lex_state = 5, .external_lex_state = 14}, - [3611] = {.lex_state = 5, .external_lex_state = 14}, - [3612] = {.lex_state = 66, .external_lex_state = 15}, - [3613] = {.lex_state = 5, .external_lex_state = 11}, - [3614] = {.lex_state = 66, .external_lex_state = 15}, + [3611] = {.lex_state = 18, .external_lex_state = 12}, + [3612] = {.lex_state = 5, .external_lex_state = 14}, + [3613] = {.lex_state = 5, .external_lex_state = 12}, + [3614] = {.lex_state = 5, .external_lex_state = 16}, [3615] = {.lex_state = 5, .external_lex_state = 11}, [3616] = {.lex_state = 5, .external_lex_state = 11}, - [3617] = {.lex_state = 66, .external_lex_state = 15}, - [3618] = {.lex_state = 66, .external_lex_state = 15}, - [3619] = {.lex_state = 66, .external_lex_state = 15}, - [3620] = {.lex_state = 5, .external_lex_state = 11}, - [3621] = {.lex_state = 5, .external_lex_state = 14}, - [3622] = {.lex_state = 5, .external_lex_state = 14}, - [3623] = {.lex_state = 5, .external_lex_state = 14}, - [3624] = {.lex_state = 5, .external_lex_state = 11}, + [3617] = {.lex_state = 5, .external_lex_state = 11}, + [3618] = {.lex_state = 5, .external_lex_state = 11}, + [3619] = {.lex_state = 5, .external_lex_state = 14}, + [3620] = {.lex_state = 5, .external_lex_state = 14}, + [3621] = {.lex_state = 5, .external_lex_state = 12}, + [3622] = {.lex_state = 5, .external_lex_state = 11}, + [3623] = {.lex_state = 5, .external_lex_state = 11}, + [3624] = {.lex_state = 5, .external_lex_state = 14}, [3625] = {.lex_state = 5, .external_lex_state = 11}, - [3626] = {.lex_state = 0, .external_lex_state = 18}, - [3627] = {.lex_state = 5, .external_lex_state = 11}, - [3628] = {.lex_state = 66, .external_lex_state = 14}, - [3629] = {.lex_state = 66, .external_lex_state = 14}, - [3630] = {.lex_state = 0, .external_lex_state = 18}, - [3631] = {.lex_state = 0, .external_lex_state = 18}, - [3632] = {.lex_state = 66, .external_lex_state = 14}, - [3633] = {.lex_state = 66, .external_lex_state = 16}, - [3634] = {.lex_state = 66, .external_lex_state = 14}, - [3635] = {.lex_state = 5, .external_lex_state = 12}, - [3636] = {.lex_state = 66, .external_lex_state = 5}, - [3637] = {.lex_state = 66, .external_lex_state = 14}, - [3638] = {.lex_state = 5, .external_lex_state = 12}, - [3639] = {.lex_state = 66, .external_lex_state = 5}, - [3640] = {.lex_state = 0, .external_lex_state = 18}, + [3626] = {.lex_state = 5, .external_lex_state = 14}, + [3627] = {.lex_state = 5, .external_lex_state = 12}, + [3628] = {.lex_state = 5, .external_lex_state = 16}, + [3629] = {.lex_state = 5, .external_lex_state = 11}, + [3630] = {.lex_state = 66, .external_lex_state = 15}, + [3631] = {.lex_state = 5, .external_lex_state = 14}, + [3632] = {.lex_state = 5, .external_lex_state = 16}, + [3633] = {.lex_state = 5, .external_lex_state = 11}, + [3634] = {.lex_state = 5, .external_lex_state = 16}, + [3635] = {.lex_state = 5, .external_lex_state = 14}, + [3636] = {.lex_state = 5, .external_lex_state = 14}, + [3637] = {.lex_state = 5, .external_lex_state = 16}, + [3638] = {.lex_state = 5, .external_lex_state = 16}, + [3639] = {.lex_state = 66, .external_lex_state = 15}, + [3640] = {.lex_state = 5, .external_lex_state = 11}, [3641] = {.lex_state = 5, .external_lex_state = 12}, [3642] = {.lex_state = 5, .external_lex_state = 11}, - [3643] = {.lex_state = 18, .external_lex_state = 16}, - [3644] = {.lex_state = 66, .external_lex_state = 5}, - [3645] = {.lex_state = 0, .external_lex_state = 18}, - [3646] = {.lex_state = 5, .external_lex_state = 11}, - [3647] = {.lex_state = 0, .external_lex_state = 18}, - [3648] = {.lex_state = 66, .external_lex_state = 14}, - [3649] = {.lex_state = 5, .external_lex_state = 12}, - [3650] = {.lex_state = 18, .external_lex_state = 16}, - [3651] = {.lex_state = 5, .external_lex_state = 11}, - [3652] = {.lex_state = 5, .external_lex_state = 11}, - [3653] = {.lex_state = 0, .external_lex_state = 18}, - [3654] = {.lex_state = 5, .external_lex_state = 11}, - [3655] = {.lex_state = 66, .external_lex_state = 12}, - [3656] = {.lex_state = 0, .external_lex_state = 18}, - [3657] = {.lex_state = 66, .external_lex_state = 14}, - [3658] = {.lex_state = 66, .external_lex_state = 14}, - [3659] = {.lex_state = 5, .external_lex_state = 11}, - [3660] = {.lex_state = 5, .external_lex_state = 12}, - [3661] = {.lex_state = 18, .external_lex_state = 16}, - [3662] = {.lex_state = 66, .external_lex_state = 5}, - [3663] = {.lex_state = 5, .external_lex_state = 11}, - [3664] = {.lex_state = 66, .external_lex_state = 14}, - [3665] = {.lex_state = 5, .external_lex_state = 11}, - [3666] = {.lex_state = 5, .external_lex_state = 12}, - [3667] = {.lex_state = 0, .external_lex_state = 18}, - [3668] = {.lex_state = 66, .external_lex_state = 14}, - [3669] = {.lex_state = 66, .external_lex_state = 14}, - [3670] = {.lex_state = 0, .external_lex_state = 18}, - [3671] = {.lex_state = 0, .external_lex_state = 18}, - [3672] = {.lex_state = 66, .external_lex_state = 14}, - [3673] = {.lex_state = 66, .external_lex_state = 14}, - [3674] = {.lex_state = 0, .external_lex_state = 18}, - [3675] = {.lex_state = 5, .external_lex_state = 12}, - [3676] = {.lex_state = 0, .external_lex_state = 18}, - [3677] = {.lex_state = 66, .external_lex_state = 14}, - [3678] = {.lex_state = 66, .external_lex_state = 14}, - [3679] = {.lex_state = 0, .external_lex_state = 18}, - [3680] = {.lex_state = 0, .external_lex_state = 18}, - [3681] = {.lex_state = 66, .external_lex_state = 14}, - [3682] = {.lex_state = 66, .external_lex_state = 14}, + [3643] = {.lex_state = 5, .external_lex_state = 16}, + [3644] = {.lex_state = 66, .external_lex_state = 15}, + [3645] = {.lex_state = 5, .external_lex_state = 14}, + [3646] = {.lex_state = 5, .external_lex_state = 14}, + [3647] = {.lex_state = 5, .external_lex_state = 14}, + [3648] = {.lex_state = 5, .external_lex_state = 14}, + [3649] = {.lex_state = 5, .external_lex_state = 14}, + [3650] = {.lex_state = 66, .external_lex_state = 15}, + [3651] = {.lex_state = 66, .external_lex_state = 15}, + [3652] = {.lex_state = 5, .external_lex_state = 14}, + [3653] = {.lex_state = 66, .external_lex_state = 15}, + [3654] = {.lex_state = 5, .external_lex_state = 14}, + [3655] = {.lex_state = 66, .external_lex_state = 15}, + [3656] = {.lex_state = 5, .external_lex_state = 16}, + [3657] = {.lex_state = 5, .external_lex_state = 16}, + [3658] = {.lex_state = 5, .external_lex_state = 16}, + [3659] = {.lex_state = 5, .external_lex_state = 16}, + [3660] = {.lex_state = 5, .external_lex_state = 14}, + [3661] = {.lex_state = 5, .external_lex_state = 14}, + [3662] = {.lex_state = 5, .external_lex_state = 16}, + [3663] = {.lex_state = 5, .external_lex_state = 16}, + [3664] = {.lex_state = 5, .external_lex_state = 16}, + [3665] = {.lex_state = 5, .external_lex_state = 16}, + [3666] = {.lex_state = 5, .external_lex_state = 14}, + [3667] = {.lex_state = 5, .external_lex_state = 11}, + [3668] = {.lex_state = 5, .external_lex_state = 11}, + [3669] = {.lex_state = 5, .external_lex_state = 14}, + [3670] = {.lex_state = 5, .external_lex_state = 14}, + [3671] = {.lex_state = 5, .external_lex_state = 14}, + [3672] = {.lex_state = 5, .external_lex_state = 16}, + [3673] = {.lex_state = 5, .external_lex_state = 11}, + [3674] = {.lex_state = 5, .external_lex_state = 14}, + [3675] = {.lex_state = 5, .external_lex_state = 14}, + [3676] = {.lex_state = 5, .external_lex_state = 16}, + [3677] = {.lex_state = 5, .external_lex_state = 14}, + [3678] = {.lex_state = 66, .external_lex_state = 15}, + [3679] = {.lex_state = 5, .external_lex_state = 14}, + [3680] = {.lex_state = 5, .external_lex_state = 12}, + [3681] = {.lex_state = 5, .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 = 5}, + [3685] = {.lex_state = 5, .external_lex_state = 12}, [3686] = {.lex_state = 0, .external_lex_state = 18}, - [3687] = {.lex_state = 0, .external_lex_state = 18}, - [3688] = {.lex_state = 0, .external_lex_state = 18}, - [3689] = {.lex_state = 0, .external_lex_state = 18}, - [3690] = {.lex_state = 5, .external_lex_state = 12}, - [3691] = {.lex_state = 18, .external_lex_state = 16}, - [3692] = {.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 = 5, .external_lex_state = 11}, + [3690] = {.lex_state = 66, .external_lex_state = 5}, + [3691] = {.lex_state = 66, .external_lex_state = 14}, + [3692] = {.lex_state = 5, .external_lex_state = 11}, [3693] = {.lex_state = 0, .external_lex_state = 18}, - [3694] = {.lex_state = 66, .external_lex_state = 16}, - [3695] = {.lex_state = 15, .external_lex_state = 11}, - [3696] = {.lex_state = 5, .external_lex_state = 11}, - [3697] = {.lex_state = 5, .external_lex_state = 11}, - [3698] = {.lex_state = 66, .external_lex_state = 16}, - [3699] = {.lex_state = 66, .external_lex_state = 5}, - [3700] = {.lex_state = 66, .external_lex_state = 16}, - [3701] = {.lex_state = 0, .external_lex_state = 18}, - [3702] = {.lex_state = 5, .external_lex_state = 11}, - [3703] = {.lex_state = 66, .external_lex_state = 16}, - [3704] = {.lex_state = 5, .external_lex_state = 11}, - [3705] = {.lex_state = 5, .external_lex_state = 11}, - [3706] = {.lex_state = 5, .external_lex_state = 11}, - [3707] = {.lex_state = 66, .external_lex_state = 16}, - [3708] = {.lex_state = 66, .external_lex_state = 16}, - [3709] = {.lex_state = 5, .external_lex_state = 11}, - [3710] = {.lex_state = 5, .external_lex_state = 11}, - [3711] = {.lex_state = 5, .external_lex_state = 11}, - [3712] = {.lex_state = 5, .external_lex_state = 11}, - [3713] = {.lex_state = 5, .external_lex_state = 11}, - [3714] = {.lex_state = 5, .external_lex_state = 11}, - [3715] = {.lex_state = 5, .external_lex_state = 11}, - [3716] = {.lex_state = 5, .external_lex_state = 12}, - [3717] = {.lex_state = 5, .external_lex_state = 12}, - [3718] = {.lex_state = 5, .external_lex_state = 12}, - [3719] = {.lex_state = 5, .external_lex_state = 12}, + [3694] = {.lex_state = 66, .external_lex_state = 14}, + [3695] = {.lex_state = 5, .external_lex_state = 11}, + [3696] = {.lex_state = 66, .external_lex_state = 14}, + [3697] = {.lex_state = 66, .external_lex_state = 16}, + [3698] = {.lex_state = 5, .external_lex_state = 12}, + [3699] = {.lex_state = 0, .external_lex_state = 18}, + [3700] = {.lex_state = 66, .external_lex_state = 5}, + [3701] = {.lex_state = 18, .external_lex_state = 16}, + [3702] = {.lex_state = 66, .external_lex_state = 14}, + [3703] = {.lex_state = 66, .external_lex_state = 5}, + [3704] = {.lex_state = 5, .external_lex_state = 12}, + [3705] = {.lex_state = 0, .external_lex_state = 18}, + [3706] = {.lex_state = 0, .external_lex_state = 18}, + [3707] = {.lex_state = 66, .external_lex_state = 14}, + [3708] = {.lex_state = 5, .external_lex_state = 11}, + [3709] = {.lex_state = 66, .external_lex_state = 5}, + [3710] = {.lex_state = 66, .external_lex_state = 14}, + [3711] = {.lex_state = 66, .external_lex_state = 12}, + [3712] = {.lex_state = 66, .external_lex_state = 16}, + [3713] = {.lex_state = 0, .external_lex_state = 18}, + [3714] = {.lex_state = 0, .external_lex_state = 18}, + [3715] = {.lex_state = 0, .external_lex_state = 18}, + [3716] = {.lex_state = 66, .external_lex_state = 14}, + [3717] = {.lex_state = 66, .external_lex_state = 14}, + [3718] = {.lex_state = 66, .external_lex_state = 16}, + [3719] = {.lex_state = 18, .external_lex_state = 16}, [3720] = {.lex_state = 5, .external_lex_state = 12}, - [3721] = {.lex_state = 18, .external_lex_state = 11}, - [3722] = {.lex_state = 66, .external_lex_state = 15}, + [3721] = {.lex_state = 5, .external_lex_state = 11}, + [3722] = {.lex_state = 0, .external_lex_state = 18}, [3723] = {.lex_state = 5, .external_lex_state = 12}, - [3724] = {.lex_state = 5, .external_lex_state = 12}, - [3725] = {.lex_state = 5, .external_lex_state = 12}, - [3726] = {.lex_state = 5, .external_lex_state = 14}, - [3727] = {.lex_state = 5, .external_lex_state = 12}, + [3724] = {.lex_state = 5, .external_lex_state = 11}, + [3725] = {.lex_state = 0, .external_lex_state = 18}, + [3726] = {.lex_state = 5, .external_lex_state = 11}, + [3727] = {.lex_state = 66, .external_lex_state = 16}, [3728] = {.lex_state = 5, .external_lex_state = 12}, - [3729] = {.lex_state = 5, .external_lex_state = 16}, - [3730] = {.lex_state = 5, .external_lex_state = 12}, - [3731] = {.lex_state = 5, .external_lex_state = 16}, - [3732] = {.lex_state = 5, .external_lex_state = 12}, - [3733] = {.lex_state = 18, .external_lex_state = 11}, - [3734] = {.lex_state = 5, .external_lex_state = 12}, - [3735] = {.lex_state = 5, .external_lex_state = 16}, - [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 = 18, .external_lex_state = 16}, - [3740] = {.lex_state = 5, .external_lex_state = 12}, + [3729] = {.lex_state = 5, .external_lex_state = 11}, + [3730] = {.lex_state = 0, .external_lex_state = 18}, + [3731] = {.lex_state = 66, .external_lex_state = 16}, + [3732] = {.lex_state = 0, .external_lex_state = 18}, + [3733] = {.lex_state = 66, .external_lex_state = 14}, + [3734] = {.lex_state = 66, .external_lex_state = 16}, + [3735] = {.lex_state = 0, .external_lex_state = 18}, + [3736] = {.lex_state = 18, .external_lex_state = 16}, + [3737] = {.lex_state = 5, .external_lex_state = 11}, + [3738] = {.lex_state = 0, .external_lex_state = 18}, + [3739] = {.lex_state = 66, .external_lex_state = 16}, + [3740] = {.lex_state = 5, .external_lex_state = 11}, [3741] = {.lex_state = 5, .external_lex_state = 12}, - [3742] = {.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 = 5, .external_lex_state = 12}, - [3745] = {.lex_state = 5, .external_lex_state = 12}, - [3746] = {.lex_state = 5, .external_lex_state = 12}, - [3747] = {.lex_state = 5, .external_lex_state = 16}, - [3748] = {.lex_state = 18, .external_lex_state = 11}, - [3749] = {.lex_state = 5, .external_lex_state = 12}, - [3750] = {.lex_state = 5, .external_lex_state = 12}, - [3751] = {.lex_state = 5, .external_lex_state = 12}, - [3752] = {.lex_state = 5, .external_lex_state = 14}, - [3753] = {.lex_state = 5, .external_lex_state = 12}, - [3754] = {.lex_state = 5, .external_lex_state = 12}, - [3755] = {.lex_state = 20, .external_lex_state = 14}, - [3756] = {.lex_state = 5, .external_lex_state = 12}, - [3757] = {.lex_state = 18, .external_lex_state = 11}, - [3758] = {.lex_state = 18, .external_lex_state = 16}, - [3759] = {.lex_state = 18, .external_lex_state = 16}, - [3760] = {.lex_state = 5, .external_lex_state = 12}, - [3761] = {.lex_state = 5, .external_lex_state = 12}, - [3762] = {.lex_state = 18, .external_lex_state = 11}, - [3763] = {.lex_state = 5, .external_lex_state = 12}, - [3764] = {.lex_state = 5, .external_lex_state = 16}, - [3765] = {.lex_state = 5, .external_lex_state = 12}, - [3766] = {.lex_state = 5, .external_lex_state = 12}, - [3767] = {.lex_state = 5, .external_lex_state = 16}, - [3768] = {.lex_state = 18, .external_lex_state = 16}, - [3769] = {.lex_state = 5, .external_lex_state = 12}, - [3770] = {.lex_state = 5, .external_lex_state = 12}, - [3771] = {.lex_state = 18, .external_lex_state = 16}, - [3772] = {.lex_state = 15, .external_lex_state = 12}, - [3773] = {.lex_state = 5, .external_lex_state = 12}, - [3774] = {.lex_state = 18, .external_lex_state = 11}, - [3775] = {.lex_state = 5, .external_lex_state = 14}, + [3744] = {.lex_state = 5, .external_lex_state = 11}, + [3745] = {.lex_state = 66, .external_lex_state = 14}, + [3746] = {.lex_state = 66, .external_lex_state = 14}, + [3747] = {.lex_state = 15, .external_lex_state = 11}, + [3748] = {.lex_state = 5, .external_lex_state = 11}, + [3749] = {.lex_state = 66, .external_lex_state = 5}, + [3750] = {.lex_state = 0, .external_lex_state = 18}, + [3751] = {.lex_state = 0, .external_lex_state = 18}, + [3752] = {.lex_state = 5, .external_lex_state = 12}, + [3753] = {.lex_state = 66, .external_lex_state = 5}, + [3754] = {.lex_state = 0, .external_lex_state = 18}, + [3755] = {.lex_state = 5, .external_lex_state = 11}, + [3756] = {.lex_state = 66, .external_lex_state = 14}, + [3757] = {.lex_state = 5, .external_lex_state = 11}, + [3758] = {.lex_state = 5, .external_lex_state = 11}, + [3759] = {.lex_state = 66, .external_lex_state = 14}, + [3760] = {.lex_state = 0, .external_lex_state = 18}, + [3761] = {.lex_state = 5, .external_lex_state = 11}, + [3762] = {.lex_state = 0, .external_lex_state = 18}, + [3763] = {.lex_state = 66, .external_lex_state = 14}, + [3764] = {.lex_state = 5, .external_lex_state = 11}, + [3765] = {.lex_state = 0, .external_lex_state = 18}, + [3766] = {.lex_state = 66, .external_lex_state = 14}, + [3767] = {.lex_state = 5, .external_lex_state = 11}, + [3768] = {.lex_state = 66, .external_lex_state = 16}, + [3769] = {.lex_state = 0, .external_lex_state = 18}, + [3770] = {.lex_state = 5, .external_lex_state = 11}, + [3771] = {.lex_state = 66, .external_lex_state = 14}, + [3772] = {.lex_state = 66, .external_lex_state = 14}, + [3773] = {.lex_state = 18, .external_lex_state = 11}, + [3774] = {.lex_state = 5, .external_lex_state = 12}, + [3775] = {.lex_state = 5, .external_lex_state = 12}, [3776] = {.lex_state = 5, .external_lex_state = 12}, - [3777] = {.lex_state = 5, .external_lex_state = 12}, + [3777] = {.lex_state = 5, .external_lex_state = 16}, [3778] = {.lex_state = 5, .external_lex_state = 12}, - [3779] = {.lex_state = 18, .external_lex_state = 16}, + [3779] = {.lex_state = 5, .external_lex_state = 12}, [3780] = {.lex_state = 5, .external_lex_state = 12}, - [3781] = {.lex_state = 5, .external_lex_state = 12}, - [3782] = {.lex_state = 18, .external_lex_state = 11}, + [3781] = {.lex_state = 18, .external_lex_state = 16}, + [3782] = {.lex_state = 5, .external_lex_state = 12}, [3783] = {.lex_state = 5, .external_lex_state = 12}, [3784] = {.lex_state = 5, .external_lex_state = 12}, - [3785] = {.lex_state = 66, .external_lex_state = 15}, - [3786] = {.lex_state = 20, .external_lex_state = 11}, - [3787] = {.lex_state = 15, .external_lex_state = 12}, - [3788] = {.lex_state = 18, .external_lex_state = 11}, - [3789] = {.lex_state = 18, .external_lex_state = 11}, - [3790] = {.lex_state = 18, .external_lex_state = 11}, - [3791] = {.lex_state = 18, .external_lex_state = 11}, - [3792] = {.lex_state = 18, .external_lex_state = 11}, - [3793] = {.lex_state = 18, .external_lex_state = 11}, - [3794] = {.lex_state = 5, .external_lex_state = 12}, - [3795] = {.lex_state = 18, .external_lex_state = 12}, - [3796] = {.lex_state = 15, .external_lex_state = 12}, - [3797] = {.lex_state = 66, .external_lex_state = 12}, - [3798] = {.lex_state = 66, .external_lex_state = 15}, - [3799] = {.lex_state = 66, .external_lex_state = 12}, - [3800] = {.lex_state = 66, .external_lex_state = 15}, - [3801] = {.lex_state = 66, .external_lex_state = 5}, - [3802] = {.lex_state = 66, .external_lex_state = 5}, - [3803] = {.lex_state = 66, .external_lex_state = 11}, - [3804] = {.lex_state = 5, .external_lex_state = 16}, - [3805] = {.lex_state = 66, .external_lex_state = 15}, - [3806] = {.lex_state = 66, .external_lex_state = 11}, - [3807] = {.lex_state = 5, .external_lex_state = 11}, - [3808] = {.lex_state = 66, .external_lex_state = 15}, - [3809] = {.lex_state = 5, .external_lex_state = 11}, - [3810] = {.lex_state = 66, .external_lex_state = 5}, - [3811] = {.lex_state = 15, .external_lex_state = 16}, - [3812] = {.lex_state = 5, .external_lex_state = 11}, - [3813] = {.lex_state = 5, .external_lex_state = 11}, - [3814] = {.lex_state = 5, .external_lex_state = 11}, - [3815] = {.lex_state = 66, .external_lex_state = 5}, - [3816] = {.lex_state = 5, .external_lex_state = 14}, - [3817] = {.lex_state = 15, .external_lex_state = 12}, - [3818] = {.lex_state = 5, .external_lex_state = 11}, - [3819] = {.lex_state = 66, .external_lex_state = 5}, - [3820] = {.lex_state = 5, .external_lex_state = 11}, - [3821] = {.lex_state = 66, .external_lex_state = 11}, - [3822] = {.lex_state = 66, .external_lex_state = 5}, - [3823] = {.lex_state = 5, .external_lex_state = 11}, - [3824] = {.lex_state = 66, .external_lex_state = 5}, - [3825] = {.lex_state = 15, .external_lex_state = 16}, - [3826] = {.lex_state = 66, .external_lex_state = 15}, - [3827] = {.lex_state = 66, .external_lex_state = 15}, - [3828] = {.lex_state = 66, .external_lex_state = 15}, - [3829] = {.lex_state = 66, .external_lex_state = 15}, - [3830] = {.lex_state = 66, .external_lex_state = 15}, - [3831] = {.lex_state = 66, .external_lex_state = 15}, - [3832] = {.lex_state = 66, .external_lex_state = 5}, - [3833] = {.lex_state = 66, .external_lex_state = 5}, - [3834] = {.lex_state = 66, .external_lex_state = 15}, - [3835] = {.lex_state = 66, .external_lex_state = 5}, - [3836] = {.lex_state = 5, .external_lex_state = 14}, - [3837] = {.lex_state = 15, .external_lex_state = 12}, - [3838] = {.lex_state = 15, .external_lex_state = 16}, - [3839] = {.lex_state = 5, .external_lex_state = 11}, - [3840] = {.lex_state = 66, .external_lex_state = 15}, - [3841] = {.lex_state = 66, .external_lex_state = 11}, - [3842] = {.lex_state = 15, .external_lex_state = 16}, - [3843] = {.lex_state = 5, .external_lex_state = 11}, - [3844] = {.lex_state = 5, .external_lex_state = 11}, - [3845] = {.lex_state = 15, .external_lex_state = 16}, - [3846] = {.lex_state = 5, .external_lex_state = 11}, - [3847] = {.lex_state = 66, .external_lex_state = 15}, - [3848] = {.lex_state = 5, .external_lex_state = 11}, - [3849] = {.lex_state = 15, .external_lex_state = 11}, - [3850] = {.lex_state = 15, .external_lex_state = 16}, - [3851] = {.lex_state = 15, .external_lex_state = 12}, - [3852] = {.lex_state = 5, .external_lex_state = 11}, - [3853] = {.lex_state = 66, .external_lex_state = 5}, - [3854] = {.lex_state = 5, .external_lex_state = 11}, - [3855] = {.lex_state = 5, .external_lex_state = 14}, - [3856] = {.lex_state = 66, .external_lex_state = 15}, - [3857] = {.lex_state = 66, .external_lex_state = 15}, - [3858] = {.lex_state = 15, .external_lex_state = 12}, - [3859] = {.lex_state = 66, .external_lex_state = 15}, + [3785] = {.lex_state = 5, .external_lex_state = 12}, + [3786] = {.lex_state = 5, .external_lex_state = 12}, + [3787] = {.lex_state = 5, .external_lex_state = 12}, + [3788] = {.lex_state = 5, .external_lex_state = 12}, + [3789] = {.lex_state = 20, .external_lex_state = 14}, + [3790] = {.lex_state = 5, .external_lex_state = 12}, + [3791] = {.lex_state = 5, .external_lex_state = 12}, + [3792] = {.lex_state = 5, .external_lex_state = 16}, + [3793] = {.lex_state = 5, .external_lex_state = 16}, + [3794] = {.lex_state = 20, .external_lex_state = 11}, + [3795] = {.lex_state = 66, .external_lex_state = 15}, + [3796] = {.lex_state = 18, .external_lex_state = 16}, + [3797] = {.lex_state = 5, .external_lex_state = 12}, + [3798] = {.lex_state = 15, .external_lex_state = 12}, + [3799] = {.lex_state = 5, .external_lex_state = 12}, + [3800] = {.lex_state = 5, .external_lex_state = 12}, + [3801] = {.lex_state = 5, .external_lex_state = 12}, + [3802] = {.lex_state = 5, .external_lex_state = 12}, + [3803] = {.lex_state = 5, .external_lex_state = 12}, + [3804] = {.lex_state = 15, .external_lex_state = 12}, + [3805] = {.lex_state = 5, .external_lex_state = 12}, + [3806] = {.lex_state = 15, .external_lex_state = 12}, + [3807] = {.lex_state = 5, .external_lex_state = 12}, + [3808] = {.lex_state = 5, .external_lex_state = 12}, + [3809] = {.lex_state = 5, .external_lex_state = 12}, + [3810] = {.lex_state = 5, .external_lex_state = 12}, + [3811] = {.lex_state = 5, .external_lex_state = 12}, + [3812] = {.lex_state = 5, .external_lex_state = 12}, + [3813] = {.lex_state = 5, .external_lex_state = 12}, + [3814] = {.lex_state = 5, .external_lex_state = 12}, + [3815] = {.lex_state = 5, .external_lex_state = 12}, + [3816] = {.lex_state = 5, .external_lex_state = 12}, + [3817] = {.lex_state = 18, .external_lex_state = 16}, + [3818] = {.lex_state = 5, .external_lex_state = 16}, + [3819] = {.lex_state = 18, .external_lex_state = 16}, + [3820] = {.lex_state = 5, .external_lex_state = 14}, + [3821] = {.lex_state = 5, .external_lex_state = 12}, + [3822] = {.lex_state = 5, .external_lex_state = 12}, + [3823] = {.lex_state = 5, .external_lex_state = 12}, + [3824] = {.lex_state = 5, .external_lex_state = 12}, + [3825] = {.lex_state = 5, .external_lex_state = 12}, + [3826] = {.lex_state = 18, .external_lex_state = 16}, + [3827] = {.lex_state = 5, .external_lex_state = 12}, + [3828] = {.lex_state = 5, .external_lex_state = 12}, + [3829] = {.lex_state = 5, .external_lex_state = 14}, + [3830] = {.lex_state = 5, .external_lex_state = 14}, + [3831] = {.lex_state = 5, .external_lex_state = 16}, + [3832] = {.lex_state = 18, .external_lex_state = 11}, + [3833] = {.lex_state = 18, .external_lex_state = 16}, + [3834] = {.lex_state = 5, .external_lex_state = 12}, + [3835] = {.lex_state = 15, .external_lex_state = 12}, + [3836] = {.lex_state = 66, .external_lex_state = 15}, + [3837] = {.lex_state = 5, .external_lex_state = 12}, + [3838] = {.lex_state = 5, .external_lex_state = 12}, + [3839] = {.lex_state = 5, .external_lex_state = 16}, + [3840] = {.lex_state = 15, .external_lex_state = 12}, + [3841] = {.lex_state = 18, .external_lex_state = 11}, + [3842] = {.lex_state = 18, .external_lex_state = 11}, + [3843] = {.lex_state = 18, .external_lex_state = 11}, + [3844] = {.lex_state = 18, .external_lex_state = 11}, + [3845] = {.lex_state = 15, .external_lex_state = 12}, + [3846] = {.lex_state = 5, .external_lex_state = 12}, + [3847] = {.lex_state = 18, .external_lex_state = 11}, + [3848] = {.lex_state = 15, .external_lex_state = 12}, + [3849] = {.lex_state = 18, .external_lex_state = 11}, + [3850] = {.lex_state = 18, .external_lex_state = 11}, + [3851] = {.lex_state = 18, .external_lex_state = 11}, + [3852] = {.lex_state = 18, .external_lex_state = 11}, + [3853] = {.lex_state = 18, .external_lex_state = 11}, + [3854] = {.lex_state = 15, .external_lex_state = 12}, + [3855] = {.lex_state = 18, .external_lex_state = 11}, + [3856] = {.lex_state = 5, .external_lex_state = 12}, + [3857] = {.lex_state = 66, .external_lex_state = 5}, + [3858] = {.lex_state = 5, .external_lex_state = 11}, + [3859] = {.lex_state = 5, .external_lex_state = 11}, [3860] = {.lex_state = 66, .external_lex_state = 15}, [3861] = {.lex_state = 5, .external_lex_state = 11}, - [3862] = {.lex_state = 66, .external_lex_state = 11}, - [3863] = {.lex_state = 66, .external_lex_state = 15}, - [3864] = {.lex_state = 15, .external_lex_state = 16}, - [3865] = {.lex_state = 5, .external_lex_state = 11}, + [3862] = {.lex_state = 18, .external_lex_state = 12}, + [3863] = {.lex_state = 66, .external_lex_state = 12}, + [3864] = {.lex_state = 5, .external_lex_state = 11}, + [3865] = {.lex_state = 66, .external_lex_state = 5}, [3866] = {.lex_state = 66, .external_lex_state = 15}, [3867] = {.lex_state = 66, .external_lex_state = 15}, - [3868] = {.lex_state = 5, .external_lex_state = 11}, - [3869] = {.lex_state = 66, .external_lex_state = 5}, - [3870] = {.lex_state = 5, .external_lex_state = 11}, + [3868] = {.lex_state = 66, .external_lex_state = 11}, + [3869] = {.lex_state = 5, .external_lex_state = 16}, + [3870] = {.lex_state = 66, .external_lex_state = 15}, [3871] = {.lex_state = 66, .external_lex_state = 15}, - [3872] = {.lex_state = 5, .external_lex_state = 11}, - [3873] = {.lex_state = 66, .external_lex_state = 15}, + [3872] = {.lex_state = 66, .external_lex_state = 15}, + [3873] = {.lex_state = 66, .external_lex_state = 11}, [3874] = {.lex_state = 66, .external_lex_state = 15}, - [3875] = {.lex_state = 15, .external_lex_state = 12}, - [3876] = {.lex_state = 66, .external_lex_state = 11}, - [3877] = {.lex_state = 66, .external_lex_state = 11}, + [3875] = {.lex_state = 66, .external_lex_state = 15}, + [3876] = {.lex_state = 66, .external_lex_state = 5}, + [3877] = {.lex_state = 5, .external_lex_state = 11}, [3878] = {.lex_state = 5, .external_lex_state = 11}, - [3879] = {.lex_state = 66, .external_lex_state = 16}, - [3880] = {.lex_state = 66, .external_lex_state = 14}, - [3881] = {.lex_state = 0, .external_lex_state = 18}, - [3882] = {.lex_state = 18, .external_lex_state = 12}, - [3883] = {.lex_state = 68, .external_lex_state = 17}, - [3884] = {.lex_state = 18, .external_lex_state = 12}, - [3885] = {.lex_state = 66, .external_lex_state = 16}, - [3886] = {.lex_state = 66, .external_lex_state = 2}, - [3887] = {.lex_state = 66, .external_lex_state = 14}, - [3888] = {.lex_state = 66, .external_lex_state = 16}, - [3889] = {.lex_state = 66, .external_lex_state = 11}, - [3890] = {.lex_state = 66, .external_lex_state = 11}, - [3891] = {.lex_state = 66, .external_lex_state = 16}, - [3892] = {.lex_state = 18, .external_lex_state = 12}, - [3893] = {.lex_state = 66, .external_lex_state = 16}, - [3894] = {.lex_state = 14, .external_lex_state = 11}, - [3895] = {.lex_state = 66, .external_lex_state = 2}, - [3896] = {.lex_state = 66, .external_lex_state = 16}, - [3897] = {.lex_state = 18, .external_lex_state = 15}, - [3898] = {.lex_state = 16, .external_lex_state = 19}, - [3899] = {.lex_state = 16, .external_lex_state = 19}, - [3900] = {.lex_state = 0, .external_lex_state = 18}, + [3879] = {.lex_state = 5, .external_lex_state = 11}, + [3880] = {.lex_state = 66, .external_lex_state = 5}, + [3881] = {.lex_state = 66, .external_lex_state = 15}, + [3882] = {.lex_state = 66, .external_lex_state = 15}, + [3883] = {.lex_state = 15, .external_lex_state = 16}, + [3884] = {.lex_state = 66, .external_lex_state = 5}, + [3885] = {.lex_state = 5, .external_lex_state = 11}, + [3886] = {.lex_state = 66, .external_lex_state = 15}, + [3887] = {.lex_state = 66, .external_lex_state = 15}, + [3888] = {.lex_state = 5, .external_lex_state = 11}, + [3889] = {.lex_state = 66, .external_lex_state = 15}, + [3890] = {.lex_state = 5, .external_lex_state = 11}, + [3891] = {.lex_state = 5, .external_lex_state = 11}, + [3892] = {.lex_state = 66, .external_lex_state = 5}, + [3893] = {.lex_state = 66, .external_lex_state = 5}, + [3894] = {.lex_state = 66, .external_lex_state = 5}, + [3895] = {.lex_state = 15, .external_lex_state = 16}, + [3896] = {.lex_state = 5, .external_lex_state = 11}, + [3897] = {.lex_state = 66, .external_lex_state = 5}, + [3898] = {.lex_state = 66, .external_lex_state = 15}, + [3899] = {.lex_state = 66, .external_lex_state = 15}, + [3900] = {.lex_state = 66, .external_lex_state = 11}, [3901] = {.lex_state = 66, .external_lex_state = 15}, - [3902] = {.lex_state = 66, .external_lex_state = 11}, - [3903] = {.lex_state = 18, .external_lex_state = 12}, - [3904] = {.lex_state = 66, .external_lex_state = 16}, - [3905] = {.lex_state = 66, .external_lex_state = 15}, - [3906] = {.lex_state = 18, .external_lex_state = 12}, - [3907] = {.lex_state = 16, .external_lex_state = 19}, - [3908] = {.lex_state = 18, .external_lex_state = 12}, - [3909] = {.lex_state = 66, .external_lex_state = 16}, - [3910] = {.lex_state = 66, .external_lex_state = 11}, - [3911] = {.lex_state = 66, .external_lex_state = 11}, - [3912] = {.lex_state = 18, .external_lex_state = 12}, - [3913] = {.lex_state = 66, .external_lex_state = 14}, - [3914] = {.lex_state = 66, .external_lex_state = 15}, - [3915] = {.lex_state = 66, .external_lex_state = 16}, - [3916] = {.lex_state = 14, .external_lex_state = 11}, - [3917] = {.lex_state = 14, .external_lex_state = 11}, - [3918] = {.lex_state = 66, .external_lex_state = 12}, - [3919] = {.lex_state = 5, .external_lex_state = 12}, - [3920] = {.lex_state = 14, .external_lex_state = 11}, - [3921] = {.lex_state = 66, .external_lex_state = 16}, - [3922] = {.lex_state = 68, .external_lex_state = 17}, - [3923] = {.lex_state = 68, .external_lex_state = 17}, - [3924] = {.lex_state = 66, .external_lex_state = 11}, - [3925] = {.lex_state = 66, .external_lex_state = 14}, - [3926] = {.lex_state = 66, .external_lex_state = 16}, - [3927] = {.lex_state = 68, .external_lex_state = 17}, - [3928] = {.lex_state = 66, .external_lex_state = 2}, - [3929] = {.lex_state = 66, .external_lex_state = 2}, - [3930] = {.lex_state = 14, .external_lex_state = 11}, - [3931] = {.lex_state = 66, .external_lex_state = 16}, - [3932] = {.lex_state = 66, .external_lex_state = 16}, - [3933] = {.lex_state = 14, .external_lex_state = 11}, - [3934] = {.lex_state = 66, .external_lex_state = 14}, - [3935] = {.lex_state = 66, .external_lex_state = 14}, - [3936] = {.lex_state = 66, .external_lex_state = 16}, - [3937] = {.lex_state = 66, .external_lex_state = 16}, + [3902] = {.lex_state = 5, .external_lex_state = 14}, + [3903] = {.lex_state = 66, .external_lex_state = 15}, + [3904] = {.lex_state = 66, .external_lex_state = 15}, + [3905] = {.lex_state = 66, .external_lex_state = 11}, + [3906] = {.lex_state = 66, .external_lex_state = 15}, + [3907] = {.lex_state = 5, .external_lex_state = 11}, + [3908] = {.lex_state = 66, .external_lex_state = 5}, + [3909] = {.lex_state = 15, .external_lex_state = 16}, + [3910] = {.lex_state = 5, .external_lex_state = 11}, + [3911] = {.lex_state = 5, .external_lex_state = 11}, + [3912] = {.lex_state = 15, .external_lex_state = 16}, + [3913] = {.lex_state = 15, .external_lex_state = 16}, + [3914] = {.lex_state = 5, .external_lex_state = 11}, + [3915] = {.lex_state = 66, .external_lex_state = 11}, + [3916] = {.lex_state = 66, .external_lex_state = 15}, + [3917] = {.lex_state = 66, .external_lex_state = 12}, + [3918] = {.lex_state = 15, .external_lex_state = 16}, + [3919] = {.lex_state = 5, .external_lex_state = 11}, + [3920] = {.lex_state = 5, .external_lex_state = 11}, + [3921] = {.lex_state = 15, .external_lex_state = 16}, + [3922] = {.lex_state = 5, .external_lex_state = 14}, + [3923] = {.lex_state = 5, .external_lex_state = 11}, + [3924] = {.lex_state = 66, .external_lex_state = 15}, + [3925] = {.lex_state = 5, .external_lex_state = 11}, + [3926] = {.lex_state = 66, .external_lex_state = 15}, + [3927] = {.lex_state = 5, .external_lex_state = 11}, + [3928] = {.lex_state = 66, .external_lex_state = 15}, + [3929] = {.lex_state = 66, .external_lex_state = 11}, + [3930] = {.lex_state = 15, .external_lex_state = 11}, + [3931] = {.lex_state = 66, .external_lex_state = 11}, + [3932] = {.lex_state = 66, .external_lex_state = 5}, + [3933] = {.lex_state = 66, .external_lex_state = 5}, + [3934] = {.lex_state = 5, .external_lex_state = 14}, + [3935] = {.lex_state = 66, .external_lex_state = 16}, + [3936] = {.lex_state = 67, .external_lex_state = 17}, + [3937] = {.lex_state = 67, .external_lex_state = 17}, [3938] = {.lex_state = 66, .external_lex_state = 14}, - [3939] = {.lex_state = 66, .external_lex_state = 14}, - [3940] = {.lex_state = 66, .external_lex_state = 16}, - [3941] = {.lex_state = 68, .external_lex_state = 17}, - [3942] = {.lex_state = 68, .external_lex_state = 17}, - [3943] = {.lex_state = 66, .external_lex_state = 11}, - [3944] = {.lex_state = 18, .external_lex_state = 14}, - [3945] = {.lex_state = 66, .external_lex_state = 2}, - [3946] = {.lex_state = 66, .external_lex_state = 12}, - [3947] = {.lex_state = 14, .external_lex_state = 11}, - [3948] = {.lex_state = 68, .external_lex_state = 17}, + [3939] = {.lex_state = 66, .external_lex_state = 11}, + [3940] = {.lex_state = 66, .external_lex_state = 2}, + [3941] = {.lex_state = 66, .external_lex_state = 12}, + [3942] = {.lex_state = 66, .external_lex_state = 12}, + [3943] = {.lex_state = 66, .external_lex_state = 16}, + [3944] = {.lex_state = 66, .external_lex_state = 16}, + [3945] = {.lex_state = 66, .external_lex_state = 11}, + [3946] = {.lex_state = 66, .external_lex_state = 16}, + [3947] = {.lex_state = 66, .external_lex_state = 2}, + [3948] = {.lex_state = 18, .external_lex_state = 14}, [3949] = {.lex_state = 14, .external_lex_state = 11}, - [3950] = {.lex_state = 68, .external_lex_state = 17}, - [3951] = {.lex_state = 68, .external_lex_state = 17}, - [3952] = {.lex_state = 68, .external_lex_state = 17}, - [3953] = {.lex_state = 68, .external_lex_state = 17}, - [3954] = {.lex_state = 66, .external_lex_state = 2}, - [3955] = {.lex_state = 66, .external_lex_state = 2}, - [3956] = {.lex_state = 66, .external_lex_state = 11}, - [3957] = {.lex_state = 66, .external_lex_state = 11}, - [3958] = {.lex_state = 14, .external_lex_state = 11}, - [3959] = {.lex_state = 14, .external_lex_state = 11}, + [3950] = {.lex_state = 14, .external_lex_state = 11}, + [3951] = {.lex_state = 66, .external_lex_state = 11}, + [3952] = {.lex_state = 66, .external_lex_state = 14}, + [3953] = {.lex_state = 66, .external_lex_state = 16}, + [3954] = {.lex_state = 66, .external_lex_state = 12}, + [3955] = {.lex_state = 66, .external_lex_state = 14}, + [3956] = {.lex_state = 66, .external_lex_state = 15}, + [3957] = {.lex_state = 66, .external_lex_state = 14}, + [3958] = {.lex_state = 67, .external_lex_state = 17}, + [3959] = {.lex_state = 66, .external_lex_state = 15}, [3960] = {.lex_state = 66, .external_lex_state = 16}, - [3961] = {.lex_state = 66, .external_lex_state = 11}, - [3962] = {.lex_state = 66, .external_lex_state = 11}, - [3963] = {.lex_state = 16, .external_lex_state = 19}, - [3964] = {.lex_state = 14, .external_lex_state = 11}, - [3965] = {.lex_state = 66, .external_lex_state = 15}, - [3966] = {.lex_state = 18, .external_lex_state = 16}, - [3967] = {.lex_state = 68, .external_lex_state = 17}, - [3968] = {.lex_state = 14, .external_lex_state = 11}, - [3969] = {.lex_state = 18, .external_lex_state = 12}, - [3970] = {.lex_state = 18, .external_lex_state = 12}, - [3971] = {.lex_state = 18, .external_lex_state = 12}, - [3972] = {.lex_state = 18, .external_lex_state = 12}, - [3973] = {.lex_state = 18, .external_lex_state = 12}, - [3974] = {.lex_state = 18, .external_lex_state = 12}, - [3975] = {.lex_state = 66, .external_lex_state = 16}, - [3976] = {.lex_state = 66, .external_lex_state = 15}, - [3977] = {.lex_state = 66, .external_lex_state = 16}, - [3978] = {.lex_state = 66, .external_lex_state = 16}, - [3979] = {.lex_state = 66, .external_lex_state = 16}, - [3980] = {.lex_state = 66, .external_lex_state = 14}, + [3961] = {.lex_state = 0, .external_lex_state = 18}, + [3962] = {.lex_state = 66, .external_lex_state = 16}, + [3963] = {.lex_state = 67, .external_lex_state = 17}, + [3964] = {.lex_state = 66, .external_lex_state = 11}, + [3965] = {.lex_state = 66, .external_lex_state = 16}, + [3966] = {.lex_state = 66, .external_lex_state = 16}, + [3967] = {.lex_state = 66, .external_lex_state = 15}, + [3968] = {.lex_state = 67, .external_lex_state = 17}, + [3969] = {.lex_state = 66, .external_lex_state = 16}, + [3970] = {.lex_state = 66, .external_lex_state = 16}, + [3971] = {.lex_state = 66, .external_lex_state = 11}, + [3972] = {.lex_state = 16, .external_lex_state = 19}, + [3973] = {.lex_state = 14, .external_lex_state = 11}, + [3974] = {.lex_state = 66, .external_lex_state = 11}, + [3975] = {.lex_state = 14, .external_lex_state = 11}, + [3976] = {.lex_state = 66, .external_lex_state = 16}, + [3977] = {.lex_state = 18, .external_lex_state = 12}, + [3978] = {.lex_state = 66, .external_lex_state = 14}, + [3979] = {.lex_state = 66, .external_lex_state = 11}, + [3980] = {.lex_state = 16, .external_lex_state = 19}, [3981] = {.lex_state = 66, .external_lex_state = 11}, - [3982] = {.lex_state = 66, .external_lex_state = 15}, - [3983] = {.lex_state = 15, .external_lex_state = 14}, - [3984] = {.lex_state = 66, .external_lex_state = 11}, - [3985] = {.lex_state = 66, .external_lex_state = 16}, - [3986] = {.lex_state = 66, .external_lex_state = 16}, - [3987] = {.lex_state = 66, .external_lex_state = 11}, - [3988] = {.lex_state = 66, .external_lex_state = 12}, - [3989] = {.lex_state = 66, .external_lex_state = 14}, - [3990] = {.lex_state = 12, .external_lex_state = 12}, - [3991] = {.lex_state = 15, .external_lex_state = 15}, - [3992] = {.lex_state = 66, .external_lex_state = 11}, - [3993] = {.lex_state = 66, .external_lex_state = 11}, - [3994] = {.lex_state = 66, .external_lex_state = 11}, - [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 = 11}, - [3999] = {.lex_state = 66, .external_lex_state = 11}, - [4000] = {.lex_state = 66, .external_lex_state = 14}, + [3982] = {.lex_state = 14, .external_lex_state = 11}, + [3983] = {.lex_state = 66, .external_lex_state = 16}, + [3984] = {.lex_state = 66, .external_lex_state = 16}, + [3985] = {.lex_state = 66, .external_lex_state = 15}, + [3986] = {.lex_state = 0, .external_lex_state = 18}, + [3987] = {.lex_state = 66, .external_lex_state = 16}, + [3988] = {.lex_state = 14, .external_lex_state = 11}, + [3989] = {.lex_state = 18, .external_lex_state = 12}, + [3990] = {.lex_state = 18, .external_lex_state = 12}, + [3991] = {.lex_state = 14, .external_lex_state = 11}, + [3992] = {.lex_state = 66, .external_lex_state = 12}, + [3993] = {.lex_state = 66, .external_lex_state = 14}, + [3994] = {.lex_state = 66, .external_lex_state = 2}, + [3995] = {.lex_state = 18, .external_lex_state = 12}, + [3996] = {.lex_state = 18, .external_lex_state = 12}, + [3997] = {.lex_state = 66, .external_lex_state = 12}, + [3998] = {.lex_state = 18, .external_lex_state = 12}, + [3999] = {.lex_state = 18, .external_lex_state = 12}, + [4000] = {.lex_state = 18, .external_lex_state = 12}, [4001] = {.lex_state = 66, .external_lex_state = 16}, - [4002] = {.lex_state = 66, .external_lex_state = 11}, + [4002] = {.lex_state = 18, .external_lex_state = 12}, [4003] = {.lex_state = 66, .external_lex_state = 11}, - [4004] = {.lex_state = 66, .external_lex_state = 11}, - [4005] = {.lex_state = 66, .external_lex_state = 7}, - [4006] = {.lex_state = 66, .external_lex_state = 11}, - [4007] = {.lex_state = 66, .external_lex_state = 11}, - [4008] = {.lex_state = 66, .external_lex_state = 14}, + [4004] = {.lex_state = 18, .external_lex_state = 12}, + [4005] = {.lex_state = 14, .external_lex_state = 11}, + [4006] = {.lex_state = 18, .external_lex_state = 15}, + [4007] = {.lex_state = 18, .external_lex_state = 16}, + [4008] = {.lex_state = 66, .external_lex_state = 12}, [4009] = {.lex_state = 66, .external_lex_state = 14}, - [4010] = {.lex_state = 66, .external_lex_state = 11}, - [4011] = {.lex_state = 66, .external_lex_state = 11}, - [4012] = {.lex_state = 66, .external_lex_state = 14}, - [4013] = {.lex_state = 66, .external_lex_state = 11}, - [4014] = {.lex_state = 66, .external_lex_state = 11}, - [4015] = {.lex_state = 66, .external_lex_state = 14}, - [4016] = {.lex_state = 15, .external_lex_state = 15}, - [4017] = {.lex_state = 66, .external_lex_state = 11}, - [4018] = {.lex_state = 66, .external_lex_state = 11}, - [4019] = {.lex_state = 66, .external_lex_state = 12}, - [4020] = {.lex_state = 66, .external_lex_state = 11}, - [4021] = {.lex_state = 66, .external_lex_state = 14}, - [4022] = {.lex_state = 66, .external_lex_state = 11}, - [4023] = {.lex_state = 66, .external_lex_state = 16}, - [4024] = {.lex_state = 66, .external_lex_state = 11}, - [4025] = {.lex_state = 66, .external_lex_state = 15}, - [4026] = {.lex_state = 66, .external_lex_state = 15}, - [4027] = {.lex_state = 66, .external_lex_state = 11}, - [4028] = {.lex_state = 66, .external_lex_state = 12}, - [4029] = {.lex_state = 66, .external_lex_state = 15}, - [4030] = {.lex_state = 66, .external_lex_state = 15}, - [4031] = {.lex_state = 66, .external_lex_state = 11}, - [4032] = {.lex_state = 66, .external_lex_state = 11}, - [4033] = {.lex_state = 66, .external_lex_state = 12}, - [4034] = {.lex_state = 66, .external_lex_state = 12}, - [4035] = {.lex_state = 66, .external_lex_state = 16}, - [4036] = {.lex_state = 66, .external_lex_state = 11}, - [4037] = {.lex_state = 66, .external_lex_state = 14}, - [4038] = {.lex_state = 66, .external_lex_state = 16}, - [4039] = {.lex_state = 66, .external_lex_state = 11}, + [4010] = {.lex_state = 67, .external_lex_state = 17}, + [4011] = {.lex_state = 67, .external_lex_state = 17}, + [4012] = {.lex_state = 16, .external_lex_state = 19}, + [4013] = {.lex_state = 14, .external_lex_state = 11}, + [4014] = {.lex_state = 66, .external_lex_state = 12}, + [4015] = {.lex_state = 66, .external_lex_state = 16}, + [4016] = {.lex_state = 67, .external_lex_state = 17}, + [4017] = {.lex_state = 66, .external_lex_state = 14}, + [4018] = {.lex_state = 66, .external_lex_state = 14}, + [4019] = {.lex_state = 66, .external_lex_state = 11}, + [4020] = {.lex_state = 5, .external_lex_state = 12}, + [4021] = {.lex_state = 18, .external_lex_state = 12}, + [4022] = {.lex_state = 66, .external_lex_state = 12}, + [4023] = {.lex_state = 67, .external_lex_state = 17}, + [4024] = {.lex_state = 66, .external_lex_state = 16}, + [4025] = {.lex_state = 18, .external_lex_state = 12}, + [4026] = {.lex_state = 66, .external_lex_state = 2}, + [4027] = {.lex_state = 66, .external_lex_state = 2}, + [4028] = {.lex_state = 66, .external_lex_state = 16}, + [4029] = {.lex_state = 67, .external_lex_state = 17}, + [4030] = {.lex_state = 67, .external_lex_state = 17}, + [4031] = {.lex_state = 18, .external_lex_state = 12}, + [4032] = {.lex_state = 14, .external_lex_state = 11}, + [4033] = {.lex_state = 67, .external_lex_state = 17}, + [4034] = {.lex_state = 66, .external_lex_state = 2}, + [4035] = {.lex_state = 66, .external_lex_state = 12}, + [4036] = {.lex_state = 14, .external_lex_state = 11}, + [4037] = {.lex_state = 66, .external_lex_state = 16}, + [4038] = {.lex_state = 66, .external_lex_state = 12}, + [4039] = {.lex_state = 16, .external_lex_state = 19}, [4040] = {.lex_state = 66, .external_lex_state = 11}, - [4041] = {.lex_state = 66, .external_lex_state = 16}, - [4042] = {.lex_state = 66, .external_lex_state = 12}, - [4043] = {.lex_state = 66, .external_lex_state = 6}, - [4044] = {.lex_state = 66, .external_lex_state = 14}, + [4041] = {.lex_state = 66, .external_lex_state = 15}, + [4042] = {.lex_state = 66, .external_lex_state = 16}, + [4043] = {.lex_state = 14, .external_lex_state = 11}, + [4044] = {.lex_state = 66, .external_lex_state = 2}, [4045] = {.lex_state = 66, .external_lex_state = 11}, [4046] = {.lex_state = 66, .external_lex_state = 12}, [4047] = {.lex_state = 66, .external_lex_state = 11}, - [4048] = {.lex_state = 66, .external_lex_state = 16}, - [4049] = {.lex_state = 66, .external_lex_state = 14}, + [4048] = {.lex_state = 15, .external_lex_state = 16}, + [4049] = {.lex_state = 66, .external_lex_state = 11}, [4050] = {.lex_state = 66, .external_lex_state = 12}, - [4051] = {.lex_state = 66, .external_lex_state = 14}, + [4051] = {.lex_state = 66, .external_lex_state = 11}, [4052] = {.lex_state = 66, .external_lex_state = 11}, [4053] = {.lex_state = 66, .external_lex_state = 11}, - [4054] = {.lex_state = 66, .external_lex_state = 12}, + [4054] = {.lex_state = 66, .external_lex_state = 11}, [4055] = {.lex_state = 66, .external_lex_state = 11}, - [4056] = {.lex_state = 15, .external_lex_state = 16}, - [4057] = {.lex_state = 66, .external_lex_state = 15}, - [4058] = {.lex_state = 66, .external_lex_state = 15}, + [4056] = {.lex_state = 66, .external_lex_state = 16}, + [4057] = {.lex_state = 66, .external_lex_state = 12}, + [4058] = {.lex_state = 66, .external_lex_state = 16}, [4059] = {.lex_state = 66, .external_lex_state = 11}, [4060] = {.lex_state = 66, .external_lex_state = 11}, [4061] = {.lex_state = 66, .external_lex_state = 11}, [4062] = {.lex_state = 66, .external_lex_state = 11}, [4063] = {.lex_state = 66, .external_lex_state = 11}, - [4064] = {.lex_state = 66, .external_lex_state = 15}, + [4064] = {.lex_state = 66, .external_lex_state = 11}, [4065] = {.lex_state = 66, .external_lex_state = 11}, - [4066] = {.lex_state = 66, .external_lex_state = 16}, + [4066] = {.lex_state = 12, .external_lex_state = 12}, [4067] = {.lex_state = 66, .external_lex_state = 11}, [4068] = {.lex_state = 66, .external_lex_state = 11}, [4069] = {.lex_state = 66, .external_lex_state = 11}, - [4070] = {.lex_state = 66, .external_lex_state = 15}, + [4070] = {.lex_state = 66, .external_lex_state = 11}, [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}, [4075] = {.lex_state = 66, .external_lex_state = 11}, [4076] = {.lex_state = 66, .external_lex_state = 11}, - [4077] = {.lex_state = 66, .external_lex_state = 11}, - [4078] = {.lex_state = 66, .external_lex_state = 11}, + [4077] = {.lex_state = 66, .external_lex_state = 12}, + [4078] = {.lex_state = 66, .external_lex_state = 14}, [4079] = {.lex_state = 66, .external_lex_state = 11}, [4080] = {.lex_state = 66, .external_lex_state = 11}, - [4081] = {.lex_state = 66, .external_lex_state = 11}, + [4081] = {.lex_state = 66, .external_lex_state = 12}, [4082] = {.lex_state = 66, .external_lex_state = 11}, - [4083] = {.lex_state = 66, .external_lex_state = 14}, + [4083] = {.lex_state = 66, .external_lex_state = 11}, [4084] = {.lex_state = 66, .external_lex_state = 11}, - [4085] = {.lex_state = 66, .external_lex_state = 15}, + [4085] = {.lex_state = 66, .external_lex_state = 11}, [4086] = {.lex_state = 66, .external_lex_state = 11}, [4087] = {.lex_state = 66, .external_lex_state = 11}, [4088] = {.lex_state = 66, .external_lex_state = 11}, - [4089] = {.lex_state = 66, .external_lex_state = 12}, - [4090] = {.lex_state = 15, .external_lex_state = 16}, + [4089] = {.lex_state = 66, .external_lex_state = 11}, + [4090] = {.lex_state = 66, .external_lex_state = 11}, [4091] = {.lex_state = 66, .external_lex_state = 11}, [4092] = {.lex_state = 66, .external_lex_state = 11}, - [4093] = {.lex_state = 66, .external_lex_state = 11}, - [4094] = {.lex_state = 66, .external_lex_state = 11}, + [4093] = {.lex_state = 66, .external_lex_state = 16}, + [4094] = {.lex_state = 66, .external_lex_state = 16}, [4095] = {.lex_state = 66, .external_lex_state = 11}, [4096] = {.lex_state = 66, .external_lex_state = 11}, [4097] = {.lex_state = 66, .external_lex_state = 11}, [4098] = {.lex_state = 66, .external_lex_state = 11}, - [4099] = {.lex_state = 66, .external_lex_state = 11}, + [4099] = {.lex_state = 66, .external_lex_state = 15}, [4100] = {.lex_state = 66, .external_lex_state = 11}, - [4101] = {.lex_state = 66, .external_lex_state = 11}, - [4102] = {.lex_state = 66, .external_lex_state = 12}, + [4101] = {.lex_state = 66, .external_lex_state = 16}, + [4102] = {.lex_state = 66, .external_lex_state = 11}, [4103] = {.lex_state = 66, .external_lex_state = 11}, - [4104] = {.lex_state = 66, .external_lex_state = 12}, - [4105] = {.lex_state = 66, .external_lex_state = 12}, - [4106] = {.lex_state = 66, .external_lex_state = 16}, - [4107] = {.lex_state = 66, .external_lex_state = 16}, - [4108] = {.lex_state = 15, .external_lex_state = 15}, - [4109] = {.lex_state = 66, .external_lex_state = 15}, - [4110] = {.lex_state = 66, .external_lex_state = 11}, - [4111] = {.lex_state = 66, .external_lex_state = 11}, - [4112] = {.lex_state = 66, .external_lex_state = 8}, - [4113] = {.lex_state = 66, .external_lex_state = 16}, - [4114] = {.lex_state = 66, .external_lex_state = 11}, + [4104] = {.lex_state = 66, .external_lex_state = 14}, + [4105] = {.lex_state = 66, .external_lex_state = 11}, + [4106] = {.lex_state = 66, .external_lex_state = 12}, + [4107] = {.lex_state = 66, .external_lex_state = 6}, + [4108] = {.lex_state = 66, .external_lex_state = 15}, + [4109] = {.lex_state = 66, .external_lex_state = 16}, + [4110] = {.lex_state = 66, .external_lex_state = 16}, + [4111] = {.lex_state = 66, .external_lex_state = 14}, + [4112] = {.lex_state = 66, .external_lex_state = 14}, + [4113] = {.lex_state = 66, .external_lex_state = 11}, + [4114] = {.lex_state = 66, .external_lex_state = 14}, [4115] = {.lex_state = 66, .external_lex_state = 11}, [4116] = {.lex_state = 66, .external_lex_state = 11}, - [4117] = {.lex_state = 66, .external_lex_state = 14}, + [4117] = {.lex_state = 66, .external_lex_state = 11}, [4118] = {.lex_state = 66, .external_lex_state = 11}, [4119] = {.lex_state = 66, .external_lex_state = 11}, [4120] = {.lex_state = 66, .external_lex_state = 11}, [4121] = {.lex_state = 66, .external_lex_state = 11}, [4122] = {.lex_state = 66, .external_lex_state = 11}, - [4123] = {.lex_state = 66, .external_lex_state = 11}, - [4124] = {.lex_state = 66, .external_lex_state = 11}, - [4125] = {.lex_state = 66, .external_lex_state = 12}, + [4123] = {.lex_state = 66, .external_lex_state = 12}, + [4124] = {.lex_state = 66, .external_lex_state = 7}, + [4125] = {.lex_state = 66, .external_lex_state = 16}, [4126] = {.lex_state = 66, .external_lex_state = 11}, - [4127] = {.lex_state = 66, .external_lex_state = 14}, + [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 = 11}, [4132] = {.lex_state = 66, .external_lex_state = 11}, - [4133] = {.lex_state = 15, .external_lex_state = 14}, + [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 = 14}, - [4137] = {.lex_state = 66, .external_lex_state = 14}, + [4136] = {.lex_state = 66, .external_lex_state = 11}, + [4137] = {.lex_state = 66, .external_lex_state = 11}, [4138] = {.lex_state = 66, .external_lex_state = 11}, [4139] = {.lex_state = 66, .external_lex_state = 11}, - [4140] = {.lex_state = 66, .external_lex_state = 11}, + [4140] = {.lex_state = 66, .external_lex_state = 12}, [4141] = {.lex_state = 66, .external_lex_state = 11}, [4142] = {.lex_state = 66, .external_lex_state = 11}, [4143] = {.lex_state = 66, .external_lex_state = 11}, - [4144] = {.lex_state = 15, .external_lex_state = 12}, - [4145] = {.lex_state = 66, .external_lex_state = 14}, + [4144] = {.lex_state = 66, .external_lex_state = 11}, + [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 = 15}, - [4149] = {.lex_state = 66, .external_lex_state = 15}, + [4148] = {.lex_state = 66, .external_lex_state = 11}, + [4149] = {.lex_state = 66, .external_lex_state = 11}, [4150] = {.lex_state = 66, .external_lex_state = 11}, [4151] = {.lex_state = 66, .external_lex_state = 11}, - [4152] = {.lex_state = 66, .external_lex_state = 16}, - [4153] = {.lex_state = 66, .external_lex_state = 11}, - [4154] = {.lex_state = 66, .external_lex_state = 11}, - [4155] = {.lex_state = 66, .external_lex_state = 16}, - [4156] = {.lex_state = 66, .external_lex_state = 11}, - [4157] = {.lex_state = 5, .external_lex_state = 12}, - [4158] = {.lex_state = 66, .external_lex_state = 12}, - [4159] = {.lex_state = 66, .external_lex_state = 16}, - [4160] = {.lex_state = 68, .external_lex_state = 17}, - [4161] = {.lex_state = 66, .external_lex_state = 12}, - [4162] = {.lex_state = 66, .external_lex_state = 11}, + [4152] = {.lex_state = 66, .external_lex_state = 15}, + [4153] = {.lex_state = 66, .external_lex_state = 12}, + [4154] = {.lex_state = 15, .external_lex_state = 15}, + [4155] = {.lex_state = 66, .external_lex_state = 14}, + [4156] = {.lex_state = 66, .external_lex_state = 8}, + [4157] = {.lex_state = 66, .external_lex_state = 16}, + [4158] = {.lex_state = 66, .external_lex_state = 15}, + [4159] = {.lex_state = 66, .external_lex_state = 15}, + [4160] = {.lex_state = 66, .external_lex_state = 15}, + [4161] = {.lex_state = 66, .external_lex_state = 15}, + [4162] = {.lex_state = 66, .external_lex_state = 14}, [4163] = {.lex_state = 66, .external_lex_state = 15}, [4164] = {.lex_state = 66, .external_lex_state = 14}, - [4165] = {.lex_state = 66, .external_lex_state = 15}, + [4165] = {.lex_state = 15, .external_lex_state = 15}, [4166] = {.lex_state = 66, .external_lex_state = 14}, - [4167] = {.lex_state = 5, .external_lex_state = 12}, - [4168] = {.lex_state = 66, .external_lex_state = 14}, - [4169] = {.lex_state = 66, .external_lex_state = 15}, - [4170] = {.lex_state = 66, .external_lex_state = 11}, - [4171] = {.lex_state = 0, .external_lex_state = 18}, - [4172] = {.lex_state = 66, .external_lex_state = 11}, - [4173] = {.lex_state = 0, .external_lex_state = 18}, - [4174] = {.lex_state = 0, .external_lex_state = 18}, - [4175] = {.lex_state = 66, .external_lex_state = 14}, - [4176] = {.lex_state = 66, .external_lex_state = 15}, - [4177] = {.lex_state = 66, .external_lex_state = 15}, - [4178] = {.lex_state = 66, .external_lex_state = 15}, - [4179] = {.lex_state = 66, .external_lex_state = 15}, + [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 = 66, .external_lex_state = 16}, + [4171] = {.lex_state = 66, .external_lex_state = 15}, + [4172] = {.lex_state = 66, .external_lex_state = 14}, + [4173] = {.lex_state = 66, .external_lex_state = 11}, + [4174] = {.lex_state = 66, .external_lex_state = 14}, + [4175] = {.lex_state = 66, .external_lex_state = 11}, + [4176] = {.lex_state = 15, .external_lex_state = 16}, + [4177] = {.lex_state = 66, .external_lex_state = 11}, + [4178] = {.lex_state = 66, .external_lex_state = 14}, + [4179] = {.lex_state = 66, .external_lex_state = 14}, [4180] = {.lex_state = 66, .external_lex_state = 16}, - [4181] = {.lex_state = 66, .external_lex_state = 14}, - [4182] = {.lex_state = 66, .external_lex_state = 11}, - [4183] = {.lex_state = 66, .external_lex_state = 14}, - [4184] = {.lex_state = 18, .external_lex_state = 11}, - [4185] = {.lex_state = 66, .external_lex_state = 15}, + [4181] = {.lex_state = 66, .external_lex_state = 11}, + [4182] = {.lex_state = 66, .external_lex_state = 15}, + [4183] = {.lex_state = 15, .external_lex_state = 15}, + [4184] = {.lex_state = 66, .external_lex_state = 12}, + [4185] = {.lex_state = 66, .external_lex_state = 11}, [4186] = {.lex_state = 66, .external_lex_state = 12}, - [4187] = {.lex_state = 66, .external_lex_state = 12}, + [4187] = {.lex_state = 66, .external_lex_state = 11}, [4188] = {.lex_state = 66, .external_lex_state = 12}, [4189] = {.lex_state = 66, .external_lex_state = 12}, [4190] = {.lex_state = 66, .external_lex_state = 12}, - [4191] = {.lex_state = 66, .external_lex_state = 15}, + [4191] = {.lex_state = 66, .external_lex_state = 11}, [4192] = {.lex_state = 66, .external_lex_state = 11}, - [4193] = {.lex_state = 66, .external_lex_state = 15}, - [4194] = {.lex_state = 66, .external_lex_state = 15}, - [4195] = {.lex_state = 66, .external_lex_state = 15}, - [4196] = {.lex_state = 15, .external_lex_state = 16}, - [4197] = {.lex_state = 18, .external_lex_state = 11}, - [4198] = {.lex_state = 66, .external_lex_state = 16}, - [4199] = {.lex_state = 66, .external_lex_state = 16}, - [4200] = {.lex_state = 66, .external_lex_state = 14}, + [4193] = {.lex_state = 66, .external_lex_state = 11}, + [4194] = {.lex_state = 66, .external_lex_state = 14}, + [4195] = {.lex_state = 15, .external_lex_state = 14}, + [4196] = {.lex_state = 66, .external_lex_state = 11}, + [4197] = {.lex_state = 66, .external_lex_state = 11}, + [4198] = {.lex_state = 66, .external_lex_state = 11}, + [4199] = {.lex_state = 66, .external_lex_state = 11}, + [4200] = {.lex_state = 66, .external_lex_state = 11}, [4201] = {.lex_state = 66, .external_lex_state = 11}, - [4202] = {.lex_state = 18, .external_lex_state = 11}, - [4203] = {.lex_state = 18, .external_lex_state = 11}, - [4204] = {.lex_state = 66, .external_lex_state = 14}, - [4205] = {.lex_state = 15, .external_lex_state = 16}, + [4202] = {.lex_state = 66, .external_lex_state = 11}, + [4203] = {.lex_state = 66, .external_lex_state = 11}, + [4204] = {.lex_state = 66, .external_lex_state = 15}, + [4205] = {.lex_state = 66, .external_lex_state = 16}, [4206] = {.lex_state = 66, .external_lex_state = 11}, - [4207] = {.lex_state = 66, .external_lex_state = 12}, - [4208] = {.lex_state = 66, .external_lex_state = 12}, - [4209] = {.lex_state = 66, .external_lex_state = 14}, - [4210] = {.lex_state = 68, .external_lex_state = 17}, - [4211] = {.lex_state = 0, .external_lex_state = 18}, - [4212] = {.lex_state = 66, .external_lex_state = 14}, - [4213] = {.lex_state = 66, .external_lex_state = 16}, - [4214] = {.lex_state = 66, .external_lex_state = 16}, - [4215] = {.lex_state = 66, .external_lex_state = 14}, - [4216] = {.lex_state = 15, .external_lex_state = 15}, - [4217] = {.lex_state = 66, .external_lex_state = 14}, - [4218] = {.lex_state = 66, .external_lex_state = 12}, - [4219] = {.lex_state = 66, .external_lex_state = 14}, - [4220] = {.lex_state = 66, .external_lex_state = 16}, - [4221] = {.lex_state = 68, .external_lex_state = 17}, + [4207] = {.lex_state = 66, .external_lex_state = 14}, + [4208] = {.lex_state = 66, .external_lex_state = 14}, + [4209] = {.lex_state = 15, .external_lex_state = 14}, + [4210] = {.lex_state = 66, .external_lex_state = 15}, + [4211] = {.lex_state = 66, .external_lex_state = 11}, + [4212] = {.lex_state = 66, .external_lex_state = 11}, + [4213] = {.lex_state = 66, .external_lex_state = 12}, + [4214] = {.lex_state = 66, .external_lex_state = 11}, + [4215] = {.lex_state = 15, .external_lex_state = 12}, + [4216] = {.lex_state = 66, .external_lex_state = 11}, + [4217] = {.lex_state = 66, .external_lex_state = 11}, + [4218] = {.lex_state = 18, .external_lex_state = 11}, + [4219] = {.lex_state = 66, .external_lex_state = 16}, + [4220] = {.lex_state = 66, .external_lex_state = 14}, + [4221] = {.lex_state = 0, .external_lex_state = 18}, [4222] = {.lex_state = 66, .external_lex_state = 14}, - [4223] = {.lex_state = 66, .external_lex_state = 14}, - [4224] = {.lex_state = 66, .external_lex_state = 12}, - [4225] = {.lex_state = 66, .external_lex_state = 12}, - [4226] = {.lex_state = 66, .external_lex_state = 12}, - [4227] = {.lex_state = 68, .external_lex_state = 17}, - [4228] = {.lex_state = 18, .external_lex_state = 11}, - [4229] = {.lex_state = 66, .external_lex_state = 15}, - [4230] = {.lex_state = 15, .external_lex_state = 16}, - [4231] = {.lex_state = 12, .external_lex_state = 11}, - [4232] = {.lex_state = 66, .external_lex_state = 12}, - [4233] = {.lex_state = 12, .external_lex_state = 11}, - [4234] = {.lex_state = 66, .external_lex_state = 12}, + [4223] = {.lex_state = 0, .external_lex_state = 18}, + [4224] = {.lex_state = 66, .external_lex_state = 16}, + [4225] = {.lex_state = 66, .external_lex_state = 11}, + [4226] = {.lex_state = 66, .external_lex_state = 16}, + [4227] = {.lex_state = 66, .external_lex_state = 14}, + [4228] = {.lex_state = 66, .external_lex_state = 12}, + [4229] = {.lex_state = 66, .external_lex_state = 12}, + [4230] = {.lex_state = 66, .external_lex_state = 16}, + [4231] = {.lex_state = 15, .external_lex_state = 16}, + [4232] = {.lex_state = 66, .external_lex_state = 11}, + [4233] = {.lex_state = 66, .external_lex_state = 12}, + [4234] = {.lex_state = 18, .external_lex_state = 11}, [4235] = {.lex_state = 66, .external_lex_state = 14}, [4236] = {.lex_state = 66, .external_lex_state = 11}, - [4237] = {.lex_state = 66, .external_lex_state = 16}, - [4238] = {.lex_state = 66, .external_lex_state = 11}, - [4239] = {.lex_state = 66, .external_lex_state = 11}, - [4240] = {.lex_state = 66, .external_lex_state = 12}, - [4241] = {.lex_state = 66, .external_lex_state = 12}, - [4242] = {.lex_state = 66, .external_lex_state = 16}, - [4243] = {.lex_state = 66, .external_lex_state = 11}, - [4244] = {.lex_state = 66, .external_lex_state = 15}, - [4245] = {.lex_state = 66, .external_lex_state = 11}, - [4246] = {.lex_state = 66, .external_lex_state = 16}, - [4247] = {.lex_state = 0, .external_lex_state = 18}, - [4248] = {.lex_state = 66, .external_lex_state = 15}, - [4249] = {.lex_state = 66, .external_lex_state = 12}, - [4250] = {.lex_state = 66, .external_lex_state = 16}, - [4251] = {.lex_state = 66, .external_lex_state = 16}, - [4252] = {.lex_state = 66, .external_lex_state = 14}, - [4253] = {.lex_state = 66, .external_lex_state = 11}, - [4254] = {.lex_state = 18, .external_lex_state = 11}, + [4237] = {.lex_state = 66, .external_lex_state = 12}, + [4238] = {.lex_state = 0, .external_lex_state = 18}, + [4239] = {.lex_state = 0, .external_lex_state = 18}, + [4240] = {.lex_state = 0, .external_lex_state = 18}, + [4241] = {.lex_state = 66, .external_lex_state = 11}, + [4242] = {.lex_state = 66, .external_lex_state = 14}, + [4243] = {.lex_state = 66, .external_lex_state = 15}, + [4244] = {.lex_state = 66, .external_lex_state = 12}, + [4245] = {.lex_state = 66, .external_lex_state = 16}, + [4246] = {.lex_state = 67, .external_lex_state = 17}, + [4247] = {.lex_state = 66, .external_lex_state = 12}, + [4248] = {.lex_state = 66, .external_lex_state = 11}, + [4249] = {.lex_state = 66, .external_lex_state = 11}, + [4250] = {.lex_state = 66, .external_lex_state = 12}, + [4251] = {.lex_state = 66, .external_lex_state = 15}, + [4252] = {.lex_state = 66, .external_lex_state = 15}, + [4253] = {.lex_state = 66, .external_lex_state = 14}, + [4254] = {.lex_state = 66, .external_lex_state = 11}, [4255] = {.lex_state = 66, .external_lex_state = 12}, - [4256] = {.lex_state = 66, .external_lex_state = 11}, - [4257] = {.lex_state = 0, .external_lex_state = 18}, - [4258] = {.lex_state = 0, .external_lex_state = 18}, - [4259] = {.lex_state = 0, .external_lex_state = 18}, - [4260] = {.lex_state = 66, .external_lex_state = 14}, + [4256] = {.lex_state = 66, .external_lex_state = 14}, + [4257] = {.lex_state = 66, .external_lex_state = 15}, + [4258] = {.lex_state = 66, .external_lex_state = 14}, + [4259] = {.lex_state = 66, .external_lex_state = 11}, + [4260] = {.lex_state = 66, .external_lex_state = 11}, [4261] = {.lex_state = 66, .external_lex_state = 12}, - [4262] = {.lex_state = 66, .external_lex_state = 14}, - [4263] = {.lex_state = 66, .external_lex_state = 14}, - [4264] = {.lex_state = 66, .external_lex_state = 14}, - [4265] = {.lex_state = 66, .external_lex_state = 11}, - [4266] = {.lex_state = 18, .external_lex_state = 11}, - [4267] = {.lex_state = 66, .external_lex_state = 15}, - [4268] = {.lex_state = 66, .external_lex_state = 14}, - [4269] = {.lex_state = 66, .external_lex_state = 15}, - [4270] = {.lex_state = 66, .external_lex_state = 15}, - [4271] = {.lex_state = 66, .external_lex_state = 15}, - [4272] = {.lex_state = 66, .external_lex_state = 15}, - [4273] = {.lex_state = 66, .external_lex_state = 14}, - [4274] = {.lex_state = 66, .external_lex_state = 15}, - [4275] = {.lex_state = 18, .external_lex_state = 11}, - [4276] = {.lex_state = 66, .external_lex_state = 14}, - [4277] = {.lex_state = 18, .external_lex_state = 11}, - [4278] = {.lex_state = 66, .external_lex_state = 16}, - [4279] = {.lex_state = 66, .external_lex_state = 16}, - [4280] = {.lex_state = 66, .external_lex_state = 14}, - [4281] = {.lex_state = 66, .external_lex_state = 16}, - [4282] = {.lex_state = 66, .external_lex_state = 14}, - [4283] = {.lex_state = 66, .external_lex_state = 11}, + [4262] = {.lex_state = 66, .external_lex_state = 11}, + [4263] = {.lex_state = 66, .external_lex_state = 16}, + [4264] = {.lex_state = 66, .external_lex_state = 16}, + [4265] = {.lex_state = 66, .external_lex_state = 12}, + [4266] = {.lex_state = 66, .external_lex_state = 12}, + [4267] = {.lex_state = 66, .external_lex_state = 14}, + [4268] = {.lex_state = 66, .external_lex_state = 11}, + [4269] = {.lex_state = 66, .external_lex_state = 14}, + [4270] = {.lex_state = 66, .external_lex_state = 12}, + [4271] = {.lex_state = 18, .external_lex_state = 11}, + [4272] = {.lex_state = 66, .external_lex_state = 12}, + [4273] = {.lex_state = 66, .external_lex_state = 15}, + [4274] = {.lex_state = 66, .external_lex_state = 12}, + [4275] = {.lex_state = 66, .external_lex_state = 16}, + [4276] = {.lex_state = 18, .external_lex_state = 11}, + [4277] = {.lex_state = 66, .external_lex_state = 11}, + [4278] = {.lex_state = 66, .external_lex_state = 14}, + [4279] = {.lex_state = 66, .external_lex_state = 14}, + [4280] = {.lex_state = 18, .external_lex_state = 11}, + [4281] = {.lex_state = 18, .external_lex_state = 11}, + [4282] = {.lex_state = 66, .external_lex_state = 12}, + [4283] = {.lex_state = 66, .external_lex_state = 12}, [4284] = {.lex_state = 66, .external_lex_state = 15}, - [4285] = {.lex_state = 66, .external_lex_state = 12}, - [4286] = {.lex_state = 66, .external_lex_state = 11}, + [4285] = {.lex_state = 66, .external_lex_state = 16}, + [4286] = {.lex_state = 66, .external_lex_state = 16}, [4287] = {.lex_state = 66, .external_lex_state = 16}, - [4288] = {.lex_state = 66, .external_lex_state = 14}, - [4289] = {.lex_state = 66, .external_lex_state = 15}, + [4288] = {.lex_state = 67, .external_lex_state = 17}, + [4289] = {.lex_state = 66, .external_lex_state = 11}, [4290] = {.lex_state = 18, .external_lex_state = 11}, - [4291] = {.lex_state = 66, .external_lex_state = 12}, - [4292] = {.lex_state = 66, .external_lex_state = 11}, - [4293] = {.lex_state = 66, .external_lex_state = 15}, - [4294] = {.lex_state = 12, .external_lex_state = 12}, - [4295] = {.lex_state = 66, .external_lex_state = 14}, - [4296] = {.lex_state = 66, .external_lex_state = 11}, - [4297] = {.lex_state = 66, .external_lex_state = 15}, - [4298] = {.lex_state = 66, .external_lex_state = 15}, - [4299] = {.lex_state = 66, .external_lex_state = 15}, - [4300] = {.lex_state = 66, .external_lex_state = 15}, - [4301] = {.lex_state = 66, .external_lex_state = 15}, - [4302] = {.lex_state = 66, .external_lex_state = 14}, - [4303] = {.lex_state = 66, .external_lex_state = 12}, - [4304] = {.lex_state = 15, .external_lex_state = 16}, - [4305] = {.lex_state = 66, .external_lex_state = 16}, - [4306] = {.lex_state = 66, .external_lex_state = 16}, - [4307] = {.lex_state = 66, .external_lex_state = 16}, + [4291] = {.lex_state = 66, .external_lex_state = 15}, + [4292] = {.lex_state = 66, .external_lex_state = 14}, + [4293] = {.lex_state = 66, .external_lex_state = 16}, + [4294] = {.lex_state = 66, .external_lex_state = 15}, + [4295] = {.lex_state = 66, .external_lex_state = 15}, + [4296] = {.lex_state = 15, .external_lex_state = 16}, + [4297] = {.lex_state = 66, .external_lex_state = 12}, + [4298] = {.lex_state = 66, .external_lex_state = 11}, + [4299] = {.lex_state = 66, .external_lex_state = 11}, + [4300] = {.lex_state = 66, .external_lex_state = 16}, + [4301] = {.lex_state = 66, .external_lex_state = 11}, + [4302] = {.lex_state = 66, .external_lex_state = 11}, + [4303] = {.lex_state = 18, .external_lex_state = 11}, + [4304] = {.lex_state = 67, .external_lex_state = 17}, + [4305] = {.lex_state = 66, .external_lex_state = 11}, + [4306] = {.lex_state = 66, .external_lex_state = 15}, + [4307] = {.lex_state = 66, .external_lex_state = 15}, [4308] = {.lex_state = 66, .external_lex_state = 16}, - [4309] = {.lex_state = 66, .external_lex_state = 20}, - [4310] = {.lex_state = 66, .external_lex_state = 14}, - [4311] = {.lex_state = 66, .external_lex_state = 12}, - [4312] = {.lex_state = 15, .external_lex_state = 16}, - [4313] = {.lex_state = 15, .external_lex_state = 11}, - [4314] = {.lex_state = 66, .external_lex_state = 12}, - [4315] = {.lex_state = 18, .external_lex_state = 12}, - [4316] = {.lex_state = 15, .external_lex_state = 16}, - [4317] = {.lex_state = 66, .external_lex_state = 11}, - [4318] = {.lex_state = 66, .external_lex_state = 11}, - [4319] = {.lex_state = 66, .external_lex_state = 20}, - [4320] = {.lex_state = 66, .external_lex_state = 12}, - [4321] = {.lex_state = 66, .external_lex_state = 15}, - [4322] = {.lex_state = 66, .external_lex_state = 20}, - [4323] = {.lex_state = 66, .external_lex_state = 12}, + [4309] = {.lex_state = 66, .external_lex_state = 12}, + [4310] = {.lex_state = 15, .external_lex_state = 15}, + [4311] = {.lex_state = 5, .external_lex_state = 12}, + [4312] = {.lex_state = 66, .external_lex_state = 14}, + [4313] = {.lex_state = 66, .external_lex_state = 11}, + [4314] = {.lex_state = 18, .external_lex_state = 11}, + [4315] = {.lex_state = 18, .external_lex_state = 11}, + [4316] = {.lex_state = 5, .external_lex_state = 12}, + [4317] = {.lex_state = 12, .external_lex_state = 11}, + [4318] = {.lex_state = 66, .external_lex_state = 14}, + [4319] = {.lex_state = 66, .external_lex_state = 12}, + [4320] = {.lex_state = 66, .external_lex_state = 14}, + [4321] = {.lex_state = 66, .external_lex_state = 14}, + [4322] = {.lex_state = 66, .external_lex_state = 12}, + [4323] = {.lex_state = 66, .external_lex_state = 14}, [4324] = {.lex_state = 66, .external_lex_state = 14}, - [4325] = {.lex_state = 66, .external_lex_state = 12}, - [4326] = {.lex_state = 66, .external_lex_state = 12}, - [4327] = {.lex_state = 66, .external_lex_state = 14}, - [4328] = {.lex_state = 3, .external_lex_state = 15}, - [4329] = {.lex_state = 66, .external_lex_state = 14}, - [4330] = {.lex_state = 66, .external_lex_state = 20}, - [4331] = {.lex_state = 66, .external_lex_state = 20}, - [4332] = {.lex_state = 66, .external_lex_state = 14}, - [4333] = {.lex_state = 66, .external_lex_state = 12}, - [4334] = {.lex_state = 66, .external_lex_state = 15}, - [4335] = {.lex_state = 66, .external_lex_state = 12}, - [4336] = {.lex_state = 66, .external_lex_state = 12}, - [4337] = {.lex_state = 66, .external_lex_state = 20}, - [4338] = {.lex_state = 66, .external_lex_state = 11}, - [4339] = {.lex_state = 66, .external_lex_state = 12}, - [4340] = {.lex_state = 66, .external_lex_state = 12}, - [4341] = {.lex_state = 66, .external_lex_state = 20}, - [4342] = {.lex_state = 15, .external_lex_state = 16}, - [4343] = {.lex_state = 66, .external_lex_state = 11}, - [4344] = {.lex_state = 66, .external_lex_state = 12}, - [4345] = {.lex_state = 66, .external_lex_state = 16}, - [4346] = {.lex_state = 66, .external_lex_state = 12}, - [4347] = {.lex_state = 66, .external_lex_state = 12}, - [4348] = {.lex_state = 66, .external_lex_state = 11}, - [4349] = {.lex_state = 66, .external_lex_state = 12}, - [4350] = {.lex_state = 66, .external_lex_state = 20}, - [4351] = {.lex_state = 66, .external_lex_state = 16}, + [4325] = {.lex_state = 66, .external_lex_state = 14}, + [4326] = {.lex_state = 12, .external_lex_state = 11}, + [4327] = {.lex_state = 0, .external_lex_state = 18}, + [4328] = {.lex_state = 66, .external_lex_state = 16}, + [4329] = {.lex_state = 66, .external_lex_state = 11}, + [4330] = {.lex_state = 15, .external_lex_state = 16}, + [4331] = {.lex_state = 66, .external_lex_state = 15}, + [4332] = {.lex_state = 66, .external_lex_state = 15}, + [4333] = {.lex_state = 0, .external_lex_state = 18}, + [4334] = {.lex_state = 66, .external_lex_state = 14}, + [4335] = {.lex_state = 66, .external_lex_state = 15}, + [4336] = {.lex_state = 66, .external_lex_state = 14}, + [4337] = {.lex_state = 66, .external_lex_state = 14}, + [4338] = {.lex_state = 66, .external_lex_state = 14}, + [4339] = {.lex_state = 67, .external_lex_state = 17}, + [4340] = {.lex_state = 66, .external_lex_state = 15}, + [4341] = {.lex_state = 66, .external_lex_state = 14}, + [4342] = {.lex_state = 66, .external_lex_state = 15}, + [4343] = {.lex_state = 66, .external_lex_state = 15}, + [4344] = {.lex_state = 66, .external_lex_state = 15}, + [4345] = {.lex_state = 66, .external_lex_state = 15}, + [4346] = {.lex_state = 66, .external_lex_state = 15}, + [4347] = {.lex_state = 66, .external_lex_state = 15}, + [4348] = {.lex_state = 66, .external_lex_state = 16}, + [4349] = {.lex_state = 66, .external_lex_state = 14}, + [4350] = {.lex_state = 66, .external_lex_state = 16}, + [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 = 11}, - [4356] = {.lex_state = 66, .external_lex_state = 12}, - [4357] = {.lex_state = 66, .external_lex_state = 12}, + [4353] = {.lex_state = 66, .external_lex_state = 15}, + [4354] = {.lex_state = 66, .external_lex_state = 15}, + [4355] = {.lex_state = 0, .external_lex_state = 18}, + [4356] = {.lex_state = 15, .external_lex_state = 11}, + [4357] = {.lex_state = 66, .external_lex_state = 20}, [4358] = {.lex_state = 66, .external_lex_state = 12}, - [4359] = {.lex_state = 66, .external_lex_state = 11}, - [4360] = {.lex_state = 66, .external_lex_state = 12}, - [4361] = {.lex_state = 66, .external_lex_state = 15}, - [4362] = {.lex_state = 66, .external_lex_state = 11}, - [4363] = {.lex_state = 66, .external_lex_state = 12}, + [4359] = {.lex_state = 18, .external_lex_state = 12}, + [4360] = {.lex_state = 15, .external_lex_state = 16}, + [4361] = {.lex_state = 66, .external_lex_state = 11}, + [4362] = {.lex_state = 66, .external_lex_state = 12}, + [4363] = {.lex_state = 66, .external_lex_state = 20}, [4364] = {.lex_state = 66, .external_lex_state = 12}, - [4365] = {.lex_state = 66, .external_lex_state = 12}, - [4366] = {.lex_state = 66, .external_lex_state = 20}, - [4367] = {.lex_state = 66, .external_lex_state = 12}, + [4365] = {.lex_state = 66, .external_lex_state = 16}, + [4366] = {.lex_state = 66, .external_lex_state = 16}, + [4367] = {.lex_state = 66, .external_lex_state = 14}, [4368] = {.lex_state = 66, .external_lex_state = 12}, - [4369] = {.lex_state = 66, .external_lex_state = 12}, - [4370] = {.lex_state = 66, .external_lex_state = 12}, - [4371] = {.lex_state = 18, .external_lex_state = 12}, - [4372] = {.lex_state = 66, .external_lex_state = 12}, - [4373] = {.lex_state = 66, .external_lex_state = 20}, - [4374] = {.lex_state = 66, .external_lex_state = 11}, - [4375] = {.lex_state = 66, .external_lex_state = 14}, - [4376] = {.lex_state = 66, .external_lex_state = 11}, - [4377] = {.lex_state = 66, .external_lex_state = 11}, + [4369] = {.lex_state = 66, .external_lex_state = 14}, + [4370] = {.lex_state = 66, .external_lex_state = 14}, + [4371] = {.lex_state = 66, .external_lex_state = 11}, + [4372] = {.lex_state = 66, .external_lex_state = 14}, + [4373] = {.lex_state = 66, .external_lex_state = 14}, + [4374] = {.lex_state = 15, .external_lex_state = 16}, + [4375] = {.lex_state = 66, .external_lex_state = 11}, + [4376] = {.lex_state = 66, .external_lex_state = 14}, + [4377] = {.lex_state = 66, .external_lex_state = 20}, [4378] = {.lex_state = 66, .external_lex_state = 14}, [4379] = {.lex_state = 66, .external_lex_state = 12}, - [4380] = {.lex_state = 66, .external_lex_state = 12}, - [4381] = {.lex_state = 66, .external_lex_state = 12}, - [4382] = {.lex_state = 66, .external_lex_state = 20}, - [4383] = {.lex_state = 66, .external_lex_state = 15}, - [4384] = {.lex_state = 66, .external_lex_state = 12}, - [4385] = {.lex_state = 66, .external_lex_state = 14}, - [4386] = {.lex_state = 66, .external_lex_state = 12}, - [4387] = {.lex_state = 66, .external_lex_state = 12}, - [4388] = {.lex_state = 66, .external_lex_state = 16}, - [4389] = {.lex_state = 66, .external_lex_state = 12}, - [4390] = {.lex_state = 66, .external_lex_state = 11}, - [4391] = {.lex_state = 66, .external_lex_state = 20}, - [4392] = {.lex_state = 66, .external_lex_state = 14}, - [4393] = {.lex_state = 66, .external_lex_state = 12}, - [4394] = {.lex_state = 66, .external_lex_state = 12}, - [4395] = {.lex_state = 66, .external_lex_state = 11}, - [4396] = {.lex_state = 66, .external_lex_state = 12}, - [4397] = {.lex_state = 66, .external_lex_state = 12}, - [4398] = {.lex_state = 18, .external_lex_state = 12}, - [4399] = {.lex_state = 66, .external_lex_state = 11}, - [4400] = {.lex_state = 66, .external_lex_state = 14}, - [4401] = {.lex_state = 66, .external_lex_state = 16}, + [4380] = {.lex_state = 66, .external_lex_state = 15}, + [4381] = {.lex_state = 66, .external_lex_state = 14}, + [4382] = {.lex_state = 15, .external_lex_state = 16}, + [4383] = {.lex_state = 66, .external_lex_state = 11}, + [4384] = {.lex_state = 15, .external_lex_state = 16}, + [4385] = {.lex_state = 15, .external_lex_state = 16}, + [4386] = {.lex_state = 66, .external_lex_state = 20}, + [4387] = {.lex_state = 66, .external_lex_state = 16}, + [4388] = {.lex_state = 66, .external_lex_state = 15}, + [4389] = {.lex_state = 66, .external_lex_state = 15}, + [4390] = {.lex_state = 66, .external_lex_state = 20}, + [4391] = {.lex_state = 66, .external_lex_state = 12}, + [4392] = {.lex_state = 66, .external_lex_state = 15}, + [4393] = {.lex_state = 66, .external_lex_state = 15}, + [4394] = {.lex_state = 66, .external_lex_state = 14}, + [4395] = {.lex_state = 66, .external_lex_state = 12}, + [4396] = {.lex_state = 66, .external_lex_state = 5}, + [4397] = {.lex_state = 66, .external_lex_state = 11}, + [4398] = {.lex_state = 66, .external_lex_state = 12}, + [4399] = {.lex_state = 66, .external_lex_state = 12}, + [4400] = {.lex_state = 66, .external_lex_state = 20}, + [4401] = {.lex_state = 66, .external_lex_state = 15}, [4402] = {.lex_state = 66, .external_lex_state = 12}, - [4403] = {.lex_state = 66, .external_lex_state = 5}, - [4404] = {.lex_state = 66, .external_lex_state = 14}, - [4405] = {.lex_state = 66, .external_lex_state = 20}, - [4406] = {.lex_state = 66, .external_lex_state = 20}, + [4403] = {.lex_state = 66, .external_lex_state = 20}, + [4404] = {.lex_state = 12, .external_lex_state = 12}, + [4405] = {.lex_state = 66, .external_lex_state = 16}, + [4406] = {.lex_state = 66, .external_lex_state = 14}, [4407] = {.lex_state = 66, .external_lex_state = 12}, - [4408] = {.lex_state = 66, .external_lex_state = 12}, - [4409] = {.lex_state = 66, .external_lex_state = 11}, - [4410] = {.lex_state = 66, .external_lex_state = 11}, - [4411] = {.lex_state = 15, .external_lex_state = 16}, - [4412] = {.lex_state = 66, .external_lex_state = 20}, + [4408] = {.lex_state = 66, .external_lex_state = 20}, + [4409] = {.lex_state = 66, .external_lex_state = 15}, + [4410] = {.lex_state = 66, .external_lex_state = 15}, + [4411] = {.lex_state = 66, .external_lex_state = 20}, + [4412] = {.lex_state = 66, .external_lex_state = 15}, [4413] = {.lex_state = 66, .external_lex_state = 20}, - [4414] = {.lex_state = 66, .external_lex_state = 12}, - [4415] = {.lex_state = 66, .external_lex_state = 16}, - [4416] = {.lex_state = 66, .external_lex_state = 20}, - [4417] = {.lex_state = 66, .external_lex_state = 11}, - [4418] = {.lex_state = 66, .external_lex_state = 20}, - [4419] = {.lex_state = 66, .external_lex_state = 12}, - [4420] = {.lex_state = 66, .external_lex_state = 20}, - [4421] = {.lex_state = 66, .external_lex_state = 15}, - [4422] = {.lex_state = 12, .external_lex_state = 12}, + [4414] = {.lex_state = 66, .external_lex_state = 15}, + [4415] = {.lex_state = 66, .external_lex_state = 12}, + [4416] = {.lex_state = 66, .external_lex_state = 15}, + [4417] = {.lex_state = 66, .external_lex_state = 12}, + [4418] = {.lex_state = 66, .external_lex_state = 12}, + [4419] = {.lex_state = 66, .external_lex_state = 15}, + [4420] = {.lex_state = 66, .external_lex_state = 15}, + [4421] = {.lex_state = 66, .external_lex_state = 12}, + [4422] = {.lex_state = 66, .external_lex_state = 12}, [4423] = {.lex_state = 66, .external_lex_state = 11}, - [4424] = {.lex_state = 66, .external_lex_state = 16}, - [4425] = {.lex_state = 66, .external_lex_state = 20}, - [4426] = {.lex_state = 3, .external_lex_state = 15}, - [4427] = {.lex_state = 66, .external_lex_state = 11}, - [4428] = {.lex_state = 66, .external_lex_state = 11}, - [4429] = {.lex_state = 15, .external_lex_state = 16}, - [4430] = {.lex_state = 15, .external_lex_state = 16}, - [4431] = {.lex_state = 66, .external_lex_state = 16}, - [4432] = {.lex_state = 15, .external_lex_state = 16}, + [4424] = {.lex_state = 66, .external_lex_state = 12}, + [4425] = {.lex_state = 66, .external_lex_state = 15}, + [4426] = {.lex_state = 66, .external_lex_state = 11}, + [4427] = {.lex_state = 66, .external_lex_state = 12}, + [4428] = {.lex_state = 66, .external_lex_state = 12}, + [4429] = {.lex_state = 66, .external_lex_state = 12}, + [4430] = {.lex_state = 66, .external_lex_state = 12}, + [4431] = {.lex_state = 66, .external_lex_state = 12}, + [4432] = {.lex_state = 66, .external_lex_state = 12}, [4433] = {.lex_state = 66, .external_lex_state = 14}, - [4434] = {.lex_state = 66, .external_lex_state = 20}, - [4435] = {.lex_state = 66, .external_lex_state = 12}, - [4436] = {.lex_state = 3, .external_lex_state = 15}, - [4437] = {.lex_state = 66, .external_lex_state = 11}, - [4438] = {.lex_state = 66, .external_lex_state = 15}, + [4434] = {.lex_state = 66, .external_lex_state = 12}, + [4435] = {.lex_state = 66, .external_lex_state = 11}, + [4436] = {.lex_state = 66, .external_lex_state = 20}, + [4437] = {.lex_state = 66, .external_lex_state = 12}, + [4438] = {.lex_state = 66, .external_lex_state = 12}, [4439] = {.lex_state = 66, .external_lex_state = 20}, - [4440] = {.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 = 20}, - [4444] = {.lex_state = 66, .external_lex_state = 14}, - [4445] = {.lex_state = 66, .external_lex_state = 11}, - [4446] = {.lex_state = 66, .external_lex_state = 15}, - [4447] = {.lex_state = 66, .external_lex_state = 20}, - [4448] = {.lex_state = 66, .external_lex_state = 12}, - [4449] = {.lex_state = 66, .external_lex_state = 20}, - [4450] = {.lex_state = 66, .external_lex_state = 20}, - [4451] = {.lex_state = 66, .external_lex_state = 11}, - [4452] = {.lex_state = 66, .external_lex_state = 15}, - [4453] = {.lex_state = 66, .external_lex_state = 15}, - [4454] = {.lex_state = 66, .external_lex_state = 15}, - [4455] = {.lex_state = 66, .external_lex_state = 12}, - [4456] = {.lex_state = 66, .external_lex_state = 12}, + [4440] = {.lex_state = 18, .external_lex_state = 12}, + [4441] = {.lex_state = 66, .external_lex_state = 20}, + [4442] = {.lex_state = 66, .external_lex_state = 12}, + [4443] = {.lex_state = 66, .external_lex_state = 15}, + [4444] = {.lex_state = 66, .external_lex_state = 12}, + [4445] = {.lex_state = 66, .external_lex_state = 12}, + [4446] = {.lex_state = 66, .external_lex_state = 12}, + [4447] = {.lex_state = 66, .external_lex_state = 11}, + [4448] = {.lex_state = 66, .external_lex_state = 11}, + [4449] = {.lex_state = 66, .external_lex_state = 12}, + [4450] = {.lex_state = 66, .external_lex_state = 11}, + [4451] = {.lex_state = 66, .external_lex_state = 12}, + [4452] = {.lex_state = 66, .external_lex_state = 12}, + [4453] = {.lex_state = 66, .external_lex_state = 12}, + [4454] = {.lex_state = 66, .external_lex_state = 12}, + [4455] = {.lex_state = 66, .external_lex_state = 11}, + [4456] = {.lex_state = 66, .external_lex_state = 20}, [4457] = {.lex_state = 66, .external_lex_state = 12}, - [4458] = {.lex_state = 66, .external_lex_state = 12}, - [4459] = {.lex_state = 66, .external_lex_state = 12}, - [4460] = {.lex_state = 66, .external_lex_state = 12}, - [4461] = {.lex_state = 66, .external_lex_state = 14}, - [4462] = {.lex_state = 66, .external_lex_state = 12}, - [4463] = {.lex_state = 15, .external_lex_state = 16}, - [4464] = {.lex_state = 66, .external_lex_state = 11}, - [4465] = {.lex_state = 66, .external_lex_state = 16}, - [4466] = {.lex_state = 66, .external_lex_state = 15}, - [4467] = {.lex_state = 66, .external_lex_state = 16}, - [4468] = {.lex_state = 66, .external_lex_state = 15}, - [4469] = {.lex_state = 66, .external_lex_state = 15}, - [4470] = {.lex_state = 66, .external_lex_state = 15}, - [4471] = {.lex_state = 66, .external_lex_state = 14}, - [4472] = {.lex_state = 66, .external_lex_state = 12}, - [4473] = {.lex_state = 66, .external_lex_state = 12}, - [4474] = {.lex_state = 66, .external_lex_state = 14}, - [4475] = {.lex_state = 15, .external_lex_state = 11}, - [4476] = {.lex_state = 15, .external_lex_state = 16}, - [4477] = {.lex_state = 66, .external_lex_state = 15}, - [4478] = {.lex_state = 66, .external_lex_state = 12}, - [4479] = {.lex_state = 66, .external_lex_state = 14}, - [4480] = {.lex_state = 66, .external_lex_state = 16}, - [4481] = {.lex_state = 66, .external_lex_state = 14}, - [4482] = {.lex_state = 66, .external_lex_state = 11}, - [4483] = {.lex_state = 66, .external_lex_state = 16}, - [4484] = {.lex_state = 66, .external_lex_state = 16}, - [4485] = {.lex_state = 66, .external_lex_state = 16}, - [4486] = {.lex_state = 66, .external_lex_state = 14}, - [4487] = {.lex_state = 66, .external_lex_state = 5}, - [4488] = {.lex_state = 66, .external_lex_state = 14}, - [4489] = {.lex_state = 66, .external_lex_state = 16}, - [4490] = {.lex_state = 66, .external_lex_state = 16}, - [4491] = {.lex_state = 66, .external_lex_state = 14}, + [4458] = {.lex_state = 3, .external_lex_state = 15}, + [4459] = {.lex_state = 66, .external_lex_state = 20}, + [4460] = {.lex_state = 66, .external_lex_state = 15}, + [4461] = {.lex_state = 66, .external_lex_state = 12}, + [4462] = {.lex_state = 66, .external_lex_state = 11}, + [4463] = {.lex_state = 66, .external_lex_state = 12}, + [4464] = {.lex_state = 66, .external_lex_state = 12}, + [4465] = {.lex_state = 66, .external_lex_state = 20}, + [4466] = {.lex_state = 66, .external_lex_state = 20}, + [4467] = {.lex_state = 66, .external_lex_state = 12}, + [4468] = {.lex_state = 66, .external_lex_state = 16}, + [4469] = {.lex_state = 66, .external_lex_state = 20}, + [4470] = {.lex_state = 3, .external_lex_state = 15}, + [4471] = {.lex_state = 66, .external_lex_state = 12}, + [4472] = {.lex_state = 66, .external_lex_state = 20}, + [4473] = {.lex_state = 15, .external_lex_state = 16}, + [4474] = {.lex_state = 66, .external_lex_state = 20}, + [4475] = {.lex_state = 12, .external_lex_state = 12}, + [4476] = {.lex_state = 66, .external_lex_state = 16}, + [4477] = {.lex_state = 66, .external_lex_state = 20}, + [4478] = {.lex_state = 66, .external_lex_state = 16}, + [4479] = {.lex_state = 66, .external_lex_state = 11}, + [4480] = {.lex_state = 66, .external_lex_state = 15}, + [4481] = {.lex_state = 66, .external_lex_state = 11}, + [4482] = {.lex_state = 66, .external_lex_state = 12}, + [4483] = {.lex_state = 66, .external_lex_state = 12}, + [4484] = {.lex_state = 66, .external_lex_state = 14}, + [4485] = {.lex_state = 66, .external_lex_state = 14}, + [4486] = {.lex_state = 66, .external_lex_state = 12}, + [4487] = {.lex_state = 66, .external_lex_state = 11}, + [4488] = {.lex_state = 66, .external_lex_state = 20}, + [4489] = {.lex_state = 18, .external_lex_state = 12}, + [4490] = {.lex_state = 66, .external_lex_state = 11}, + [4491] = {.lex_state = 66, .external_lex_state = 16}, [4492] = {.lex_state = 66, .external_lex_state = 11}, - [4493] = {.lex_state = 66, .external_lex_state = 15}, - [4494] = {.lex_state = 66, .external_lex_state = 15}, - [4495] = {.lex_state = 66, .external_lex_state = 16}, - [4496] = {.lex_state = 66, .external_lex_state = 13}, - [4497] = {.lex_state = 66, .external_lex_state = 16}, - [4498] = {.lex_state = 66, .external_lex_state = 15}, - [4499] = {.lex_state = 66, .external_lex_state = 14}, - [4500] = {.lex_state = 18, .external_lex_state = 12}, - [4501] = {.lex_state = 66, .external_lex_state = 11}, - [4502] = {.lex_state = 18, .external_lex_state = 12}, - [4503] = {.lex_state = 66, .external_lex_state = 21}, - [4504] = {.lex_state = 66, .external_lex_state = 15}, - [4505] = {.lex_state = 66, .external_lex_state = 15}, - [4506] = {.lex_state = 66, .external_lex_state = 14}, - [4507] = {.lex_state = 66, .external_lex_state = 11}, - [4508] = {.lex_state = 66, .external_lex_state = 16}, - [4509] = {.lex_state = 66, .external_lex_state = 21}, - [4510] = {.lex_state = 66, .external_lex_state = 11}, - [4511] = {.lex_state = 66, .external_lex_state = 5}, - [4512] = {.lex_state = 66, .external_lex_state = 14}, + [4493] = {.lex_state = 66, .external_lex_state = 14}, + [4494] = {.lex_state = 66, .external_lex_state = 11}, + [4495] = {.lex_state = 66, .external_lex_state = 20}, + [4496] = {.lex_state = 66, .external_lex_state = 16}, + [4497] = {.lex_state = 66, .external_lex_state = 20}, + [4498] = {.lex_state = 66, .external_lex_state = 11}, + [4499] = {.lex_state = 15, .external_lex_state = 16}, + [4500] = {.lex_state = 66, .external_lex_state = 15}, + [4501] = {.lex_state = 66, .external_lex_state = 15}, + [4502] = {.lex_state = 66, .external_lex_state = 11}, + [4503] = {.lex_state = 66, .external_lex_state = 11}, + [4504] = {.lex_state = 66, .external_lex_state = 16}, + [4505] = {.lex_state = 15, .external_lex_state = 16}, + [4506] = {.lex_state = 66, .external_lex_state = 16}, + [4507] = {.lex_state = 15, .external_lex_state = 16}, + [4508] = {.lex_state = 66, .external_lex_state = 12}, + [4509] = {.lex_state = 66, .external_lex_state = 12}, + [4510] = {.lex_state = 66, .external_lex_state = 12}, + [4511] = {.lex_state = 66, .external_lex_state = 14}, + [4512] = {.lex_state = 66, .external_lex_state = 20}, [4513] = {.lex_state = 66, .external_lex_state = 11}, [4514] = {.lex_state = 66, .external_lex_state = 14}, - [4515] = {.lex_state = 66, .external_lex_state = 15}, - [4516] = {.lex_state = 66, .external_lex_state = 16}, + [4515] = {.lex_state = 66, .external_lex_state = 20}, + [4516] = {.lex_state = 66, .external_lex_state = 12}, [4517] = {.lex_state = 66, .external_lex_state = 14}, - [4518] = {.lex_state = 66, .external_lex_state = 11}, - [4519] = {.lex_state = 66, .external_lex_state = 5}, - [4520] = {.lex_state = 66, .external_lex_state = 2}, - [4521] = {.lex_state = 66, .external_lex_state = 15}, - [4522] = {.lex_state = 18, .external_lex_state = 12}, - [4523] = {.lex_state = 66, .external_lex_state = 11}, - [4524] = {.lex_state = 66, .external_lex_state = 15}, - [4525] = {.lex_state = 66, .external_lex_state = 13}, - [4526] = {.lex_state = 66, .external_lex_state = 11}, - [4527] = {.lex_state = 18, .external_lex_state = 12}, - [4528] = {.lex_state = 66, .external_lex_state = 13}, - [4529] = {.lex_state = 66, .external_lex_state = 16}, - [4530] = {.lex_state = 66, .external_lex_state = 11}, - [4531] = {.lex_state = 66, .external_lex_state = 14}, - [4532] = {.lex_state = 66, .external_lex_state = 15}, - [4533] = {.lex_state = 66, .external_lex_state = 14}, - [4534] = {.lex_state = 66, .external_lex_state = 12}, - [4535] = {.lex_state = 66, .external_lex_state = 16}, - [4536] = {.lex_state = 66, .external_lex_state = 14}, - [4537] = {.lex_state = 12, .external_lex_state = 12}, + [4518] = {.lex_state = 66, .external_lex_state = 12}, + [4519] = {.lex_state = 66, .external_lex_state = 12}, + [4520] = {.lex_state = 66, .external_lex_state = 11}, + [4521] = {.lex_state = 66, .external_lex_state = 16}, + [4522] = {.lex_state = 66, .external_lex_state = 12}, + [4523] = {.lex_state = 66, .external_lex_state = 12}, + [4524] = {.lex_state = 66, .external_lex_state = 12}, + [4525] = {.lex_state = 66, .external_lex_state = 12}, + [4526] = {.lex_state = 66, .external_lex_state = 16}, + [4527] = {.lex_state = 66, .external_lex_state = 15}, + [4528] = {.lex_state = 66, .external_lex_state = 11}, + [4529] = {.lex_state = 66, .external_lex_state = 11}, + [4530] = {.lex_state = 66, .external_lex_state = 12}, + [4531] = {.lex_state = 66, .external_lex_state = 11}, + [4532] = {.lex_state = 66, .external_lex_state = 12}, + [4533] = {.lex_state = 66, .external_lex_state = 12}, + [4534] = {.lex_state = 3, .external_lex_state = 15}, + [4535] = {.lex_state = 15, .external_lex_state = 16}, + [4536] = {.lex_state = 66, .external_lex_state = 12}, + [4537] = {.lex_state = 66, .external_lex_state = 12}, [4538] = {.lex_state = 66, .external_lex_state = 14}, - [4539] = {.lex_state = 66, .external_lex_state = 21}, + [4539] = {.lex_state = 15, .external_lex_state = 11}, [4540] = {.lex_state = 66, .external_lex_state = 15}, - [4541] = {.lex_state = 66, .external_lex_state = 14}, - [4542] = {.lex_state = 66, .external_lex_state = 21}, - [4543] = {.lex_state = 66, .external_lex_state = 15}, - [4544] = {.lex_state = 66, .external_lex_state = 14}, + [4541] = {.lex_state = 66, .external_lex_state = 12}, + [4542] = {.lex_state = 66, .external_lex_state = 20}, + [4543] = {.lex_state = 66, .external_lex_state = 14}, + [4544] = {.lex_state = 66, .external_lex_state = 16}, [4545] = {.lex_state = 66, .external_lex_state = 15}, - [4546] = {.lex_state = 66, .external_lex_state = 16}, - [4547] = {.lex_state = 66, .external_lex_state = 14}, - [4548] = {.lex_state = 66, .external_lex_state = 12}, - [4549] = {.lex_state = 66, .external_lex_state = 14}, - [4550] = {.lex_state = 66, .external_lex_state = 15}, - [4551] = {.lex_state = 66, .external_lex_state = 14}, - [4552] = {.lex_state = 66, .external_lex_state = 12}, + [4546] = {.lex_state = 66, .external_lex_state = 14}, + [4547] = {.lex_state = 18, .external_lex_state = 12}, + [4548] = {.lex_state = 66, .external_lex_state = 16}, + [4549] = {.lex_state = 66, .external_lex_state = 21}, + [4550] = {.lex_state = 66, .external_lex_state = 16}, + [4551] = {.lex_state = 66, .external_lex_state = 5}, + [4552] = {.lex_state = 66, .external_lex_state = 14}, [4553] = {.lex_state = 66, .external_lex_state = 14}, - [4554] = {.lex_state = 66, .external_lex_state = 15}, - [4555] = {.lex_state = 66, .external_lex_state = 16}, - [4556] = {.lex_state = 66, .external_lex_state = 16}, - [4557] = {.lex_state = 66, .external_lex_state = 16}, + [4554] = {.lex_state = 66, .external_lex_state = 16}, + [4555] = {.lex_state = 66, .external_lex_state = 11}, + [4556] = {.lex_state = 66, .external_lex_state = 14}, + [4557] = {.lex_state = 66, .external_lex_state = 14}, [4558] = {.lex_state = 66, .external_lex_state = 14}, - [4559] = {.lex_state = 66, .external_lex_state = 14}, - [4560] = {.lex_state = 66, .external_lex_state = 16}, - [4561] = {.lex_state = 18, .external_lex_state = 12}, - [4562] = {.lex_state = 66, .external_lex_state = 21}, - [4563] = {.lex_state = 66, .external_lex_state = 14}, - [4564] = {.lex_state = 66, .external_lex_state = 11}, - [4565] = {.lex_state = 66, .external_lex_state = 14}, - [4566] = {.lex_state = 18, .external_lex_state = 12}, - [4567] = {.lex_state = 66, .external_lex_state = 11}, + [4559] = {.lex_state = 66, .external_lex_state = 15}, + [4560] = {.lex_state = 66, .external_lex_state = 15}, + [4561] = {.lex_state = 66, .external_lex_state = 14}, + [4562] = {.lex_state = 66, .external_lex_state = 14}, + [4563] = {.lex_state = 66, .external_lex_state = 15}, + [4564] = {.lex_state = 66, .external_lex_state = 14}, + [4565] = {.lex_state = 66, .external_lex_state = 16}, + [4566] = {.lex_state = 66, .external_lex_state = 15}, + [4567] = {.lex_state = 66, .external_lex_state = 12}, [4568] = {.lex_state = 66, .external_lex_state = 14}, [4569] = {.lex_state = 66, .external_lex_state = 16}, - [4570] = {.lex_state = 66, .external_lex_state = 16}, - [4571] = {.lex_state = 66, .external_lex_state = 15}, - [4572] = {.lex_state = 66, .external_lex_state = 16}, - [4573] = {.lex_state = 66, .external_lex_state = 12}, - [4574] = {.lex_state = 66, .external_lex_state = 11}, + [4570] = {.lex_state = 66, .external_lex_state = 14}, + [4571] = {.lex_state = 66, .external_lex_state = 12}, + [4572] = {.lex_state = 66, .external_lex_state = 14}, + [4573] = {.lex_state = 66, .external_lex_state = 14}, + [4574] = {.lex_state = 66, .external_lex_state = 16}, [4575] = {.lex_state = 66, .external_lex_state = 12}, - [4576] = {.lex_state = 66, .external_lex_state = 14}, - [4577] = {.lex_state = 66, .external_lex_state = 12}, - [4578] = {.lex_state = 66, .external_lex_state = 16}, - [4579] = {.lex_state = 66, .external_lex_state = 14}, - [4580] = {.lex_state = 66, .external_lex_state = 15}, + [4576] = {.lex_state = 66, .external_lex_state = 11}, + [4577] = {.lex_state = 66, .external_lex_state = 16}, + [4578] = {.lex_state = 66, .external_lex_state = 2}, + [4579] = {.lex_state = 66, .external_lex_state = 16}, + [4580] = {.lex_state = 66, .external_lex_state = 14}, [4581] = {.lex_state = 66, .external_lex_state = 14}, - [4582] = {.lex_state = 66, .external_lex_state = 16}, - [4583] = {.lex_state = 66, .external_lex_state = 15}, - [4584] = {.lex_state = 66, .external_lex_state = 11}, - [4585] = {.lex_state = 66, .external_lex_state = 21}, - [4586] = {.lex_state = 66, .external_lex_state = 21}, - [4587] = {.lex_state = 66, .external_lex_state = 11}, - [4588] = {.lex_state = 66, .external_lex_state = 16}, - [4589] = {.lex_state = 66, .external_lex_state = 14}, - [4590] = {.lex_state = 66, .external_lex_state = 16}, - [4591] = {.lex_state = 66, .external_lex_state = 14}, - [4592] = {.lex_state = 66, .external_lex_state = 12}, + [4582] = {.lex_state = 66, .external_lex_state = 14}, + [4583] = {.lex_state = 66, .external_lex_state = 12}, + [4584] = {.lex_state = 66, .external_lex_state = 12}, + [4585] = {.lex_state = 66, .external_lex_state = 16}, + [4586] = {.lex_state = 66, .external_lex_state = 12}, + [4587] = {.lex_state = 66, .external_lex_state = 16}, + [4588] = {.lex_state = 18, .external_lex_state = 12}, + [4589] = {.lex_state = 66, .external_lex_state = 12}, + [4590] = {.lex_state = 66, .external_lex_state = 11}, + [4591] = {.lex_state = 66, .external_lex_state = 16}, + [4592] = {.lex_state = 66, .external_lex_state = 16}, [4593] = {.lex_state = 66, .external_lex_state = 16}, - [4594] = {.lex_state = 66, .external_lex_state = 15}, - [4595] = {.lex_state = 66, .external_lex_state = 12}, - [4596] = {.lex_state = 66, .external_lex_state = 11}, + [4594] = {.lex_state = 66, .external_lex_state = 11}, + [4595] = {.lex_state = 66, .external_lex_state = 16}, + [4596] = {.lex_state = 66, .external_lex_state = 15}, [4597] = {.lex_state = 66, .external_lex_state = 15}, - [4598] = {.lex_state = 66, .external_lex_state = 5}, - [4599] = {.lex_state = 66, .external_lex_state = 14}, + [4598] = {.lex_state = 66, .external_lex_state = 12}, + [4599] = {.lex_state = 66, .external_lex_state = 2}, [4600] = {.lex_state = 66, .external_lex_state = 14}, - [4601] = {.lex_state = 66, .external_lex_state = 15}, - [4602] = {.lex_state = 66, .external_lex_state = 14}, - [4603] = {.lex_state = 66, .external_lex_state = 16}, - [4604] = {.lex_state = 66, .external_lex_state = 12}, - [4605] = {.lex_state = 66, .external_lex_state = 14}, - [4606] = {.lex_state = 66, .external_lex_state = 16}, - [4607] = {.lex_state = 66, .external_lex_state = 2}, - [4608] = {.lex_state = 18, .external_lex_state = 12}, - [4609] = {.lex_state = 66, .external_lex_state = 5}, - [4610] = {.lex_state = 66, .external_lex_state = 16}, - [4611] = {.lex_state = 66, .external_lex_state = 12}, - [4612] = {.lex_state = 66, .external_lex_state = 12}, - [4613] = {.lex_state = 66, .external_lex_state = 12}, - [4614] = {.lex_state = 66, .external_lex_state = 15}, - [4615] = {.lex_state = 66, .external_lex_state = 13}, - [4616] = {.lex_state = 66, .external_lex_state = 12}, - [4617] = {.lex_state = 66, .external_lex_state = 16}, - [4618] = {.lex_state = 66, .external_lex_state = 21}, - [4619] = {.lex_state = 66, .external_lex_state = 14}, - [4620] = {.lex_state = 66, .external_lex_state = 16}, - [4621] = {.lex_state = 66, .external_lex_state = 16}, + [4601] = {.lex_state = 18, .external_lex_state = 12}, + [4602] = {.lex_state = 66, .external_lex_state = 21}, + [4603] = {.lex_state = 66, .external_lex_state = 14}, + [4604] = {.lex_state = 18, .external_lex_state = 12}, + [4605] = {.lex_state = 66, .external_lex_state = 16}, + [4606] = {.lex_state = 66, .external_lex_state = 11}, + [4607] = {.lex_state = 66, .external_lex_state = 16}, + [4608] = {.lex_state = 66, .external_lex_state = 14}, + [4609] = {.lex_state = 66, .external_lex_state = 14}, + [4610] = {.lex_state = 66, .external_lex_state = 14}, + [4611] = {.lex_state = 66, .external_lex_state = 16}, + [4612] = {.lex_state = 66, .external_lex_state = 14}, + [4613] = {.lex_state = 66, .external_lex_state = 16}, + [4614] = {.lex_state = 66, .external_lex_state = 16}, + [4615] = {.lex_state = 66, .external_lex_state = 15}, + [4616] = {.lex_state = 66, .external_lex_state = 16}, + [4617] = {.lex_state = 66, .external_lex_state = 14}, + [4618] = {.lex_state = 66, .external_lex_state = 13}, + [4619] = {.lex_state = 66, .external_lex_state = 12}, + [4620] = {.lex_state = 66, .external_lex_state = 11}, + [4621] = {.lex_state = 66, .external_lex_state = 11}, [4622] = {.lex_state = 66, .external_lex_state = 16}, - [4623] = {.lex_state = 66, .external_lex_state = 12}, + [4623] = {.lex_state = 66, .external_lex_state = 16}, [4624] = {.lex_state = 66, .external_lex_state = 14}, - [4625] = {.lex_state = 66, .external_lex_state = 14}, - [4626] = {.lex_state = 66, .external_lex_state = 12}, - [4627] = {.lex_state = 66, .external_lex_state = 13}, + [4625] = {.lex_state = 66, .external_lex_state = 5}, + [4626] = {.lex_state = 66, .external_lex_state = 16}, + [4627] = {.lex_state = 66, .external_lex_state = 12}, [4628] = {.lex_state = 66, .external_lex_state = 15}, - [4629] = {.lex_state = 66, .external_lex_state = 5}, - [4630] = {.lex_state = 66, .external_lex_state = 14}, - [4631] = {.lex_state = 66, .external_lex_state = 14}, - [4632] = {.lex_state = 66, .external_lex_state = 12}, - [4633] = {.lex_state = 66, .external_lex_state = 15}, + [4629] = {.lex_state = 66, .external_lex_state = 21}, + [4630] = {.lex_state = 66, .external_lex_state = 5}, + [4631] = {.lex_state = 66, .external_lex_state = 21}, + [4632] = {.lex_state = 66, .external_lex_state = 15}, + [4633] = {.lex_state = 66, .external_lex_state = 14}, [4634] = {.lex_state = 66, .external_lex_state = 14}, - [4635] = {.lex_state = 66, .external_lex_state = 21}, + [4635] = {.lex_state = 66, .external_lex_state = 12}, [4636] = {.lex_state = 66, .external_lex_state = 12}, - [4637] = {.lex_state = 66, .external_lex_state = 12}, - [4638] = {.lex_state = 66, .external_lex_state = 11}, - [4639] = {.lex_state = 66, .external_lex_state = 15}, - [4640] = {.lex_state = 66, .external_lex_state = 14}, - [4641] = {.lex_state = 66, .external_lex_state = 15}, - [4642] = {.lex_state = 66, .external_lex_state = 15}, - [4643] = {.lex_state = 66, .external_lex_state = 14}, - [4644] = {.lex_state = 66, .external_lex_state = 16}, + [4637] = {.lex_state = 66, .external_lex_state = 15}, + [4638] = {.lex_state = 66, .external_lex_state = 14}, + [4639] = {.lex_state = 66, .external_lex_state = 13}, + [4640] = {.lex_state = 66, .external_lex_state = 11}, + [4641] = {.lex_state = 66, .external_lex_state = 21}, + [4642] = {.lex_state = 66, .external_lex_state = 11}, + [4643] = {.lex_state = 66, .external_lex_state = 11}, + [4644] = {.lex_state = 66, .external_lex_state = 11}, [4645] = {.lex_state = 66, .external_lex_state = 11}, - [4646] = {.lex_state = 66, .external_lex_state = 16}, - [4647] = {.lex_state = 66, .external_lex_state = 12}, - [4648] = {.lex_state = 66, .external_lex_state = 14}, - [4649] = {.lex_state = 66, .external_lex_state = 14}, - [4650] = {.lex_state = 66, .external_lex_state = 14}, - [4651] = {.lex_state = 66, .external_lex_state = 16}, - [4652] = {.lex_state = 66, .external_lex_state = 15}, - [4653] = {.lex_state = 66, .external_lex_state = 12}, - [4654] = {.lex_state = 66, .external_lex_state = 15}, - [4655] = {.lex_state = 66, .external_lex_state = 12}, + [4646] = {.lex_state = 66, .external_lex_state = 11}, + [4647] = {.lex_state = 66, .external_lex_state = 15}, + [4648] = {.lex_state = 66, .external_lex_state = 15}, + [4649] = {.lex_state = 66, .external_lex_state = 12}, + [4650] = {.lex_state = 66, .external_lex_state = 12}, + [4651] = {.lex_state = 66, .external_lex_state = 12}, + [4652] = {.lex_state = 66, .external_lex_state = 12}, + [4653] = {.lex_state = 18, .external_lex_state = 12}, + [4654] = {.lex_state = 66, .external_lex_state = 12}, + [4655] = {.lex_state = 66, .external_lex_state = 14}, [4656] = {.lex_state = 66, .external_lex_state = 16}, - [4657] = {.lex_state = 16, .external_lex_state = 19}, - [4658] = {.lex_state = 66, .external_lex_state = 11}, - [4659] = {.lex_state = 66, .external_lex_state = 11}, - [4660] = {.lex_state = 66, .external_lex_state = 11}, - [4661] = {.lex_state = 66, .external_lex_state = 11}, + [4657] = {.lex_state = 66, .external_lex_state = 13}, + [4658] = {.lex_state = 66, .external_lex_state = 12}, + [4659] = {.lex_state = 66, .external_lex_state = 15}, + [4660] = {.lex_state = 66, .external_lex_state = 16}, + [4661] = {.lex_state = 66, .external_lex_state = 16}, [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 = 15}, + [4663] = {.lex_state = 66, .external_lex_state = 16}, + [4664] = {.lex_state = 66, .external_lex_state = 21}, + [4665] = {.lex_state = 66, .external_lex_state = 14}, [4666] = {.lex_state = 66, .external_lex_state = 11}, - [4667] = {.lex_state = 66, .external_lex_state = 11}, - [4668] = {.lex_state = 66, .external_lex_state = 20}, - [4669] = {.lex_state = 66, .external_lex_state = 12}, - [4670] = {.lex_state = 66, .external_lex_state = 11}, - [4671] = {.lex_state = 66, .external_lex_state = 12}, - [4672] = {.lex_state = 66, .external_lex_state = 14}, - [4673] = {.lex_state = 66, .external_lex_state = 15}, - [4674] = {.lex_state = 66, .external_lex_state = 15}, - [4675] = {.lex_state = 66, .external_lex_state = 16}, + [4667] = {.lex_state = 66, .external_lex_state = 5}, + [4668] = {.lex_state = 66, .external_lex_state = 15}, + [4669] = {.lex_state = 66, .external_lex_state = 11}, + [4670] = {.lex_state = 66, .external_lex_state = 14}, + [4671] = {.lex_state = 66, .external_lex_state = 14}, + [4672] = {.lex_state = 66, .external_lex_state = 21}, + [4673] = {.lex_state = 66, .external_lex_state = 13}, + [4674] = {.lex_state = 66, .external_lex_state = 16}, + [4675] = {.lex_state = 66, .external_lex_state = 15}, [4676] = {.lex_state = 66, .external_lex_state = 14}, - [4677] = {.lex_state = 66, .external_lex_state = 16}, - [4678] = {.lex_state = 66, .external_lex_state = 15}, - [4679] = {.lex_state = 66, .external_lex_state = 15}, - [4680] = {.lex_state = 66, .external_lex_state = 12}, - [4681] = {.lex_state = 66, .external_lex_state = 11}, - [4682] = {.lex_state = 66, .external_lex_state = 11}, - [4683] = {.lex_state = 66, .external_lex_state = 11}, - [4684] = {.lex_state = 66, .external_lex_state = 11}, - [4685] = {.lex_state = 66, .external_lex_state = 11}, - [4686] = {.lex_state = 66, .external_lex_state = 11}, - [4687] = {.lex_state = 66, .external_lex_state = 11}, - [4688] = {.lex_state = 66, .external_lex_state = 11}, - [4689] = {.lex_state = 66, .external_lex_state = 11}, - [4690] = {.lex_state = 66, .external_lex_state = 11}, - [4691] = {.lex_state = 66, .external_lex_state = 11}, - [4692] = {.lex_state = 66, .external_lex_state = 11}, - [4693] = {.lex_state = 66, .external_lex_state = 11}, + [4677] = {.lex_state = 66, .external_lex_state = 14}, + [4678] = {.lex_state = 18, .external_lex_state = 12}, + [4679] = {.lex_state = 66, .external_lex_state = 13}, + [4680] = {.lex_state = 66, .external_lex_state = 15}, + [4681] = {.lex_state = 66, .external_lex_state = 14}, + [4682] = {.lex_state = 66, .external_lex_state = 14}, + [4683] = {.lex_state = 66, .external_lex_state = 14}, + [4684] = {.lex_state = 66, .external_lex_state = 21}, + [4685] = {.lex_state = 66, .external_lex_state = 14}, + [4686] = {.lex_state = 66, .external_lex_state = 14}, + [4687] = {.lex_state = 66, .external_lex_state = 14}, + [4688] = {.lex_state = 66, .external_lex_state = 14}, + [4689] = {.lex_state = 66, .external_lex_state = 16}, + [4690] = {.lex_state = 66, .external_lex_state = 16}, + [4691] = {.lex_state = 66, .external_lex_state = 15}, + [4692] = {.lex_state = 66, .external_lex_state = 15}, + [4693] = {.lex_state = 66, .external_lex_state = 15}, [4694] = {.lex_state = 66, .external_lex_state = 11}, - [4695] = {.lex_state = 66, .external_lex_state = 11}, - [4696] = {.lex_state = 66, .external_lex_state = 12}, - [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}, - [4702] = {.lex_state = 66, .external_lex_state = 11}, - [4703] = {.lex_state = 66, .external_lex_state = 14}, + [4695] = {.lex_state = 66, .external_lex_state = 14}, + [4696] = {.lex_state = 66, .external_lex_state = 15}, + [4697] = {.lex_state = 66, .external_lex_state = 15}, + [4698] = {.lex_state = 66, .external_lex_state = 15}, + [4699] = {.lex_state = 66, .external_lex_state = 15}, + [4700] = {.lex_state = 66, .external_lex_state = 21}, + [4701] = {.lex_state = 66, .external_lex_state = 5}, + [4702] = {.lex_state = 66, .external_lex_state = 12}, + [4703] = {.lex_state = 66, .external_lex_state = 16}, [4704] = {.lex_state = 66, .external_lex_state = 14}, - [4705] = {.lex_state = 66, .external_lex_state = 14}, - [4706] = {.lex_state = 66, .external_lex_state = 14}, - [4707] = {.lex_state = 66, .external_lex_state = 14}, - [4708] = {.lex_state = 66, .external_lex_state = 11}, - [4709] = {.lex_state = 66, .external_lex_state = 14}, - [4710] = {.lex_state = 66, .external_lex_state = 11}, - [4711] = {.lex_state = 66, .external_lex_state = 11}, - [4712] = {.lex_state = 66, .external_lex_state = 16}, - [4713] = {.lex_state = 66, .external_lex_state = 11}, - [4714] = {.lex_state = 66, .external_lex_state = 11}, - [4715] = {.lex_state = 66, .external_lex_state = 11}, + [4705] = {.lex_state = 18, .external_lex_state = 12}, + [4706] = {.lex_state = 66, .external_lex_state = 12}, + [4707] = {.lex_state = 66, .external_lex_state = 5}, + [4708] = {.lex_state = 66, .external_lex_state = 14}, + [4709] = {.lex_state = 66, .external_lex_state = 15}, + [4710] = {.lex_state = 66, .external_lex_state = 16}, + [4711] = {.lex_state = 66, .external_lex_state = 12}, + [4712] = {.lex_state = 66, .external_lex_state = 11}, + [4713] = {.lex_state = 12, .external_lex_state = 12}, + [4714] = {.lex_state = 66, .external_lex_state = 15}, + [4715] = {.lex_state = 66, .external_lex_state = 16}, [4716] = {.lex_state = 66, .external_lex_state = 11}, - [4717] = {.lex_state = 66, .external_lex_state = 15}, - [4718] = {.lex_state = 66, .external_lex_state = 14}, - [4719] = {.lex_state = 66, .external_lex_state = 16}, - [4720] = {.lex_state = 66, .external_lex_state = 15}, - [4721] = {.lex_state = 66, .external_lex_state = 14}, - [4722] = {.lex_state = 66, .external_lex_state = 16}, - [4723] = {.lex_state = 66, .external_lex_state = 11}, - [4724] = {.lex_state = 66, .external_lex_state = 11}, + [4717] = {.lex_state = 66, .external_lex_state = 11}, + [4718] = {.lex_state = 66, .external_lex_state = 15}, + [4719] = {.lex_state = 66, .external_lex_state = 11}, + [4720] = {.lex_state = 3, .external_lex_state = 15}, + [4721] = {.lex_state = 66, .external_lex_state = 11}, + [4722] = {.lex_state = 66, .external_lex_state = 11}, + [4723] = {.lex_state = 66, .external_lex_state = 16}, + [4724] = {.lex_state = 66, .external_lex_state = 15}, [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 = 11}, + [4728] = {.lex_state = 66, .external_lex_state = 14}, [4729] = {.lex_state = 66, .external_lex_state = 11}, [4730] = {.lex_state = 66, .external_lex_state = 11}, - [4731] = {.lex_state = 66, .external_lex_state = 11}, - [4732] = {.lex_state = 66, .external_lex_state = 16}, - [4733] = {.lex_state = 66, .external_lex_state = 14}, - [4734] = {.lex_state = 66, .external_lex_state = 14}, - [4735] = {.lex_state = 66, .external_lex_state = 15}, + [4731] = {.lex_state = 66, .external_lex_state = 16}, + [4732] = {.lex_state = 66, .external_lex_state = 11}, + [4733] = {.lex_state = 66, .external_lex_state = 11}, + [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 = 16}, - [4739] = {.lex_state = 66, .external_lex_state = 16}, + [4737] = {.lex_state = 66, .external_lex_state = 14}, + [4738] = {.lex_state = 66, .external_lex_state = 11}, + [4739] = {.lex_state = 66, .external_lex_state = 14}, [4740] = {.lex_state = 66, .external_lex_state = 11}, [4741] = {.lex_state = 66, .external_lex_state = 11}, - [4742] = {.lex_state = 66, .external_lex_state = 15}, - [4743] = {.lex_state = 66, .external_lex_state = 11}, + [4742] = {.lex_state = 66, .external_lex_state = 11}, + [4743] = {.lex_state = 66, .external_lex_state = 14}, [4744] = {.lex_state = 66, .external_lex_state = 11}, - [4745] = {.lex_state = 66, .external_lex_state = 11}, - [4746] = {.lex_state = 66, .external_lex_state = 16}, - [4747] = {.lex_state = 66, .external_lex_state = 14}, - [4748] = {.lex_state = 66, .external_lex_state = 11}, - [4749] = {.lex_state = 66, .external_lex_state = 15}, - [4750] = {.lex_state = 66, .external_lex_state = 20}, - [4751] = {.lex_state = 66, .external_lex_state = 12}, + [4745] = {.lex_state = 66, .external_lex_state = 16}, + [4746] = {.lex_state = 66, .external_lex_state = 12}, + [4747] = {.lex_state = 66, .external_lex_state = 15}, + [4748] = {.lex_state = 66, .external_lex_state = 15}, + [4749] = {.lex_state = 66, .external_lex_state = 11}, + [4750] = {.lex_state = 66, .external_lex_state = 11}, + [4751] = {.lex_state = 3, .external_lex_state = 15}, [4752] = {.lex_state = 66, .external_lex_state = 11}, - [4753] = {.lex_state = 66, .external_lex_state = 16}, - [4754] = {.lex_state = 66, .external_lex_state = 15}, + [4753] = {.lex_state = 66, .external_lex_state = 11}, + [4754] = {.lex_state = 66, .external_lex_state = 16}, [4755] = {.lex_state = 66, .external_lex_state = 11}, [4756] = {.lex_state = 66, .external_lex_state = 11}, - [4757] = {.lex_state = 16, .external_lex_state = 19}, - [4758] = {.lex_state = 66, .external_lex_state = 16}, - [4759] = {.lex_state = 66, .external_lex_state = 14}, - [4760] = {.lex_state = 66, .external_lex_state = 14}, + [4757] = {.lex_state = 66, .external_lex_state = 11}, + [4758] = {.lex_state = 66, .external_lex_state = 11}, + [4759] = {.lex_state = 66, .external_lex_state = 20}, + [4760] = {.lex_state = 66, .external_lex_state = 11}, [4761] = {.lex_state = 66, .external_lex_state = 14}, - [4762] = {.lex_state = 66, .external_lex_state = 16}, - [4763] = {.lex_state = 66, .external_lex_state = 20}, - [4764] = {.lex_state = 66, .external_lex_state = 16}, - [4765] = {.lex_state = 66, .external_lex_state = 14}, - [4766] = {.lex_state = 66, .external_lex_state = 14}, + [4762] = {.lex_state = 66, .external_lex_state = 11}, + [4763] = {.lex_state = 66, .external_lex_state = 16}, + [4764] = {.lex_state = 66, .external_lex_state = 11}, + [4765] = {.lex_state = 66, .external_lex_state = 11}, + [4766] = {.lex_state = 66, .external_lex_state = 11}, [4767] = {.lex_state = 66, .external_lex_state = 11}, [4768] = {.lex_state = 66, .external_lex_state = 14}, - [4769] = {.lex_state = 66, .external_lex_state = 16}, + [4769] = {.lex_state = 66, .external_lex_state = 12}, [4770] = {.lex_state = 66, .external_lex_state = 16}, - [4771] = {.lex_state = 66, .external_lex_state = 16}, - [4772] = {.lex_state = 66, .external_lex_state = 16}, - [4773] = {.lex_state = 66, .external_lex_state = 14}, - [4774] = {.lex_state = 66, .external_lex_state = 11}, - [4775] = {.lex_state = 66, .external_lex_state = 16}, + [4771] = {.lex_state = 16, .external_lex_state = 19}, + [4772] = {.lex_state = 66, .external_lex_state = 11}, + [4773] = {.lex_state = 66, .external_lex_state = 11}, + [4774] = {.lex_state = 66, .external_lex_state = 14}, + [4775] = {.lex_state = 66, .external_lex_state = 12}, [4776] = {.lex_state = 66, .external_lex_state = 11}, - [4777] = {.lex_state = 15, .external_lex_state = 12}, - [4778] = {.lex_state = 66, .external_lex_state = 15}, - [4779] = {.lex_state = 66, .external_lex_state = 16}, - [4780] = {.lex_state = 66, .external_lex_state = 15}, + [4777] = {.lex_state = 66, .external_lex_state = 11}, + [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 = 11}, - [4782] = {.lex_state = 66, .external_lex_state = 15}, + [4782] = {.lex_state = 66, .external_lex_state = 11}, [4783] = {.lex_state = 66, .external_lex_state = 11}, - [4784] = {.lex_state = 66, .external_lex_state = 14}, - [4785] = {.lex_state = 66, .external_lex_state = 16}, - [4786] = {.lex_state = 66, .external_lex_state = 14}, - [4787] = {.lex_state = 66, .external_lex_state = 16}, - [4788] = {.lex_state = 66, .external_lex_state = 11}, - [4789] = {.lex_state = 66, .external_lex_state = 15}, + [4784] = {.lex_state = 66, .external_lex_state = 11}, + [4785] = {.lex_state = 66, .external_lex_state = 11}, + [4786] = {.lex_state = 66, .external_lex_state = 11}, + [4787] = {.lex_state = 66, .external_lex_state = 12}, + [4788] = {.lex_state = 66, .external_lex_state = 14}, + [4789] = {.lex_state = 66, .external_lex_state = 11}, [4790] = {.lex_state = 66, .external_lex_state = 11}, - [4791] = {.lex_state = 66, .external_lex_state = 15}, - [4792] = {.lex_state = 66, .external_lex_state = 11}, + [4791] = {.lex_state = 66, .external_lex_state = 11}, + [4792] = {.lex_state = 15, .external_lex_state = 12}, [4793] = {.lex_state = 66, .external_lex_state = 11}, - [4794] = {.lex_state = 66, .external_lex_state = 15}, + [4794] = {.lex_state = 66, .external_lex_state = 11}, [4795] = {.lex_state = 66, .external_lex_state = 11}, - [4796] = {.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 = 12, .external_lex_state = 12}, - [4799] = {.lex_state = 66, .external_lex_state = 14}, - [4800] = {.lex_state = 66, .external_lex_state = 14}, - [4801] = {.lex_state = 16, .external_lex_state = 19}, + [4798] = {.lex_state = 66, .external_lex_state = 11}, + [4799] = {.lex_state = 66, .external_lex_state = 16}, + [4800] = {.lex_state = 66, .external_lex_state = 16}, + [4801] = {.lex_state = 66, .external_lex_state = 15}, [4802] = {.lex_state = 66, .external_lex_state = 11}, - [4803] = {.lex_state = 3, .external_lex_state = 15}, - [4804] = {.lex_state = 66, .external_lex_state = 14}, - [4805] = {.lex_state = 3, .external_lex_state = 15}, - [4806] = {.lex_state = 3, .external_lex_state = 15}, - [4807] = {.lex_state = 66, .external_lex_state = 12}, - [4808] = {.lex_state = 66, .external_lex_state = 15}, - [4809] = {.lex_state = 66, .external_lex_state = 11}, - [4810] = {.lex_state = 66, .external_lex_state = 12}, - [4811] = {.lex_state = 66, .external_lex_state = 11}, + [4803] = {.lex_state = 66, .external_lex_state = 12}, + [4804] = {.lex_state = 66, .external_lex_state = 11}, + [4805] = {.lex_state = 66, .external_lex_state = 12}, + [4806] = {.lex_state = 66, .external_lex_state = 16}, + [4807] = {.lex_state = 66, .external_lex_state = 11}, + [4808] = {.lex_state = 66, .external_lex_state = 12}, + [4809] = {.lex_state = 66, .external_lex_state = 14}, + [4810] = {.lex_state = 66, .external_lex_state = 11}, + [4811] = {.lex_state = 66, .external_lex_state = 14}, [4812] = {.lex_state = 66, .external_lex_state = 11}, - [4813] = {.lex_state = 66, .external_lex_state = 11}, - [4814] = {.lex_state = 66, .external_lex_state = 11}, - [4815] = {.lex_state = 66, .external_lex_state = 15}, + [4813] = {.lex_state = 66, .external_lex_state = 12}, + [4814] = {.lex_state = 66, .external_lex_state = 14}, + [4815] = {.lex_state = 15, .external_lex_state = 12}, [4816] = {.lex_state = 66, .external_lex_state = 15}, [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 = 16}, - [4821] = {.lex_state = 66, .external_lex_state = 14}, - [4822] = {.lex_state = 16, .external_lex_state = 19}, - [4823] = {.lex_state = 66, .external_lex_state = 11}, + [4818] = {.lex_state = 66, .external_lex_state = 12}, + [4819] = {.lex_state = 66, .external_lex_state = 11}, + [4820] = {.lex_state = 66, .external_lex_state = 11}, + [4821] = {.lex_state = 3, .external_lex_state = 15}, + [4822] = {.lex_state = 66, .external_lex_state = 15}, + [4823] = {.lex_state = 66, .external_lex_state = 14}, [4824] = {.lex_state = 66, .external_lex_state = 14}, - [4825] = {.lex_state = 15, .external_lex_state = 12}, - [4826] = {.lex_state = 66, .external_lex_state = 14}, - [4827] = {.lex_state = 66, .external_lex_state = 16}, - [4828] = {.lex_state = 66, .external_lex_state = 16}, - [4829] = {.lex_state = 66, .external_lex_state = 20}, + [4825] = {.lex_state = 66, .external_lex_state = 11}, + [4826] = {.lex_state = 66, .external_lex_state = 16}, + [4827] = {.lex_state = 66, .external_lex_state = 11}, + [4828] = {.lex_state = 66, .external_lex_state = 11}, + [4829] = {.lex_state = 66, .external_lex_state = 16}, [4830] = {.lex_state = 66, .external_lex_state = 12}, - [4831] = {.lex_state = 66, .external_lex_state = 15}, - [4832] = {.lex_state = 66, .external_lex_state = 15}, - [4833] = {.lex_state = 66, .external_lex_state = 11}, - [4834] = {.lex_state = 66, .external_lex_state = 11}, - [4835] = {.lex_state = 66, .external_lex_state = 11}, + [4831] = {.lex_state = 66, .external_lex_state = 14}, + [4832] = {.lex_state = 66, .external_lex_state = 16}, + [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 = 14}, - [4838] = {.lex_state = 66, .external_lex_state = 11}, + [4837] = {.lex_state = 66, .external_lex_state = 16}, + [4838] = {.lex_state = 66, .external_lex_state = 16}, [4839] = {.lex_state = 66, .external_lex_state = 14}, [4840] = {.lex_state = 66, .external_lex_state = 15}, [4841] = {.lex_state = 66, .external_lex_state = 16}, - [4842] = {.lex_state = 66, .external_lex_state = 12}, - [4843] = {.lex_state = 66, .external_lex_state = 16}, - [4844] = {.lex_state = 66, .external_lex_state = 11}, - [4845] = {.lex_state = 66, .external_lex_state = 16}, - [4846] = {.lex_state = 66, .external_lex_state = 11}, - [4847] = {.lex_state = 66, .external_lex_state = 15}, + [4842] = {.lex_state = 66, .external_lex_state = 16}, + [4843] = {.lex_state = 66, .external_lex_state = 14}, + [4844] = {.lex_state = 66, .external_lex_state = 14}, + [4845] = {.lex_state = 66, .external_lex_state = 15}, + [4846] = {.lex_state = 3, .external_lex_state = 15}, + [4847] = {.lex_state = 66, .external_lex_state = 16}, [4848] = {.lex_state = 66, .external_lex_state = 14}, - [4849] = {.lex_state = 66, .external_lex_state = 12}, - [4850] = {.lex_state = 66, .external_lex_state = 14}, - [4851] = {.lex_state = 66, .external_lex_state = 14}, - [4852] = {.lex_state = 66, .external_lex_state = 14}, - [4853] = {.lex_state = 66, .external_lex_state = 16}, - [4854] = {.lex_state = 66, .external_lex_state = 11}, - [4855] = {.lex_state = 66, .external_lex_state = 16}, - [4856] = {.lex_state = 66, .external_lex_state = 11}, - [4857] = {.lex_state = 66, .external_lex_state = 14}, + [4849] = {.lex_state = 66, .external_lex_state = 15}, + [4850] = {.lex_state = 66, .external_lex_state = 16}, + [4851] = {.lex_state = 3, .external_lex_state = 15}, + [4852] = {.lex_state = 66, .external_lex_state = 15}, + [4853] = {.lex_state = 66, .external_lex_state = 15}, + [4854] = {.lex_state = 66, .external_lex_state = 12}, + [4855] = {.lex_state = 66, .external_lex_state = 12}, + [4856] = {.lex_state = 66, .external_lex_state = 14}, + [4857] = {.lex_state = 66, .external_lex_state = 12}, [4858] = {.lex_state = 66, .external_lex_state = 14}, - [4859] = {.lex_state = 66, .external_lex_state = 12}, - [4860] = {.lex_state = 66, .external_lex_state = 16}, - [4861] = {.lex_state = 66, .external_lex_state = 16}, - [4862] = {.lex_state = 66, .external_lex_state = 11}, - [4863] = {.lex_state = 66, .external_lex_state = 11}, - [4864] = {.lex_state = 66, .external_lex_state = 11}, - [4865] = {.lex_state = 66, .external_lex_state = 20}, - [4866] = {.lex_state = 66, .external_lex_state = 11}, - [4867] = {.lex_state = 66, .external_lex_state = 11}, - [4868] = {.lex_state = 66, .external_lex_state = 11}, - [4869] = {.lex_state = 66, .external_lex_state = 14}, - [4870] = {.lex_state = 66, .external_lex_state = 14}, - [4871] = {.lex_state = 66, .external_lex_state = 14}, - [4872] = {.lex_state = 66, .external_lex_state = 11}, - [4873] = {.lex_state = 66, .external_lex_state = 15}, + [4859] = {.lex_state = 3, .external_lex_state = 15}, + [4860] = {.lex_state = 66, .external_lex_state = 12}, + [4861] = {.lex_state = 66, .external_lex_state = 11}, + [4862] = {.lex_state = 66, .external_lex_state = 16}, + [4863] = {.lex_state = 66, .external_lex_state = 16}, + [4864] = {.lex_state = 66, .external_lex_state = 14}, + [4865] = {.lex_state = 66, .external_lex_state = 11}, + [4866] = {.lex_state = 66, .external_lex_state = 15}, + [4867] = {.lex_state = 66, .external_lex_state = 12}, + [4868] = {.lex_state = 66, .external_lex_state = 12}, + [4869] = {.lex_state = 66, .external_lex_state = 15}, + [4870] = {.lex_state = 66, .external_lex_state = 11}, + [4871] = {.lex_state = 66, .external_lex_state = 11}, + [4872] = {.lex_state = 66, .external_lex_state = 15}, + [4873] = {.lex_state = 66, .external_lex_state = 14}, [4874] = {.lex_state = 66, .external_lex_state = 11}, - [4875] = {.lex_state = 66, .external_lex_state = 12}, - [4876] = {.lex_state = 66, .external_lex_state = 11}, - [4877] = {.lex_state = 66, .external_lex_state = 11}, - [4878] = {.lex_state = 66, .external_lex_state = 15}, - [4879] = {.lex_state = 66, .external_lex_state = 11}, - [4880] = {.lex_state = 66, .external_lex_state = 16}, - [4881] = {.lex_state = 66, .external_lex_state = 14}, + [4875] = {.lex_state = 66, .external_lex_state = 14}, + [4876] = {.lex_state = 66, .external_lex_state = 14}, + [4877] = {.lex_state = 66, .external_lex_state = 16}, + [4878] = {.lex_state = 66, .external_lex_state = 11}, + [4879] = {.lex_state = 15, .external_lex_state = 12}, + [4880] = {.lex_state = 66, .external_lex_state = 14}, + [4881] = {.lex_state = 66, .external_lex_state = 15}, [4882] = {.lex_state = 66, .external_lex_state = 14}, - [4883] = {.lex_state = 66, .external_lex_state = 14}, + [4883] = {.lex_state = 66, .external_lex_state = 16}, [4884] = {.lex_state = 66, .external_lex_state = 16}, [4885] = {.lex_state = 66, .external_lex_state = 16}, - [4886] = {.lex_state = 66, .external_lex_state = 16}, + [4886] = {.lex_state = 66, .external_lex_state = 14}, [4887] = {.lex_state = 66, .external_lex_state = 11}, [4888] = {.lex_state = 66, .external_lex_state = 14}, - [4889] = {.lex_state = 66, .external_lex_state = 11}, + [4889] = {.lex_state = 66, .external_lex_state = 14}, [4890] = {.lex_state = 66, .external_lex_state = 14}, - [4891] = {.lex_state = 66, .external_lex_state = 16}, - [4892] = {.lex_state = 66, .external_lex_state = 16}, - [4893] = {.lex_state = 66, .external_lex_state = 14}, - [4894] = {.lex_state = 66, .external_lex_state = 11}, - [4895] = {.lex_state = 15, .external_lex_state = 12}, + [4891] = {.lex_state = 66, .external_lex_state = 14}, + [4892] = {.lex_state = 66, .external_lex_state = 14}, + [4893] = {.lex_state = 66, .external_lex_state = 11}, + [4894] = {.lex_state = 66, .external_lex_state = 14}, + [4895] = {.lex_state = 66, .external_lex_state = 14}, [4896] = {.lex_state = 66, .external_lex_state = 12}, - [4897] = {.lex_state = 66, .external_lex_state = 11}, + [4897] = {.lex_state = 66, .external_lex_state = 15}, [4898] = {.lex_state = 66, .external_lex_state = 11}, - [4899] = {.lex_state = 66, .external_lex_state = 14}, - [4900] = {.lex_state = 66, .external_lex_state = 14}, - [4901] = {.lex_state = 66, .external_lex_state = 15}, - [4902] = {.lex_state = 66, .external_lex_state = 14}, - [4903] = {.lex_state = 66, .external_lex_state = 12}, + [4899] = {.lex_state = 66, .external_lex_state = 12}, + [4900] = {.lex_state = 66, .external_lex_state = 11}, + [4901] = {.lex_state = 66, .external_lex_state = 16}, + [4902] = {.lex_state = 66, .external_lex_state = 15}, + [4903] = {.lex_state = 66, .external_lex_state = 15}, [4904] = {.lex_state = 66, .external_lex_state = 11}, - [4905] = {.lex_state = 66, .external_lex_state = 11}, - [4906] = {.lex_state = 66, .external_lex_state = 16}, - [4907] = {.lex_state = 66, .external_lex_state = 15}, + [4905] = {.lex_state = 66, .external_lex_state = 14}, + [4906] = {.lex_state = 66, .external_lex_state = 14}, + [4907] = {.lex_state = 66, .external_lex_state = 14}, [4908] = {.lex_state = 66, .external_lex_state = 16}, - [4909] = {.lex_state = 66, .external_lex_state = 11}, - [4910] = {.lex_state = 66, .external_lex_state = 14}, + [4909] = {.lex_state = 66, .external_lex_state = 16}, + [4910] = {.lex_state = 66, .external_lex_state = 11}, [4911] = {.lex_state = 66, .external_lex_state = 14}, - [4912] = {.lex_state = 66, .external_lex_state = 12}, - [4913] = {.lex_state = 66, .external_lex_state = 16}, - [4914] = {.lex_state = 66, .external_lex_state = 14}, - [4915] = {.lex_state = 66, .external_lex_state = 14}, - [4916] = {.lex_state = 66, .external_lex_state = 16}, - [4917] = {.lex_state = 66, .external_lex_state = 16}, - [4918] = {.lex_state = 66, .external_lex_state = 16}, - [4919] = {.lex_state = 66, .external_lex_state = 15}, + [4912] = {.lex_state = 66, .external_lex_state = 14}, + [4913] = {.lex_state = 66, .external_lex_state = 12}, + [4914] = {.lex_state = 66, .external_lex_state = 16}, + [4915] = {.lex_state = 66, .external_lex_state = 16}, + [4916] = {.lex_state = 66, .external_lex_state = 11}, + [4917] = {.lex_state = 66, .external_lex_state = 11}, + [4918] = {.lex_state = 66, .external_lex_state = 14}, + [4919] = {.lex_state = 66, .external_lex_state = 11}, [4920] = {.lex_state = 66, .external_lex_state = 11}, - [4921] = {.lex_state = 66, .external_lex_state = 14}, - [4922] = {.lex_state = 66, .external_lex_state = 14}, - [4923] = {.lex_state = 66, .external_lex_state = 12}, - [4924] = {.lex_state = 66, .external_lex_state = 12}, - [4925] = {.lex_state = 66, .external_lex_state = 14}, - [4926] = {.lex_state = 66, .external_lex_state = 14}, - [4927] = {.lex_state = 66, .external_lex_state = 11}, - [4928] = {.lex_state = 66, .external_lex_state = 16}, + [4921] = {.lex_state = 66, .external_lex_state = 11}, + [4922] = {.lex_state = 66, .external_lex_state = 11}, + [4923] = {.lex_state = 66, .external_lex_state = 14}, + [4924] = {.lex_state = 66, .external_lex_state = 15}, + [4925] = {.lex_state = 66, .external_lex_state = 12}, + [4926] = {.lex_state = 66, .external_lex_state = 11}, + [4927] = {.lex_state = 66, .external_lex_state = 15}, + [4928] = {.lex_state = 66, .external_lex_state = 14}, [4929] = {.lex_state = 66, .external_lex_state = 14}, - [4930] = {.lex_state = 66, .external_lex_state = 16}, + [4930] = {.lex_state = 66, .external_lex_state = 14}, [4931] = {.lex_state = 66, .external_lex_state = 14}, - [4932] = {.lex_state = 66, .external_lex_state = 12}, - [4933] = {.lex_state = 66, .external_lex_state = 14}, - [4934] = {.lex_state = 66, .external_lex_state = 16}, + [4932] = {.lex_state = 66, .external_lex_state = 16}, + [4933] = {.lex_state = 66, .external_lex_state = 16}, + [4934] = {.lex_state = 66, .external_lex_state = 14}, [4935] = {.lex_state = 66, .external_lex_state = 16}, [4936] = {.lex_state = 66, .external_lex_state = 14}, [4937] = {.lex_state = 66, .external_lex_state = 14}, - [4938] = {.lex_state = 66, .external_lex_state = 11}, - [4939] = {.lex_state = 66, .external_lex_state = 12}, - [4940] = {.lex_state = 66, .external_lex_state = 11}, - [4941] = {.lex_state = 66, .external_lex_state = 11}, - [4942] = {.lex_state = 66, .external_lex_state = 12}, - [4943] = {.lex_state = 66, .external_lex_state = 12}, + [4938] = {.lex_state = 66, .external_lex_state = 16}, + [4939] = {.lex_state = 66, .external_lex_state = 16}, + [4940] = {.lex_state = 66, .external_lex_state = 16}, + [4941] = {.lex_state = 16, .external_lex_state = 19}, + [4942] = {.lex_state = 16, .external_lex_state = 19}, + [4943] = {.lex_state = 66, .external_lex_state = 11}, [4944] = {.lex_state = 66, .external_lex_state = 14}, - [4945] = {.lex_state = 66, .external_lex_state = 14}, - [4946] = {.lex_state = 66, .external_lex_state = 16}, - [4947] = {.lex_state = 66, .external_lex_state = 16}, - [4948] = {.lex_state = 66, .external_lex_state = 11}, - [4949] = {.lex_state = 66, .external_lex_state = 14}, - [4950] = {.lex_state = 66, .external_lex_state = 14}, - [4951] = {.lex_state = 66, .external_lex_state = 15}, + [4945] = {.lex_state = 66, .external_lex_state = 15}, + [4946] = {.lex_state = 66, .external_lex_state = 14}, + [4947] = {.lex_state = 66, .external_lex_state = 11}, + [4948] = {.lex_state = 66, .external_lex_state = 14}, + [4949] = {.lex_state = 66, .external_lex_state = 15}, + [4950] = {.lex_state = 66, .external_lex_state = 12}, + [4951] = {.lex_state = 66, .external_lex_state = 11}, [4952] = {.lex_state = 66, .external_lex_state = 16}, - [4953] = {.lex_state = 66, .external_lex_state = 16}, - [4954] = {.lex_state = 66, .external_lex_state = 15}, - [4955] = {.lex_state = 66, .external_lex_state = 11}, - [4956] = {.lex_state = 66, .external_lex_state = 11}, - [4957] = {.lex_state = 66, .external_lex_state = 16}, + [4953] = {.lex_state = 66, .external_lex_state = 15}, + [4954] = {.lex_state = 66, .external_lex_state = 14}, + [4955] = {.lex_state = 66, .external_lex_state = 12}, + [4956] = {.lex_state = 66, .external_lex_state = 14}, + [4957] = {.lex_state = 66, .external_lex_state = 14}, [4958] = {.lex_state = 66, .external_lex_state = 16}, - [4959] = {.lex_state = 66, .external_lex_state = 14}, - [4960] = {.lex_state = 66, .external_lex_state = 14}, + [4959] = {.lex_state = 66, .external_lex_state = 11}, + [4960] = {.lex_state = 66, .external_lex_state = 16}, [4961] = {.lex_state = 66, .external_lex_state = 11}, - [4962] = {.lex_state = 66, .external_lex_state = 16}, + [4962] = {.lex_state = 66, .external_lex_state = 14}, [4963] = {.lex_state = 66, .external_lex_state = 14}, - [4964] = {.lex_state = 66, .external_lex_state = 14}, - [4965] = {.lex_state = 66, .external_lex_state = 14}, + [4964] = {.lex_state = 12, .external_lex_state = 12}, + [4965] = {.lex_state = 66, .external_lex_state = 16}, [4966] = {.lex_state = 66, .external_lex_state = 16}, [4967] = {.lex_state = 66, .external_lex_state = 16}, - [4968] = {.lex_state = 66, .external_lex_state = 14}, + [4968] = {.lex_state = 66, .external_lex_state = 11}, [4969] = {.lex_state = 66, .external_lex_state = 11}, [4970] = {.lex_state = 66, .external_lex_state = 14}, [4971] = {.lex_state = 66, .external_lex_state = 11}, [4972] = {.lex_state = 66, .external_lex_state = 11}, - [4973] = {.lex_state = 66, .external_lex_state = 16}, - [4974] = {.lex_state = 66, .external_lex_state = 16}, - [4975] = {.lex_state = 66, .external_lex_state = 16}, - [4976] = {.lex_state = 66, .external_lex_state = 16}, - [4977] = {.lex_state = 66, .external_lex_state = 15}, - [4978] = {.lex_state = 66, .external_lex_state = 16}, - [4979] = {.lex_state = 12, .external_lex_state = 12}, - [4980] = {.lex_state = 66, .external_lex_state = 12}, - [4981] = {.lex_state = 66, .external_lex_state = 12}, + [4973] = {.lex_state = 66, .external_lex_state = 11}, + [4974] = {.lex_state = 66, .external_lex_state = 11}, + [4975] = {.lex_state = 66, .external_lex_state = 14}, + [4976] = {.lex_state = 66, .external_lex_state = 12}, + [4977] = {.lex_state = 66, .external_lex_state = 11}, + [4978] = {.lex_state = 66, .external_lex_state = 14}, + [4979] = {.lex_state = 66, .external_lex_state = 14}, + [4980] = {.lex_state = 66, .external_lex_state = 16}, + [4981] = {.lex_state = 66, .external_lex_state = 16}, [4982] = {.lex_state = 66, .external_lex_state = 14}, - [4983] = {.lex_state = 66, .external_lex_state = 15}, + [4983] = {.lex_state = 66, .external_lex_state = 14}, [4984] = {.lex_state = 66, .external_lex_state = 16}, - [4985] = {.lex_state = 66, .external_lex_state = 11}, - [4986] = {.lex_state = 3, .external_lex_state = 15}, - [4987] = {.lex_state = 3, .external_lex_state = 15}, - [4988] = {.lex_state = 3, .external_lex_state = 15}, - [4989] = {.lex_state = 66, .external_lex_state = 11}, - [4990] = {.lex_state = 66, .external_lex_state = 11}, - [4991] = {.lex_state = 66, .external_lex_state = 14}, + [4985] = {.lex_state = 66, .external_lex_state = 16}, + [4986] = {.lex_state = 66, .external_lex_state = 14}, + [4987] = {.lex_state = 66, .external_lex_state = 11}, + [4988] = {.lex_state = 66, .external_lex_state = 14}, + [4989] = {.lex_state = 66, .external_lex_state = 16}, + [4990] = {.lex_state = 66, .external_lex_state = 14}, + [4991] = {.lex_state = 66, .external_lex_state = 11}, [4992] = {.lex_state = 66, .external_lex_state = 14}, [4993] = {.lex_state = 66, .external_lex_state = 14}, - [4994] = {.lex_state = 66, .external_lex_state = 11}, - [4995] = {.lex_state = 66, .external_lex_state = 15}, + [4994] = {.lex_state = 66, .external_lex_state = 14}, + [4995] = {.lex_state = 66, .external_lex_state = 14}, [4996] = {.lex_state = 66, .external_lex_state = 11}, - [4997] = {.lex_state = 66, .external_lex_state = 14}, - [4998] = {.lex_state = 66, .external_lex_state = 14}, + [4997] = {.lex_state = 66, .external_lex_state = 16}, + [4998] = {.lex_state = 66, .external_lex_state = 16}, [4999] = {.lex_state = 66, .external_lex_state = 14}, [5000] = {.lex_state = 66, .external_lex_state = 14}, - [5001] = {.lex_state = 66, .external_lex_state = 11}, - [5002] = {.lex_state = 66, .external_lex_state = 12}, - [5003] = {.lex_state = 12, .external_lex_state = 12}, - [5004] = {.lex_state = 66, .external_lex_state = 14}, - [5005] = {.lex_state = 66, .external_lex_state = 11}, + [5001] = {.lex_state = 66, .external_lex_state = 14}, + [5002] = {.lex_state = 66, .external_lex_state = 16}, + [5003] = {.lex_state = 66, .external_lex_state = 16}, + [5004] = {.lex_state = 66, .external_lex_state = 16}, + [5005] = {.lex_state = 66, .external_lex_state = 12}, [5006] = {.lex_state = 66, .external_lex_state = 11}, - [5007] = {.lex_state = 66, .external_lex_state = 2}, - [5008] = {.lex_state = 66, .external_lex_state = 14}, - [5009] = {.lex_state = 66, .external_lex_state = 16}, - [5010] = {.lex_state = 66, .external_lex_state = 16}, - [5011] = {.lex_state = 66, .external_lex_state = 11}, - [5012] = {.lex_state = 66, .external_lex_state = 12}, - [5013] = {.lex_state = 66, .external_lex_state = 11}, - [5014] = {.lex_state = 66, .external_lex_state = 11}, - [5015] = {.lex_state = 66, .external_lex_state = 12}, - [5016] = {.lex_state = 66, .external_lex_state = 12}, + [5007] = {.lex_state = 66, .external_lex_state = 12}, + [5008] = {.lex_state = 66, .external_lex_state = 11}, + [5009] = {.lex_state = 66, .external_lex_state = 11}, + [5010] = {.lex_state = 66, .external_lex_state = 14}, + [5011] = {.lex_state = 66, .external_lex_state = 14}, + [5012] = {.lex_state = 66, .external_lex_state = 16}, + [5013] = {.lex_state = 66, .external_lex_state = 15}, + [5014] = {.lex_state = 66, .external_lex_state = 14}, + [5015] = {.lex_state = 66, .external_lex_state = 14}, + [5016] = {.lex_state = 66, .external_lex_state = 16}, [5017] = {.lex_state = 66, .external_lex_state = 16}, - [5018] = {.lex_state = 15, .external_lex_state = 12}, - [5019] = {.lex_state = 66, .external_lex_state = 12}, - [5020] = {.lex_state = 66, .external_lex_state = 12}, - [5021] = {.lex_state = 66, .external_lex_state = 11}, - [5022] = {.lex_state = 15, .external_lex_state = 12}, - [5023] = {.lex_state = 16, .external_lex_state = 19}, - [5024] = {.lex_state = 66, .external_lex_state = 12}, - [5025] = {.lex_state = 66, .external_lex_state = 14}, + [5018] = {.lex_state = 66, .external_lex_state = 11}, + [5019] = {.lex_state = 66, .external_lex_state = 11}, + [5020] = {.lex_state = 66, .external_lex_state = 15}, + [5021] = {.lex_state = 66, .external_lex_state = 14}, + [5022] = {.lex_state = 66, .external_lex_state = 16}, + [5023] = {.lex_state = 66, .external_lex_state = 16}, + [5024] = {.lex_state = 66, .external_lex_state = 16}, + [5025] = {.lex_state = 66, .external_lex_state = 16}, [5026] = {.lex_state = 66, .external_lex_state = 14}, - [5027] = {.lex_state = 15, .external_lex_state = 12}, - [5028] = {.lex_state = 15, .external_lex_state = 12}, - [5029] = {.lex_state = 66, .external_lex_state = 12}, - [5030] = {.lex_state = 15, .external_lex_state = 12}, - [5031] = {.lex_state = 66, .external_lex_state = 16}, - [5032] = {.lex_state = 66, .external_lex_state = 12}, - [5033] = {.lex_state = 66, .external_lex_state = 11}, - [5034] = {.lex_state = 66, .external_lex_state = 11}, - [5035] = {.lex_state = 66, .external_lex_state = 12}, + [5027] = {.lex_state = 66, .external_lex_state = 15}, + [5028] = {.lex_state = 66, .external_lex_state = 12}, + [5029] = {.lex_state = 66, .external_lex_state = 11}, + [5030] = {.lex_state = 66, .external_lex_state = 16}, + [5031] = {.lex_state = 66, .external_lex_state = 14}, + [5032] = {.lex_state = 66, .external_lex_state = 14}, + [5033] = {.lex_state = 66, .external_lex_state = 15}, + [5034] = {.lex_state = 66, .external_lex_state = 14}, + [5035] = {.lex_state = 66, .external_lex_state = 15}, [5036] = {.lex_state = 66, .external_lex_state = 11}, [5037] = {.lex_state = 66, .external_lex_state = 12}, [5038] = {.lex_state = 66, .external_lex_state = 14}, - [5039] = {.lex_state = 66, .external_lex_state = 14}, - [5040] = {.lex_state = 66, .external_lex_state = 15}, + [5039] = {.lex_state = 66, .external_lex_state = 11}, + [5040] = {.lex_state = 66, .external_lex_state = 2}, [5041] = {.lex_state = 66, .external_lex_state = 11}, - [5042] = {.lex_state = 66, .external_lex_state = 11}, - [5043] = {.lex_state = 66, .external_lex_state = 11}, - [5044] = {.lex_state = 66, .external_lex_state = 16}, - [5045] = {.lex_state = 66, .external_lex_state = 11}, - [5046] = {.lex_state = 66, .external_lex_state = 12}, - [5047] = {.lex_state = 66, .external_lex_state = 11}, - [5048] = {.lex_state = 66, .external_lex_state = 2}, - [5049] = {.lex_state = 66, .external_lex_state = 11}, - [5050] = {.lex_state = 66, .external_lex_state = 11}, - [5051] = {.lex_state = 66, .external_lex_state = 12}, - [5052] = {.lex_state = 66, .external_lex_state = 12}, - [5053] = {.lex_state = 66, .external_lex_state = 12}, - [5054] = {.lex_state = 66, .external_lex_state = 12}, - [5055] = {.lex_state = 66, .external_lex_state = 12}, + [5042] = {.lex_state = 66, .external_lex_state = 14}, + [5043] = {.lex_state = 66, .external_lex_state = 20}, + [5044] = {.lex_state = 66, .external_lex_state = 12}, + [5045] = {.lex_state = 66, .external_lex_state = 16}, + [5046] = {.lex_state = 66, .external_lex_state = 11}, + [5047] = {.lex_state = 66, .external_lex_state = 14}, + [5048] = {.lex_state = 66, .external_lex_state = 20}, + [5049] = {.lex_state = 66, .external_lex_state = 12}, + [5050] = {.lex_state = 12, .external_lex_state = 12}, + [5051] = {.lex_state = 66, .external_lex_state = 11}, + [5052] = {.lex_state = 66, .external_lex_state = 2}, + [5053] = {.lex_state = 66, .external_lex_state = 11}, + [5054] = {.lex_state = 66, .external_lex_state = 11}, + [5055] = {.lex_state = 66, .external_lex_state = 11}, [5056] = {.lex_state = 66, .external_lex_state = 12}, - [5057] = {.lex_state = 66, .external_lex_state = 16}, - [5058] = {.lex_state = 66, .external_lex_state = 12}, + [5057] = {.lex_state = 66, .external_lex_state = 11}, + [5058] = {.lex_state = 66, .external_lex_state = 11}, [5059] = {.lex_state = 66, .external_lex_state = 12}, - [5060] = {.lex_state = 66, .external_lex_state = 16}, + [5060] = {.lex_state = 66, .external_lex_state = 20}, [5061] = {.lex_state = 66, .external_lex_state = 12}, - [5062] = {.lex_state = 66, .external_lex_state = 11}, + [5062] = {.lex_state = 66, .external_lex_state = 12}, [5063] = {.lex_state = 66, .external_lex_state = 11}, - [5064] = {.lex_state = 66, .external_lex_state = 12}, - [5065] = {.lex_state = 66, .external_lex_state = 12}, - [5066] = {.lex_state = 66, .external_lex_state = 11}, - [5067] = {.lex_state = 66, .external_lex_state = 12}, - [5068] = {.lex_state = 66, .external_lex_state = 11}, - [5069] = {.lex_state = 66, .external_lex_state = 11}, + [5064] = {.lex_state = 15, .external_lex_state = 12}, + [5065] = {.lex_state = 66, .external_lex_state = 14}, + [5066] = {.lex_state = 66, .external_lex_state = 16}, + [5067] = {.lex_state = 66, .external_lex_state = 11}, + [5068] = {.lex_state = 66, .external_lex_state = 14}, + [5069] = {.lex_state = 66, .external_lex_state = 12}, [5070] = {.lex_state = 66, .external_lex_state = 11}, - [5071] = {.lex_state = 66, .external_lex_state = 11}, - [5072] = {.lex_state = 66, .external_lex_state = 11}, - [5073] = {.lex_state = 66, .external_lex_state = 16}, + [5071] = {.lex_state = 15, .external_lex_state = 12}, + [5072] = {.lex_state = 66, .external_lex_state = 16}, + [5073] = {.lex_state = 15, .external_lex_state = 12}, [5074] = {.lex_state = 66, .external_lex_state = 12}, - [5075] = {.lex_state = 66, .external_lex_state = 14}, - [5076] = {.lex_state = 66, .external_lex_state = 14}, - [5077] = {.lex_state = 66, .external_lex_state = 16}, - [5078] = {.lex_state = 66, .external_lex_state = 16}, - [5079] = {.lex_state = 66, .external_lex_state = 16}, - [5080] = {.lex_state = 66, .external_lex_state = 11}, + [5075] = {.lex_state = 66, .external_lex_state = 11}, + [5076] = {.lex_state = 66, .external_lex_state = 16}, + [5077] = {.lex_state = 15, .external_lex_state = 12}, + [5078] = {.lex_state = 66, .external_lex_state = 15}, + [5079] = {.lex_state = 66, .external_lex_state = 12}, + [5080] = {.lex_state = 66, .external_lex_state = 14}, [5081] = {.lex_state = 66, .external_lex_state = 11}, - [5082] = {.lex_state = 66, .external_lex_state = 16}, - [5083] = {.lex_state = 66, .external_lex_state = 14}, - [5084] = {.lex_state = 66, .external_lex_state = 14}, + [5082] = {.lex_state = 66, .external_lex_state = 14}, + [5083] = {.lex_state = 66, .external_lex_state = 12}, + [5084] = {.lex_state = 66, .external_lex_state = 11}, [5085] = {.lex_state = 66, .external_lex_state = 11}, - [5086] = {.lex_state = 66, .external_lex_state = 11}, - [5087] = {.lex_state = 3, .external_lex_state = 15}, - [5088] = {.lex_state = 3, .external_lex_state = 15}, - [5089] = {.lex_state = 66, .external_lex_state = 14}, - [5090] = {.lex_state = 66, .external_lex_state = 14}, + [5086] = {.lex_state = 66, .external_lex_state = 12}, + [5087] = {.lex_state = 66, .external_lex_state = 11}, + [5088] = {.lex_state = 66, .external_lex_state = 20}, + [5089] = {.lex_state = 66, .external_lex_state = 12}, + [5090] = {.lex_state = 66, .external_lex_state = 11}, [5091] = {.lex_state = 66, .external_lex_state = 16}, - [5092] = {.lex_state = 66, .external_lex_state = 16}, - [5093] = {.lex_state = 66, .external_lex_state = 16}, - [5094] = {.lex_state = 66, .external_lex_state = 14}, - [5095] = {.lex_state = 66, .external_lex_state = 14}, - [5096] = {.lex_state = 66, .external_lex_state = 14}, - [5097] = {.lex_state = 66, .external_lex_state = 11}, + [5092] = {.lex_state = 66, .external_lex_state = 2}, + [5093] = {.lex_state = 66, .external_lex_state = 11}, + [5094] = {.lex_state = 66, .external_lex_state = 11}, + [5095] = {.lex_state = 66, .external_lex_state = 12}, + [5096] = {.lex_state = 66, .external_lex_state = 15}, + [5097] = {.lex_state = 66, .external_lex_state = 2}, [5098] = {.lex_state = 66, .external_lex_state = 11}, - [5099] = {.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 = 11}, - [5103] = {.lex_state = 66, .external_lex_state = 2}, - [5104] = {.lex_state = 66, .external_lex_state = 14}, - [5105] = {.lex_state = 66, .external_lex_state = 12}, - [5106] = {.lex_state = 66, .external_lex_state = 11}, - [5107] = {.lex_state = 66, .external_lex_state = 11}, - [5108] = {.lex_state = 3, .external_lex_state = 15}, - [5109] = {.lex_state = 66, .external_lex_state = 15}, + [5099] = {.lex_state = 66, .external_lex_state = 12}, + [5100] = {.lex_state = 66, .external_lex_state = 12}, + [5101] = {.lex_state = 66, .external_lex_state = 11}, + [5102] = {.lex_state = 66, .external_lex_state = 12}, + [5103] = {.lex_state = 66, .external_lex_state = 12}, + [5104] = {.lex_state = 66, .external_lex_state = 15}, + [5105] = {.lex_state = 66, .external_lex_state = 11}, + [5106] = {.lex_state = 66, .external_lex_state = 12}, + [5107] = {.lex_state = 66, .external_lex_state = 12}, + [5108] = {.lex_state = 66, .external_lex_state = 16}, + [5109] = {.lex_state = 66, .external_lex_state = 12}, [5110] = {.lex_state = 66, .external_lex_state = 11}, - [5111] = {.lex_state = 66, .external_lex_state = 11}, - [5112] = {.lex_state = 15, .external_lex_state = 12}, + [5111] = {.lex_state = 66, .external_lex_state = 16}, + [5112] = {.lex_state = 66, .external_lex_state = 16}, [5113] = {.lex_state = 66, .external_lex_state = 11}, - [5114] = {.lex_state = 66, .external_lex_state = 11}, - [5115] = {.lex_state = 66, .external_lex_state = 11}, - [5116] = {.lex_state = 66, .external_lex_state = 11}, + [5114] = {.lex_state = 66, .external_lex_state = 12}, + [5115] = {.lex_state = 66, .external_lex_state = 12}, + [5116] = {.lex_state = 66, .external_lex_state = 14}, [5117] = {.lex_state = 66, .external_lex_state = 11}, [5118] = {.lex_state = 66, .external_lex_state = 12}, - [5119] = {.lex_state = 66, .external_lex_state = 11}, - [5120] = {.lex_state = 66, .external_lex_state = 11}, - [5121] = {.lex_state = 66, .external_lex_state = 11}, - [5122] = {.lex_state = 66, .external_lex_state = 14}, - [5123] = {.lex_state = 66, .external_lex_state = 14}, - [5124] = {.lex_state = 66, .external_lex_state = 12}, - [5125] = {.lex_state = 66, .external_lex_state = 15}, - [5126] = {.lex_state = 66, .external_lex_state = 16}, + [5119] = {.lex_state = 66, .external_lex_state = 16}, + [5120] = {.lex_state = 66, .external_lex_state = 16}, + [5121] = {.lex_state = 66, .external_lex_state = 16}, + [5122] = {.lex_state = 66, .external_lex_state = 16}, + [5123] = {.lex_state = 66, .external_lex_state = 11}, + [5124] = {.lex_state = 66, .external_lex_state = 11}, + [5125] = {.lex_state = 66, .external_lex_state = 11}, + [5126] = {.lex_state = 66, .external_lex_state = 11}, [5127] = {.lex_state = 66, .external_lex_state = 16}, [5128] = {.lex_state = 66, .external_lex_state = 11}, [5129] = {.lex_state = 66, .external_lex_state = 11}, - [5130] = {.lex_state = 66, .external_lex_state = 20}, - [5131] = {.lex_state = 66, .external_lex_state = 12}, - [5132] = {.lex_state = 66, .external_lex_state = 16}, - [5133] = {.lex_state = 66, .external_lex_state = 20}, - [5134] = {.lex_state = 66, .external_lex_state = 20}, + [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 = 11}, - [5136] = {.lex_state = 66, .external_lex_state = 11}, - [5137] = {.lex_state = 66, .external_lex_state = 11}, - [5138] = {.lex_state = 66, .external_lex_state = 11}, + [5136] = {.lex_state = 66, .external_lex_state = 14}, + [5137] = {.lex_state = 66, .external_lex_state = 15}, + [5138] = {.lex_state = 66, .external_lex_state = 14}, [5139] = {.lex_state = 66, .external_lex_state = 11}, - [5140] = {.lex_state = 66, .external_lex_state = 11}, - [5141] = {.lex_state = 66, .external_lex_state = 11}, - [5142] = {.lex_state = 66, .external_lex_state = 2}, - [5143] = {.lex_state = 66, .external_lex_state = 11}, - [5144] = {.lex_state = 66, .external_lex_state = 12}, + [5140] = {.lex_state = 66, .external_lex_state = 16}, + [5141] = {.lex_state = 66, .external_lex_state = 15}, + [5142] = {.lex_state = 66, .external_lex_state = 15}, + [5143] = {.lex_state = 66, .external_lex_state = 14}, + [5144] = {.lex_state = 66, .external_lex_state = 20}, [5145] = {.lex_state = 66, .external_lex_state = 16}, [5146] = {.lex_state = 66, .external_lex_state = 11}, - [5147] = {.lex_state = 66, .external_lex_state = 12}, + [5147] = {.lex_state = 66, .external_lex_state = 11}, [5148] = {.lex_state = 66, .external_lex_state = 11}, - [5149] = {.lex_state = 66, .external_lex_state = 11}, + [5149] = {.lex_state = 16, .external_lex_state = 19}, [5150] = {.lex_state = 66, .external_lex_state = 11}, - [5151] = {.lex_state = 66, .external_lex_state = 11}, + [5151] = {.lex_state = 66, .external_lex_state = 12}, [5152] = {.lex_state = 66, .external_lex_state = 11}, - [5153] = {.lex_state = 66, .external_lex_state = 15}, + [5153] = {.lex_state = 66, .external_lex_state = 11}, [5154] = {.lex_state = 66, .external_lex_state = 11}, - [5155] = {.lex_state = 66, .external_lex_state = 11}, + [5155] = {.lex_state = 66, .external_lex_state = 14}, [5156] = {.lex_state = 66, .external_lex_state = 11}, [5157] = {.lex_state = 66, .external_lex_state = 11}, - [5158] = {.lex_state = 66, .external_lex_state = 15}, - [5159] = {.lex_state = 66, .external_lex_state = 15}, - [5160] = {.lex_state = 66, .external_lex_state = 11}, - [5161] = {.lex_state = 66, .external_lex_state = 14}, - [5162] = {.lex_state = 66, .external_lex_state = 12}, - [5163] = {.lex_state = 66, .external_lex_state = 14}, - [5164] = {.lex_state = 66, .external_lex_state = 11}, - [5165] = {.lex_state = 66, .external_lex_state = 11}, - [5166] = {.lex_state = 66, .external_lex_state = 12}, - [5167] = {.lex_state = 66, .external_lex_state = 13}, - [5168] = {.lex_state = 66, .external_lex_state = 14}, - [5169] = {.lex_state = 66, .external_lex_state = 12}, - [5170] = {.lex_state = 66, .external_lex_state = 11}, + [5158] = {.lex_state = 66, .external_lex_state = 14}, + [5159] = {.lex_state = 66, .external_lex_state = 14}, + [5160] = {.lex_state = 66, .external_lex_state = 14}, + [5161] = {.lex_state = 66, .external_lex_state = 11}, + [5162] = {.lex_state = 66, .external_lex_state = 16}, + [5163] = {.lex_state = 66, .external_lex_state = 11}, + [5164] = {.lex_state = 66, .external_lex_state = 15}, + [5165] = {.lex_state = 66, .external_lex_state = 14}, + [5166] = {.lex_state = 66, .external_lex_state = 11}, + [5167] = {.lex_state = 15, .external_lex_state = 12}, + [5168] = {.lex_state = 66, .external_lex_state = 11}, + [5169] = {.lex_state = 66, .external_lex_state = 14}, + [5170] = {.lex_state = 66, .external_lex_state = 15}, [5171] = {.lex_state = 66, .external_lex_state = 12}, - [5172] = {.lex_state = 66, .external_lex_state = 12}, - [5173] = {.lex_state = 66, .external_lex_state = 13}, - [5174] = {.lex_state = 66, .external_lex_state = 14}, - [5175] = {.lex_state = 66, .external_lex_state = 12}, + [5172] = {.lex_state = 66, .external_lex_state = 16}, + [5173] = {.lex_state = 66, .external_lex_state = 16}, + [5174] = {.lex_state = 12, .external_lex_state = 12}, + [5175] = {.lex_state = 3, .external_lex_state = 15}, [5176] = {.lex_state = 66, .external_lex_state = 11}, - [5177] = {.lex_state = 66, .external_lex_state = 13}, - [5178] = {.lex_state = 66, .external_lex_state = 14}, - [5179] = {.lex_state = 66, .external_lex_state = 11}, - [5180] = {.lex_state = 66, .external_lex_state = 15}, - [5181] = {.lex_state = 66, .external_lex_state = 14}, - [5182] = {.lex_state = 66, .external_lex_state = 12}, - [5183] = {.lex_state = 66, .external_lex_state = 12}, - [5184] = {.lex_state = 66, .external_lex_state = 12}, + [5177] = {.lex_state = 66, .external_lex_state = 11}, + [5178] = {.lex_state = 3, .external_lex_state = 15}, + [5179] = {.lex_state = 3, .external_lex_state = 15}, + [5180] = {.lex_state = 66, .external_lex_state = 12}, + [5181] = {.lex_state = 66, .external_lex_state = 15}, + [5182] = {.lex_state = 66, .external_lex_state = 11}, + [5183] = {.lex_state = 66, .external_lex_state = 11}, + [5184] = {.lex_state = 66, .external_lex_state = 11}, [5185] = {.lex_state = 66, .external_lex_state = 11}, [5186] = {.lex_state = 66, .external_lex_state = 14}, [5187] = {.lex_state = 66, .external_lex_state = 11}, - [5188] = {.lex_state = 66, .external_lex_state = 2}, - [5189] = {.lex_state = 66, .external_lex_state = 14}, - [5190] = {.lex_state = 66, .external_lex_state = 12}, - [5191] = {.lex_state = 66, .external_lex_state = 16}, + [5188] = {.lex_state = 66, .external_lex_state = 16}, + [5189] = {.lex_state = 66, .external_lex_state = 11}, + [5190] = {.lex_state = 66, .external_lex_state = 11}, + [5191] = {.lex_state = 66, .external_lex_state = 11}, [5192] = {.lex_state = 66, .external_lex_state = 11}, - [5193] = {.lex_state = 66, .external_lex_state = 14}, + [5193] = {.lex_state = 66, .external_lex_state = 11}, [5194] = {.lex_state = 66, .external_lex_state = 11}, [5195] = {.lex_state = 66, .external_lex_state = 11}, - [5196] = {.lex_state = 66, .external_lex_state = 13}, - [5197] = {.lex_state = 66, .external_lex_state = 12}, - [5198] = {.lex_state = 66, .external_lex_state = 11}, - [5199] = {.lex_state = 66, .external_lex_state = 12}, - [5200] = {.lex_state = 66, .external_lex_state = 12}, + [5196] = {.lex_state = 66, .external_lex_state = 20}, + [5197] = {.lex_state = 66, .external_lex_state = 11}, + [5198] = {.lex_state = 66, .external_lex_state = 12}, + [5199] = {.lex_state = 66, .external_lex_state = 11}, + [5200] = {.lex_state = 66, .external_lex_state = 15}, [5201] = {.lex_state = 66, .external_lex_state = 11}, [5202] = {.lex_state = 66, .external_lex_state = 11}, - [5203] = {.lex_state = 66, .external_lex_state = 12}, + [5203] = {.lex_state = 66, .external_lex_state = 16}, [5204] = {.lex_state = 66, .external_lex_state = 12}, - [5205] = {.lex_state = 66, .external_lex_state = 16}, - [5206] = {.lex_state = 66, .external_lex_state = 13}, - [5207] = {.lex_state = 66, .external_lex_state = 12}, - [5208] = {.lex_state = 66, .external_lex_state = 14}, - [5209] = {.lex_state = 66, .external_lex_state = 12}, + [5205] = {.lex_state = 66, .external_lex_state = 11}, + [5206] = {.lex_state = 66, .external_lex_state = 11}, + [5207] = {.lex_state = 66, .external_lex_state = 11}, + [5208] = {.lex_state = 66, .external_lex_state = 11}, + [5209] = {.lex_state = 66, .external_lex_state = 11}, [5210] = {.lex_state = 66, .external_lex_state = 11}, - [5211] = {.lex_state = 66, .external_lex_state = 11}, - [5212] = {.lex_state = 66, .external_lex_state = 14}, - [5213] = {.lex_state = 66, .external_lex_state = 12}, - [5214] = {.lex_state = 66, .external_lex_state = 12}, - [5215] = {.lex_state = 66, .external_lex_state = 11}, - [5216] = {.lex_state = 66, .external_lex_state = 12}, + [5211] = {.lex_state = 66, .external_lex_state = 16}, + [5212] = {.lex_state = 15, .external_lex_state = 12}, + [5213] = {.lex_state = 66, .external_lex_state = 11}, + [5214] = {.lex_state = 66, .external_lex_state = 11}, + [5215] = {.lex_state = 16, .external_lex_state = 19}, + [5216] = {.lex_state = 66, .external_lex_state = 15}, [5217] = {.lex_state = 66, .external_lex_state = 14}, [5218] = {.lex_state = 66, .external_lex_state = 14}, - [5219] = {.lex_state = 66, .external_lex_state = 15}, - [5220] = {.lex_state = 66, .external_lex_state = 12}, - [5221] = {.lex_state = 66, .external_lex_state = 11}, - [5222] = {.lex_state = 66, .external_lex_state = 12}, - [5223] = {.lex_state = 66, .external_lex_state = 12}, - [5224] = {.lex_state = 66, .external_lex_state = 11}, - [5225] = {.lex_state = 66, .external_lex_state = 12}, - [5226] = {.lex_state = 66, .external_lex_state = 12}, - [5227] = {.lex_state = 66, .external_lex_state = 12}, - [5228] = {.lex_state = 66, .external_lex_state = 14}, - [5229] = {.lex_state = 66, .external_lex_state = 14}, - [5230] = {.lex_state = 66, .external_lex_state = 14}, + [5219] = {.lex_state = 66, .external_lex_state = 14}, + [5220] = {.lex_state = 66, .external_lex_state = 14}, + [5221] = {.lex_state = 66, .external_lex_state = 20}, + [5222] = {.lex_state = 66, .external_lex_state = 15}, + [5223] = {.lex_state = 66, .external_lex_state = 11}, + [5224] = {.lex_state = 66, .external_lex_state = 15}, + [5225] = {.lex_state = 66, .external_lex_state = 16}, + [5226] = {.lex_state = 66, .external_lex_state = 16}, + [5227] = {.lex_state = 66, .external_lex_state = 11}, + [5228] = {.lex_state = 66, .external_lex_state = 16}, + [5229] = {.lex_state = 66, .external_lex_state = 11}, + [5230] = {.lex_state = 66, .external_lex_state = 12}, [5231] = {.lex_state = 66, .external_lex_state = 12}, [5232] = {.lex_state = 66, .external_lex_state = 14}, - [5233] = {.lex_state = 66, .external_lex_state = 12}, - [5234] = {.lex_state = 66, .external_lex_state = 14}, - [5235] = {.lex_state = 66, .external_lex_state = 14}, - [5236] = {.lex_state = 66, .external_lex_state = 14}, - [5237] = {.lex_state = 66, .external_lex_state = 2}, - [5238] = {.lex_state = 66, .external_lex_state = 14}, + [5233] = {.lex_state = 66, .external_lex_state = 14}, + [5234] = {.lex_state = 66, .external_lex_state = 12}, + [5235] = {.lex_state = 66, .external_lex_state = 12}, + [5236] = {.lex_state = 66, .external_lex_state = 12}, + [5237] = {.lex_state = 66, .external_lex_state = 12}, + [5238] = {.lex_state = 66, .external_lex_state = 11}, [5239] = {.lex_state = 66, .external_lex_state = 14}, - [5240] = {.lex_state = 66, .external_lex_state = 15}, - [5241] = {.lex_state = 66, .external_lex_state = 11}, - [5242] = {.lex_state = 66, .external_lex_state = 14}, + [5240] = {.lex_state = 66, .external_lex_state = 12}, + [5241] = {.lex_state = 66, .external_lex_state = 12}, + [5242] = {.lex_state = 66, .external_lex_state = 13}, [5243] = {.lex_state = 66, .external_lex_state = 11}, - [5244] = {.lex_state = 66, .external_lex_state = 11}, + [5244] = {.lex_state = 66, .external_lex_state = 12}, [5245] = {.lex_state = 66, .external_lex_state = 14}, - [5246] = {.lex_state = 66, .external_lex_state = 14}, + [5246] = {.lex_state = 66, .external_lex_state = 11}, [5247] = {.lex_state = 66, .external_lex_state = 14}, - [5248] = {.lex_state = 66, .external_lex_state = 14}, - [5249] = {.lex_state = 66, .external_lex_state = 12}, - [5250] = {.lex_state = 66, .external_lex_state = 11}, - [5251] = {.lex_state = 66, .external_lex_state = 14}, - [5252] = {.lex_state = 66, .external_lex_state = 16}, - [5253] = {.lex_state = 66, .external_lex_state = 13}, - [5254] = {.lex_state = 66, .external_lex_state = 11}, + [5248] = {.lex_state = 66, .external_lex_state = 12}, + [5249] = {.lex_state = 66, .external_lex_state = 11}, + [5250] = {.lex_state = 66, .external_lex_state = 12}, + [5251] = {.lex_state = 66, .external_lex_state = 12}, + [5252] = {.lex_state = 66, .external_lex_state = 14}, + [5253] = {.lex_state = 66, .external_lex_state = 12}, + [5254] = {.lex_state = 66, .external_lex_state = 14}, [5255] = {.lex_state = 66, .external_lex_state = 12}, - [5256] = {.lex_state = 66, .external_lex_state = 13}, + [5256] = {.lex_state = 66, .external_lex_state = 14}, [5257] = {.lex_state = 66, .external_lex_state = 12}, - [5258] = {.lex_state = 66, .external_lex_state = 12}, + [5258] = {.lex_state = 66, .external_lex_state = 11}, [5259] = {.lex_state = 66, .external_lex_state = 12}, [5260] = {.lex_state = 66, .external_lex_state = 12}, - [5261] = {.lex_state = 66, .external_lex_state = 12}, + [5261] = {.lex_state = 66, .external_lex_state = 11}, [5262] = {.lex_state = 66, .external_lex_state = 12}, - [5263] = {.lex_state = 66, .external_lex_state = 12}, - [5264] = {.lex_state = 66, .external_lex_state = 12}, - [5265] = {.lex_state = 66, .external_lex_state = 14}, - [5266] = {.lex_state = 66, .external_lex_state = 11}, - [5267] = {.lex_state = 66, .external_lex_state = 12}, - [5268] = {.lex_state = 66, .external_lex_state = 12}, + [5263] = {.lex_state = 66, .external_lex_state = 14}, + [5264] = {.lex_state = 66, .external_lex_state = 14}, + [5265] = {.lex_state = 66, .external_lex_state = 11}, + [5266] = {.lex_state = 66, .external_lex_state = 14}, + [5267] = {.lex_state = 66, .external_lex_state = 13}, + [5268] = {.lex_state = 66, .external_lex_state = 11}, [5269] = {.lex_state = 66, .external_lex_state = 14}, - [5270] = {.lex_state = 66, .external_lex_state = 14}, + [5270] = {.lex_state = 66, .external_lex_state = 11}, [5271] = {.lex_state = 66, .external_lex_state = 14}, - [5272] = {.lex_state = 66, .external_lex_state = 14}, - [5273] = {.lex_state = 66, .external_lex_state = 16}, - [5274] = {.lex_state = 66, .external_lex_state = 12}, - [5275] = {.lex_state = 66, .external_lex_state = 14}, - [5276] = {.lex_state = 66, .external_lex_state = 11}, - [5277] = {.lex_state = 66, .external_lex_state = 11}, - [5278] = {.lex_state = 66, .external_lex_state = 14}, - [5279] = {.lex_state = 66, .external_lex_state = 12}, - [5280] = {.lex_state = 66, .external_lex_state = 11}, - [5281] = {.lex_state = 66, .external_lex_state = 16}, + [5272] = {.lex_state = 66, .external_lex_state = 12}, + [5273] = {.lex_state = 66, .external_lex_state = 11}, + [5274] = {.lex_state = 66, .external_lex_state = 16}, + [5275] = {.lex_state = 66, .external_lex_state = 12}, + [5276] = {.lex_state = 66, .external_lex_state = 16}, + [5277] = {.lex_state = 66, .external_lex_state = 12}, + [5278] = {.lex_state = 66, .external_lex_state = 12}, + [5279] = {.lex_state = 66, .external_lex_state = 11}, + [5280] = {.lex_state = 66, .external_lex_state = 12}, + [5281] = {.lex_state = 66, .external_lex_state = 14}, [5282] = {.lex_state = 66, .external_lex_state = 14}, - [5283] = {.lex_state = 66, .external_lex_state = 2}, - [5284] = {.lex_state = 66, .external_lex_state = 14}, + [5283] = {.lex_state = 66, .external_lex_state = 14}, + [5284] = {.lex_state = 66, .external_lex_state = 11}, [5285] = {.lex_state = 66, .external_lex_state = 14}, - [5286] = {.lex_state = 66, .external_lex_state = 14}, + [5286] = {.lex_state = 66, .external_lex_state = 12}, [5287] = {.lex_state = 66, .external_lex_state = 12}, - [5288] = {.lex_state = 66, .external_lex_state = 14}, - [5289] = {.lex_state = 66, .external_lex_state = 14}, + [5288] = {.lex_state = 66, .external_lex_state = 12}, + [5289] = {.lex_state = 66, .external_lex_state = 12}, [5290] = {.lex_state = 66, .external_lex_state = 12}, [5291] = {.lex_state = 66, .external_lex_state = 14}, - [5292] = {.lex_state = 66, .external_lex_state = 13}, + [5292] = {.lex_state = 66, .external_lex_state = 12}, [5293] = {.lex_state = 66, .external_lex_state = 14}, - [5294] = {.lex_state = 66, .external_lex_state = 12}, - [5295] = {.lex_state = 66, .external_lex_state = 11}, - [5296] = {.lex_state = 66, .external_lex_state = 14}, - [5297] = {.lex_state = 66, .external_lex_state = 11}, - [5298] = {.lex_state = 66, .external_lex_state = 12}, - [5299] = {.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 = 11}, + [5299] = {.lex_state = 66, .external_lex_state = 12}, [5300] = {.lex_state = 66, .external_lex_state = 12}, - [5301] = {.lex_state = 66, .external_lex_state = 12}, - [5302] = {.lex_state = 66, .external_lex_state = 12}, - [5303] = {.lex_state = 66, .external_lex_state = 11}, - [5304] = {.lex_state = 66, .external_lex_state = 12}, - [5305] = {.lex_state = 66, .external_lex_state = 2}, - [5306] = {.lex_state = 66, .external_lex_state = 11}, - [5307] = {.lex_state = 66, .external_lex_state = 12}, - [5308] = {.lex_state = 66, .external_lex_state = 12}, - [5309] = {.lex_state = 66, .external_lex_state = 13}, - [5310] = {.lex_state = 66, .external_lex_state = 13}, - [5311] = {.lex_state = 66, .external_lex_state = 13}, - [5312] = {.lex_state = 66, .external_lex_state = 12}, - [5313] = {.lex_state = 66, .external_lex_state = 12}, + [5301] = {.lex_state = 66, .external_lex_state = 11}, + [5302] = {.lex_state = 66, .external_lex_state = 14}, + [5303] = {.lex_state = 66, .external_lex_state = 2}, + [5304] = {.lex_state = 66, .external_lex_state = 14}, + [5305] = {.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 = 14}, + [5309] = {.lex_state = 66, .external_lex_state = 14}, + [5310] = {.lex_state = 66, .external_lex_state = 14}, + [5311] = {.lex_state = 66, .external_lex_state = 14}, + [5312] = {.lex_state = 66, .external_lex_state = 14}, + [5313] = {.lex_state = 66, .external_lex_state = 11}, [5314] = {.lex_state = 66, .external_lex_state = 11}, - [5315] = {.lex_state = 66, .external_lex_state = 11}, - [5316] = {.lex_state = 66, .external_lex_state = 14}, - [5317] = {.lex_state = 66, .external_lex_state = 14}, - [5318] = {.lex_state = 66, .external_lex_state = 11}, - [5319] = {.lex_state = 66, .external_lex_state = 11}, - [5320] = {.lex_state = 66, .external_lex_state = 14}, - [5321] = {.lex_state = 66, .external_lex_state = 14}, + [5315] = {.lex_state = 66, .external_lex_state = 14}, + [5316] = {.lex_state = 66, .external_lex_state = 11}, + [5317] = {.lex_state = 66, .external_lex_state = 11}, + [5318] = {.lex_state = 66, .external_lex_state = 14}, + [5319] = {.lex_state = 66, .external_lex_state = 16}, + [5320] = {.lex_state = 66, .external_lex_state = 12}, + [5321] = {.lex_state = 66, .external_lex_state = 12}, [5322] = {.lex_state = 66, .external_lex_state = 12}, - [5323] = {.lex_state = 66, .external_lex_state = 13}, - [5324] = {.lex_state = 66, .external_lex_state = 11}, - [5325] = {.lex_state = 66, .external_lex_state = 11}, + [5323] = {.lex_state = 66, .external_lex_state = 12}, + [5324] = {.lex_state = 66, .external_lex_state = 12}, + [5325] = {.lex_state = 66, .external_lex_state = 12}, [5326] = {.lex_state = 66, .external_lex_state = 12}, - [5327] = {.lex_state = 66, .external_lex_state = 11}, - [5328] = {.lex_state = 66, .external_lex_state = 12}, - [5329] = {.lex_state = 66, .external_lex_state = 14}, + [5327] = {.lex_state = 66, .external_lex_state = 14}, + [5328] = {.lex_state = 66, .external_lex_state = 14}, + [5329] = {.lex_state = 66, .external_lex_state = 11}, [5330] = {.lex_state = 66, .external_lex_state = 12}, - [5331] = {.lex_state = 66, .external_lex_state = 14}, - [5332] = {.lex_state = 66, .external_lex_state = 14}, - [5333] = {.lex_state = 66, .external_lex_state = 15}, - [5334] = {.lex_state = 66, .external_lex_state = 11}, - [5335] = {.lex_state = 66, .external_lex_state = 12}, - [5336] = {.lex_state = 66, .external_lex_state = 13}, - [5337] = {.lex_state = 66, .external_lex_state = 14}, - [5338] = {.lex_state = 66, .external_lex_state = 12}, - [5339] = {.lex_state = 66, .external_lex_state = 14}, - [5340] = {.lex_state = 66, .external_lex_state = 11}, - [5341] = {.lex_state = 66, .external_lex_state = 14}, - [5342] = {.lex_state = 66, .external_lex_state = 12}, - [5343] = {.lex_state = 66, .external_lex_state = 14}, - [5344] = {.lex_state = 66, .external_lex_state = 12}, - [5345] = {.lex_state = 66, .external_lex_state = 11}, - [5346] = {.lex_state = 66, .external_lex_state = 11}, - [5347] = {.lex_state = 66, .external_lex_state = 12}, - [5348] = {.lex_state = 66, .external_lex_state = 11}, - [5349] = {.lex_state = 66, .external_lex_state = 16}, - [5350] = {.lex_state = 66, .external_lex_state = 12}, - [5351] = {.lex_state = 66, .external_lex_state = 12}, + [5331] = {.lex_state = 66, .external_lex_state = 13}, + [5332] = {.lex_state = 66, .external_lex_state = 11}, + [5333] = {.lex_state = 66, .external_lex_state = 14}, + [5334] = {.lex_state = 66, .external_lex_state = 12}, + [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 = 14}, + [5339] = {.lex_state = 66, .external_lex_state = 13}, + [5340] = {.lex_state = 66, .external_lex_state = 13}, + [5341] = {.lex_state = 66, .external_lex_state = 12}, + [5342] = {.lex_state = 66, .external_lex_state = 14}, + [5343] = {.lex_state = 66, .external_lex_state = 2}, + [5344] = {.lex_state = 66, .external_lex_state = 14}, + [5345] = {.lex_state = 66, .external_lex_state = 14}, + [5346] = {.lex_state = 66, .external_lex_state = 14}, + [5347] = {.lex_state = 66, .external_lex_state = 14}, + [5348] = {.lex_state = 66, .external_lex_state = 12}, + [5349] = {.lex_state = 66, .external_lex_state = 13}, + [5350] = {.lex_state = 66, .external_lex_state = 14}, + [5351] = {.lex_state = 66, .external_lex_state = 13}, [5352] = {.lex_state = 66, .external_lex_state = 14}, - [5353] = {.lex_state = 66, .external_lex_state = 16}, + [5353] = {.lex_state = 66, .external_lex_state = 14}, [5354] = {.lex_state = 66, .external_lex_state = 12}, - [5355] = {.lex_state = 66, .external_lex_state = 11}, + [5355] = {.lex_state = 66, .external_lex_state = 14}, [5356] = {.lex_state = 66, .external_lex_state = 16}, - [5357] = {.lex_state = 66, .external_lex_state = 11}, - [5358] = {.lex_state = 66, .external_lex_state = 11}, - [5359] = {.lex_state = 66, .external_lex_state = 16}, - [5360] = {.lex_state = 66, .external_lex_state = 16}, - [5361] = {.lex_state = 66, .external_lex_state = 14}, - [5362] = {.lex_state = 66, .external_lex_state = 15}, + [5357] = {.lex_state = 66, .external_lex_state = 14}, + [5358] = {.lex_state = 66, .external_lex_state = 13}, + [5359] = {.lex_state = 66, .external_lex_state = 11}, + [5360] = {.lex_state = 66, .external_lex_state = 12}, + [5361] = {.lex_state = 66, .external_lex_state = 12}, + [5362] = {.lex_state = 66, .external_lex_state = 12}, [5363] = {.lex_state = 66, .external_lex_state = 12}, - [5364] = {.lex_state = 66, .external_lex_state = 16}, - [5365] = {.lex_state = 66, .external_lex_state = 11}, + [5364] = {.lex_state = 66, .external_lex_state = 12}, + [5365] = {.lex_state = 66, .external_lex_state = 14}, [5366] = {.lex_state = 66, .external_lex_state = 16}, - [5367] = {.lex_state = 66, .external_lex_state = 12}, + [5367] = {.lex_state = 66, .external_lex_state = 14}, [5368] = {.lex_state = 66, .external_lex_state = 12}, - [5369] = {.lex_state = 66, .external_lex_state = 12}, + [5369] = {.lex_state = 66, .external_lex_state = 16}, [5370] = {.lex_state = 66, .external_lex_state = 11}, - [5371] = {.lex_state = 66, .external_lex_state = 14}, - [5372] = {.lex_state = 66, .external_lex_state = 11}, - [5373] = {.lex_state = 66, .external_lex_state = 12}, - [5374] = {.lex_state = 66, .external_lex_state = 12}, - [5375] = {.lex_state = 66, .external_lex_state = 12}, + [5371] = {.lex_state = 66, .external_lex_state = 11}, + [5372] = {.lex_state = 66, .external_lex_state = 12}, + [5373] = {.lex_state = 66, .external_lex_state = 14}, + [5374] = {.lex_state = 66, .external_lex_state = 11}, + [5375] = {.lex_state = 66, .external_lex_state = 16}, [5376] = {.lex_state = 66, .external_lex_state = 14}, [5377] = {.lex_state = 66, .external_lex_state = 11}, - [5378] = {.lex_state = 66, .external_lex_state = 11}, - [5379] = {.lex_state = 66, .external_lex_state = 12}, - [5380] = {.lex_state = 66, .external_lex_state = 14}, - [5381] = {.lex_state = 66, .external_lex_state = 12}, - [5382] = {.lex_state = 66, .external_lex_state = 12}, + [5378] = {.lex_state = 66, .external_lex_state = 2}, + [5379] = {.lex_state = 66, .external_lex_state = 11}, + [5380] = {.lex_state = 66, .external_lex_state = 11}, + [5381] = {.lex_state = 66, .external_lex_state = 11}, + [5382] = {.lex_state = 66, .external_lex_state = 16}, [5383] = {.lex_state = 66, .external_lex_state = 14}, - [5384] = {.lex_state = 66, .external_lex_state = 14}, - [5385] = {.lex_state = 66, .external_lex_state = 11}, - [5386] = {.lex_state = 66, .external_lex_state = 14}, - [5387] = {.lex_state = 66, .external_lex_state = 12}, - [5388] = {.lex_state = 66, .external_lex_state = 12}, - [5389] = {.lex_state = 66, .external_lex_state = 14}, - [5390] = {.lex_state = 66, .external_lex_state = 14}, - [5391] = {.lex_state = 66, .external_lex_state = 12}, - [5392] = {.lex_state = 66, .external_lex_state = 14}, - [5393] = {.lex_state = 66, .external_lex_state = 16}, - [5394] = {.lex_state = 66, .external_lex_state = 12}, - [5395] = {.lex_state = 66, .external_lex_state = 11}, - [5396] = {.lex_state = 66, .external_lex_state = 14}, - [5397] = {.lex_state = 66, .external_lex_state = 12}, - [5398] = {.lex_state = 66, .external_lex_state = 14}, - [5399] = {.lex_state = 66, .external_lex_state = 14}, - [5400] = {.lex_state = 66, .external_lex_state = 16}, - [5401] = {.lex_state = 66, .external_lex_state = 14}, - [5402] = {.lex_state = 66, .external_lex_state = 14}, + [5384] = {.lex_state = 66, .external_lex_state = 11}, + [5385] = {.lex_state = 66, .external_lex_state = 13}, + [5386] = {.lex_state = 66, .external_lex_state = 11}, + [5387] = {.lex_state = 66, .external_lex_state = 14}, + [5388] = {.lex_state = 66, .external_lex_state = 13}, + [5389] = {.lex_state = 66, .external_lex_state = 13}, + [5390] = {.lex_state = 66, .external_lex_state = 11}, + [5391] = {.lex_state = 66, .external_lex_state = 11}, + [5392] = {.lex_state = 66, .external_lex_state = 16}, + [5393] = {.lex_state = 66, .external_lex_state = 12}, + [5394] = {.lex_state = 66, .external_lex_state = 14}, + [5395] = {.lex_state = 66, .external_lex_state = 14}, + [5396] = {.lex_state = 66, .external_lex_state = 11}, + [5397] = {.lex_state = 66, .external_lex_state = 11}, + [5398] = {.lex_state = 66, .external_lex_state = 12}, + [5399] = {.lex_state = 66, .external_lex_state = 11}, + [5400] = {.lex_state = 66, .external_lex_state = 15}, + [5401] = {.lex_state = 66, .external_lex_state = 12}, + [5402] = {.lex_state = 66, .external_lex_state = 12}, [5403] = {.lex_state = 66, .external_lex_state = 12}, [5404] = {.lex_state = 66, .external_lex_state = 14}, [5405] = {.lex_state = 66, .external_lex_state = 12}, [5406] = {.lex_state = 66, .external_lex_state = 14}, - [5407] = {.lex_state = 66, .external_lex_state = 14}, - [5408] = {.lex_state = 66, .external_lex_state = 12}, + [5407] = {.lex_state = 66, .external_lex_state = 12}, + [5408] = {.lex_state = 66, .external_lex_state = 16}, [5409] = {.lex_state = 66, .external_lex_state = 14}, - [5410] = {.lex_state = 66, .external_lex_state = 14}, - [5411] = {.lex_state = 66, .external_lex_state = 14}, - [5412] = {.lex_state = 66, .external_lex_state = 14}, - [5413] = {.lex_state = 66, .external_lex_state = 12}, + [5410] = {.lex_state = 66, .external_lex_state = 11}, + [5411] = {.lex_state = 66, .external_lex_state = 12}, + [5412] = {.lex_state = 66, .external_lex_state = 12}, + [5413] = {.lex_state = 66, .external_lex_state = 14}, [5414] = {.lex_state = 66, .external_lex_state = 12}, [5415] = {.lex_state = 66, .external_lex_state = 12}, - [5416] = {.lex_state = 66, .external_lex_state = 12}, + [5416] = {.lex_state = 66, .external_lex_state = 14}, [5417] = {.lex_state = 66, .external_lex_state = 12}, - [5418] = {.lex_state = 66, .external_lex_state = 14}, - [5419] = {.lex_state = 66, .external_lex_state = 12}, - [5420] = {.lex_state = 66, .external_lex_state = 15}, + [5418] = {.lex_state = 66, .external_lex_state = 12}, + [5419] = {.lex_state = 66, .external_lex_state = 11}, + [5420] = {.lex_state = 66, .external_lex_state = 16}, [5421] = {.lex_state = 66, .external_lex_state = 12}, - [5422] = {.lex_state = 66, .external_lex_state = 15}, - [5423] = {.lex_state = 66, .external_lex_state = 12}, - [5424] = {.lex_state = 66, .external_lex_state = 21}, - [5425] = {.lex_state = 66, .external_lex_state = 21}, - [5426] = {.lex_state = 66, .external_lex_state = 12}, + [5422] = {.lex_state = 66, .external_lex_state = 11}, + [5423] = {.lex_state = 66, .external_lex_state = 11}, + [5424] = {.lex_state = 66, .external_lex_state = 14}, + [5425] = {.lex_state = 66, .external_lex_state = 14}, + [5426] = {.lex_state = 66, .external_lex_state = 11}, [5427] = {.lex_state = 66, .external_lex_state = 12}, - [5428] = {.lex_state = 66, .external_lex_state = 12}, - [5429] = {.lex_state = 66, .external_lex_state = 14}, - [5430] = {.lex_state = 66, .external_lex_state = 15}, + [5428] = {.lex_state = 66, .external_lex_state = 14}, + [5429] = {.lex_state = 66, .external_lex_state = 11}, + [5430] = {.lex_state = 66, .external_lex_state = 11}, [5431] = {.lex_state = 66, .external_lex_state = 12}, - [5432] = {.lex_state = 66, .external_lex_state = 16}, + [5432] = {.lex_state = 66, .external_lex_state = 11}, [5433] = {.lex_state = 66, .external_lex_state = 12}, - [5434] = {.lex_state = 66, .external_lex_state = 16}, - [5435] = {.lex_state = 66, .external_lex_state = 16}, + [5434] = {.lex_state = 66, .external_lex_state = 11}, + [5435] = {.lex_state = 66, .external_lex_state = 11}, [5436] = {.lex_state = 66, .external_lex_state = 12}, - [5437] = {.lex_state = 66, .external_lex_state = 16}, - [5438] = {.lex_state = 66, .external_lex_state = 14}, + [5437] = {.lex_state = 66, .external_lex_state = 14}, + [5438] = {.lex_state = 66, .external_lex_state = 13}, [5439] = {.lex_state = 66, .external_lex_state = 12}, - [5440] = {.lex_state = 66, .external_lex_state = 15}, + [5440] = {.lex_state = 66, .external_lex_state = 12}, [5441] = {.lex_state = 66, .external_lex_state = 12}, [5442] = {.lex_state = 66, .external_lex_state = 12}, - [5443] = {.lex_state = 66, .external_lex_state = 16}, + [5443] = {.lex_state = 66, .external_lex_state = 14}, [5444] = {.lex_state = 66, .external_lex_state = 12}, [5445] = {.lex_state = 66, .external_lex_state = 12}, [5446] = {.lex_state = 66, .external_lex_state = 15}, [5447] = {.lex_state = 66, .external_lex_state = 12}, - [5448] = {.lex_state = 66, .external_lex_state = 16}, - [5449] = {.lex_state = 6, .external_lex_state = 12}, - [5450] = {.lex_state = 66, .external_lex_state = 12}, - [5451] = {.lex_state = 66, .external_lex_state = 14}, - [5452] = {.lex_state = 66, .external_lex_state = 16}, + [5448] = {.lex_state = 66, .external_lex_state = 12}, + [5449] = {.lex_state = 66, .external_lex_state = 12}, + [5450] = {.lex_state = 66, .external_lex_state = 13}, + [5451] = {.lex_state = 66, .external_lex_state = 16}, + [5452] = {.lex_state = 66, .external_lex_state = 11}, [5453] = {.lex_state = 66, .external_lex_state = 11}, - [5454] = {.lex_state = 66, .external_lex_state = 15}, + [5454] = {.lex_state = 66, .external_lex_state = 12}, [5455] = {.lex_state = 66, .external_lex_state = 12}, - [5456] = {.lex_state = 66, .external_lex_state = 12}, - [5457] = {.lex_state = 66, .external_lex_state = 12}, + [5456] = {.lex_state = 66, .external_lex_state = 11}, + [5457] = {.lex_state = 66, .external_lex_state = 11}, [5458] = {.lex_state = 66, .external_lex_state = 16}, - [5459] = {.lex_state = 66, .external_lex_state = 12}, - [5460] = {.lex_state = 66, .external_lex_state = 16}, - [5461] = {.lex_state = 66, .external_lex_state = 12}, - [5462] = {.lex_state = 66, .external_lex_state = 12}, + [5459] = {.lex_state = 66, .external_lex_state = 15}, + [5460] = {.lex_state = 66, .external_lex_state = 12}, + [5461] = {.lex_state = 66, .external_lex_state = 15}, + [5462] = {.lex_state = 66, .external_lex_state = 11}, [5463] = {.lex_state = 66, .external_lex_state = 12}, [5464] = {.lex_state = 66, .external_lex_state = 12}, - [5465] = {.lex_state = 66, .external_lex_state = 15}, + [5465] = {.lex_state = 66, .external_lex_state = 11}, [5466] = {.lex_state = 66, .external_lex_state = 12}, [5467] = {.lex_state = 66, .external_lex_state = 15}, [5468] = {.lex_state = 66, .external_lex_state = 12}, [5469] = {.lex_state = 66, .external_lex_state = 12}, - [5470] = {.lex_state = 66, .external_lex_state = 12}, + [5470] = {.lex_state = 66, .external_lex_state = 15}, [5471] = {.lex_state = 66, .external_lex_state = 12}, [5472] = {.lex_state = 66, .external_lex_state = 12}, [5473] = {.lex_state = 66, .external_lex_state = 12}, - [5474] = {.lex_state = 66, .external_lex_state = 12}, - [5475] = {.lex_state = 66, .external_lex_state = 15}, + [5474] = {.lex_state = 66, .external_lex_state = 14}, + [5475] = {.lex_state = 66, .external_lex_state = 16}, [5476] = {.lex_state = 66, .external_lex_state = 12}, - [5477] = {.lex_state = 66, .external_lex_state = 12}, + [5477] = {.lex_state = 66, .external_lex_state = 14}, [5478] = {.lex_state = 66, .external_lex_state = 12}, - [5479] = {.lex_state = 6, .external_lex_state = 12}, - [5480] = {.lex_state = 66, .external_lex_state = 21}, + [5479] = {.lex_state = 66, .external_lex_state = 12}, + [5480] = {.lex_state = 66, .external_lex_state = 14}, [5481] = {.lex_state = 66, .external_lex_state = 12}, [5482] = {.lex_state = 66, .external_lex_state = 12}, - [5483] = {.lex_state = 6, .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 = 12}, - [5486] = {.lex_state = 66, .external_lex_state = 12}, + [5485] = {.lex_state = 66, .external_lex_state = 15}, + [5486] = {.lex_state = 66, .external_lex_state = 15}, [5487] = {.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 = 66, .external_lex_state = 12}, - [5491] = {.lex_state = 66, .external_lex_state = 12}, - [5492] = {.lex_state = 66, .external_lex_state = 12}, + [5489] = {.lex_state = 66, .external_lex_state = 14}, + [5490] = {.lex_state = 66, .external_lex_state = 15}, + [5491] = {.lex_state = 6, .external_lex_state = 12}, + [5492] = {.lex_state = 66, .external_lex_state = 15}, [5493] = {.lex_state = 66, .external_lex_state = 12}, - [5494] = {.lex_state = 66, .external_lex_state = 12}, - [5495] = {.lex_state = 6, .external_lex_state = 12}, + [5494] = {.lex_state = 66, .external_lex_state = 14}, + [5495] = {.lex_state = 66, .external_lex_state = 14}, [5496] = {.lex_state = 66, .external_lex_state = 12}, - [5497] = {.lex_state = 66, .external_lex_state = 14}, - [5498] = {.lex_state = 66, .external_lex_state = 21}, + [5497] = {.lex_state = 66, .external_lex_state = 21}, + [5498] = {.lex_state = 66, .external_lex_state = 12}, [5499] = {.lex_state = 66, .external_lex_state = 12}, - [5500] = {.lex_state = 66, .external_lex_state = 15}, + [5500] = {.lex_state = 66, .external_lex_state = 12}, [5501] = {.lex_state = 66, .external_lex_state = 12}, - [5502] = {.lex_state = 66, .external_lex_state = 15}, + [5502] = {.lex_state = 66, .external_lex_state = 14}, [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 = 6, .external_lex_state = 12}, - [5507] = {.lex_state = 6, .external_lex_state = 12}, + [5506] = {.lex_state = 66, .external_lex_state = 14}, + [5507] = {.lex_state = 66, .external_lex_state = 21}, [5508] = {.lex_state = 66, .external_lex_state = 12}, - [5509] = {.lex_state = 66, .external_lex_state = 16}, - [5510] = {.lex_state = 66, .external_lex_state = 14}, - [5511] = {.lex_state = 66, .external_lex_state = 15}, - [5512] = {.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 = 14}, + [5512] = {.lex_state = 6, .external_lex_state = 12}, [5513] = {.lex_state = 66, .external_lex_state = 12}, [5514] = {.lex_state = 66, .external_lex_state = 12}, [5515] = {.lex_state = 66, .external_lex_state = 12}, - [5516] = {.lex_state = 66, .external_lex_state = 12}, - [5517] = {.lex_state = 66, .external_lex_state = 15}, - [5518] = {.lex_state = 66, .external_lex_state = 12}, - [5519] = {.lex_state = 66, .external_lex_state = 12}, - [5520] = {.lex_state = 6, .external_lex_state = 12}, + [5516] = {.lex_state = 66, .external_lex_state = 14}, + [5517] = {.lex_state = 66, .external_lex_state = 14}, + [5518] = {.lex_state = 66, .external_lex_state = 14}, + [5519] = {.lex_state = 66, .external_lex_state = 14}, + [5520] = {.lex_state = 66, .external_lex_state = 12}, [5521] = {.lex_state = 66, .external_lex_state = 12}, - [5522] = {.lex_state = 66, .external_lex_state = 12}, + [5522] = {.lex_state = 66, .external_lex_state = 15}, [5523] = {.lex_state = 66, .external_lex_state = 12}, [5524] = {.lex_state = 66, .external_lex_state = 12}, - [5525] = {.lex_state = 66, .external_lex_state = 12}, - [5526] = {.lex_state = 66, .external_lex_state = 12}, - [5527] = {.lex_state = 66, .external_lex_state = 14}, - [5528] = {.lex_state = 66, .external_lex_state = 15}, + [5525] = {.lex_state = 66, .external_lex_state = 21}, + [5526] = {.lex_state = 66, .external_lex_state = 16}, + [5527] = {.lex_state = 66, .external_lex_state = 13}, + [5528] = {.lex_state = 66, .external_lex_state = 16}, [5529] = {.lex_state = 66, .external_lex_state = 12}, - [5530] = {.lex_state = 66, .external_lex_state = 12}, - [5531] = {.lex_state = 6, .external_lex_state = 12}, - [5532] = {.lex_state = 66, .external_lex_state = 16}, + [5530] = {.lex_state = 66, .external_lex_state = 21}, + [5531] = {.lex_state = 66, .external_lex_state = 12}, + [5532] = {.lex_state = 66, .external_lex_state = 12}, [5533] = {.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}, - [5537] = {.lex_state = 66, .external_lex_state = 14}, + [5537] = {.lex_state = 66, .external_lex_state = 15}, [5538] = {.lex_state = 66, .external_lex_state = 14}, [5539] = {.lex_state = 66, .external_lex_state = 12}, [5540] = {.lex_state = 66, .external_lex_state = 12}, [5541] = {.lex_state = 66, .external_lex_state = 12}, - [5542] = {.lex_state = 66, .external_lex_state = 12}, - [5543] = {.lex_state = 6, .external_lex_state = 12}, - [5544] = {.lex_state = 66, .external_lex_state = 16}, - [5545] = {.lex_state = 66, .external_lex_state = 16}, - [5546] = {.lex_state = 66, .external_lex_state = 12}, - [5547] = {.lex_state = 66, .external_lex_state = 14}, - [5548] = {.lex_state = 6, .external_lex_state = 12}, - [5549] = {.lex_state = 66, .external_lex_state = 15}, + [5542] = {.lex_state = 66, .external_lex_state = 14}, + [5543] = {.lex_state = 66, .external_lex_state = 15}, + [5544] = {.lex_state = 66, .external_lex_state = 12}, + [5545] = {.lex_state = 66, .external_lex_state = 14}, + [5546] = {.lex_state = 66, .external_lex_state = 14}, + [5547] = {.lex_state = 6, .external_lex_state = 12}, + [5548] = {.lex_state = 66, .external_lex_state = 21}, + [5549] = {.lex_state = 66, .external_lex_state = 12}, [5550] = {.lex_state = 66, .external_lex_state = 15}, [5551] = {.lex_state = 66, .external_lex_state = 12}, [5552] = {.lex_state = 66, .external_lex_state = 12}, - [5553] = {.lex_state = 66, .external_lex_state = 14}, + [5553] = {.lex_state = 66, .external_lex_state = 12}, [5554] = {.lex_state = 66, .external_lex_state = 12}, [5555] = {.lex_state = 66, .external_lex_state = 12}, [5556] = {.lex_state = 66, .external_lex_state = 12}, - [5557] = {.lex_state = 66, .external_lex_state = 14}, - [5558] = {.lex_state = 66, .external_lex_state = 16}, - [5559] = {.lex_state = 66, .external_lex_state = 12}, - [5560] = {.lex_state = 66, .external_lex_state = 12}, + [5557] = {.lex_state = 66, .external_lex_state = 15}, + [5558] = {.lex_state = 66, .external_lex_state = 12}, + [5559] = {.lex_state = 6, .external_lex_state = 12}, + [5560] = {.lex_state = 6, .external_lex_state = 12}, [5561] = {.lex_state = 66, .external_lex_state = 12}, - [5562] = {.lex_state = 66, .external_lex_state = 21}, - [5563] = {.lex_state = 66, .external_lex_state = 14}, - [5564] = {.lex_state = 66, .external_lex_state = 16}, - [5565] = {.lex_state = 66, .external_lex_state = 15}, + [5562] = {.lex_state = 66, .external_lex_state = 12}, + [5563] = {.lex_state = 66, .external_lex_state = 16}, + [5564] = {.lex_state = 66, .external_lex_state = 12}, + [5565] = {.lex_state = 66, .external_lex_state = 12}, [5566] = {.lex_state = 66, .external_lex_state = 12}, - [5567] = {.lex_state = 66, .external_lex_state = 14}, + [5567] = {.lex_state = 4, .external_lex_state = 12}, [5568] = {.lex_state = 66, .external_lex_state = 12}, [5569] = {.lex_state = 66, .external_lex_state = 12}, - [5570] = {.lex_state = 66, .external_lex_state = 15}, + [5570] = {.lex_state = 66, .external_lex_state = 16}, [5571] = {.lex_state = 66, .external_lex_state = 12}, [5572] = {.lex_state = 66, .external_lex_state = 12}, [5573] = {.lex_state = 66, .external_lex_state = 12}, [5574] = {.lex_state = 66, .external_lex_state = 12}, - [5575] = {.lex_state = 66, .external_lex_state = 12}, + [5575] = {.lex_state = 6, .external_lex_state = 12}, [5576] = {.lex_state = 66, .external_lex_state = 12}, - [5577] = {.lex_state = 66, .external_lex_state = 21}, - [5578] = {.lex_state = 66, .external_lex_state = 15}, + [5577] = {.lex_state = 66, .external_lex_state = 14}, + [5578] = {.lex_state = 66, .external_lex_state = 12}, [5579] = {.lex_state = 66, .external_lex_state = 12}, - [5580] = {.lex_state = 66, .external_lex_state = 12}, - [5581] = {.lex_state = 66, .external_lex_state = 13}, + [5580] = {.lex_state = 66, .external_lex_state = 14}, + [5581] = {.lex_state = 6, .external_lex_state = 12}, [5582] = {.lex_state = 66, .external_lex_state = 12}, - [5583] = {.lex_state = 66, .external_lex_state = 13}, + [5583] = {.lex_state = 66, .external_lex_state = 16}, [5584] = {.lex_state = 66, .external_lex_state = 12}, [5585] = {.lex_state = 66, .external_lex_state = 16}, - [5586] = {.lex_state = 66, .external_lex_state = 14}, + [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 = 14}, - [5590] = {.lex_state = 6, .external_lex_state = 12}, - [5591] = {.lex_state = 4, .external_lex_state = 12}, - [5592] = {.lex_state = 66, .external_lex_state = 12}, - [5593] = {.lex_state = 66, .external_lex_state = 15}, - [5594] = {.lex_state = 66, .external_lex_state = 12}, + [5588] = {.lex_state = 6, .external_lex_state = 12}, + [5589] = {.lex_state = 66, .external_lex_state = 12}, + [5590] = {.lex_state = 66, .external_lex_state = 12}, + [5591] = {.lex_state = 66, .external_lex_state = 15}, + [5592] = {.lex_state = 66, .external_lex_state = 13}, + [5593] = {.lex_state = 6, .external_lex_state = 12}, + [5594] = {.lex_state = 66, .external_lex_state = 14}, [5595] = {.lex_state = 66, .external_lex_state = 14}, - [5596] = {.lex_state = 66, .external_lex_state = 14}, - [5597] = {.lex_state = 66, .external_lex_state = 12}, - [5598] = {.lex_state = 66, .external_lex_state = 12}, - [5599] = {.lex_state = 66, .external_lex_state = 12}, - [5600] = {.lex_state = 66, .external_lex_state = 14}, - [5601] = {.lex_state = 66, .external_lex_state = 12}, + [5596] = {.lex_state = 66, .external_lex_state = 12}, + [5597] = {.lex_state = 66, .external_lex_state = 14}, + [5598] = {.lex_state = 66, .external_lex_state = 16}, + [5599] = {.lex_state = 66, .external_lex_state = 15}, + [5600] = {.lex_state = 66, .external_lex_state = 12}, + [5601] = {.lex_state = 66, .external_lex_state = 16}, [5602] = {.lex_state = 66, .external_lex_state = 12}, [5603] = {.lex_state = 66, .external_lex_state = 12}, - [5604] = {.lex_state = 66, .external_lex_state = 12}, - [5605] = {.lex_state = 66, .external_lex_state = 16}, - [5606] = {.lex_state = 66, .external_lex_state = 12}, + [5604] = {.lex_state = 66, .external_lex_state = 16}, + [5605] = {.lex_state = 66, .external_lex_state = 15}, + [5606] = {.lex_state = 66, .external_lex_state = 14}, [5607] = {.lex_state = 66, .external_lex_state = 12}, - [5608] = {.lex_state = 66, .external_lex_state = 13}, + [5608] = {.lex_state = 66, .external_lex_state = 12}, [5609] = {.lex_state = 66, .external_lex_state = 12}, - [5610] = {.lex_state = 66, .external_lex_state = 21}, - [5611] = {.lex_state = 66, .external_lex_state = 14}, + [5610] = {.lex_state = 66, .external_lex_state = 15}, + [5611] = {.lex_state = 66, .external_lex_state = 12}, [5612] = {.lex_state = 66, .external_lex_state = 12}, [5613] = {.lex_state = 66, .external_lex_state = 12}, - [5614] = {.lex_state = 66, .external_lex_state = 12}, - [5615] = {.lex_state = 66, .external_lex_state = 15}, - [5616] = {.lex_state = 66, .external_lex_state = 13}, - [5617] = {.lex_state = 66, .external_lex_state = 15}, - [5618] = {.lex_state = 66, .external_lex_state = 12}, - [5619] = {.lex_state = 66, .external_lex_state = 12}, - [5620] = {.lex_state = 66, .external_lex_state = 15}, - [5621] = {.lex_state = 66, .external_lex_state = 15}, - [5622] = {.lex_state = 66, .external_lex_state = 21}, + [5614] = {.lex_state = 6, .external_lex_state = 12}, + [5615] = {.lex_state = 66, .external_lex_state = 14}, + [5616] = {.lex_state = 66, .external_lex_state = 14}, + [5617] = {.lex_state = 66, .external_lex_state = 16}, + [5618] = {.lex_state = 66, .external_lex_state = 14}, + [5619] = {.lex_state = 66, .external_lex_state = 15}, + [5620] = {.lex_state = 66, .external_lex_state = 14}, + [5621] = {.lex_state = 66, .external_lex_state = 14}, + [5622] = {.lex_state = 66, .external_lex_state = 12}, [5623] = {.lex_state = 66, .external_lex_state = 12}, - [5624] = {.lex_state = 66, .external_lex_state = 21}, - [5625] = {.lex_state = 66, .external_lex_state = 12}, - [5626] = {.lex_state = 66, .external_lex_state = 12}, + [5624] = {.lex_state = 66, .external_lex_state = 14}, + [5625] = {.lex_state = 66, .external_lex_state = 15}, + [5626] = {.lex_state = 66, .external_lex_state = 13}, [5627] = {.lex_state = 66, .external_lex_state = 12}, - [5628] = {.lex_state = 66, .external_lex_state = 14}, - [5629] = {.lex_state = 66, .external_lex_state = 12}, - [5630] = {.lex_state = 66, .external_lex_state = 16}, + [5628] = {.lex_state = 66, .external_lex_state = 12}, + [5629] = {.lex_state = 66, .external_lex_state = 15}, + [5630] = {.lex_state = 66, .external_lex_state = 15}, [5631] = {.lex_state = 66, .external_lex_state = 12}, - [5632] = {.lex_state = 66, .external_lex_state = 21}, - [5633] = {.lex_state = 66, .external_lex_state = 12}, - [5634] = {.lex_state = 66, .external_lex_state = 21}, - [5635] = {.lex_state = 66, .external_lex_state = 21}, - [5636] = {.lex_state = 66, .external_lex_state = 12}, + [5632] = {.lex_state = 66, .external_lex_state = 12}, + [5633] = {.lex_state = 66, .external_lex_state = 21}, + [5634] = {.lex_state = 66, .external_lex_state = 15}, + [5635] = {.lex_state = 66, .external_lex_state = 12}, + [5636] = {.lex_state = 66, .external_lex_state = 16}, [5637] = {.lex_state = 66, .external_lex_state = 14}, [5638] = {.lex_state = 66, .external_lex_state = 15}, [5639] = {.lex_state = 66, .external_lex_state = 12}, - [5640] = {.lex_state = 66, .external_lex_state = 15}, - [5641] = {.lex_state = 6, .external_lex_state = 12}, + [5640] = {.lex_state = 66, .external_lex_state = 12}, + [5641] = {.lex_state = 66, .external_lex_state = 14}, [5642] = {.lex_state = 66, .external_lex_state = 12}, - [5643] = {.lex_state = 66, .external_lex_state = 12}, - [5644] = {.lex_state = 66, .external_lex_state = 12}, - [5645] = {.lex_state = 66, .external_lex_state = 14}, - [5646] = {.lex_state = 66, .external_lex_state = 14}, - [5647] = {.lex_state = 66, .external_lex_state = 14}, + [5643] = {.lex_state = 66, .external_lex_state = 14}, + [5644] = {.lex_state = 66, .external_lex_state = 14}, + [5645] = {.lex_state = 66, .external_lex_state = 12}, + [5646] = {.lex_state = 66, .external_lex_state = 12}, + [5647] = {.lex_state = 66, .external_lex_state = 12}, [5648] = {.lex_state = 66, .external_lex_state = 14}, - [5649] = {.lex_state = 66, .external_lex_state = 15}, - [5650] = {.lex_state = 66, .external_lex_state = 14}, - [5651] = {.lex_state = 66, .external_lex_state = 16}, - [5652] = {.lex_state = 66, .external_lex_state = 12}, - [5653] = {.lex_state = 66, .external_lex_state = 15}, - [5654] = {.lex_state = 66, .external_lex_state = 12}, - [5655] = {.lex_state = 66, .external_lex_state = 14}, + [5649] = {.lex_state = 66, .external_lex_state = 12}, + [5650] = {.lex_state = 66, .external_lex_state = 16}, + [5651] = {.lex_state = 66, .external_lex_state = 12}, + [5652] = {.lex_state = 66, .external_lex_state = 15}, + [5653] = {.lex_state = 66, .external_lex_state = 12}, + [5654] = {.lex_state = 66, .external_lex_state = 21}, + [5655] = {.lex_state = 66, .external_lex_state = 12}, [5656] = {.lex_state = 66, .external_lex_state = 12}, - [5657] = {.lex_state = 66, .external_lex_state = 15}, + [5657] = {.lex_state = 6, .external_lex_state = 12}, [5658] = {.lex_state = 66, .external_lex_state = 12}, [5659] = {.lex_state = 66, .external_lex_state = 12}, [5660] = {.lex_state = 66, .external_lex_state = 13}, - [5661] = {.lex_state = 66, .external_lex_state = 15}, - [5662] = {.lex_state = 66, .external_lex_state = 15}, - [5663] = {.lex_state = 66, .external_lex_state = 12}, - [5664] = {.lex_state = 66, .external_lex_state = 14}, + [5661] = {.lex_state = 66, .external_lex_state = 12}, + [5662] = {.lex_state = 66, .external_lex_state = 12}, + [5663] = {.lex_state = 66, .external_lex_state = 14}, + [5664] = {.lex_state = 66, .external_lex_state = 15}, [5665] = {.lex_state = 66, .external_lex_state = 12}, [5666] = {.lex_state = 66, .external_lex_state = 12}, [5667] = {.lex_state = 66, .external_lex_state = 12}, @@ -18795,59 +18990,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5669] = {.lex_state = 66, .external_lex_state = 12}, [5670] = {.lex_state = 66, .external_lex_state = 14}, [5671] = {.lex_state = 66, .external_lex_state = 12}, - [5672] = {.lex_state = 66, .external_lex_state = 16}, + [5672] = {.lex_state = 66, .external_lex_state = 12}, [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 = 12}, - [5677] = {.lex_state = 66, .external_lex_state = 14}, - [5678] = {.lex_state = 66, .external_lex_state = 16}, - [5679] = {.lex_state = 6, .external_lex_state = 12}, + [5675] = {.lex_state = 66, .external_lex_state = 15}, + [5676] = {.lex_state = 66, .external_lex_state = 14}, + [5677] = {.lex_state = 66, .external_lex_state = 12}, + [5678] = {.lex_state = 66, .external_lex_state = 21}, + [5679] = {.lex_state = 66, .external_lex_state = 12}, [5680] = {.lex_state = 66, .external_lex_state = 12}, - [5681] = {.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 = 14}, - [5685] = {.lex_state = 6, .external_lex_state = 12}, - [5686] = {.lex_state = 66, .external_lex_state = 12}, + [5684] = {.lex_state = 66, .external_lex_state = 12}, + [5685] = {.lex_state = 66, .external_lex_state = 12}, + [5686] = {.lex_state = 66, .external_lex_state = 16}, [5687] = {.lex_state = 66, .external_lex_state = 12}, - [5688] = {.lex_state = 66, .external_lex_state = 12}, - [5689] = {.lex_state = 66, .external_lex_state = 15}, - [5690] = {.lex_state = 66, .external_lex_state = 12}, - [5691] = {.lex_state = 66, .external_lex_state = 12}, - [5692] = {.lex_state = 66, .external_lex_state = 13}, - [5693] = {.lex_state = 66, .external_lex_state = 12}, + [5688] = {.lex_state = 66, .external_lex_state = 15}, + [5689] = {.lex_state = 6, .external_lex_state = 12}, + [5690] = {.lex_state = 66, .external_lex_state = 16}, + [5691] = {.lex_state = 66, .external_lex_state = 21}, + [5692] = {.lex_state = 66, .external_lex_state = 12}, + [5693] = {.lex_state = 66, .external_lex_state = 21}, [5694] = {.lex_state = 66, .external_lex_state = 12}, - [5695] = {.lex_state = 66, .external_lex_state = 12}, - [5696] = {.lex_state = 66, .external_lex_state = 15}, + [5695] = {.lex_state = 66, .external_lex_state = 16}, + [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 = 16}, - [5700] = {.lex_state = 66, .external_lex_state = 14}, - [5701] = {.lex_state = 66, .external_lex_state = 12}, - [5702] = {.lex_state = 66, .external_lex_state = 15}, + [5699] = {.lex_state = 66, .external_lex_state = 14}, + [5700] = {.lex_state = 6, .external_lex_state = 12}, + [5701] = {.lex_state = 66, .external_lex_state = 15}, + [5702] = {.lex_state = 66, .external_lex_state = 12}, [5703] = {.lex_state = 66, .external_lex_state = 12}, [5704] = {.lex_state = 66, .external_lex_state = 21}, - [5705] = {.lex_state = 66, .external_lex_state = 12}, + [5705] = {.lex_state = 66, .external_lex_state = 21}, [5706] = {.lex_state = 66, .external_lex_state = 12}, - [5707] = {.lex_state = 66, .external_lex_state = 12}, + [5707] = {.lex_state = 66, .external_lex_state = 15}, [5708] = {.lex_state = 66, .external_lex_state = 12}, - [5709] = {.lex_state = 66, .external_lex_state = 15}, - [5710] = {.lex_state = 66, .external_lex_state = 12}, - [5711] = {.lex_state = 66, .external_lex_state = 12}, + [5709] = {.lex_state = 66, .external_lex_state = 16}, + [5710] = {.lex_state = 66, .external_lex_state = 15}, + [5711] = {.lex_state = 66, .external_lex_state = 15}, [5712] = {.lex_state = 66, .external_lex_state = 12}, - [5713] = {.lex_state = 66, .external_lex_state = 12}, - [5714] = {.lex_state = 66, .external_lex_state = 14}, - [5715] = {.lex_state = 66, .external_lex_state = 15}, + [5713] = {.lex_state = 66, .external_lex_state = 16}, + [5714] = {.lex_state = 66, .external_lex_state = 13}, + [5715] = {.lex_state = 66, .external_lex_state = 12}, [5716] = {.lex_state = 66, .external_lex_state = 12}, - [5717] = {.lex_state = 66, .external_lex_state = 12}, + [5717] = {.lex_state = 66, .external_lex_state = 15}, [5718] = {.lex_state = 66, .external_lex_state = 12}, - [5719] = {.lex_state = 66, .external_lex_state = 14}, - [5720] = {.lex_state = 66, .external_lex_state = 12}, - [5721] = {.lex_state = 66, .external_lex_state = 12}, + [5719] = {.lex_state = 66, .external_lex_state = 12}, + [5720] = {.lex_state = 66, .external_lex_state = 14}, + [5721] = {.lex_state = 6, .external_lex_state = 12}, [5722] = {.lex_state = 66, .external_lex_state = 12}, [5723] = {.lex_state = 66, .external_lex_state = 12}, - [5724] = {.lex_state = 66, .external_lex_state = 12}, + [5724] = {.lex_state = 66, .external_lex_state = 14}, [5725] = {.lex_state = 66, .external_lex_state = 12}, [5726] = {.lex_state = 66, .external_lex_state = 12}, [5727] = {.lex_state = 66, .external_lex_state = 12}, @@ -18855,29 +19050,101 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5729] = {.lex_state = 66, .external_lex_state = 12}, [5730] = {.lex_state = 66, .external_lex_state = 12}, [5731] = {.lex_state = 66, .external_lex_state = 12}, - [5732] = {.lex_state = 66, .external_lex_state = 12}, + [5732] = {.lex_state = 66, .external_lex_state = 13}, [5733] = {.lex_state = 66, .external_lex_state = 12}, - [5734] = {.lex_state = 66, .external_lex_state = 14}, - [5735] = {.lex_state = 66, .external_lex_state = 16}, - [5736] = {.lex_state = 6, .external_lex_state = 12}, + [5734] = {.lex_state = 66, .external_lex_state = 16}, + [5735] = {.lex_state = 66, .external_lex_state = 15}, + [5736] = {.lex_state = 66, .external_lex_state = 14}, [5737] = {.lex_state = 6, .external_lex_state = 12}, [5738] = {.lex_state = 66, .external_lex_state = 12}, - [5739] = {.lex_state = 66, .external_lex_state = 16}, - [5740] = {.lex_state = 66, .external_lex_state = 12}, - [5741] = {.lex_state = 6, .external_lex_state = 12}, + [5739] = {.lex_state = 66, .external_lex_state = 15}, + [5740] = {.lex_state = 66, .external_lex_state = 14}, + [5741] = {.lex_state = 66, .external_lex_state = 12}, [5742] = {.lex_state = 66, .external_lex_state = 12}, - [5743] = {.lex_state = 6, .external_lex_state = 12}, + [5743] = {.lex_state = 66, .external_lex_state = 12}, [5744] = {.lex_state = 66, .external_lex_state = 12}, - [5745] = {.lex_state = 66, .external_lex_state = 12}, + [5745] = {.lex_state = 66, .external_lex_state = 16}, [5746] = {.lex_state = 66, .external_lex_state = 12}, [5747] = {.lex_state = 66, .external_lex_state = 12}, - [5748] = {.lex_state = 66, .external_lex_state = 15}, - [5749] = {.lex_state = 6, .external_lex_state = 12}, - [5750] = {.lex_state = 6, .external_lex_state = 12}, - [5751] = {.lex_state = 66, .external_lex_state = 12}, - [5752] = {.lex_state = 66, .external_lex_state = 14}, - [5753] = {.lex_state = 66, .external_lex_state = 12}, - [5754] = {.lex_state = 66, .external_lex_state = 12}, + [5748] = {.lex_state = 66, .external_lex_state = 12}, + [5749] = {.lex_state = 66, .external_lex_state = 16}, + [5750] = {.lex_state = 66, .external_lex_state = 12}, + [5751] = {.lex_state = 6, .external_lex_state = 12}, + [5752] = {.lex_state = 66, .external_lex_state = 12}, + [5753] = {.lex_state = 66, .external_lex_state = 14}, + [5754] = {.lex_state = 66, .external_lex_state = 16}, + [5755] = {.lex_state = 66, .external_lex_state = 14}, + [5756] = {.lex_state = 66, .external_lex_state = 14}, + [5757] = {.lex_state = 6, .external_lex_state = 12}, + [5758] = {.lex_state = 66, .external_lex_state = 12}, + [5759] = {.lex_state = 66, .external_lex_state = 12}, + [5760] = {.lex_state = 66, .external_lex_state = 12}, + [5761] = {.lex_state = 66, .external_lex_state = 15}, + [5762] = {.lex_state = 66, .external_lex_state = 12}, + [5763] = {.lex_state = 66, .external_lex_state = 15}, + [5764] = {.lex_state = 66, .external_lex_state = 12}, + [5765] = {.lex_state = 66, .external_lex_state = 16}, + [5766] = {.lex_state = 66, .external_lex_state = 12}, + [5767] = {.lex_state = 66, .external_lex_state = 12}, + [5768] = {.lex_state = 66, .external_lex_state = 21}, + [5769] = {.lex_state = 66, .external_lex_state = 11}, + [5770] = {.lex_state = 66, .external_lex_state = 12}, + [5771] = {.lex_state = 6, .external_lex_state = 12}, + [5772] = {.lex_state = 66, .external_lex_state = 15}, + [5773] = {.lex_state = 66, .external_lex_state = 12}, + [5774] = {.lex_state = 66, .external_lex_state = 14}, + [5775] = {.lex_state = 66, .external_lex_state = 12}, + [5776] = {.lex_state = 66, .external_lex_state = 12}, + [5777] = {.lex_state = 66, .external_lex_state = 12}, + [5778] = {.lex_state = 66, .external_lex_state = 12}, + [5779] = {.lex_state = 66, .external_lex_state = 12}, + [5780] = {.lex_state = 66, .external_lex_state = 12}, + [5781] = {.lex_state = 66, .external_lex_state = 12}, + [5782] = {.lex_state = 66, .external_lex_state = 12}, + [5783] = {.lex_state = 66, .external_lex_state = 12}, + [5784] = {.lex_state = 66, .external_lex_state = 12}, + [5785] = {.lex_state = 66, .external_lex_state = 12}, + [5786] = {.lex_state = 66, .external_lex_state = 12}, + [5787] = {.lex_state = 66, .external_lex_state = 12}, + [5788] = {.lex_state = 66, .external_lex_state = 14}, + [5789] = {.lex_state = 66, .external_lex_state = 12}, + [5790] = {.lex_state = 66, .external_lex_state = 12}, + [5791] = {.lex_state = 66, .external_lex_state = 16}, + [5792] = {.lex_state = 66, .external_lex_state = 12}, + [5793] = {.lex_state = 66, .external_lex_state = 12}, + [5794] = {.lex_state = 66, .external_lex_state = 12}, + [5795] = {.lex_state = 66, .external_lex_state = 12}, + [5796] = {.lex_state = 66, .external_lex_state = 12}, + [5797] = {.lex_state = 66, .external_lex_state = 12}, + [5798] = {.lex_state = 66, .external_lex_state = 12}, + [5799] = {.lex_state = 66, .external_lex_state = 12}, + [5800] = {.lex_state = 6, .external_lex_state = 12}, + [5801] = {.lex_state = 66, .external_lex_state = 12}, + [5802] = {.lex_state = 66, .external_lex_state = 12}, + [5803] = {.lex_state = 66, .external_lex_state = 12}, + [5804] = {.lex_state = 66, .external_lex_state = 15}, + [5805] = {.lex_state = 66, .external_lex_state = 15}, + [5806] = {.lex_state = 66, .external_lex_state = 12}, + [5807] = {.lex_state = 66, .external_lex_state = 14}, + [5808] = {.lex_state = 66, .external_lex_state = 12}, + [5809] = {.lex_state = 66, .external_lex_state = 15}, + [5810] = {.lex_state = 66, .external_lex_state = 12}, + [5811] = {.lex_state = 66, .external_lex_state = 12}, + [5812] = {.lex_state = 66, .external_lex_state = 12}, + [5813] = {.lex_state = 66, .external_lex_state = 12}, + [5814] = {.lex_state = 66, .external_lex_state = 12}, + [5815] = {.lex_state = 66, .external_lex_state = 12}, + [5816] = {.lex_state = 66, .external_lex_state = 12}, + [5817] = {.lex_state = 66, .external_lex_state = 12}, + [5818] = {.lex_state = 66, .external_lex_state = 12}, + [5819] = {.lex_state = 66, .external_lex_state = 12}, + [5820] = {.lex_state = 66, .external_lex_state = 15}, + [5821] = {.lex_state = 66, .external_lex_state = 12}, + [5822] = {.lex_state = 6, .external_lex_state = 12}, + [5823] = {.lex_state = 66, .external_lex_state = 12}, + [5824] = {.lex_state = 66, .external_lex_state = 12}, + [5825] = {.lex_state = 66, .external_lex_state = 12}, + [5826] = {.lex_state = 66, .external_lex_state = 16}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -18914,6 +19181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), + [anon_sym_by] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), [anon_sym_except] = ACTIONS(1), @@ -19049,85 +19317,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(5462), - [sym__statement] = STATE(198), - [sym__simple_statements] = STATE(198), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [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(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_class_definition] = STATE(198), - [sym_decorated_definition] = STATE(198), - [sym_decorator] = STATE(3226), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_run_directive] = STATE(200), - [sym_property_definition] = STATE(198), - [sym_include_statement] = STATE(4723), - [sym_def_statement] = STATE(198), - [sym_cdef_statement] = STATE(198), - [sym_ctypedef_statement] = STATE(198), - [sym_storageclass] = STATE(3799), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(198), - [aux_sym_class_definition_repeat1] = STATE(3799), - [aux_sym_decorated_definition_repeat1] = STATE(3226), + [sym_module] = STATE(5565), + [sym__statement] = STATE(209), + [sym__simple_statements] = STATE(209), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [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(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_class_definition] = STATE(209), + [sym_decorated_definition] = STATE(209), + [sym_decorator] = STATE(3277), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_run_directive] = STATE(210), + [sym_property_definition] = STATE(209), + [sym_include_statement] = STATE(4836), + [sym_def_statement] = STATE(209), + [sym_cdef_statement] = STATE(209), + [sym_ctypedef_statement] = STATE(209), + [sym_storageclass] = STATE(3917), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(209), + [aux_sym_class_definition_repeat1] = STATE(3917), + [aux_sym_decorated_definition_repeat1] = STATE(3277), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -19193,84 +19461,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [2] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1085), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(576), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19335,84 +19603,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(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3898), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(206), + [sym__simple_statements] = STATE(206), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [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(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(206), + [sym_decorated_definition] = STATE(206), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3972), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(206), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(206), + [sym_cdef_statement] = STATE(206), + [sym_ctypedef_statement] = STATE(206), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(206), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19477,84 +19745,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [4] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(914), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(206), + [sym__simple_statements] = STATE(206), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [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(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(206), + [sym_decorated_definition] = STATE(206), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3980), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(206), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(206), + [sym_cdef_statement] = STATE(206), + [sym_ctypedef_statement] = STATE(206), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(206), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19615,88 +19883,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), }, [5] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1081), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(945), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19757,88 +20025,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(139), [sym_string_start] = ACTIONS(107), }, [6] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1540), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1113), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19899,88 +20167,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(139), [sym_string_start] = ACTIONS(107), }, [7] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1176), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1117), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20041,88 +20309,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(139), [sym_string_start] = ACTIONS(107), }, [8] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1629), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1773), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20183,88 +20451,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(139), [sym_string_start] = ACTIONS(107), }, [9] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1290), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1227), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20325,88 +20593,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(139), [sym_string_start] = ACTIONS(107), }, [10] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1075), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1487), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20467,88 +20735,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(139), [sym_string_start] = ACTIONS(107), }, [11] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1398), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1365), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20609,88 +20877,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(139), [sym_string_start] = ACTIONS(107), }, [12] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1415), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1101), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20751,88 +21019,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(139), [sym_string_start] = ACTIONS(107), }, [13] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1215), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1581), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20893,88 +21161,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(139), [sym_string_start] = ACTIONS(107), }, [14] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1220), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1659), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21035,88 +21303,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(139), [sym_string_start] = ACTIONS(107), }, [15] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1223), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1285), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21177,88 +21445,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(139), [sym_string_start] = ACTIONS(107), }, [16] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1253), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1290), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21319,88 +21587,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(139), [sym_string_start] = ACTIONS(107), }, [17] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1278), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1292), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21461,88 +21729,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(139), [sym_string_start] = ACTIONS(107), }, [18] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1308), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1325), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21603,88 +21871,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(139), [sym_string_start] = ACTIONS(107), }, [19] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1680), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1350), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21745,88 +22013,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(139), [sym_string_start] = ACTIONS(107), }, [20] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1158), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1257), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21887,88 +22155,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(139), [sym_string_start] = ACTIONS(107), }, [21] = { - [sym__statement] = STATE(201), - [sym__simple_statements] = STATE(201), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(201), - [sym_decorated_definition] = STATE(201), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1011), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(201), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(201), - [sym_cdef_statement] = STATE(201), - [sym_ctypedef_statement] = STATE(201), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(201), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1746), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22033,84 +22301,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [22] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1701), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1088), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22171,88 +22439,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(139), [sym_string_start] = ACTIONS(107), }, [23] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1709), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1089), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22313,88 +22581,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(139), [sym_string_start] = ACTIONS(107), }, [24] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1354), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(211), + [sym__simple_statements] = STATE(211), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(211), + [sym_match_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_try_statement] = STATE(211), + [sym_with_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(211), + [sym_decorated_definition] = STATE(211), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1073), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(211), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(211), + [sym_cdef_statement] = STATE(211), + [sym_ctypedef_statement] = STATE(211), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(211), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22455,88 +22723,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(141), [sym_string_start] = ACTIONS(107), }, [25] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1166), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1761), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22597,88 +22865,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(139), [sym_string_start] = ACTIONS(107), }, [26] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1178), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1767), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22739,88 +23007,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(139), [sym_string_start] = ACTIONS(107), }, [27] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1187), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1263), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22881,88 +23149,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(139), [sym_string_start] = ACTIONS(107), }, [28] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1235), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1281), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23023,88 +23291,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(139), [sym_string_start] = ACTIONS(107), }, [29] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1322), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1291), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23165,88 +23433,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(139), [sym_string_start] = ACTIONS(107), }, [30] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1333), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1302), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23307,88 +23575,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(139), [sym_string_start] = ACTIONS(107), }, [31] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1346), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1361), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23449,88 +23717,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(139), [sym_string_start] = ACTIONS(107), }, [32] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1374), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1415), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23591,88 +23859,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(139), [sym_string_start] = ACTIONS(107), }, [33] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1092), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1195), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23733,88 +24001,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(139), [sym_string_start] = ACTIONS(107), }, [34] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1430), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1196), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23875,88 +24143,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(139), [sym_string_start] = ACTIONS(107), }, [35] = { - [sym__statement] = STATE(201), - [sym__simple_statements] = STATE(201), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(201), - [sym_decorated_definition] = STATE(201), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1005), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(201), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(201), - [sym_cdef_statement] = STATE(201), - [sym_ctypedef_statement] = STATE(201), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(201), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1208), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24021,84 +24289,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [36] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1006), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1123), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24159,88 +24427,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), }, [37] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1446), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1124), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24301,88 +24569,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(139), [sym_string_start] = ACTIONS(107), }, [38] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1168), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1553), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24443,88 +24711,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(139), [sym_string_start] = ACTIONS(107), }, [39] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1179), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(211), + [sym__simple_statements] = STATE(211), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(211), + [sym_match_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_try_statement] = STATE(211), + [sym_with_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(211), + [sym_decorated_definition] = STATE(211), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1035), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(211), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(211), + [sym_cdef_statement] = STATE(211), + [sym_ctypedef_statement] = STATE(211), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(211), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24585,88 +24853,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(141), [sym_string_start] = ACTIONS(107), }, [40] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1181), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(215), + [sym__simple_statements] = STATE(215), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(215), + [sym_match_statement] = STATE(215), + [sym_for_statement] = STATE(215), + [sym_while_statement] = STATE(215), + [sym_try_statement] = STATE(215), + [sym_with_statement] = STATE(215), + [sym_function_definition] = STATE(215), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(215), + [sym_decorated_definition] = STATE(215), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1036), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(215), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(215), + [sym_cdef_statement] = STATE(215), + [sym_ctypedef_statement] = STATE(215), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(215), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24727,88 +24995,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), }, [41] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1185), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1558), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24869,88 +25137,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(139), [sym_string_start] = ACTIONS(107), }, [42] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1160), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1223), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25011,88 +25279,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(139), [sym_string_start] = ACTIONS(107), }, [43] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1257), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1248), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25153,88 +25421,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(139), [sym_string_start] = ACTIONS(107), }, [44] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1261), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1250), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25295,88 +25563,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(139), [sym_string_start] = ACTIONS(107), }, [45] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1128), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1269), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25437,88 +25705,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(139), [sym_string_start] = ACTIONS(107), }, [46] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(5196), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1328), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25579,88 +25847,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(143), + [sym__dedent] = ACTIONS(139), [sym_string_start] = ACTIONS(107), }, [47] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1624), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1338), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25721,88 +25989,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(139), [sym_string_start] = ACTIONS(107), }, [48] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1641), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1355), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25863,88 +26131,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(139), [sym_string_start] = ACTIONS(107), }, [49] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1300), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1167), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26005,88 +26273,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(139), [sym_string_start] = ACTIONS(107), }, [50] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1310), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(5242), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26147,88 +26415,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(145), [sym_string_start] = ACTIONS(107), }, [51] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1311), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1666), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26289,88 +26557,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(139), [sym_string_start] = ACTIONS(107), }, [52] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1332), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1171), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26431,88 +26699,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(139), [sym_string_start] = ACTIONS(107), }, [53] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1336), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1674), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26573,88 +26841,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(139), [sym_string_start] = ACTIONS(107), }, [54] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1372), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1384), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26715,88 +26983,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(139), [sym_string_start] = ACTIONS(107), }, [55] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1164), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1399), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26857,88 +27125,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(139), [sym_string_start] = ACTIONS(107), }, [56] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(5253), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1400), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26999,88 +27267,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(143), + [sym__dedent] = ACTIONS(139), [sym_string_start] = ACTIONS(107), }, [57] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(5292), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1417), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27141,88 +27409,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(143), + [sym__dedent] = ACTIONS(139), [sym_string_start] = ACTIONS(107), }, [58] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1787), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1419), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27283,88 +27551,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(139), [sym_string_start] = ACTIONS(107), }, [59] = { - [sym__statement] = STATE(201), - [sym__simple_statements] = STATE(201), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(201), - [sym_decorated_definition] = STATE(201), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(999), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(201), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(201), - [sym_cdef_statement] = STATE(201), - [sym_ctypedef_statement] = STATE(201), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(201), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1305), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27429,84 +27697,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [60] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1003), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1258), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27567,88 +27835,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), }, [61] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1380), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(5388), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27709,88 +27977,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(145), [sym_string_start] = ACTIONS(107), }, [62] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1356), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(5438), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27851,88 +28119,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(145), [sym_string_start] = ACTIONS(107), }, [63] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1228), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1148), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27993,88 +28261,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(139), [sym_string_start] = ACTIONS(107), }, [64] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1243), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1704), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28135,88 +28403,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(139), [sym_string_start] = ACTIONS(107), }, [65] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1378), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(211), + [sym__simple_statements] = STATE(211), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(211), + [sym_match_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_try_statement] = STATE(211), + [sym_with_statement] = STATE(211), + [sym_function_definition] = STATE(211), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(211), + [sym_decorated_definition] = STATE(211), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1066), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(211), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(211), + [sym_cdef_statement] = STATE(211), + [sym_ctypedef_statement] = STATE(211), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(211), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28277,88 +28545,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(141), [sym_string_start] = ACTIONS(107), }, [66] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1241), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(215), + [sym__simple_statements] = STATE(215), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(215), + [sym_match_statement] = STATE(215), + [sym_for_statement] = STATE(215), + [sym_while_statement] = STATE(215), + [sym_try_statement] = STATE(215), + [sym_with_statement] = STATE(215), + [sym_function_definition] = STATE(215), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(215), + [sym_decorated_definition] = STATE(215), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1072), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(215), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(215), + [sym_cdef_statement] = STATE(215), + [sym_ctypedef_statement] = STATE(215), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(215), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28419,88 +28687,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), }, [67] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1264), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1330), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28561,88 +28829,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(139), [sym_string_start] = ACTIONS(107), }, [68] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1293), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1331), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28703,88 +28971,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(139), [sym_string_start] = ACTIONS(107), }, [69] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(5309), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1377), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28845,88 +29113,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(143), + [sym__dedent] = ACTIONS(139), [sym_string_start] = ACTIONS(107), }, [70] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(5310), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1382), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28987,88 +29255,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(143), + [sym__dedent] = ACTIONS(139), [sym_string_start] = ACTIONS(107), }, [71] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1370), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1409), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29129,88 +29397,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(139), [sym_string_start] = ACTIONS(107), }, [72] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1280), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1201), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29271,88 +29539,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(139), [sym_string_start] = ACTIONS(107), }, [73] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1194), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1207), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29413,88 +29681,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(139), [sym_string_start] = ACTIONS(107), }, [74] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1344), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1213), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29555,88 +29823,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(139), [sym_string_start] = ACTIONS(107), }, [75] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1171), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(5339), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29697,88 +29965,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(145), [sym_string_start] = ACTIONS(107), }, [76] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(5336), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(5340), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29839,88 +30107,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [77] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1190), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1276), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29981,88 +30249,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(139), [sym_string_start] = ACTIONS(107), }, [78] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1211), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1341), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30123,88 +30391,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(139), [sym_string_start] = ACTIONS(107), }, [79] = { - [sym__statement] = STATE(205), - [sym__simple_statements] = STATE(205), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(205), - [sym_decorated_definition] = STATE(205), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1224), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(205), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(205), - [sym_cdef_statement] = STATE(205), - [sym_ctypedef_statement] = STATE(205), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(205), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1210), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30265,88 +30533,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(139), [sym_string_start] = ACTIONS(107), }, [80] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(935), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1211), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30407,88 +30675,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(139), [sym_string_start] = ACTIONS(107), }, [81] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1113), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1221), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30549,88 +30817,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(139), [sym_string_start] = ACTIONS(107), }, [82] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1114), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(5385), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30695,84 +30963,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [83] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1545), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1225), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30833,88 +31101,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(139), [sym_string_start] = ACTIONS(107), }, [84] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(512), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1233), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30975,88 +31243,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(139), [sym_string_start] = ACTIONS(107), }, [85] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1549), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1234), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31117,88 +31385,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(139), [sym_string_start] = ACTIONS(107), }, [86] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2968), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(933), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31259,88 +31527,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [87] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1123), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1154), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31401,88 +31669,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), }, [88] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1564), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1155), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31543,88 +31811,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), }, [89] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1582), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1517), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31685,88 +31953,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), }, [90] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(522), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(531), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31827,88 +32095,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), }, [91] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(524), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1523), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31969,88 +32237,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), }, [92] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(525), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3010), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32115,84 +32383,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [93] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2991), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1159), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32253,88 +32521,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [94] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2839), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1535), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32395,88 +32663,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [95] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(535), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1546), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32537,88 +32805,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), }, [96] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1646), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(541), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32679,88 +32947,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), }, [97] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1131), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(543), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32821,88 +33089,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), }, [98] = { - [sym__statement] = STATE(209), - [sym__simple_statements] = STATE(209), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(209), - [sym_decorated_definition] = STATE(209), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1043), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(209), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(209), - [sym_cdef_statement] = STATE(209), - [sym_ctypedef_statement] = STATE(209), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(209), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(544), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32963,88 +33231,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), }, [99] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1662), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3032), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33109,84 +33377,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [100] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1665), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(2946), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33251,84 +33519,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [101] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(540), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(554), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33389,88 +33657,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), }, [102] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(542), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1564), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33531,88 +33799,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), }, [103] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(544), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1188), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33673,88 +33941,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), }, [104] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3056), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1191), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33815,88 +34083,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [105] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2855), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(217), + [sym__simple_statements] = STATE(217), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(217), + [sym_match_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_try_statement] = STATE(217), + [sym_with_statement] = STATE(217), + [sym_function_definition] = STATE(217), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(217), + [sym_decorated_definition] = STATE(217), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1031), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(217), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(217), + [sym_cdef_statement] = STATE(217), + [sym_ctypedef_statement] = STATE(217), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(217), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33957,88 +34225,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(143), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(107), }, [106] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(557), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1569), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34099,88 +34367,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), }, [107] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(559), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1572), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34241,88 +34509,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), }, [108] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(560), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(559), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34383,88 +34651,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), }, [109] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1350), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(561), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34525,88 +34793,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), }, [110] = { - [sym__statement] = STATE(204), - [sym__simple_statements] = STATE(204), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(204), - [sym_decorated_definition] = STATE(204), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3899), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(204), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(204), - [sym_cdef_statement] = STATE(204), - [sym_ctypedef_statement] = STATE(204), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(204), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(563), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34667,88 +34935,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), }, [111] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1755), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3053), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34813,84 +35081,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [112] = { - [sym__statement] = STATE(209), - [sym__simple_statements] = STATE(209), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(209), - [sym_decorated_definition] = STATE(209), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1042), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(209), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(209), - [sym_cdef_statement] = STATE(209), - [sym_ctypedef_statement] = STATE(209), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(209), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(2956), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34951,88 +35219,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), }, [113] = { - [sym__statement] = STATE(199), - [sym__simple_statements] = STATE(199), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(199), - [sym_decorated_definition] = STATE(199), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1058), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(199), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(199), - [sym_cdef_statement] = STATE(199), - [sym_ctypedef_statement] = STATE(199), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(199), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(578), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35093,88 +35361,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(135), [sym_string_start] = ACTIONS(107), }, [114] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1764), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(579), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35235,88 +35503,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), }, [115] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(563), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1091), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35377,88 +35645,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), }, [116] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(567), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1092), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35519,88 +35787,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), }, [117] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2943), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1593), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35661,88 +35929,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [118] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2852), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(217), + [sym__simple_statements] = STATE(217), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(217), + [sym_match_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_try_statement] = STATE(217), + [sym_with_statement] = STATE(217), + [sym_function_definition] = STATE(217), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(217), + [sym_decorated_definition] = STATE(217), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1070), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(217), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(217), + [sym_cdef_statement] = STATE(217), + [sym_ctypedef_statement] = STATE(217), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(217), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35803,88 +36071,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(143), + [sym__dedent] = ACTIONS(147), [sym_string_start] = ACTIONS(107), }, [119] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(583), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1071), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35945,88 +36213,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(149), [sym_string_start] = ACTIONS(107), }, [120] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(585), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1598), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36087,88 +36355,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), }, [121] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(587), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(582), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36229,88 +36497,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), }, [122] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1076), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(586), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36371,88 +36639,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), }, [123] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1387), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3073), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36517,84 +36785,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [124] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1390), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(2966), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36659,84 +36927,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [125] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(588), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(602), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36797,88 +37065,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), }, [126] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(590), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(604), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36939,88 +37207,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), }, [127] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(591), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(606), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37081,88 +37349,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), }, [128] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2983), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1107), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37223,88 +37491,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [129] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2883), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1675), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37365,88 +37633,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [130] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(607), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1109), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37507,88 +37775,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), }, [131] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(611), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1679), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37649,88 +37917,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), }, [132] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1406), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(607), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37791,88 +38059,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), }, [133] = { - [sym__statement] = STATE(209), - [sym__simple_statements] = STATE(209), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(209), - [sym_decorated_definition] = STATE(209), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(986), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(209), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(209), - [sym_cdef_statement] = STATE(209), - [sym_ctypedef_statement] = STATE(209), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(209), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(609), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37933,88 +38201,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), }, [134] = { - [sym__statement] = STATE(199), - [sym__simple_statements] = STATE(199), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(199), - [sym_decorated_definition] = STATE(199), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(990), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(199), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(199), - [sym_cdef_statement] = STATE(199), - [sym_ctypedef_statement] = STATE(199), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(199), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(610), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38075,88 +38343,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(135), [sym_string_start] = ACTIONS(107), }, [135] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(612), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3085), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38221,84 +38489,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [136] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(613), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(2970), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38363,84 +38631,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [137] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(615), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(627), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38501,88 +38769,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), }, [138] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3005), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(631), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38643,88 +38911,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [139] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2899), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1116), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38785,88 +39053,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [140] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(627), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1693), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38927,88 +39195,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), }, [141] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(629), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(217), + [sym__simple_statements] = STATE(217), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(217), + [sym_match_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_try_statement] = STATE(217), + [sym_with_statement] = STATE(217), + [sym_function_definition] = STATE(217), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(217), + [sym_decorated_definition] = STATE(217), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1023), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(217), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(217), + [sym_cdef_statement] = STATE(217), + [sym_ctypedef_statement] = STATE(217), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(217), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39069,88 +39337,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(147), [sym_string_start] = ACTIONS(107), }, [142] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(630), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1024), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39211,88 +39479,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(149), [sym_string_start] = ACTIONS(107), }, [143] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(633), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(632), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39353,88 +39621,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), }, [144] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3021), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(633), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39495,88 +39763,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [145] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(639), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(635), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39637,88 +39905,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(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(640), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3092), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39783,84 +40051,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [147] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(642), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(2978), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39925,84 +40193,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [148] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3041), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(646), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40063,88 +40331,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [149] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(644), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(648), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40205,88 +40473,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(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3048), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(649), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40347,88 +40615,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [151] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2946), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(652), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40489,88 +40757,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [152] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(661), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3098), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40635,84 +40903,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [153] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2958), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(658), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40773,88 +41041,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [154] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2960), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(659), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40915,88 +41183,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [155] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2961), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(661), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41057,88 +41325,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [156] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(670), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3100), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41203,84 +41471,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [157] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(674), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(663), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41341,88 +41609,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), }, [158] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2971), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3102), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41483,88 +41751,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [159] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2976), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3019), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41625,88 +41893,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [160] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2980), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(680), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41767,88 +42035,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [161] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2982), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3065), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41909,88 +42177,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [162] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(679), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3069), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42055,84 +42323,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [163] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(683), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3071), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42197,84 +42465,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [164] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2994), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(689), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42335,88 +42603,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [165] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2996), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(694), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42477,88 +42745,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [166] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(2997), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3096), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42619,88 +42887,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [167] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3000), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3055), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42761,88 +43029,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [168] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3004), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3015), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42903,88 +43171,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [169] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(687), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3001), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43049,84 +43317,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [170] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(689), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(699), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43187,88 +43455,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), }, [171] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3008), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(703), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43329,88 +43597,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [172] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3010), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3016), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43471,88 +43739,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [173] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3013), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3020), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43613,88 +43881,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [174] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3014), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3045), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43755,88 +44023,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [175] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3016), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3057), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43897,88 +44165,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [176] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3017), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(2990), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44039,88 +44307,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [177] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(694), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(707), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44181,88 +44449,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), }, [178] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(695), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(709), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44323,88 +44591,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), }, [179] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3022), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3062), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44465,88 +44733,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [180] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3026), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3067), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44607,88 +44875,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [181] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3027), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3070), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44749,88 +45017,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [182] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3028), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3093), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44891,88 +45159,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [183] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3030), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3104), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45033,88 +45301,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [184] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(697), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3110), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45179,84 +45447,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [185] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(699), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(714), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45317,88 +45585,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), }, [186] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3034), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(715), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45459,88 +45727,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [187] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3036), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3021), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45601,88 +45869,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [188] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3037), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3038), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45743,88 +46011,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [189] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3040), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3039), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45885,88 +46153,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [190] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(701), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3040), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46031,84 +46299,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [191] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3043), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3044), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46169,88 +46437,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [192] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3044), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(717), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46311,88 +46579,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [193] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3046), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(719), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46453,88 +46721,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(143), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, [194] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(702), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3076), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46599,84 +46867,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [195] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(3047), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3081), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46737,88 +47005,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(143), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [196] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(704), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3088), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46883,84 +47151,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [197] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3193), - [sym_block] = STATE(1065), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3091), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47025,84 +47293,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [198] = { - [sym__statement] = STATE(203), - [sym__simple_statements] = STATE(203), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [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(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_class_definition] = STATE(203), - [sym_decorated_definition] = STATE(203), - [sym_decorator] = STATE(3226), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(203), - [sym_include_statement] = STATE(4723), - [sym_def_statement] = STATE(203), - [sym_cdef_statement] = STATE(203), - [sym_ctypedef_statement] = STATE(203), - [sym_storageclass] = STATE(3799), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(203), - [aux_sym_class_definition_repeat1] = STATE(3799), - [aux_sym_decorated_definition_repeat1] = STATE(3226), - [ts_builtin_sym_end] = ACTIONS(151), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(722), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47117,19 +47385,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), @@ -47151,98 +47419,100 @@ 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(135), [sym_string_start] = ACTIONS(107), }, [199] = { - [sym__statement] = STATE(202), - [sym__simple_statements] = STATE(202), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(202), - [sym_decorated_definition] = STATE(202), - [sym_decorator] = STATE(3193), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(202), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(202), - [sym_cdef_statement] = STATE(202), - [sym_ctypedef_statement] = STATE(202), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(202), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(2985), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47303,88 +47573,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(153), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [200] = { - [sym__statement] = STATE(210), - [sym__simple_statements] = STATE(210), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [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(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_class_definition] = STATE(210), - [sym_decorated_definition] = STATE(210), - [sym_decorator] = STATE(3226), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(210), - [sym_include_statement] = STATE(4723), - [sym_def_statement] = STATE(210), - [sym_cdef_statement] = STATE(210), - [sym_ctypedef_statement] = STATE(210), - [sym_storageclass] = STATE(3799), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(210), - [aux_sym_class_definition_repeat1] = STATE(3799), - [aux_sym_decorated_definition_repeat1] = STATE(3226), - [ts_builtin_sym_end] = ACTIONS(151), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(2987), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47399,19 +47669,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), @@ -47433,98 +47703,100 @@ 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), }, [201] = { - [sym__statement] = STATE(202), - [sym__simple_statements] = STATE(202), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(202), - [sym_decorated_definition] = STATE(202), - [sym_decorator] = STATE(3193), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(202), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(202), - [sym_cdef_statement] = STATE(202), - [sym_ctypedef_statement] = STATE(202), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(202), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(2989), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47585,369 +47857,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(155), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, [202] = { - [sym__statement] = STATE(202), - [sym__simple_statements] = STATE(202), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(202), - [sym_decorated_definition] = STATE(202), - [sym_decorator] = STATE(3193), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(202), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(202), - [sym_cdef_statement] = STATE(202), - [sym_ctypedef_statement] = STATE(202), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(202), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), - [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__dedent] = ACTIONS(301), - [sym_string_start] = ACTIONS(303), + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(729), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), + [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(135), + [sym_string_start] = ACTIONS(107), }, [203] = { - [sym__statement] = STATE(203), - [sym__simple_statements] = STATE(203), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [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(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_class_definition] = STATE(203), - [sym_decorated_definition] = STATE(203), - [sym_decorator] = STATE(3226), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(203), - [sym_include_statement] = STATE(4723), - [sym_def_statement] = STATE(203), - [sym_cdef_statement] = STATE(203), - [sym_ctypedef_statement] = STATE(203), - [sym_storageclass] = STATE(3799), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(203), - [aux_sym_class_definition_repeat1] = STATE(3799), - [aux_sym_decorated_definition_repeat1] = STATE(3226), - [ts_builtin_sym_end] = ACTIONS(301), - [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(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(220), - [anon_sym_nonlocal] = ACTIONS(223), - [anon_sym_exec] = ACTIONS(226), - [anon_sym_type] = ACTIONS(229), - [anon_sym_class] = ACTIONS(330), - [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(333), - [anon_sym_include] = ACTIONS(280), - [anon_sym_DEF] = ACTIONS(336), - [anon_sym_cdef] = ACTIONS(339), - [anon_sym_cpdef] = ACTIONS(339), - [anon_sym_new] = ACTIONS(289), - [anon_sym_ctypedef] = ACTIONS(342), - [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(303), - }, - [204] = { - [sym__statement] = STATE(202), - [sym__simple_statements] = STATE(202), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(202), - [sym_decorated_definition] = STATE(202), - [sym_decorator] = STATE(3193), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(202), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(202), - [sym_cdef_statement] = STATE(202), - [sym_ctypedef_statement] = STATE(202), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(202), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(3000), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48008,87 +48141,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(345), + [sym__dedent] = ACTIONS(145), [sym_string_start] = ACTIONS(107), }, - [205] = { - [sym__statement] = STATE(202), - [sym__simple_statements] = STATE(202), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(202), - [sym_decorated_definition] = STATE(202), - [sym_decorator] = STATE(3193), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(202), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(202), - [sym_cdef_statement] = STATE(202), - [sym_ctypedef_statement] = STATE(202), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(202), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [204] = { + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(641), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48149,87 +48283,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(347), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [206] = { - [sym__statement] = STATE(202), - [sym__simple_statements] = STATE(202), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(202), - [sym_decorated_definition] = STATE(202), - [sym_decorator] = STATE(3193), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(202), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(202), - [sym_cdef_statement] = STATE(202), - [sym_ctypedef_statement] = STATE(202), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(202), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [205] = { + [sym__statement] = STATE(216), + [sym__simple_statements] = STATE(216), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_if_statement] = STATE(216), + [sym_match_statement] = STATE(216), + [sym_for_statement] = STATE(216), + [sym_while_statement] = STATE(216), + [sym_try_statement] = STATE(216), + [sym_with_statement] = STATE(216), + [sym_function_definition] = STATE(216), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(216), + [sym_decorated_definition] = STATE(216), + [sym_decorator] = STATE(3251), + [sym_block] = STATE(1371), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(216), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(216), + [sym_cdef_statement] = STATE(216), + [sym_ctypedef_statement] = STATE(216), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(216), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48290,87 +48425,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(349), + [sym__dedent] = ACTIONS(135), [sym_string_start] = ACTIONS(107), }, - [207] = { - [sym__statement] = STATE(202), - [sym__simple_statements] = STATE(202), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(202), - [sym_decorated_definition] = STATE(202), - [sym_decorator] = STATE(3193), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(202), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(202), - [sym_cdef_statement] = STATE(202), - [sym_ctypedef_statement] = STATE(202), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(202), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [206] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [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(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3251), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48431,87 +48566,229 @@ 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(351), + [sym__dedent] = ACTIONS(151), [sym_string_start] = ACTIONS(107), }, + [207] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [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(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3251), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), + [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__dedent] = ACTIONS(297), + [sym_string_start] = ACTIONS(299), + }, [208] = { - [sym__statement] = STATE(202), - [sym__simple_statements] = STATE(202), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(202), - [sym_decorated_definition] = STATE(202), - [sym_decorator] = STATE(3193), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(202), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(202), - [sym_cdef_statement] = STATE(202), - [sym_ctypedef_statement] = STATE(202), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(202), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(212), + [sym__simple_statements] = STATE(212), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_if_statement] = STATE(212), + [sym_match_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_with_statement] = STATE(212), + [sym_function_definition] = STATE(212), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_class_definition] = STATE(212), + [sym_decorated_definition] = STATE(212), + [sym_decorator] = STATE(3277), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(212), + [sym_include_statement] = STATE(4836), + [sym_def_statement] = STATE(212), + [sym_cdef_statement] = STATE(212), + [sym_ctypedef_statement] = STATE(212), + [sym_storageclass] = STATE(3917), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(212), + [aux_sym_class_definition_repeat1] = STATE(3917), + [aux_sym_decorated_definition_repeat1] = STATE(3277), + [ts_builtin_sym_end] = ACTIONS(302), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48526,19 +48803,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), @@ -48560,99 +48837,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(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(353), [sym_string_start] = ACTIONS(107), }, [209] = { - [sym__statement] = STATE(202), - [sym__simple_statements] = STATE(202), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [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(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_class_definition] = STATE(202), - [sym_decorated_definition] = STATE(202), - [sym_decorator] = STATE(3193), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(202), - [sym_include_statement] = STATE(4956), - [sym_def_statement] = STATE(202), - [sym_cdef_statement] = STATE(202), - [sym_ctypedef_statement] = STATE(202), - [sym_storageclass] = STATE(3797), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(202), - [aux_sym_class_definition_repeat1] = STATE(3797), - [aux_sym_decorated_definition_repeat1] = STATE(3193), + [sym__statement] = STATE(212), + [sym__simple_statements] = STATE(212), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_if_statement] = STATE(212), + [sym_match_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_with_statement] = STATE(212), + [sym_function_definition] = STATE(212), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_class_definition] = STATE(212), + [sym_decorated_definition] = STATE(212), + [sym_decorator] = STATE(3277), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(212), + [sym_include_statement] = STATE(4836), + [sym_def_statement] = STATE(212), + [sym_cdef_statement] = STATE(212), + [sym_ctypedef_statement] = STATE(212), + [sym_storageclass] = STATE(3917), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(212), + [aux_sym_class_definition_repeat1] = STATE(3917), + [aux_sym_decorated_definition_repeat1] = STATE(3277), + [ts_builtin_sym_end] = ACTIONS(304), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48667,19 +48944,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), @@ -48701,100 +48978,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(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(355), [sym_string_start] = ACTIONS(107), }, [210] = { - [sym__statement] = STATE(203), - [sym__simple_statements] = STATE(203), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [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(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_class_definition] = STATE(203), - [sym_decorated_definition] = STATE(203), - [sym_decorator] = STATE(3226), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_property_definition] = STATE(203), - [sym_include_statement] = STATE(4723), - [sym_def_statement] = STATE(203), - [sym_cdef_statement] = STATE(203), - [sym_ctypedef_statement] = STATE(203), - [sym_storageclass] = STATE(3799), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [aux_sym_module_repeat1] = STATE(203), - [aux_sym_class_definition_repeat1] = STATE(3799), - [aux_sym_decorated_definition_repeat1] = STATE(3226), - [ts_builtin_sym_end] = ACTIONS(357), + [sym__statement] = STATE(208), + [sym__simple_statements] = STATE(208), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [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(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_class_definition] = STATE(208), + [sym_decorated_definition] = STATE(208), + [sym_decorator] = STATE(3277), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(208), + [sym_include_statement] = STATE(4836), + [sym_def_statement] = STATE(208), + [sym_cdef_statement] = STATE(208), + [sym_ctypedef_statement] = STATE(208), + [sym_storageclass] = STATE(3917), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(208), + [aux_sym_class_definition_repeat1] = STATE(3917), + [aux_sym_decorated_definition_repeat1] = STATE(3277), + [ts_builtin_sym_end] = ACTIONS(304), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48858,74 +49134,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(107), }, [211] = { - [sym__simple_statements] = STATE(688), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(4683), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(359), + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [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(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3251), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -48935,13 +49225,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -48956,97 +49254,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [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_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), + [anon_sym_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__newline] = ACTIONS(375), - [sym__indent] = ACTIONS(377), + [sym__dedent] = ACTIONS(306), [sym_string_start] = ACTIONS(107), }, [212] = { - [sym__simple_statements] = STATE(662), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(5097), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(359), + [sym__statement] = STATE(212), + [sym__simple_statements] = STATE(212), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_if_statement] = STATE(212), + [sym_match_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_with_statement] = STATE(212), + [sym_function_definition] = STATE(212), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_class_definition] = STATE(212), + [sym_decorated_definition] = STATE(212), + [sym_decorator] = STATE(3277), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(212), + [sym_include_statement] = STATE(4836), + [sym_def_statement] = STATE(212), + [sym_cdef_statement] = STATE(212), + [sym_ctypedef_statement] = STATE(212), + [sym_storageclass] = STATE(3917), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(212), + [aux_sym_class_definition_repeat1] = STATE(3917), + [aux_sym_decorated_definition_repeat1] = STATE(3277), + [ts_builtin_sym_end] = ACTIONS(297), + [sym_identifier] = ACTIONS(153), + [anon_sym_import] = ACTIONS(156), + [anon_sym_cimport] = ACTIONS(156), + [anon_sym_from] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_print] = ACTIONS(168), + [anon_sym_assert] = ACTIONS(171), + [anon_sym_return] = ACTIONS(174), + [anon_sym_del] = ACTIONS(177), + [anon_sym_raise] = ACTIONS(180), + [anon_sym_pass] = ACTIONS(183), + [anon_sym_break] = ACTIONS(186), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_if] = ACTIONS(308), + [anon_sym_match] = ACTIONS(311), + [anon_sym_async] = ACTIONS(314), + [anon_sym_for] = ACTIONS(317), + [anon_sym_while] = ACTIONS(320), + [anon_sym_try] = ACTIONS(323), + [anon_sym_with] = ACTIONS(326), + [anon_sym_def] = ACTIONS(329), + [anon_sym_global] = ACTIONS(216), + [anon_sym_nonlocal] = ACTIONS(219), + [anon_sym_exec] = ACTIONS(222), + [anon_sym_type] = ACTIONS(225), + [anon_sym_class] = ACTIONS(332), + [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(335), + [anon_sym_include] = ACTIONS(276), + [anon_sym_DEF] = ACTIONS(338), + [anon_sym_cdef] = ACTIONS(341), + [anon_sym_cpdef] = ACTIONS(341), + [anon_sym_new] = ACTIONS(285), + [anon_sym_ctypedef] = ACTIONS(344), + [anon_sym_public] = ACTIONS(291), + [anon_sym_packed] = ACTIONS(291), + [anon_sym_inline] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_sizeof] = ACTIONS(294), + [sym_string_start] = ACTIONS(299), + }, + [213] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [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(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3251), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -49056,13 +49507,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -49077,97 +49536,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [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_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), + [anon_sym_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__newline] = ACTIONS(379), - [sym__indent] = ACTIONS(381), + [sym__dedent] = ACTIONS(347), [sym_string_start] = ACTIONS(107), }, - [213] = { - [sym__simple_statements] = STATE(2993), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(5113), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(359), + [214] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [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(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3251), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -49177,13 +49648,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -49198,97 +49677,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [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_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), + [anon_sym_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__newline] = ACTIONS(383), - [sym__indent] = ACTIONS(385), + [sym__dedent] = ACTIONS(349), [sym_string_start] = ACTIONS(107), }, - [214] = { - [sym__simple_statements] = STATE(1195), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(5110), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(359), + [215] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [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(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3251), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -49298,13 +49789,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -49319,97 +49818,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [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_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), + [anon_sym_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__newline] = ACTIONS(387), - [sym__indent] = ACTIONS(389), + [sym__dedent] = ACTIONS(351), [sym_string_start] = ACTIONS(107), }, - [215] = { - [sym__simple_statements] = STATE(3057), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(4681), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(359), + [216] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [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(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3251), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -49419,13 +49930,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -49440,97 +49959,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [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_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), + [anon_sym_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__newline] = ACTIONS(391), - [sym__indent] = ACTIONS(393), + [sym__dedent] = ACTIONS(353), [sym_string_start] = ACTIONS(107), }, - [216] = { - [sym__simple_statements] = STATE(671), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(5143), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(359), + [217] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [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(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3251), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -49540,13 +50071,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -49561,97 +50100,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [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_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), + [anon_sym_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__newline] = ACTIONS(395), - [sym__indent] = ACTIONS(397), + [sym__dedent] = ACTIONS(355), [sym_string_start] = ACTIONS(107), }, - [217] = { - [sym__simple_statements] = STATE(698), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(4724), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(359), + [218] = { + [sym__statement] = STATE(207), + [sym__simple_statements] = STATE(207), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [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(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_class_definition] = STATE(207), + [sym_decorated_definition] = STATE(207), + [sym_decorator] = STATE(3251), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_property_definition] = STATE(207), + [sym_include_statement] = STATE(4878), + [sym_def_statement] = STATE(207), + [sym_cdef_statement] = STATE(207), + [sym_ctypedef_statement] = STATE(207), + [sym_storageclass] = STATE(3863), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [aux_sym_module_repeat1] = STATE(207), + [aux_sym_class_definition_repeat1] = STATE(3863), + [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -49661,13 +50212,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -49682,92 +50241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [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_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), + [anon_sym_DEF] = ACTIONS(129), + [anon_sym_cdef] = ACTIONS(131), + [anon_sym_cpdef] = ACTIONS(131), [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), + [anon_sym_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__newline] = ACTIONS(399), - [sym__indent] = ACTIONS(401), + [sym__dedent] = ACTIONS(357), [sym_string_start] = ACTIONS(107), }, - [218] = { - [sym__simple_statements] = STATE(1359), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(4927), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [219] = { + [sym__simple_statements] = STATE(1412), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(4786), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49821,74 +50378,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(373), [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(403), - [sym__indent] = ACTIONS(405), + [sym__newline] = ACTIONS(375), + [sym__indent] = ACTIONS(377), [sym_string_start] = ACTIONS(107), }, - [219] = { - [sym__simple_statements] = STATE(1255), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(5141), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [220] = { + [sym__simple_statements] = STATE(1329), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(5006), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49942,74 +50499,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(373), [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(407), - [sym__indent] = ACTIONS(409), + [sym__newline] = ACTIONS(379), + [sym__indent] = ACTIONS(381), [sym_string_start] = ACTIONS(107), }, - [220] = { - [sym__simple_statements] = STATE(2945), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(4737), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [221] = { + [sym__simple_statements] = STATE(681), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(5124), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50063,74 +50620,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(373), [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(411), - [sym__indent] = ACTIONS(413), + [sym__newline] = ACTIONS(383), + [sym__indent] = ACTIONS(385), [sym_string_start] = ACTIONS(107), }, - [221] = { - [sym__simple_statements] = STATE(2979), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(4776), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [222] = { + [sym__simple_statements] = STATE(1339), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(4959), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50184,74 +50741,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(373), [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(415), - [sym__indent] = ACTIONS(417), + [sym__newline] = ACTIONS(387), + [sym__indent] = ACTIONS(389), [sym_string_start] = ACTIONS(107), }, - [222] = { - [sym__simple_statements] = STATE(680), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(4658), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [223] = { + [sym__simple_statements] = STATE(690), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(5185), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50305,74 +50862,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(373), [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(419), - [sym__indent] = ACTIONS(421), + [sym__newline] = ACTIONS(391), + [sym__indent] = ACTIONS(393), [sym_string_start] = ACTIONS(107), }, - [223] = { - [sym__simple_statements] = STATE(3006), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(4809), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [224] = { + [sym__simple_statements] = STATE(1366), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(5207), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50426,74 +50983,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(373), [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(423), - [sym__indent] = ACTIONS(425), + [sym__newline] = ACTIONS(395), + [sym__indent] = ACTIONS(397), [sym_string_start] = ACTIONS(107), }, - [224] = { - [sym__simple_statements] = STATE(1183), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(5050), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [225] = { + [sym__simple_statements] = STATE(708), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(4753), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50547,74 +51104,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(373), [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(427), - [sym__indent] = ACTIONS(429), + [sym__newline] = ACTIONS(399), + [sym__indent] = ACTIONS(401), [sym_string_start] = ACTIONS(107), }, - [225] = { - [sym__simple_statements] = STATE(1294), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(4835), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [226] = { + [sym__simple_statements] = STATE(718), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(4793), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50668,74 +51225,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(373), [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(431), - [sym__indent] = ACTIONS(433), + [sym__newline] = ACTIONS(403), + [sym__indent] = ACTIONS(405), [sym_string_start] = ACTIONS(107), }, - [226] = { - [sym__simple_statements] = STATE(2970), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(5001), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [227] = { + [sym__simple_statements] = STATE(1255), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(4921), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50789,74 +51346,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(373), [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(435), - [sym__indent] = ACTIONS(437), + [sym__newline] = ACTIONS(407), + [sym__indent] = ACTIONS(409), [sym_string_start] = ACTIONS(107), }, - [227] = { - [sym__simple_statements] = STATE(1330), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(4854), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [228] = { + [sym__simple_statements] = STATE(3033), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(5193), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50910,74 +51467,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(373), [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(439), - [sym__indent] = ACTIONS(441), + [sym__newline] = ACTIONS(411), + [sym__indent] = ACTIONS(413), [sym_string_start] = ACTIONS(107), }, - [228] = { - [sym__simple_statements] = STATE(693), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_int_type] = STATE(3549), - [sym__signedness] = STATE(3133), - [sym__longness] = STATE(3376), - [sym_function_pointer_type] = STATE(3549), - [sym_c_type] = STATE(4708), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [229] = { + [sym__simple_statements] = STATE(3074), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(5058), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51031,82 +51588,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(373), [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(443), - [sym__indent] = ACTIONS(445), + [sym__newline] = ACTIONS(415), + [sym__indent] = ACTIONS(417), [sym_string_start] = ACTIONS(107), }, - [229] = { - [sym__simple_statements] = STATE(1447), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1890), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3695), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(5112), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(447), + [230] = { + [sym__simple_statements] = STATE(713), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(4776), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(361), + [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), @@ -51114,14 +51670,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -51135,91 +51690,100 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [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_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(465), - [sym__indent] = ACTIONS(467), + [sym__newline] = ACTIONS(419), + [sym__indent] = ACTIONS(421), [sym_string_start] = ACTIONS(107), }, - [230] = { - [sym__simple_statements] = STATE(1735), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1890), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3695), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(5112), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(447), + [231] = { + [sym__simple_statements] = STATE(700), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(4726), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(361), + [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), @@ -51227,14 +51791,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -51248,91 +51811,100 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [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_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(469), - [sym__indent] = ACTIONS(471), + [sym__newline] = ACTIONS(423), + [sym__indent] = ACTIONS(425), [sym_string_start] = ACTIONS(107), }, - [231] = { - [sym__simple_statements] = STATE(1766), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1890), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3695), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(5112), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(447), + [232] = { + [sym__simple_statements] = STATE(3011), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(4722), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(361), + [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), @@ -51340,14 +51912,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -51361,91 +51932,100 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [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_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(473), - [sym__indent] = ACTIONS(475), + [sym__newline] = ACTIONS(427), + [sym__indent] = ACTIONS(429), [sym_string_start] = ACTIONS(107), }, - [232] = { - [sym__simple_statements] = STATE(1626), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1890), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3695), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(5112), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(447), + [233] = { + [sym__simple_statements] = STATE(3094), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(5223), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(361), + [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), @@ -51453,14 +52033,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -51474,91 +52053,100 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [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_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(477), - [sym__indent] = ACTIONS(479), + [sym__newline] = ACTIONS(431), + [sym__indent] = ACTIONS(433), [sym_string_start] = ACTIONS(107), }, - [233] = { - [sym__simple_statements] = STATE(1706), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1890), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3695), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(5112), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(447), + [234] = { + [sym__simple_statements] = STATE(1286), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(4919), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(361), + [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), @@ -51566,14 +52154,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -51587,91 +52174,100 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [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_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(481), - [sym__indent] = ACTIONS(483), + [sym__newline] = ACTIONS(435), + [sym__indent] = ACTIONS(437), [sym_string_start] = ACTIONS(107), }, - [234] = { - [sym__simple_statements] = STATE(1664), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1890), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3695), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(5112), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(447), + [235] = { + [sym__simple_statements] = STATE(3054), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(4865), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(361), + [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), @@ -51679,14 +52275,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -51700,91 +52295,100 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [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_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(485), - [sym__indent] = ACTIONS(487), + [sym__newline] = ACTIONS(439), + [sym__indent] = ACTIONS(441), [sym_string_start] = ACTIONS(107), }, - [235] = { - [sym__simple_statements] = STATE(1388), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1890), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3695), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(5112), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(447), + [236] = { + [sym__simple_statements] = STATE(3084), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_int_type] = STATE(3587), + [sym__signedness] = STATE(3210), + [sym__longness] = STATE(3416), + [sym_function_pointer_type] = STATE(3587), + [sym_c_type] = STATE(5176), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(359), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(361), + [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), @@ -51792,14 +52396,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(363), + [anon_sym_async] = ACTIONS(363), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -51813,84 +52416,94 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [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_int] = ACTIONS(365), + [anon_sym_double] = ACTIONS(365), + [anon_sym_complex] = ACTIONS(365), [anon_sym_new] = ACTIONS(99), + [anon_sym_signed] = ACTIONS(367), + [anon_sym_unsigned] = ACTIONS(367), + [anon_sym_char] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_long] = ACTIONS(371), + [anon_sym_const] = ACTIONS(373), + [anon_sym_volatile] = ACTIONS(373), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(489), - [sym__indent] = ACTIONS(491), + [sym__newline] = ACTIONS(443), + [sym__indent] = ACTIONS(445), [sym_string_start] = ACTIONS(107), }, - [236] = { - [sym__simple_statements] = STATE(1421), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1890), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3695), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1891), - [sym_subscript] = STATE(1891), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(5112), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [237] = { + [sym__simple_statements] = STATE(1592), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1942), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3747), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1943), + [sym_subscript] = STATE(1943), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(5167), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(447), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -51935,76 +52548,82 @@ 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(493), - [sym__indent] = ACTIONS(495), + [sym__newline] = ACTIONS(465), + [sym__indent] = ACTIONS(467), [sym_string_start] = ACTIONS(107), }, - [237] = { - [sym__simple_statements] = STATE(1547), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(9), + [238] = { + [sym__simple_statements] = STATE(1552), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1942), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3747), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1943), + [sym_subscript] = STATE(1943), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(5167), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(447), [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_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -52012,13 +52631,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -52032,8 +52652,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(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -52041,76 +52661,82 @@ 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(469), + [sym__indent] = ACTIONS(471), [sym_string_start] = ACTIONS(107), }, - [238] = { - [sym__simple_statements] = STATE(1575), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(9), + [239] = { + [sym__simple_statements] = STATE(1607), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1942), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3747), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1943), + [sym_subscript] = STATE(1943), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(5167), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(447), [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_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -52118,13 +52744,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -52138,8 +52765,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(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -52147,76 +52774,82 @@ 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(473), + [sym__indent] = ACTIONS(475), [sym_string_start] = ACTIONS(107), }, - [239] = { - [sym__simple_statements] = STATE(1584), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(9), + [240] = { + [sym__simple_statements] = STATE(1667), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1942), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3747), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1943), + [sym_subscript] = STATE(1943), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(5167), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(447), [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_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -52224,13 +52857,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -52244,8 +52878,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(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -52253,76 +52887,82 @@ 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(477), + [sym__indent] = ACTIONS(479), [sym_string_start] = ACTIONS(107), }, - [240] = { - [sym__simple_statements] = STATE(1399), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(9), + [241] = { + [sym__simple_statements] = STATE(1571), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1942), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3747), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1943), + [sym_subscript] = STATE(1943), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(5167), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(447), [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_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -52330,13 +52970,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -52350,8 +52991,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(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -52359,76 +53000,82 @@ 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(481), + [sym__indent] = ACTIONS(483), [sym_string_start] = ACTIONS(107), }, - [241] = { - [sym__simple_statements] = STATE(523), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(9), + [242] = { + [sym__simple_statements] = STATE(1676), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1942), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3747), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1943), + [sym_subscript] = STATE(1943), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(5167), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(447), [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_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -52436,13 +53083,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -52456,8 +53104,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(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -52465,76 +53113,82 @@ 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(485), + [sym__indent] = ACTIONS(487), [sym_string_start] = ACTIONS(107), }, - [242] = { - [sym__simple_statements] = STATE(1169), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(9), + [243] = { + [sym__simple_statements] = STATE(1559), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1942), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3747), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1943), + [sym_subscript] = STATE(1943), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(5167), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(447), [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_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -52542,13 +53196,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(459), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(461), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -52562,8 +53217,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(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_await] = ACTIONS(463), + [anon_sym_api] = ACTIONS(455), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -52571,69 +53226,182 @@ 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(489), + [sym__indent] = ACTIONS(491), [sym_string_start] = ACTIONS(107), }, - [243] = { - [sym__simple_statements] = STATE(1172), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [244] = { + [sym__simple_statements] = STATE(1765), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1942), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3747), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1943), + [sym_subscript] = STATE(1943), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(5167), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(447), + [anon_sym_import] = ACTIONS(11), + [anon_sym_cimport] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_print] = ACTIONS(453), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(455), + [anon_sym_async] = ACTIONS(455), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(459), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(461), + [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(463), + [anon_sym_api] = ACTIONS(455), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(493), + [sym__indent] = ACTIONS(495), + [sym_string_start] = ACTIONS(107), + }, + [245] = { + [sym__simple_statements] = STATE(3095), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52677,69 +53445,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(521), - [sym__indent] = ACTIONS(523), + [sym__newline] = ACTIONS(497), + [sym__indent] = ACTIONS(499), [sym_string_start] = ACTIONS(107), }, - [244] = { - [sym__simple_statements] = STATE(526), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [246] = { + [sym__simple_statements] = STATE(1038), + [sym_import_statement] = STATE(4947), + [sym_future_import_statement] = STATE(4947), + [sym_import_from_statement] = STATE(4947), + [sym_print_statement] = STATE(4947), + [sym_assert_statement] = STATE(4947), + [sym_expression_statement] = STATE(4947), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4947), + [sym_delete_statement] = STATE(4947), + [sym_raise_statement] = STATE(4947), + [sym_pass_statement] = STATE(4947), + [sym_break_statement] = STATE(4947), + [sym_continue_statement] = STATE(4947), + [sym_global_statement] = STATE(4947), + [sym_nonlocal_statement] = STATE(4947), + [sym_exec_statement] = STATE(4947), + [sym_type_alias_statement] = STATE(4947), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4947), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52783,69 +53551,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(525), - [sym__indent] = ACTIONS(527), + [sym__newline] = ACTIONS(501), + [sym__indent] = ACTIONS(503), [sym_string_start] = ACTIONS(107), }, - [245] = { - [sym__simple_statements] = STATE(527), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [247] = { + [sym__simple_statements] = STATE(1247), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52889,69 +53657,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(529), - [sym__indent] = ACTIONS(531), + [sym__newline] = ACTIONS(505), + [sym__indent] = ACTIONS(507), [sym_string_start] = ACTIONS(107), }, - [246] = { - [sym__simple_statements] = STATE(1174), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [248] = { + [sym__simple_statements] = STATE(1320), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -52995,69 +53763,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(533), - [sym__indent] = ACTIONS(535), + [sym__newline] = ACTIONS(509), + [sym__indent] = ACTIONS(511), [sym_string_start] = ACTIONS(107), }, - [247] = { - [sym__simple_statements] = STATE(1083), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [249] = { + [sym__simple_statements] = STATE(1212), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53101,69 +53869,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(537), - [sym__indent] = ACTIONS(539), + [sym__newline] = ACTIONS(513), + [sym__indent] = ACTIONS(515), [sym_string_start] = ACTIONS(107), }, - [248] = { - [sym__simple_statements] = STATE(2901), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [250] = { + [sym__simple_statements] = STATE(558), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53207,69 +53975,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(541), - [sym__indent] = ACTIONS(543), + [sym__newline] = ACTIONS(517), + [sym__indent] = ACTIONS(519), [sym_string_start] = ACTIONS(107), }, - [249] = { - [sym__simple_statements] = STATE(1183), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [251] = { + [sym__simple_statements] = STATE(1068), + [sym_import_statement] = STATE(4810), + [sym_future_import_statement] = STATE(4810), + [sym_import_from_statement] = STATE(4810), + [sym_print_statement] = STATE(4810), + [sym_assert_statement] = STATE(4810), + [sym_expression_statement] = STATE(4810), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4810), + [sym_delete_statement] = STATE(4810), + [sym_raise_statement] = STATE(4810), + [sym_pass_statement] = STATE(4810), + [sym_break_statement] = STATE(4810), + [sym_continue_statement] = STATE(4810), + [sym_global_statement] = STATE(4810), + [sym_nonlocal_statement] = STATE(4810), + [sym_exec_statement] = STATE(4810), + [sym_type_alias_statement] = STATE(4810), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4810), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53313,69 +54081,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(521), + [sym__indent] = ACTIONS(523), [sym_string_start] = ACTIONS(107), }, - [250] = { - [sym__simple_statements] = STATE(2993), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [252] = { + [sym__simple_statements] = STATE(1085), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53419,69 +54187,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(525), + [sym__indent] = ACTIONS(527), [sym_string_start] = ACTIONS(107), }, - [251] = { - [sym__simple_statements] = STATE(996), - [sym_import_statement] = STATE(4744), - [sym_future_import_statement] = STATE(4744), - [sym_import_from_statement] = STATE(4744), - [sym_print_statement] = STATE(4744), - [sym_assert_statement] = STATE(4744), - [sym_expression_statement] = STATE(4744), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4744), - [sym_delete_statement] = STATE(4744), - [sym_raise_statement] = STATE(4744), - [sym_pass_statement] = STATE(4744), - [sym_break_statement] = STATE(4744), - [sym_continue_statement] = STATE(4744), - [sym_global_statement] = STATE(4744), - [sym_nonlocal_statement] = STATE(4744), - [sym_exec_statement] = STATE(4744), - [sym_type_alias_statement] = STATE(4744), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4744), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [253] = { + [sym__simple_statements] = STATE(562), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53525,69 +54293,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(545), - [sym__indent] = ACTIONS(547), + [sym__newline] = ACTIONS(529), + [sym__indent] = ACTIONS(531), [sym_string_start] = ACTIONS(107), }, - [252] = { - [sym__simple_statements] = STATE(537), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [254] = { + [sym__simple_statements] = STATE(1086), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53631,69 +54399,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(549), - [sym__indent] = ACTIONS(551), + [sym__newline] = ACTIONS(533), + [sym__indent] = ACTIONS(535), [sym_string_start] = ACTIONS(107), }, - [253] = { - [sym__simple_statements] = STATE(538), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [255] = { + [sym__simple_statements] = STATE(1386), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53737,69 +54505,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(553), - [sym__indent] = ACTIONS(555), + [sym__newline] = ACTIONS(537), + [sym__indent] = ACTIONS(539), [sym_string_start] = ACTIONS(107), }, - [254] = { - [sym__simple_statements] = STATE(1296), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [256] = { + [sym__simple_statements] = STATE(3054), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53843,69 +54611,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(557), - [sym__indent] = ACTIONS(559), + [sym__newline] = ACTIONS(439), + [sym__indent] = ACTIONS(441), [sym_string_start] = ACTIONS(107), }, - [255] = { - [sym__simple_statements] = STATE(1130), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [257] = { + [sym__simple_statements] = STATE(2957), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53949,69 +54717,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(561), - [sym__indent] = ACTIONS(563), + [sym__newline] = ACTIONS(541), + [sym__indent] = ACTIONS(543), [sym_string_start] = ACTIONS(107), }, - [256] = { - [sym__simple_statements] = STATE(1410), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [258] = { + [sym__simple_statements] = STATE(1748), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54055,69 +54823,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(565), - [sym__indent] = ACTIONS(567), + [sym__newline] = ACTIONS(545), + [sym__indent] = ACTIONS(547), [sym_string_start] = ACTIONS(107), }, - [257] = { - [sym__simple_statements] = STATE(1647), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [259] = { + [sym__simple_statements] = STATE(1401), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54161,69 +54929,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(569), - [sym__indent] = ACTIONS(571), + [sym__newline] = ACTIONS(549), + [sym__indent] = ACTIONS(551), [sym_string_start] = ACTIONS(107), }, - [258] = { - [sym__simple_statements] = STATE(1674), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [260] = { + [sym__simple_statements] = STATE(577), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54267,69 +55035,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(573), - [sym__indent] = ACTIONS(575), + [sym__newline] = ACTIONS(553), + [sym__indent] = ACTIONS(555), [sym_string_start] = ACTIONS(107), }, - [259] = { - [sym__simple_statements] = STATE(1188), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [261] = { + [sym__simple_statements] = STATE(1407), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54373,69 +55141,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(577), - [sym__indent] = ACTIONS(579), + [sym__newline] = ACTIONS(557), + [sym__indent] = ACTIONS(559), [sym_string_start] = ACTIONS(107), }, - [260] = { - [sym__simple_statements] = STATE(1045), - [sym_import_statement] = STATE(4868), - [sym_future_import_statement] = STATE(4868), - [sym_import_from_statement] = STATE(4868), - [sym_print_statement] = STATE(4868), - [sym_assert_statement] = STATE(4868), - [sym_expression_statement] = STATE(4868), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4868), - [sym_delete_statement] = STATE(4868), - [sym_raise_statement] = STATE(4868), - [sym_pass_statement] = STATE(4868), - [sym_break_statement] = STATE(4868), - [sym_continue_statement] = STATE(4868), - [sym_global_statement] = STATE(4868), - [sym_nonlocal_statement] = STATE(4868), - [sym_exec_statement] = STATE(4868), - [sym_type_alias_statement] = STATE(4868), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4868), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [262] = { + [sym__simple_statements] = STATE(580), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54479,69 +55247,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(581), - [sym__indent] = ACTIONS(583), + [sym__newline] = ACTIONS(561), + [sym__indent] = ACTIONS(563), [sym_string_start] = ACTIONS(107), }, - [261] = { - [sym__simple_statements] = STATE(1046), - [sym_import_statement] = STATE(4897), - [sym_future_import_statement] = STATE(4897), - [sym_import_from_statement] = STATE(4897), - [sym_print_statement] = STATE(4897), - [sym_assert_statement] = STATE(4897), - [sym_expression_statement] = STATE(4897), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4897), - [sym_delete_statement] = STATE(4897), - [sym_raise_statement] = STATE(4897), - [sym_pass_statement] = STATE(4897), - [sym_break_statement] = STATE(4897), - [sym_continue_statement] = STATE(4897), - [sym_global_statement] = STATE(4897), - [sym_nonlocal_statement] = STATE(4897), - [sym_exec_statement] = STATE(4897), - [sym_type_alias_statement] = STATE(4897), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4897), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [263] = { + [sym__simple_statements] = STATE(581), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54585,69 +55353,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(585), - [sym__indent] = ACTIONS(587), + [sym__newline] = ACTIONS(565), + [sym__indent] = ACTIONS(567), [sym_string_start] = ACTIONS(107), }, - [262] = { - [sym__simple_statements] = STATE(1238), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [264] = { + [sym__simple_statements] = STATE(1090), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54691,69 +55459,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(589), - [sym__indent] = ACTIONS(591), + [sym__newline] = ACTIONS(569), + [sym__indent] = ACTIONS(571), [sym_string_start] = ACTIONS(107), }, - [263] = { - [sym__simple_statements] = STATE(1417), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [265] = { + [sym__simple_statements] = STATE(1229), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54797,69 +55565,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(593), - [sym__indent] = ACTIONS(595), + [sym__newline] = ACTIONS(573), + [sym__indent] = ACTIONS(575), [sym_string_start] = ACTIONS(107), }, - [264] = { - [sym__simple_statements] = STATE(1267), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [266] = { + [sym__simple_statements] = STATE(1239), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54903,69 +55671,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(597), - [sym__indent] = ACTIONS(599), + [sym__newline] = ACTIONS(577), + [sym__indent] = ACTIONS(579), [sym_string_start] = ACTIONS(107), }, - [265] = { - [sym__simple_statements] = STATE(539), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [267] = { + [sym__simple_statements] = STATE(1420), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55009,69 +55777,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(601), - [sym__indent] = ACTIONS(603), + [sym__newline] = ACTIONS(581), + [sym__indent] = ACTIONS(583), [sym_string_start] = ACTIONS(107), }, - [266] = { - [sym__simple_statements] = STATE(1258), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [268] = { + [sym__simple_statements] = STATE(1412), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55115,69 +55883,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(605), - [sym__indent] = ACTIONS(607), + [sym__newline] = ACTIONS(375), + [sym__indent] = ACTIONS(377), [sym_string_start] = ACTIONS(107), }, - [267] = { - [sym__simple_statements] = STATE(1216), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [269] = { + [sym__simple_statements] = STATE(1074), + [sym_import_statement] = STATE(4810), + [sym_future_import_statement] = STATE(4810), + [sym_import_from_statement] = STATE(4810), + [sym_print_statement] = STATE(4810), + [sym_assert_statement] = STATE(4810), + [sym_expression_statement] = STATE(4810), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4810), + [sym_delete_statement] = STATE(4810), + [sym_raise_statement] = STATE(4810), + [sym_pass_statement] = STATE(4810), + [sym_break_statement] = STATE(4810), + [sym_continue_statement] = STATE(4810), + [sym_global_statement] = STATE(4810), + [sym_nonlocal_statement] = STATE(4810), + [sym_exec_statement] = STATE(4810), + [sym_type_alias_statement] = STATE(4810), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4810), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55221,69 +55989,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(609), - [sym__indent] = ACTIONS(611), + [sym__newline] = ACTIONS(585), + [sym__indent] = ACTIONS(587), [sym_string_start] = ACTIONS(107), }, - [268] = { - [sym__simple_statements] = STATE(543), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [270] = { + [sym__simple_statements] = STATE(1093), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55327,69 +56095,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(613), - [sym__indent] = ACTIONS(615), + [sym__newline] = ACTIONS(589), + [sym__indent] = ACTIONS(591), [sym_string_start] = ACTIONS(107), }, - [269] = { - [sym__simple_statements] = STATE(5177), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [271] = { + [sym__simple_statements] = STATE(1314), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55433,69 +56201,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(617), - [sym__indent] = ACTIONS(619), + [sym__newline] = ACTIONS(593), + [sym__indent] = ACTIONS(595), [sym_string_start] = ACTIONS(107), }, - [270] = { - [sym__simple_statements] = STATE(3057), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [272] = { + [sym__simple_statements] = STATE(1251), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55539,69 +56307,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(597), + [sym__indent] = ACTIONS(599), [sym_string_start] = ACTIONS(107), }, - [271] = { - [sym__simple_statements] = STATE(2864), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [273] = { + [sym__simple_statements] = STATE(1272), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55645,69 +56413,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(621), - [sym__indent] = ACTIONS(623), + [sym__newline] = ACTIONS(601), + [sym__indent] = ACTIONS(603), [sym_string_start] = ACTIONS(107), }, - [272] = { - [sym__simple_statements] = STATE(5206), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [274] = { + [sym__simple_statements] = STATE(999), + [sym_import_statement] = STATE(4893), + [sym_future_import_statement] = STATE(4893), + [sym_import_from_statement] = STATE(4893), + [sym_print_statement] = STATE(4893), + [sym_assert_statement] = STATE(4893), + [sym_expression_statement] = STATE(4893), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4893), + [sym_delete_statement] = STATE(4893), + [sym_raise_statement] = STATE(4893), + [sym_pass_statement] = STATE(4893), + [sym_break_statement] = STATE(4893), + [sym_continue_statement] = STATE(4893), + [sym_global_statement] = STATE(4893), + [sym_nonlocal_statement] = STATE(4893), + [sym_exec_statement] = STATE(4893), + [sym_type_alias_statement] = STATE(4893), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4893), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55751,69 +56519,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(625), - [sym__indent] = ACTIONS(627), + [sym__newline] = ACTIONS(605), + [sym__indent] = ACTIONS(607), [sym_string_start] = ACTIONS(107), }, - [273] = { - [sym__simple_statements] = STATE(1237), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [275] = { + [sym__simple_statements] = STATE(1268), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55857,69 +56625,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(629), - [sym__indent] = ACTIONS(631), + [sym__newline] = ACTIONS(609), + [sym__indent] = ACTIONS(611), [sym_string_start] = ACTIONS(107), }, - [274] = { - [sym__simple_statements] = STATE(558), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [276] = { + [sym__simple_statements] = STATE(583), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55963,69 +56731,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(633), - [sym__indent] = ACTIONS(635), + [sym__newline] = ACTIONS(613), + [sym__indent] = ACTIONS(615), [sym_string_start] = ACTIONS(107), }, - [275] = { - [sym__simple_statements] = STATE(1245), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [277] = { + [sym__simple_statements] = STATE(584), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56069,69 +56837,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(637), - [sym__indent] = ACTIONS(639), + [sym__newline] = ACTIONS(617), + [sym__indent] = ACTIONS(619), [sym_string_start] = ACTIONS(107), }, - [276] = { - [sym__simple_statements] = STATE(1018), - [sym_import_statement] = STATE(4744), - [sym_future_import_statement] = STATE(4744), - [sym_import_from_statement] = STATE(4744), - [sym_print_statement] = STATE(4744), - [sym_assert_statement] = STATE(4744), - [sym_expression_statement] = STATE(4744), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4744), - [sym_delete_statement] = STATE(4744), - [sym_raise_statement] = STATE(4744), - [sym_pass_statement] = STATE(4744), - [sym_break_statement] = STATE(4744), - [sym_continue_statement] = STATE(4744), - [sym_global_statement] = STATE(4744), - [sym_nonlocal_statement] = STATE(4744), - [sym_exec_statement] = STATE(4744), - [sym_type_alias_statement] = STATE(4744), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4744), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [278] = { + [sym__simple_statements] = STATE(585), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56175,69 +56943,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(641), - [sym__indent] = ACTIONS(643), + [sym__newline] = ACTIONS(621), + [sym__indent] = ACTIONS(623), [sym_string_start] = ACTIONS(107), }, - [277] = { - [sym__simple_statements] = STATE(561), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [279] = { + [sym__simple_statements] = STATE(5389), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56281,69 +57049,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(645), - [sym__indent] = ACTIONS(647), + [sym__newline] = ACTIONS(625), + [sym__indent] = ACTIONS(627), [sym_string_start] = ACTIONS(107), }, - [278] = { - [sym__simple_statements] = STATE(562), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [280] = { + [sym__simple_statements] = STATE(3074), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56387,69 +57155,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(649), - [sym__indent] = ACTIONS(651), + [sym__newline] = ACTIONS(415), + [sym__indent] = ACTIONS(417), [sym_string_start] = ACTIONS(107), }, - [279] = { - [sym__simple_statements] = STATE(1064), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [281] = { + [sym__simple_statements] = STATE(5450), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56493,69 +57261,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(653), - [sym__indent] = ACTIONS(655), + [sym__newline] = ACTIONS(629), + [sym__indent] = ACTIONS(631), [sym_string_start] = ACTIONS(107), }, - [280] = { - [sym__simple_statements] = STATE(1301), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [282] = { + [sym__simple_statements] = STATE(1568), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56599,69 +57367,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(657), - [sym__indent] = ACTIONS(659), + [sym__newline] = ACTIONS(633), + [sym__indent] = ACTIONS(635), [sym_string_start] = ACTIONS(107), }, - [281] = { - [sym__simple_statements] = STATE(1274), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [283] = { + [sym__simple_statements] = STATE(2967), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56705,69 +57473,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(661), - [sym__indent] = ACTIONS(663), + [sym__newline] = ACTIONS(637), + [sym__indent] = ACTIONS(639), [sym_string_start] = ACTIONS(107), }, - [282] = { - [sym__simple_statements] = STATE(1074), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [284] = { + [sym__simple_statements] = STATE(601), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56811,69 +57579,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(665), - [sym__indent] = ACTIONS(667), + [sym__newline] = ACTIONS(641), + [sym__indent] = ACTIONS(643), [sym_string_start] = ACTIONS(107), }, - [283] = { - [sym__simple_statements] = STATE(1319), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [285] = { + [sym__simple_statements] = STATE(1246), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56917,281 +57685,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(669), - [sym__indent] = ACTIONS(671), - [sym_string_start] = ACTIONS(107), - }, - [284] = { - [sym__simple_statements] = STATE(1325), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [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(673), - [sym__indent] = ACTIONS(675), - [sym_string_start] = ACTIONS(107), - }, - [285] = { - [sym__simple_statements] = STATE(1255), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [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(407), - [sym__indent] = ACTIONS(409), + [sym__newline] = ACTIONS(645), + [sym__indent] = ACTIONS(647), [sym_string_start] = ACTIONS(107), }, [286] = { - [sym__simple_statements] = STATE(1451), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1244), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57235,69 +57791,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(677), - [sym__indent] = ACTIONS(679), + [sym__newline] = ACTIONS(649), + [sym__indent] = ACTIONS(651), [sym_string_start] = ACTIONS(107), }, [287] = { - [sym__simple_statements] = STATE(564), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(605), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57341,69 +57897,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(681), - [sym__indent] = ACTIONS(683), + [sym__newline] = ACTIONS(653), + [sym__indent] = ACTIONS(655), [sym_string_start] = ACTIONS(107), }, [288] = { - [sym__simple_statements] = STATE(565), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1366), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57447,69 +58003,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(685), - [sym__indent] = ACTIONS(687), + [sym__newline] = ACTIONS(395), + [sym__indent] = ACTIONS(397), [sym_string_start] = ACTIONS(107), }, [289] = { - [sym__simple_statements] = STATE(566), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1282), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57553,69 +58109,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(689), - [sym__indent] = ACTIONS(691), + [sym__newline] = ACTIONS(657), + [sym__indent] = ACTIONS(659), [sym_string_start] = ACTIONS(107), }, [290] = { - [sym__simple_statements] = STATE(1309), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1108), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57659,69 +58215,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(693), - [sym__indent] = ACTIONS(695), + [sym__newline] = ACTIONS(661), + [sym__indent] = ACTIONS(663), [sym_string_start] = ACTIONS(107), }, [291] = { - [sym__simple_statements] = STATE(2945), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1340), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57765,69 +58321,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(665), + [sym__indent] = ACTIONS(667), [sym_string_start] = ACTIONS(107), }, [292] = { - [sym__simple_statements] = STATE(1337), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1405), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57871,69 +58427,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(697), - [sym__indent] = ACTIONS(699), + [sym__newline] = ACTIONS(669), + [sym__indent] = ACTIONS(671), [sym_string_start] = ACTIONS(107), }, [293] = { - [sym__simple_statements] = STATE(1330), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1014), + [sym_import_statement] = STATE(4920), + [sym_future_import_statement] = STATE(4920), + [sym_import_from_statement] = STATE(4920), + [sym_print_statement] = STATE(4920), + [sym_assert_statement] = STATE(4920), + [sym_expression_statement] = STATE(4920), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4920), + [sym_delete_statement] = STATE(4920), + [sym_raise_statement] = STATE(4920), + [sym_pass_statement] = STATE(4920), + [sym_break_statement] = STATE(4920), + [sym_continue_statement] = STATE(4920), + [sym_global_statement] = STATE(4920), + [sym_nonlocal_statement] = STATE(4920), + [sym_exec_statement] = STATE(4920), + [sym_type_alias_statement] = STATE(4920), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4920), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57977,69 +58533,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(673), + [sym__indent] = ACTIONS(675), [sym_string_start] = ACTIONS(107), }, [294] = { - [sym__simple_statements] = STATE(1314), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1339), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58083,69 +58639,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(701), - [sym__indent] = ACTIONS(703), + [sym__newline] = ACTIONS(387), + [sym__indent] = ACTIONS(389), [sym_string_start] = ACTIONS(107), }, [295] = { - [sym__simple_statements] = STATE(2853), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1286), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58189,69 +58745,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(705), - [sym__indent] = ACTIONS(707), + [sym__newline] = ACTIONS(435), + [sym__indent] = ACTIONS(437), [sym_string_start] = ACTIONS(107), }, [296] = { - [sym__simple_statements] = STATE(582), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(608), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58295,69 +58851,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(709), - [sym__indent] = ACTIONS(711), + [sym__newline] = ACTIONS(677), + [sym__indent] = ACTIONS(679), [sym_string_start] = ACTIONS(107), }, [297] = { - [sym__simple_statements] = STATE(1373), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1369), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58401,69 +58957,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(713), - [sym__indent] = ACTIONS(715), + [sym__newline] = ACTIONS(681), + [sym__indent] = ACTIONS(683), [sym_string_start] = ACTIONS(107), }, [298] = { - [sym__simple_statements] = STATE(1382), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(611), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58507,69 +59063,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(717), - [sym__indent] = ACTIONS(719), + [sym__newline] = ACTIONS(685), + [sym__indent] = ACTIONS(687), [sym_string_start] = ACTIONS(107), }, [299] = { - [sym__simple_statements] = STATE(586), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(612), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58613,69 +59169,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(721), - [sym__indent] = ACTIONS(723), + [sym__newline] = ACTIONS(689), + [sym__indent] = ACTIONS(691), [sym_string_start] = ACTIONS(107), }, [300] = { - [sym__simple_statements] = STATE(1227), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1240), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58719,69 +59275,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(725), - [sym__indent] = ACTIONS(727), + [sym__newline] = ACTIONS(693), + [sym__indent] = ACTIONS(695), [sym_string_start] = ACTIONS(107), }, [301] = { - [sym__simple_statements] = STATE(1316), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1202), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58825,69 +59381,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(729), - [sym__indent] = ACTIONS(731), + [sym__newline] = ACTIONS(697), + [sym__indent] = ACTIONS(699), [sym_string_start] = ACTIONS(107), }, [302] = { - [sym__simple_statements] = STATE(5256), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1662), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58931,69 +59487,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(733), - [sym__indent] = ACTIONS(735), + [sym__newline] = ACTIONS(701), + [sym__indent] = ACTIONS(703), [sym_string_start] = ACTIONS(107), }, [303] = { - [sym__simple_statements] = STATE(1055), - [sym_import_statement] = STATE(4868), - [sym_future_import_statement] = STATE(4868), - [sym_import_from_statement] = STATE(4868), - [sym_print_statement] = STATE(4868), - [sym_assert_statement] = STATE(4868), - [sym_expression_statement] = STATE(4868), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4868), - [sym_delete_statement] = STATE(4868), - [sym_raise_statement] = STATE(4868), - [sym_pass_statement] = STATE(4868), - [sym_break_statement] = STATE(4868), - [sym_continue_statement] = STATE(4868), - [sym_global_statement] = STATE(4868), - [sym_nonlocal_statement] = STATE(4868), - [sym_exec_statement] = STATE(4868), - [sym_type_alias_statement] = STATE(4868), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4868), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(2971), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59037,69 +59593,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(737), - [sym__indent] = ACTIONS(739), + [sym__newline] = ACTIONS(705), + [sym__indent] = ACTIONS(707), [sym_string_start] = ACTIONS(107), }, [304] = { - [sym__simple_statements] = STATE(1329), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(3084), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59143,69 +59699,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(741), - [sym__indent] = ACTIONS(743), + [sym__newline] = ACTIONS(443), + [sym__indent] = ACTIONS(445), [sym_string_start] = ACTIONS(107), }, [305] = { - [sym__simple_statements] = STATE(5323), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1422), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59249,69 +59805,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(745), - [sym__indent] = ACTIONS(747), + [sym__newline] = ACTIONS(709), + [sym__indent] = ACTIONS(711), [sym_string_start] = ACTIONS(107), }, [306] = { - [sym__simple_statements] = STATE(589), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(628), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59355,69 +59911,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(749), - [sym__indent] = ACTIONS(751), + [sym__newline] = ACTIONS(713), + [sym__indent] = ACTIONS(715), [sym_string_start] = ACTIONS(107), }, [307] = { - [sym__simple_statements] = STATE(1151), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(629), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59461,69 +60017,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(753), - [sym__indent] = ACTIONS(755), + [sym__newline] = ACTIONS(717), + [sym__indent] = ACTIONS(719), [sym_string_start] = ACTIONS(107), }, [308] = { - [sym__simple_statements] = STATE(592), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(630), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59567,69 +60123,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(757), - [sym__indent] = ACTIONS(759), + [sym__newline] = ACTIONS(721), + [sym__indent] = ACTIONS(723), [sym_string_start] = ACTIONS(107), }, [309] = { - [sym__simple_statements] = STATE(593), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1215), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59673,69 +60229,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(761), - [sym__indent] = ACTIONS(763), + [sym__newline] = ACTIONS(725), + [sym__indent] = ACTIONS(727), [sym_string_start] = ACTIONS(107), }, [310] = { - [sym__simple_statements] = STATE(1686), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1243), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59779,69 +60335,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(765), - [sym__indent] = ACTIONS(767), + [sym__newline] = ACTIONS(729), + [sym__indent] = ACTIONS(731), [sym_string_start] = ACTIONS(107), }, [311] = { - [sym__simple_statements] = STATE(3907), - [sym_import_statement] = STATE(4955), - [sym_future_import_statement] = STATE(4955), - [sym_import_from_statement] = STATE(4955), - [sym_print_statement] = STATE(4955), - [sym_assert_statement] = STATE(4955), - [sym_expression_statement] = STATE(4955), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4955), - [sym_delete_statement] = STATE(4955), - [sym_raise_statement] = STATE(4955), - [sym_pass_statement] = STATE(4955), - [sym_break_statement] = STATE(4955), - [sym_continue_statement] = STATE(4955), - [sym_global_statement] = STATE(4955), - [sym_nonlocal_statement] = STATE(4955), - [sym_exec_statement] = STATE(4955), - [sym_type_alias_statement] = STATE(4955), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4955), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1342), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59885,69 +60441,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(769), - [sym__indent] = ACTIONS(771), + [sym__newline] = ACTIONS(733), + [sym__indent] = ACTIONS(735), [sym_string_start] = ACTIONS(107), }, [312] = { - [sym__simple_statements] = STATE(2884), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1582), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59991,69 +60547,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(773), - [sym__indent] = ACTIONS(775), + [sym__newline] = ACTIONS(737), + [sym__indent] = ACTIONS(739), [sym_string_start] = ACTIONS(107), }, [313] = { - [sym__simple_statements] = STATE(2979), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(5351), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60097,69 +60653,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(741), + [sym__indent] = ACTIONS(743), [sym_string_start] = ACTIONS(107), }, [314] = { - [sym__simple_statements] = STATE(1331), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1197), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60203,69 +60759,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(777), - [sym__indent] = ACTIONS(779), + [sym__newline] = ACTIONS(745), + [sym__indent] = ACTIONS(747), [sym_string_start] = ACTIONS(107), }, [315] = { - [sym__simple_statements] = STATE(608), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1335), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60309,69 +60865,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(781), - [sym__indent] = ACTIONS(783), + [sym__newline] = ACTIONS(749), + [sym__indent] = ACTIONS(751), [sym_string_start] = ACTIONS(107), }, [316] = { - [sym__simple_statements] = STATE(609), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(634), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60415,69 +60971,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(785), - [sym__indent] = ACTIONS(787), + [sym__newline] = ACTIONS(753), + [sym__indent] = ACTIONS(755), [sym_string_start] = ACTIONS(107), }, [317] = { - [sym__simple_statements] = STATE(610), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1200), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60521,69 +61077,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(789), - [sym__indent] = ACTIONS(791), + [sym__newline] = ACTIONS(757), + [sym__indent] = ACTIONS(759), [sym_string_start] = ACTIONS(107), }, [318] = { - [sym__simple_statements] = STATE(981), - [sym_import_statement] = STATE(4744), - [sym_future_import_statement] = STATE(4744), - [sym_import_from_statement] = STATE(4744), - [sym_print_statement] = STATE(4744), - [sym_assert_statement] = STATE(4744), - [sym_expression_statement] = STATE(4744), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4744), - [sym_delete_statement] = STATE(4744), - [sym_raise_statement] = STATE(4744), - [sym_pass_statement] = STATE(4744), - [sym_break_statement] = STATE(4744), - [sym_continue_statement] = STATE(4744), - [sym_global_statement] = STATE(4744), - [sym_nonlocal_statement] = STATE(4744), - [sym_exec_statement] = STATE(4744), - [sym_type_alias_statement] = STATE(4744), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4744), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1121), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60627,69 +61183,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(793), - [sym__indent] = ACTIONS(795), + [sym__newline] = ACTIONS(761), + [sym__indent] = ACTIONS(763), [sym_string_start] = ACTIONS(107), }, [319] = { - [sym__simple_statements] = STATE(985), - [sym_import_statement] = STATE(4834), - [sym_future_import_statement] = STATE(4834), - [sym_import_from_statement] = STATE(4834), - [sym_print_statement] = STATE(4834), - [sym_assert_statement] = STATE(4834), - [sym_expression_statement] = STATE(4834), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4834), - [sym_delete_statement] = STATE(4834), - [sym_raise_statement] = STATE(4834), - [sym_pass_statement] = STATE(4834), - [sym_break_statement] = STATE(4834), - [sym_continue_statement] = STATE(4834), - [sym_global_statement] = STATE(4834), - [sym_nonlocal_statement] = STATE(4834), - [sym_exec_statement] = STATE(4834), - [sym_type_alias_statement] = STATE(4834), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4834), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(3094), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60733,69 +61289,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(797), - [sym__indent] = ACTIONS(799), + [sym__newline] = ACTIONS(431), + [sym__indent] = ACTIONS(433), [sym_string_start] = ACTIONS(107), }, [320] = { - [sym__simple_statements] = STATE(1359), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1133), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60839,69 +61395,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(765), + [sym__indent] = ACTIONS(767), [sym_string_start] = ACTIONS(107), }, [321] = { - [sym__simple_statements] = STATE(923), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1218), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60945,69 +61501,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(801), - [sym__indent] = ACTIONS(803), + [sym__newline] = ACTIONS(769), + [sym__indent] = ACTIONS(771), [sym_string_start] = ACTIONS(107), }, [322] = { - [sym__simple_statements] = STATE(614), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(5358), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61051,69 +61607,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(805), - [sym__indent] = ACTIONS(807), + [sym__newline] = ACTIONS(773), + [sym__indent] = ACTIONS(775), [sym_string_start] = ACTIONS(107), }, [323] = { - [sym__simple_statements] = STATE(1256), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(647), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61157,69 +61713,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(809), - [sym__indent] = ACTIONS(811), + [sym__newline] = ACTIONS(777), + [sym__indent] = ACTIONS(779), [sym_string_start] = ACTIONS(107), }, [324] = { - [sym__simple_statements] = STATE(1320), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1136), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61263,69 +61819,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(813), - [sym__indent] = ACTIONS(815), + [sym__newline] = ACTIONS(781), + [sym__indent] = ACTIONS(783), [sym_string_start] = ACTIONS(107), }, [325] = { - [sym__simple_statements] = STATE(3006), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1058), + [sym_import_statement] = STATE(4810), + [sym_future_import_statement] = STATE(4810), + [sym_import_from_statement] = STATE(4810), + [sym_print_statement] = STATE(4810), + [sym_assert_statement] = STATE(4810), + [sym_expression_statement] = STATE(4810), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4810), + [sym_delete_statement] = STATE(4810), + [sym_raise_statement] = STATE(4810), + [sym_pass_statement] = STATE(4810), + [sym_break_statement] = STATE(4810), + [sym_continue_statement] = STATE(4810), + [sym_global_statement] = STATE(4810), + [sym_nonlocal_statement] = STATE(4810), + [sym_exec_statement] = STATE(4810), + [sym_type_alias_statement] = STATE(4810), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4810), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61369,69 +61925,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(785), + [sym__indent] = ACTIONS(787), [sym_string_start] = ACTIONS(107), }, [326] = { - [sym__simple_statements] = STATE(1118), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(650), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61475,69 +62031,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(817), - [sym__indent] = ACTIONS(819), + [sym__newline] = ACTIONS(789), + [sym__indent] = ACTIONS(791), [sym_string_start] = ACTIONS(107), }, [327] = { - [sym__simple_statements] = STATE(1299), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(651), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61581,69 +62137,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(821), - [sym__indent] = ACTIONS(823), + [sym__newline] = ACTIONS(793), + [sym__indent] = ACTIONS(795), [sym_string_start] = ACTIONS(107), }, [328] = { - [sym__simple_statements] = STATE(1323), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1226), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61687,69 +62243,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(825), - [sym__indent] = ACTIONS(827), + [sym__newline] = ACTIONS(797), + [sym__indent] = ACTIONS(799), [sym_string_start] = ACTIONS(107), }, [329] = { - [sym__simple_statements] = STATE(628), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(3097), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61793,69 +62349,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(829), - [sym__indent] = ACTIONS(831), + [sym__newline] = ACTIONS(801), + [sym__indent] = ACTIONS(803), [sym_string_start] = ACTIONS(107), }, [330] = { - [sym__simple_statements] = STATE(1177), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1653), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61899,175 +62455,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(833), - [sym__indent] = ACTIONS(835), + [sym__newline] = ACTIONS(805), + [sym__indent] = ACTIONS(807), [sym_string_start] = ACTIONS(107), }, [331] = { - [sym__simple_statements] = STATE(1170), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [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(4669), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3979), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(821), + [anon_sym_print] = ACTIONS(824), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(838), + [anon_sym_not] = ACTIONS(841), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_SLASH_SLASH] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym_LT_LT] = ACTIONS(813), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(844), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_AT_EQ] = ACTIONS(847), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_STAR_STAR_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), [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(849), + [anon_sym_api] = ACTIONS(824), [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(837), - [sym__indent] = ACTIONS(839), + [sym__newline] = ACTIONS(811), [sym_string_start] = ACTIONS(107), }, [332] = { - [sym__simple_statements] = STATE(631), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(660), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62111,69 +62667,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(841), - [sym__indent] = ACTIONS(843), + [sym__newline] = ACTIONS(851), + [sym__indent] = ACTIONS(853), [sym_string_start] = ACTIONS(107), }, [333] = { - [sym__simple_statements] = STATE(632), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1126), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62217,69 +62773,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(845), - [sym__indent] = ACTIONS(847), + [sym__newline] = ACTIONS(855), + [sym__indent] = ACTIONS(857), [sym_string_start] = ACTIONS(107), }, [334] = { - [sym__simple_statements] = STATE(5311), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(3101), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62323,69 +62879,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(849), - [sym__indent] = ACTIONS(851), + [sym__newline] = ACTIONS(859), + [sym__indent] = ACTIONS(861), [sym_string_start] = ACTIONS(107), }, [335] = { - [sym__simple_statements] = STATE(3020), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1660), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62429,69 +62985,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(853), - [sym__indent] = ACTIONS(855), + [sym__newline] = ACTIONS(863), + [sym__indent] = ACTIONS(865), [sym_string_start] = ACTIONS(107), }, [336] = { - [sym__simple_statements] = STATE(1189), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(3003), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62535,69 +63091,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(857), - [sym__indent] = ACTIONS(859), + [sym__newline] = ACTIONS(867), + [sym__indent] = ACTIONS(869), [sym_string_start] = ACTIONS(107), }, [337] = { - [sym__simple_statements] = STATE(1381), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(671), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62641,69 +63197,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(861), - [sym__indent] = ACTIONS(863), + [sym__newline] = ACTIONS(871), + [sym__indent] = ACTIONS(873), [sym_string_start] = ACTIONS(107), }, [338] = { - [sym__simple_statements] = STATE(641), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(931), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62747,69 +63303,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(865), - [sym__indent] = ACTIONS(867), + [sym__newline] = ACTIONS(875), + [sym__indent] = ACTIONS(877), [sym_string_start] = ACTIONS(107), }, [339] = { - [sym__simple_statements] = STATE(1195), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(3022), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62853,69 +63409,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(387), - [sym__indent] = ACTIONS(389), + [sym__newline] = ACTIONS(879), + [sym__indent] = ACTIONS(881), [sym_string_start] = ACTIONS(107), }, [340] = { - [sym__simple_statements] = STATE(1191), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(3024), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62959,69 +63515,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(869), - [sym__indent] = ACTIONS(871), + [sym__newline] = ACTIONS(883), + [sym__indent] = ACTIONS(885), [sym_string_start] = ACTIONS(107), }, [341] = { - [sym__simple_statements] = STATE(3042), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(3028), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63065,69 +63621,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(873), - [sym__indent] = ACTIONS(875), + [sym__newline] = ACTIONS(887), + [sym__indent] = ACTIONS(889), [sym_string_start] = ACTIONS(107), }, [342] = { - [sym__simple_statements] = STATE(1361), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1144), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63171,69 +63727,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(877), - [sym__indent] = ACTIONS(879), + [sym__newline] = ACTIONS(891), + [sym__indent] = ACTIONS(893), [sym_string_start] = ACTIONS(107), }, [343] = { - [sym__simple_statements] = STATE(1242), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(681), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63277,69 +63833,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(881), - [sym__indent] = ACTIONS(883), + [sym__newline] = ACTIONS(383), + [sym__indent] = ACTIONS(385), [sym_string_start] = ACTIONS(107), }, [344] = { - [sym__simple_statements] = STATE(2937), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1145), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63383,69 +63939,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(885), - [sym__indent] = ACTIONS(887), + [sym__newline] = ACTIONS(895), + [sym__indent] = ACTIONS(897), [sym_string_start] = ACTIONS(107), }, [345] = { - [sym__simple_statements] = STATE(652), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(684), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63489,69 +64045,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(889), - [sym__indent] = ACTIONS(891), + [sym__newline] = ACTIONS(899), + [sym__indent] = ACTIONS(901), [sym_string_start] = ACTIONS(107), }, [346] = { - [sym__simple_statements] = STATE(1136), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(3046), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63595,69 +64151,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(893), - [sym__indent] = ACTIONS(895), + [sym__newline] = ACTIONS(903), + [sym__indent] = ACTIONS(905), [sym_string_start] = ACTIONS(107), }, [347] = { - [sym__simple_statements] = STATE(2947), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1489), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63701,69 +64257,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(897), - [sym__indent] = ACTIONS(899), + [sym__newline] = ACTIONS(907), + [sym__indent] = ACTIONS(909), [sym_string_start] = ACTIONS(107), }, [348] = { - [sym__simple_statements] = STATE(2948), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(3066), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63807,69 +64363,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(901), - [sym__indent] = ACTIONS(903), + [sym__newline] = ACTIONS(911), + [sym__indent] = ACTIONS(913), [sym_string_start] = ACTIONS(107), }, [349] = { - [sym__simple_statements] = STATE(2949), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(527), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63913,69 +64469,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(905), - [sym__indent] = ACTIONS(907), + [sym__newline] = ACTIONS(915), + [sym__indent] = ACTIONS(917), [sym_string_start] = ACTIONS(107), }, [350] = { - [sym__simple_statements] = STATE(1205), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1497), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64019,69 +64575,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(909), - [sym__indent] = ACTIONS(911), + [sym__newline] = ACTIONS(919), + [sym__indent] = ACTIONS(921), [sym_string_start] = ACTIONS(107), }, [351] = { - [sym__simple_statements] = STATE(662), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(3075), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64125,69 +64681,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(923), + [sym__indent] = ACTIONS(925), [sym_string_start] = ACTIONS(107), }, [352] = { - [sym__simple_statements] = STATE(1328), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(3079), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64231,69 +64787,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(913), - [sym__indent] = ACTIONS(915), + [sym__newline] = ACTIONS(927), + [sym__indent] = ACTIONS(929), [sym_string_start] = ACTIONS(107), }, [353] = { - [sym__simple_statements] = STATE(665), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(2996), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64337,69 +64893,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(917), - [sym__indent] = ACTIONS(919), + [sym__newline] = ACTIONS(931), + [sym__indent] = ACTIONS(933), [sym_string_start] = ACTIONS(107), }, [354] = { - [sym__simple_statements] = STATE(2954), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(693), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64443,69 +64999,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(921), - [sym__indent] = ACTIONS(923), + [sym__newline] = ACTIONS(935), + [sym__indent] = ACTIONS(937), [sym_string_start] = ACTIONS(107), }, [355] = { - [sym__simple_statements] = STATE(2959), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(690), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64549,175 +65105,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(925), - [sym__indent] = ACTIONS(927), + [sym__newline] = ACTIONS(391), + [sym__indent] = ACTIONS(393), [sym_string_start] = ACTIONS(107), }, [356] = { - [sym_chevron] = STATE(4507), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3956), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_print] = ACTIONS(944), - [anon_sym_GT_GT] = ACTIONS(946), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(950), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(933), - [anon_sym_exec] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_not] = ACTIONS(961), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), - [anon_sym_STAR_EQ] = ACTIONS(967), - [anon_sym_SLASH_EQ] = ACTIONS(967), - [anon_sym_AT_EQ] = ACTIONS(967), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(967), - [anon_sym_PERCENT_EQ] = ACTIONS(967), - [anon_sym_STAR_STAR_EQ] = ACTIONS(967), - [anon_sym_GT_GT_EQ] = ACTIONS(967), - [anon_sym_LT_LT_EQ] = ACTIONS(967), - [anon_sym_AMP_EQ] = ACTIONS(967), - [anon_sym_CARET_EQ] = ACTIONS(967), - [anon_sym_PIPE_EQ] = ACTIONS(967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(969), - [anon_sym_api] = ACTIONS(944), - [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(931), - [sym_string_start] = ACTIONS(107), - }, - [357] = { - [sym__simple_statements] = STATE(1552), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym__simple_statements] = STATE(1153), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64761,69 +65211,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(971), - [sym__indent] = ACTIONS(973), + [sym__newline] = ACTIONS(939), + [sym__indent] = ACTIONS(941), [sym_string_start] = ACTIONS(107), }, - [358] = { - [sym__simple_statements] = STATE(2962), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [357] = { + [sym__simple_statements] = STATE(3099), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64867,69 +65317,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(975), - [sym__indent] = ACTIONS(977), + [sym__newline] = ACTIONS(943), + [sym__indent] = ACTIONS(945), [sym_string_start] = ACTIONS(107), }, - [359] = { - [sym__simple_statements] = STATE(2963), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [358] = { + [sym__simple_statements] = STATE(3106), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64973,69 +65423,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(979), - [sym__indent] = ACTIONS(981), + [sym__newline] = ACTIONS(947), + [sym__indent] = ACTIONS(949), [sym_string_start] = ACTIONS(107), }, - [360] = { - [sym__simple_statements] = STATE(673), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [359] = { + [sym__simple_statements] = STATE(3109), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65079,69 +65529,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(983), - [sym__indent] = ACTIONS(985), + [sym__newline] = ACTIONS(951), + [sym__indent] = ACTIONS(953), [sym_string_start] = ACTIONS(107), }, - [361] = { - [sym__simple_statements] = STATE(671), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [360] = { + [sym__simple_statements] = STATE(3113), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65185,69 +65635,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(955), + [sym__indent] = ACTIONS(957), [sym_string_start] = ACTIONS(107), }, - [362] = { - [sym__simple_statements] = STATE(2972), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [361] = { + [sym__simple_statements] = STATE(1509), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65291,69 +65741,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(987), - [sym__indent] = ACTIONS(989), + [sym__newline] = ACTIONS(959), + [sym__indent] = ACTIONS(961), [sym_string_start] = ACTIONS(107), }, - [363] = { - [sym__simple_statements] = STATE(2973), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [362] = { + [sym__simple_statements] = STATE(1194), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65397,69 +65847,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(991), - [sym__indent] = ACTIONS(993), + [sym__newline] = ACTIONS(963), + [sym__indent] = ACTIONS(965), [sym_string_start] = ACTIONS(107), }, - [364] = { - [sym__simple_statements] = STATE(2974), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [363] = { + [sym__simple_statements] = STATE(2999), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65503,69 +65953,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(995), - [sym__indent] = ACTIONS(997), + [sym__newline] = ACTIONS(967), + [sym__indent] = ACTIONS(969), [sym_string_start] = ACTIONS(107), }, - [365] = { - [sym__simple_statements] = STATE(2975), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [364] = { + [sym__simple_statements] = STATE(1103), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65609,69 +66059,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(999), - [sym__indent] = ACTIONS(1001), + [sym__newline] = ACTIONS(971), + [sym__indent] = ACTIONS(973), [sym_string_start] = ACTIONS(107), }, - [366] = { - [sym__simple_statements] = STATE(2981), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [365] = { + [sym__simple_statements] = STATE(1740), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65715,69 +66165,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(1003), - [sym__indent] = ACTIONS(1005), + [sym__newline] = ACTIONS(975), + [sym__indent] = ACTIONS(977), [sym_string_start] = ACTIONS(107), }, - [367] = { - [sym__simple_statements] = STATE(680), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [366] = { + [sym__simple_statements] = STATE(700), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65821,69 +66271,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(423), + [sym__indent] = ACTIONS(425), [sym_string_start] = ACTIONS(107), }, - [368] = { - [sym__simple_statements] = STATE(684), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [367] = { + [sym__simple_statements] = STATE(1224), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65927,69 +66377,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(1007), - [sym__indent] = ACTIONS(1009), + [sym__newline] = ACTIONS(979), + [sym__indent] = ACTIONS(981), [sym_string_start] = ACTIONS(107), }, - [369] = { - [sym__simple_statements] = STATE(2995), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [368] = { + [sym__simple_statements] = STATE(704), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66033,69 +66483,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(1011), - [sym__indent] = ACTIONS(1013), + [sym__newline] = ACTIONS(983), + [sym__indent] = ACTIONS(985), [sym_string_start] = ACTIONS(107), }, - [370] = { - [sym__simple_statements] = STATE(2998), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [369] = { + [sym__simple_statements] = STATE(1518), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66139,69 +66589,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(1015), - [sym__indent] = ACTIONS(1017), + [sym__newline] = ACTIONS(987), + [sym__indent] = ACTIONS(989), [sym_string_start] = ACTIONS(107), }, - [371] = { - [sym__simple_statements] = STATE(3059), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [370] = { + [sym__simple_statements] = STATE(1228), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66245,69 +66695,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(1019), - [sym__indent] = ACTIONS(1021), + [sym__newline] = ACTIONS(991), + [sym__indent] = ACTIONS(993), [sym_string_start] = ACTIONS(107), }, - [372] = { - [sym__simple_statements] = STATE(3001), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [371] = { + [sym__simple_statements] = STATE(3018), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66351,69 +66801,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(1023), - [sym__indent] = ACTIONS(1025), + [sym__newline] = ACTIONS(995), + [sym__indent] = ACTIONS(997), [sym_string_start] = ACTIONS(107), }, - [373] = { - [sym__simple_statements] = STATE(3002), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [372] = { + [sym__simple_statements] = STATE(532), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66457,69 +66907,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(1027), - [sym__indent] = ACTIONS(1029), + [sym__newline] = ACTIONS(999), + [sym__indent] = ACTIONS(1001), [sym_string_start] = ACTIONS(107), }, - [374] = { - [sym__simple_statements] = STATE(3003), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [373] = { + [sym__simple_statements] = STATE(533), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66563,175 +67013,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(1031), - [sym__indent] = ACTIONS(1033), + [sym__newline] = ACTIONS(1003), + [sym__indent] = ACTIONS(1005), [sym_string_start] = ACTIONS(107), }, - [375] = { - [sym_chevron] = STATE(4507), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3956), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_print] = ACTIONS(944), - [anon_sym_GT_GT] = ACTIONS(946), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(953), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(933), - [anon_sym_exec] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_PIPE] = ACTIONS(933), + [374] = { + [sym__simple_statements] = STATE(3048), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(958), - [anon_sym_not] = ACTIONS(961), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), - [anon_sym_STAR_EQ] = ACTIONS(967), - [anon_sym_SLASH_EQ] = ACTIONS(967), - [anon_sym_AT_EQ] = ACTIONS(967), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(967), - [anon_sym_PERCENT_EQ] = ACTIONS(967), - [anon_sym_STAR_STAR_EQ] = ACTIONS(967), - [anon_sym_GT_GT_EQ] = ACTIONS(967), - [anon_sym_LT_LT_EQ] = ACTIONS(967), - [anon_sym_AMP_EQ] = ACTIONS(967), - [anon_sym_CARET_EQ] = ACTIONS(967), - [anon_sym_PIPE_EQ] = ACTIONS(967), + [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(969), - [anon_sym_api] = ACTIONS(944), + [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(931), + [sym__newline] = ACTIONS(1007), + [sym__indent] = ACTIONS(1009), [sym_string_start] = ACTIONS(107), }, - [376] = { - [sym__simple_statements] = STATE(688), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [375] = { + [sym__simple_statements] = STATE(3049), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66775,69 +67225,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(1011), + [sym__indent] = ACTIONS(1013), [sym_string_start] = ACTIONS(107), }, - [377] = { - [sym__simple_statements] = STATE(690), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [376] = { + [sym__simple_statements] = STATE(534), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66881,69 +67331,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(1035), - [sym__indent] = ACTIONS(1037), + [sym__newline] = ACTIONS(1015), + [sym__indent] = ACTIONS(1017), [sym_string_start] = ACTIONS(107), }, - [378] = { - [sym__simple_statements] = STATE(3007), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [377] = { + [sym__simple_statements] = STATE(3058), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66987,69 +67437,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(1039), - [sym__indent] = ACTIONS(1041), + [sym__newline] = ACTIONS(1019), + [sym__indent] = ACTIONS(1021), [sym_string_start] = ACTIONS(107), }, - [379] = { - [sym__simple_statements] = STATE(3012), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [378] = { + [sym__simple_statements] = STATE(3064), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67093,69 +67543,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(1043), - [sym__indent] = ACTIONS(1045), + [sym__newline] = ACTIONS(1023), + [sym__indent] = ACTIONS(1025), [sym_string_start] = ACTIONS(107), }, - [380] = { - [sym__simple_statements] = STATE(933), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [379] = { + [sym__simple_statements] = STATE(2986), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67199,69 +67649,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(1047), - [sym__indent] = ACTIONS(1049), + [sym__newline] = ACTIONS(1027), + [sym__indent] = ACTIONS(1029), [sym_string_start] = ACTIONS(107), }, - [381] = { - [sym__simple_statements] = STATE(1105), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [380] = { + [sym__simple_statements] = STATE(1230), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67305,69 +67755,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(1051), - [sym__indent] = ACTIONS(1053), + [sym__newline] = ACTIONS(1031), + [sym__indent] = ACTIONS(1033), [sym_string_start] = ACTIONS(107), }, - [382] = { - [sym__simple_statements] = STATE(3015), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [381] = { + [sym__simple_statements] = STATE(708), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67411,69 +67861,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(1055), - [sym__indent] = ACTIONS(1057), + [sym__newline] = ACTIONS(399), + [sym__indent] = ACTIONS(401), [sym_string_start] = ACTIONS(107), }, - [383] = { - [sym__simple_statements] = STATE(1106), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [382] = { + [sym__simple_statements] = STATE(1310), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67517,69 +67967,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(1059), - [sym__indent] = ACTIONS(1061), + [sym__newline] = ACTIONS(1035), + [sym__indent] = ACTIONS(1037), [sym_string_start] = ACTIONS(107), }, - [384] = { - [sym__simple_statements] = STATE(1518), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [383] = { + [sym__simple_statements] = STATE(3011), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67623,69 +68073,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(1063), - [sym__indent] = ACTIONS(1065), + [sym__newline] = ACTIONS(427), + [sym__indent] = ACTIONS(429), [sym_string_start] = ACTIONS(107), }, - [385] = { - [sym__simple_statements] = STATE(3018), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [384] = { + [sym__simple_statements] = STATE(1255), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67729,69 +68179,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(1067), - [sym__indent] = ACTIONS(1069), + [sym__newline] = ACTIONS(407), + [sym__indent] = ACTIONS(409), [sym_string_start] = ACTIONS(107), }, - [386] = { - [sym__simple_statements] = STATE(3019), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [385] = { + [sym__simple_statements] = STATE(710), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67835,69 +68285,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(1071), - [sym__indent] = ACTIONS(1073), + [sym__newline] = ACTIONS(1039), + [sym__indent] = ACTIONS(1041), [sym_string_start] = ACTIONS(107), }, - [387] = { - [sym__simple_statements] = STATE(509), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [386] = { + [sym__simple_statements] = STATE(3061), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67941,69 +68391,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(1075), - [sym__indent] = ACTIONS(1077), + [sym__newline] = ACTIONS(1043), + [sym__indent] = ACTIONS(1045), [sym_string_start] = ACTIONS(107), }, - [388] = { - [sym__simple_statements] = STATE(1522), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [387] = { + [sym__simple_statements] = STATE(2933), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68047,69 +68497,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(1079), - [sym__indent] = ACTIONS(1081), + [sym__newline] = ACTIONS(1047), + [sym__indent] = ACTIONS(1049), [sym_string_start] = ACTIONS(107), }, - [389] = { - [sym__simple_statements] = STATE(3050), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [388] = { + [sym__simple_statements] = STATE(538), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68153,69 +68603,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(1051), + [sym__indent] = ACTIONS(1053), [sym_string_start] = ACTIONS(107), }, - [390] = { - [sym__simple_statements] = STATE(696), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [389] = { + [sym__simple_statements] = STATE(3068), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68259,69 +68709,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(1055), + [sym__indent] = ACTIONS(1057), [sym_string_start] = ACTIONS(107), }, - [391] = { - [sym__simple_statements] = STATE(693), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [390] = { + [sym__simple_statements] = STATE(1423), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68365,69 +68815,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(1059), + [sym__indent] = ACTIONS(1061), [sym_string_start] = ACTIONS(107), }, - [392] = { - [sym__simple_statements] = STATE(3023), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [391] = { + [sym__simple_statements] = STATE(4039), + [sym_import_statement] = STATE(5009), + [sym_future_import_statement] = STATE(5009), + [sym_import_from_statement] = STATE(5009), + [sym_print_statement] = STATE(5009), + [sym_assert_statement] = STATE(5009), + [sym_expression_statement] = STATE(5009), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5009), + [sym_delete_statement] = STATE(5009), + [sym_raise_statement] = STATE(5009), + [sym_pass_statement] = STATE(5009), + [sym_break_statement] = STATE(5009), + [sym_continue_statement] = STATE(5009), + [sym_global_statement] = STATE(5009), + [sym_nonlocal_statement] = STATE(5009), + [sym_exec_statement] = STATE(5009), + [sym_type_alias_statement] = STATE(5009), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5009), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68471,69 +68921,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(1063), + [sym__indent] = ACTIONS(1065), [sym_string_start] = ACTIONS(107), }, - [393] = { - [sym__simple_statements] = STATE(3024), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [392] = { + [sym__simple_statements] = STATE(1536), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68577,69 +69027,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(1067), + [sym__indent] = ACTIONS(1069), [sym_string_start] = ACTIONS(107), }, - [394] = { - [sym__simple_statements] = STATE(3025), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [393] = { + [sym__simple_statements] = STATE(1161), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68683,69 +69133,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(1071), + [sym__indent] = ACTIONS(1073), [sym_string_start] = ACTIONS(107), }, - [395] = { - [sym__simple_statements] = STATE(1348), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [394] = { + [sym__simple_statements] = STATE(3111), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68789,69 +69239,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(1075), + [sym__indent] = ACTIONS(1077), [sym_string_start] = ACTIONS(107), }, - [396] = { - [sym__simple_statements] = STATE(1112), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [395] = { + [sym__simple_statements] = STATE(2984), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68895,69 +69345,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(1079), + [sym__indent] = ACTIONS(1081), [sym_string_start] = ACTIONS(107), }, - [397] = { - [sym__simple_statements] = STATE(3029), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [396] = { + [sym__simple_statements] = STATE(1163), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69001,69 +69451,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(1083), + [sym__indent] = ACTIONS(1085), [sym_string_start] = ACTIONS(107), }, - [398] = { - [sym__simple_statements] = STATE(1535), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [397] = { + [sym__simple_statements] = STATE(1022), + [sym_import_statement] = STATE(4920), + [sym_future_import_statement] = STATE(4920), + [sym_import_from_statement] = STATE(4920), + [sym_print_statement] = STATE(4920), + [sym_assert_statement] = STATE(4920), + [sym_expression_statement] = STATE(4920), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4920), + [sym_delete_statement] = STATE(4920), + [sym_raise_statement] = STATE(4920), + [sym_pass_statement] = STATE(4920), + [sym_break_statement] = STATE(4920), + [sym_continue_statement] = STATE(4920), + [sym_global_statement] = STATE(4920), + [sym_nonlocal_statement] = STATE(4920), + [sym_exec_statement] = STATE(4920), + [sym_type_alias_statement] = STATE(4920), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4920), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69107,69 +69557,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(1087), + [sym__indent] = ACTIONS(1089), [sym_string_start] = ACTIONS(107), }, - [399] = { - [sym__simple_statements] = STATE(1353), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [398] = { + [sym__simple_statements] = STATE(1542), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69213,69 +69663,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(1091), + [sym__indent] = ACTIONS(1093), [sym_string_start] = ACTIONS(107), }, - [400] = { - [sym__simple_statements] = STATE(698), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [399] = { + [sym__simple_statements] = STATE(716), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69319,69 +69769,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(1095), + [sym__indent] = ACTIONS(1097), [sym_string_start] = ACTIONS(107), }, - [401] = { - [sym__simple_statements] = STATE(1089), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [400] = { + [sym__simple_statements] = STATE(713), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69425,69 +69875,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(419), + [sym__indent] = ACTIONS(421), [sym_string_start] = ACTIONS(107), }, - [402] = { - [sym__simple_statements] = STATE(1294), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [401] = { + [sym__simple_statements] = STATE(928), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69531,69 +69981,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(1099), + [sym__indent] = ACTIONS(1101), [sym_string_start] = ACTIONS(107), }, - [403] = { - [sym__simple_statements] = STATE(5167), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [402] = { + [sym__simple_statements] = STATE(3023), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69637,69 +70087,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(1103), + [sym__indent] = ACTIONS(1105), [sym_string_start] = ACTIONS(107), }, - [404] = { - [sym__simple_statements] = STATE(3035), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [403] = { + [sym__simple_statements] = STATE(3029), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69743,175 +70193,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_string_start] = ACTIONS(107), - }, - [405] = { - [sym__simple_statements] = STATE(1546), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [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__newline] = ACTIONS(1107), + [sym__indent] = ACTIONS(1109), [sym_string_start] = ACTIONS(107), }, - [406] = { - [sym__simple_statements] = STATE(3038), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [404] = { + [sym__simple_statements] = STATE(3036), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69955,69 +70299,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(1139), - [sym__indent] = ACTIONS(1141), + [sym__newline] = ACTIONS(1111), + [sym__indent] = ACTIONS(1113), [sym_string_start] = ACTIONS(107), }, - [407] = { - [sym__simple_statements] = STATE(3039), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [405] = { + [sym__simple_statements] = STATE(1547), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70061,69 +70405,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(1143), - [sym__indent] = ACTIONS(1145), + [sym__newline] = ACTIONS(1115), + [sym__indent] = ACTIONS(1117), [sym_string_start] = ACTIONS(107), }, - [408] = { - [sym__simple_statements] = STATE(700), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [406] = { + [sym__simple_statements] = STATE(1270), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70167,69 +70511,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(1147), - [sym__indent] = ACTIONS(1149), + [sym__newline] = ACTIONS(1119), + [sym__indent] = ACTIONS(1121), [sym_string_start] = ACTIONS(107), }, - [409] = { - [sym__simple_statements] = STATE(513), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [407] = { + [sym__simple_statements] = STATE(542), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70273,69 +70617,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(1151), - [sym__indent] = ACTIONS(1153), + [sym__newline] = ACTIONS(1123), + [sym__indent] = ACTIONS(1125), [sym_string_start] = ACTIONS(107), }, - [410] = { - [sym__simple_statements] = STATE(514), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [408] = { + [sym__simple_statements] = STATE(3043), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70379,69 +70723,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(1155), - [sym__indent] = ACTIONS(1157), + [sym__newline] = ACTIONS(1127), + [sym__indent] = ACTIONS(1129), [sym_string_start] = ACTIONS(107), }, - [411] = { - [sym__simple_statements] = STATE(515), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [409] = { + [sym__simple_statements] = STATE(1316), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70485,69 +70829,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(1159), - [sym__indent] = ACTIONS(1161), + [sym__newline] = ACTIONS(1131), + [sym__indent] = ACTIONS(1133), [sym_string_start] = ACTIONS(107), }, - [412] = { - [sym__simple_statements] = STATE(3045), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [410] = { + [sym__simple_statements] = STATE(1348), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70591,69 +70935,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(1163), - [sym__indent] = ACTIONS(1165), + [sym__newline] = ACTIONS(1135), + [sym__indent] = ACTIONS(1137), [sym_string_start] = ACTIONS(107), }, - [413] = { - [sym__simple_statements] = STATE(1335), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [411] = { + [sym__simple_statements] = STATE(718), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70697,69 +71041,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(403), + [sym__indent] = ACTIONS(405), [sym_string_start] = ACTIONS(107), }, - [414] = { - [sym__simple_statements] = STATE(703), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [412] = { + [sym__simple_statements] = STATE(545), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70803,69 +71147,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(1171), - [sym__indent] = ACTIONS(1173), + [sym__newline] = ACTIONS(1139), + [sym__indent] = ACTIONS(1141), [sym_string_start] = ACTIONS(107), }, - [415] = { - [sym__simple_statements] = STATE(2970), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [413] = { + [sym__simple_statements] = STATE(546), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70909,69 +71253,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(435), - [sym__indent] = ACTIONS(437), + [sym__newline] = ACTIONS(1143), + [sym__indent] = ACTIONS(1145), [sym_string_start] = ACTIONS(107), }, - [416] = { - [sym__simple_statements] = STATE(2923), - [sym_import_statement] = STATE(4802), - [sym_future_import_statement] = STATE(4802), - [sym_import_from_statement] = STATE(4802), - [sym_print_statement] = STATE(4802), - [sym_assert_statement] = STATE(4802), - [sym_expression_statement] = STATE(4802), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4802), - [sym_delete_statement] = STATE(4802), - [sym_raise_statement] = STATE(4802), - [sym_pass_statement] = STATE(4802), - [sym_break_statement] = STATE(4802), - [sym_continue_statement] = STATE(4802), - [sym_global_statement] = STATE(4802), - [sym_nonlocal_statement] = STATE(4802), - [sym_exec_statement] = STATE(4802), - [sym_type_alias_statement] = STATE(4802), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4802), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [414] = { + [sym__simple_statements] = STATE(1170), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71015,69 +71359,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(1175), - [sym__indent] = ACTIONS(1177), + [sym__newline] = ACTIONS(1147), + [sym__indent] = ACTIONS(1149), [sym_string_start] = ACTIONS(107), }, - [417] = { - [sym__simple_statements] = STATE(519), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [415] = { + [sym__simple_statements] = STATE(3077), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71121,69 +71465,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(1179), - [sym__indent] = ACTIONS(1181), + [sym__newline] = ACTIONS(1151), + [sym__indent] = ACTIONS(1153), [sym_string_start] = ACTIONS(107), }, - [418] = { - [sym__simple_statements] = STATE(1206), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [416] = { + [sym__simple_statements] = STATE(1346), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71227,69 +71571,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(1183), - [sym__indent] = ACTIONS(1185), + [sym__newline] = ACTIONS(1155), + [sym__indent] = ACTIONS(1157), [sym_string_start] = ACTIONS(107), }, - [419] = { - [sym__simple_statements] = STATE(1307), - [sym_import_statement] = STATE(4723), - [sym_future_import_statement] = STATE(4723), - [sym_import_from_statement] = STATE(4723), - [sym_print_statement] = STATE(4723), - [sym_assert_statement] = STATE(4723), - [sym_expression_statement] = STATE(4723), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4723), - [sym_delete_statement] = STATE(4723), - [sym_raise_statement] = STATE(4723), - [sym_pass_statement] = STATE(4723), - [sym_break_statement] = STATE(4723), - [sym_continue_statement] = STATE(4723), - [sym_global_statement] = STATE(4723), - [sym_nonlocal_statement] = STATE(4723), - [sym_exec_statement] = STATE(4723), - [sym_type_alias_statement] = STATE(4723), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4723), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [417] = { + [sym__simple_statements] = STATE(2945), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71333,69 +71677,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(1187), - [sym__indent] = ACTIONS(1189), + [sym__newline] = ACTIONS(1159), + [sym__indent] = ACTIONS(1161), [sym_string_start] = ACTIONS(107), }, - [420] = { - [sym__simple_statements] = STATE(1565), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [418] = { + [sym__simple_statements] = STATE(3089), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71439,69 +71783,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(1191), - [sym__indent] = ACTIONS(1193), + [sym__newline] = ACTIONS(1163), + [sym__indent] = ACTIONS(1165), [sym_string_start] = ACTIONS(107), }, - [421] = { - [sym__simple_statements] = STATE(3963), - [sym_import_statement] = STATE(4955), - [sym_future_import_statement] = STATE(4955), - [sym_import_from_statement] = STATE(4955), - [sym_print_statement] = STATE(4955), - [sym_assert_statement] = STATE(4955), - [sym_expression_statement] = STATE(4955), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4955), - [sym_delete_statement] = STATE(4955), - [sym_raise_statement] = STATE(4955), - [sym_pass_statement] = STATE(4955), - [sym_break_statement] = STATE(4955), - [sym_continue_statement] = STATE(4955), - [sym_global_statement] = STATE(4955), - [sym_nonlocal_statement] = STATE(4955), - [sym_exec_statement] = STATE(4955), - [sym_type_alias_statement] = STATE(4955), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4955), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [419] = { + [sym__simple_statements] = STATE(3090), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71545,69 +71889,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(1195), - [sym__indent] = ACTIONS(1197), + [sym__newline] = ACTIONS(1167), + [sym__indent] = ACTIONS(1169), [sym_string_start] = ACTIONS(107), }, - [422] = { - [sym__simple_statements] = STATE(1124), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [420] = { + [sym__simple_statements] = STATE(1329), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71651,69 +71995,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(1199), - [sym__indent] = ACTIONS(1201), + [sym__newline] = ACTIONS(379), + [sym__indent] = ACTIONS(381), [sym_string_start] = ACTIONS(107), }, - [423] = { - [sym__simple_statements] = STATE(1038), - [sym_import_statement] = STATE(4868), - [sym_future_import_statement] = STATE(4868), - [sym_import_from_statement] = STATE(4868), - [sym_print_statement] = STATE(4868), - [sym_assert_statement] = STATE(4868), - [sym_expression_statement] = STATE(4868), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4868), - [sym_delete_statement] = STATE(4868), - [sym_raise_statement] = STATE(4868), - [sym_pass_statement] = STATE(4868), - [sym_break_statement] = STATE(4868), - [sym_continue_statement] = STATE(4868), - [sym_global_statement] = STATE(4868), - [sym_nonlocal_statement] = STATE(4868), - [sym_exec_statement] = STATE(4868), - [sym_type_alias_statement] = STATE(4868), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4868), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [421] = { + [sym__simple_statements] = STATE(720), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71757,69 +72101,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(1203), - [sym__indent] = ACTIONS(1205), + [sym__newline] = ACTIONS(1171), + [sym__indent] = ACTIONS(1173), [sym_string_start] = ACTIONS(107), }, - [424] = { - [sym__simple_statements] = STATE(536), - [sym_import_statement] = STATE(4956), - [sym_future_import_statement] = STATE(4956), - [sym_import_from_statement] = STATE(4956), - [sym_print_statement] = STATE(4956), - [sym_assert_statement] = STATE(4956), - [sym_expression_statement] = STATE(4956), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(4956), - [sym_delete_statement] = STATE(4956), - [sym_raise_statement] = STATE(4956), - [sym_pass_statement] = STATE(4956), - [sym_break_statement] = STATE(4956), - [sym_continue_statement] = STATE(4956), - [sym_global_statement] = STATE(4956), - [sym_nonlocal_statement] = STATE(4956), - [sym_exec_statement] = STATE(4956), - [sym_type_alias_statement] = STATE(4956), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(4956), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [422] = { + [sym__simple_statements] = STATE(3033), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71863,278 +72207,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(1207), - [sym__indent] = ACTIONS(1209), + [sym__newline] = ACTIONS(411), + [sym__indent] = ACTIONS(413), [sym_string_start] = ACTIONS(107), }, - [425] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4125), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_print] = ACTIONS(1217), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(953), - [anon_sym_match] = ACTIONS(1217), - [anon_sym_async] = ACTIONS(1217), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(933), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), - [anon_sym_STAR_EQ] = ACTIONS(967), - [anon_sym_SLASH_EQ] = ACTIONS(967), - [anon_sym_AT_EQ] = ACTIONS(967), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(967), - [anon_sym_PERCENT_EQ] = ACTIONS(967), - [anon_sym_STAR_STAR_EQ] = ACTIONS(967), - [anon_sym_GT_GT_EQ] = ACTIONS(967), - [anon_sym_LT_LT_EQ] = ACTIONS(967), - [anon_sym_AMP_EQ] = ACTIONS(967), - [anon_sym_CARET_EQ] = ACTIONS(967), - [anon_sym_PIPE_EQ] = ACTIONS(967), - [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__newline] = ACTIONS(931), - [sym_string_start] = ACTIONS(1247), - }, - [426] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4033), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_print] = ACTIONS(1217), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(953), - [anon_sym_match] = ACTIONS(1217), - [anon_sym_async] = ACTIONS(1217), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(933), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_lambda] = ACTIONS(1231), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), - [anon_sym_STAR_EQ] = ACTIONS(967), - [anon_sym_SLASH_EQ] = ACTIONS(967), - [anon_sym_AT_EQ] = ACTIONS(967), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(967), - [anon_sym_PERCENT_EQ] = ACTIONS(967), - [anon_sym_STAR_STAR_EQ] = ACTIONS(967), - [anon_sym_GT_GT_EQ] = ACTIONS(967), - [anon_sym_LT_LT_EQ] = ACTIONS(967), - [anon_sym_AMP_EQ] = ACTIONS(967), - [anon_sym_CARET_EQ] = ACTIONS(967), - [anon_sym_PIPE_EQ] = ACTIONS(967), - [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__newline] = ACTIONS(931), - [sym_string_start] = ACTIONS(1247), - }, - [427] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [423] = { + [sym__simple_statements] = STATE(1187), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72178,67 +72313,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(1249), + [sym__newline] = ACTIONS(1175), + [sym__indent] = ACTIONS(1177), [sym_string_start] = ACTIONS(107), }, - [428] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [424] = { + [sym__simple_statements] = STATE(555), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72282,67 +72419,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(1251), + [sym__newline] = ACTIONS(1179), + [sym__indent] = ACTIONS(1181), [sym_string_start] = ACTIONS(107), }, - [429] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [425] = { + [sym__simple_statements] = STATE(2988), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72386,67 +72525,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(1253), + [sym__newline] = ACTIONS(1183), + [sym__indent] = ACTIONS(1185), [sym_string_start] = ACTIONS(107), }, - [430] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [426] = { + [sym__simple_statements] = STATE(556), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72490,67 +72631,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(1255), + [sym__newline] = ACTIONS(1187), + [sym__indent] = ACTIONS(1189), [sym_string_start] = ACTIONS(107), }, - [431] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [427] = { + [sym__simple_statements] = STATE(557), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72594,67 +72737,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(1257), + [sym__newline] = ACTIONS(1191), + [sym__indent] = ACTIONS(1193), [sym_string_start] = ACTIONS(107), }, - [432] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [428] = { + [sym__simple_statements] = STATE(730), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72698,67 +72843,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(1259), + [sym__newline] = ACTIONS(1195), + [sym__indent] = ACTIONS(1197), [sym_string_start] = ACTIONS(107), }, - [433] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [429] = { + [sym__simple_statements] = STATE(1393), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72802,67 +72949,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(1261), + [sym__newline] = ACTIONS(1199), + [sym__indent] = ACTIONS(1201), [sym_string_start] = ACTIONS(107), }, - [434] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [430] = { + [sym__simple_statements] = STATE(1184), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72906,67 +73055,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(1263), + [sym__newline] = ACTIONS(1203), + [sym__indent] = ACTIONS(1205), [sym_string_start] = ACTIONS(107), }, - [435] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [431] = { + [sym__simple_statements] = STATE(1186), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73010,67 +73161,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(1265), + [sym__newline] = ACTIONS(1207), + [sym__indent] = ACTIONS(1209), [sym_string_start] = ACTIONS(107), }, - [436] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [432] = { + [sym__simple_statements] = STATE(5331), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73114,67 +73267,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(1267), + [sym__newline] = ACTIONS(1211), + [sym__indent] = ACTIONS(1213), [sym_string_start] = ACTIONS(107), }, - [437] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [433] = { + [sym__simple_statements] = STATE(1565), + [sym_import_statement] = STATE(4878), + [sym_future_import_statement] = STATE(4878), + [sym_import_from_statement] = STATE(4878), + [sym_print_statement] = STATE(4878), + [sym_assert_statement] = STATE(4878), + [sym_expression_statement] = STATE(4878), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4878), + [sym_delete_statement] = STATE(4878), + [sym_raise_statement] = STATE(4878), + [sym_pass_statement] = STATE(4878), + [sym_break_statement] = STATE(4878), + [sym_continue_statement] = STATE(4878), + [sym_global_statement] = STATE(4878), + [sym_nonlocal_statement] = STATE(4878), + [sym_exec_statement] = STATE(4878), + [sym_type_alias_statement] = STATE(4878), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4878), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73218,67 +73373,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(1269), + [sym__newline] = ACTIONS(1215), + [sym__indent] = ACTIONS(1217), [sym_string_start] = ACTIONS(107), }, - [438] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [434] = { + [sym__simple_statements] = STATE(1395), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73322,67 +73479,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(1271), + [sym__newline] = ACTIONS(1219), + [sym__indent] = ACTIONS(1221), [sym_string_start] = ACTIONS(107), }, - [439] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [435] = { + [sym__simple_statements] = STATE(5349), + [sym_import_statement] = STATE(4861), + [sym_future_import_statement] = STATE(4861), + [sym_import_from_statement] = STATE(4861), + [sym_print_statement] = STATE(4861), + [sym_assert_statement] = STATE(4861), + [sym_expression_statement] = STATE(4861), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4861), + [sym_delete_statement] = STATE(4861), + [sym_raise_statement] = STATE(4861), + [sym_pass_statement] = STATE(4861), + [sym_break_statement] = STATE(4861), + [sym_continue_statement] = STATE(4861), + [sym_global_statement] = STATE(4861), + [sym_nonlocal_statement] = STATE(4861), + [sym_exec_statement] = STATE(4861), + [sym_type_alias_statement] = STATE(4861), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4861), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73426,67 +73585,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(1273), + [sym__newline] = ACTIONS(1223), + [sym__indent] = ACTIONS(1225), [sym_string_start] = ACTIONS(107), }, - [440] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [436] = { + [sym__simple_statements] = STATE(4012), + [sym_import_statement] = STATE(5009), + [sym_future_import_statement] = STATE(5009), + [sym_import_from_statement] = STATE(5009), + [sym_print_statement] = STATE(5009), + [sym_assert_statement] = STATE(5009), + [sym_expression_statement] = STATE(5009), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5009), + [sym_delete_statement] = STATE(5009), + [sym_raise_statement] = STATE(5009), + [sym_pass_statement] = STATE(5009), + [sym_break_statement] = STATE(5009), + [sym_continue_statement] = STATE(5009), + [sym_global_statement] = STATE(5009), + [sym_nonlocal_statement] = STATE(5009), + [sym_exec_statement] = STATE(5009), + [sym_type_alias_statement] = STATE(5009), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5009), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73530,67 +73691,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(1275), + [sym__newline] = ACTIONS(1227), + [sym__indent] = ACTIONS(1229), [sym_string_start] = ACTIONS(107), }, - [441] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [437] = { + [sym__simple_statements] = STATE(1168), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73634,67 +73797,281 @@ 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(1277), + [sym__newline] = ACTIONS(1231), + [sym__indent] = ACTIONS(1233), [sym_string_start] = ACTIONS(107), }, - [442] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [438] = { + [sym_chevron] = STATE(4669), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3979), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(821), + [anon_sym_print] = ACTIONS(824), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(833), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(838), + [anon_sym_not] = ACTIONS(841), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_SLASH_SLASH] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(838), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym_LT_LT] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(844), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_lambda] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_AT_EQ] = ACTIONS(847), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_STAR_STAR_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(849), + [anon_sym_api] = ACTIONS(824), + [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(811), + [sym_string_start] = ACTIONS(107), + }, + [439] = { + [sym__simple_statements] = STATE(1034), + [sym_import_statement] = STATE(4920), + [sym_future_import_statement] = STATE(4920), + [sym_import_from_statement] = STATE(4920), + [sym_print_statement] = STATE(4920), + [sym_assert_statement] = STATE(4920), + [sym_expression_statement] = STATE(4920), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4920), + [sym_delete_statement] = STATE(4920), + [sym_raise_statement] = STATE(4920), + [sym_pass_statement] = STATE(4920), + [sym_break_statement] = STATE(4920), + [sym_continue_statement] = STATE(4920), + [sym_global_statement] = STATE(4920), + [sym_nonlocal_statement] = STATE(4920), + [sym_exec_statement] = STATE(4920), + [sym_type_alias_statement] = STATE(4920), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4920), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1235), + [sym__indent] = ACTIONS(1237), + [sym_string_start] = ACTIONS(107), + }, + [440] = { + [sym__simple_statements] = STATE(1774), + [sym_import_statement] = STATE(4836), + [sym_future_import_statement] = STATE(4836), + [sym_import_from_statement] = STATE(4836), + [sym_print_statement] = STATE(4836), + [sym_assert_statement] = STATE(4836), + [sym_expression_statement] = STATE(4836), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(4836), + [sym_delete_statement] = STATE(4836), + [sym_raise_statement] = STATE(4836), + [sym_pass_statement] = STATE(4836), + [sym_break_statement] = STATE(4836), + [sym_continue_statement] = STATE(4836), + [sym_global_statement] = STATE(4836), + [sym_nonlocal_statement] = STATE(4836), + [sym_exec_statement] = STATE(4836), + [sym_type_alias_statement] = STATE(4836), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(4836), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73738,67 +74115,278 @@ 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(1279), + [sym__newline] = ACTIONS(1239), + [sym__indent] = ACTIONS(1241), [sym_string_start] = ACTIONS(107), }, + [441] = { + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4081), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(813), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(833), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_SLASH_SLASH] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym_LT_LT] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_AT_EQ] = ACTIONS(847), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_STAR_STAR_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym__newline] = ACTIONS(811), + [sym_string_start] = ACTIONS(1279), + }, + [442] = { + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4184), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(813), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(833), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_SLASH_SLASH] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym_LT_LT] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_AT_EQ] = ACTIONS(847), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_STAR_STAR_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym__newline] = ACTIONS(811), + [sym_string_start] = ACTIONS(1279), + }, [443] = { - [sym_import_statement] = STATE(5295), - [sym_future_import_statement] = STATE(5295), - [sym_import_from_statement] = STATE(5295), - [sym_print_statement] = STATE(5295), - [sym_assert_statement] = STATE(5295), - [sym_expression_statement] = STATE(5295), - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_return_statement] = STATE(5295), - [sym_delete_statement] = STATE(5295), - [sym_raise_statement] = STATE(5295), - [sym_pass_statement] = STATE(5295), - [sym_break_statement] = STATE(5295), - [sym_continue_statement] = STATE(5295), - [sym_global_statement] = STATE(5295), - [sym_nonlocal_statement] = STATE(5295), - [sym_exec_statement] = STATE(5295), - [sym_type_alias_statement] = STATE(5295), - [sym_pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5254), - [sym_augmented_assignment] = STATE(5254), - [sym_pattern_list] = STATE(3394), - [sym_yield] = STATE(5254), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_include_statement] = STATE(5295), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73842,4704 +74430,5882 @@ 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(1281), [sym_string_start] = ACTIONS(107), }, [444] = { - [sym_list_splat_pattern] = STATE(2110), - [sym_primary_expression] = STATE(2050), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_print] = ACTIONS(1285), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(953), - [anon_sym_match] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(933), - [anon_sym_exec] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(933), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1289), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), - [anon_sym_STAR_EQ] = ACTIONS(967), - [anon_sym_SLASH_EQ] = ACTIONS(967), - [anon_sym_AT_EQ] = ACTIONS(967), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(967), - [anon_sym_PERCENT_EQ] = ACTIONS(967), - [anon_sym_STAR_STAR_EQ] = ACTIONS(967), - [anon_sym_GT_GT_EQ] = ACTIONS(967), - [anon_sym_LT_LT_EQ] = ACTIONS(967), - [anon_sym_AMP_EQ] = ACTIONS(967), - [anon_sym_CARET_EQ] = ACTIONS(967), - [anon_sym_PIPE_EQ] = ACTIONS(967), + [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(1293), - [anon_sym_api] = ACTIONS(1285), + [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(931), + [sym__newline] = ACTIONS(1283), [sym_string_start] = ACTIONS(107), }, [445] = { - [sym_list_splat_pattern] = STATE(2110), - [sym_primary_expression] = STATE(2050), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_print] = ACTIONS(1285), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(950), - [anon_sym_match] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(933), - [anon_sym_exec] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(933), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1289), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), - [anon_sym_STAR_EQ] = ACTIONS(967), - [anon_sym_SLASH_EQ] = ACTIONS(967), - [anon_sym_AT_EQ] = ACTIONS(967), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(967), - [anon_sym_PERCENT_EQ] = ACTIONS(967), - [anon_sym_STAR_STAR_EQ] = ACTIONS(967), - [anon_sym_GT_GT_EQ] = ACTIONS(967), - [anon_sym_LT_LT_EQ] = ACTIONS(967), - [anon_sym_AMP_EQ] = ACTIONS(967), - [anon_sym_CARET_EQ] = ACTIONS(967), - [anon_sym_PIPE_EQ] = ACTIONS(967), + [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(1293), - [anon_sym_api] = ACTIONS(1285), + [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(931), + [sym__newline] = ACTIONS(1285), [sym_string_start] = ACTIONS(107), }, [446] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(3236), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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_as] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_COLON] = ACTIONS(1295), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_in] = ACTIONS(1300), - [anon_sym_STAR_STAR] = ACTIONS(1297), - [anon_sym_exec] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1300), - [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_not] = ACTIONS(1300), - [anon_sym_and] = ACTIONS(1300), - [anon_sym_or] = ACTIONS(1300), - [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_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_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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1287), + [sym_string_start] = ACTIONS(107), }, [447] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym__patterns] = STATE(5589), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3632), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4963), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5429), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5329), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1318), - [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_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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1289), + [sym_string_start] = ACTIONS(107), }, [448] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym__patterns] = STATE(5438), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3634), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(5089), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5670), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5218), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1364), - [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_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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1291), + [sym_string_start] = ACTIONS(107), }, [449] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4784), - [sym_parenthesized_list_splat] = STATE(4848), - [sym__patterns] = STATE(5589), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3648), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4999), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5600), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5329), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1366), - [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_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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1293), + [sym_string_start] = ACTIONS(107), }, [450] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4925), - [sym_dictionary_splat] = STATE(4925), - [sym_parenthesized_list_splat] = STATE(4926), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4000), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4925), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1372), - [anon_sym_COMMA] = ACTIONS(1374), - [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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1295), + [sym_string_start] = ACTIONS(107), }, [451] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5291), - [sym_new_expression] = STATE(2657), - [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), - [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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1297), + [sym_string_start] = ACTIONS(107), }, [452] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5320), - [sym_new_expression] = STATE(2657), - [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), - [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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1299), + [sym_string_start] = ACTIONS(107), }, [453] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4910), - [sym_dictionary_splat] = STATE(4910), - [sym_parenthesized_list_splat] = STATE(4911), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4117), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4910), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [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_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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1301), + [sym_string_start] = ACTIONS(107), }, [454] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4759), - [sym_dictionary_splat] = STATE(4759), - [sym_parenthesized_list_splat] = STATE(4760), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4037), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4759), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1303), + [sym_string_start] = ACTIONS(107), }, [455] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4818), - [sym_dictionary_splat] = STATE(4818), - [sym_parenthesized_list_splat] = STATE(4819), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4083), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [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(1426), - [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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1305), + [sym_string_start] = ACTIONS(107), }, [456] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4944), - [sym_dictionary_splat] = STATE(4944), - [sym_parenthesized_list_splat] = STATE(4945), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4127), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4944), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1428), - [anon_sym_COMMA] = ACTIONS(1430), - [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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1307), + [sym_string_start] = ACTIONS(107), }, [457] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5178), - [sym_new_expression] = STATE(2657), - [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), - [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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1309), + [sym_string_start] = ACTIONS(107), }, [458] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4881), - [sym_dictionary_splat] = STATE(4881), - [sym_parenthesized_list_splat] = STATE(4882), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(3989), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4881), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [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(1434), - [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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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(1311), + [sym_string_start] = ACTIONS(107), }, [459] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5341), - [sym_new_expression] = STATE(2657), - [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), - [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), + [sym_import_statement] = STATE(5316), + [sym_future_import_statement] = STATE(5316), + [sym_import_from_statement] = STATE(5316), + [sym_print_statement] = STATE(5316), + [sym_assert_statement] = STATE(5316), + [sym_expression_statement] = STATE(5316), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_return_statement] = STATE(5316), + [sym_delete_statement] = STATE(5316), + [sym_raise_statement] = STATE(5316), + [sym_pass_statement] = STATE(5316), + [sym_break_statement] = STATE(5316), + [sym_continue_statement] = STATE(5316), + [sym_global_statement] = STATE(5316), + [sym_nonlocal_statement] = STATE(5316), + [sym_exec_statement] = STATE(5316), + [sym_type_alias_statement] = STATE(5316), + [sym_pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3974), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5314), + [sym_augmented_assignment] = STATE(5314), + [sym_pattern_list] = STATE(3452), + [sym_yield] = STATE(5314), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_include_statement] = STATE(5316), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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_string_start] = ACTIONS(107), }, [460] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4993), - [sym_dictionary_splat] = STATE(4993), - [sym_parenthesized_list_splat] = STATE(4998), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4993), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [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), - [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), + [sym_list_splat_pattern] = STATE(2166), + [sym_primary_expression] = STATE(2103), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_print] = ACTIONS(1317), + [anon_sym_GT_GT] = ACTIONS(813), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(833), + [anon_sym_match] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1317), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_exec] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_SLASH_SLASH] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym_LT_LT] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_AT_EQ] = ACTIONS(847), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_STAR_STAR_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1325), + [anon_sym_api] = ACTIONS(1317), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(811), + [sym_string_start] = ACTIONS(107), }, [461] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4925), - [sym_dictionary_splat] = STATE(4925), - [sym_parenthesized_list_splat] = STATE(4926), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4000), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4925), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_COMMA] = ACTIONS(1374), - [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), + [sym_list_splat_pattern] = STATE(2166), + [sym_primary_expression] = STATE(2103), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_print] = ACTIONS(1317), + [anon_sym_GT_GT] = ACTIONS(813), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(830), + [anon_sym_match] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1317), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_exec] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_SLASH_SLASH] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(1321), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym_LT_LT] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_AT_EQ] = ACTIONS(847), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_STAR_STAR_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1325), + [anon_sym_api] = ACTIONS(1317), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(811), + [sym_string_start] = ACTIONS(107), }, [462] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4851), - [sym_dictionary_splat] = STATE(4851), - [sym_parenthesized_list_splat] = STATE(4852), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4008), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4851), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1428), - [anon_sym_COMMA] = ACTIONS(1442), - [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), + [sym_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(3290), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_COLON] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_in] = ACTIONS(1332), + [anon_sym_STAR_STAR] = ACTIONS(1329), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_not] = ACTIONS(1332), + [anon_sym_and] = ACTIONS(1332), + [anon_sym_or] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_CARET] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_is] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1332), + [anon_sym_LT_GT] = ACTIONS(1327), + [anon_sym_PLUS_EQ] = ACTIONS(1327), + [anon_sym_DASH_EQ] = ACTIONS(1327), + [anon_sym_STAR_EQ] = ACTIONS(1327), + [anon_sym_SLASH_EQ] = ACTIONS(1327), + [anon_sym_AT_EQ] = ACTIONS(1327), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1327), + [anon_sym_PERCENT_EQ] = ACTIONS(1327), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1327), + [anon_sym_GT_GT_EQ] = ACTIONS(1327), + [anon_sym_LT_LT_EQ] = ACTIONS(1327), + [anon_sym_AMP_EQ] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym__newline] = ACTIONS(1327), + [sym_string_start] = ACTIONS(1279), }, [463] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4993), - [sym_dictionary_splat] = STATE(4993), - [sym_parenthesized_list_splat] = STATE(4998), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4049), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4993), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1444), - [anon_sym_COMMA] = ACTIONS(1438), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym__patterns] = STATE(5511), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3696), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4886), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5637), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5345), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [464] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4733), - [sym_dictionary_splat] = STATE(4733), - [sym_parenthesized_list_splat] = STATE(4734), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4012), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4733), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1446), - [anon_sym_COMMA] = ACTIONS(1448), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym__patterns] = STATE(5676), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3746), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4858), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5724), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5309), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [465] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [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(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_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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4809), + [sym_parenthesized_list_splat] = STATE(4970), + [sym__patterns] = STATE(5511), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3772), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(5026), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5545), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5345), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [466] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4759), - [sym_dictionary_splat] = STATE(4759), - [sym_parenthesized_list_splat] = STATE(4760), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4037), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4759), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [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(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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5293), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [467] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4818), - [sym_dictionary_splat] = STATE(4818), - [sym_parenthesized_list_splat] = STATE(4819), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4083), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [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(1426), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5038), + [sym_dictionary_splat] = STATE(5038), + [sym_parenthesized_list_splat] = STATE(5047), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4207), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5038), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [468] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4851), - [sym_dictionary_splat] = STATE(4851), - [sym_parenthesized_list_splat] = STATE(4852), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4008), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4851), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [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(1442), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5136), + [sym_dictionary_splat] = STATE(5136), + [sym_parenthesized_list_splat] = STATE(5138), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4114), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5136), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1448), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [469] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4881), - [sym_dictionary_splat] = STATE(4881), - [sym_parenthesized_list_splat] = STATE(4882), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(3989), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4881), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [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(1434), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5232), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [470] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5296), - [sym_new_expression] = STATE(2657), - [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), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5376), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [471] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4959), - [sym_dictionary_splat] = STATE(4959), - [sym_parenthesized_list_splat] = STATE(4960), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4015), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4959), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_COMMA] = ACTIONS(1460), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5394), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [472] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(4733), - [sym_dictionary_splat] = STATE(4733), - [sym_parenthesized_list_splat] = STATE(4734), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4012), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(4733), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1462), - [anon_sym_COMMA] = ACTIONS(1448), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5252), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [473] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5228), - [sym_new_expression] = STATE(2657), - [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), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [474] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5235), - [sym_new_expression] = STATE(2657), - [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), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4956), + [sym_dictionary_splat] = STATE(4956), + [sym_parenthesized_list_splat] = STATE(4957), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4155), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4956), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [475] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5239), - [sym_new_expression] = STATE(2657), - [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), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4823), + [sym_dictionary_splat] = STATE(4823), + [sym_parenthesized_list_splat] = STATE(4824), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4162), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4823), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [476] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5245), - [sym_new_expression] = STATE(2657), - [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), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4875), + [sym_dictionary_splat] = STATE(4875), + [sym_parenthesized_list_splat] = STATE(4876), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4164), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4875), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1460), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [477] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5275), - [sym_new_expression] = STATE(2657), - [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), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4994), + [sym_dictionary_splat] = STATE(4994), + [sym_parenthesized_list_splat] = STATE(4995), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4169), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4994), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [478] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5282), - [sym_new_expression] = STATE(2657), - [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), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4930), + [sym_dictionary_splat] = STATE(4930), + [sym_parenthesized_list_splat] = STATE(4931), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4172), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4930), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [479] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5285), - [sym_new_expression] = STATE(2657), - [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), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4978), + [sym_dictionary_splat] = STATE(4978), + [sym_parenthesized_list_splat] = STATE(4979), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4174), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4978), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [480] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(4591), - [sym_new_expression] = STATE(2657), - [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(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_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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4905), + [sym_dictionary_splat] = STATE(4905), + [sym_parenthesized_list_splat] = STATE(4906), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4178), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4905), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [481] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4784), - [sym_parenthesized_list_splat] = STATE(4848), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4871), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5497), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5329), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5038), + [sym_dictionary_splat] = STATE(5038), + [sym_parenthesized_list_splat] = STATE(5047), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4207), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5038), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [482] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4871), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5497), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5329), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5136), + [sym_dictionary_splat] = STATE(5136), + [sym_parenthesized_list_splat] = STATE(5138), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4114), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5136), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [483] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4784), - [sym_parenthesized_list_splat] = STATE(4848), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3648), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4999), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5600), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5329), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1466), - [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_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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [484] = { - [sym_list_splat_pattern] = STATE(2110), - [sym_primary_expression] = STATE(2050), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4823), + [sym_dictionary_splat] = STATE(4823), + [sym_parenthesized_list_splat] = STATE(4824), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4162), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4823), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [485] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4875), + [sym_dictionary_splat] = STATE(4875), + [sym_parenthesized_list_splat] = STATE(4876), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4164), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4875), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [486] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4905), + [sym_dictionary_splat] = STATE(4905), + [sym_parenthesized_list_splat] = STATE(4906), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4178), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4905), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [487] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4930), + [sym_dictionary_splat] = STATE(4930), + [sym_parenthesized_list_splat] = STATE(4931), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4172), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4930), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [488] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4978), + [sym_dictionary_splat] = STATE(4978), + [sym_parenthesized_list_splat] = STATE(4979), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4174), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4978), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [489] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5010), + [sym_dictionary_splat] = STATE(5010), + [sym_parenthesized_list_splat] = STATE(5011), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4179), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5010), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(4570), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [490] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5302), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [491] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5307), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [492] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5311), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [493] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5336), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [494] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5342), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [495] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5347), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [496] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5352), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [497] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3733), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4923), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5594), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5345), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [498] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4809), + [sym_parenthesized_list_splat] = STATE(4970), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3772), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(5026), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5545), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5345), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [499] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4809), + [sym_parenthesized_list_splat] = STATE(4970), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3733), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4923), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5594), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5345), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [500] = { + [sym_identifier] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_cimport] = ACTIONS(1510), + [anon_sym_from] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_print] = ACTIONS(1510), + [anon_sym_assert] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_del] = ACTIONS(1510), + [anon_sym_raise] = ACTIONS(1510), + [anon_sym_pass] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_elif] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_finally] = ACTIONS(1510), + [anon_sym_with] = ACTIONS(1510), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_global] = ACTIONS(1510), + [anon_sym_nonlocal] = ACTIONS(1510), + [anon_sym_exec] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_not] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_lambda] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), + [anon_sym_None] = ACTIONS(1510), + [sym_integer] = ACTIONS(1510), + [sym_float] = ACTIONS(1512), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_api] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1510), + [anon_sym_include] = ACTIONS(1510), + [anon_sym_DEF] = ACTIONS(1510), + [anon_sym_cdef] = ACTIONS(1510), + [anon_sym_cpdef] = ACTIONS(1510), + [anon_sym_int] = ACTIONS(1510), + [anon_sym_double] = ACTIONS(1510), + [anon_sym_complex] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_char] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_volatile] = ACTIONS(1510), + [anon_sym_ctypedef] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_cppclass] = ACTIONS(1510), + [anon_sym_fused] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_packed] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_readonly] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1510), + [sym__dedent] = ACTIONS(1512), + [sym_string_start] = ACTIONS(1512), + }, + [501] = { + [sym_identifier] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_import] = ACTIONS(1514), + [anon_sym_cimport] = ACTIONS(1514), + [anon_sym_from] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_print] = ACTIONS(1514), + [anon_sym_assert] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_del] = ACTIONS(1514), + [anon_sym_raise] = ACTIONS(1514), + [anon_sym_pass] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_elif] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_async] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_finally] = ACTIONS(1514), + [anon_sym_with] = ACTIONS(1514), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_global] = ACTIONS(1514), + [anon_sym_nonlocal] = ACTIONS(1514), + [anon_sym_exec] = ACTIONS(1514), + [anon_sym_type] = ACTIONS(1514), + [anon_sym_class] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_lambda] = ACTIONS(1514), + [anon_sym_yield] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), + [anon_sym_None] = ACTIONS(1514), + [sym_integer] = ACTIONS(1514), + [sym_float] = ACTIONS(1516), + [anon_sym_await] = ACTIONS(1514), + [anon_sym_api] = ACTIONS(1514), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1514), + [anon_sym_include] = ACTIONS(1514), + [anon_sym_DEF] = ACTIONS(1514), + [anon_sym_cdef] = ACTIONS(1514), + [anon_sym_cpdef] = ACTIONS(1514), + [anon_sym_int] = ACTIONS(1514), + [anon_sym_double] = ACTIONS(1514), + [anon_sym_complex] = ACTIONS(1514), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1514), + [anon_sym_unsigned] = ACTIONS(1514), + [anon_sym_char] = ACTIONS(1514), + [anon_sym_short] = ACTIONS(1514), + [anon_sym_long] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_volatile] = ACTIONS(1514), + [anon_sym_ctypedef] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_cppclass] = ACTIONS(1514), + [anon_sym_fused] = ACTIONS(1514), + [anon_sym_public] = ACTIONS(1514), + [anon_sym_packed] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym_readonly] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1514), + [sym__dedent] = ACTIONS(1516), + [sym_string_start] = ACTIONS(1516), + }, + [502] = { + [sym_list_splat_pattern] = STATE(2166), + [sym_primary_expression] = STATE(2103), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_from] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_print] = ACTIONS(1285), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_match] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_from] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_print] = ACTIONS(1317), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(813), + [anon_sym_match] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1317), + [anon_sym_in] = ACTIONS(813), + [anon_sym_with] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_AT] = ACTIONS(811), [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(65), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), [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), + [anon_sym_await] = ACTIONS(1325), + [anon_sym_api] = ACTIONS(1317), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_nogil] = ACTIONS(933), + [anon_sym_nogil] = ACTIONS(813), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(931), + [sym__newline] = ACTIONS(811), [sym_string_start] = ACTIONS(107), }, - [485] = { - [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_int] = ACTIONS(1478), - [anon_sym_double] = ACTIONS(1478), - [anon_sym_complex] = ACTIONS(1478), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1478), - [anon_sym_unsigned] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_short] = ACTIONS(1478), - [anon_sym_long] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_ctypedef] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_cppclass] = ACTIONS(1478), - [anon_sym_fused] = ACTIONS(1478), - [anon_sym_public] = ACTIONS(1478), - [anon_sym_packed] = ACTIONS(1478), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym_readonly] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1478), - [sym__dedent] = ACTIONS(1480), - [sym_string_start] = ACTIONS(1480), - }, - [486] = { - [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_int] = ACTIONS(1482), - [anon_sym_double] = ACTIONS(1482), - [anon_sym_complex] = ACTIONS(1482), - [anon_sym_new] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1482), - [anon_sym_unsigned] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_short] = ACTIONS(1482), - [anon_sym_long] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_volatile] = ACTIONS(1482), - [anon_sym_ctypedef] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_cppclass] = ACTIONS(1482), - [anon_sym_fused] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_packed] = ACTIONS(1482), - [anon_sym_inline] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1482), - [sym__dedent] = ACTIONS(1484), - [sym_string_start] = ACTIONS(1484), - }, - [487] = { - [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_int] = ACTIONS(1486), - [anon_sym_double] = ACTIONS(1486), - [anon_sym_complex] = ACTIONS(1486), - [anon_sym_new] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1486), - [anon_sym_unsigned] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_short] = ACTIONS(1486), - [anon_sym_long] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_volatile] = ACTIONS(1486), - [anon_sym_ctypedef] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_cppclass] = ACTIONS(1486), - [anon_sym_fused] = ACTIONS(1486), - [anon_sym_public] = ACTIONS(1486), - [anon_sym_packed] = ACTIONS(1486), - [anon_sym_inline] = ACTIONS(1486), - [anon_sym_readonly] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1486), - [sym__dedent] = ACTIONS(1488), - [sym_string_start] = ACTIONS(1488), - }, - [488] = { - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_import] = ACTIONS(1490), - [anon_sym_cimport] = ACTIONS(1490), - [anon_sym_from] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_print] = ACTIONS(1490), - [anon_sym_assert] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_del] = ACTIONS(1490), - [anon_sym_raise] = ACTIONS(1490), - [anon_sym_pass] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_elif] = 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_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_int] = ACTIONS(1490), - [anon_sym_double] = ACTIONS(1490), - [anon_sym_complex] = ACTIONS(1490), - [anon_sym_new] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1490), - [anon_sym_unsigned] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_short] = ACTIONS(1490), - [anon_sym_long] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_volatile] = ACTIONS(1490), - [anon_sym_ctypedef] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_cppclass] = ACTIONS(1490), - [anon_sym_fused] = ACTIONS(1490), - [anon_sym_public] = ACTIONS(1490), - [anon_sym_packed] = ACTIONS(1490), - [anon_sym_inline] = ACTIONS(1490), - [anon_sym_readonly] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1490), - [sym__dedent] = ACTIONS(1492), - [sym_string_start] = ACTIONS(1492), + [503] = { + [sym_identifier] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_import] = ACTIONS(1518), + [anon_sym_cimport] = ACTIONS(1518), + [anon_sym_from] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_print] = ACTIONS(1518), + [anon_sym_assert] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_del] = ACTIONS(1518), + [anon_sym_raise] = ACTIONS(1518), + [anon_sym_pass] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_elif] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_finally] = ACTIONS(1518), + [anon_sym_with] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_global] = ACTIONS(1518), + [anon_sym_nonlocal] = ACTIONS(1518), + [anon_sym_exec] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_class] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_not] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_lambda] = ACTIONS(1518), + [anon_sym_yield] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_None] = ACTIONS(1518), + [sym_integer] = ACTIONS(1518), + [sym_float] = ACTIONS(1520), + [anon_sym_await] = ACTIONS(1518), + [anon_sym_api] = ACTIONS(1518), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1518), + [anon_sym_include] = ACTIONS(1518), + [anon_sym_DEF] = ACTIONS(1518), + [anon_sym_cdef] = ACTIONS(1518), + [anon_sym_cpdef] = ACTIONS(1518), + [anon_sym_int] = ACTIONS(1518), + [anon_sym_double] = ACTIONS(1518), + [anon_sym_complex] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1518), + [anon_sym_unsigned] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_short] = ACTIONS(1518), + [anon_sym_long] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_volatile] = ACTIONS(1518), + [anon_sym_ctypedef] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_cppclass] = ACTIONS(1518), + [anon_sym_fused] = ACTIONS(1518), + [anon_sym_public] = ACTIONS(1518), + [anon_sym_packed] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym_readonly] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1518), + [sym__dedent] = ACTIONS(1520), + [sym_string_start] = ACTIONS(1520), }, - [489] = { - [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_int] = ACTIONS(1494), - [anon_sym_double] = ACTIONS(1494), - [anon_sym_complex] = ACTIONS(1494), - [anon_sym_new] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1494), - [anon_sym_unsigned] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_short] = ACTIONS(1494), - [anon_sym_long] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_volatile] = ACTIONS(1494), - [anon_sym_ctypedef] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_cppclass] = ACTIONS(1494), - [anon_sym_fused] = ACTIONS(1494), - [anon_sym_public] = ACTIONS(1494), - [anon_sym_packed] = ACTIONS(1494), - [anon_sym_inline] = ACTIONS(1494), - [anon_sym_readonly] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1494), - [sym__dedent] = ACTIONS(1496), - [sym_string_start] = ACTIONS(1496), + [504] = { + [sym_identifier] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_import] = ACTIONS(1522), + [anon_sym_cimport] = ACTIONS(1522), + [anon_sym_from] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_print] = ACTIONS(1522), + [anon_sym_assert] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_del] = ACTIONS(1522), + [anon_sym_raise] = ACTIONS(1522), + [anon_sym_pass] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_elif] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_finally] = ACTIONS(1522), + [anon_sym_with] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_global] = ACTIONS(1522), + [anon_sym_nonlocal] = ACTIONS(1522), + [anon_sym_exec] = ACTIONS(1522), + [anon_sym_type] = ACTIONS(1522), + [anon_sym_class] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_AT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_not] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_lambda] = ACTIONS(1522), + [anon_sym_yield] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), + [anon_sym_None] = ACTIONS(1522), + [sym_integer] = ACTIONS(1522), + [sym_float] = ACTIONS(1524), + [anon_sym_await] = ACTIONS(1522), + [anon_sym_api] = ACTIONS(1522), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1522), + [anon_sym_include] = ACTIONS(1522), + [anon_sym_DEF] = ACTIONS(1522), + [anon_sym_cdef] = ACTIONS(1522), + [anon_sym_cpdef] = ACTIONS(1522), + [anon_sym_int] = ACTIONS(1522), + [anon_sym_double] = ACTIONS(1522), + [anon_sym_complex] = ACTIONS(1522), + [anon_sym_new] = ACTIONS(1522), + [anon_sym_signed] = ACTIONS(1522), + [anon_sym_unsigned] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_short] = ACTIONS(1522), + [anon_sym_long] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_volatile] = ACTIONS(1522), + [anon_sym_ctypedef] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_cppclass] = ACTIONS(1522), + [anon_sym_fused] = ACTIONS(1522), + [anon_sym_public] = ACTIONS(1522), + [anon_sym_packed] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1522), + [sym__dedent] = ACTIONS(1524), + [sym_string_start] = ACTIONS(1524), }, - [490] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(3236), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1295), - [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_match] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_in] = ACTIONS(1300), - [anon_sym_with] = 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_nogil] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1245), - [sym__newline] = ACTIONS(1295), - [sym_string_start] = ACTIONS(1247), + [505] = { + [sym_identifier] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_import] = ACTIONS(1526), + [anon_sym_cimport] = ACTIONS(1526), + [anon_sym_from] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_print] = ACTIONS(1526), + [anon_sym_assert] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_del] = ACTIONS(1526), + [anon_sym_raise] = ACTIONS(1526), + [anon_sym_pass] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_elif] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_finally] = ACTIONS(1526), + [anon_sym_with] = ACTIONS(1526), + [anon_sym_def] = ACTIONS(1526), + [anon_sym_global] = ACTIONS(1526), + [anon_sym_nonlocal] = ACTIONS(1526), + [anon_sym_exec] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_class] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_not] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_lambda] = ACTIONS(1526), + [anon_sym_yield] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), + [anon_sym_None] = ACTIONS(1526), + [sym_integer] = ACTIONS(1526), + [sym_float] = ACTIONS(1528), + [anon_sym_await] = ACTIONS(1526), + [anon_sym_api] = ACTIONS(1526), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1526), + [anon_sym_include] = ACTIONS(1526), + [anon_sym_DEF] = ACTIONS(1526), + [anon_sym_cdef] = ACTIONS(1526), + [anon_sym_cpdef] = ACTIONS(1526), + [anon_sym_int] = ACTIONS(1526), + [anon_sym_double] = ACTIONS(1526), + [anon_sym_complex] = ACTIONS(1526), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_signed] = ACTIONS(1526), + [anon_sym_unsigned] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_short] = ACTIONS(1526), + [anon_sym_long] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_volatile] = ACTIONS(1526), + [anon_sym_ctypedef] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_cppclass] = ACTIONS(1526), + [anon_sym_fused] = ACTIONS(1526), + [anon_sym_public] = ACTIONS(1526), + [anon_sym_packed] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1526), + [sym__dedent] = ACTIONS(1528), + [sym_string_start] = ACTIONS(1528), }, - [491] = { - [sym_list_splat_pattern] = STATE(2110), - [sym_primary_expression] = STATE(2050), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [506] = { + [sym_list_splat_pattern] = STATE(2166), + [sym_primary_expression] = STATE(2103), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_from] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_print] = ACTIONS(1285), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_match] = ACTIONS(1285), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_from] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_print] = ACTIONS(1317), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(811), + [anon_sym_match] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1317), + [anon_sym_in] = ACTIONS(813), + [anon_sym_with] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_AT] = ACTIONS(811), [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), [anon_sym_AMP] = ACTIONS(65), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(1323), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), [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), + [anon_sym_await] = ACTIONS(1325), + [anon_sym_api] = ACTIONS(1317), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_nogil] = ACTIONS(933), + [anon_sym_nogil] = ACTIONS(813), [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(931), + [sym__newline] = ACTIONS(811), [sym_string_start] = ACTIONS(107), }, - [492] = { - [sym_identifier] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_import] = ACTIONS(1501), - [anon_sym_cimport] = ACTIONS(1501), - [anon_sym_from] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_print] = ACTIONS(1501), - [anon_sym_assert] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_del] = ACTIONS(1501), - [anon_sym_raise] = ACTIONS(1501), - [anon_sym_pass] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_COLON] = ACTIONS(1503), - [anon_sym_match] = ACTIONS(1501), - [anon_sym_async] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_try] = ACTIONS(1501), - [anon_sym_with] = ACTIONS(1501), - [anon_sym_def] = ACTIONS(1501), - [anon_sym_global] = ACTIONS(1501), - [anon_sym_nonlocal] = ACTIONS(1501), - [anon_sym_exec] = ACTIONS(1501), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_class] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_not] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_lambda] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), - [anon_sym_None] = ACTIONS(1501), - [sym_integer] = ACTIONS(1501), - [sym_float] = ACTIONS(1503), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_api] = ACTIONS(1501), - [sym_true] = ACTIONS(1501), - [sym_false] = ACTIONS(1501), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1501), - [anon_sym_include] = ACTIONS(1501), - [anon_sym_DEF] = ACTIONS(1501), - [anon_sym_cdef] = ACTIONS(1501), - [anon_sym_cpdef] = ACTIONS(1501), - [anon_sym_int] = ACTIONS(1501), - [anon_sym_double] = ACTIONS(1501), - [anon_sym_complex] = ACTIONS(1501), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_signed] = ACTIONS(1501), - [anon_sym_unsigned] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_short] = ACTIONS(1501), - [anon_sym_long] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_volatile] = ACTIONS(1501), - [anon_sym_ctypedef] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_enum] = ACTIONS(1501), - [anon_sym_cppclass] = ACTIONS(1501), - [anon_sym_fused] = ACTIONS(1501), - [anon_sym_public] = ACTIONS(1501), - [anon_sym_packed] = ACTIONS(1501), - [anon_sym_inline] = ACTIONS(1501), - [anon_sym_readonly] = ACTIONS(1501), - [anon_sym_sizeof] = ACTIONS(1501), - [sym__dedent] = ACTIONS(1503), - [sym_string_start] = ACTIONS(1503), - }, - [493] = { - [sym_identifier] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_import] = ACTIONS(1505), - [anon_sym_cimport] = ACTIONS(1505), - [anon_sym_from] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_print] = ACTIONS(1505), - [anon_sym_assert] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_del] = ACTIONS(1505), - [anon_sym_raise] = ACTIONS(1505), - [anon_sym_pass] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_COLON] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1505), - [anon_sym_async] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [anon_sym_with] = ACTIONS(1505), - [anon_sym_def] = ACTIONS(1505), - [anon_sym_global] = ACTIONS(1505), - [anon_sym_nonlocal] = ACTIONS(1505), - [anon_sym_exec] = ACTIONS(1505), - [anon_sym_type] = ACTIONS(1505), - [anon_sym_class] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_AT] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_not] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_lambda] = ACTIONS(1505), - [anon_sym_yield] = ACTIONS(1505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), - [anon_sym_None] = ACTIONS(1505), - [sym_integer] = ACTIONS(1505), - [sym_float] = ACTIONS(1507), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_api] = ACTIONS(1505), - [sym_true] = ACTIONS(1505), - [sym_false] = ACTIONS(1505), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1505), - [anon_sym_include] = ACTIONS(1505), - [anon_sym_DEF] = ACTIONS(1505), - [anon_sym_cdef] = ACTIONS(1505), - [anon_sym_cpdef] = ACTIONS(1505), - [anon_sym_int] = ACTIONS(1505), - [anon_sym_double] = ACTIONS(1505), - [anon_sym_complex] = ACTIONS(1505), - [anon_sym_new] = ACTIONS(1505), - [anon_sym_signed] = ACTIONS(1505), - [anon_sym_unsigned] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_short] = ACTIONS(1505), - [anon_sym_long] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_volatile] = ACTIONS(1505), - [anon_sym_ctypedef] = ACTIONS(1505), - [anon_sym_struct] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1505), - [anon_sym_cppclass] = ACTIONS(1505), - [anon_sym_fused] = ACTIONS(1505), - [anon_sym_public] = ACTIONS(1505), - [anon_sym_packed] = ACTIONS(1505), - [anon_sym_inline] = ACTIONS(1505), - [anon_sym_readonly] = ACTIONS(1505), - [anon_sym_sizeof] = ACTIONS(1505), - [sym__dedent] = ACTIONS(1507), - [sym_string_start] = ACTIONS(1507), - }, - [494] = { - [sym_identifier] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_import] = ACTIONS(1511), - [anon_sym_cimport] = ACTIONS(1511), - [anon_sym_from] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_print] = ACTIONS(1511), - [anon_sym_assert] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_del] = ACTIONS(1511), - [anon_sym_raise] = ACTIONS(1511), - [anon_sym_pass] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_COLON] = ACTIONS(1515), - [anon_sym_match] = ACTIONS(1511), - [anon_sym_async] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_try] = ACTIONS(1511), - [anon_sym_with] = ACTIONS(1511), - [anon_sym_def] = ACTIONS(1511), - [anon_sym_global] = ACTIONS(1511), - [anon_sym_nonlocal] = ACTIONS(1511), - [anon_sym_exec] = ACTIONS(1511), - [anon_sym_type] = ACTIONS(1511), - [anon_sym_class] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1513), - [anon_sym_AT] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_lambda] = ACTIONS(1511), - [anon_sym_yield] = ACTIONS(1511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1513), - [anon_sym_None] = ACTIONS(1511), - [sym_integer] = ACTIONS(1511), - [sym_float] = ACTIONS(1513), - [anon_sym_await] = ACTIONS(1511), - [anon_sym_api] = ACTIONS(1511), - [sym_true] = ACTIONS(1511), - [sym_false] = ACTIONS(1511), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1511), - [anon_sym_include] = ACTIONS(1511), - [anon_sym_DEF] = ACTIONS(1511), - [anon_sym_cdef] = ACTIONS(1511), - [anon_sym_cpdef] = ACTIONS(1511), - [anon_sym_int] = ACTIONS(1511), - [anon_sym_double] = ACTIONS(1511), - [anon_sym_complex] = ACTIONS(1511), - [anon_sym_new] = ACTIONS(1511), - [anon_sym_signed] = ACTIONS(1511), - [anon_sym_unsigned] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_short] = ACTIONS(1511), - [anon_sym_long] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_volatile] = ACTIONS(1511), - [anon_sym_ctypedef] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_enum] = ACTIONS(1511), - [anon_sym_cppclass] = ACTIONS(1511), - [anon_sym_fused] = ACTIONS(1511), - [anon_sym_public] = ACTIONS(1511), - [anon_sym_packed] = ACTIONS(1511), - [anon_sym_inline] = ACTIONS(1511), - [anon_sym_readonly] = ACTIONS(1511), - [anon_sym_sizeof] = ACTIONS(1511), - [sym__dedent] = ACTIONS(1513), - [sym_string_start] = ACTIONS(1513), - }, - [495] = { - [sym_identifier] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_import] = ACTIONS(1517), - [anon_sym_cimport] = ACTIONS(1517), - [anon_sym_from] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_print] = ACTIONS(1517), - [anon_sym_assert] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_del] = ACTIONS(1517), - [anon_sym_raise] = ACTIONS(1517), - [anon_sym_pass] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_COLON] = ACTIONS(1521), - [anon_sym_match] = ACTIONS(1517), - [anon_sym_async] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_try] = ACTIONS(1517), - [anon_sym_with] = ACTIONS(1517), - [anon_sym_def] = ACTIONS(1517), - [anon_sym_global] = ACTIONS(1517), - [anon_sym_nonlocal] = ACTIONS(1517), - [anon_sym_exec] = ACTIONS(1517), - [anon_sym_type] = ACTIONS(1517), - [anon_sym_class] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_not] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_lambda] = ACTIONS(1517), - [anon_sym_yield] = ACTIONS(1517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1519), - [anon_sym_None] = ACTIONS(1517), - [sym_integer] = ACTIONS(1517), - [sym_float] = ACTIONS(1519), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_api] = ACTIONS(1517), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1517), - [anon_sym_include] = ACTIONS(1517), - [anon_sym_DEF] = ACTIONS(1517), - [anon_sym_cdef] = ACTIONS(1517), - [anon_sym_cpdef] = ACTIONS(1517), - [anon_sym_int] = ACTIONS(1517), - [anon_sym_double] = ACTIONS(1517), - [anon_sym_complex] = ACTIONS(1517), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_signed] = ACTIONS(1517), - [anon_sym_unsigned] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_short] = ACTIONS(1517), - [anon_sym_long] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_volatile] = ACTIONS(1517), - [anon_sym_ctypedef] = ACTIONS(1517), - [anon_sym_struct] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [anon_sym_enum] = ACTIONS(1517), - [anon_sym_cppclass] = ACTIONS(1517), - [anon_sym_fused] = ACTIONS(1517), - [anon_sym_public] = ACTIONS(1517), - [anon_sym_packed] = ACTIONS(1517), - [anon_sym_inline] = ACTIONS(1517), - [anon_sym_readonly] = ACTIONS(1517), - [anon_sym_sizeof] = ACTIONS(1517), - [sym__dedent] = ACTIONS(1519), - [sym_string_start] = ACTIONS(1519), - }, - [496] = { - [sym_identifier] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_import] = ACTIONS(1523), - [anon_sym_cimport] = ACTIONS(1523), - [anon_sym_from] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_print] = ACTIONS(1523), - [anon_sym_assert] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_del] = ACTIONS(1523), - [anon_sym_raise] = ACTIONS(1523), - [anon_sym_pass] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_COLON] = ACTIONS(1527), - [anon_sym_match] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_try] = ACTIONS(1523), - [anon_sym_with] = ACTIONS(1523), - [anon_sym_def] = ACTIONS(1523), - [anon_sym_global] = ACTIONS(1523), - [anon_sym_nonlocal] = ACTIONS(1523), - [anon_sym_exec] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1523), - [anon_sym_class] = ACTIONS(1523), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_not] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1525), - [anon_sym_LT] = ACTIONS(1525), - [anon_sym_lambda] = ACTIONS(1523), - [anon_sym_yield] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_None] = ACTIONS(1523), - [sym_integer] = ACTIONS(1523), - [sym_float] = ACTIONS(1525), - [anon_sym_await] = ACTIONS(1523), - [anon_sym_api] = ACTIONS(1523), - [sym_true] = ACTIONS(1523), - [sym_false] = ACTIONS(1523), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1523), - [anon_sym_include] = ACTIONS(1523), - [anon_sym_DEF] = ACTIONS(1523), - [anon_sym_cdef] = ACTIONS(1523), - [anon_sym_cpdef] = ACTIONS(1523), - [anon_sym_int] = ACTIONS(1523), - [anon_sym_double] = ACTIONS(1523), - [anon_sym_complex] = ACTIONS(1523), - [anon_sym_new] = ACTIONS(1523), - [anon_sym_signed] = ACTIONS(1523), - [anon_sym_unsigned] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_short] = ACTIONS(1523), - [anon_sym_long] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_volatile] = ACTIONS(1523), - [anon_sym_ctypedef] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_enum] = ACTIONS(1523), - [anon_sym_cppclass] = ACTIONS(1523), - [anon_sym_fused] = ACTIONS(1523), - [anon_sym_public] = ACTIONS(1523), - [anon_sym_packed] = ACTIONS(1523), - [anon_sym_inline] = ACTIONS(1523), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1523), - [sym__dedent] = ACTIONS(1525), - [sym_string_start] = ACTIONS(1525), - }, - [497] = { - [sym_identifier] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_import] = ACTIONS(1529), - [anon_sym_cimport] = ACTIONS(1529), - [anon_sym_from] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_print] = ACTIONS(1529), - [anon_sym_assert] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_del] = ACTIONS(1529), - [anon_sym_raise] = ACTIONS(1529), - [anon_sym_pass] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_COLON] = ACTIONS(1533), - [anon_sym_match] = ACTIONS(1529), - [anon_sym_async] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_with] = ACTIONS(1529), - [anon_sym_def] = ACTIONS(1529), - [anon_sym_global] = ACTIONS(1529), - [anon_sym_nonlocal] = ACTIONS(1529), - [anon_sym_exec] = ACTIONS(1529), - [anon_sym_type] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_AT] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_lambda] = ACTIONS(1529), - [anon_sym_yield] = ACTIONS(1529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), - [anon_sym_None] = ACTIONS(1529), - [sym_integer] = ACTIONS(1529), - [sym_float] = ACTIONS(1531), - [anon_sym_await] = ACTIONS(1529), - [anon_sym_api] = ACTIONS(1529), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1529), - [anon_sym_include] = ACTIONS(1529), - [anon_sym_DEF] = ACTIONS(1529), - [anon_sym_cdef] = ACTIONS(1529), - [anon_sym_cpdef] = ACTIONS(1529), - [anon_sym_int] = ACTIONS(1529), - [anon_sym_double] = ACTIONS(1529), - [anon_sym_complex] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_char] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_ctypedef] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_cppclass] = ACTIONS(1529), - [anon_sym_fused] = ACTIONS(1529), - [anon_sym_public] = ACTIONS(1529), - [anon_sym_packed] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(1529), - [anon_sym_sizeof] = ACTIONS(1529), - [sym__dedent] = ACTIONS(1531), - [sym_string_start] = ACTIONS(1531), + [507] = { + [sym_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(3290), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_from] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_COLON] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_in] = ACTIONS(1332), + [anon_sym_with] = ACTIONS(1332), + [anon_sym_STAR_STAR] = ACTIONS(1530), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_not] = ACTIONS(1332), + [anon_sym_and] = ACTIONS(1332), + [anon_sym_or] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_SLASH_SLASH] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_is] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1332), + [anon_sym_LT_GT] = ACTIONS(1327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_nogil] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1277), + [sym__newline] = ACTIONS(1327), + [sym_string_start] = ACTIONS(1279), }, - [498] = { - [sym_identifier] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_import] = ACTIONS(1535), - [anon_sym_cimport] = ACTIONS(1535), - [anon_sym_from] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_print] = ACTIONS(1535), - [anon_sym_assert] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_del] = ACTIONS(1535), - [anon_sym_raise] = ACTIONS(1535), - [anon_sym_pass] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1535), + [508] = { + [sym_identifier] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_import] = ACTIONS(1533), + [anon_sym_cimport] = ACTIONS(1533), + [anon_sym_from] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_print] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_del] = ACTIONS(1533), + [anon_sym_raise] = ACTIONS(1533), + [anon_sym_pass] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), [anon_sym_COLON] = ACTIONS(1537), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_async] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_try] = ACTIONS(1535), - [anon_sym_with] = ACTIONS(1535), - [anon_sym_def] = ACTIONS(1535), - [anon_sym_global] = ACTIONS(1535), - [anon_sym_nonlocal] = ACTIONS(1535), - [anon_sym_exec] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_not] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_lambda] = ACTIONS(1535), - [anon_sym_yield] = ACTIONS(1535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1537), - [anon_sym_None] = ACTIONS(1535), - [sym_integer] = ACTIONS(1535), - [sym_float] = ACTIONS(1537), - [anon_sym_await] = ACTIONS(1535), - [anon_sym_api] = ACTIONS(1535), - [sym_true] = ACTIONS(1535), - [sym_false] = ACTIONS(1535), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1535), - [anon_sym_include] = ACTIONS(1535), - [anon_sym_DEF] = ACTIONS(1535), - [anon_sym_cdef] = ACTIONS(1535), - [anon_sym_cpdef] = ACTIONS(1535), - [anon_sym_int] = ACTIONS(1535), - [anon_sym_double] = ACTIONS(1535), - [anon_sym_complex] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_signed] = ACTIONS(1535), - [anon_sym_unsigned] = ACTIONS(1535), - [anon_sym_char] = ACTIONS(1535), - [anon_sym_short] = ACTIONS(1535), - [anon_sym_long] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [anon_sym_volatile] = ACTIONS(1535), - [anon_sym_ctypedef] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1535), - [anon_sym_union] = ACTIONS(1535), - [anon_sym_enum] = ACTIONS(1535), - [anon_sym_cppclass] = ACTIONS(1535), - [anon_sym_fused] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_packed] = ACTIONS(1535), - [anon_sym_inline] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1535), - [sym__dedent] = ACTIONS(1537), - [sym_string_start] = ACTIONS(1537), + [anon_sym_match] = ACTIONS(1533), + [anon_sym_async] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_try] = ACTIONS(1533), + [anon_sym_with] = ACTIONS(1533), + [anon_sym_def] = ACTIONS(1533), + [anon_sym_global] = ACTIONS(1533), + [anon_sym_nonlocal] = ACTIONS(1533), + [anon_sym_exec] = ACTIONS(1533), + [anon_sym_type] = ACTIONS(1533), + [anon_sym_class] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_PLUS] = ACTIONS(1535), + [anon_sym_not] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_LT] = ACTIONS(1535), + [anon_sym_lambda] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(1533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), + [anon_sym_None] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1535), + [anon_sym_await] = ACTIONS(1533), + [anon_sym_api] = ACTIONS(1533), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1533), + [anon_sym_include] = ACTIONS(1533), + [anon_sym_DEF] = ACTIONS(1533), + [anon_sym_cdef] = ACTIONS(1533), + [anon_sym_cpdef] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_complex] = ACTIONS(1533), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_volatile] = ACTIONS(1533), + [anon_sym_ctypedef] = ACTIONS(1533), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_union] = ACTIONS(1533), + [anon_sym_enum] = ACTIONS(1533), + [anon_sym_cppclass] = ACTIONS(1533), + [anon_sym_fused] = ACTIONS(1533), + [anon_sym_public] = ACTIONS(1533), + [anon_sym_packed] = ACTIONS(1533), + [anon_sym_inline] = ACTIONS(1533), + [anon_sym_readonly] = ACTIONS(1533), + [anon_sym_sizeof] = ACTIONS(1533), + [sym__dedent] = ACTIONS(1535), + [sym_string_start] = ACTIONS(1535), }, - [499] = { + [509] = { [sym_identifier] = ACTIONS(1539), [anon_sym_SEMI] = ACTIONS(1541), [anon_sym_import] = ACTIONS(1539), @@ -78620,7 +80386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1541), [sym_string_start] = ACTIONS(1541), }, - [500] = { + [510] = { [sym_identifier] = ACTIONS(1545), [anon_sym_SEMI] = ACTIONS(1547), [anon_sym_import] = ACTIONS(1545), @@ -78701,7 +80467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1547), [sym_string_start] = ACTIONS(1547), }, - [501] = { + [511] = { [sym_identifier] = ACTIONS(1551), [anon_sym_SEMI] = ACTIONS(1553), [anon_sym_import] = ACTIONS(1551), @@ -78782,7 +80548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1553), [sym_string_start] = ACTIONS(1553), }, - [502] = { + [512] = { [sym_identifier] = ACTIONS(1557), [anon_sym_SEMI] = ACTIONS(1559), [anon_sym_import] = ACTIONS(1557), @@ -78799,6 +80565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1557), [anon_sym_continue] = ACTIONS(1557), [anon_sym_if] = ACTIONS(1557), + [anon_sym_COLON] = ACTIONS(1561), [anon_sym_match] = ACTIONS(1557), [anon_sym_async] = ACTIONS(1557), [anon_sym_for] = ACTIONS(1557), @@ -78862,327 +80629,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1559), [sym_string_start] = ACTIONS(1559), }, - [503] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4324), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5380), - [sym_c_function_argument_type] = STATE(5714), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1563), + [513] = { + [sym_identifier] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_import] = ACTIONS(1563), + [anon_sym_cimport] = ACTIONS(1563), + [anon_sym_from] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1565), [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_print] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_exec] = ACTIONS(1567), - [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(1569), - [anon_sym_api] = ACTIONS(1567), - [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), - }, - [504] = { - [sym_identifier] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_import] = ACTIONS(1571), - [anon_sym_cimport] = ACTIONS(1571), - [anon_sym_from] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_print] = ACTIONS(1571), - [anon_sym_assert] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_del] = ACTIONS(1571), - [anon_sym_raise] = ACTIONS(1571), - [anon_sym_pass] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_match] = ACTIONS(1571), - [anon_sym_async] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_try] = ACTIONS(1571), - [anon_sym_with] = ACTIONS(1571), - [anon_sym_def] = ACTIONS(1571), - [anon_sym_global] = ACTIONS(1571), - [anon_sym_nonlocal] = ACTIONS(1571), - [anon_sym_exec] = ACTIONS(1571), - [anon_sym_type] = ACTIONS(1571), - [anon_sym_class] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1575), - [anon_sym_AT] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_lambda] = ACTIONS(1571), - [anon_sym_yield] = ACTIONS(1571), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1575), - [anon_sym_None] = ACTIONS(1571), - [sym_integer] = ACTIONS(1571), - [sym_float] = ACTIONS(1575), - [anon_sym_await] = ACTIONS(1571), - [anon_sym_api] = ACTIONS(1571), - [sym_true] = ACTIONS(1571), - [sym_false] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1571), - [anon_sym_include] = ACTIONS(1571), - [anon_sym_DEF] = ACTIONS(1571), - [anon_sym_cdef] = ACTIONS(1571), - [anon_sym_cpdef] = ACTIONS(1571), - [anon_sym_int] = ACTIONS(1571), - [anon_sym_double] = ACTIONS(1571), - [anon_sym_complex] = ACTIONS(1571), - [anon_sym_new] = ACTIONS(1571), - [anon_sym_signed] = ACTIONS(1571), - [anon_sym_unsigned] = ACTIONS(1571), - [anon_sym_char] = ACTIONS(1571), - [anon_sym_short] = ACTIONS(1571), - [anon_sym_long] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_volatile] = ACTIONS(1571), - [anon_sym_ctypedef] = ACTIONS(1571), - [anon_sym_struct] = ACTIONS(1571), - [anon_sym_union] = ACTIONS(1571), - [anon_sym_enum] = ACTIONS(1571), - [anon_sym_cppclass] = ACTIONS(1571), - [anon_sym_fused] = ACTIONS(1571), - [anon_sym_public] = ACTIONS(1571), - [anon_sym_packed] = ACTIONS(1571), - [anon_sym_inline] = ACTIONS(1571), - [anon_sym_readonly] = ACTIONS(1571), - [anon_sym_sizeof] = ACTIONS(1571), - [sym__dedent] = ACTIONS(1575), - [sym_string_start] = ACTIONS(1575), - }, - [505] = { - [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), + [anon_sym_print] = ACTIONS(1563), + [anon_sym_assert] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_del] = ACTIONS(1563), + [anon_sym_raise] = ACTIONS(1563), + [anon_sym_pass] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_COLON] = ACTIONS(1567), + [anon_sym_match] = ACTIONS(1563), + [anon_sym_async] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_try] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1563), + [anon_sym_def] = ACTIONS(1563), + [anon_sym_global] = ACTIONS(1563), + [anon_sym_nonlocal] = ACTIONS(1563), + [anon_sym_exec] = ACTIONS(1563), + [anon_sym_type] = ACTIONS(1563), + [anon_sym_class] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_AT] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_not] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_TILDE] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_lambda] = ACTIONS(1563), + [anon_sym_yield] = ACTIONS(1563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1565), + [anon_sym_None] = ACTIONS(1563), + [sym_integer] = ACTIONS(1563), + [sym_float] = ACTIONS(1565), + [anon_sym_await] = ACTIONS(1563), + [anon_sym_api] = ACTIONS(1563), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1563), + [anon_sym_include] = ACTIONS(1563), + [anon_sym_DEF] = ACTIONS(1563), + [anon_sym_cdef] = ACTIONS(1563), + [anon_sym_cpdef] = ACTIONS(1563), + [anon_sym_int] = ACTIONS(1563), + [anon_sym_double] = ACTIONS(1563), + [anon_sym_complex] = ACTIONS(1563), + [anon_sym_new] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_char] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_ctypedef] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_cppclass] = ACTIONS(1563), + [anon_sym_fused] = ACTIONS(1563), + [anon_sym_public] = ACTIONS(1563), + [anon_sym_packed] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [anon_sym_readonly] = ACTIONS(1563), + [anon_sym_sizeof] = ACTIONS(1563), + [sym__dedent] = ACTIONS(1565), + [sym_string_start] = ACTIONS(1565), }, - [506] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4444), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5248), - [sym_c_function_argument_type] = STATE(5451), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_print] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_exec] = ACTIONS(1567), - [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), + [514] = { + [sym_identifier] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_import] = ACTIONS(1569), + [anon_sym_cimport] = ACTIONS(1569), + [anon_sym_from] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_print] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_del] = ACTIONS(1569), + [anon_sym_raise] = ACTIONS(1569), + [anon_sym_pass] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_COLON] = ACTIONS(1573), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_async] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_with] = ACTIONS(1569), + [anon_sym_def] = ACTIONS(1569), + [anon_sym_global] = ACTIONS(1569), + [anon_sym_nonlocal] = ACTIONS(1569), + [anon_sym_exec] = ACTIONS(1569), + [anon_sym_type] = ACTIONS(1569), + [anon_sym_class] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_AT] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_not] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_lambda] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), + [anon_sym_None] = ACTIONS(1569), + [sym_integer] = ACTIONS(1569), + [sym_float] = ACTIONS(1571), [anon_sym_await] = ACTIONS(1569), - [anon_sym_api] = ACTIONS(1567), - [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), + [anon_sym_api] = ACTIONS(1569), + [sym_true] = ACTIONS(1569), + [sym_false] = ACTIONS(1569), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1569), + [anon_sym_include] = ACTIONS(1569), + [anon_sym_DEF] = ACTIONS(1569), + [anon_sym_cdef] = ACTIONS(1569), + [anon_sym_cpdef] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_complex] = ACTIONS(1569), + [anon_sym_new] = ACTIONS(1569), + [anon_sym_signed] = ACTIONS(1569), + [anon_sym_unsigned] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_volatile] = ACTIONS(1569), + [anon_sym_ctypedef] = ACTIONS(1569), + [anon_sym_struct] = ACTIONS(1569), + [anon_sym_union] = ACTIONS(1569), + [anon_sym_enum] = ACTIONS(1569), + [anon_sym_cppclass] = ACTIONS(1569), + [anon_sym_fused] = ACTIONS(1569), + [anon_sym_public] = ACTIONS(1569), + [anon_sym_packed] = ACTIONS(1569), + [anon_sym_inline] = ACTIONS(1569), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1569), + [sym__dedent] = ACTIONS(1571), + [sym_string_start] = ACTIONS(1571), }, - [507] = { + [515] = { + [sym_identifier] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1575), + [anon_sym_cimport] = ACTIONS(1575), + [anon_sym_from] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1577), + [anon_sym_print] = ACTIONS(1575), + [anon_sym_assert] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1575), + [anon_sym_del] = ACTIONS(1575), + [anon_sym_raise] = ACTIONS(1575), + [anon_sym_pass] = ACTIONS(1575), + [anon_sym_break] = ACTIONS(1575), + [anon_sym_continue] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1575), + [anon_sym_COLON] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1575), + [anon_sym_async] = ACTIONS(1575), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_while] = ACTIONS(1575), + [anon_sym_try] = ACTIONS(1575), + [anon_sym_with] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(1575), + [anon_sym_global] = ACTIONS(1575), + [anon_sym_nonlocal] = ACTIONS(1575), + [anon_sym_exec] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(1575), + [anon_sym_class] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_AT] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_not] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_TILDE] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_lambda] = ACTIONS(1575), + [anon_sym_yield] = ACTIONS(1575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1577), + [anon_sym_None] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1575), + [anon_sym_api] = ACTIONS(1575), + [sym_true] = ACTIONS(1575), + [sym_false] = ACTIONS(1575), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1575), + [anon_sym_include] = ACTIONS(1575), + [anon_sym_DEF] = ACTIONS(1575), + [anon_sym_cdef] = ACTIONS(1575), + [anon_sym_cpdef] = ACTIONS(1575), + [anon_sym_int] = ACTIONS(1575), + [anon_sym_double] = ACTIONS(1575), + [anon_sym_complex] = ACTIONS(1575), + [anon_sym_new] = ACTIONS(1575), + [anon_sym_signed] = ACTIONS(1575), + [anon_sym_unsigned] = ACTIONS(1575), + [anon_sym_char] = ACTIONS(1575), + [anon_sym_short] = ACTIONS(1575), + [anon_sym_long] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1575), + [anon_sym_volatile] = ACTIONS(1575), + [anon_sym_ctypedef] = ACTIONS(1575), + [anon_sym_struct] = ACTIONS(1575), + [anon_sym_union] = ACTIONS(1575), + [anon_sym_enum] = ACTIONS(1575), + [anon_sym_cppclass] = ACTIONS(1575), + [anon_sym_fused] = ACTIONS(1575), + [anon_sym_public] = ACTIONS(1575), + [anon_sym_packed] = ACTIONS(1575), + [anon_sym_inline] = ACTIONS(1575), + [anon_sym_readonly] = ACTIONS(1575), + [anon_sym_sizeof] = ACTIONS(1575), + [sym__dedent] = ACTIONS(1577), + [sym_string_start] = ACTIONS(1577), + }, + [516] = { [sym_identifier] = ACTIONS(1581), [anon_sym_SEMI] = ACTIONS(1583), [anon_sym_import] = ACTIONS(1581), @@ -79199,6 +80889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1581), [anon_sym_continue] = ACTIONS(1581), [anon_sym_if] = ACTIONS(1581), + [anon_sym_COLON] = ACTIONS(1583), [anon_sym_match] = ACTIONS(1581), [anon_sym_async] = ACTIONS(1581), [anon_sym_for] = ACTIONS(1581), @@ -79262,14 +80953,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1583), [sym_string_start] = ACTIONS(1583), }, - [508] = { + [517] = { [sym_identifier] = ACTIONS(1585), [anon_sym_SEMI] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1585), [anon_sym_cimport] = ACTIONS(1585), [anon_sym_from] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_STAR] = ACTIONS(1587), [anon_sym_print] = ACTIONS(1585), [anon_sym_assert] = ACTIONS(1585), [anon_sym_return] = ACTIONS(1585), @@ -79279,6 +80970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1585), [anon_sym_continue] = ACTIONS(1585), [anon_sym_if] = ACTIONS(1585), + [anon_sym_COLON] = ACTIONS(1587), [anon_sym_match] = ACTIONS(1585), [anon_sym_async] = ACTIONS(1585), [anon_sym_for] = ACTIONS(1585), @@ -79291,21 +80983,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(1585), [anon_sym_type] = ACTIONS(1585), [anon_sym_class] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_AT] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1587), [anon_sym_not] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_LT] = ACTIONS(1587), [anon_sym_lambda] = ACTIONS(1585), [anon_sym_yield] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), [anon_sym_None] = ACTIONS(1585), [sym_integer] = ACTIONS(1585), - [sym_float] = ACTIONS(1589), + [sym_float] = ACTIONS(1587), [anon_sym_await] = ACTIONS(1585), [anon_sym_api] = ACTIONS(1585), [sym_true] = ACTIONS(1585), @@ -79339,410 +81031,490 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1585), [anon_sym_readonly] = ACTIONS(1585), [anon_sym_sizeof] = ACTIONS(1585), - [sym__dedent] = ACTIONS(1589), - [sym_string_start] = ACTIONS(1589), + [sym__dedent] = ACTIONS(1587), + [sym_string_start] = ACTIONS(1587), }, - [509] = { - [sym_identifier] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1593), - [anon_sym_import] = ACTIONS(1591), - [anon_sym_cimport] = ACTIONS(1591), - [anon_sym_from] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_print] = ACTIONS(1591), - [anon_sym_assert] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_del] = ACTIONS(1591), - [anon_sym_raise] = ACTIONS(1591), - [anon_sym_pass] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_match] = ACTIONS(1591), - [anon_sym_async] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1591), - [anon_sym_with] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1591), - [anon_sym_global] = ACTIONS(1591), - [anon_sym_nonlocal] = ACTIONS(1591), - [anon_sym_exec] = ACTIONS(1591), - [anon_sym_type] = ACTIONS(1591), - [anon_sym_class] = ACTIONS(1591), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_AT] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_not] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_TILDE] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(1593), - [anon_sym_lambda] = ACTIONS(1591), - [anon_sym_yield] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1593), - [anon_sym_None] = ACTIONS(1591), - [sym_integer] = ACTIONS(1591), - [sym_float] = ACTIONS(1593), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_api] = ACTIONS(1591), - [sym_true] = ACTIONS(1591), - [sym_false] = ACTIONS(1591), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1591), - [anon_sym_include] = ACTIONS(1591), - [anon_sym_DEF] = ACTIONS(1591), - [anon_sym_cdef] = ACTIONS(1591), - [anon_sym_cpdef] = ACTIONS(1591), - [anon_sym_int] = ACTIONS(1591), - [anon_sym_double] = ACTIONS(1591), - [anon_sym_complex] = ACTIONS(1591), - [anon_sym_new] = ACTIONS(1591), - [anon_sym_signed] = ACTIONS(1591), - [anon_sym_unsigned] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_short] = ACTIONS(1591), - [anon_sym_long] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_volatile] = ACTIONS(1591), - [anon_sym_ctypedef] = ACTIONS(1591), - [anon_sym_struct] = ACTIONS(1591), - [anon_sym_union] = ACTIONS(1591), - [anon_sym_enum] = ACTIONS(1591), - [anon_sym_cppclass] = ACTIONS(1591), - [anon_sym_fused] = ACTIONS(1591), - [anon_sym_public] = ACTIONS(1591), - [anon_sym_packed] = ACTIONS(1591), - [anon_sym_inline] = ACTIONS(1591), - [anon_sym_readonly] = ACTIONS(1591), - [anon_sym_sizeof] = ACTIONS(1591), - [sym__dedent] = ACTIONS(1593), - [sym_string_start] = ACTIONS(1593), + [518] = { + [sym_identifier] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_import] = ACTIONS(1589), + [anon_sym_cimport] = ACTIONS(1589), + [anon_sym_from] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_print] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_del] = ACTIONS(1589), + [anon_sym_raise] = ACTIONS(1589), + [anon_sym_pass] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_async] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [anon_sym_with] = ACTIONS(1589), + [anon_sym_def] = ACTIONS(1589), + [anon_sym_global] = ACTIONS(1589), + [anon_sym_nonlocal] = ACTIONS(1589), + [anon_sym_exec] = ACTIONS(1589), + [anon_sym_type] = ACTIONS(1589), + [anon_sym_class] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_AT] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_not] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(1591), + [anon_sym_lambda] = ACTIONS(1589), + [anon_sym_yield] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1591), + [anon_sym_None] = ACTIONS(1589), + [sym_integer] = ACTIONS(1589), + [sym_float] = ACTIONS(1591), + [anon_sym_await] = ACTIONS(1589), + [anon_sym_api] = ACTIONS(1589), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1589), + [anon_sym_include] = ACTIONS(1589), + [anon_sym_DEF] = ACTIONS(1589), + [anon_sym_cdef] = ACTIONS(1589), + [anon_sym_cpdef] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_complex] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1589), + [anon_sym_signed] = ACTIONS(1589), + [anon_sym_unsigned] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_volatile] = ACTIONS(1589), + [anon_sym_ctypedef] = ACTIONS(1589), + [anon_sym_struct] = ACTIONS(1589), + [anon_sym_union] = ACTIONS(1589), + [anon_sym_enum] = ACTIONS(1589), + [anon_sym_cppclass] = ACTIONS(1589), + [anon_sym_fused] = ACTIONS(1589), + [anon_sym_public] = ACTIONS(1589), + [anon_sym_packed] = ACTIONS(1589), + [anon_sym_inline] = ACTIONS(1589), + [anon_sym_readonly] = ACTIONS(1589), + [anon_sym_sizeof] = ACTIONS(1589), + [sym__dedent] = ACTIONS(1591), + [sym_string_start] = ACTIONS(1591), }, - [510] = { - [sym_identifier] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_import] = ACTIONS(1595), - [anon_sym_cimport] = ACTIONS(1595), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_print] = ACTIONS(1595), - [anon_sym_assert] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_del] = ACTIONS(1595), - [anon_sym_raise] = ACTIONS(1595), - [anon_sym_pass] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_match] = ACTIONS(1595), - [anon_sym_async] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_try] = ACTIONS(1595), - [anon_sym_with] = ACTIONS(1595), - [anon_sym_def] = ACTIONS(1595), - [anon_sym_global] = ACTIONS(1595), - [anon_sym_nonlocal] = ACTIONS(1595), - [anon_sym_exec] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_class] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_AT] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_not] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1597), - [anon_sym_lambda] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1597), - [anon_sym_None] = ACTIONS(1595), - [sym_integer] = ACTIONS(1595), - [sym_float] = ACTIONS(1597), - [anon_sym_await] = ACTIONS(1595), - [anon_sym_api] = ACTIONS(1595), - [sym_true] = ACTIONS(1595), - [sym_false] = ACTIONS(1595), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_include] = ACTIONS(1595), - [anon_sym_DEF] = ACTIONS(1595), - [anon_sym_cdef] = ACTIONS(1595), - [anon_sym_cpdef] = ACTIONS(1595), - [anon_sym_int] = ACTIONS(1595), - [anon_sym_double] = ACTIONS(1595), - [anon_sym_complex] = ACTIONS(1595), - [anon_sym_new] = ACTIONS(1595), - [anon_sym_signed] = ACTIONS(1595), - [anon_sym_unsigned] = ACTIONS(1595), - [anon_sym_char] = ACTIONS(1595), - [anon_sym_short] = ACTIONS(1595), - [anon_sym_long] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [anon_sym_volatile] = ACTIONS(1595), - [anon_sym_ctypedef] = ACTIONS(1595), - [anon_sym_struct] = ACTIONS(1595), - [anon_sym_union] = ACTIONS(1595), - [anon_sym_enum] = ACTIONS(1595), - [anon_sym_cppclass] = ACTIONS(1595), - [anon_sym_fused] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_packed] = ACTIONS(1595), - [anon_sym_inline] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1595), - [sym__dedent] = ACTIONS(1597), - [sym_string_start] = ACTIONS(1597), + [519] = { + [sym_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(3290), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_from] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_COLON] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_in] = ACTIONS(1332), + [anon_sym_by] = ACTIONS(1332), + [anon_sym_STAR_STAR] = ACTIONS(1530), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_not] = ACTIONS(1332), + [anon_sym_and] = ACTIONS(1332), + [anon_sym_or] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_SLASH_SLASH] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_is] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1332), + [anon_sym_LT_GT] = ACTIONS(1327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, - [511] = { - [sym_identifier] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_import] = ACTIONS(1599), - [anon_sym_cimport] = ACTIONS(1599), - [anon_sym_from] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1601), + [520] = { + [sym_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(3290), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_COLON] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_in] = ACTIONS(1332), + [anon_sym_STAR_STAR] = ACTIONS(1530), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_not] = ACTIONS(1332), + [anon_sym_and] = ACTIONS(1332), + [anon_sym_or] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_SLASH_SLASH] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_is] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1332), + [anon_sym_LT_GT] = ACTIONS(1327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_type_conversion] = ACTIONS(1327), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), + }, + [521] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4376), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5308), + [sym_c_function_argument_type] = STATE(5477), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1597), [anon_sym_print] = ACTIONS(1599), - [anon_sym_assert] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_del] = ACTIONS(1599), - [anon_sym_raise] = ACTIONS(1599), - [anon_sym_pass] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1599), [anon_sym_match] = ACTIONS(1599), [anon_sym_async] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_try] = ACTIONS(1599), - [anon_sym_with] = ACTIONS(1599), - [anon_sym_def] = ACTIONS(1599), - [anon_sym_global] = ACTIONS(1599), - [anon_sym_nonlocal] = ACTIONS(1599), [anon_sym_exec] = ACTIONS(1599), - [anon_sym_type] = ACTIONS(1599), - [anon_sym_class] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1601), - [anon_sym_AT] = ACTIONS(1601), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_not] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_LT] = ACTIONS(1601), - [anon_sym_lambda] = ACTIONS(1599), - [anon_sym_yield] = ACTIONS(1599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1601), - [anon_sym_None] = ACTIONS(1599), - [sym_integer] = ACTIONS(1599), - [sym_float] = ACTIONS(1601), - [anon_sym_await] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1601), [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1599), - [sym_false] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1599), - [anon_sym_include] = ACTIONS(1599), - [anon_sym_DEF] = ACTIONS(1599), - [anon_sym_cdef] = ACTIONS(1599), - [anon_sym_cpdef] = ACTIONS(1599), - [anon_sym_int] = ACTIONS(1599), - [anon_sym_double] = ACTIONS(1599), - [anon_sym_complex] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1599), - [anon_sym_signed] = ACTIONS(1599), - [anon_sym_unsigned] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_short] = ACTIONS(1599), - [anon_sym_long] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_volatile] = ACTIONS(1599), - [anon_sym_ctypedef] = ACTIONS(1599), - [anon_sym_struct] = ACTIONS(1599), - [anon_sym_union] = ACTIONS(1599), - [anon_sym_enum] = ACTIONS(1599), - [anon_sym_cppclass] = ACTIONS(1599), - [anon_sym_fused] = ACTIONS(1599), - [anon_sym_public] = ACTIONS(1599), - [anon_sym_packed] = ACTIONS(1599), - [anon_sym_inline] = ACTIONS(1599), - [anon_sym_readonly] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1599), - [sym__dedent] = ACTIONS(1601), - [sym_string_start] = ACTIONS(1601), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, - [512] = { - [sym_identifier] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_import] = ACTIONS(1603), - [anon_sym_cimport] = ACTIONS(1603), - [anon_sym_from] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_print] = ACTIONS(1603), - [anon_sym_assert] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_del] = ACTIONS(1603), - [anon_sym_raise] = ACTIONS(1603), - [anon_sym_pass] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_match] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_try] = ACTIONS(1603), - [anon_sym_with] = ACTIONS(1603), - [anon_sym_def] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), - [anon_sym_nonlocal] = ACTIONS(1603), - [anon_sym_exec] = ACTIONS(1603), - [anon_sym_type] = ACTIONS(1603), - [anon_sym_class] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_AT] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_not] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1605), - [anon_sym_lambda] = ACTIONS(1603), - [anon_sym_yield] = ACTIONS(1603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1605), - [anon_sym_None] = ACTIONS(1603), - [sym_integer] = ACTIONS(1603), - [sym_float] = ACTIONS(1605), + [522] = { + [sym_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(2239), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(813), + [anon_sym_else] = ACTIONS(813), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_in] = ACTIONS(813), + [anon_sym_by] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), [anon_sym_await] = ACTIONS(1603), - [anon_sym_api] = ACTIONS(1603), - [sym_true] = ACTIONS(1603), - [sym_false] = ACTIONS(1603), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1603), - [anon_sym_include] = ACTIONS(1603), - [anon_sym_DEF] = ACTIONS(1603), - [anon_sym_cdef] = ACTIONS(1603), - [anon_sym_cpdef] = ACTIONS(1603), - [anon_sym_int] = ACTIONS(1603), - [anon_sym_double] = ACTIONS(1603), - [anon_sym_complex] = ACTIONS(1603), - [anon_sym_new] = ACTIONS(1603), - [anon_sym_signed] = ACTIONS(1603), - [anon_sym_unsigned] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_short] = ACTIONS(1603), - [anon_sym_long] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_volatile] = ACTIONS(1603), - [anon_sym_ctypedef] = ACTIONS(1603), - [anon_sym_struct] = ACTIONS(1603), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_enum] = ACTIONS(1603), - [anon_sym_cppclass] = ACTIONS(1603), - [anon_sym_fused] = ACTIONS(1603), - [anon_sym_public] = ACTIONS(1603), - [anon_sym_packed] = ACTIONS(1603), - [anon_sym_inline] = ACTIONS(1603), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_sizeof] = ACTIONS(1603), - [sym__dedent] = ACTIONS(1605), - [sym_string_start] = ACTIONS(1605), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, - [513] = { - [sym_identifier] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_import] = ACTIONS(1607), - [anon_sym_cimport] = ACTIONS(1607), - [anon_sym_from] = ACTIONS(1607), + [523] = { + [sym_identifier] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_import] = ACTIONS(1605), + [anon_sym_cimport] = ACTIONS(1605), + [anon_sym_from] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(1609), [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_print] = ACTIONS(1607), - [anon_sym_assert] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_del] = ACTIONS(1607), - [anon_sym_raise] = ACTIONS(1607), - [anon_sym_pass] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_match] = ACTIONS(1607), - [anon_sym_async] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_try] = ACTIONS(1607), - [anon_sym_with] = ACTIONS(1607), - [anon_sym_def] = ACTIONS(1607), - [anon_sym_global] = ACTIONS(1607), - [anon_sym_nonlocal] = ACTIONS(1607), - [anon_sym_exec] = ACTIONS(1607), - [anon_sym_type] = ACTIONS(1607), - [anon_sym_class] = ACTIONS(1607), + [anon_sym_print] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_del] = ACTIONS(1605), + [anon_sym_raise] = ACTIONS(1605), + [anon_sym_pass] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_with] = ACTIONS(1605), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_global] = ACTIONS(1605), + [anon_sym_nonlocal] = ACTIONS(1605), + [anon_sym_exec] = ACTIONS(1605), + [anon_sym_type] = ACTIONS(1605), + [anon_sym_class] = ACTIONS(1605), [anon_sym_LBRACK] = ACTIONS(1609), [anon_sym_AT] = ACTIONS(1609), [anon_sym_DASH] = ACTIONS(1609), [anon_sym_LBRACE] = ACTIONS(1609), [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_not] = ACTIONS(1607), + [anon_sym_not] = ACTIONS(1605), [anon_sym_AMP] = ACTIONS(1609), [anon_sym_TILDE] = ACTIONS(1609), [anon_sym_LT] = ACTIONS(1609), - [anon_sym_lambda] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1607), + [anon_sym_lambda] = ACTIONS(1605), + [anon_sym_yield] = ACTIONS(1605), [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), - [anon_sym_None] = ACTIONS(1607), - [sym_integer] = ACTIONS(1607), + [anon_sym_None] = ACTIONS(1605), + [sym_integer] = ACTIONS(1605), [sym_float] = ACTIONS(1609), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_api] = ACTIONS(1607), - [sym_true] = ACTIONS(1607), - [sym_false] = ACTIONS(1607), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1607), - [anon_sym_include] = ACTIONS(1607), - [anon_sym_DEF] = ACTIONS(1607), - [anon_sym_cdef] = ACTIONS(1607), - [anon_sym_cpdef] = ACTIONS(1607), - [anon_sym_int] = ACTIONS(1607), - [anon_sym_double] = ACTIONS(1607), - [anon_sym_complex] = ACTIONS(1607), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_signed] = ACTIONS(1607), - [anon_sym_unsigned] = ACTIONS(1607), - [anon_sym_char] = ACTIONS(1607), - [anon_sym_short] = ACTIONS(1607), - [anon_sym_long] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_volatile] = ACTIONS(1607), - [anon_sym_ctypedef] = ACTIONS(1607), - [anon_sym_struct] = ACTIONS(1607), - [anon_sym_union] = ACTIONS(1607), - [anon_sym_enum] = ACTIONS(1607), - [anon_sym_cppclass] = ACTIONS(1607), - [anon_sym_fused] = ACTIONS(1607), - [anon_sym_public] = ACTIONS(1607), - [anon_sym_packed] = ACTIONS(1607), - [anon_sym_inline] = ACTIONS(1607), - [anon_sym_readonly] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_api] = ACTIONS(1605), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1605), + [anon_sym_include] = ACTIONS(1605), + [anon_sym_DEF] = ACTIONS(1605), + [anon_sym_cdef] = ACTIONS(1605), + [anon_sym_cpdef] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_complex] = ACTIONS(1605), + [anon_sym_new] = ACTIONS(1605), + [anon_sym_signed] = ACTIONS(1605), + [anon_sym_unsigned] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_volatile] = ACTIONS(1605), + [anon_sym_ctypedef] = ACTIONS(1605), + [anon_sym_struct] = ACTIONS(1605), + [anon_sym_union] = ACTIONS(1605), + [anon_sym_enum] = ACTIONS(1605), + [anon_sym_cppclass] = ACTIONS(1605), + [anon_sym_fused] = ACTIONS(1605), + [anon_sym_public] = ACTIONS(1605), + [anon_sym_packed] = ACTIONS(1605), + [anon_sym_inline] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1605), + [anon_sym_sizeof] = ACTIONS(1605), [sym__dedent] = ACTIONS(1609), [sym_string_start] = ACTIONS(1609), }, - [514] = { + [524] = { [sym_identifier] = ACTIONS(1611), [anon_sym_SEMI] = ACTIONS(1613), [anon_sym_import] = ACTIONS(1611), @@ -79822,7 +81594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1613), [sym_string_start] = ACTIONS(1613), }, - [515] = { + [525] = { [sym_identifier] = ACTIONS(1615), [anon_sym_SEMI] = ACTIONS(1617), [anon_sym_import] = ACTIONS(1615), @@ -79902,14 +81674,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1617), [sym_string_start] = ACTIONS(1617), }, - [516] = { + [526] = { [sym_identifier] = ACTIONS(1619), [anon_sym_SEMI] = ACTIONS(1621), [anon_sym_import] = ACTIONS(1619), [anon_sym_cimport] = ACTIONS(1619), [anon_sym_from] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1623), [anon_sym_print] = ACTIONS(1619), [anon_sym_assert] = ACTIONS(1619), [anon_sym_return] = ACTIONS(1619), @@ -79931,21 +81703,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(1619), [anon_sym_type] = ACTIONS(1619), [anon_sym_class] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1621), - [anon_sym_AT] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1623), [anon_sym_not] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1623), [anon_sym_lambda] = ACTIONS(1619), [anon_sym_yield] = ACTIONS(1619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1623), [anon_sym_None] = ACTIONS(1619), [sym_integer] = ACTIONS(1619), - [sym_float] = ACTIONS(1621), + [sym_float] = ACTIONS(1623), [anon_sym_await] = ACTIONS(1619), [anon_sym_api] = ACTIONS(1619), [sym_true] = ACTIONS(1619), @@ -79979,20937 +81751,19793 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1619), [anon_sym_readonly] = ACTIONS(1619), [anon_sym_sizeof] = ACTIONS(1619), - [sym__dedent] = ACTIONS(1621), - [sym_string_start] = ACTIONS(1621), - }, - [517] = { - [sym_identifier] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1625), - [anon_sym_import] = ACTIONS(1623), - [anon_sym_cimport] = ACTIONS(1623), - [anon_sym_from] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_print] = ACTIONS(1623), - [anon_sym_assert] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_del] = ACTIONS(1623), - [anon_sym_raise] = ACTIONS(1623), - [anon_sym_pass] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_match] = ACTIONS(1623), - [anon_sym_async] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_try] = ACTIONS(1623), - [anon_sym_with] = ACTIONS(1623), - [anon_sym_def] = ACTIONS(1623), - [anon_sym_global] = ACTIONS(1623), - [anon_sym_nonlocal] = ACTIONS(1623), - [anon_sym_exec] = ACTIONS(1623), - [anon_sym_type] = ACTIONS(1623), - [anon_sym_class] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1625), - [anon_sym_AT] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1625), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_not] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_TILDE] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(1625), - [anon_sym_lambda] = ACTIONS(1623), - [anon_sym_yield] = ACTIONS(1623), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1625), - [anon_sym_None] = ACTIONS(1623), - [sym_integer] = ACTIONS(1623), - [sym_float] = ACTIONS(1625), - [anon_sym_await] = ACTIONS(1623), - [anon_sym_api] = ACTIONS(1623), - [sym_true] = ACTIONS(1623), - [sym_false] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1623), - [anon_sym_include] = ACTIONS(1623), - [anon_sym_DEF] = ACTIONS(1623), - [anon_sym_cdef] = ACTIONS(1623), - [anon_sym_cpdef] = ACTIONS(1623), - [anon_sym_int] = ACTIONS(1623), - [anon_sym_double] = ACTIONS(1623), - [anon_sym_complex] = ACTIONS(1623), - [anon_sym_new] = ACTIONS(1623), - [anon_sym_signed] = ACTIONS(1623), - [anon_sym_unsigned] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_volatile] = ACTIONS(1623), - [anon_sym_ctypedef] = ACTIONS(1623), - [anon_sym_struct] = ACTIONS(1623), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_enum] = ACTIONS(1623), - [anon_sym_cppclass] = ACTIONS(1623), - [anon_sym_fused] = ACTIONS(1623), - [anon_sym_public] = ACTIONS(1623), - [anon_sym_packed] = ACTIONS(1623), - [anon_sym_inline] = ACTIONS(1623), - [anon_sym_readonly] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1623), - [sym__dedent] = ACTIONS(1625), - [sym_string_start] = ACTIONS(1625), - }, - [518] = { - [sym_identifier] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1627), - [anon_sym_cimport] = ACTIONS(1627), - [anon_sym_from] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1629), - [anon_sym_print] = ACTIONS(1627), - [anon_sym_assert] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_del] = ACTIONS(1627), - [anon_sym_raise] = ACTIONS(1627), - [anon_sym_pass] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_match] = ACTIONS(1627), - [anon_sym_async] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_try] = ACTIONS(1627), - [anon_sym_with] = ACTIONS(1627), - [anon_sym_def] = ACTIONS(1627), - [anon_sym_global] = ACTIONS(1627), - [anon_sym_nonlocal] = ACTIONS(1627), - [anon_sym_exec] = ACTIONS(1627), - [anon_sym_type] = ACTIONS(1627), - [anon_sym_class] = ACTIONS(1627), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_AT] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_not] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_TILDE] = ACTIONS(1629), - [anon_sym_LT] = ACTIONS(1629), - [anon_sym_lambda] = ACTIONS(1627), - [anon_sym_yield] = ACTIONS(1627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1629), - [anon_sym_None] = ACTIONS(1627), - [sym_integer] = ACTIONS(1627), - [sym_float] = ACTIONS(1629), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_api] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1627), - [anon_sym_include] = ACTIONS(1627), - [anon_sym_DEF] = ACTIONS(1627), - [anon_sym_cdef] = ACTIONS(1627), - [anon_sym_cpdef] = ACTIONS(1627), - [anon_sym_int] = ACTIONS(1627), - [anon_sym_double] = ACTIONS(1627), - [anon_sym_complex] = ACTIONS(1627), - [anon_sym_new] = ACTIONS(1627), - [anon_sym_signed] = ACTIONS(1627), - [anon_sym_unsigned] = ACTIONS(1627), - [anon_sym_char] = ACTIONS(1627), - [anon_sym_short] = ACTIONS(1627), - [anon_sym_long] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [anon_sym_volatile] = ACTIONS(1627), - [anon_sym_ctypedef] = ACTIONS(1627), - [anon_sym_struct] = ACTIONS(1627), - [anon_sym_union] = ACTIONS(1627), - [anon_sym_enum] = ACTIONS(1627), - [anon_sym_cppclass] = ACTIONS(1627), - [anon_sym_fused] = ACTIONS(1627), - [anon_sym_public] = ACTIONS(1627), - [anon_sym_packed] = ACTIONS(1627), - [anon_sym_inline] = ACTIONS(1627), - [anon_sym_readonly] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1627), - [sym__dedent] = ACTIONS(1629), - [sym_string_start] = ACTIONS(1629), - }, - [519] = { - [sym_identifier] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_import] = ACTIONS(1631), - [anon_sym_cimport] = ACTIONS(1631), - [anon_sym_from] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_print] = ACTIONS(1631), - [anon_sym_assert] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_del] = ACTIONS(1631), - [anon_sym_raise] = ACTIONS(1631), - [anon_sym_pass] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_match] = ACTIONS(1631), - [anon_sym_async] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_try] = ACTIONS(1631), - [anon_sym_with] = ACTIONS(1631), - [anon_sym_def] = ACTIONS(1631), - [anon_sym_global] = ACTIONS(1631), - [anon_sym_nonlocal] = ACTIONS(1631), - [anon_sym_exec] = ACTIONS(1631), - [anon_sym_type] = ACTIONS(1631), - [anon_sym_class] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_AT] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_not] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_TILDE] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(1633), - [anon_sym_lambda] = ACTIONS(1631), - [anon_sym_yield] = ACTIONS(1631), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1633), - [anon_sym_None] = ACTIONS(1631), - [sym_integer] = ACTIONS(1631), - [sym_float] = ACTIONS(1633), - [anon_sym_await] = ACTIONS(1631), - [anon_sym_api] = ACTIONS(1631), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1631), - [anon_sym_include] = ACTIONS(1631), - [anon_sym_DEF] = ACTIONS(1631), - [anon_sym_cdef] = ACTIONS(1631), - [anon_sym_cpdef] = ACTIONS(1631), - [anon_sym_int] = ACTIONS(1631), - [anon_sym_double] = ACTIONS(1631), - [anon_sym_complex] = ACTIONS(1631), - [anon_sym_new] = ACTIONS(1631), - [anon_sym_signed] = ACTIONS(1631), - [anon_sym_unsigned] = ACTIONS(1631), - [anon_sym_char] = ACTIONS(1631), - [anon_sym_short] = ACTIONS(1631), - [anon_sym_long] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [anon_sym_volatile] = ACTIONS(1631), - [anon_sym_ctypedef] = ACTIONS(1631), - [anon_sym_struct] = ACTIONS(1631), - [anon_sym_union] = ACTIONS(1631), - [anon_sym_enum] = ACTIONS(1631), - [anon_sym_cppclass] = ACTIONS(1631), - [anon_sym_fused] = ACTIONS(1631), - [anon_sym_public] = ACTIONS(1631), - [anon_sym_packed] = ACTIONS(1631), - [anon_sym_inline] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1631), - [sym__dedent] = ACTIONS(1633), - [sym_string_start] = ACTIONS(1633), - }, - [520] = { - [sym_identifier] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_import] = ACTIONS(1635), - [anon_sym_cimport] = ACTIONS(1635), - [anon_sym_from] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_print] = ACTIONS(1635), - [anon_sym_assert] = ACTIONS(1635), - [anon_sym_return] = ACTIONS(1635), - [anon_sym_del] = ACTIONS(1635), - [anon_sym_raise] = ACTIONS(1635), - [anon_sym_pass] = ACTIONS(1635), - [anon_sym_break] = ACTIONS(1635), - [anon_sym_continue] = ACTIONS(1635), - [anon_sym_if] = ACTIONS(1635), - [anon_sym_match] = ACTIONS(1635), - [anon_sym_async] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1635), - [anon_sym_while] = ACTIONS(1635), - [anon_sym_try] = ACTIONS(1635), - [anon_sym_with] = ACTIONS(1635), - [anon_sym_def] = ACTIONS(1635), - [anon_sym_global] = ACTIONS(1635), - [anon_sym_nonlocal] = ACTIONS(1635), - [anon_sym_exec] = ACTIONS(1635), - [anon_sym_type] = ACTIONS(1635), - [anon_sym_class] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [anon_sym_AT] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_not] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_TILDE] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_lambda] = ACTIONS(1635), - [anon_sym_yield] = ACTIONS(1635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), - [anon_sym_None] = ACTIONS(1635), - [sym_integer] = ACTIONS(1635), - [sym_float] = ACTIONS(1637), - [anon_sym_await] = ACTIONS(1635), - [anon_sym_api] = ACTIONS(1635), - [sym_true] = ACTIONS(1635), - [sym_false] = ACTIONS(1635), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1635), - [anon_sym_include] = ACTIONS(1635), - [anon_sym_DEF] = ACTIONS(1635), - [anon_sym_cdef] = ACTIONS(1635), - [anon_sym_cpdef] = ACTIONS(1635), - [anon_sym_int] = ACTIONS(1635), - [anon_sym_double] = ACTIONS(1635), - [anon_sym_complex] = ACTIONS(1635), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_signed] = ACTIONS(1635), - [anon_sym_unsigned] = ACTIONS(1635), - [anon_sym_char] = ACTIONS(1635), - [anon_sym_short] = ACTIONS(1635), - [anon_sym_long] = ACTIONS(1635), - [anon_sym_const] = ACTIONS(1635), - [anon_sym_volatile] = ACTIONS(1635), - [anon_sym_ctypedef] = ACTIONS(1635), - [anon_sym_struct] = ACTIONS(1635), - [anon_sym_union] = ACTIONS(1635), - [anon_sym_enum] = ACTIONS(1635), - [anon_sym_cppclass] = ACTIONS(1635), - [anon_sym_fused] = ACTIONS(1635), - [anon_sym_public] = ACTIONS(1635), - [anon_sym_packed] = ACTIONS(1635), - [anon_sym_inline] = ACTIONS(1635), - [anon_sym_readonly] = ACTIONS(1635), - [anon_sym_sizeof] = ACTIONS(1635), - [sym__dedent] = ACTIONS(1637), - [sym_string_start] = ACTIONS(1637), - }, - [521] = { - [sym_identifier] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_import] = ACTIONS(1639), - [anon_sym_cimport] = ACTIONS(1639), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1641), - [anon_sym_print] = ACTIONS(1639), - [anon_sym_assert] = ACTIONS(1639), - [anon_sym_return] = ACTIONS(1639), - [anon_sym_del] = ACTIONS(1639), - [anon_sym_raise] = ACTIONS(1639), - [anon_sym_pass] = ACTIONS(1639), - [anon_sym_break] = ACTIONS(1639), - [anon_sym_continue] = ACTIONS(1639), - [anon_sym_if] = ACTIONS(1639), - [anon_sym_match] = ACTIONS(1639), - [anon_sym_async] = ACTIONS(1639), - [anon_sym_for] = ACTIONS(1639), - [anon_sym_while] = ACTIONS(1639), - [anon_sym_try] = ACTIONS(1639), - [anon_sym_with] = ACTIONS(1639), - [anon_sym_def] = ACTIONS(1639), - [anon_sym_global] = ACTIONS(1639), - [anon_sym_nonlocal] = ACTIONS(1639), - [anon_sym_exec] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_class] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_AT] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_not] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_TILDE] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(1641), - [anon_sym_lambda] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1641), - [anon_sym_None] = ACTIONS(1639), - [sym_integer] = ACTIONS(1639), - [sym_float] = ACTIONS(1641), - [anon_sym_await] = ACTIONS(1639), - [anon_sym_api] = ACTIONS(1639), - [sym_true] = ACTIONS(1639), - [sym_false] = ACTIONS(1639), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_include] = ACTIONS(1639), - [anon_sym_DEF] = ACTIONS(1639), - [anon_sym_cdef] = ACTIONS(1639), - [anon_sym_cpdef] = ACTIONS(1639), - [anon_sym_int] = ACTIONS(1639), - [anon_sym_double] = ACTIONS(1639), - [anon_sym_complex] = ACTIONS(1639), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_signed] = ACTIONS(1639), - [anon_sym_unsigned] = ACTIONS(1639), - [anon_sym_char] = ACTIONS(1639), - [anon_sym_short] = ACTIONS(1639), - [anon_sym_long] = ACTIONS(1639), - [anon_sym_const] = ACTIONS(1639), - [anon_sym_volatile] = ACTIONS(1639), - [anon_sym_ctypedef] = ACTIONS(1639), - [anon_sym_struct] = ACTIONS(1639), - [anon_sym_union] = ACTIONS(1639), - [anon_sym_enum] = ACTIONS(1639), - [anon_sym_cppclass] = ACTIONS(1639), - [anon_sym_fused] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_packed] = ACTIONS(1639), - [anon_sym_inline] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1639), - [sym__dedent] = ACTIONS(1641), - [sym_string_start] = ACTIONS(1641), - }, - [522] = { - [sym_identifier] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_import] = ACTIONS(1643), - [anon_sym_cimport] = ACTIONS(1643), - [anon_sym_from] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_print] = ACTIONS(1643), - [anon_sym_assert] = ACTIONS(1643), - [anon_sym_return] = ACTIONS(1643), - [anon_sym_del] = ACTIONS(1643), - [anon_sym_raise] = ACTIONS(1643), - [anon_sym_pass] = ACTIONS(1643), - [anon_sym_break] = ACTIONS(1643), - [anon_sym_continue] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1643), - [anon_sym_match] = ACTIONS(1643), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1643), - [anon_sym_while] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1643), - [anon_sym_with] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1643), - [anon_sym_global] = ACTIONS(1643), - [anon_sym_nonlocal] = ACTIONS(1643), - [anon_sym_exec] = ACTIONS(1643), - [anon_sym_type] = ACTIONS(1643), - [anon_sym_class] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_AT] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_not] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1645), - [anon_sym_LT] = ACTIONS(1645), - [anon_sym_lambda] = ACTIONS(1643), - [anon_sym_yield] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1645), - [anon_sym_None] = ACTIONS(1643), - [sym_integer] = ACTIONS(1643), - [sym_float] = ACTIONS(1645), - [anon_sym_await] = ACTIONS(1643), - [anon_sym_api] = ACTIONS(1643), - [sym_true] = ACTIONS(1643), - [sym_false] = ACTIONS(1643), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1643), - [anon_sym_include] = ACTIONS(1643), - [anon_sym_DEF] = ACTIONS(1643), - [anon_sym_cdef] = ACTIONS(1643), - [anon_sym_cpdef] = ACTIONS(1643), - [anon_sym_int] = ACTIONS(1643), - [anon_sym_double] = ACTIONS(1643), - [anon_sym_complex] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1643), - [anon_sym_signed] = ACTIONS(1643), - [anon_sym_unsigned] = ACTIONS(1643), - [anon_sym_char] = ACTIONS(1643), - [anon_sym_short] = ACTIONS(1643), - [anon_sym_long] = ACTIONS(1643), - [anon_sym_const] = ACTIONS(1643), - [anon_sym_volatile] = ACTIONS(1643), - [anon_sym_ctypedef] = ACTIONS(1643), - [anon_sym_struct] = ACTIONS(1643), - [anon_sym_union] = ACTIONS(1643), - [anon_sym_enum] = ACTIONS(1643), - [anon_sym_cppclass] = ACTIONS(1643), - [anon_sym_fused] = ACTIONS(1643), - [anon_sym_public] = ACTIONS(1643), - [anon_sym_packed] = ACTIONS(1643), - [anon_sym_inline] = ACTIONS(1643), - [anon_sym_readonly] = ACTIONS(1643), - [anon_sym_sizeof] = ACTIONS(1643), - [sym__dedent] = ACTIONS(1645), - [sym_string_start] = ACTIONS(1645), - }, - [523] = { - [sym_identifier] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_import] = ACTIONS(1647), - [anon_sym_cimport] = ACTIONS(1647), - [anon_sym_from] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1649), - [anon_sym_print] = ACTIONS(1647), - [anon_sym_assert] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_del] = ACTIONS(1647), - [anon_sym_raise] = ACTIONS(1647), - [anon_sym_pass] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1647), - [anon_sym_continue] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1647), - [anon_sym_match] = ACTIONS(1647), - [anon_sym_async] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_while] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1647), - [anon_sym_def] = ACTIONS(1647), - [anon_sym_global] = ACTIONS(1647), - [anon_sym_nonlocal] = ACTIONS(1647), - [anon_sym_exec] = ACTIONS(1647), - [anon_sym_type] = ACTIONS(1647), - [anon_sym_class] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_AT] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_not] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_TILDE] = ACTIONS(1649), - [anon_sym_LT] = ACTIONS(1649), - [anon_sym_lambda] = ACTIONS(1647), - [anon_sym_yield] = ACTIONS(1647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), - [anon_sym_None] = ACTIONS(1647), - [sym_integer] = ACTIONS(1647), - [sym_float] = ACTIONS(1649), - [anon_sym_await] = ACTIONS(1647), - [anon_sym_api] = ACTIONS(1647), - [sym_true] = ACTIONS(1647), - [sym_false] = ACTIONS(1647), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1647), - [anon_sym_include] = ACTIONS(1647), - [anon_sym_DEF] = ACTIONS(1647), - [anon_sym_cdef] = ACTIONS(1647), - [anon_sym_cpdef] = ACTIONS(1647), - [anon_sym_int] = ACTIONS(1647), - [anon_sym_double] = ACTIONS(1647), - [anon_sym_complex] = ACTIONS(1647), - [anon_sym_new] = ACTIONS(1647), - [anon_sym_signed] = ACTIONS(1647), - [anon_sym_unsigned] = ACTIONS(1647), - [anon_sym_char] = ACTIONS(1647), - [anon_sym_short] = ACTIONS(1647), - [anon_sym_long] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1647), - [anon_sym_volatile] = ACTIONS(1647), - [anon_sym_ctypedef] = ACTIONS(1647), - [anon_sym_struct] = ACTIONS(1647), - [anon_sym_union] = ACTIONS(1647), - [anon_sym_enum] = ACTIONS(1647), - [anon_sym_cppclass] = ACTIONS(1647), - [anon_sym_fused] = ACTIONS(1647), - [anon_sym_public] = ACTIONS(1647), - [anon_sym_packed] = ACTIONS(1647), - [anon_sym_inline] = ACTIONS(1647), - [anon_sym_readonly] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1647), - [sym__dedent] = ACTIONS(1649), - [sym_string_start] = ACTIONS(1649), - }, - [524] = { - [sym_identifier] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_import] = ACTIONS(1651), - [anon_sym_cimport] = ACTIONS(1651), - [anon_sym_from] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_print] = ACTIONS(1651), - [anon_sym_assert] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_del] = ACTIONS(1651), - [anon_sym_raise] = ACTIONS(1651), - [anon_sym_pass] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_match] = ACTIONS(1651), - [anon_sym_async] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_try] = ACTIONS(1651), - [anon_sym_with] = ACTIONS(1651), - [anon_sym_def] = ACTIONS(1651), - [anon_sym_global] = ACTIONS(1651), - [anon_sym_nonlocal] = ACTIONS(1651), - [anon_sym_exec] = ACTIONS(1651), - [anon_sym_type] = ACTIONS(1651), - [anon_sym_class] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_not] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_lambda] = ACTIONS(1651), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1653), - [anon_sym_None] = ACTIONS(1651), - [sym_integer] = ACTIONS(1651), - [sym_float] = ACTIONS(1653), - [anon_sym_await] = ACTIONS(1651), - [anon_sym_api] = ACTIONS(1651), - [sym_true] = ACTIONS(1651), - [sym_false] = ACTIONS(1651), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1651), - [anon_sym_include] = ACTIONS(1651), - [anon_sym_DEF] = ACTIONS(1651), - [anon_sym_cdef] = ACTIONS(1651), - [anon_sym_cpdef] = ACTIONS(1651), - [anon_sym_int] = ACTIONS(1651), - [anon_sym_double] = ACTIONS(1651), - [anon_sym_complex] = ACTIONS(1651), - [anon_sym_new] = ACTIONS(1651), - [anon_sym_signed] = ACTIONS(1651), - [anon_sym_unsigned] = ACTIONS(1651), - [anon_sym_char] = ACTIONS(1651), - [anon_sym_short] = ACTIONS(1651), - [anon_sym_long] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [anon_sym_volatile] = ACTIONS(1651), - [anon_sym_ctypedef] = ACTIONS(1651), - [anon_sym_struct] = ACTIONS(1651), - [anon_sym_union] = ACTIONS(1651), - [anon_sym_enum] = ACTIONS(1651), - [anon_sym_cppclass] = ACTIONS(1651), - [anon_sym_fused] = ACTIONS(1651), - [anon_sym_public] = ACTIONS(1651), - [anon_sym_packed] = ACTIONS(1651), - [anon_sym_inline] = ACTIONS(1651), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_sizeof] = ACTIONS(1651), - [sym__dedent] = ACTIONS(1653), - [sym_string_start] = ACTIONS(1653), - }, - [525] = { - [sym_identifier] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_import] = ACTIONS(1655), - [anon_sym_cimport] = ACTIONS(1655), - [anon_sym_from] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_print] = ACTIONS(1655), - [anon_sym_assert] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_del] = ACTIONS(1655), - [anon_sym_raise] = ACTIONS(1655), - [anon_sym_pass] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_match] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1655), - [anon_sym_with] = ACTIONS(1655), - [anon_sym_def] = ACTIONS(1655), - [anon_sym_global] = ACTIONS(1655), - [anon_sym_nonlocal] = ACTIONS(1655), - [anon_sym_exec] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_class] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1657), - [anon_sym_AT] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_not] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_TILDE] = ACTIONS(1657), - [anon_sym_LT] = ACTIONS(1657), - [anon_sym_lambda] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1657), - [anon_sym_None] = ACTIONS(1655), - [sym_integer] = ACTIONS(1655), - [sym_float] = ACTIONS(1657), - [anon_sym_await] = ACTIONS(1655), - [anon_sym_api] = ACTIONS(1655), - [sym_true] = ACTIONS(1655), - [sym_false] = ACTIONS(1655), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1655), - [anon_sym_include] = ACTIONS(1655), - [anon_sym_DEF] = ACTIONS(1655), - [anon_sym_cdef] = ACTIONS(1655), - [anon_sym_cpdef] = ACTIONS(1655), - [anon_sym_int] = ACTIONS(1655), - [anon_sym_double] = ACTIONS(1655), - [anon_sym_complex] = ACTIONS(1655), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_signed] = ACTIONS(1655), - [anon_sym_unsigned] = ACTIONS(1655), - [anon_sym_char] = ACTIONS(1655), - [anon_sym_short] = ACTIONS(1655), - [anon_sym_long] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_volatile] = ACTIONS(1655), - [anon_sym_ctypedef] = ACTIONS(1655), - [anon_sym_struct] = ACTIONS(1655), - [anon_sym_union] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), - [anon_sym_cppclass] = ACTIONS(1655), - [anon_sym_fused] = ACTIONS(1655), - [anon_sym_public] = ACTIONS(1655), - [anon_sym_packed] = ACTIONS(1655), - [anon_sym_inline] = ACTIONS(1655), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_sizeof] = ACTIONS(1655), - [sym__dedent] = ACTIONS(1657), - [sym_string_start] = ACTIONS(1657), - }, - [526] = { - [sym_identifier] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_import] = ACTIONS(1659), - [anon_sym_cimport] = ACTIONS(1659), - [anon_sym_from] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_print] = ACTIONS(1659), - [anon_sym_assert] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_del] = ACTIONS(1659), - [anon_sym_raise] = ACTIONS(1659), - [anon_sym_pass] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_async] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_with] = ACTIONS(1659), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_global] = ACTIONS(1659), - [anon_sym_nonlocal] = ACTIONS(1659), - [anon_sym_exec] = ACTIONS(1659), - [anon_sym_type] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_not] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_lambda] = ACTIONS(1659), - [anon_sym_yield] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1661), - [anon_sym_None] = ACTIONS(1659), - [sym_integer] = ACTIONS(1659), - [sym_float] = ACTIONS(1661), - [anon_sym_await] = ACTIONS(1659), - [anon_sym_api] = ACTIONS(1659), - [sym_true] = ACTIONS(1659), - [sym_false] = ACTIONS(1659), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1659), - [anon_sym_include] = ACTIONS(1659), - [anon_sym_DEF] = ACTIONS(1659), - [anon_sym_cdef] = ACTIONS(1659), - [anon_sym_cpdef] = ACTIONS(1659), - [anon_sym_int] = ACTIONS(1659), - [anon_sym_double] = ACTIONS(1659), - [anon_sym_complex] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_signed] = ACTIONS(1659), - [anon_sym_unsigned] = ACTIONS(1659), - [anon_sym_char] = ACTIONS(1659), - [anon_sym_short] = ACTIONS(1659), - [anon_sym_long] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [anon_sym_volatile] = ACTIONS(1659), - [anon_sym_ctypedef] = ACTIONS(1659), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_enum] = ACTIONS(1659), - [anon_sym_cppclass] = ACTIONS(1659), - [anon_sym_fused] = ACTIONS(1659), - [anon_sym_public] = ACTIONS(1659), - [anon_sym_packed] = ACTIONS(1659), - [anon_sym_inline] = ACTIONS(1659), - [anon_sym_readonly] = ACTIONS(1659), - [anon_sym_sizeof] = ACTIONS(1659), - [sym__dedent] = ACTIONS(1661), - [sym_string_start] = ACTIONS(1661), + [sym__dedent] = ACTIONS(1623), + [sym_string_start] = ACTIONS(1623), }, [527] = { - [sym_identifier] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_import] = ACTIONS(1663), - [anon_sym_cimport] = ACTIONS(1663), - [anon_sym_from] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_print] = ACTIONS(1663), - [anon_sym_assert] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_del] = ACTIONS(1663), - [anon_sym_raise] = ACTIONS(1663), - [anon_sym_pass] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_match] = ACTIONS(1663), - [anon_sym_async] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_try] = ACTIONS(1663), - [anon_sym_with] = ACTIONS(1663), - [anon_sym_def] = ACTIONS(1663), - [anon_sym_global] = ACTIONS(1663), - [anon_sym_nonlocal] = ACTIONS(1663), - [anon_sym_exec] = ACTIONS(1663), - [anon_sym_type] = ACTIONS(1663), - [anon_sym_class] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1665), - [anon_sym_AT] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_not] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_TILDE] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1665), - [anon_sym_lambda] = ACTIONS(1663), - [anon_sym_yield] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1665), - [anon_sym_None] = ACTIONS(1663), - [sym_integer] = ACTIONS(1663), - [sym_float] = ACTIONS(1665), - [anon_sym_await] = ACTIONS(1663), - [anon_sym_api] = ACTIONS(1663), - [sym_true] = ACTIONS(1663), - [sym_false] = ACTIONS(1663), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1663), - [anon_sym_include] = ACTIONS(1663), - [anon_sym_DEF] = ACTIONS(1663), - [anon_sym_cdef] = ACTIONS(1663), - [anon_sym_cpdef] = ACTIONS(1663), - [anon_sym_int] = ACTIONS(1663), - [anon_sym_double] = ACTIONS(1663), - [anon_sym_complex] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1663), - [anon_sym_signed] = ACTIONS(1663), - [anon_sym_unsigned] = ACTIONS(1663), - [anon_sym_char] = ACTIONS(1663), - [anon_sym_short] = ACTIONS(1663), - [anon_sym_long] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [anon_sym_volatile] = ACTIONS(1663), - [anon_sym_ctypedef] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1663), - [anon_sym_union] = ACTIONS(1663), - [anon_sym_enum] = ACTIONS(1663), - [anon_sym_cppclass] = ACTIONS(1663), - [anon_sym_fused] = ACTIONS(1663), - [anon_sym_public] = ACTIONS(1663), - [anon_sym_packed] = ACTIONS(1663), - [anon_sym_inline] = ACTIONS(1663), - [anon_sym_readonly] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1663), - [sym__dedent] = ACTIONS(1665), - [sym_string_start] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_import] = ACTIONS(1625), + [anon_sym_cimport] = ACTIONS(1625), + [anon_sym_from] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_print] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_del] = ACTIONS(1625), + [anon_sym_raise] = ACTIONS(1625), + [anon_sym_pass] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_async] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_try] = ACTIONS(1625), + [anon_sym_with] = ACTIONS(1625), + [anon_sym_def] = ACTIONS(1625), + [anon_sym_global] = ACTIONS(1625), + [anon_sym_nonlocal] = ACTIONS(1625), + [anon_sym_exec] = ACTIONS(1625), + [anon_sym_type] = ACTIONS(1625), + [anon_sym_class] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1627), + [anon_sym_AT] = ACTIONS(1627), + [anon_sym_DASH] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_PLUS] = ACTIONS(1627), + [anon_sym_not] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(1627), + [anon_sym_lambda] = ACTIONS(1625), + [anon_sym_yield] = ACTIONS(1625), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1627), + [anon_sym_None] = ACTIONS(1625), + [sym_integer] = ACTIONS(1625), + [sym_float] = ACTIONS(1627), + [anon_sym_await] = ACTIONS(1625), + [anon_sym_api] = ACTIONS(1625), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1625), + [anon_sym_include] = ACTIONS(1625), + [anon_sym_DEF] = ACTIONS(1625), + [anon_sym_cdef] = ACTIONS(1625), + [anon_sym_cpdef] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_complex] = ACTIONS(1625), + [anon_sym_new] = ACTIONS(1625), + [anon_sym_signed] = ACTIONS(1625), + [anon_sym_unsigned] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_volatile] = ACTIONS(1625), + [anon_sym_ctypedef] = ACTIONS(1625), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_enum] = ACTIONS(1625), + [anon_sym_cppclass] = ACTIONS(1625), + [anon_sym_fused] = ACTIONS(1625), + [anon_sym_public] = ACTIONS(1625), + [anon_sym_packed] = ACTIONS(1625), + [anon_sym_inline] = ACTIONS(1625), + [anon_sym_readonly] = ACTIONS(1625), + [anon_sym_sizeof] = ACTIONS(1625), + [sym__dedent] = ACTIONS(1627), + [sym_string_start] = ACTIONS(1627), }, [528] = { - [sym_identifier] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_import] = ACTIONS(1667), - [anon_sym_cimport] = ACTIONS(1667), - [anon_sym_from] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_print] = ACTIONS(1667), - [anon_sym_assert] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_del] = ACTIONS(1667), - [anon_sym_raise] = ACTIONS(1667), - [anon_sym_pass] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_async] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_with] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_global] = ACTIONS(1667), - [anon_sym_nonlocal] = ACTIONS(1667), - [anon_sym_exec] = ACTIONS(1667), - [anon_sym_type] = ACTIONS(1667), - [anon_sym_class] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_AT] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_not] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1669), - [anon_sym_lambda] = ACTIONS(1667), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1669), - [anon_sym_None] = ACTIONS(1667), - [sym_integer] = ACTIONS(1667), - [sym_float] = ACTIONS(1669), - [anon_sym_await] = ACTIONS(1667), - [anon_sym_api] = ACTIONS(1667), - [sym_true] = ACTIONS(1667), - [sym_false] = ACTIONS(1667), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1667), - [anon_sym_include] = ACTIONS(1667), - [anon_sym_DEF] = ACTIONS(1667), - [anon_sym_cdef] = ACTIONS(1667), - [anon_sym_cpdef] = ACTIONS(1667), - [anon_sym_int] = ACTIONS(1667), - [anon_sym_double] = ACTIONS(1667), - [anon_sym_complex] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_signed] = ACTIONS(1667), - [anon_sym_unsigned] = ACTIONS(1667), - [anon_sym_char] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_volatile] = ACTIONS(1667), - [anon_sym_ctypedef] = ACTIONS(1667), - [anon_sym_struct] = ACTIONS(1667), - [anon_sym_union] = ACTIONS(1667), - [anon_sym_enum] = ACTIONS(1667), - [anon_sym_cppclass] = ACTIONS(1667), - [anon_sym_fused] = ACTIONS(1667), - [anon_sym_public] = ACTIONS(1667), - [anon_sym_packed] = ACTIONS(1667), - [anon_sym_inline] = ACTIONS(1667), - [anon_sym_readonly] = ACTIONS(1667), - [anon_sym_sizeof] = ACTIONS(1667), - [sym__dedent] = ACTIONS(1669), - [sym_string_start] = ACTIONS(1669), + [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), }, [529] = { - [sym_identifier] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_import] = ACTIONS(1671), - [anon_sym_cimport] = ACTIONS(1671), - [anon_sym_from] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_print] = ACTIONS(1671), - [anon_sym_assert] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_del] = ACTIONS(1671), - [anon_sym_raise] = ACTIONS(1671), - [anon_sym_pass] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1671), - [anon_sym_match] = ACTIONS(1671), - [anon_sym_async] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1671), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1671), - [anon_sym_with] = ACTIONS(1671), - [anon_sym_def] = ACTIONS(1671), - [anon_sym_global] = ACTIONS(1671), - [anon_sym_nonlocal] = ACTIONS(1671), - [anon_sym_exec] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_class] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1673), - [anon_sym_AT] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_not] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_LT] = ACTIONS(1673), - [anon_sym_lambda] = ACTIONS(1671), - [anon_sym_yield] = ACTIONS(1671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1673), - [anon_sym_None] = ACTIONS(1671), - [sym_integer] = ACTIONS(1671), - [sym_float] = ACTIONS(1673), - [anon_sym_await] = ACTIONS(1671), - [anon_sym_api] = ACTIONS(1671), - [sym_true] = ACTIONS(1671), - [sym_false] = ACTIONS(1671), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1671), - [anon_sym_include] = ACTIONS(1671), - [anon_sym_DEF] = ACTIONS(1671), - [anon_sym_cdef] = ACTIONS(1671), - [anon_sym_cpdef] = ACTIONS(1671), - [anon_sym_int] = ACTIONS(1671), - [anon_sym_double] = ACTIONS(1671), - [anon_sym_complex] = ACTIONS(1671), - [anon_sym_new] = ACTIONS(1671), - [anon_sym_signed] = ACTIONS(1671), - [anon_sym_unsigned] = ACTIONS(1671), - [anon_sym_char] = ACTIONS(1671), - [anon_sym_short] = ACTIONS(1671), - [anon_sym_long] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_volatile] = ACTIONS(1671), - [anon_sym_ctypedef] = ACTIONS(1671), - [anon_sym_struct] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_enum] = ACTIONS(1671), - [anon_sym_cppclass] = ACTIONS(1671), - [anon_sym_fused] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_packed] = ACTIONS(1671), - [anon_sym_inline] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1671), - [sym__dedent] = ACTIONS(1673), - [sym_string_start] = ACTIONS(1673), + [sym_identifier] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_import] = ACTIONS(1633), + [anon_sym_cimport] = ACTIONS(1633), + [anon_sym_from] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_print] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_del] = ACTIONS(1633), + [anon_sym_raise] = ACTIONS(1633), + [anon_sym_pass] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_match] = ACTIONS(1633), + [anon_sym_async] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_try] = ACTIONS(1633), + [anon_sym_with] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1633), + [anon_sym_global] = ACTIONS(1633), + [anon_sym_nonlocal] = ACTIONS(1633), + [anon_sym_exec] = ACTIONS(1633), + [anon_sym_type] = ACTIONS(1633), + [anon_sym_class] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1635), + [anon_sym_AT] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1635), + [anon_sym_LBRACE] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1635), + [anon_sym_not] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_lambda] = ACTIONS(1633), + [anon_sym_yield] = ACTIONS(1633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1635), + [anon_sym_None] = ACTIONS(1633), + [sym_integer] = ACTIONS(1633), + [sym_float] = ACTIONS(1635), + [anon_sym_await] = ACTIONS(1633), + [anon_sym_api] = ACTIONS(1633), + [sym_true] = ACTIONS(1633), + [sym_false] = ACTIONS(1633), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1633), + [anon_sym_include] = ACTIONS(1633), + [anon_sym_DEF] = ACTIONS(1633), + [anon_sym_cdef] = ACTIONS(1633), + [anon_sym_cpdef] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_complex] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1633), + [anon_sym_signed] = ACTIONS(1633), + [anon_sym_unsigned] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_volatile] = ACTIONS(1633), + [anon_sym_ctypedef] = ACTIONS(1633), + [anon_sym_struct] = ACTIONS(1633), + [anon_sym_union] = ACTIONS(1633), + [anon_sym_enum] = ACTIONS(1633), + [anon_sym_cppclass] = ACTIONS(1633), + [anon_sym_fused] = ACTIONS(1633), + [anon_sym_public] = ACTIONS(1633), + [anon_sym_packed] = ACTIONS(1633), + [anon_sym_inline] = ACTIONS(1633), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_sizeof] = ACTIONS(1633), + [sym__dedent] = ACTIONS(1635), + [sym_string_start] = ACTIONS(1635), }, [530] = { - [sym_identifier] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_import] = ACTIONS(1675), - [anon_sym_cimport] = ACTIONS(1675), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_STAR] = ACTIONS(1677), - [anon_sym_print] = ACTIONS(1675), - [anon_sym_assert] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_del] = ACTIONS(1675), - [anon_sym_raise] = ACTIONS(1675), - [anon_sym_pass] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_match] = ACTIONS(1675), - [anon_sym_async] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1675), - [anon_sym_with] = ACTIONS(1675), - [anon_sym_def] = ACTIONS(1675), - [anon_sym_global] = ACTIONS(1675), - [anon_sym_nonlocal] = ACTIONS(1675), - [anon_sym_exec] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_class] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1677), - [anon_sym_AT] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_PLUS] = ACTIONS(1677), - [anon_sym_not] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_TILDE] = ACTIONS(1677), - [anon_sym_LT] = ACTIONS(1677), - [anon_sym_lambda] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), - [anon_sym_None] = ACTIONS(1675), - [sym_integer] = ACTIONS(1675), - [sym_float] = ACTIONS(1677), - [anon_sym_await] = ACTIONS(1675), - [anon_sym_api] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_include] = ACTIONS(1675), - [anon_sym_DEF] = ACTIONS(1675), - [anon_sym_cdef] = ACTIONS(1675), - [anon_sym_cpdef] = ACTIONS(1675), - [anon_sym_int] = ACTIONS(1675), - [anon_sym_double] = ACTIONS(1675), - [anon_sym_complex] = ACTIONS(1675), - [anon_sym_new] = ACTIONS(1675), - [anon_sym_signed] = ACTIONS(1675), - [anon_sym_unsigned] = ACTIONS(1675), - [anon_sym_char] = ACTIONS(1675), - [anon_sym_short] = ACTIONS(1675), - [anon_sym_long] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [anon_sym_volatile] = ACTIONS(1675), - [anon_sym_ctypedef] = ACTIONS(1675), - [anon_sym_struct] = ACTIONS(1675), - [anon_sym_union] = ACTIONS(1675), - [anon_sym_enum] = ACTIONS(1675), - [anon_sym_cppclass] = ACTIONS(1675), - [anon_sym_fused] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_packed] = ACTIONS(1675), - [anon_sym_inline] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_sizeof] = ACTIONS(1675), - [sym__dedent] = ACTIONS(1677), - [sym_string_start] = ACTIONS(1677), + [sym_identifier] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_import] = ACTIONS(1637), + [anon_sym_cimport] = ACTIONS(1637), + [anon_sym_from] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_print] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_del] = ACTIONS(1637), + [anon_sym_raise] = ACTIONS(1637), + [anon_sym_pass] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_match] = ACTIONS(1637), + [anon_sym_async] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_try] = ACTIONS(1637), + [anon_sym_with] = ACTIONS(1637), + [anon_sym_def] = ACTIONS(1637), + [anon_sym_global] = ACTIONS(1637), + [anon_sym_nonlocal] = ACTIONS(1637), + [anon_sym_exec] = ACTIONS(1637), + [anon_sym_type] = ACTIONS(1637), + [anon_sym_class] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1639), + [anon_sym_AT] = ACTIONS(1639), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_not] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_LT] = ACTIONS(1639), + [anon_sym_lambda] = ACTIONS(1637), + [anon_sym_yield] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1639), + [anon_sym_None] = ACTIONS(1637), + [sym_integer] = ACTIONS(1637), + [sym_float] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(1637), + [anon_sym_api] = ACTIONS(1637), + [sym_true] = ACTIONS(1637), + [sym_false] = ACTIONS(1637), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1637), + [anon_sym_include] = ACTIONS(1637), + [anon_sym_DEF] = ACTIONS(1637), + [anon_sym_cdef] = ACTIONS(1637), + [anon_sym_cpdef] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_complex] = ACTIONS(1637), + [anon_sym_new] = ACTIONS(1637), + [anon_sym_signed] = ACTIONS(1637), + [anon_sym_unsigned] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_volatile] = ACTIONS(1637), + [anon_sym_ctypedef] = ACTIONS(1637), + [anon_sym_struct] = ACTIONS(1637), + [anon_sym_union] = ACTIONS(1637), + [anon_sym_enum] = ACTIONS(1637), + [anon_sym_cppclass] = ACTIONS(1637), + [anon_sym_fused] = ACTIONS(1637), + [anon_sym_public] = ACTIONS(1637), + [anon_sym_packed] = ACTIONS(1637), + [anon_sym_inline] = ACTIONS(1637), + [anon_sym_readonly] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1637), + [sym__dedent] = ACTIONS(1639), + [sym_string_start] = ACTIONS(1639), }, [531] = { - [sym_identifier] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_import] = ACTIONS(1679), - [anon_sym_cimport] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1679), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_print] = ACTIONS(1679), - [anon_sym_assert] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1679), - [anon_sym_del] = ACTIONS(1679), - [anon_sym_raise] = ACTIONS(1679), - [anon_sym_pass] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1679), - [anon_sym_async] = ACTIONS(1679), - [anon_sym_for] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_try] = ACTIONS(1679), - [anon_sym_with] = ACTIONS(1679), - [anon_sym_def] = ACTIONS(1679), - [anon_sym_global] = ACTIONS(1679), - [anon_sym_nonlocal] = ACTIONS(1679), - [anon_sym_exec] = ACTIONS(1679), - [anon_sym_type] = ACTIONS(1679), - [anon_sym_class] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1681), - [anon_sym_AT] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_not] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_lambda] = ACTIONS(1679), - [anon_sym_yield] = ACTIONS(1679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1681), - [anon_sym_None] = ACTIONS(1679), - [sym_integer] = ACTIONS(1679), - [sym_float] = ACTIONS(1681), - [anon_sym_await] = ACTIONS(1679), - [anon_sym_api] = ACTIONS(1679), - [sym_true] = ACTIONS(1679), - [sym_false] = ACTIONS(1679), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1679), - [anon_sym_include] = ACTIONS(1679), - [anon_sym_DEF] = ACTIONS(1679), - [anon_sym_cdef] = ACTIONS(1679), - [anon_sym_cpdef] = ACTIONS(1679), - [anon_sym_int] = ACTIONS(1679), - [anon_sym_double] = ACTIONS(1679), - [anon_sym_complex] = ACTIONS(1679), - [anon_sym_new] = ACTIONS(1679), - [anon_sym_signed] = ACTIONS(1679), - [anon_sym_unsigned] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_short] = ACTIONS(1679), - [anon_sym_long] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1679), - [anon_sym_volatile] = ACTIONS(1679), - [anon_sym_ctypedef] = ACTIONS(1679), - [anon_sym_struct] = ACTIONS(1679), - [anon_sym_union] = ACTIONS(1679), - [anon_sym_enum] = ACTIONS(1679), - [anon_sym_cppclass] = ACTIONS(1679), - [anon_sym_fused] = ACTIONS(1679), - [anon_sym_public] = ACTIONS(1679), - [anon_sym_packed] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1679), - [anon_sym_readonly] = ACTIONS(1679), - [anon_sym_sizeof] = ACTIONS(1679), - [sym__dedent] = ACTIONS(1681), - [sym_string_start] = ACTIONS(1681), + [sym_identifier] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_import] = ACTIONS(1641), + [anon_sym_cimport] = ACTIONS(1641), + [anon_sym_from] = ACTIONS(1641), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_print] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_del] = ACTIONS(1641), + [anon_sym_raise] = ACTIONS(1641), + [anon_sym_pass] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_match] = ACTIONS(1641), + [anon_sym_async] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_try] = ACTIONS(1641), + [anon_sym_with] = ACTIONS(1641), + [anon_sym_def] = ACTIONS(1641), + [anon_sym_global] = ACTIONS(1641), + [anon_sym_nonlocal] = ACTIONS(1641), + [anon_sym_exec] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_class] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1643), + [anon_sym_AT] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_not] = ACTIONS(1641), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(1643), + [anon_sym_lambda] = ACTIONS(1641), + [anon_sym_yield] = ACTIONS(1641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1643), + [anon_sym_None] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1643), + [anon_sym_await] = ACTIONS(1641), + [anon_sym_api] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1641), + [anon_sym_include] = ACTIONS(1641), + [anon_sym_DEF] = ACTIONS(1641), + [anon_sym_cdef] = ACTIONS(1641), + [anon_sym_cpdef] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_complex] = ACTIONS(1641), + [anon_sym_new] = ACTIONS(1641), + [anon_sym_signed] = ACTIONS(1641), + [anon_sym_unsigned] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_volatile] = ACTIONS(1641), + [anon_sym_ctypedef] = ACTIONS(1641), + [anon_sym_struct] = ACTIONS(1641), + [anon_sym_union] = ACTIONS(1641), + [anon_sym_enum] = ACTIONS(1641), + [anon_sym_cppclass] = ACTIONS(1641), + [anon_sym_fused] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_packed] = ACTIONS(1641), + [anon_sym_inline] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_sizeof] = ACTIONS(1641), + [sym__dedent] = ACTIONS(1643), + [sym_string_start] = ACTIONS(1643), }, [532] = { - [sym_identifier] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_import] = ACTIONS(1683), - [anon_sym_cimport] = ACTIONS(1683), - [anon_sym_from] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_print] = ACTIONS(1683), - [anon_sym_assert] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_del] = ACTIONS(1683), - [anon_sym_raise] = ACTIONS(1683), - [anon_sym_pass] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_match] = ACTIONS(1683), - [anon_sym_async] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_try] = ACTIONS(1683), - [anon_sym_with] = ACTIONS(1683), - [anon_sym_def] = ACTIONS(1683), - [anon_sym_global] = ACTIONS(1683), - [anon_sym_nonlocal] = ACTIONS(1683), - [anon_sym_exec] = ACTIONS(1683), - [anon_sym_type] = ACTIONS(1683), - [anon_sym_class] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1685), - [anon_sym_AT] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_not] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_TILDE] = ACTIONS(1685), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_lambda] = ACTIONS(1683), - [anon_sym_yield] = ACTIONS(1683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1685), - [anon_sym_None] = ACTIONS(1683), - [sym_integer] = ACTIONS(1683), - [sym_float] = ACTIONS(1685), - [anon_sym_await] = ACTIONS(1683), - [anon_sym_api] = ACTIONS(1683), - [sym_true] = ACTIONS(1683), - [sym_false] = ACTIONS(1683), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1683), - [anon_sym_include] = ACTIONS(1683), - [anon_sym_DEF] = ACTIONS(1683), - [anon_sym_cdef] = ACTIONS(1683), - [anon_sym_cpdef] = ACTIONS(1683), - [anon_sym_int] = ACTIONS(1683), - [anon_sym_double] = ACTIONS(1683), - [anon_sym_complex] = ACTIONS(1683), - [anon_sym_new] = ACTIONS(1683), - [anon_sym_signed] = ACTIONS(1683), - [anon_sym_unsigned] = ACTIONS(1683), - [anon_sym_char] = ACTIONS(1683), - [anon_sym_short] = ACTIONS(1683), - [anon_sym_long] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_volatile] = ACTIONS(1683), - [anon_sym_ctypedef] = ACTIONS(1683), - [anon_sym_struct] = ACTIONS(1683), - [anon_sym_union] = ACTIONS(1683), - [anon_sym_enum] = ACTIONS(1683), - [anon_sym_cppclass] = ACTIONS(1683), - [anon_sym_fused] = ACTIONS(1683), - [anon_sym_public] = ACTIONS(1683), - [anon_sym_packed] = ACTIONS(1683), - [anon_sym_inline] = ACTIONS(1683), - [anon_sym_readonly] = ACTIONS(1683), - [anon_sym_sizeof] = ACTIONS(1683), - [sym__dedent] = ACTIONS(1685), - [sym_string_start] = ACTIONS(1685), + [sym_identifier] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(1645), + [anon_sym_cimport] = ACTIONS(1645), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_print] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_del] = ACTIONS(1645), + [anon_sym_raise] = ACTIONS(1645), + [anon_sym_pass] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1645), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1645), + [anon_sym_with] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1645), + [anon_sym_global] = ACTIONS(1645), + [anon_sym_nonlocal] = ACTIONS(1645), + [anon_sym_exec] = ACTIONS(1645), + [anon_sym_type] = ACTIONS(1645), + [anon_sym_class] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1647), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_not] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(1647), + [anon_sym_lambda] = ACTIONS(1645), + [anon_sym_yield] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1647), + [anon_sym_None] = ACTIONS(1645), + [sym_integer] = ACTIONS(1645), + [sym_float] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(1645), + [anon_sym_api] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1645), + [anon_sym_include] = ACTIONS(1645), + [anon_sym_DEF] = ACTIONS(1645), + [anon_sym_cdef] = ACTIONS(1645), + [anon_sym_cpdef] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_complex] = ACTIONS(1645), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_signed] = ACTIONS(1645), + [anon_sym_unsigned] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_volatile] = ACTIONS(1645), + [anon_sym_ctypedef] = ACTIONS(1645), + [anon_sym_struct] = ACTIONS(1645), + [anon_sym_union] = ACTIONS(1645), + [anon_sym_enum] = ACTIONS(1645), + [anon_sym_cppclass] = ACTIONS(1645), + [anon_sym_fused] = ACTIONS(1645), + [anon_sym_public] = ACTIONS(1645), + [anon_sym_packed] = ACTIONS(1645), + [anon_sym_inline] = ACTIONS(1645), + [anon_sym_readonly] = ACTIONS(1645), + [anon_sym_sizeof] = ACTIONS(1645), + [sym__dedent] = ACTIONS(1647), + [sym_string_start] = ACTIONS(1647), }, [533] = { - [sym_identifier] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_import] = ACTIONS(1679), - [anon_sym_cimport] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1679), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_print] = ACTIONS(1679), - [anon_sym_assert] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1679), - [anon_sym_del] = ACTIONS(1679), - [anon_sym_raise] = ACTIONS(1679), - [anon_sym_pass] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1679), - [anon_sym_async] = ACTIONS(1679), - [anon_sym_for] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_try] = ACTIONS(1679), - [anon_sym_with] = ACTIONS(1679), - [anon_sym_def] = ACTIONS(1679), - [anon_sym_global] = ACTIONS(1679), - [anon_sym_nonlocal] = ACTIONS(1679), - [anon_sym_exec] = ACTIONS(1679), - [anon_sym_type] = ACTIONS(1679), - [anon_sym_class] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1681), - [anon_sym_AT] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_not] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_lambda] = ACTIONS(1679), - [anon_sym_yield] = ACTIONS(1679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1681), - [anon_sym_None] = ACTIONS(1679), - [sym_integer] = ACTIONS(1679), - [sym_float] = ACTIONS(1681), - [anon_sym_await] = ACTIONS(1679), - [anon_sym_api] = ACTIONS(1679), - [sym_true] = ACTIONS(1679), - [sym_false] = ACTIONS(1679), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1679), - [anon_sym_include] = ACTIONS(1679), - [anon_sym_DEF] = ACTIONS(1679), - [anon_sym_cdef] = ACTIONS(1679), - [anon_sym_cpdef] = ACTIONS(1679), - [anon_sym_int] = ACTIONS(1679), - [anon_sym_double] = ACTIONS(1679), - [anon_sym_complex] = ACTIONS(1679), - [anon_sym_new] = ACTIONS(1679), - [anon_sym_signed] = ACTIONS(1679), - [anon_sym_unsigned] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_short] = ACTIONS(1679), - [anon_sym_long] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1679), - [anon_sym_volatile] = ACTIONS(1679), - [anon_sym_ctypedef] = ACTIONS(1679), - [anon_sym_struct] = ACTIONS(1679), - [anon_sym_union] = ACTIONS(1679), - [anon_sym_enum] = ACTIONS(1679), - [anon_sym_cppclass] = ACTIONS(1679), - [anon_sym_fused] = ACTIONS(1679), - [anon_sym_public] = ACTIONS(1679), - [anon_sym_packed] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1679), - [anon_sym_readonly] = ACTIONS(1679), - [anon_sym_sizeof] = ACTIONS(1679), - [sym__dedent] = ACTIONS(1681), - [sym_string_start] = ACTIONS(1681), + [sym_identifier] = ACTIONS(1649), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_import] = ACTIONS(1649), + [anon_sym_cimport] = ACTIONS(1649), + [anon_sym_from] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_print] = ACTIONS(1649), + [anon_sym_assert] = ACTIONS(1649), + [anon_sym_return] = ACTIONS(1649), + [anon_sym_del] = ACTIONS(1649), + [anon_sym_raise] = ACTIONS(1649), + [anon_sym_pass] = ACTIONS(1649), + [anon_sym_break] = ACTIONS(1649), + [anon_sym_continue] = ACTIONS(1649), + [anon_sym_if] = ACTIONS(1649), + [anon_sym_match] = ACTIONS(1649), + [anon_sym_async] = ACTIONS(1649), + [anon_sym_for] = ACTIONS(1649), + [anon_sym_while] = ACTIONS(1649), + [anon_sym_try] = ACTIONS(1649), + [anon_sym_with] = ACTIONS(1649), + [anon_sym_def] = ACTIONS(1649), + [anon_sym_global] = ACTIONS(1649), + [anon_sym_nonlocal] = ACTIONS(1649), + [anon_sym_exec] = ACTIONS(1649), + [anon_sym_type] = ACTIONS(1649), + [anon_sym_class] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_AT] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_TILDE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(1651), + [anon_sym_lambda] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1651), + [anon_sym_None] = ACTIONS(1649), + [sym_integer] = ACTIONS(1649), + [sym_float] = ACTIONS(1651), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_api] = ACTIONS(1649), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1649), + [anon_sym_include] = ACTIONS(1649), + [anon_sym_DEF] = ACTIONS(1649), + [anon_sym_cdef] = ACTIONS(1649), + [anon_sym_cpdef] = ACTIONS(1649), + [anon_sym_int] = ACTIONS(1649), + [anon_sym_double] = ACTIONS(1649), + [anon_sym_complex] = ACTIONS(1649), + [anon_sym_new] = ACTIONS(1649), + [anon_sym_signed] = ACTIONS(1649), + [anon_sym_unsigned] = ACTIONS(1649), + [anon_sym_char] = ACTIONS(1649), + [anon_sym_short] = ACTIONS(1649), + [anon_sym_long] = ACTIONS(1649), + [anon_sym_const] = ACTIONS(1649), + [anon_sym_volatile] = ACTIONS(1649), + [anon_sym_ctypedef] = ACTIONS(1649), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_union] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1649), + [anon_sym_cppclass] = ACTIONS(1649), + [anon_sym_fused] = ACTIONS(1649), + [anon_sym_public] = ACTIONS(1649), + [anon_sym_packed] = ACTIONS(1649), + [anon_sym_inline] = ACTIONS(1649), + [anon_sym_readonly] = ACTIONS(1649), + [anon_sym_sizeof] = ACTIONS(1649), + [sym__dedent] = ACTIONS(1651), + [sym_string_start] = ACTIONS(1651), }, [534] = { - [sym_identifier] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_import] = ACTIONS(1679), - [anon_sym_cimport] = ACTIONS(1679), - [anon_sym_from] = ACTIONS(1679), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_print] = ACTIONS(1679), - [anon_sym_assert] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1679), - [anon_sym_del] = ACTIONS(1679), - [anon_sym_raise] = ACTIONS(1679), - [anon_sym_pass] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1679), - [anon_sym_async] = ACTIONS(1679), - [anon_sym_for] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_try] = ACTIONS(1679), - [anon_sym_with] = ACTIONS(1679), - [anon_sym_def] = ACTIONS(1679), - [anon_sym_global] = ACTIONS(1679), - [anon_sym_nonlocal] = ACTIONS(1679), - [anon_sym_exec] = ACTIONS(1679), - [anon_sym_type] = ACTIONS(1679), - [anon_sym_class] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1681), - [anon_sym_AT] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_not] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1681), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_lambda] = ACTIONS(1679), - [anon_sym_yield] = ACTIONS(1679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1681), - [anon_sym_None] = ACTIONS(1679), - [sym_integer] = ACTIONS(1679), - [sym_float] = ACTIONS(1681), - [anon_sym_await] = ACTIONS(1679), - [anon_sym_api] = ACTIONS(1679), - [sym_true] = ACTIONS(1679), - [sym_false] = ACTIONS(1679), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1679), - [anon_sym_include] = ACTIONS(1679), - [anon_sym_DEF] = ACTIONS(1679), - [anon_sym_cdef] = ACTIONS(1679), - [anon_sym_cpdef] = ACTIONS(1679), - [anon_sym_int] = ACTIONS(1679), - [anon_sym_double] = ACTIONS(1679), - [anon_sym_complex] = ACTIONS(1679), - [anon_sym_new] = ACTIONS(1679), - [anon_sym_signed] = ACTIONS(1679), - [anon_sym_unsigned] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_short] = ACTIONS(1679), - [anon_sym_long] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1679), - [anon_sym_volatile] = ACTIONS(1679), - [anon_sym_ctypedef] = ACTIONS(1679), - [anon_sym_struct] = ACTIONS(1679), - [anon_sym_union] = ACTIONS(1679), - [anon_sym_enum] = ACTIONS(1679), - [anon_sym_cppclass] = ACTIONS(1679), - [anon_sym_fused] = ACTIONS(1679), - [anon_sym_public] = ACTIONS(1679), - [anon_sym_packed] = ACTIONS(1679), - [anon_sym_inline] = ACTIONS(1679), - [anon_sym_readonly] = ACTIONS(1679), - [anon_sym_sizeof] = ACTIONS(1679), - [sym__dedent] = ACTIONS(1681), - [sym_string_start] = ACTIONS(1681), + [sym_identifier] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1653), + [anon_sym_cimport] = ACTIONS(1653), + [anon_sym_from] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_print] = ACTIONS(1653), + [anon_sym_assert] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_del] = ACTIONS(1653), + [anon_sym_raise] = ACTIONS(1653), + [anon_sym_pass] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_match] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_try] = ACTIONS(1653), + [anon_sym_with] = ACTIONS(1653), + [anon_sym_def] = ACTIONS(1653), + [anon_sym_global] = ACTIONS(1653), + [anon_sym_nonlocal] = ACTIONS(1653), + [anon_sym_exec] = ACTIONS(1653), + [anon_sym_type] = ACTIONS(1653), + [anon_sym_class] = ACTIONS(1653), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_not] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_lambda] = ACTIONS(1653), + [anon_sym_yield] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1655), + [anon_sym_None] = ACTIONS(1653), + [sym_integer] = ACTIONS(1653), + [sym_float] = ACTIONS(1655), + [anon_sym_await] = ACTIONS(1653), + [anon_sym_api] = ACTIONS(1653), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1653), + [anon_sym_include] = ACTIONS(1653), + [anon_sym_DEF] = ACTIONS(1653), + [anon_sym_cdef] = ACTIONS(1653), + [anon_sym_cpdef] = ACTIONS(1653), + [anon_sym_int] = ACTIONS(1653), + [anon_sym_double] = ACTIONS(1653), + [anon_sym_complex] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_char] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_ctypedef] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_cppclass] = ACTIONS(1653), + [anon_sym_fused] = ACTIONS(1653), + [anon_sym_public] = ACTIONS(1653), + [anon_sym_packed] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [anon_sym_readonly] = ACTIONS(1653), + [anon_sym_sizeof] = ACTIONS(1653), + [sym__dedent] = ACTIONS(1655), + [sym_string_start] = ACTIONS(1655), }, [535] = { - [sym_identifier] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_import] = ACTIONS(1687), - [anon_sym_cimport] = ACTIONS(1687), - [anon_sym_from] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_print] = ACTIONS(1687), - [anon_sym_assert] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_del] = ACTIONS(1687), - [anon_sym_raise] = ACTIONS(1687), - [anon_sym_pass] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_async] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_try] = ACTIONS(1687), - [anon_sym_with] = ACTIONS(1687), - [anon_sym_def] = ACTIONS(1687), - [anon_sym_global] = ACTIONS(1687), - [anon_sym_nonlocal] = ACTIONS(1687), - [anon_sym_exec] = ACTIONS(1687), - [anon_sym_type] = ACTIONS(1687), - [anon_sym_class] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1689), - [anon_sym_AT] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_not] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_lambda] = ACTIONS(1687), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1689), - [anon_sym_None] = ACTIONS(1687), - [sym_integer] = ACTIONS(1687), - [sym_float] = ACTIONS(1689), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_api] = ACTIONS(1687), - [sym_true] = ACTIONS(1687), - [sym_false] = ACTIONS(1687), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1687), - [anon_sym_include] = ACTIONS(1687), - [anon_sym_DEF] = ACTIONS(1687), - [anon_sym_cdef] = ACTIONS(1687), - [anon_sym_cpdef] = ACTIONS(1687), - [anon_sym_int] = ACTIONS(1687), - [anon_sym_double] = ACTIONS(1687), - [anon_sym_complex] = ACTIONS(1687), - [anon_sym_new] = ACTIONS(1687), - [anon_sym_signed] = ACTIONS(1687), - [anon_sym_unsigned] = ACTIONS(1687), - [anon_sym_char] = ACTIONS(1687), - [anon_sym_short] = ACTIONS(1687), - [anon_sym_long] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_volatile] = ACTIONS(1687), - [anon_sym_ctypedef] = ACTIONS(1687), - [anon_sym_struct] = ACTIONS(1687), - [anon_sym_union] = ACTIONS(1687), - [anon_sym_enum] = ACTIONS(1687), - [anon_sym_cppclass] = ACTIONS(1687), - [anon_sym_fused] = ACTIONS(1687), - [anon_sym_public] = ACTIONS(1687), - [anon_sym_packed] = ACTIONS(1687), - [anon_sym_inline] = ACTIONS(1687), - [anon_sym_readonly] = ACTIONS(1687), - [anon_sym_sizeof] = ACTIONS(1687), - [sym__dedent] = ACTIONS(1689), - [sym_string_start] = ACTIONS(1689), + [sym_identifier] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_import] = ACTIONS(1657), + [anon_sym_cimport] = ACTIONS(1657), + [anon_sym_from] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_print] = ACTIONS(1657), + [anon_sym_assert] = ACTIONS(1657), + [anon_sym_return] = ACTIONS(1657), + [anon_sym_del] = ACTIONS(1657), + [anon_sym_raise] = ACTIONS(1657), + [anon_sym_pass] = ACTIONS(1657), + [anon_sym_break] = ACTIONS(1657), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_if] = ACTIONS(1657), + [anon_sym_match] = ACTIONS(1657), + [anon_sym_async] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1657), + [anon_sym_while] = ACTIONS(1657), + [anon_sym_try] = ACTIONS(1657), + [anon_sym_with] = ACTIONS(1657), + [anon_sym_def] = ACTIONS(1657), + [anon_sym_global] = ACTIONS(1657), + [anon_sym_nonlocal] = ACTIONS(1657), + [anon_sym_exec] = ACTIONS(1657), + [anon_sym_type] = ACTIONS(1657), + [anon_sym_class] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_AT] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_not] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_lambda] = ACTIONS(1657), + [anon_sym_yield] = ACTIONS(1657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1659), + [anon_sym_None] = ACTIONS(1657), + [sym_integer] = ACTIONS(1657), + [sym_float] = ACTIONS(1659), + [anon_sym_await] = ACTIONS(1657), + [anon_sym_api] = ACTIONS(1657), + [sym_true] = ACTIONS(1657), + [sym_false] = ACTIONS(1657), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1657), + [anon_sym_include] = ACTIONS(1657), + [anon_sym_DEF] = ACTIONS(1657), + [anon_sym_cdef] = ACTIONS(1657), + [anon_sym_cpdef] = ACTIONS(1657), + [anon_sym_int] = ACTIONS(1657), + [anon_sym_double] = ACTIONS(1657), + [anon_sym_complex] = ACTIONS(1657), + [anon_sym_new] = ACTIONS(1657), + [anon_sym_signed] = ACTIONS(1657), + [anon_sym_unsigned] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_short] = ACTIONS(1657), + [anon_sym_long] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1657), + [anon_sym_volatile] = ACTIONS(1657), + [anon_sym_ctypedef] = ACTIONS(1657), + [anon_sym_struct] = ACTIONS(1657), + [anon_sym_union] = ACTIONS(1657), + [anon_sym_enum] = ACTIONS(1657), + [anon_sym_cppclass] = ACTIONS(1657), + [anon_sym_fused] = ACTIONS(1657), + [anon_sym_public] = ACTIONS(1657), + [anon_sym_packed] = ACTIONS(1657), + [anon_sym_inline] = ACTIONS(1657), + [anon_sym_readonly] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1657), + [sym__dedent] = ACTIONS(1659), + [sym_string_start] = ACTIONS(1659), }, [536] = { - [sym_identifier] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_import] = ACTIONS(1691), - [anon_sym_cimport] = ACTIONS(1691), - [anon_sym_from] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_STAR] = ACTIONS(1693), - [anon_sym_print] = ACTIONS(1691), - [anon_sym_assert] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_del] = ACTIONS(1691), - [anon_sym_raise] = ACTIONS(1691), - [anon_sym_pass] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_match] = ACTIONS(1691), - [anon_sym_async] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_with] = ACTIONS(1691), - [anon_sym_def] = ACTIONS(1691), - [anon_sym_global] = ACTIONS(1691), - [anon_sym_nonlocal] = ACTIONS(1691), - [anon_sym_exec] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_class] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_AT] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1693), - [anon_sym_not] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_TILDE] = ACTIONS(1693), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_lambda] = ACTIONS(1691), - [anon_sym_yield] = ACTIONS(1691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1693), - [anon_sym_None] = ACTIONS(1691), - [sym_integer] = ACTIONS(1691), - [sym_float] = ACTIONS(1693), - [anon_sym_await] = ACTIONS(1691), - [anon_sym_api] = ACTIONS(1691), - [sym_true] = ACTIONS(1691), - [sym_false] = ACTIONS(1691), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1691), - [anon_sym_include] = ACTIONS(1691), - [anon_sym_DEF] = ACTIONS(1691), - [anon_sym_cdef] = ACTIONS(1691), - [anon_sym_cpdef] = ACTIONS(1691), - [anon_sym_int] = ACTIONS(1691), - [anon_sym_double] = ACTIONS(1691), - [anon_sym_complex] = ACTIONS(1691), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_signed] = ACTIONS(1691), - [anon_sym_unsigned] = ACTIONS(1691), - [anon_sym_char] = ACTIONS(1691), - [anon_sym_short] = ACTIONS(1691), - [anon_sym_long] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_volatile] = ACTIONS(1691), - [anon_sym_ctypedef] = ACTIONS(1691), - [anon_sym_struct] = ACTIONS(1691), - [anon_sym_union] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [anon_sym_cppclass] = ACTIONS(1691), - [anon_sym_fused] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_packed] = ACTIONS(1691), - [anon_sym_inline] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_sizeof] = ACTIONS(1691), - [sym__dedent] = ACTIONS(1693), - [sym_string_start] = ACTIONS(1693), + [sym_identifier] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_import] = ACTIONS(1661), + [anon_sym_cimport] = ACTIONS(1661), + [anon_sym_from] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_print] = ACTIONS(1661), + [anon_sym_assert] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_del] = ACTIONS(1661), + [anon_sym_raise] = ACTIONS(1661), + [anon_sym_pass] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_match] = ACTIONS(1661), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1661), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_def] = ACTIONS(1661), + [anon_sym_global] = ACTIONS(1661), + [anon_sym_nonlocal] = ACTIONS(1661), + [anon_sym_exec] = ACTIONS(1661), + [anon_sym_type] = ACTIONS(1661), + [anon_sym_class] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1663), + [anon_sym_AT] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_not] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_lambda] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1663), + [anon_sym_None] = ACTIONS(1661), + [sym_integer] = ACTIONS(1661), + [sym_float] = ACTIONS(1663), + [anon_sym_await] = ACTIONS(1661), + [anon_sym_api] = ACTIONS(1661), + [sym_true] = ACTIONS(1661), + [sym_false] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1661), + [anon_sym_include] = ACTIONS(1661), + [anon_sym_DEF] = ACTIONS(1661), + [anon_sym_cdef] = ACTIONS(1661), + [anon_sym_cpdef] = ACTIONS(1661), + [anon_sym_int] = ACTIONS(1661), + [anon_sym_double] = ACTIONS(1661), + [anon_sym_complex] = ACTIONS(1661), + [anon_sym_new] = ACTIONS(1661), + [anon_sym_signed] = ACTIONS(1661), + [anon_sym_unsigned] = ACTIONS(1661), + [anon_sym_char] = ACTIONS(1661), + [anon_sym_short] = ACTIONS(1661), + [anon_sym_long] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_volatile] = ACTIONS(1661), + [anon_sym_ctypedef] = ACTIONS(1661), + [anon_sym_struct] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [anon_sym_cppclass] = ACTIONS(1661), + [anon_sym_fused] = ACTIONS(1661), + [anon_sym_public] = ACTIONS(1661), + [anon_sym_packed] = ACTIONS(1661), + [anon_sym_inline] = ACTIONS(1661), + [anon_sym_readonly] = ACTIONS(1661), + [anon_sym_sizeof] = ACTIONS(1661), + [sym__dedent] = ACTIONS(1663), + [sym_string_start] = ACTIONS(1663), }, [537] = { - [sym_identifier] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(1695), - [anon_sym_cimport] = ACTIONS(1695), - [anon_sym_from] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_print] = ACTIONS(1695), - [anon_sym_assert] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_del] = ACTIONS(1695), - [anon_sym_raise] = ACTIONS(1695), - [anon_sym_pass] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_match] = ACTIONS(1695), - [anon_sym_async] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_try] = ACTIONS(1695), - [anon_sym_with] = ACTIONS(1695), - [anon_sym_def] = ACTIONS(1695), - [anon_sym_global] = ACTIONS(1695), - [anon_sym_nonlocal] = ACTIONS(1695), - [anon_sym_exec] = ACTIONS(1695), - [anon_sym_type] = ACTIONS(1695), - [anon_sym_class] = ACTIONS(1695), - [anon_sym_LBRACK] = ACTIONS(1697), - [anon_sym_AT] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_not] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_lambda] = ACTIONS(1695), - [anon_sym_yield] = ACTIONS(1695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1697), - [anon_sym_None] = ACTIONS(1695), - [sym_integer] = ACTIONS(1695), - [sym_float] = ACTIONS(1697), - [anon_sym_await] = ACTIONS(1695), - [anon_sym_api] = ACTIONS(1695), - [sym_true] = ACTIONS(1695), - [sym_false] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1695), - [anon_sym_include] = ACTIONS(1695), - [anon_sym_DEF] = ACTIONS(1695), - [anon_sym_cdef] = ACTIONS(1695), - [anon_sym_cpdef] = ACTIONS(1695), - [anon_sym_int] = ACTIONS(1695), - [anon_sym_double] = ACTIONS(1695), - [anon_sym_complex] = ACTIONS(1695), - [anon_sym_new] = ACTIONS(1695), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_char] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [anon_sym_volatile] = ACTIONS(1695), - [anon_sym_ctypedef] = ACTIONS(1695), - [anon_sym_struct] = ACTIONS(1695), - [anon_sym_union] = ACTIONS(1695), - [anon_sym_enum] = ACTIONS(1695), - [anon_sym_cppclass] = ACTIONS(1695), - [anon_sym_fused] = ACTIONS(1695), - [anon_sym_public] = ACTIONS(1695), - [anon_sym_packed] = ACTIONS(1695), - [anon_sym_inline] = ACTIONS(1695), - [anon_sym_readonly] = ACTIONS(1695), - [anon_sym_sizeof] = ACTIONS(1695), - [sym__dedent] = ACTIONS(1697), - [sym_string_start] = ACTIONS(1697), + [sym_identifier] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1665), + [anon_sym_cimport] = ACTIONS(1665), + [anon_sym_from] = ACTIONS(1665), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_print] = ACTIONS(1665), + [anon_sym_assert] = ACTIONS(1665), + [anon_sym_return] = ACTIONS(1665), + [anon_sym_del] = ACTIONS(1665), + [anon_sym_raise] = ACTIONS(1665), + [anon_sym_pass] = ACTIONS(1665), + [anon_sym_break] = ACTIONS(1665), + [anon_sym_continue] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1665), + [anon_sym_match] = ACTIONS(1665), + [anon_sym_async] = ACTIONS(1665), + [anon_sym_for] = ACTIONS(1665), + [anon_sym_while] = ACTIONS(1665), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_with] = ACTIONS(1665), + [anon_sym_def] = ACTIONS(1665), + [anon_sym_global] = ACTIONS(1665), + [anon_sym_nonlocal] = ACTIONS(1665), + [anon_sym_exec] = ACTIONS(1665), + [anon_sym_type] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_not] = ACTIONS(1665), + [anon_sym_AMP] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_lambda] = ACTIONS(1665), + [anon_sym_yield] = ACTIONS(1665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1667), + [anon_sym_None] = ACTIONS(1665), + [sym_integer] = ACTIONS(1665), + [sym_float] = ACTIONS(1667), + [anon_sym_await] = ACTIONS(1665), + [anon_sym_api] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1665), + [anon_sym_include] = ACTIONS(1665), + [anon_sym_DEF] = ACTIONS(1665), + [anon_sym_cdef] = ACTIONS(1665), + [anon_sym_cpdef] = ACTIONS(1665), + [anon_sym_int] = ACTIONS(1665), + [anon_sym_double] = ACTIONS(1665), + [anon_sym_complex] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1665), + [anon_sym_signed] = ACTIONS(1665), + [anon_sym_unsigned] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_short] = ACTIONS(1665), + [anon_sym_long] = ACTIONS(1665), + [anon_sym_const] = ACTIONS(1665), + [anon_sym_volatile] = ACTIONS(1665), + [anon_sym_ctypedef] = ACTIONS(1665), + [anon_sym_struct] = ACTIONS(1665), + [anon_sym_union] = ACTIONS(1665), + [anon_sym_enum] = ACTIONS(1665), + [anon_sym_cppclass] = ACTIONS(1665), + [anon_sym_fused] = ACTIONS(1665), + [anon_sym_public] = ACTIONS(1665), + [anon_sym_packed] = ACTIONS(1665), + [anon_sym_inline] = ACTIONS(1665), + [anon_sym_readonly] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1665), + [sym__dedent] = ACTIONS(1667), + [sym_string_start] = ACTIONS(1667), }, [538] = { - [sym_identifier] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_import] = ACTIONS(1699), - [anon_sym_cimport] = ACTIONS(1699), - [anon_sym_from] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_print] = ACTIONS(1699), - [anon_sym_assert] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_del] = ACTIONS(1699), - [anon_sym_raise] = ACTIONS(1699), - [anon_sym_pass] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_match] = ACTIONS(1699), - [anon_sym_async] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1699), - [anon_sym_with] = ACTIONS(1699), - [anon_sym_def] = ACTIONS(1699), - [anon_sym_global] = ACTIONS(1699), - [anon_sym_nonlocal] = ACTIONS(1699), - [anon_sym_exec] = ACTIONS(1699), - [anon_sym_type] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_AT] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_not] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_lambda] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1701), - [anon_sym_None] = ACTIONS(1699), - [sym_integer] = ACTIONS(1699), - [sym_float] = ACTIONS(1701), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_api] = ACTIONS(1699), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1699), - [anon_sym_include] = ACTIONS(1699), - [anon_sym_DEF] = ACTIONS(1699), - [anon_sym_cdef] = ACTIONS(1699), - [anon_sym_cpdef] = ACTIONS(1699), - [anon_sym_int] = ACTIONS(1699), - [anon_sym_double] = ACTIONS(1699), - [anon_sym_complex] = ACTIONS(1699), - [anon_sym_new] = ACTIONS(1699), - [anon_sym_signed] = ACTIONS(1699), - [anon_sym_unsigned] = ACTIONS(1699), - [anon_sym_char] = ACTIONS(1699), - [anon_sym_short] = ACTIONS(1699), - [anon_sym_long] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_volatile] = ACTIONS(1699), - [anon_sym_ctypedef] = ACTIONS(1699), - [anon_sym_struct] = ACTIONS(1699), - [anon_sym_union] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_cppclass] = ACTIONS(1699), - [anon_sym_fused] = ACTIONS(1699), - [anon_sym_public] = ACTIONS(1699), - [anon_sym_packed] = ACTIONS(1699), - [anon_sym_inline] = ACTIONS(1699), - [anon_sym_readonly] = ACTIONS(1699), - [anon_sym_sizeof] = ACTIONS(1699), - [sym__dedent] = ACTIONS(1701), - [sym_string_start] = ACTIONS(1701), + [sym_identifier] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_import] = ACTIONS(1669), + [anon_sym_cimport] = ACTIONS(1669), + [anon_sym_from] = ACTIONS(1669), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_print] = ACTIONS(1669), + [anon_sym_assert] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_del] = ACTIONS(1669), + [anon_sym_raise] = ACTIONS(1669), + [anon_sym_pass] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_try] = ACTIONS(1669), + [anon_sym_with] = ACTIONS(1669), + [anon_sym_def] = ACTIONS(1669), + [anon_sym_global] = ACTIONS(1669), + [anon_sym_nonlocal] = ACTIONS(1669), + [anon_sym_exec] = ACTIONS(1669), + [anon_sym_type] = ACTIONS(1669), + [anon_sym_class] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_AT] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1671), + [anon_sym_not] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_lambda] = ACTIONS(1669), + [anon_sym_yield] = ACTIONS(1669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1671), + [anon_sym_None] = ACTIONS(1669), + [sym_integer] = ACTIONS(1669), + [sym_float] = ACTIONS(1671), + [anon_sym_await] = ACTIONS(1669), + [anon_sym_api] = ACTIONS(1669), + [sym_true] = ACTIONS(1669), + [sym_false] = ACTIONS(1669), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1669), + [anon_sym_include] = ACTIONS(1669), + [anon_sym_DEF] = ACTIONS(1669), + [anon_sym_cdef] = ACTIONS(1669), + [anon_sym_cpdef] = ACTIONS(1669), + [anon_sym_int] = ACTIONS(1669), + [anon_sym_double] = ACTIONS(1669), + [anon_sym_complex] = ACTIONS(1669), + [anon_sym_new] = ACTIONS(1669), + [anon_sym_signed] = ACTIONS(1669), + [anon_sym_unsigned] = ACTIONS(1669), + [anon_sym_char] = ACTIONS(1669), + [anon_sym_short] = ACTIONS(1669), + [anon_sym_long] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [anon_sym_volatile] = ACTIONS(1669), + [anon_sym_ctypedef] = ACTIONS(1669), + [anon_sym_struct] = ACTIONS(1669), + [anon_sym_union] = ACTIONS(1669), + [anon_sym_enum] = ACTIONS(1669), + [anon_sym_cppclass] = ACTIONS(1669), + [anon_sym_fused] = ACTIONS(1669), + [anon_sym_public] = ACTIONS(1669), + [anon_sym_packed] = ACTIONS(1669), + [anon_sym_inline] = ACTIONS(1669), + [anon_sym_readonly] = ACTIONS(1669), + [anon_sym_sizeof] = ACTIONS(1669), + [sym__dedent] = ACTIONS(1671), + [sym_string_start] = ACTIONS(1671), }, [539] = { - [sym_identifier] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_import] = ACTIONS(1703), - [anon_sym_cimport] = ACTIONS(1703), - [anon_sym_from] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_print] = ACTIONS(1703), - [anon_sym_assert] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_del] = ACTIONS(1703), - [anon_sym_raise] = ACTIONS(1703), - [anon_sym_pass] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_match] = ACTIONS(1703), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_try] = ACTIONS(1703), - [anon_sym_with] = ACTIONS(1703), - [anon_sym_def] = ACTIONS(1703), - [anon_sym_global] = ACTIONS(1703), - [anon_sym_nonlocal] = ACTIONS(1703), - [anon_sym_exec] = ACTIONS(1703), - [anon_sym_type] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_AT] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_not] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_lambda] = ACTIONS(1703), - [anon_sym_yield] = ACTIONS(1703), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1705), - [anon_sym_None] = ACTIONS(1703), - [sym_integer] = ACTIONS(1703), - [sym_float] = ACTIONS(1705), - [anon_sym_await] = ACTIONS(1703), - [anon_sym_api] = ACTIONS(1703), - [sym_true] = ACTIONS(1703), - [sym_false] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1703), - [anon_sym_include] = ACTIONS(1703), - [anon_sym_DEF] = ACTIONS(1703), - [anon_sym_cdef] = ACTIONS(1703), - [anon_sym_cpdef] = ACTIONS(1703), - [anon_sym_int] = ACTIONS(1703), - [anon_sym_double] = ACTIONS(1703), - [anon_sym_complex] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1703), - [anon_sym_unsigned] = ACTIONS(1703), - [anon_sym_char] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_volatile] = ACTIONS(1703), - [anon_sym_ctypedef] = ACTIONS(1703), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1703), - [anon_sym_enum] = ACTIONS(1703), - [anon_sym_cppclass] = ACTIONS(1703), - [anon_sym_fused] = ACTIONS(1703), - [anon_sym_public] = ACTIONS(1703), - [anon_sym_packed] = ACTIONS(1703), - [anon_sym_inline] = ACTIONS(1703), - [anon_sym_readonly] = ACTIONS(1703), - [anon_sym_sizeof] = ACTIONS(1703), - [sym__dedent] = ACTIONS(1705), - [sym_string_start] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_import] = ACTIONS(1673), + [anon_sym_cimport] = ACTIONS(1673), + [anon_sym_from] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_print] = ACTIONS(1673), + [anon_sym_assert] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_del] = ACTIONS(1673), + [anon_sym_raise] = ACTIONS(1673), + [anon_sym_pass] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_match] = ACTIONS(1673), + [anon_sym_async] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_with] = ACTIONS(1673), + [anon_sym_def] = ACTIONS(1673), + [anon_sym_global] = ACTIONS(1673), + [anon_sym_nonlocal] = ACTIONS(1673), + [anon_sym_exec] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1673), + [anon_sym_class] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1675), + [anon_sym_AT] = ACTIONS(1675), + [anon_sym_DASH] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_not] = ACTIONS(1673), + [anon_sym_AMP] = ACTIONS(1675), + [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(1675), + [anon_sym_lambda] = ACTIONS(1673), + [anon_sym_yield] = ACTIONS(1673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), + [anon_sym_None] = ACTIONS(1673), + [sym_integer] = ACTIONS(1673), + [sym_float] = ACTIONS(1675), + [anon_sym_await] = ACTIONS(1673), + [anon_sym_api] = ACTIONS(1673), + [sym_true] = ACTIONS(1673), + [sym_false] = ACTIONS(1673), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1673), + [anon_sym_include] = ACTIONS(1673), + [anon_sym_DEF] = ACTIONS(1673), + [anon_sym_cdef] = ACTIONS(1673), + [anon_sym_cpdef] = ACTIONS(1673), + [anon_sym_int] = ACTIONS(1673), + [anon_sym_double] = ACTIONS(1673), + [anon_sym_complex] = ACTIONS(1673), + [anon_sym_new] = ACTIONS(1673), + [anon_sym_signed] = ACTIONS(1673), + [anon_sym_unsigned] = ACTIONS(1673), + [anon_sym_char] = ACTIONS(1673), + [anon_sym_short] = ACTIONS(1673), + [anon_sym_long] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_volatile] = ACTIONS(1673), + [anon_sym_ctypedef] = ACTIONS(1673), + [anon_sym_struct] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [anon_sym_cppclass] = ACTIONS(1673), + [anon_sym_fused] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1673), + [anon_sym_packed] = ACTIONS(1673), + [anon_sym_inline] = ACTIONS(1673), + [anon_sym_readonly] = ACTIONS(1673), + [anon_sym_sizeof] = ACTIONS(1673), + [sym__dedent] = ACTIONS(1675), + [sym_string_start] = ACTIONS(1675), }, [540] = { - [sym_identifier] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_import] = ACTIONS(1707), - [anon_sym_cimport] = ACTIONS(1707), - [anon_sym_from] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_print] = ACTIONS(1707), - [anon_sym_assert] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_del] = ACTIONS(1707), - [anon_sym_raise] = ACTIONS(1707), - [anon_sym_pass] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_async] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_with] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1707), - [anon_sym_global] = ACTIONS(1707), - [anon_sym_nonlocal] = ACTIONS(1707), - [anon_sym_exec] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_AT] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_not] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_LT] = ACTIONS(1709), - [anon_sym_lambda] = ACTIONS(1707), - [anon_sym_yield] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1709), - [anon_sym_None] = ACTIONS(1707), - [sym_integer] = ACTIONS(1707), - [sym_float] = ACTIONS(1709), - [anon_sym_await] = ACTIONS(1707), - [anon_sym_api] = ACTIONS(1707), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1707), - [anon_sym_include] = ACTIONS(1707), - [anon_sym_DEF] = ACTIONS(1707), - [anon_sym_cdef] = ACTIONS(1707), - [anon_sym_cpdef] = ACTIONS(1707), - [anon_sym_int] = ACTIONS(1707), - [anon_sym_double] = ACTIONS(1707), - [anon_sym_complex] = ACTIONS(1707), - [anon_sym_new] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_char] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_ctypedef] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_cppclass] = ACTIONS(1707), - [anon_sym_fused] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_packed] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_readonly] = ACTIONS(1707), - [anon_sym_sizeof] = ACTIONS(1707), - [sym__dedent] = ACTIONS(1709), - [sym_string_start] = ACTIONS(1709), + [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(1711), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_import] = ACTIONS(1711), - [anon_sym_cimport] = ACTIONS(1711), - [anon_sym_from] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1713), - [anon_sym_print] = ACTIONS(1711), - [anon_sym_assert] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_del] = ACTIONS(1711), - [anon_sym_raise] = ACTIONS(1711), - [anon_sym_pass] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_async] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_with] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_global] = ACTIONS(1711), - [anon_sym_nonlocal] = ACTIONS(1711), - [anon_sym_exec] = ACTIONS(1711), - [anon_sym_type] = ACTIONS(1711), - [anon_sym_class] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_AT] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_not] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1713), - [anon_sym_LT] = ACTIONS(1713), - [anon_sym_lambda] = ACTIONS(1711), - [anon_sym_yield] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1713), - [anon_sym_None] = ACTIONS(1711), - [sym_integer] = ACTIONS(1711), - [sym_float] = ACTIONS(1713), - [anon_sym_await] = ACTIONS(1711), - [anon_sym_api] = ACTIONS(1711), - [sym_true] = ACTIONS(1711), - [sym_false] = ACTIONS(1711), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1711), - [anon_sym_include] = ACTIONS(1711), - [anon_sym_DEF] = ACTIONS(1711), - [anon_sym_cdef] = ACTIONS(1711), - [anon_sym_cpdef] = ACTIONS(1711), - [anon_sym_int] = ACTIONS(1711), - [anon_sym_double] = ACTIONS(1711), - [anon_sym_complex] = ACTIONS(1711), - [anon_sym_new] = ACTIONS(1711), - [anon_sym_signed] = ACTIONS(1711), - [anon_sym_unsigned] = ACTIONS(1711), - [anon_sym_char] = ACTIONS(1711), - [anon_sym_short] = ACTIONS(1711), - [anon_sym_long] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_volatile] = ACTIONS(1711), - [anon_sym_ctypedef] = ACTIONS(1711), - [anon_sym_struct] = ACTIONS(1711), - [anon_sym_union] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [anon_sym_cppclass] = ACTIONS(1711), - [anon_sym_fused] = ACTIONS(1711), - [anon_sym_public] = ACTIONS(1711), - [anon_sym_packed] = ACTIONS(1711), - [anon_sym_inline] = ACTIONS(1711), - [anon_sym_readonly] = ACTIONS(1711), - [anon_sym_sizeof] = ACTIONS(1711), - [sym__dedent] = ACTIONS(1713), - [sym_string_start] = ACTIONS(1713), + [sym_identifier] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(1681), + [anon_sym_cimport] = ACTIONS(1681), + [anon_sym_from] = ACTIONS(1681), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_print] = ACTIONS(1681), + [anon_sym_assert] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_del] = ACTIONS(1681), + [anon_sym_raise] = ACTIONS(1681), + [anon_sym_pass] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_match] = ACTIONS(1681), + [anon_sym_async] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_try] = ACTIONS(1681), + [anon_sym_with] = ACTIONS(1681), + [anon_sym_def] = ACTIONS(1681), + [anon_sym_global] = ACTIONS(1681), + [anon_sym_nonlocal] = ACTIONS(1681), + [anon_sym_exec] = ACTIONS(1681), + [anon_sym_type] = ACTIONS(1681), + [anon_sym_class] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_AT] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_not] = ACTIONS(1681), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(1683), + [anon_sym_lambda] = ACTIONS(1681), + [anon_sym_yield] = ACTIONS(1681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1683), + [anon_sym_None] = ACTIONS(1681), + [sym_integer] = ACTIONS(1681), + [sym_float] = ACTIONS(1683), + [anon_sym_await] = ACTIONS(1681), + [anon_sym_api] = ACTIONS(1681), + [sym_true] = ACTIONS(1681), + [sym_false] = ACTIONS(1681), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1681), + [anon_sym_include] = ACTIONS(1681), + [anon_sym_DEF] = ACTIONS(1681), + [anon_sym_cdef] = ACTIONS(1681), + [anon_sym_cpdef] = ACTIONS(1681), + [anon_sym_int] = ACTIONS(1681), + [anon_sym_double] = ACTIONS(1681), + [anon_sym_complex] = ACTIONS(1681), + [anon_sym_new] = ACTIONS(1681), + [anon_sym_signed] = ACTIONS(1681), + [anon_sym_unsigned] = ACTIONS(1681), + [anon_sym_char] = ACTIONS(1681), + [anon_sym_short] = ACTIONS(1681), + [anon_sym_long] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [anon_sym_volatile] = ACTIONS(1681), + [anon_sym_ctypedef] = ACTIONS(1681), + [anon_sym_struct] = ACTIONS(1681), + [anon_sym_union] = ACTIONS(1681), + [anon_sym_enum] = ACTIONS(1681), + [anon_sym_cppclass] = ACTIONS(1681), + [anon_sym_fused] = ACTIONS(1681), + [anon_sym_public] = ACTIONS(1681), + [anon_sym_packed] = ACTIONS(1681), + [anon_sym_inline] = ACTIONS(1681), + [anon_sym_readonly] = ACTIONS(1681), + [anon_sym_sizeof] = ACTIONS(1681), + [sym__dedent] = ACTIONS(1683), + [sym_string_start] = ACTIONS(1683), }, [542] = { - [sym_identifier] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_import] = ACTIONS(1715), - [anon_sym_cimport] = ACTIONS(1715), - [anon_sym_from] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_print] = ACTIONS(1715), - [anon_sym_assert] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_del] = ACTIONS(1715), - [anon_sym_raise] = ACTIONS(1715), - [anon_sym_pass] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_async] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_with] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_global] = ACTIONS(1715), - [anon_sym_nonlocal] = ACTIONS(1715), - [anon_sym_exec] = ACTIONS(1715), - [anon_sym_type] = ACTIONS(1715), - [anon_sym_class] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_not] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1717), - [anon_sym_lambda] = ACTIONS(1715), - [anon_sym_yield] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), - [anon_sym_None] = ACTIONS(1715), - [sym_integer] = ACTIONS(1715), - [sym_float] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_api] = ACTIONS(1715), - [sym_true] = ACTIONS(1715), - [sym_false] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1715), - [anon_sym_include] = ACTIONS(1715), - [anon_sym_DEF] = ACTIONS(1715), - [anon_sym_cdef] = ACTIONS(1715), - [anon_sym_cpdef] = ACTIONS(1715), - [anon_sym_int] = ACTIONS(1715), - [anon_sym_double] = ACTIONS(1715), - [anon_sym_complex] = ACTIONS(1715), - [anon_sym_new] = ACTIONS(1715), - [anon_sym_signed] = ACTIONS(1715), - [anon_sym_unsigned] = ACTIONS(1715), - [anon_sym_char] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_volatile] = ACTIONS(1715), - [anon_sym_ctypedef] = ACTIONS(1715), - [anon_sym_struct] = ACTIONS(1715), - [anon_sym_union] = ACTIONS(1715), - [anon_sym_enum] = ACTIONS(1715), - [anon_sym_cppclass] = ACTIONS(1715), - [anon_sym_fused] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1715), - [anon_sym_packed] = ACTIONS(1715), - [anon_sym_inline] = ACTIONS(1715), - [anon_sym_readonly] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1715), - [sym__dedent] = ACTIONS(1717), - [sym_string_start] = ACTIONS(1717), + [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(1719), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_cimport] = ACTIONS(1719), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_print] = ACTIONS(1719), - [anon_sym_assert] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_del] = ACTIONS(1719), - [anon_sym_raise] = ACTIONS(1719), - [anon_sym_pass] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_global] = ACTIONS(1719), - [anon_sym_nonlocal] = ACTIONS(1719), - [anon_sym_exec] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_AT] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_not] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_TILDE] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1721), - [anon_sym_lambda] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1721), - [anon_sym_None] = ACTIONS(1719), - [sym_integer] = ACTIONS(1719), - [sym_float] = ACTIONS(1721), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_api] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_include] = ACTIONS(1719), - [anon_sym_DEF] = ACTIONS(1719), - [anon_sym_cdef] = ACTIONS(1719), - [anon_sym_cpdef] = ACTIONS(1719), - [anon_sym_int] = ACTIONS(1719), - [anon_sym_double] = ACTIONS(1719), - [anon_sym_complex] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_signed] = ACTIONS(1719), - [anon_sym_unsigned] = ACTIONS(1719), - [anon_sym_char] = ACTIONS(1719), - [anon_sym_short] = ACTIONS(1719), - [anon_sym_long] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_volatile] = ACTIONS(1719), - [anon_sym_ctypedef] = ACTIONS(1719), - [anon_sym_struct] = ACTIONS(1719), - [anon_sym_union] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [anon_sym_cppclass] = ACTIONS(1719), - [anon_sym_fused] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_packed] = ACTIONS(1719), - [anon_sym_inline] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_sizeof] = ACTIONS(1719), - [sym__dedent] = ACTIONS(1721), - [sym_string_start] = ACTIONS(1721), + [sym_identifier] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_import] = ACTIONS(1689), + [anon_sym_cimport] = ACTIONS(1689), + [anon_sym_from] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_print] = ACTIONS(1689), + [anon_sym_assert] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_del] = ACTIONS(1689), + [anon_sym_raise] = ACTIONS(1689), + [anon_sym_pass] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_match] = ACTIONS(1689), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_with] = ACTIONS(1689), + [anon_sym_def] = ACTIONS(1689), + [anon_sym_global] = ACTIONS(1689), + [anon_sym_nonlocal] = ACTIONS(1689), + [anon_sym_exec] = ACTIONS(1689), + [anon_sym_type] = ACTIONS(1689), + [anon_sym_class] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1691), + [anon_sym_AT] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_not] = ACTIONS(1689), + [anon_sym_AMP] = ACTIONS(1691), + [anon_sym_TILDE] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_lambda] = ACTIONS(1689), + [anon_sym_yield] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1691), + [anon_sym_None] = ACTIONS(1689), + [sym_integer] = ACTIONS(1689), + [sym_float] = ACTIONS(1691), + [anon_sym_await] = ACTIONS(1689), + [anon_sym_api] = ACTIONS(1689), + [sym_true] = ACTIONS(1689), + [sym_false] = ACTIONS(1689), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1689), + [anon_sym_include] = ACTIONS(1689), + [anon_sym_DEF] = ACTIONS(1689), + [anon_sym_cdef] = ACTIONS(1689), + [anon_sym_cpdef] = ACTIONS(1689), + [anon_sym_int] = ACTIONS(1689), + [anon_sym_double] = ACTIONS(1689), + [anon_sym_complex] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1689), + [anon_sym_signed] = ACTIONS(1689), + [anon_sym_unsigned] = ACTIONS(1689), + [anon_sym_char] = ACTIONS(1689), + [anon_sym_short] = ACTIONS(1689), + [anon_sym_long] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_volatile] = ACTIONS(1689), + [anon_sym_ctypedef] = ACTIONS(1689), + [anon_sym_struct] = ACTIONS(1689), + [anon_sym_union] = ACTIONS(1689), + [anon_sym_enum] = ACTIONS(1689), + [anon_sym_cppclass] = ACTIONS(1689), + [anon_sym_fused] = ACTIONS(1689), + [anon_sym_public] = ACTIONS(1689), + [anon_sym_packed] = ACTIONS(1689), + [anon_sym_inline] = ACTIONS(1689), + [anon_sym_readonly] = ACTIONS(1689), + [anon_sym_sizeof] = ACTIONS(1689), + [sym__dedent] = ACTIONS(1691), + [sym_string_start] = ACTIONS(1691), }, [544] = { - [sym_identifier] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_import] = ACTIONS(1723), - [anon_sym_cimport] = ACTIONS(1723), - [anon_sym_from] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_print] = ACTIONS(1723), - [anon_sym_assert] = ACTIONS(1723), - [anon_sym_return] = ACTIONS(1723), - [anon_sym_del] = ACTIONS(1723), - [anon_sym_raise] = ACTIONS(1723), - [anon_sym_pass] = ACTIONS(1723), - [anon_sym_break] = ACTIONS(1723), - [anon_sym_continue] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_match] = ACTIONS(1723), - [anon_sym_async] = ACTIONS(1723), - [anon_sym_for] = ACTIONS(1723), - [anon_sym_while] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1723), - [anon_sym_with] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1723), - [anon_sym_global] = ACTIONS(1723), - [anon_sym_nonlocal] = ACTIONS(1723), - [anon_sym_exec] = ACTIONS(1723), - [anon_sym_type] = ACTIONS(1723), - [anon_sym_class] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_AT] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_not] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_lambda] = ACTIONS(1723), - [anon_sym_yield] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1725), - [anon_sym_None] = ACTIONS(1723), - [sym_integer] = ACTIONS(1723), - [sym_float] = ACTIONS(1725), - [anon_sym_await] = ACTIONS(1723), - [anon_sym_api] = ACTIONS(1723), - [sym_true] = ACTIONS(1723), - [sym_false] = ACTIONS(1723), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1723), - [anon_sym_include] = ACTIONS(1723), - [anon_sym_DEF] = ACTIONS(1723), - [anon_sym_cdef] = ACTIONS(1723), - [anon_sym_cpdef] = ACTIONS(1723), - [anon_sym_int] = ACTIONS(1723), - [anon_sym_double] = ACTIONS(1723), - [anon_sym_complex] = ACTIONS(1723), - [anon_sym_new] = ACTIONS(1723), - [anon_sym_signed] = ACTIONS(1723), - [anon_sym_unsigned] = ACTIONS(1723), - [anon_sym_char] = ACTIONS(1723), - [anon_sym_short] = ACTIONS(1723), - [anon_sym_long] = ACTIONS(1723), - [anon_sym_const] = ACTIONS(1723), - [anon_sym_volatile] = ACTIONS(1723), - [anon_sym_ctypedef] = ACTIONS(1723), - [anon_sym_struct] = ACTIONS(1723), - [anon_sym_union] = ACTIONS(1723), - [anon_sym_enum] = ACTIONS(1723), - [anon_sym_cppclass] = ACTIONS(1723), - [anon_sym_fused] = ACTIONS(1723), - [anon_sym_public] = ACTIONS(1723), - [anon_sym_packed] = ACTIONS(1723), - [anon_sym_inline] = ACTIONS(1723), - [anon_sym_readonly] = ACTIONS(1723), - [anon_sym_sizeof] = ACTIONS(1723), - [sym__dedent] = ACTIONS(1725), - [sym_string_start] = ACTIONS(1725), + [sym_identifier] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_import] = ACTIONS(1693), + [anon_sym_cimport] = ACTIONS(1693), + [anon_sym_from] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_print] = ACTIONS(1693), + [anon_sym_assert] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_del] = ACTIONS(1693), + [anon_sym_raise] = ACTIONS(1693), + [anon_sym_pass] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_async] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_with] = ACTIONS(1693), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_global] = ACTIONS(1693), + [anon_sym_nonlocal] = ACTIONS(1693), + [anon_sym_exec] = ACTIONS(1693), + [anon_sym_type] = ACTIONS(1693), + [anon_sym_class] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_AT] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_not] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1695), + [anon_sym_lambda] = ACTIONS(1693), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1695), + [anon_sym_None] = ACTIONS(1693), + [sym_integer] = ACTIONS(1693), + [sym_float] = ACTIONS(1695), + [anon_sym_await] = ACTIONS(1693), + [anon_sym_api] = ACTIONS(1693), + [sym_true] = ACTIONS(1693), + [sym_false] = ACTIONS(1693), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1693), + [anon_sym_include] = ACTIONS(1693), + [anon_sym_DEF] = ACTIONS(1693), + [anon_sym_cdef] = ACTIONS(1693), + [anon_sym_cpdef] = ACTIONS(1693), + [anon_sym_int] = ACTIONS(1693), + [anon_sym_double] = ACTIONS(1693), + [anon_sym_complex] = ACTIONS(1693), + [anon_sym_new] = ACTIONS(1693), + [anon_sym_signed] = ACTIONS(1693), + [anon_sym_unsigned] = ACTIONS(1693), + [anon_sym_char] = ACTIONS(1693), + [anon_sym_short] = ACTIONS(1693), + [anon_sym_long] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [anon_sym_volatile] = ACTIONS(1693), + [anon_sym_ctypedef] = ACTIONS(1693), + [anon_sym_struct] = ACTIONS(1693), + [anon_sym_union] = ACTIONS(1693), + [anon_sym_enum] = ACTIONS(1693), + [anon_sym_cppclass] = ACTIONS(1693), + [anon_sym_fused] = ACTIONS(1693), + [anon_sym_public] = ACTIONS(1693), + [anon_sym_packed] = ACTIONS(1693), + [anon_sym_inline] = ACTIONS(1693), + [anon_sym_readonly] = ACTIONS(1693), + [anon_sym_sizeof] = ACTIONS(1693), + [sym__dedent] = ACTIONS(1695), + [sym_string_start] = ACTIONS(1695), }, [545] = { - [sym_identifier] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_import] = ACTIONS(1727), - [anon_sym_cimport] = ACTIONS(1727), - [anon_sym_from] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_print] = ACTIONS(1727), - [anon_sym_assert] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1727), - [anon_sym_del] = ACTIONS(1727), - [anon_sym_raise] = ACTIONS(1727), - [anon_sym_pass] = ACTIONS(1727), - [anon_sym_break] = ACTIONS(1727), - [anon_sym_continue] = ACTIONS(1727), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_async] = ACTIONS(1727), - [anon_sym_for] = ACTIONS(1727), - [anon_sym_while] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1727), - [anon_sym_with] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1727), - [anon_sym_global] = ACTIONS(1727), - [anon_sym_nonlocal] = ACTIONS(1727), - [anon_sym_exec] = ACTIONS(1727), - [anon_sym_type] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_AT] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_lambda] = ACTIONS(1727), - [anon_sym_yield] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1729), - [anon_sym_None] = ACTIONS(1727), - [sym_integer] = ACTIONS(1727), - [sym_float] = ACTIONS(1729), - [anon_sym_await] = ACTIONS(1727), - [anon_sym_api] = ACTIONS(1727), - [sym_true] = ACTIONS(1727), - [sym_false] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1727), - [anon_sym_include] = ACTIONS(1727), - [anon_sym_DEF] = ACTIONS(1727), - [anon_sym_cdef] = ACTIONS(1727), - [anon_sym_cpdef] = ACTIONS(1727), - [anon_sym_int] = ACTIONS(1727), - [anon_sym_double] = ACTIONS(1727), - [anon_sym_complex] = ACTIONS(1727), - [anon_sym_new] = ACTIONS(1727), - [anon_sym_signed] = ACTIONS(1727), - [anon_sym_unsigned] = ACTIONS(1727), - [anon_sym_char] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_volatile] = ACTIONS(1727), - [anon_sym_ctypedef] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_cppclass] = ACTIONS(1727), - [anon_sym_fused] = ACTIONS(1727), - [anon_sym_public] = ACTIONS(1727), - [anon_sym_packed] = ACTIONS(1727), - [anon_sym_inline] = ACTIONS(1727), - [anon_sym_readonly] = ACTIONS(1727), - [anon_sym_sizeof] = ACTIONS(1727), - [sym__dedent] = ACTIONS(1729), - [sym_string_start] = ACTIONS(1729), + [sym_identifier] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_import] = ACTIONS(1697), + [anon_sym_cimport] = ACTIONS(1697), + [anon_sym_from] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_STAR] = ACTIONS(1699), + [anon_sym_print] = ACTIONS(1697), + [anon_sym_assert] = ACTIONS(1697), + [anon_sym_return] = ACTIONS(1697), + [anon_sym_del] = ACTIONS(1697), + [anon_sym_raise] = ACTIONS(1697), + [anon_sym_pass] = ACTIONS(1697), + [anon_sym_break] = ACTIONS(1697), + [anon_sym_continue] = ACTIONS(1697), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_match] = ACTIONS(1697), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_for] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1697), + [anon_sym_try] = ACTIONS(1697), + [anon_sym_with] = ACTIONS(1697), + [anon_sym_def] = ACTIONS(1697), + [anon_sym_global] = ACTIONS(1697), + [anon_sym_nonlocal] = ACTIONS(1697), + [anon_sym_exec] = ACTIONS(1697), + [anon_sym_type] = ACTIONS(1697), + [anon_sym_class] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_AT] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_not] = ACTIONS(1697), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_lambda] = ACTIONS(1697), + [anon_sym_yield] = ACTIONS(1697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1699), + [anon_sym_None] = ACTIONS(1697), + [sym_integer] = ACTIONS(1697), + [sym_float] = ACTIONS(1699), + [anon_sym_await] = ACTIONS(1697), + [anon_sym_api] = ACTIONS(1697), + [sym_true] = ACTIONS(1697), + [sym_false] = ACTIONS(1697), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1697), + [anon_sym_include] = ACTIONS(1697), + [anon_sym_DEF] = ACTIONS(1697), + [anon_sym_cdef] = ACTIONS(1697), + [anon_sym_cpdef] = ACTIONS(1697), + [anon_sym_int] = ACTIONS(1697), + [anon_sym_double] = ACTIONS(1697), + [anon_sym_complex] = ACTIONS(1697), + [anon_sym_new] = ACTIONS(1697), + [anon_sym_signed] = ACTIONS(1697), + [anon_sym_unsigned] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_short] = ACTIONS(1697), + [anon_sym_long] = ACTIONS(1697), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_volatile] = ACTIONS(1697), + [anon_sym_ctypedef] = ACTIONS(1697), + [anon_sym_struct] = ACTIONS(1697), + [anon_sym_union] = ACTIONS(1697), + [anon_sym_enum] = ACTIONS(1697), + [anon_sym_cppclass] = ACTIONS(1697), + [anon_sym_fused] = ACTIONS(1697), + [anon_sym_public] = ACTIONS(1697), + [anon_sym_packed] = ACTIONS(1697), + [anon_sym_inline] = ACTIONS(1697), + [anon_sym_readonly] = ACTIONS(1697), + [anon_sym_sizeof] = ACTIONS(1697), + [sym__dedent] = ACTIONS(1699), + [sym_string_start] = ACTIONS(1699), }, [546] = { - [sym_identifier] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_import] = ACTIONS(1731), - [anon_sym_cimport] = ACTIONS(1731), - [anon_sym_from] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_print] = ACTIONS(1731), - [anon_sym_assert] = ACTIONS(1731), - [anon_sym_return] = ACTIONS(1731), - [anon_sym_del] = ACTIONS(1731), - [anon_sym_raise] = ACTIONS(1731), - [anon_sym_pass] = ACTIONS(1731), - [anon_sym_break] = ACTIONS(1731), - [anon_sym_continue] = ACTIONS(1731), - [anon_sym_if] = ACTIONS(1731), - [anon_sym_match] = ACTIONS(1731), - [anon_sym_async] = ACTIONS(1731), - [anon_sym_for] = ACTIONS(1731), - [anon_sym_while] = ACTIONS(1731), - [anon_sym_try] = ACTIONS(1731), - [anon_sym_with] = ACTIONS(1731), - [anon_sym_def] = ACTIONS(1731), - [anon_sym_global] = ACTIONS(1731), - [anon_sym_nonlocal] = ACTIONS(1731), - [anon_sym_exec] = ACTIONS(1731), - [anon_sym_type] = ACTIONS(1731), - [anon_sym_class] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(1733), - [anon_sym_AT] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_not] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_lambda] = ACTIONS(1731), - [anon_sym_yield] = ACTIONS(1731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1733), - [anon_sym_None] = ACTIONS(1731), - [sym_integer] = ACTIONS(1731), - [sym_float] = ACTIONS(1733), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_api] = ACTIONS(1731), - [sym_true] = ACTIONS(1731), - [sym_false] = ACTIONS(1731), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1731), - [anon_sym_include] = ACTIONS(1731), - [anon_sym_DEF] = ACTIONS(1731), - [anon_sym_cdef] = ACTIONS(1731), - [anon_sym_cpdef] = ACTIONS(1731), - [anon_sym_int] = ACTIONS(1731), - [anon_sym_double] = ACTIONS(1731), - [anon_sym_complex] = ACTIONS(1731), - [anon_sym_new] = ACTIONS(1731), - [anon_sym_signed] = ACTIONS(1731), - [anon_sym_unsigned] = ACTIONS(1731), - [anon_sym_char] = ACTIONS(1731), - [anon_sym_short] = ACTIONS(1731), - [anon_sym_long] = ACTIONS(1731), - [anon_sym_const] = ACTIONS(1731), - [anon_sym_volatile] = ACTIONS(1731), - [anon_sym_ctypedef] = ACTIONS(1731), - [anon_sym_struct] = ACTIONS(1731), - [anon_sym_union] = ACTIONS(1731), - [anon_sym_enum] = ACTIONS(1731), - [anon_sym_cppclass] = ACTIONS(1731), - [anon_sym_fused] = ACTIONS(1731), - [anon_sym_public] = ACTIONS(1731), - [anon_sym_packed] = ACTIONS(1731), - [anon_sym_inline] = ACTIONS(1731), - [anon_sym_readonly] = ACTIONS(1731), - [anon_sym_sizeof] = ACTIONS(1731), - [sym__dedent] = ACTIONS(1733), - [sym_string_start] = ACTIONS(1733), + [sym_identifier] = ACTIONS(1701), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_import] = ACTIONS(1701), + [anon_sym_cimport] = ACTIONS(1701), + [anon_sym_from] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_print] = ACTIONS(1701), + [anon_sym_assert] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_del] = ACTIONS(1701), + [anon_sym_raise] = ACTIONS(1701), + [anon_sym_pass] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_async] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_with] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_global] = ACTIONS(1701), + [anon_sym_nonlocal] = ACTIONS(1701), + [anon_sym_exec] = ACTIONS(1701), + [anon_sym_type] = ACTIONS(1701), + [anon_sym_class] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_AT] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_not] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1703), + [anon_sym_TILDE] = ACTIONS(1703), + [anon_sym_LT] = ACTIONS(1703), + [anon_sym_lambda] = ACTIONS(1701), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), + [anon_sym_None] = ACTIONS(1701), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1703), + [anon_sym_await] = ACTIONS(1701), + [anon_sym_api] = ACTIONS(1701), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1701), + [anon_sym_include] = ACTIONS(1701), + [anon_sym_DEF] = ACTIONS(1701), + [anon_sym_cdef] = ACTIONS(1701), + [anon_sym_cpdef] = ACTIONS(1701), + [anon_sym_int] = ACTIONS(1701), + [anon_sym_double] = ACTIONS(1701), + [anon_sym_complex] = ACTIONS(1701), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_signed] = ACTIONS(1701), + [anon_sym_unsigned] = ACTIONS(1701), + [anon_sym_char] = ACTIONS(1701), + [anon_sym_short] = ACTIONS(1701), + [anon_sym_long] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [anon_sym_volatile] = ACTIONS(1701), + [anon_sym_ctypedef] = ACTIONS(1701), + [anon_sym_struct] = ACTIONS(1701), + [anon_sym_union] = ACTIONS(1701), + [anon_sym_enum] = ACTIONS(1701), + [anon_sym_cppclass] = ACTIONS(1701), + [anon_sym_fused] = ACTIONS(1701), + [anon_sym_public] = ACTIONS(1701), + [anon_sym_packed] = ACTIONS(1701), + [anon_sym_inline] = ACTIONS(1701), + [anon_sym_readonly] = ACTIONS(1701), + [anon_sym_sizeof] = ACTIONS(1701), + [sym__dedent] = ACTIONS(1703), + [sym_string_start] = ACTIONS(1703), }, [547] = { - [sym_identifier] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_import] = ACTIONS(1735), - [anon_sym_cimport] = ACTIONS(1735), - [anon_sym_from] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_print] = ACTIONS(1735), - [anon_sym_assert] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_del] = ACTIONS(1735), - [anon_sym_raise] = ACTIONS(1735), - [anon_sym_pass] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_match] = ACTIONS(1735), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_with] = ACTIONS(1735), - [anon_sym_def] = ACTIONS(1735), - [anon_sym_global] = ACTIONS(1735), - [anon_sym_nonlocal] = ACTIONS(1735), - [anon_sym_exec] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_AT] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_lambda] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1737), - [anon_sym_None] = ACTIONS(1735), - [sym_integer] = ACTIONS(1735), - [sym_float] = ACTIONS(1737), - [anon_sym_await] = ACTIONS(1735), - [anon_sym_api] = ACTIONS(1735), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1735), - [anon_sym_include] = ACTIONS(1735), - [anon_sym_DEF] = ACTIONS(1735), - [anon_sym_cdef] = ACTIONS(1735), - [anon_sym_cpdef] = ACTIONS(1735), - [anon_sym_int] = ACTIONS(1735), - [anon_sym_double] = ACTIONS(1735), - [anon_sym_complex] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_char] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_ctypedef] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_cppclass] = ACTIONS(1735), - [anon_sym_fused] = ACTIONS(1735), - [anon_sym_public] = ACTIONS(1735), - [anon_sym_packed] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym_readonly] = ACTIONS(1735), - [anon_sym_sizeof] = ACTIONS(1735), - [sym__dedent] = ACTIONS(1737), - [sym_string_start] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_import] = ACTIONS(1705), + [anon_sym_cimport] = ACTIONS(1705), + [anon_sym_from] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(1707), + [anon_sym_print] = ACTIONS(1705), + [anon_sym_assert] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_del] = ACTIONS(1705), + [anon_sym_raise] = ACTIONS(1705), + [anon_sym_pass] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_async] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_with] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_global] = ACTIONS(1705), + [anon_sym_nonlocal] = ACTIONS(1705), + [anon_sym_exec] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1705), + [anon_sym_class] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_AT] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_not] = ACTIONS(1705), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_lambda] = ACTIONS(1705), + [anon_sym_yield] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1707), + [anon_sym_None] = ACTIONS(1705), + [sym_integer] = ACTIONS(1705), + [sym_float] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_api] = ACTIONS(1705), + [sym_true] = ACTIONS(1705), + [sym_false] = ACTIONS(1705), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1705), + [anon_sym_include] = ACTIONS(1705), + [anon_sym_DEF] = ACTIONS(1705), + [anon_sym_cdef] = ACTIONS(1705), + [anon_sym_cpdef] = ACTIONS(1705), + [anon_sym_int] = ACTIONS(1705), + [anon_sym_double] = ACTIONS(1705), + [anon_sym_complex] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_signed] = ACTIONS(1705), + [anon_sym_unsigned] = ACTIONS(1705), + [anon_sym_char] = ACTIONS(1705), + [anon_sym_short] = ACTIONS(1705), + [anon_sym_long] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_volatile] = ACTIONS(1705), + [anon_sym_ctypedef] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1705), + [anon_sym_union] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), + [anon_sym_cppclass] = ACTIONS(1705), + [anon_sym_fused] = ACTIONS(1705), + [anon_sym_public] = ACTIONS(1705), + [anon_sym_packed] = ACTIONS(1705), + [anon_sym_inline] = ACTIONS(1705), + [anon_sym_readonly] = ACTIONS(1705), + [anon_sym_sizeof] = ACTIONS(1705), + [sym__dedent] = ACTIONS(1707), + [sym_string_start] = ACTIONS(1707), }, [548] = { - [sym_identifier] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_import] = ACTIONS(1739), - [anon_sym_cimport] = ACTIONS(1739), - [anon_sym_from] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_print] = ACTIONS(1739), - [anon_sym_assert] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_del] = ACTIONS(1739), - [anon_sym_raise] = ACTIONS(1739), - [anon_sym_pass] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_match] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_with] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1739), - [anon_sym_global] = ACTIONS(1739), - [anon_sym_nonlocal] = ACTIONS(1739), - [anon_sym_exec] = ACTIONS(1739), - [anon_sym_type] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_AT] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_not] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_lambda] = ACTIONS(1739), - [anon_sym_yield] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1741), - [anon_sym_None] = ACTIONS(1739), - [sym_integer] = ACTIONS(1739), - [sym_float] = ACTIONS(1741), - [anon_sym_await] = ACTIONS(1739), - [anon_sym_api] = ACTIONS(1739), - [sym_true] = ACTIONS(1739), - [sym_false] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1739), - [anon_sym_include] = ACTIONS(1739), - [anon_sym_DEF] = ACTIONS(1739), - [anon_sym_cdef] = ACTIONS(1739), - [anon_sym_cpdef] = ACTIONS(1739), - [anon_sym_int] = ACTIONS(1739), - [anon_sym_double] = ACTIONS(1739), - [anon_sym_complex] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1739), - [anon_sym_signed] = ACTIONS(1739), - [anon_sym_unsigned] = ACTIONS(1739), - [anon_sym_char] = ACTIONS(1739), - [anon_sym_short] = ACTIONS(1739), - [anon_sym_long] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_volatile] = ACTIONS(1739), - [anon_sym_ctypedef] = ACTIONS(1739), - [anon_sym_struct] = ACTIONS(1739), - [anon_sym_union] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [anon_sym_cppclass] = ACTIONS(1739), - [anon_sym_fused] = ACTIONS(1739), - [anon_sym_public] = ACTIONS(1739), - [anon_sym_packed] = ACTIONS(1739), - [anon_sym_inline] = ACTIONS(1739), - [anon_sym_readonly] = ACTIONS(1739), - [anon_sym_sizeof] = ACTIONS(1739), - [sym__dedent] = ACTIONS(1741), - [sym_string_start] = ACTIONS(1741), + [sym_identifier] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_import] = ACTIONS(1709), + [anon_sym_cimport] = ACTIONS(1709), + [anon_sym_from] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_print] = ACTIONS(1709), + [anon_sym_assert] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_del] = ACTIONS(1709), + [anon_sym_raise] = ACTIONS(1709), + [anon_sym_pass] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_async] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_with] = ACTIONS(1709), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_global] = ACTIONS(1709), + [anon_sym_nonlocal] = ACTIONS(1709), + [anon_sym_exec] = ACTIONS(1709), + [anon_sym_type] = ACTIONS(1709), + [anon_sym_class] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_AT] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_lambda] = ACTIONS(1709), + [anon_sym_yield] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1711), + [anon_sym_None] = ACTIONS(1709), + [sym_integer] = ACTIONS(1709), + [sym_float] = ACTIONS(1711), + [anon_sym_await] = ACTIONS(1709), + [anon_sym_api] = ACTIONS(1709), + [sym_true] = ACTIONS(1709), + [sym_false] = ACTIONS(1709), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1709), + [anon_sym_include] = ACTIONS(1709), + [anon_sym_DEF] = ACTIONS(1709), + [anon_sym_cdef] = ACTIONS(1709), + [anon_sym_cpdef] = ACTIONS(1709), + [anon_sym_int] = ACTIONS(1709), + [anon_sym_double] = ACTIONS(1709), + [anon_sym_complex] = ACTIONS(1709), + [anon_sym_new] = ACTIONS(1709), + [anon_sym_signed] = ACTIONS(1709), + [anon_sym_unsigned] = ACTIONS(1709), + [anon_sym_char] = ACTIONS(1709), + [anon_sym_short] = ACTIONS(1709), + [anon_sym_long] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_volatile] = ACTIONS(1709), + [anon_sym_ctypedef] = ACTIONS(1709), + [anon_sym_struct] = ACTIONS(1709), + [anon_sym_union] = ACTIONS(1709), + [anon_sym_enum] = ACTIONS(1709), + [anon_sym_cppclass] = ACTIONS(1709), + [anon_sym_fused] = ACTIONS(1709), + [anon_sym_public] = ACTIONS(1709), + [anon_sym_packed] = ACTIONS(1709), + [anon_sym_inline] = ACTIONS(1709), + [anon_sym_readonly] = ACTIONS(1709), + [anon_sym_sizeof] = ACTIONS(1709), + [sym__dedent] = ACTIONS(1711), + [sym_string_start] = ACTIONS(1711), }, [549] = { - [sym_identifier] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_import] = ACTIONS(1743), - [anon_sym_cimport] = ACTIONS(1743), - [anon_sym_from] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_print] = ACTIONS(1743), - [anon_sym_assert] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_del] = ACTIONS(1743), - [anon_sym_raise] = ACTIONS(1743), - [anon_sym_pass] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_match] = ACTIONS(1743), - [anon_sym_async] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_with] = ACTIONS(1743), - [anon_sym_def] = ACTIONS(1743), - [anon_sym_global] = ACTIONS(1743), - [anon_sym_nonlocal] = ACTIONS(1743), - [anon_sym_exec] = ACTIONS(1743), - [anon_sym_type] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_AT] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_not] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_lambda] = ACTIONS(1743), - [anon_sym_yield] = ACTIONS(1743), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1745), - [anon_sym_None] = ACTIONS(1743), - [sym_integer] = ACTIONS(1743), - [sym_float] = ACTIONS(1745), - [anon_sym_await] = ACTIONS(1743), - [anon_sym_api] = ACTIONS(1743), - [sym_true] = ACTIONS(1743), - [sym_false] = ACTIONS(1743), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1743), - [anon_sym_include] = ACTIONS(1743), - [anon_sym_DEF] = ACTIONS(1743), - [anon_sym_cdef] = ACTIONS(1743), - [anon_sym_cpdef] = ACTIONS(1743), - [anon_sym_int] = ACTIONS(1743), - [anon_sym_double] = ACTIONS(1743), - [anon_sym_complex] = ACTIONS(1743), - [anon_sym_new] = ACTIONS(1743), - [anon_sym_signed] = ACTIONS(1743), - [anon_sym_unsigned] = ACTIONS(1743), - [anon_sym_char] = ACTIONS(1743), - [anon_sym_short] = ACTIONS(1743), - [anon_sym_long] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_volatile] = ACTIONS(1743), - [anon_sym_ctypedef] = ACTIONS(1743), - [anon_sym_struct] = ACTIONS(1743), - [anon_sym_union] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [anon_sym_cppclass] = ACTIONS(1743), - [anon_sym_fused] = ACTIONS(1743), - [anon_sym_public] = ACTIONS(1743), - [anon_sym_packed] = ACTIONS(1743), - [anon_sym_inline] = ACTIONS(1743), - [anon_sym_readonly] = ACTIONS(1743), - [anon_sym_sizeof] = ACTIONS(1743), - [sym__dedent] = ACTIONS(1745), - [sym_string_start] = ACTIONS(1745), + [sym_identifier] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_import] = ACTIONS(1713), + [anon_sym_cimport] = ACTIONS(1713), + [anon_sym_from] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_print] = ACTIONS(1713), + [anon_sym_assert] = ACTIONS(1713), + [anon_sym_return] = ACTIONS(1713), + [anon_sym_del] = ACTIONS(1713), + [anon_sym_raise] = ACTIONS(1713), + [anon_sym_pass] = ACTIONS(1713), + [anon_sym_break] = ACTIONS(1713), + [anon_sym_continue] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_match] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(1713), + [anon_sym_for] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(1713), + [anon_sym_try] = ACTIONS(1713), + [anon_sym_with] = ACTIONS(1713), + [anon_sym_def] = ACTIONS(1713), + [anon_sym_global] = ACTIONS(1713), + [anon_sym_nonlocal] = ACTIONS(1713), + [anon_sym_exec] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(1713), + [anon_sym_class] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1715), + [anon_sym_AT] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_lambda] = ACTIONS(1713), + [anon_sym_yield] = ACTIONS(1713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1715), + [anon_sym_None] = ACTIONS(1713), + [sym_integer] = ACTIONS(1713), + [sym_float] = ACTIONS(1715), + [anon_sym_await] = ACTIONS(1713), + [anon_sym_api] = ACTIONS(1713), + [sym_true] = ACTIONS(1713), + [sym_false] = ACTIONS(1713), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1713), + [anon_sym_include] = ACTIONS(1713), + [anon_sym_DEF] = ACTIONS(1713), + [anon_sym_cdef] = ACTIONS(1713), + [anon_sym_cpdef] = ACTIONS(1713), + [anon_sym_int] = ACTIONS(1713), + [anon_sym_double] = ACTIONS(1713), + [anon_sym_complex] = ACTIONS(1713), + [anon_sym_new] = ACTIONS(1713), + [anon_sym_signed] = ACTIONS(1713), + [anon_sym_unsigned] = ACTIONS(1713), + [anon_sym_char] = ACTIONS(1713), + [anon_sym_short] = ACTIONS(1713), + [anon_sym_long] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_volatile] = ACTIONS(1713), + [anon_sym_ctypedef] = ACTIONS(1713), + [anon_sym_struct] = ACTIONS(1713), + [anon_sym_union] = ACTIONS(1713), + [anon_sym_enum] = ACTIONS(1713), + [anon_sym_cppclass] = ACTIONS(1713), + [anon_sym_fused] = ACTIONS(1713), + [anon_sym_public] = ACTIONS(1713), + [anon_sym_packed] = ACTIONS(1713), + [anon_sym_inline] = ACTIONS(1713), + [anon_sym_readonly] = ACTIONS(1713), + [anon_sym_sizeof] = ACTIONS(1713), + [sym__dedent] = ACTIONS(1715), + [sym_string_start] = ACTIONS(1715), }, [550] = { - [sym_identifier] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1749), - [anon_sym_import] = ACTIONS(1747), - [anon_sym_cimport] = ACTIONS(1747), - [anon_sym_from] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_print] = ACTIONS(1747), - [anon_sym_assert] = ACTIONS(1747), - [anon_sym_return] = ACTIONS(1747), - [anon_sym_del] = ACTIONS(1747), - [anon_sym_raise] = ACTIONS(1747), - [anon_sym_pass] = ACTIONS(1747), - [anon_sym_break] = ACTIONS(1747), - [anon_sym_continue] = ACTIONS(1747), - [anon_sym_if] = ACTIONS(1747), - [anon_sym_match] = ACTIONS(1747), - [anon_sym_async] = ACTIONS(1747), - [anon_sym_for] = ACTIONS(1747), - [anon_sym_while] = ACTIONS(1747), - [anon_sym_try] = ACTIONS(1747), - [anon_sym_with] = ACTIONS(1747), - [anon_sym_def] = ACTIONS(1747), - [anon_sym_global] = ACTIONS(1747), - [anon_sym_nonlocal] = ACTIONS(1747), - [anon_sym_exec] = ACTIONS(1747), - [anon_sym_type] = ACTIONS(1747), - [anon_sym_class] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1749), - [anon_sym_AT] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_not] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1749), - [anon_sym_LT] = ACTIONS(1749), - [anon_sym_lambda] = ACTIONS(1747), - [anon_sym_yield] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1749), - [anon_sym_None] = ACTIONS(1747), - [sym_integer] = ACTIONS(1747), - [sym_float] = ACTIONS(1749), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_api] = ACTIONS(1747), - [sym_true] = ACTIONS(1747), - [sym_false] = ACTIONS(1747), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1747), - [anon_sym_include] = ACTIONS(1747), - [anon_sym_DEF] = ACTIONS(1747), - [anon_sym_cdef] = ACTIONS(1747), - [anon_sym_cpdef] = ACTIONS(1747), - [anon_sym_int] = ACTIONS(1747), - [anon_sym_double] = ACTIONS(1747), - [anon_sym_complex] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1747), - [anon_sym_signed] = ACTIONS(1747), - [anon_sym_unsigned] = ACTIONS(1747), - [anon_sym_char] = ACTIONS(1747), - [anon_sym_short] = ACTIONS(1747), - [anon_sym_long] = ACTIONS(1747), - [anon_sym_const] = ACTIONS(1747), - [anon_sym_volatile] = ACTIONS(1747), - [anon_sym_ctypedef] = ACTIONS(1747), - [anon_sym_struct] = ACTIONS(1747), - [anon_sym_union] = ACTIONS(1747), - [anon_sym_enum] = ACTIONS(1747), - [anon_sym_cppclass] = ACTIONS(1747), - [anon_sym_fused] = ACTIONS(1747), - [anon_sym_public] = ACTIONS(1747), - [anon_sym_packed] = ACTIONS(1747), - [anon_sym_inline] = ACTIONS(1747), - [anon_sym_readonly] = ACTIONS(1747), - [anon_sym_sizeof] = ACTIONS(1747), - [sym__dedent] = ACTIONS(1749), - [sym_string_start] = ACTIONS(1749), + [sym_identifier] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_import] = ACTIONS(1717), + [anon_sym_cimport] = ACTIONS(1717), + [anon_sym_from] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_STAR] = ACTIONS(1719), + [anon_sym_print] = ACTIONS(1717), + [anon_sym_assert] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_del] = ACTIONS(1717), + [anon_sym_raise] = ACTIONS(1717), + [anon_sym_pass] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_async] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_with] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1717), + [anon_sym_global] = ACTIONS(1717), + [anon_sym_nonlocal] = ACTIONS(1717), + [anon_sym_exec] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_class] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_AT] = ACTIONS(1719), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_PLUS] = ACTIONS(1719), + [anon_sym_not] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1719), + [anon_sym_TILDE] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_lambda] = ACTIONS(1717), + [anon_sym_yield] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [anon_sym_None] = ACTIONS(1717), + [sym_integer] = ACTIONS(1717), + [sym_float] = ACTIONS(1719), + [anon_sym_await] = ACTIONS(1717), + [anon_sym_api] = ACTIONS(1717), + [sym_true] = ACTIONS(1717), + [sym_false] = ACTIONS(1717), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1717), + [anon_sym_include] = ACTIONS(1717), + [anon_sym_DEF] = ACTIONS(1717), + [anon_sym_cdef] = ACTIONS(1717), + [anon_sym_cpdef] = ACTIONS(1717), + [anon_sym_int] = ACTIONS(1717), + [anon_sym_double] = ACTIONS(1717), + [anon_sym_complex] = ACTIONS(1717), + [anon_sym_new] = ACTIONS(1717), + [anon_sym_signed] = ACTIONS(1717), + [anon_sym_unsigned] = ACTIONS(1717), + [anon_sym_char] = ACTIONS(1717), + [anon_sym_short] = ACTIONS(1717), + [anon_sym_long] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_volatile] = ACTIONS(1717), + [anon_sym_ctypedef] = ACTIONS(1717), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_union] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_cppclass] = ACTIONS(1717), + [anon_sym_fused] = ACTIONS(1717), + [anon_sym_public] = ACTIONS(1717), + [anon_sym_packed] = ACTIONS(1717), + [anon_sym_inline] = ACTIONS(1717), + [anon_sym_readonly] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1717), + [sym__dedent] = ACTIONS(1719), + [sym_string_start] = ACTIONS(1719), }, [551] = { - [sym_identifier] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_import] = ACTIONS(1727), - [anon_sym_cimport] = ACTIONS(1727), - [anon_sym_from] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_print] = ACTIONS(1727), - [anon_sym_assert] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1727), - [anon_sym_del] = ACTIONS(1727), - [anon_sym_raise] = ACTIONS(1727), - [anon_sym_pass] = ACTIONS(1727), - [anon_sym_break] = ACTIONS(1727), - [anon_sym_continue] = ACTIONS(1727), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_async] = ACTIONS(1727), - [anon_sym_for] = ACTIONS(1727), - [anon_sym_while] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1727), - [anon_sym_with] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1727), - [anon_sym_global] = ACTIONS(1727), - [anon_sym_nonlocal] = ACTIONS(1727), - [anon_sym_exec] = ACTIONS(1727), - [anon_sym_type] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_AT] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_lambda] = ACTIONS(1727), - [anon_sym_yield] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1729), - [anon_sym_None] = ACTIONS(1727), - [sym_integer] = ACTIONS(1727), - [sym_float] = ACTIONS(1729), - [anon_sym_await] = ACTIONS(1727), - [anon_sym_api] = ACTIONS(1727), - [sym_true] = ACTIONS(1727), - [sym_false] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1727), - [anon_sym_include] = ACTIONS(1727), - [anon_sym_DEF] = ACTIONS(1727), - [anon_sym_cdef] = ACTIONS(1727), - [anon_sym_cpdef] = ACTIONS(1727), - [anon_sym_int] = ACTIONS(1727), - [anon_sym_double] = ACTIONS(1727), - [anon_sym_complex] = ACTIONS(1727), - [anon_sym_new] = ACTIONS(1727), - [anon_sym_signed] = ACTIONS(1727), - [anon_sym_unsigned] = ACTIONS(1727), - [anon_sym_char] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_volatile] = ACTIONS(1727), - [anon_sym_ctypedef] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_cppclass] = ACTIONS(1727), - [anon_sym_fused] = ACTIONS(1727), - [anon_sym_public] = ACTIONS(1727), - [anon_sym_packed] = ACTIONS(1727), - [anon_sym_inline] = ACTIONS(1727), - [anon_sym_readonly] = ACTIONS(1727), - [anon_sym_sizeof] = ACTIONS(1727), - [sym__dedent] = ACTIONS(1729), - [sym_string_start] = ACTIONS(1729), + [sym_identifier] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_import] = ACTIONS(1721), + [anon_sym_cimport] = ACTIONS(1721), + [anon_sym_from] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_print] = ACTIONS(1721), + [anon_sym_assert] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_del] = ACTIONS(1721), + [anon_sym_raise] = ACTIONS(1721), + [anon_sym_pass] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_async] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_with] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_global] = ACTIONS(1721), + [anon_sym_nonlocal] = ACTIONS(1721), + [anon_sym_exec] = ACTIONS(1721), + [anon_sym_type] = ACTIONS(1721), + [anon_sym_class] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_AT] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_not] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_TILDE] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_lambda] = ACTIONS(1721), + [anon_sym_yield] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1723), + [anon_sym_None] = ACTIONS(1721), + [sym_integer] = ACTIONS(1721), + [sym_float] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1721), + [anon_sym_api] = ACTIONS(1721), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1721), + [anon_sym_include] = ACTIONS(1721), + [anon_sym_DEF] = ACTIONS(1721), + [anon_sym_cdef] = ACTIONS(1721), + [anon_sym_cpdef] = ACTIONS(1721), + [anon_sym_int] = ACTIONS(1721), + [anon_sym_double] = ACTIONS(1721), + [anon_sym_complex] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1721), + [anon_sym_signed] = ACTIONS(1721), + [anon_sym_unsigned] = ACTIONS(1721), + [anon_sym_char] = ACTIONS(1721), + [anon_sym_short] = ACTIONS(1721), + [anon_sym_long] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [anon_sym_volatile] = ACTIONS(1721), + [anon_sym_ctypedef] = ACTIONS(1721), + [anon_sym_struct] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_enum] = ACTIONS(1721), + [anon_sym_cppclass] = ACTIONS(1721), + [anon_sym_fused] = ACTIONS(1721), + [anon_sym_public] = ACTIONS(1721), + [anon_sym_packed] = ACTIONS(1721), + [anon_sym_inline] = ACTIONS(1721), + [anon_sym_readonly] = ACTIONS(1721), + [anon_sym_sizeof] = ACTIONS(1721), + [sym__dedent] = ACTIONS(1723), + [sym_string_start] = ACTIONS(1723), }, [552] = { - [sym_identifier] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_import] = ACTIONS(1751), - [anon_sym_cimport] = ACTIONS(1751), - [anon_sym_from] = ACTIONS(1751), - [anon_sym_LPAREN] = ACTIONS(1753), - [anon_sym_STAR] = ACTIONS(1753), - [anon_sym_print] = ACTIONS(1751), - [anon_sym_assert] = ACTIONS(1751), - [anon_sym_return] = ACTIONS(1751), - [anon_sym_del] = ACTIONS(1751), - [anon_sym_raise] = ACTIONS(1751), - [anon_sym_pass] = ACTIONS(1751), - [anon_sym_break] = ACTIONS(1751), - [anon_sym_continue] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(1751), - [anon_sym_match] = ACTIONS(1751), - [anon_sym_async] = ACTIONS(1751), - [anon_sym_for] = ACTIONS(1751), - [anon_sym_while] = ACTIONS(1751), - [anon_sym_try] = ACTIONS(1751), - [anon_sym_with] = ACTIONS(1751), - [anon_sym_def] = ACTIONS(1751), - [anon_sym_global] = ACTIONS(1751), - [anon_sym_nonlocal] = ACTIONS(1751), - [anon_sym_exec] = ACTIONS(1751), - [anon_sym_type] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1751), - [anon_sym_LBRACK] = ACTIONS(1753), - [anon_sym_AT] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_not] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_lambda] = ACTIONS(1751), - [anon_sym_yield] = ACTIONS(1751), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1753), - [anon_sym_None] = ACTIONS(1751), - [sym_integer] = ACTIONS(1751), - [sym_float] = ACTIONS(1753), - [anon_sym_await] = ACTIONS(1751), - [anon_sym_api] = ACTIONS(1751), - [sym_true] = ACTIONS(1751), - [sym_false] = ACTIONS(1751), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1751), - [anon_sym_include] = ACTIONS(1751), - [anon_sym_DEF] = ACTIONS(1751), - [anon_sym_cdef] = ACTIONS(1751), - [anon_sym_cpdef] = ACTIONS(1751), - [anon_sym_int] = ACTIONS(1751), - [anon_sym_double] = ACTIONS(1751), - [anon_sym_complex] = ACTIONS(1751), - [anon_sym_new] = ACTIONS(1751), - [anon_sym_signed] = ACTIONS(1751), - [anon_sym_unsigned] = ACTIONS(1751), - [anon_sym_char] = ACTIONS(1751), - [anon_sym_short] = ACTIONS(1751), - [anon_sym_long] = ACTIONS(1751), - [anon_sym_const] = ACTIONS(1751), - [anon_sym_volatile] = ACTIONS(1751), - [anon_sym_ctypedef] = ACTIONS(1751), - [anon_sym_struct] = ACTIONS(1751), - [anon_sym_union] = ACTIONS(1751), - [anon_sym_enum] = ACTIONS(1751), - [anon_sym_cppclass] = ACTIONS(1751), - [anon_sym_fused] = ACTIONS(1751), - [anon_sym_public] = ACTIONS(1751), - [anon_sym_packed] = ACTIONS(1751), - [anon_sym_inline] = ACTIONS(1751), - [anon_sym_readonly] = ACTIONS(1751), - [anon_sym_sizeof] = ACTIONS(1751), - [sym__dedent] = ACTIONS(1753), - [sym_string_start] = ACTIONS(1753), + [sym_identifier] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_import] = ACTIONS(1717), + [anon_sym_cimport] = ACTIONS(1717), + [anon_sym_from] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_STAR] = ACTIONS(1719), + [anon_sym_print] = ACTIONS(1717), + [anon_sym_assert] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_del] = ACTIONS(1717), + [anon_sym_raise] = ACTIONS(1717), + [anon_sym_pass] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_async] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_with] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1717), + [anon_sym_global] = ACTIONS(1717), + [anon_sym_nonlocal] = ACTIONS(1717), + [anon_sym_exec] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_class] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_AT] = ACTIONS(1719), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_PLUS] = ACTIONS(1719), + [anon_sym_not] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1719), + [anon_sym_TILDE] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_lambda] = ACTIONS(1717), + [anon_sym_yield] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [anon_sym_None] = ACTIONS(1717), + [sym_integer] = ACTIONS(1717), + [sym_float] = ACTIONS(1719), + [anon_sym_await] = ACTIONS(1717), + [anon_sym_api] = ACTIONS(1717), + [sym_true] = ACTIONS(1717), + [sym_false] = ACTIONS(1717), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1717), + [anon_sym_include] = ACTIONS(1717), + [anon_sym_DEF] = ACTIONS(1717), + [anon_sym_cdef] = ACTIONS(1717), + [anon_sym_cpdef] = ACTIONS(1717), + [anon_sym_int] = ACTIONS(1717), + [anon_sym_double] = ACTIONS(1717), + [anon_sym_complex] = ACTIONS(1717), + [anon_sym_new] = ACTIONS(1717), + [anon_sym_signed] = ACTIONS(1717), + [anon_sym_unsigned] = ACTIONS(1717), + [anon_sym_char] = ACTIONS(1717), + [anon_sym_short] = ACTIONS(1717), + [anon_sym_long] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_volatile] = ACTIONS(1717), + [anon_sym_ctypedef] = ACTIONS(1717), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_union] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_cppclass] = ACTIONS(1717), + [anon_sym_fused] = ACTIONS(1717), + [anon_sym_public] = ACTIONS(1717), + [anon_sym_packed] = ACTIONS(1717), + [anon_sym_inline] = ACTIONS(1717), + [anon_sym_readonly] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1717), + [sym__dedent] = ACTIONS(1719), + [sym_string_start] = ACTIONS(1719), }, [553] = { - [sym_identifier] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_import] = ACTIONS(1735), - [anon_sym_cimport] = ACTIONS(1735), - [anon_sym_from] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_print] = ACTIONS(1735), - [anon_sym_assert] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_del] = ACTIONS(1735), - [anon_sym_raise] = ACTIONS(1735), - [anon_sym_pass] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_match] = ACTIONS(1735), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_with] = ACTIONS(1735), - [anon_sym_def] = ACTIONS(1735), - [anon_sym_global] = ACTIONS(1735), - [anon_sym_nonlocal] = ACTIONS(1735), - [anon_sym_exec] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_AT] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_lambda] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1737), - [anon_sym_None] = ACTIONS(1735), - [sym_integer] = ACTIONS(1735), - [sym_float] = ACTIONS(1737), - [anon_sym_await] = ACTIONS(1735), - [anon_sym_api] = ACTIONS(1735), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1735), - [anon_sym_include] = ACTIONS(1735), - [anon_sym_DEF] = ACTIONS(1735), - [anon_sym_cdef] = ACTIONS(1735), - [anon_sym_cpdef] = ACTIONS(1735), - [anon_sym_int] = ACTIONS(1735), - [anon_sym_double] = ACTIONS(1735), - [anon_sym_complex] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1735), - [anon_sym_unsigned] = ACTIONS(1735), - [anon_sym_char] = ACTIONS(1735), - [anon_sym_short] = ACTIONS(1735), - [anon_sym_long] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_volatile] = ACTIONS(1735), - [anon_sym_ctypedef] = ACTIONS(1735), - [anon_sym_struct] = ACTIONS(1735), - [anon_sym_union] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [anon_sym_cppclass] = ACTIONS(1735), - [anon_sym_fused] = ACTIONS(1735), - [anon_sym_public] = ACTIONS(1735), - [anon_sym_packed] = ACTIONS(1735), - [anon_sym_inline] = ACTIONS(1735), - [anon_sym_readonly] = ACTIONS(1735), - [anon_sym_sizeof] = ACTIONS(1735), - [sym__dedent] = ACTIONS(1737), - [sym_string_start] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_import] = ACTIONS(1717), + [anon_sym_cimport] = ACTIONS(1717), + [anon_sym_from] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_STAR] = ACTIONS(1719), + [anon_sym_print] = ACTIONS(1717), + [anon_sym_assert] = ACTIONS(1717), + [anon_sym_return] = ACTIONS(1717), + [anon_sym_del] = ACTIONS(1717), + [anon_sym_raise] = ACTIONS(1717), + [anon_sym_pass] = ACTIONS(1717), + [anon_sym_break] = ACTIONS(1717), + [anon_sym_continue] = ACTIONS(1717), + [anon_sym_if] = ACTIONS(1717), + [anon_sym_match] = ACTIONS(1717), + [anon_sym_async] = ACTIONS(1717), + [anon_sym_for] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1717), + [anon_sym_with] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1717), + [anon_sym_global] = ACTIONS(1717), + [anon_sym_nonlocal] = ACTIONS(1717), + [anon_sym_exec] = ACTIONS(1717), + [anon_sym_type] = ACTIONS(1717), + [anon_sym_class] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_AT] = ACTIONS(1719), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_PLUS] = ACTIONS(1719), + [anon_sym_not] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1719), + [anon_sym_TILDE] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_lambda] = ACTIONS(1717), + [anon_sym_yield] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), + [anon_sym_None] = ACTIONS(1717), + [sym_integer] = ACTIONS(1717), + [sym_float] = ACTIONS(1719), + [anon_sym_await] = ACTIONS(1717), + [anon_sym_api] = ACTIONS(1717), + [sym_true] = ACTIONS(1717), + [sym_false] = ACTIONS(1717), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1717), + [anon_sym_include] = ACTIONS(1717), + [anon_sym_DEF] = ACTIONS(1717), + [anon_sym_cdef] = ACTIONS(1717), + [anon_sym_cpdef] = ACTIONS(1717), + [anon_sym_int] = ACTIONS(1717), + [anon_sym_double] = ACTIONS(1717), + [anon_sym_complex] = ACTIONS(1717), + [anon_sym_new] = ACTIONS(1717), + [anon_sym_signed] = ACTIONS(1717), + [anon_sym_unsigned] = ACTIONS(1717), + [anon_sym_char] = ACTIONS(1717), + [anon_sym_short] = ACTIONS(1717), + [anon_sym_long] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1717), + [anon_sym_volatile] = ACTIONS(1717), + [anon_sym_ctypedef] = ACTIONS(1717), + [anon_sym_struct] = ACTIONS(1717), + [anon_sym_union] = ACTIONS(1717), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_cppclass] = ACTIONS(1717), + [anon_sym_fused] = ACTIONS(1717), + [anon_sym_public] = ACTIONS(1717), + [anon_sym_packed] = ACTIONS(1717), + [anon_sym_inline] = ACTIONS(1717), + [anon_sym_readonly] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1717), + [sym__dedent] = ACTIONS(1719), + [sym_string_start] = ACTIONS(1719), }, [554] = { - [sym_identifier] = ACTIONS(1755), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_import] = ACTIONS(1755), - [anon_sym_cimport] = ACTIONS(1755), - [anon_sym_from] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_print] = ACTIONS(1755), - [anon_sym_assert] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_del] = ACTIONS(1755), - [anon_sym_raise] = ACTIONS(1755), - [anon_sym_pass] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_match] = ACTIONS(1755), - [anon_sym_async] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_with] = ACTIONS(1755), - [anon_sym_def] = ACTIONS(1755), - [anon_sym_global] = ACTIONS(1755), - [anon_sym_nonlocal] = ACTIONS(1755), - [anon_sym_exec] = ACTIONS(1755), - [anon_sym_type] = ACTIONS(1755), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_AT] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_not] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_lambda] = ACTIONS(1755), - [anon_sym_yield] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1757), - [anon_sym_None] = ACTIONS(1755), - [sym_integer] = ACTIONS(1755), - [sym_float] = ACTIONS(1757), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_api] = ACTIONS(1755), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1755), - [anon_sym_include] = ACTIONS(1755), - [anon_sym_DEF] = ACTIONS(1755), - [anon_sym_cdef] = ACTIONS(1755), - [anon_sym_cpdef] = ACTIONS(1755), - [anon_sym_int] = ACTIONS(1755), - [anon_sym_double] = ACTIONS(1755), - [anon_sym_complex] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_signed] = ACTIONS(1755), - [anon_sym_unsigned] = ACTIONS(1755), - [anon_sym_char] = ACTIONS(1755), - [anon_sym_short] = ACTIONS(1755), - [anon_sym_long] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_volatile] = ACTIONS(1755), - [anon_sym_ctypedef] = ACTIONS(1755), - [anon_sym_struct] = ACTIONS(1755), - [anon_sym_union] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [anon_sym_cppclass] = ACTIONS(1755), - [anon_sym_fused] = ACTIONS(1755), - [anon_sym_public] = ACTIONS(1755), - [anon_sym_packed] = ACTIONS(1755), - [anon_sym_inline] = ACTIONS(1755), - [anon_sym_readonly] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1755), - [sym__dedent] = ACTIONS(1757), - [sym_string_start] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_import] = ACTIONS(1725), + [anon_sym_cimport] = ACTIONS(1725), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_print] = ACTIONS(1725), + [anon_sym_assert] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_del] = ACTIONS(1725), + [anon_sym_raise] = ACTIONS(1725), + [anon_sym_pass] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1725), + [anon_sym_async] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_try] = ACTIONS(1725), + [anon_sym_with] = ACTIONS(1725), + [anon_sym_def] = ACTIONS(1725), + [anon_sym_global] = ACTIONS(1725), + [anon_sym_nonlocal] = ACTIONS(1725), + [anon_sym_exec] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_class] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_AT] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1727), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_not] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_lambda] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1727), + [anon_sym_None] = ACTIONS(1725), + [sym_integer] = ACTIONS(1725), + [sym_float] = ACTIONS(1727), + [anon_sym_await] = ACTIONS(1725), + [anon_sym_api] = ACTIONS(1725), + [sym_true] = ACTIONS(1725), + [sym_false] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_include] = ACTIONS(1725), + [anon_sym_DEF] = ACTIONS(1725), + [anon_sym_cdef] = ACTIONS(1725), + [anon_sym_cpdef] = ACTIONS(1725), + [anon_sym_int] = ACTIONS(1725), + [anon_sym_double] = ACTIONS(1725), + [anon_sym_complex] = ACTIONS(1725), + [anon_sym_new] = ACTIONS(1725), + [anon_sym_signed] = ACTIONS(1725), + [anon_sym_unsigned] = ACTIONS(1725), + [anon_sym_char] = ACTIONS(1725), + [anon_sym_short] = ACTIONS(1725), + [anon_sym_long] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_volatile] = ACTIONS(1725), + [anon_sym_ctypedef] = ACTIONS(1725), + [anon_sym_struct] = ACTIONS(1725), + [anon_sym_union] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), + [anon_sym_cppclass] = ACTIONS(1725), + [anon_sym_fused] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_packed] = ACTIONS(1725), + [anon_sym_inline] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_sizeof] = ACTIONS(1725), + [sym__dedent] = ACTIONS(1727), + [sym_string_start] = ACTIONS(1727), }, [555] = { - [sym_identifier] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_import] = ACTIONS(1727), - [anon_sym_cimport] = ACTIONS(1727), - [anon_sym_from] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_print] = ACTIONS(1727), - [anon_sym_assert] = ACTIONS(1727), - [anon_sym_return] = ACTIONS(1727), - [anon_sym_del] = ACTIONS(1727), - [anon_sym_raise] = ACTIONS(1727), - [anon_sym_pass] = ACTIONS(1727), - [anon_sym_break] = ACTIONS(1727), - [anon_sym_continue] = ACTIONS(1727), - [anon_sym_if] = ACTIONS(1727), - [anon_sym_match] = ACTIONS(1727), - [anon_sym_async] = ACTIONS(1727), - [anon_sym_for] = ACTIONS(1727), - [anon_sym_while] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1727), - [anon_sym_with] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1727), - [anon_sym_global] = ACTIONS(1727), - [anon_sym_nonlocal] = ACTIONS(1727), - [anon_sym_exec] = ACTIONS(1727), - [anon_sym_type] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_AT] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_lambda] = ACTIONS(1727), - [anon_sym_yield] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1729), - [anon_sym_None] = ACTIONS(1727), - [sym_integer] = ACTIONS(1727), - [sym_float] = ACTIONS(1729), - [anon_sym_await] = ACTIONS(1727), - [anon_sym_api] = ACTIONS(1727), - [sym_true] = ACTIONS(1727), - [sym_false] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1727), - [anon_sym_include] = ACTIONS(1727), - [anon_sym_DEF] = ACTIONS(1727), - [anon_sym_cdef] = ACTIONS(1727), - [anon_sym_cpdef] = ACTIONS(1727), - [anon_sym_int] = ACTIONS(1727), - [anon_sym_double] = ACTIONS(1727), - [anon_sym_complex] = ACTIONS(1727), - [anon_sym_new] = ACTIONS(1727), - [anon_sym_signed] = ACTIONS(1727), - [anon_sym_unsigned] = ACTIONS(1727), - [anon_sym_char] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_const] = ACTIONS(1727), - [anon_sym_volatile] = ACTIONS(1727), - [anon_sym_ctypedef] = ACTIONS(1727), - [anon_sym_struct] = ACTIONS(1727), - [anon_sym_union] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1727), - [anon_sym_cppclass] = ACTIONS(1727), - [anon_sym_fused] = ACTIONS(1727), - [anon_sym_public] = ACTIONS(1727), - [anon_sym_packed] = ACTIONS(1727), - [anon_sym_inline] = ACTIONS(1727), - [anon_sym_readonly] = ACTIONS(1727), - [anon_sym_sizeof] = ACTIONS(1727), - [sym__dedent] = ACTIONS(1729), - [sym_string_start] = ACTIONS(1729), + [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), }, [556] = { - [sym_identifier] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_import] = ACTIONS(1759), - [anon_sym_cimport] = ACTIONS(1759), - [anon_sym_from] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_print] = ACTIONS(1759), - [anon_sym_assert] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_del] = ACTIONS(1759), - [anon_sym_raise] = ACTIONS(1759), - [anon_sym_pass] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_match] = ACTIONS(1759), - [anon_sym_async] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1759), - [anon_sym_with] = ACTIONS(1759), - [anon_sym_def] = ACTIONS(1759), - [anon_sym_global] = ACTIONS(1759), - [anon_sym_nonlocal] = ACTIONS(1759), - [anon_sym_exec] = ACTIONS(1759), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1761), - [anon_sym_AT] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_not] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_lambda] = ACTIONS(1759), - [anon_sym_yield] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1761), - [anon_sym_None] = ACTIONS(1759), - [sym_integer] = ACTIONS(1759), - [sym_float] = ACTIONS(1761), - [anon_sym_await] = ACTIONS(1759), - [anon_sym_api] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1759), - [anon_sym_include] = ACTIONS(1759), - [anon_sym_DEF] = ACTIONS(1759), - [anon_sym_cdef] = ACTIONS(1759), - [anon_sym_cpdef] = ACTIONS(1759), - [anon_sym_int] = ACTIONS(1759), - [anon_sym_double] = ACTIONS(1759), - [anon_sym_complex] = ACTIONS(1759), - [anon_sym_new] = ACTIONS(1759), - [anon_sym_signed] = ACTIONS(1759), - [anon_sym_unsigned] = ACTIONS(1759), - [anon_sym_char] = ACTIONS(1759), - [anon_sym_short] = ACTIONS(1759), - [anon_sym_long] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_volatile] = ACTIONS(1759), - [anon_sym_ctypedef] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_cppclass] = ACTIONS(1759), - [anon_sym_fused] = ACTIONS(1759), - [anon_sym_public] = ACTIONS(1759), - [anon_sym_packed] = ACTIONS(1759), - [anon_sym_inline] = ACTIONS(1759), - [anon_sym_readonly] = ACTIONS(1759), - [anon_sym_sizeof] = ACTIONS(1759), - [sym__dedent] = ACTIONS(1761), - [sym_string_start] = ACTIONS(1761), + [sym_identifier] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_import] = ACTIONS(1733), + [anon_sym_cimport] = ACTIONS(1733), + [anon_sym_from] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_STAR] = ACTIONS(1735), + [anon_sym_print] = ACTIONS(1733), + [anon_sym_assert] = ACTIONS(1733), + [anon_sym_return] = ACTIONS(1733), + [anon_sym_del] = ACTIONS(1733), + [anon_sym_raise] = ACTIONS(1733), + [anon_sym_pass] = ACTIONS(1733), + [anon_sym_break] = ACTIONS(1733), + [anon_sym_continue] = ACTIONS(1733), + [anon_sym_if] = ACTIONS(1733), + [anon_sym_match] = ACTIONS(1733), + [anon_sym_async] = ACTIONS(1733), + [anon_sym_for] = ACTIONS(1733), + [anon_sym_while] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1733), + [anon_sym_with] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1733), + [anon_sym_global] = ACTIONS(1733), + [anon_sym_nonlocal] = ACTIONS(1733), + [anon_sym_exec] = ACTIONS(1733), + [anon_sym_type] = ACTIONS(1733), + [anon_sym_class] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_AT] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_not] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_lambda] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1735), + [anon_sym_None] = ACTIONS(1733), + [sym_integer] = ACTIONS(1733), + [sym_float] = ACTIONS(1735), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_api] = ACTIONS(1733), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1733), + [anon_sym_include] = ACTIONS(1733), + [anon_sym_DEF] = ACTIONS(1733), + [anon_sym_cdef] = ACTIONS(1733), + [anon_sym_cpdef] = ACTIONS(1733), + [anon_sym_int] = ACTIONS(1733), + [anon_sym_double] = ACTIONS(1733), + [anon_sym_complex] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_signed] = ACTIONS(1733), + [anon_sym_unsigned] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_short] = ACTIONS(1733), + [anon_sym_long] = ACTIONS(1733), + [anon_sym_const] = ACTIONS(1733), + [anon_sym_volatile] = ACTIONS(1733), + [anon_sym_ctypedef] = ACTIONS(1733), + [anon_sym_struct] = ACTIONS(1733), + [anon_sym_union] = ACTIONS(1733), + [anon_sym_enum] = ACTIONS(1733), + [anon_sym_cppclass] = ACTIONS(1733), + [anon_sym_fused] = ACTIONS(1733), + [anon_sym_public] = ACTIONS(1733), + [anon_sym_packed] = ACTIONS(1733), + [anon_sym_inline] = ACTIONS(1733), + [anon_sym_readonly] = ACTIONS(1733), + [anon_sym_sizeof] = ACTIONS(1733), + [sym__dedent] = ACTIONS(1735), + [sym_string_start] = ACTIONS(1735), }, [557] = { - [sym_identifier] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_import] = ACTIONS(1763), - [anon_sym_cimport] = ACTIONS(1763), - [anon_sym_from] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_print] = ACTIONS(1763), - [anon_sym_assert] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_del] = ACTIONS(1763), - [anon_sym_raise] = ACTIONS(1763), - [anon_sym_pass] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1763), - [anon_sym_async] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_with] = ACTIONS(1763), - [anon_sym_def] = ACTIONS(1763), - [anon_sym_global] = ACTIONS(1763), - [anon_sym_nonlocal] = ACTIONS(1763), - [anon_sym_exec] = ACTIONS(1763), - [anon_sym_type] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_AT] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_not] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_lambda] = ACTIONS(1763), - [anon_sym_yield] = ACTIONS(1763), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), - [anon_sym_None] = ACTIONS(1763), - [sym_integer] = ACTIONS(1763), - [sym_float] = ACTIONS(1765), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_api] = ACTIONS(1763), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1763), - [anon_sym_include] = ACTIONS(1763), - [anon_sym_DEF] = ACTIONS(1763), - [anon_sym_cdef] = ACTIONS(1763), - [anon_sym_cpdef] = ACTIONS(1763), - [anon_sym_int] = ACTIONS(1763), - [anon_sym_double] = ACTIONS(1763), - [anon_sym_complex] = ACTIONS(1763), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_signed] = ACTIONS(1763), - [anon_sym_unsigned] = ACTIONS(1763), - [anon_sym_char] = ACTIONS(1763), - [anon_sym_short] = ACTIONS(1763), - [anon_sym_long] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_volatile] = ACTIONS(1763), - [anon_sym_ctypedef] = ACTIONS(1763), - [anon_sym_struct] = ACTIONS(1763), - [anon_sym_union] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [anon_sym_cppclass] = ACTIONS(1763), - [anon_sym_fused] = ACTIONS(1763), - [anon_sym_public] = ACTIONS(1763), - [anon_sym_packed] = ACTIONS(1763), - [anon_sym_inline] = ACTIONS(1763), - [anon_sym_readonly] = ACTIONS(1763), - [anon_sym_sizeof] = ACTIONS(1763), - [sym__dedent] = ACTIONS(1765), - [sym_string_start] = ACTIONS(1765), + [sym_identifier] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1739), + [anon_sym_import] = ACTIONS(1737), + [anon_sym_cimport] = ACTIONS(1737), + [anon_sym_from] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_print] = ACTIONS(1737), + [anon_sym_assert] = ACTIONS(1737), + [anon_sym_return] = ACTIONS(1737), + [anon_sym_del] = ACTIONS(1737), + [anon_sym_raise] = ACTIONS(1737), + [anon_sym_pass] = ACTIONS(1737), + [anon_sym_break] = ACTIONS(1737), + [anon_sym_continue] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1737), + [anon_sym_match] = ACTIONS(1737), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_for] = ACTIONS(1737), + [anon_sym_while] = ACTIONS(1737), + [anon_sym_try] = ACTIONS(1737), + [anon_sym_with] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1737), + [anon_sym_global] = ACTIONS(1737), + [anon_sym_nonlocal] = ACTIONS(1737), + [anon_sym_exec] = ACTIONS(1737), + [anon_sym_type] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_not] = ACTIONS(1737), + [anon_sym_AMP] = ACTIONS(1739), + [anon_sym_TILDE] = ACTIONS(1739), + [anon_sym_LT] = ACTIONS(1739), + [anon_sym_lambda] = ACTIONS(1737), + [anon_sym_yield] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1739), + [anon_sym_None] = ACTIONS(1737), + [sym_integer] = ACTIONS(1737), + [sym_float] = ACTIONS(1739), + [anon_sym_await] = ACTIONS(1737), + [anon_sym_api] = ACTIONS(1737), + [sym_true] = ACTIONS(1737), + [sym_false] = ACTIONS(1737), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1737), + [anon_sym_include] = ACTIONS(1737), + [anon_sym_DEF] = ACTIONS(1737), + [anon_sym_cdef] = ACTIONS(1737), + [anon_sym_cpdef] = ACTIONS(1737), + [anon_sym_int] = ACTIONS(1737), + [anon_sym_double] = ACTIONS(1737), + [anon_sym_complex] = ACTIONS(1737), + [anon_sym_new] = ACTIONS(1737), + [anon_sym_signed] = ACTIONS(1737), + [anon_sym_unsigned] = ACTIONS(1737), + [anon_sym_char] = ACTIONS(1737), + [anon_sym_short] = ACTIONS(1737), + [anon_sym_long] = ACTIONS(1737), + [anon_sym_const] = ACTIONS(1737), + [anon_sym_volatile] = ACTIONS(1737), + [anon_sym_ctypedef] = ACTIONS(1737), + [anon_sym_struct] = ACTIONS(1737), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_enum] = ACTIONS(1737), + [anon_sym_cppclass] = ACTIONS(1737), + [anon_sym_fused] = ACTIONS(1737), + [anon_sym_public] = ACTIONS(1737), + [anon_sym_packed] = ACTIONS(1737), + [anon_sym_inline] = ACTIONS(1737), + [anon_sym_readonly] = ACTIONS(1737), + [anon_sym_sizeof] = ACTIONS(1737), + [sym__dedent] = ACTIONS(1739), + [sym_string_start] = ACTIONS(1739), }, [558] = { - [sym_identifier] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_import] = ACTIONS(1767), - [anon_sym_cimport] = ACTIONS(1767), - [anon_sym_from] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1769), - [anon_sym_print] = ACTIONS(1767), - [anon_sym_assert] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_del] = ACTIONS(1767), - [anon_sym_raise] = ACTIONS(1767), - [anon_sym_pass] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_match] = ACTIONS(1767), - [anon_sym_async] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_with] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1767), - [anon_sym_global] = ACTIONS(1767), - [anon_sym_nonlocal] = ACTIONS(1767), - [anon_sym_exec] = ACTIONS(1767), - [anon_sym_type] = ACTIONS(1767), - [anon_sym_class] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1769), - [anon_sym_AT] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_not] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_lambda] = ACTIONS(1767), - [anon_sym_yield] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1769), - [anon_sym_None] = ACTIONS(1767), - [sym_integer] = ACTIONS(1767), - [sym_float] = ACTIONS(1769), - [anon_sym_await] = ACTIONS(1767), - [anon_sym_api] = ACTIONS(1767), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1767), - [anon_sym_include] = ACTIONS(1767), - [anon_sym_DEF] = ACTIONS(1767), - [anon_sym_cdef] = ACTIONS(1767), - [anon_sym_cpdef] = ACTIONS(1767), - [anon_sym_int] = ACTIONS(1767), - [anon_sym_double] = ACTIONS(1767), - [anon_sym_complex] = ACTIONS(1767), - [anon_sym_new] = ACTIONS(1767), - [anon_sym_signed] = ACTIONS(1767), - [anon_sym_unsigned] = ACTIONS(1767), - [anon_sym_char] = ACTIONS(1767), - [anon_sym_short] = ACTIONS(1767), - [anon_sym_long] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_volatile] = ACTIONS(1767), - [anon_sym_ctypedef] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1767), - [anon_sym_union] = ACTIONS(1767), - [anon_sym_enum] = ACTIONS(1767), - [anon_sym_cppclass] = ACTIONS(1767), - [anon_sym_fused] = ACTIONS(1767), - [anon_sym_public] = ACTIONS(1767), - [anon_sym_packed] = ACTIONS(1767), - [anon_sym_inline] = ACTIONS(1767), - [anon_sym_readonly] = ACTIONS(1767), - [anon_sym_sizeof] = ACTIONS(1767), - [sym__dedent] = ACTIONS(1769), - [sym_string_start] = ACTIONS(1769), + [sym_identifier] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1743), + [anon_sym_import] = ACTIONS(1741), + [anon_sym_cimport] = ACTIONS(1741), + [anon_sym_from] = ACTIONS(1741), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1743), + [anon_sym_print] = ACTIONS(1741), + [anon_sym_assert] = ACTIONS(1741), + [anon_sym_return] = ACTIONS(1741), + [anon_sym_del] = ACTIONS(1741), + [anon_sym_raise] = ACTIONS(1741), + [anon_sym_pass] = ACTIONS(1741), + [anon_sym_break] = ACTIONS(1741), + [anon_sym_continue] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1741), + [anon_sym_match] = ACTIONS(1741), + [anon_sym_async] = ACTIONS(1741), + [anon_sym_for] = ACTIONS(1741), + [anon_sym_while] = ACTIONS(1741), + [anon_sym_try] = ACTIONS(1741), + [anon_sym_with] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1741), + [anon_sym_global] = ACTIONS(1741), + [anon_sym_nonlocal] = ACTIONS(1741), + [anon_sym_exec] = ACTIONS(1741), + [anon_sym_type] = ACTIONS(1741), + [anon_sym_class] = ACTIONS(1741), + [anon_sym_LBRACK] = ACTIONS(1743), + [anon_sym_AT] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_not] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1743), + [anon_sym_LT] = ACTIONS(1743), + [anon_sym_lambda] = ACTIONS(1741), + [anon_sym_yield] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), + [anon_sym_None] = ACTIONS(1741), + [sym_integer] = ACTIONS(1741), + [sym_float] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_api] = ACTIONS(1741), + [sym_true] = ACTIONS(1741), + [sym_false] = ACTIONS(1741), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1741), + [anon_sym_include] = ACTIONS(1741), + [anon_sym_DEF] = ACTIONS(1741), + [anon_sym_cdef] = ACTIONS(1741), + [anon_sym_cpdef] = ACTIONS(1741), + [anon_sym_int] = ACTIONS(1741), + [anon_sym_double] = ACTIONS(1741), + [anon_sym_complex] = ACTIONS(1741), + [anon_sym_new] = ACTIONS(1741), + [anon_sym_signed] = ACTIONS(1741), + [anon_sym_unsigned] = ACTIONS(1741), + [anon_sym_char] = ACTIONS(1741), + [anon_sym_short] = ACTIONS(1741), + [anon_sym_long] = ACTIONS(1741), + [anon_sym_const] = ACTIONS(1741), + [anon_sym_volatile] = ACTIONS(1741), + [anon_sym_ctypedef] = ACTIONS(1741), + [anon_sym_struct] = ACTIONS(1741), + [anon_sym_union] = ACTIONS(1741), + [anon_sym_enum] = ACTIONS(1741), + [anon_sym_cppclass] = ACTIONS(1741), + [anon_sym_fused] = ACTIONS(1741), + [anon_sym_public] = ACTIONS(1741), + [anon_sym_packed] = ACTIONS(1741), + [anon_sym_inline] = ACTIONS(1741), + [anon_sym_readonly] = ACTIONS(1741), + [anon_sym_sizeof] = ACTIONS(1741), + [sym__dedent] = ACTIONS(1743), + [sym_string_start] = ACTIONS(1743), }, [559] = { - [sym_identifier] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1773), - [anon_sym_import] = ACTIONS(1771), - [anon_sym_cimport] = ACTIONS(1771), - [anon_sym_from] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_print] = ACTIONS(1771), - [anon_sym_assert] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_del] = ACTIONS(1771), - [anon_sym_raise] = ACTIONS(1771), - [anon_sym_pass] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_match] = ACTIONS(1771), - [anon_sym_async] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_with] = ACTIONS(1771), - [anon_sym_def] = ACTIONS(1771), - [anon_sym_global] = ACTIONS(1771), - [anon_sym_nonlocal] = ACTIONS(1771), - [anon_sym_exec] = ACTIONS(1771), - [anon_sym_type] = ACTIONS(1771), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1773), - [anon_sym_AT] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_not] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_LT] = ACTIONS(1773), - [anon_sym_lambda] = ACTIONS(1771), - [anon_sym_yield] = ACTIONS(1771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), - [anon_sym_None] = ACTIONS(1771), - [sym_integer] = ACTIONS(1771), - [sym_float] = ACTIONS(1773), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_api] = ACTIONS(1771), - [sym_true] = ACTIONS(1771), - [sym_false] = ACTIONS(1771), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1771), - [anon_sym_include] = ACTIONS(1771), - [anon_sym_DEF] = ACTIONS(1771), - [anon_sym_cdef] = ACTIONS(1771), - [anon_sym_cpdef] = ACTIONS(1771), - [anon_sym_int] = ACTIONS(1771), - [anon_sym_double] = ACTIONS(1771), - [anon_sym_complex] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1771), - [anon_sym_signed] = ACTIONS(1771), - [anon_sym_unsigned] = ACTIONS(1771), - [anon_sym_char] = ACTIONS(1771), - [anon_sym_short] = ACTIONS(1771), - [anon_sym_long] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_volatile] = ACTIONS(1771), - [anon_sym_ctypedef] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1771), - [anon_sym_union] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [anon_sym_cppclass] = ACTIONS(1771), - [anon_sym_fused] = ACTIONS(1771), - [anon_sym_public] = ACTIONS(1771), - [anon_sym_packed] = ACTIONS(1771), - [anon_sym_inline] = ACTIONS(1771), - [anon_sym_readonly] = ACTIONS(1771), - [anon_sym_sizeof] = ACTIONS(1771), - [sym__dedent] = ACTIONS(1773), - [sym_string_start] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1745), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_import] = ACTIONS(1745), + [anon_sym_cimport] = ACTIONS(1745), + [anon_sym_from] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_STAR] = ACTIONS(1747), + [anon_sym_print] = ACTIONS(1745), + [anon_sym_assert] = ACTIONS(1745), + [anon_sym_return] = ACTIONS(1745), + [anon_sym_del] = ACTIONS(1745), + [anon_sym_raise] = ACTIONS(1745), + [anon_sym_pass] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(1745), + [anon_sym_continue] = ACTIONS(1745), + [anon_sym_if] = ACTIONS(1745), + [anon_sym_match] = ACTIONS(1745), + [anon_sym_async] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1745), + [anon_sym_while] = ACTIONS(1745), + [anon_sym_try] = ACTIONS(1745), + [anon_sym_with] = ACTIONS(1745), + [anon_sym_def] = ACTIONS(1745), + [anon_sym_global] = ACTIONS(1745), + [anon_sym_nonlocal] = ACTIONS(1745), + [anon_sym_exec] = ACTIONS(1745), + [anon_sym_type] = ACTIONS(1745), + [anon_sym_class] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1747), + [anon_sym_AT] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_LBRACE] = ACTIONS(1747), + [anon_sym_PLUS] = ACTIONS(1747), + [anon_sym_not] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1747), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_lambda] = ACTIONS(1745), + [anon_sym_yield] = ACTIONS(1745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1747), + [anon_sym_None] = ACTIONS(1745), + [sym_integer] = ACTIONS(1745), + [sym_float] = ACTIONS(1747), + [anon_sym_await] = ACTIONS(1745), + [anon_sym_api] = ACTIONS(1745), + [sym_true] = ACTIONS(1745), + [sym_false] = ACTIONS(1745), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1745), + [anon_sym_include] = ACTIONS(1745), + [anon_sym_DEF] = ACTIONS(1745), + [anon_sym_cdef] = ACTIONS(1745), + [anon_sym_cpdef] = ACTIONS(1745), + [anon_sym_int] = ACTIONS(1745), + [anon_sym_double] = ACTIONS(1745), + [anon_sym_complex] = ACTIONS(1745), + [anon_sym_new] = ACTIONS(1745), + [anon_sym_signed] = ACTIONS(1745), + [anon_sym_unsigned] = ACTIONS(1745), + [anon_sym_char] = ACTIONS(1745), + [anon_sym_short] = ACTIONS(1745), + [anon_sym_long] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_volatile] = ACTIONS(1745), + [anon_sym_ctypedef] = ACTIONS(1745), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), + [anon_sym_cppclass] = ACTIONS(1745), + [anon_sym_fused] = ACTIONS(1745), + [anon_sym_public] = ACTIONS(1745), + [anon_sym_packed] = ACTIONS(1745), + [anon_sym_inline] = ACTIONS(1745), + [anon_sym_readonly] = ACTIONS(1745), + [anon_sym_sizeof] = ACTIONS(1745), + [sym__dedent] = ACTIONS(1747), + [sym_string_start] = ACTIONS(1747), }, [560] = { - [sym_identifier] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_import] = ACTIONS(1775), - [anon_sym_cimport] = ACTIONS(1775), - [anon_sym_from] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_print] = ACTIONS(1775), - [anon_sym_assert] = ACTIONS(1775), - [anon_sym_return] = ACTIONS(1775), - [anon_sym_del] = ACTIONS(1775), - [anon_sym_raise] = ACTIONS(1775), - [anon_sym_pass] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(1775), - [anon_sym_match] = ACTIONS(1775), - [anon_sym_async] = ACTIONS(1775), - [anon_sym_for] = ACTIONS(1775), - [anon_sym_while] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1775), - [anon_sym_with] = ACTIONS(1775), - [anon_sym_def] = ACTIONS(1775), - [anon_sym_global] = ACTIONS(1775), - [anon_sym_nonlocal] = ACTIONS(1775), - [anon_sym_exec] = ACTIONS(1775), - [anon_sym_type] = ACTIONS(1775), - [anon_sym_class] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1777), - [anon_sym_AT] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1777), - [anon_sym_not] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_LT] = ACTIONS(1777), - [anon_sym_lambda] = ACTIONS(1775), - [anon_sym_yield] = ACTIONS(1775), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1777), - [anon_sym_None] = ACTIONS(1775), - [sym_integer] = ACTIONS(1775), - [sym_float] = ACTIONS(1777), - [anon_sym_await] = ACTIONS(1775), - [anon_sym_api] = ACTIONS(1775), - [sym_true] = ACTIONS(1775), - [sym_false] = ACTIONS(1775), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1775), - [anon_sym_include] = ACTIONS(1775), - [anon_sym_DEF] = ACTIONS(1775), - [anon_sym_cdef] = ACTIONS(1775), - [anon_sym_cpdef] = ACTIONS(1775), - [anon_sym_int] = ACTIONS(1775), - [anon_sym_double] = ACTIONS(1775), - [anon_sym_complex] = ACTIONS(1775), - [anon_sym_new] = ACTIONS(1775), - [anon_sym_signed] = ACTIONS(1775), - [anon_sym_unsigned] = ACTIONS(1775), - [anon_sym_char] = ACTIONS(1775), - [anon_sym_short] = ACTIONS(1775), - [anon_sym_long] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_volatile] = ACTIONS(1775), - [anon_sym_ctypedef] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1775), - [anon_sym_union] = ACTIONS(1775), - [anon_sym_enum] = ACTIONS(1775), - [anon_sym_cppclass] = ACTIONS(1775), - [anon_sym_fused] = ACTIONS(1775), - [anon_sym_public] = ACTIONS(1775), - [anon_sym_packed] = ACTIONS(1775), - [anon_sym_inline] = ACTIONS(1775), - [anon_sym_readonly] = ACTIONS(1775), - [anon_sym_sizeof] = ACTIONS(1775), - [sym__dedent] = ACTIONS(1777), - [sym_string_start] = ACTIONS(1777), + [sym_identifier] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_import] = ACTIONS(1749), + [anon_sym_cimport] = ACTIONS(1749), + [anon_sym_from] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_STAR] = ACTIONS(1751), + [anon_sym_print] = ACTIONS(1749), + [anon_sym_assert] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_del] = ACTIONS(1749), + [anon_sym_raise] = ACTIONS(1749), + [anon_sym_pass] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_async] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_with] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_global] = ACTIONS(1749), + [anon_sym_nonlocal] = ACTIONS(1749), + [anon_sym_exec] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_class] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_AT] = ACTIONS(1751), + [anon_sym_DASH] = ACTIONS(1751), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_PLUS] = ACTIONS(1751), + [anon_sym_not] = ACTIONS(1749), + [anon_sym_AMP] = ACTIONS(1751), + [anon_sym_TILDE] = ACTIONS(1751), + [anon_sym_LT] = ACTIONS(1751), + [anon_sym_lambda] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1751), + [anon_sym_None] = ACTIONS(1749), + [sym_integer] = ACTIONS(1749), + [sym_float] = ACTIONS(1751), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_api] = ACTIONS(1749), + [sym_true] = ACTIONS(1749), + [sym_false] = ACTIONS(1749), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1749), + [anon_sym_include] = ACTIONS(1749), + [anon_sym_DEF] = ACTIONS(1749), + [anon_sym_cdef] = ACTIONS(1749), + [anon_sym_cpdef] = ACTIONS(1749), + [anon_sym_int] = ACTIONS(1749), + [anon_sym_double] = ACTIONS(1749), + [anon_sym_complex] = ACTIONS(1749), + [anon_sym_new] = ACTIONS(1749), + [anon_sym_signed] = ACTIONS(1749), + [anon_sym_unsigned] = ACTIONS(1749), + [anon_sym_char] = ACTIONS(1749), + [anon_sym_short] = ACTIONS(1749), + [anon_sym_long] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_volatile] = ACTIONS(1749), + [anon_sym_ctypedef] = ACTIONS(1749), + [anon_sym_struct] = ACTIONS(1749), + [anon_sym_union] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), + [anon_sym_cppclass] = ACTIONS(1749), + [anon_sym_fused] = ACTIONS(1749), + [anon_sym_public] = ACTIONS(1749), + [anon_sym_packed] = ACTIONS(1749), + [anon_sym_inline] = ACTIONS(1749), + [anon_sym_readonly] = ACTIONS(1749), + [anon_sym_sizeof] = ACTIONS(1749), + [sym__dedent] = ACTIONS(1751), + [sym_string_start] = ACTIONS(1751), }, [561] = { - [sym_identifier] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_import] = ACTIONS(1779), - [anon_sym_cimport] = ACTIONS(1779), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_print] = ACTIONS(1779), - [anon_sym_assert] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_del] = ACTIONS(1779), - [anon_sym_raise] = ACTIONS(1779), - [anon_sym_pass] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_async] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_with] = ACTIONS(1779), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_global] = ACTIONS(1779), - [anon_sym_nonlocal] = ACTIONS(1779), - [anon_sym_exec] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_AT] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_not] = ACTIONS(1779), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_lambda] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(1779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1781), - [anon_sym_None] = ACTIONS(1779), - [sym_integer] = ACTIONS(1779), - [sym_float] = ACTIONS(1781), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_api] = ACTIONS(1779), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_include] = ACTIONS(1779), - [anon_sym_DEF] = ACTIONS(1779), - [anon_sym_cdef] = ACTIONS(1779), - [anon_sym_cpdef] = ACTIONS(1779), - [anon_sym_int] = ACTIONS(1779), - [anon_sym_double] = ACTIONS(1779), - [anon_sym_complex] = ACTIONS(1779), - [anon_sym_new] = ACTIONS(1779), - [anon_sym_signed] = ACTIONS(1779), - [anon_sym_unsigned] = ACTIONS(1779), - [anon_sym_char] = ACTIONS(1779), - [anon_sym_short] = ACTIONS(1779), - [anon_sym_long] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_volatile] = ACTIONS(1779), - [anon_sym_ctypedef] = ACTIONS(1779), - [anon_sym_struct] = ACTIONS(1779), - [anon_sym_union] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [anon_sym_cppclass] = ACTIONS(1779), - [anon_sym_fused] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_packed] = ACTIONS(1779), - [anon_sym_inline] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_sizeof] = ACTIONS(1779), - [sym__dedent] = ACTIONS(1781), - [sym_string_start] = ACTIONS(1781), + [sym_identifier] = ACTIONS(1753), + [anon_sym_SEMI] = ACTIONS(1755), + [anon_sym_import] = ACTIONS(1753), + [anon_sym_cimport] = ACTIONS(1753), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_print] = ACTIONS(1753), + [anon_sym_assert] = ACTIONS(1753), + [anon_sym_return] = ACTIONS(1753), + [anon_sym_del] = ACTIONS(1753), + [anon_sym_raise] = ACTIONS(1753), + [anon_sym_pass] = ACTIONS(1753), + [anon_sym_break] = ACTIONS(1753), + [anon_sym_continue] = ACTIONS(1753), + [anon_sym_if] = ACTIONS(1753), + [anon_sym_match] = ACTIONS(1753), + [anon_sym_async] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1753), + [anon_sym_while] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1753), + [anon_sym_with] = ACTIONS(1753), + [anon_sym_def] = ACTIONS(1753), + [anon_sym_global] = ACTIONS(1753), + [anon_sym_nonlocal] = ACTIONS(1753), + [anon_sym_exec] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_class] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_not] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_TILDE] = ACTIONS(1755), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_lambda] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1755), + [anon_sym_None] = ACTIONS(1753), + [sym_integer] = ACTIONS(1753), + [sym_float] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1753), + [anon_sym_api] = ACTIONS(1753), + [sym_true] = ACTIONS(1753), + [sym_false] = ACTIONS(1753), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1753), + [anon_sym_include] = ACTIONS(1753), + [anon_sym_DEF] = ACTIONS(1753), + [anon_sym_cdef] = ACTIONS(1753), + [anon_sym_cpdef] = ACTIONS(1753), + [anon_sym_int] = ACTIONS(1753), + [anon_sym_double] = ACTIONS(1753), + [anon_sym_complex] = ACTIONS(1753), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_signed] = ACTIONS(1753), + [anon_sym_unsigned] = ACTIONS(1753), + [anon_sym_char] = ACTIONS(1753), + [anon_sym_short] = ACTIONS(1753), + [anon_sym_long] = ACTIONS(1753), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_volatile] = ACTIONS(1753), + [anon_sym_ctypedef] = ACTIONS(1753), + [anon_sym_struct] = ACTIONS(1753), + [anon_sym_union] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [anon_sym_cppclass] = ACTIONS(1753), + [anon_sym_fused] = ACTIONS(1753), + [anon_sym_public] = ACTIONS(1753), + [anon_sym_packed] = ACTIONS(1753), + [anon_sym_inline] = ACTIONS(1753), + [anon_sym_readonly] = ACTIONS(1753), + [anon_sym_sizeof] = ACTIONS(1753), + [sym__dedent] = ACTIONS(1755), + [sym_string_start] = ACTIONS(1755), }, [562] = { - [sym_identifier] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_import] = ACTIONS(1783), - [anon_sym_cimport] = ACTIONS(1783), - [anon_sym_from] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1785), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_print] = ACTIONS(1783), - [anon_sym_assert] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_del] = ACTIONS(1783), - [anon_sym_raise] = ACTIONS(1783), - [anon_sym_pass] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_async] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_with] = ACTIONS(1783), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_global] = ACTIONS(1783), - [anon_sym_nonlocal] = ACTIONS(1783), - [anon_sym_exec] = ACTIONS(1783), - [anon_sym_type] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1785), - [anon_sym_AT] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1785), - [anon_sym_not] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1785), - [anon_sym_lambda] = ACTIONS(1783), - [anon_sym_yield] = ACTIONS(1783), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), - [anon_sym_None] = ACTIONS(1783), - [sym_integer] = ACTIONS(1783), - [sym_float] = ACTIONS(1785), - [anon_sym_await] = ACTIONS(1783), - [anon_sym_api] = ACTIONS(1783), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1783), - [anon_sym_include] = ACTIONS(1783), - [anon_sym_DEF] = ACTIONS(1783), - [anon_sym_cdef] = ACTIONS(1783), - [anon_sym_cpdef] = ACTIONS(1783), - [anon_sym_int] = ACTIONS(1783), - [anon_sym_double] = ACTIONS(1783), - [anon_sym_complex] = ACTIONS(1783), - [anon_sym_new] = ACTIONS(1783), - [anon_sym_signed] = ACTIONS(1783), - [anon_sym_unsigned] = ACTIONS(1783), - [anon_sym_char] = ACTIONS(1783), - [anon_sym_short] = ACTIONS(1783), - [anon_sym_long] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_volatile] = ACTIONS(1783), - [anon_sym_ctypedef] = ACTIONS(1783), - [anon_sym_struct] = ACTIONS(1783), - [anon_sym_union] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [anon_sym_cppclass] = ACTIONS(1783), - [anon_sym_fused] = ACTIONS(1783), - [anon_sym_public] = ACTIONS(1783), - [anon_sym_packed] = ACTIONS(1783), - [anon_sym_inline] = ACTIONS(1783), - [anon_sym_readonly] = ACTIONS(1783), - [anon_sym_sizeof] = ACTIONS(1783), - [sym__dedent] = ACTIONS(1785), - [sym_string_start] = ACTIONS(1785), + [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), }, [563] = { - [sym_identifier] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_import] = ACTIONS(1787), - [anon_sym_cimport] = ACTIONS(1787), - [anon_sym_from] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_print] = ACTIONS(1787), - [anon_sym_assert] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_del] = ACTIONS(1787), - [anon_sym_raise] = ACTIONS(1787), - [anon_sym_pass] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_async] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_with] = ACTIONS(1787), - [anon_sym_def] = ACTIONS(1787), - [anon_sym_global] = ACTIONS(1787), - [anon_sym_nonlocal] = ACTIONS(1787), - [anon_sym_exec] = ACTIONS(1787), - [anon_sym_type] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1789), - [anon_sym_AT] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_not] = ACTIONS(1787), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1789), - [anon_sym_lambda] = ACTIONS(1787), - [anon_sym_yield] = ACTIONS(1787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1789), - [anon_sym_None] = ACTIONS(1787), - [sym_integer] = ACTIONS(1787), - [sym_float] = ACTIONS(1789), - [anon_sym_await] = ACTIONS(1787), - [anon_sym_api] = ACTIONS(1787), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1787), - [anon_sym_include] = ACTIONS(1787), - [anon_sym_DEF] = ACTIONS(1787), - [anon_sym_cdef] = ACTIONS(1787), - [anon_sym_cpdef] = ACTIONS(1787), - [anon_sym_int] = ACTIONS(1787), - [anon_sym_double] = ACTIONS(1787), - [anon_sym_complex] = ACTIONS(1787), - [anon_sym_new] = ACTIONS(1787), - [anon_sym_signed] = ACTIONS(1787), - [anon_sym_unsigned] = ACTIONS(1787), - [anon_sym_char] = ACTIONS(1787), - [anon_sym_short] = ACTIONS(1787), - [anon_sym_long] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_volatile] = ACTIONS(1787), - [anon_sym_ctypedef] = ACTIONS(1787), - [anon_sym_struct] = ACTIONS(1787), - [anon_sym_union] = ACTIONS(1787), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_cppclass] = ACTIONS(1787), - [anon_sym_fused] = ACTIONS(1787), - [anon_sym_public] = ACTIONS(1787), - [anon_sym_packed] = ACTIONS(1787), - [anon_sym_inline] = ACTIONS(1787), - [anon_sym_readonly] = ACTIONS(1787), - [anon_sym_sizeof] = ACTIONS(1787), - [sym__dedent] = ACTIONS(1789), - [sym_string_start] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_import] = ACTIONS(1761), + [anon_sym_cimport] = ACTIONS(1761), + [anon_sym_from] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_print] = ACTIONS(1761), + [anon_sym_assert] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_del] = ACTIONS(1761), + [anon_sym_raise] = ACTIONS(1761), + [anon_sym_pass] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_match] = ACTIONS(1761), + [anon_sym_async] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1761), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_with] = ACTIONS(1761), + [anon_sym_def] = ACTIONS(1761), + [anon_sym_global] = ACTIONS(1761), + [anon_sym_nonlocal] = ACTIONS(1761), + [anon_sym_exec] = ACTIONS(1761), + [anon_sym_type] = ACTIONS(1761), + [anon_sym_class] = ACTIONS(1761), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_AT] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_not] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_lambda] = ACTIONS(1761), + [anon_sym_yield] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1763), + [anon_sym_None] = ACTIONS(1761), + [sym_integer] = ACTIONS(1761), + [sym_float] = ACTIONS(1763), + [anon_sym_await] = ACTIONS(1761), + [anon_sym_api] = ACTIONS(1761), + [sym_true] = ACTIONS(1761), + [sym_false] = ACTIONS(1761), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1761), + [anon_sym_include] = ACTIONS(1761), + [anon_sym_DEF] = ACTIONS(1761), + [anon_sym_cdef] = ACTIONS(1761), + [anon_sym_cpdef] = ACTIONS(1761), + [anon_sym_int] = ACTIONS(1761), + [anon_sym_double] = ACTIONS(1761), + [anon_sym_complex] = ACTIONS(1761), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_signed] = ACTIONS(1761), + [anon_sym_unsigned] = ACTIONS(1761), + [anon_sym_char] = ACTIONS(1761), + [anon_sym_short] = ACTIONS(1761), + [anon_sym_long] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1761), + [anon_sym_volatile] = ACTIONS(1761), + [anon_sym_ctypedef] = ACTIONS(1761), + [anon_sym_struct] = ACTIONS(1761), + [anon_sym_union] = ACTIONS(1761), + [anon_sym_enum] = ACTIONS(1761), + [anon_sym_cppclass] = ACTIONS(1761), + [anon_sym_fused] = ACTIONS(1761), + [anon_sym_public] = ACTIONS(1761), + [anon_sym_packed] = ACTIONS(1761), + [anon_sym_inline] = ACTIONS(1761), + [anon_sym_readonly] = ACTIONS(1761), + [anon_sym_sizeof] = ACTIONS(1761), + [sym__dedent] = ACTIONS(1763), + [sym_string_start] = ACTIONS(1763), }, [564] = { - [sym_identifier] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_import] = ACTIONS(1791), - [anon_sym_cimport] = ACTIONS(1791), - [anon_sym_from] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_print] = ACTIONS(1791), - [anon_sym_assert] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_del] = ACTIONS(1791), - [anon_sym_raise] = ACTIONS(1791), - [anon_sym_pass] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_match] = ACTIONS(1791), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_with] = ACTIONS(1791), - [anon_sym_def] = ACTIONS(1791), - [anon_sym_global] = ACTIONS(1791), - [anon_sym_nonlocal] = ACTIONS(1791), - [anon_sym_exec] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_AT] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_not] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_TILDE] = ACTIONS(1793), - [anon_sym_LT] = ACTIONS(1793), - [anon_sym_lambda] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1793), - [anon_sym_None] = ACTIONS(1791), - [sym_integer] = ACTIONS(1791), - [sym_float] = ACTIONS(1793), - [anon_sym_await] = ACTIONS(1791), - [anon_sym_api] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1791), - [anon_sym_include] = ACTIONS(1791), - [anon_sym_DEF] = ACTIONS(1791), - [anon_sym_cdef] = ACTIONS(1791), - [anon_sym_cpdef] = ACTIONS(1791), - [anon_sym_int] = ACTIONS(1791), - [anon_sym_double] = ACTIONS(1791), - [anon_sym_complex] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1791), - [anon_sym_signed] = ACTIONS(1791), - [anon_sym_unsigned] = ACTIONS(1791), - [anon_sym_char] = ACTIONS(1791), - [anon_sym_short] = ACTIONS(1791), - [anon_sym_long] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_volatile] = ACTIONS(1791), - [anon_sym_ctypedef] = ACTIONS(1791), - [anon_sym_struct] = ACTIONS(1791), - [anon_sym_union] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_cppclass] = ACTIONS(1791), - [anon_sym_fused] = ACTIONS(1791), - [anon_sym_public] = ACTIONS(1791), - [anon_sym_packed] = ACTIONS(1791), - [anon_sym_inline] = ACTIONS(1791), - [anon_sym_readonly] = ACTIONS(1791), - [anon_sym_sizeof] = ACTIONS(1791), - [sym__dedent] = ACTIONS(1793), - [sym_string_start] = ACTIONS(1793), + [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), }, [565] = { - [sym_identifier] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_import] = ACTIONS(1795), - [anon_sym_cimport] = ACTIONS(1795), - [anon_sym_from] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_print] = ACTIONS(1795), - [anon_sym_assert] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_del] = ACTIONS(1795), - [anon_sym_raise] = ACTIONS(1795), - [anon_sym_pass] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_match] = ACTIONS(1795), - [anon_sym_async] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_while] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1795), - [anon_sym_with] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1795), - [anon_sym_global] = ACTIONS(1795), - [anon_sym_nonlocal] = ACTIONS(1795), - [anon_sym_exec] = ACTIONS(1795), - [anon_sym_type] = ACTIONS(1795), - [anon_sym_class] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1797), - [anon_sym_AT] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_not] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1797), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_lambda] = ACTIONS(1795), - [anon_sym_yield] = ACTIONS(1795), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), - [anon_sym_None] = ACTIONS(1795), - [sym_integer] = ACTIONS(1795), - [sym_float] = ACTIONS(1797), - [anon_sym_await] = ACTIONS(1795), - [anon_sym_api] = ACTIONS(1795), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1795), - [anon_sym_include] = ACTIONS(1795), - [anon_sym_DEF] = ACTIONS(1795), - [anon_sym_cdef] = ACTIONS(1795), - [anon_sym_cpdef] = ACTIONS(1795), - [anon_sym_int] = ACTIONS(1795), - [anon_sym_double] = ACTIONS(1795), - [anon_sym_complex] = ACTIONS(1795), - [anon_sym_new] = ACTIONS(1795), - [anon_sym_signed] = ACTIONS(1795), - [anon_sym_unsigned] = ACTIONS(1795), - [anon_sym_char] = ACTIONS(1795), - [anon_sym_short] = ACTIONS(1795), - [anon_sym_long] = ACTIONS(1795), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_volatile] = ACTIONS(1795), - [anon_sym_ctypedef] = ACTIONS(1795), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_union] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [anon_sym_cppclass] = ACTIONS(1795), - [anon_sym_fused] = ACTIONS(1795), - [anon_sym_public] = ACTIONS(1795), - [anon_sym_packed] = ACTIONS(1795), - [anon_sym_inline] = ACTIONS(1795), - [anon_sym_readonly] = ACTIONS(1795), - [anon_sym_sizeof] = ACTIONS(1795), - [sym__dedent] = ACTIONS(1797), - [sym_string_start] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_import] = ACTIONS(1769), + [anon_sym_cimport] = ACTIONS(1769), + [anon_sym_from] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_print] = ACTIONS(1769), + [anon_sym_assert] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_del] = ACTIONS(1769), + [anon_sym_raise] = ACTIONS(1769), + [anon_sym_pass] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_async] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_with] = ACTIONS(1769), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_global] = ACTIONS(1769), + [anon_sym_nonlocal] = ACTIONS(1769), + [anon_sym_exec] = ACTIONS(1769), + [anon_sym_type] = ACTIONS(1769), + [anon_sym_class] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1771), + [anon_sym_not] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_lambda] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1771), + [anon_sym_None] = ACTIONS(1769), + [sym_integer] = ACTIONS(1769), + [sym_float] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_api] = ACTIONS(1769), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1769), + [anon_sym_include] = ACTIONS(1769), + [anon_sym_DEF] = ACTIONS(1769), + [anon_sym_cdef] = ACTIONS(1769), + [anon_sym_cpdef] = ACTIONS(1769), + [anon_sym_int] = ACTIONS(1769), + [anon_sym_double] = ACTIONS(1769), + [anon_sym_complex] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_signed] = ACTIONS(1769), + [anon_sym_unsigned] = ACTIONS(1769), + [anon_sym_char] = ACTIONS(1769), + [anon_sym_short] = ACTIONS(1769), + [anon_sym_long] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_volatile] = ACTIONS(1769), + [anon_sym_ctypedef] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_enum] = ACTIONS(1769), + [anon_sym_cppclass] = ACTIONS(1769), + [anon_sym_fused] = ACTIONS(1769), + [anon_sym_public] = ACTIONS(1769), + [anon_sym_packed] = ACTIONS(1769), + [anon_sym_inline] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_sizeof] = ACTIONS(1769), + [sym__dedent] = ACTIONS(1771), + [sym_string_start] = ACTIONS(1771), }, [566] = { - [sym_identifier] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_import] = ACTIONS(1799), - [anon_sym_cimport] = ACTIONS(1799), - [anon_sym_from] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_print] = ACTIONS(1799), - [anon_sym_assert] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_del] = ACTIONS(1799), - [anon_sym_raise] = ACTIONS(1799), - [anon_sym_pass] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_async] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [anon_sym_with] = ACTIONS(1799), - [anon_sym_def] = ACTIONS(1799), - [anon_sym_global] = ACTIONS(1799), - [anon_sym_nonlocal] = ACTIONS(1799), - [anon_sym_exec] = ACTIONS(1799), - [anon_sym_type] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_not] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_lambda] = ACTIONS(1799), - [anon_sym_yield] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1801), - [anon_sym_None] = ACTIONS(1799), - [sym_integer] = ACTIONS(1799), - [sym_float] = ACTIONS(1801), - [anon_sym_await] = ACTIONS(1799), - [anon_sym_api] = ACTIONS(1799), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1799), - [anon_sym_include] = ACTIONS(1799), - [anon_sym_DEF] = ACTIONS(1799), - [anon_sym_cdef] = ACTIONS(1799), - [anon_sym_cpdef] = ACTIONS(1799), - [anon_sym_int] = ACTIONS(1799), - [anon_sym_double] = ACTIONS(1799), - [anon_sym_complex] = ACTIONS(1799), - [anon_sym_new] = ACTIONS(1799), - [anon_sym_signed] = ACTIONS(1799), - [anon_sym_unsigned] = ACTIONS(1799), - [anon_sym_char] = ACTIONS(1799), - [anon_sym_short] = ACTIONS(1799), - [anon_sym_long] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_volatile] = ACTIONS(1799), - [anon_sym_ctypedef] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_cppclass] = ACTIONS(1799), - [anon_sym_fused] = ACTIONS(1799), - [anon_sym_public] = ACTIONS(1799), - [anon_sym_packed] = ACTIONS(1799), - [anon_sym_inline] = ACTIONS(1799), - [anon_sym_readonly] = ACTIONS(1799), - [anon_sym_sizeof] = ACTIONS(1799), - [sym__dedent] = ACTIONS(1801), - [sym_string_start] = ACTIONS(1801), + [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), }, [567] = { - [sym_identifier] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_import] = ACTIONS(1803), - [anon_sym_cimport] = ACTIONS(1803), - [anon_sym_from] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_print] = ACTIONS(1803), - [anon_sym_assert] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_del] = ACTIONS(1803), - [anon_sym_raise] = ACTIONS(1803), - [anon_sym_pass] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_match] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_with] = ACTIONS(1803), - [anon_sym_def] = ACTIONS(1803), - [anon_sym_global] = ACTIONS(1803), - [anon_sym_nonlocal] = ACTIONS(1803), - [anon_sym_exec] = ACTIONS(1803), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1805), - [anon_sym_not] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_lambda] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1805), - [anon_sym_None] = ACTIONS(1803), - [sym_integer] = ACTIONS(1803), - [sym_float] = ACTIONS(1805), - [anon_sym_await] = ACTIONS(1803), - [anon_sym_api] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1803), - [anon_sym_include] = ACTIONS(1803), - [anon_sym_DEF] = ACTIONS(1803), - [anon_sym_cdef] = ACTIONS(1803), - [anon_sym_cpdef] = ACTIONS(1803), - [anon_sym_int] = ACTIONS(1803), - [anon_sym_double] = ACTIONS(1803), - [anon_sym_complex] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_signed] = ACTIONS(1803), - [anon_sym_unsigned] = ACTIONS(1803), - [anon_sym_char] = ACTIONS(1803), - [anon_sym_short] = ACTIONS(1803), - [anon_sym_long] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_volatile] = ACTIONS(1803), - [anon_sym_ctypedef] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_cppclass] = ACTIONS(1803), - [anon_sym_fused] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_packed] = ACTIONS(1803), - [anon_sym_inline] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_sizeof] = ACTIONS(1803), - [sym__dedent] = ACTIONS(1805), - [sym_string_start] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1777), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_import] = ACTIONS(1777), + [anon_sym_cimport] = ACTIONS(1777), + [anon_sym_from] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_STAR] = ACTIONS(1779), + [anon_sym_print] = ACTIONS(1777), + [anon_sym_assert] = ACTIONS(1777), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_del] = ACTIONS(1777), + [anon_sym_raise] = ACTIONS(1777), + [anon_sym_pass] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(1777), + [anon_sym_match] = ACTIONS(1777), + [anon_sym_async] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1777), + [anon_sym_with] = ACTIONS(1777), + [anon_sym_def] = ACTIONS(1777), + [anon_sym_global] = ACTIONS(1777), + [anon_sym_nonlocal] = ACTIONS(1777), + [anon_sym_exec] = ACTIONS(1777), + [anon_sym_type] = ACTIONS(1777), + [anon_sym_class] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_not] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_lambda] = ACTIONS(1777), + [anon_sym_yield] = ACTIONS(1777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1779), + [anon_sym_None] = ACTIONS(1777), + [sym_integer] = ACTIONS(1777), + [sym_float] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1777), + [anon_sym_api] = ACTIONS(1777), + [sym_true] = ACTIONS(1777), + [sym_false] = ACTIONS(1777), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1777), + [anon_sym_include] = ACTIONS(1777), + [anon_sym_DEF] = ACTIONS(1777), + [anon_sym_cdef] = ACTIONS(1777), + [anon_sym_cpdef] = ACTIONS(1777), + [anon_sym_int] = ACTIONS(1777), + [anon_sym_double] = ACTIONS(1777), + [anon_sym_complex] = ACTIONS(1777), + [anon_sym_new] = ACTIONS(1777), + [anon_sym_signed] = ACTIONS(1777), + [anon_sym_unsigned] = ACTIONS(1777), + [anon_sym_char] = ACTIONS(1777), + [anon_sym_short] = ACTIONS(1777), + [anon_sym_long] = ACTIONS(1777), + [anon_sym_const] = ACTIONS(1777), + [anon_sym_volatile] = ACTIONS(1777), + [anon_sym_ctypedef] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1777), + [anon_sym_union] = ACTIONS(1777), + [anon_sym_enum] = ACTIONS(1777), + [anon_sym_cppclass] = ACTIONS(1777), + [anon_sym_fused] = ACTIONS(1777), + [anon_sym_public] = ACTIONS(1777), + [anon_sym_packed] = ACTIONS(1777), + [anon_sym_inline] = ACTIONS(1777), + [anon_sym_readonly] = ACTIONS(1777), + [anon_sym_sizeof] = ACTIONS(1777), + [sym__dedent] = ACTIONS(1779), + [sym_string_start] = ACTIONS(1779), }, [568] = { - [sym_identifier] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1807), - [anon_sym_cimport] = ACTIONS(1807), - [anon_sym_from] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_print] = ACTIONS(1807), - [anon_sym_assert] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_del] = ACTIONS(1807), - [anon_sym_raise] = ACTIONS(1807), - [anon_sym_pass] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1807), - [anon_sym_async] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1807), - [anon_sym_with] = ACTIONS(1807), - [anon_sym_def] = ACTIONS(1807), - [anon_sym_global] = ACTIONS(1807), - [anon_sym_nonlocal] = ACTIONS(1807), - [anon_sym_exec] = ACTIONS(1807), - [anon_sym_type] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_not] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_lambda] = ACTIONS(1807), - [anon_sym_yield] = ACTIONS(1807), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), - [anon_sym_None] = ACTIONS(1807), - [sym_integer] = ACTIONS(1807), - [sym_float] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1807), - [anon_sym_api] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1807), - [anon_sym_include] = ACTIONS(1807), - [anon_sym_DEF] = ACTIONS(1807), - [anon_sym_cdef] = ACTIONS(1807), - [anon_sym_cpdef] = ACTIONS(1807), - [anon_sym_int] = ACTIONS(1807), - [anon_sym_double] = ACTIONS(1807), - [anon_sym_complex] = ACTIONS(1807), - [anon_sym_new] = ACTIONS(1807), - [anon_sym_signed] = ACTIONS(1807), - [anon_sym_unsigned] = ACTIONS(1807), - [anon_sym_char] = ACTIONS(1807), - [anon_sym_short] = ACTIONS(1807), - [anon_sym_long] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_volatile] = ACTIONS(1807), - [anon_sym_ctypedef] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_union] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [anon_sym_cppclass] = ACTIONS(1807), - [anon_sym_fused] = ACTIONS(1807), - [anon_sym_public] = ACTIONS(1807), - [anon_sym_packed] = ACTIONS(1807), - [anon_sym_inline] = ACTIONS(1807), - [anon_sym_readonly] = ACTIONS(1807), - [anon_sym_sizeof] = ACTIONS(1807), - [sym__dedent] = ACTIONS(1809), - [sym_string_start] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_cimport] = ACTIONS(1781), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_print] = ACTIONS(1781), + [anon_sym_assert] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_del] = ACTIONS(1781), + [anon_sym_raise] = ACTIONS(1781), + [anon_sym_pass] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_match] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_def] = ACTIONS(1781), + [anon_sym_global] = ACTIONS(1781), + [anon_sym_nonlocal] = ACTIONS(1781), + [anon_sym_exec] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1783), + [anon_sym_AT] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_not] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1783), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_lambda] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1783), + [anon_sym_None] = ACTIONS(1781), + [sym_integer] = ACTIONS(1781), + [sym_float] = ACTIONS(1783), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_api] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1781), + [anon_sym_include] = ACTIONS(1781), + [anon_sym_DEF] = ACTIONS(1781), + [anon_sym_cdef] = ACTIONS(1781), + [anon_sym_cpdef] = ACTIONS(1781), + [anon_sym_int] = ACTIONS(1781), + [anon_sym_double] = ACTIONS(1781), + [anon_sym_complex] = ACTIONS(1781), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_signed] = ACTIONS(1781), + [anon_sym_unsigned] = ACTIONS(1781), + [anon_sym_char] = ACTIONS(1781), + [anon_sym_short] = ACTIONS(1781), + [anon_sym_long] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_volatile] = ACTIONS(1781), + [anon_sym_ctypedef] = ACTIONS(1781), + [anon_sym_struct] = ACTIONS(1781), + [anon_sym_union] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [anon_sym_cppclass] = ACTIONS(1781), + [anon_sym_fused] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_packed] = ACTIONS(1781), + [anon_sym_inline] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_sizeof] = ACTIONS(1781), + [sym__dedent] = ACTIONS(1783), + [sym_string_start] = ACTIONS(1783), }, [569] = { - [sym_identifier] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_import] = ACTIONS(1811), - [anon_sym_cimport] = ACTIONS(1811), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_print] = ACTIONS(1811), - [anon_sym_assert] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_del] = ACTIONS(1811), - [anon_sym_raise] = ACTIONS(1811), - [anon_sym_pass] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_match] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_with] = ACTIONS(1811), - [anon_sym_def] = ACTIONS(1811), - [anon_sym_global] = ACTIONS(1811), - [anon_sym_nonlocal] = ACTIONS(1811), - [anon_sym_exec] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_AT] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_not] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_lambda] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1813), - [anon_sym_None] = ACTIONS(1811), - [sym_integer] = ACTIONS(1811), - [sym_float] = ACTIONS(1813), - [anon_sym_await] = ACTIONS(1811), - [anon_sym_api] = ACTIONS(1811), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1811), - [anon_sym_include] = ACTIONS(1811), - [anon_sym_DEF] = ACTIONS(1811), - [anon_sym_cdef] = ACTIONS(1811), - [anon_sym_cpdef] = ACTIONS(1811), - [anon_sym_int] = ACTIONS(1811), - [anon_sym_double] = ACTIONS(1811), - [anon_sym_complex] = ACTIONS(1811), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_signed] = ACTIONS(1811), - [anon_sym_unsigned] = ACTIONS(1811), - [anon_sym_char] = ACTIONS(1811), - [anon_sym_short] = ACTIONS(1811), - [anon_sym_long] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_volatile] = ACTIONS(1811), - [anon_sym_ctypedef] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1811), - [anon_sym_union] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [anon_sym_cppclass] = ACTIONS(1811), - [anon_sym_fused] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_packed] = ACTIONS(1811), - [anon_sym_inline] = ACTIONS(1811), - [anon_sym_readonly] = ACTIONS(1811), - [anon_sym_sizeof] = ACTIONS(1811), - [sym__dedent] = ACTIONS(1813), - [sym_string_start] = ACTIONS(1813), + [sym_identifier] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1785), + [anon_sym_cimport] = ACTIONS(1785), + [anon_sym_from] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_print] = ACTIONS(1785), + [anon_sym_assert] = ACTIONS(1785), + [anon_sym_return] = ACTIONS(1785), + [anon_sym_del] = ACTIONS(1785), + [anon_sym_raise] = ACTIONS(1785), + [anon_sym_pass] = ACTIONS(1785), + [anon_sym_break] = ACTIONS(1785), + [anon_sym_continue] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(1785), + [anon_sym_match] = ACTIONS(1785), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1785), + [anon_sym_while] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1785), + [anon_sym_with] = ACTIONS(1785), + [anon_sym_def] = ACTIONS(1785), + [anon_sym_global] = ACTIONS(1785), + [anon_sym_nonlocal] = ACTIONS(1785), + [anon_sym_exec] = ACTIONS(1785), + [anon_sym_type] = ACTIONS(1785), + [anon_sym_class] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_not] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_lambda] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1787), + [anon_sym_None] = ACTIONS(1785), + [sym_integer] = ACTIONS(1785), + [sym_float] = ACTIONS(1787), + [anon_sym_await] = ACTIONS(1785), + [anon_sym_api] = ACTIONS(1785), + [sym_true] = ACTIONS(1785), + [sym_false] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1785), + [anon_sym_include] = ACTIONS(1785), + [anon_sym_DEF] = ACTIONS(1785), + [anon_sym_cdef] = ACTIONS(1785), + [anon_sym_cpdef] = ACTIONS(1785), + [anon_sym_int] = ACTIONS(1785), + [anon_sym_double] = ACTIONS(1785), + [anon_sym_complex] = ACTIONS(1785), + [anon_sym_new] = ACTIONS(1785), + [anon_sym_signed] = ACTIONS(1785), + [anon_sym_unsigned] = ACTIONS(1785), + [anon_sym_char] = ACTIONS(1785), + [anon_sym_short] = ACTIONS(1785), + [anon_sym_long] = ACTIONS(1785), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_volatile] = ACTIONS(1785), + [anon_sym_ctypedef] = ACTIONS(1785), + [anon_sym_struct] = ACTIONS(1785), + [anon_sym_union] = ACTIONS(1785), + [anon_sym_enum] = ACTIONS(1785), + [anon_sym_cppclass] = ACTIONS(1785), + [anon_sym_fused] = ACTIONS(1785), + [anon_sym_public] = ACTIONS(1785), + [anon_sym_packed] = ACTIONS(1785), + [anon_sym_inline] = ACTIONS(1785), + [anon_sym_readonly] = ACTIONS(1785), + [anon_sym_sizeof] = ACTIONS(1785), + [sym__dedent] = ACTIONS(1787), + [sym_string_start] = ACTIONS(1787), }, [570] = { - [sym_identifier] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_import] = ACTIONS(1815), - [anon_sym_cimport] = ACTIONS(1815), - [anon_sym_from] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_print] = ACTIONS(1815), - [anon_sym_assert] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_del] = ACTIONS(1815), - [anon_sym_raise] = ACTIONS(1815), - [anon_sym_pass] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_match] = ACTIONS(1815), - [anon_sym_async] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_with] = ACTIONS(1815), - [anon_sym_def] = ACTIONS(1815), - [anon_sym_global] = ACTIONS(1815), - [anon_sym_nonlocal] = ACTIONS(1815), - [anon_sym_exec] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_lambda] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [anon_sym_None] = ACTIONS(1815), - [sym_integer] = ACTIONS(1815), - [sym_float] = ACTIONS(1817), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_api] = ACTIONS(1815), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1815), - [anon_sym_include] = ACTIONS(1815), - [anon_sym_DEF] = ACTIONS(1815), - [anon_sym_cdef] = ACTIONS(1815), - [anon_sym_cpdef] = ACTIONS(1815), - [anon_sym_int] = ACTIONS(1815), - [anon_sym_double] = ACTIONS(1815), - [anon_sym_complex] = ACTIONS(1815), - [anon_sym_new] = ACTIONS(1815), - [anon_sym_signed] = ACTIONS(1815), - [anon_sym_unsigned] = ACTIONS(1815), - [anon_sym_char] = ACTIONS(1815), - [anon_sym_short] = ACTIONS(1815), - [anon_sym_long] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_volatile] = ACTIONS(1815), - [anon_sym_ctypedef] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1815), - [anon_sym_union] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [anon_sym_cppclass] = ACTIONS(1815), - [anon_sym_fused] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_packed] = ACTIONS(1815), - [anon_sym_inline] = ACTIONS(1815), - [anon_sym_readonly] = ACTIONS(1815), - [anon_sym_sizeof] = ACTIONS(1815), - [sym__dedent] = ACTIONS(1817), - [sym_string_start] = ACTIONS(1817), + [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), }, [571] = { - [sym_identifier] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_import] = ACTIONS(1819), - [anon_sym_cimport] = ACTIONS(1819), - [anon_sym_from] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_print] = ACTIONS(1819), - [anon_sym_assert] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1819), - [anon_sym_del] = ACTIONS(1819), - [anon_sym_raise] = ACTIONS(1819), - [anon_sym_pass] = ACTIONS(1819), - [anon_sym_break] = ACTIONS(1819), - [anon_sym_continue] = ACTIONS(1819), - [anon_sym_if] = ACTIONS(1819), - [anon_sym_match] = ACTIONS(1819), - [anon_sym_async] = ACTIONS(1819), - [anon_sym_for] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1819), - [anon_sym_with] = ACTIONS(1819), - [anon_sym_def] = ACTIONS(1819), - [anon_sym_global] = ACTIONS(1819), - [anon_sym_nonlocal] = ACTIONS(1819), - [anon_sym_exec] = ACTIONS(1819), - [anon_sym_type] = ACTIONS(1819), - [anon_sym_class] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1821), - [anon_sym_AT] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1821), - [anon_sym_not] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(1821), - [anon_sym_lambda] = ACTIONS(1819), - [anon_sym_yield] = ACTIONS(1819), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1821), - [anon_sym_None] = ACTIONS(1819), - [sym_integer] = ACTIONS(1819), - [sym_float] = ACTIONS(1821), - [anon_sym_await] = ACTIONS(1819), - [anon_sym_api] = ACTIONS(1819), - [sym_true] = ACTIONS(1819), - [sym_false] = ACTIONS(1819), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1819), - [anon_sym_include] = ACTIONS(1819), - [anon_sym_DEF] = ACTIONS(1819), - [anon_sym_cdef] = ACTIONS(1819), - [anon_sym_cpdef] = ACTIONS(1819), - [anon_sym_int] = ACTIONS(1819), - [anon_sym_double] = ACTIONS(1819), - [anon_sym_complex] = ACTIONS(1819), - [anon_sym_new] = ACTIONS(1819), - [anon_sym_signed] = ACTIONS(1819), - [anon_sym_unsigned] = ACTIONS(1819), - [anon_sym_char] = ACTIONS(1819), - [anon_sym_short] = ACTIONS(1819), - [anon_sym_long] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1819), - [anon_sym_volatile] = ACTIONS(1819), - [anon_sym_ctypedef] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1819), - [anon_sym_union] = ACTIONS(1819), - [anon_sym_enum] = ACTIONS(1819), - [anon_sym_cppclass] = ACTIONS(1819), - [anon_sym_fused] = ACTIONS(1819), - [anon_sym_public] = ACTIONS(1819), - [anon_sym_packed] = ACTIONS(1819), - [anon_sym_inline] = ACTIONS(1819), - [anon_sym_readonly] = ACTIONS(1819), - [anon_sym_sizeof] = ACTIONS(1819), - [sym__dedent] = ACTIONS(1821), - [sym_string_start] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1789), + [anon_sym_cimport] = ACTIONS(1789), + [anon_sym_from] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_print] = ACTIONS(1789), + [anon_sym_assert] = ACTIONS(1789), + [anon_sym_return] = ACTIONS(1789), + [anon_sym_del] = ACTIONS(1789), + [anon_sym_raise] = ACTIONS(1789), + [anon_sym_pass] = ACTIONS(1789), + [anon_sym_break] = ACTIONS(1789), + [anon_sym_continue] = ACTIONS(1789), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_match] = ACTIONS(1789), + [anon_sym_async] = ACTIONS(1789), + [anon_sym_for] = ACTIONS(1789), + [anon_sym_while] = ACTIONS(1789), + [anon_sym_try] = ACTIONS(1789), + [anon_sym_with] = ACTIONS(1789), + [anon_sym_def] = ACTIONS(1789), + [anon_sym_global] = ACTIONS(1789), + [anon_sym_nonlocal] = ACTIONS(1789), + [anon_sym_exec] = ACTIONS(1789), + [anon_sym_type] = ACTIONS(1789), + [anon_sym_class] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_not] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_lambda] = ACTIONS(1789), + [anon_sym_yield] = ACTIONS(1789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), + [anon_sym_None] = ACTIONS(1789), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1789), + [anon_sym_api] = ACTIONS(1789), + [sym_true] = ACTIONS(1789), + [sym_false] = ACTIONS(1789), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1789), + [anon_sym_include] = ACTIONS(1789), + [anon_sym_DEF] = ACTIONS(1789), + [anon_sym_cdef] = ACTIONS(1789), + [anon_sym_cpdef] = ACTIONS(1789), + [anon_sym_int] = ACTIONS(1789), + [anon_sym_double] = ACTIONS(1789), + [anon_sym_complex] = ACTIONS(1789), + [anon_sym_new] = ACTIONS(1789), + [anon_sym_signed] = ACTIONS(1789), + [anon_sym_unsigned] = ACTIONS(1789), + [anon_sym_char] = ACTIONS(1789), + [anon_sym_short] = ACTIONS(1789), + [anon_sym_long] = ACTIONS(1789), + [anon_sym_const] = ACTIONS(1789), + [anon_sym_volatile] = ACTIONS(1789), + [anon_sym_ctypedef] = ACTIONS(1789), + [anon_sym_struct] = ACTIONS(1789), + [anon_sym_union] = ACTIONS(1789), + [anon_sym_enum] = ACTIONS(1789), + [anon_sym_cppclass] = ACTIONS(1789), + [anon_sym_fused] = ACTIONS(1789), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_packed] = ACTIONS(1789), + [anon_sym_inline] = ACTIONS(1789), + [anon_sym_readonly] = ACTIONS(1789), + [anon_sym_sizeof] = ACTIONS(1789), + [sym__dedent] = ACTIONS(1791), + [sym_string_start] = ACTIONS(1791), }, [572] = { - [sym_identifier] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_cimport] = ACTIONS(1823), - [anon_sym_from] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_print] = ACTIONS(1823), - [anon_sym_assert] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_del] = ACTIONS(1823), - [anon_sym_raise] = ACTIONS(1823), - [anon_sym_pass] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_match] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_def] = ACTIONS(1823), - [anon_sym_global] = ACTIONS(1823), - [anon_sym_nonlocal] = ACTIONS(1823), - [anon_sym_exec] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1825), - [anon_sym_AT] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_lambda] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1825), - [anon_sym_None] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1825), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_api] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1823), - [anon_sym_include] = ACTIONS(1823), - [anon_sym_DEF] = ACTIONS(1823), - [anon_sym_cdef] = ACTIONS(1823), - [anon_sym_cpdef] = ACTIONS(1823), - [anon_sym_int] = ACTIONS(1823), - [anon_sym_double] = ACTIONS(1823), - [anon_sym_complex] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_char] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym_ctypedef] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_cppclass] = ACTIONS(1823), - [anon_sym_fused] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_packed] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_readonly] = ACTIONS(1823), - [anon_sym_sizeof] = ACTIONS(1823), - [sym__dedent] = ACTIONS(1825), - [sym_string_start] = ACTIONS(1825), + [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), }, [573] = { - [sym_identifier] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_import] = ACTIONS(1827), - [anon_sym_cimport] = ACTIONS(1827), - [anon_sym_from] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_print] = ACTIONS(1827), - [anon_sym_assert] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_del] = ACTIONS(1827), - [anon_sym_raise] = ACTIONS(1827), - [anon_sym_pass] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_match] = ACTIONS(1827), - [anon_sym_async] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_with] = ACTIONS(1827), - [anon_sym_def] = ACTIONS(1827), - [anon_sym_global] = ACTIONS(1827), - [anon_sym_nonlocal] = ACTIONS(1827), - [anon_sym_exec] = ACTIONS(1827), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_class] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1829), - [anon_sym_AT] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1829), - [anon_sym_not] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_TILDE] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_lambda] = ACTIONS(1827), - [anon_sym_yield] = ACTIONS(1827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), - [anon_sym_None] = ACTIONS(1827), - [sym_integer] = ACTIONS(1827), - [sym_float] = ACTIONS(1829), - [anon_sym_await] = ACTIONS(1827), - [anon_sym_api] = ACTIONS(1827), - [sym_true] = ACTIONS(1827), - [sym_false] = ACTIONS(1827), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1827), - [anon_sym_include] = ACTIONS(1827), - [anon_sym_DEF] = ACTIONS(1827), - [anon_sym_cdef] = ACTIONS(1827), - [anon_sym_cpdef] = ACTIONS(1827), - [anon_sym_int] = ACTIONS(1827), - [anon_sym_double] = ACTIONS(1827), - [anon_sym_complex] = ACTIONS(1827), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_signed] = ACTIONS(1827), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_char] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_volatile] = ACTIONS(1827), - [anon_sym_ctypedef] = ACTIONS(1827), - [anon_sym_struct] = ACTIONS(1827), - [anon_sym_union] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [anon_sym_cppclass] = ACTIONS(1827), - [anon_sym_fused] = ACTIONS(1827), - [anon_sym_public] = ACTIONS(1827), - [anon_sym_packed] = ACTIONS(1827), - [anon_sym_inline] = ACTIONS(1827), - [anon_sym_readonly] = ACTIONS(1827), - [anon_sym_sizeof] = ACTIONS(1827), - [sym__dedent] = ACTIONS(1829), - [sym_string_start] = ACTIONS(1829), + [sym_identifier] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(1793), + [anon_sym_cimport] = ACTIONS(1793), + [anon_sym_from] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_print] = ACTIONS(1793), + [anon_sym_assert] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_del] = ACTIONS(1793), + [anon_sym_raise] = ACTIONS(1793), + [anon_sym_pass] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_async] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_try] = ACTIONS(1793), + [anon_sym_with] = ACTIONS(1793), + [anon_sym_def] = ACTIONS(1793), + [anon_sym_global] = ACTIONS(1793), + [anon_sym_nonlocal] = ACTIONS(1793), + [anon_sym_exec] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1793), + [anon_sym_class] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_not] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_lambda] = ACTIONS(1793), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1795), + [anon_sym_None] = ACTIONS(1793), + [sym_integer] = ACTIONS(1793), + [sym_float] = ACTIONS(1795), + [anon_sym_await] = ACTIONS(1793), + [anon_sym_api] = ACTIONS(1793), + [sym_true] = ACTIONS(1793), + [sym_false] = ACTIONS(1793), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1793), + [anon_sym_include] = ACTIONS(1793), + [anon_sym_DEF] = ACTIONS(1793), + [anon_sym_cdef] = ACTIONS(1793), + [anon_sym_cpdef] = ACTIONS(1793), + [anon_sym_int] = ACTIONS(1793), + [anon_sym_double] = ACTIONS(1793), + [anon_sym_complex] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_signed] = ACTIONS(1793), + [anon_sym_unsigned] = ACTIONS(1793), + [anon_sym_char] = ACTIONS(1793), + [anon_sym_short] = ACTIONS(1793), + [anon_sym_long] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_volatile] = ACTIONS(1793), + [anon_sym_ctypedef] = ACTIONS(1793), + [anon_sym_struct] = ACTIONS(1793), + [anon_sym_union] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [anon_sym_cppclass] = ACTIONS(1793), + [anon_sym_fused] = ACTIONS(1793), + [anon_sym_public] = ACTIONS(1793), + [anon_sym_packed] = ACTIONS(1793), + [anon_sym_inline] = ACTIONS(1793), + [anon_sym_readonly] = ACTIONS(1793), + [anon_sym_sizeof] = ACTIONS(1793), + [sym__dedent] = ACTIONS(1795), + [sym_string_start] = ACTIONS(1795), }, [574] = { - [sym_identifier] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1831), - [anon_sym_cimport] = ACTIONS(1831), - [anon_sym_from] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_print] = ACTIONS(1831), - [anon_sym_assert] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_del] = ACTIONS(1831), - [anon_sym_raise] = ACTIONS(1831), - [anon_sym_pass] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1831), - [anon_sym_continue] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_match] = ACTIONS(1831), - [anon_sym_async] = ACTIONS(1831), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1831), - [anon_sym_with] = ACTIONS(1831), - [anon_sym_def] = ACTIONS(1831), - [anon_sym_global] = ACTIONS(1831), - [anon_sym_nonlocal] = ACTIONS(1831), - [anon_sym_exec] = ACTIONS(1831), - [anon_sym_type] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_not] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_lambda] = ACTIONS(1831), - [anon_sym_yield] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1833), - [anon_sym_None] = ACTIONS(1831), - [sym_integer] = ACTIONS(1831), - [sym_float] = ACTIONS(1833), - [anon_sym_await] = ACTIONS(1831), - [anon_sym_api] = ACTIONS(1831), - [sym_true] = ACTIONS(1831), - [sym_false] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1831), - [anon_sym_include] = ACTIONS(1831), - [anon_sym_DEF] = ACTIONS(1831), - [anon_sym_cdef] = ACTIONS(1831), - [anon_sym_cpdef] = ACTIONS(1831), - [anon_sym_int] = ACTIONS(1831), - [anon_sym_double] = ACTIONS(1831), - [anon_sym_complex] = ACTIONS(1831), - [anon_sym_new] = ACTIONS(1831), - [anon_sym_signed] = ACTIONS(1831), - [anon_sym_unsigned] = ACTIONS(1831), - [anon_sym_char] = ACTIONS(1831), - [anon_sym_short] = ACTIONS(1831), - [anon_sym_long] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_volatile] = ACTIONS(1831), - [anon_sym_ctypedef] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_cppclass] = ACTIONS(1831), - [anon_sym_fused] = ACTIONS(1831), - [anon_sym_public] = ACTIONS(1831), - [anon_sym_packed] = ACTIONS(1831), - [anon_sym_inline] = ACTIONS(1831), - [anon_sym_readonly] = ACTIONS(1831), - [anon_sym_sizeof] = ACTIONS(1831), - [sym__dedent] = ACTIONS(1833), - [sym_string_start] = ACTIONS(1833), + [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), }, [575] = { - [sym_identifier] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_cimport] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_print] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_del] = ACTIONS(1835), - [anon_sym_raise] = ACTIONS(1835), - [anon_sym_pass] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_global] = ACTIONS(1835), - [anon_sym_nonlocal] = ACTIONS(1835), - [anon_sym_exec] = ACTIONS(1835), - [anon_sym_type] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_AT] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_not] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_lambda] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), - [anon_sym_None] = ACTIONS(1835), - [sym_integer] = ACTIONS(1835), - [sym_float] = ACTIONS(1837), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_api] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1835), - [anon_sym_include] = ACTIONS(1835), - [anon_sym_DEF] = ACTIONS(1835), - [anon_sym_cdef] = ACTIONS(1835), - [anon_sym_cpdef] = ACTIONS(1835), - [anon_sym_int] = ACTIONS(1835), - [anon_sym_double] = ACTIONS(1835), - [anon_sym_complex] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_signed] = ACTIONS(1835), - [anon_sym_unsigned] = ACTIONS(1835), - [anon_sym_char] = ACTIONS(1835), - [anon_sym_short] = ACTIONS(1835), - [anon_sym_long] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_ctypedef] = ACTIONS(1835), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_cppclass] = ACTIONS(1835), - [anon_sym_fused] = ACTIONS(1835), - [anon_sym_public] = ACTIONS(1835), - [anon_sym_packed] = ACTIONS(1835), - [anon_sym_inline] = ACTIONS(1835), - [anon_sym_readonly] = ACTIONS(1835), - [anon_sym_sizeof] = ACTIONS(1835), - [sym__dedent] = ACTIONS(1837), - [sym_string_start] = ACTIONS(1837), + [sym_identifier] = ACTIONS(1797), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_import] = ACTIONS(1797), + [anon_sym_cimport] = ACTIONS(1797), + [anon_sym_from] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_print] = ACTIONS(1797), + [anon_sym_assert] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_del] = ACTIONS(1797), + [anon_sym_raise] = ACTIONS(1797), + [anon_sym_pass] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_with] = ACTIONS(1797), + [anon_sym_def] = ACTIONS(1797), + [anon_sym_global] = ACTIONS(1797), + [anon_sym_nonlocal] = ACTIONS(1797), + [anon_sym_exec] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1797), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_AT] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_not] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_lambda] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1799), + [anon_sym_None] = ACTIONS(1797), + [sym_integer] = ACTIONS(1797), + [sym_float] = ACTIONS(1799), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_api] = ACTIONS(1797), + [sym_true] = ACTIONS(1797), + [sym_false] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1797), + [anon_sym_include] = ACTIONS(1797), + [anon_sym_DEF] = ACTIONS(1797), + [anon_sym_cdef] = ACTIONS(1797), + [anon_sym_cpdef] = ACTIONS(1797), + [anon_sym_int] = ACTIONS(1797), + [anon_sym_double] = ACTIONS(1797), + [anon_sym_complex] = ACTIONS(1797), + [anon_sym_new] = ACTIONS(1797), + [anon_sym_signed] = ACTIONS(1797), + [anon_sym_unsigned] = ACTIONS(1797), + [anon_sym_char] = ACTIONS(1797), + [anon_sym_short] = ACTIONS(1797), + [anon_sym_long] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [anon_sym_volatile] = ACTIONS(1797), + [anon_sym_ctypedef] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1797), + [anon_sym_union] = ACTIONS(1797), + [anon_sym_enum] = ACTIONS(1797), + [anon_sym_cppclass] = ACTIONS(1797), + [anon_sym_fused] = ACTIONS(1797), + [anon_sym_public] = ACTIONS(1797), + [anon_sym_packed] = ACTIONS(1797), + [anon_sym_inline] = ACTIONS(1797), + [anon_sym_readonly] = ACTIONS(1797), + [anon_sym_sizeof] = ACTIONS(1797), + [sym__dedent] = ACTIONS(1799), + [sym_string_start] = ACTIONS(1799), }, [576] = { - [sym_identifier] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1807), - [anon_sym_cimport] = ACTIONS(1807), - [anon_sym_from] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_print] = ACTIONS(1807), - [anon_sym_assert] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_del] = ACTIONS(1807), - [anon_sym_raise] = ACTIONS(1807), - [anon_sym_pass] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1807), - [anon_sym_async] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1807), - [anon_sym_with] = ACTIONS(1807), - [anon_sym_def] = ACTIONS(1807), - [anon_sym_global] = ACTIONS(1807), - [anon_sym_nonlocal] = ACTIONS(1807), - [anon_sym_exec] = ACTIONS(1807), - [anon_sym_type] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_not] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_lambda] = ACTIONS(1807), - [anon_sym_yield] = ACTIONS(1807), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), - [anon_sym_None] = ACTIONS(1807), - [sym_integer] = ACTIONS(1807), - [sym_float] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1807), - [anon_sym_api] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1807), - [anon_sym_include] = ACTIONS(1807), - [anon_sym_DEF] = ACTIONS(1807), - [anon_sym_cdef] = ACTIONS(1807), - [anon_sym_cpdef] = ACTIONS(1807), - [anon_sym_int] = ACTIONS(1807), - [anon_sym_double] = ACTIONS(1807), - [anon_sym_complex] = ACTIONS(1807), - [anon_sym_new] = ACTIONS(1807), - [anon_sym_signed] = ACTIONS(1807), - [anon_sym_unsigned] = ACTIONS(1807), - [anon_sym_char] = ACTIONS(1807), - [anon_sym_short] = ACTIONS(1807), - [anon_sym_long] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_volatile] = ACTIONS(1807), - [anon_sym_ctypedef] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_union] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [anon_sym_cppclass] = ACTIONS(1807), - [anon_sym_fused] = ACTIONS(1807), - [anon_sym_public] = ACTIONS(1807), - [anon_sym_packed] = ACTIONS(1807), - [anon_sym_inline] = ACTIONS(1807), - [anon_sym_readonly] = ACTIONS(1807), - [anon_sym_sizeof] = ACTIONS(1807), - [sym__dedent] = ACTIONS(1809), - [sym_string_start] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1803), + [anon_sym_import] = ACTIONS(1801), + [anon_sym_cimport] = ACTIONS(1801), + [anon_sym_from] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_print] = ACTIONS(1801), + [anon_sym_assert] = ACTIONS(1801), + [anon_sym_return] = ACTIONS(1801), + [anon_sym_del] = ACTIONS(1801), + [anon_sym_raise] = ACTIONS(1801), + [anon_sym_pass] = ACTIONS(1801), + [anon_sym_break] = ACTIONS(1801), + [anon_sym_continue] = ACTIONS(1801), + [anon_sym_if] = ACTIONS(1801), + [anon_sym_match] = ACTIONS(1801), + [anon_sym_async] = ACTIONS(1801), + [anon_sym_for] = ACTIONS(1801), + [anon_sym_while] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_with] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1801), + [anon_sym_global] = ACTIONS(1801), + [anon_sym_nonlocal] = ACTIONS(1801), + [anon_sym_exec] = ACTIONS(1801), + [anon_sym_type] = ACTIONS(1801), + [anon_sym_class] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_AT] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_not] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_lambda] = ACTIONS(1801), + [anon_sym_yield] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1803), + [anon_sym_None] = ACTIONS(1801), + [sym_integer] = ACTIONS(1801), + [sym_float] = ACTIONS(1803), + [anon_sym_await] = ACTIONS(1801), + [anon_sym_api] = ACTIONS(1801), + [sym_true] = ACTIONS(1801), + [sym_false] = ACTIONS(1801), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1801), + [anon_sym_include] = ACTIONS(1801), + [anon_sym_DEF] = ACTIONS(1801), + [anon_sym_cdef] = ACTIONS(1801), + [anon_sym_cpdef] = ACTIONS(1801), + [anon_sym_int] = ACTIONS(1801), + [anon_sym_double] = ACTIONS(1801), + [anon_sym_complex] = ACTIONS(1801), + [anon_sym_new] = ACTIONS(1801), + [anon_sym_signed] = ACTIONS(1801), + [anon_sym_unsigned] = ACTIONS(1801), + [anon_sym_char] = ACTIONS(1801), + [anon_sym_short] = ACTIONS(1801), + [anon_sym_long] = ACTIONS(1801), + [anon_sym_const] = ACTIONS(1801), + [anon_sym_volatile] = ACTIONS(1801), + [anon_sym_ctypedef] = ACTIONS(1801), + [anon_sym_struct] = ACTIONS(1801), + [anon_sym_union] = ACTIONS(1801), + [anon_sym_enum] = ACTIONS(1801), + [anon_sym_cppclass] = ACTIONS(1801), + [anon_sym_fused] = ACTIONS(1801), + [anon_sym_public] = ACTIONS(1801), + [anon_sym_packed] = ACTIONS(1801), + [anon_sym_inline] = ACTIONS(1801), + [anon_sym_readonly] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1801), + [sym__dedent] = ACTIONS(1803), + [sym_string_start] = ACTIONS(1803), }, [577] = { - [sym_identifier] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_import] = ACTIONS(1839), - [anon_sym_cimport] = ACTIONS(1839), - [anon_sym_from] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_print] = ACTIONS(1839), - [anon_sym_assert] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_del] = ACTIONS(1839), - [anon_sym_raise] = ACTIONS(1839), - [anon_sym_pass] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_async] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_with] = ACTIONS(1839), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_global] = ACTIONS(1839), - [anon_sym_nonlocal] = ACTIONS(1839), - [anon_sym_exec] = ACTIONS(1839), - [anon_sym_type] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_AT] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_lambda] = ACTIONS(1839), - [anon_sym_yield] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1841), - [anon_sym_None] = ACTIONS(1839), - [sym_integer] = ACTIONS(1839), - [sym_float] = ACTIONS(1841), - [anon_sym_await] = ACTIONS(1839), - [anon_sym_api] = ACTIONS(1839), - [sym_true] = ACTIONS(1839), - [sym_false] = ACTIONS(1839), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1839), - [anon_sym_include] = ACTIONS(1839), - [anon_sym_DEF] = ACTIONS(1839), - [anon_sym_cdef] = ACTIONS(1839), - [anon_sym_cpdef] = ACTIONS(1839), - [anon_sym_int] = ACTIONS(1839), - [anon_sym_double] = ACTIONS(1839), - [anon_sym_complex] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1839), - [anon_sym_signed] = ACTIONS(1839), - [anon_sym_unsigned] = ACTIONS(1839), - [anon_sym_char] = ACTIONS(1839), - [anon_sym_short] = ACTIONS(1839), - [anon_sym_long] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_volatile] = ACTIONS(1839), - [anon_sym_ctypedef] = ACTIONS(1839), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_cppclass] = ACTIONS(1839), - [anon_sym_fused] = ACTIONS(1839), - [anon_sym_public] = ACTIONS(1839), - [anon_sym_packed] = ACTIONS(1839), - [anon_sym_inline] = ACTIONS(1839), - [anon_sym_readonly] = ACTIONS(1839), - [anon_sym_sizeof] = ACTIONS(1839), - [sym__dedent] = ACTIONS(1841), - [sym_string_start] = ACTIONS(1841), + [sym_identifier] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_import] = ACTIONS(1805), + [anon_sym_cimport] = ACTIONS(1805), + [anon_sym_from] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_print] = ACTIONS(1805), + [anon_sym_assert] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_del] = ACTIONS(1805), + [anon_sym_raise] = ACTIONS(1805), + [anon_sym_pass] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_async] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_try] = ACTIONS(1805), + [anon_sym_with] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_global] = ACTIONS(1805), + [anon_sym_nonlocal] = ACTIONS(1805), + [anon_sym_exec] = ACTIONS(1805), + [anon_sym_type] = ACTIONS(1805), + [anon_sym_class] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_AT] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_PLUS] = ACTIONS(1807), + [anon_sym_not] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_TILDE] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1807), + [anon_sym_lambda] = ACTIONS(1805), + [anon_sym_yield] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1807), + [anon_sym_None] = ACTIONS(1805), + [sym_integer] = ACTIONS(1805), + [sym_float] = ACTIONS(1807), + [anon_sym_await] = ACTIONS(1805), + [anon_sym_api] = ACTIONS(1805), + [sym_true] = ACTIONS(1805), + [sym_false] = ACTIONS(1805), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1805), + [anon_sym_include] = ACTIONS(1805), + [anon_sym_DEF] = ACTIONS(1805), + [anon_sym_cdef] = ACTIONS(1805), + [anon_sym_cpdef] = ACTIONS(1805), + [anon_sym_int] = ACTIONS(1805), + [anon_sym_double] = ACTIONS(1805), + [anon_sym_complex] = ACTIONS(1805), + [anon_sym_new] = ACTIONS(1805), + [anon_sym_signed] = ACTIONS(1805), + [anon_sym_unsigned] = ACTIONS(1805), + [anon_sym_char] = ACTIONS(1805), + [anon_sym_short] = ACTIONS(1805), + [anon_sym_long] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [anon_sym_volatile] = ACTIONS(1805), + [anon_sym_ctypedef] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1805), + [anon_sym_union] = ACTIONS(1805), + [anon_sym_enum] = ACTIONS(1805), + [anon_sym_cppclass] = ACTIONS(1805), + [anon_sym_fused] = ACTIONS(1805), + [anon_sym_public] = ACTIONS(1805), + [anon_sym_packed] = ACTIONS(1805), + [anon_sym_inline] = ACTIONS(1805), + [anon_sym_readonly] = ACTIONS(1805), + [anon_sym_sizeof] = ACTIONS(1805), + [sym__dedent] = ACTIONS(1807), + [sym_string_start] = ACTIONS(1807), }, [578] = { - [sym_identifier] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1843), - [anon_sym_cimport] = ACTIONS(1843), - [anon_sym_from] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_print] = ACTIONS(1843), - [anon_sym_assert] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_del] = ACTIONS(1843), - [anon_sym_raise] = ACTIONS(1843), - [anon_sym_pass] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_with] = ACTIONS(1843), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_global] = ACTIONS(1843), - [anon_sym_nonlocal] = ACTIONS(1843), - [anon_sym_exec] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1845), - [anon_sym_AT] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_not] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_lambda] = ACTIONS(1843), - [anon_sym_yield] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1845), - [anon_sym_None] = ACTIONS(1843), - [sym_integer] = ACTIONS(1843), - [sym_float] = ACTIONS(1845), - [anon_sym_await] = ACTIONS(1843), - [anon_sym_api] = ACTIONS(1843), - [sym_true] = ACTIONS(1843), - [sym_false] = ACTIONS(1843), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1843), - [anon_sym_include] = ACTIONS(1843), - [anon_sym_DEF] = ACTIONS(1843), - [anon_sym_cdef] = ACTIONS(1843), - [anon_sym_cpdef] = ACTIONS(1843), - [anon_sym_int] = ACTIONS(1843), - [anon_sym_double] = ACTIONS(1843), - [anon_sym_complex] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1843), - [anon_sym_signed] = ACTIONS(1843), - [anon_sym_unsigned] = ACTIONS(1843), - [anon_sym_char] = ACTIONS(1843), - [anon_sym_short] = ACTIONS(1843), - [anon_sym_long] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_volatile] = ACTIONS(1843), - [anon_sym_ctypedef] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_union] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [anon_sym_cppclass] = ACTIONS(1843), - [anon_sym_fused] = ACTIONS(1843), - [anon_sym_public] = ACTIONS(1843), - [anon_sym_packed] = ACTIONS(1843), - [anon_sym_inline] = ACTIONS(1843), - [anon_sym_readonly] = ACTIONS(1843), - [anon_sym_sizeof] = ACTIONS(1843), - [sym__dedent] = ACTIONS(1845), - [sym_string_start] = ACTIONS(1845), + [sym_identifier] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_import] = ACTIONS(1809), + [anon_sym_cimport] = ACTIONS(1809), + [anon_sym_from] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_print] = ACTIONS(1809), + [anon_sym_assert] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_del] = ACTIONS(1809), + [anon_sym_raise] = ACTIONS(1809), + [anon_sym_pass] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_match] = ACTIONS(1809), + [anon_sym_async] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_while] = ACTIONS(1809), + [anon_sym_try] = ACTIONS(1809), + [anon_sym_with] = ACTIONS(1809), + [anon_sym_def] = ACTIONS(1809), + [anon_sym_global] = ACTIONS(1809), + [anon_sym_nonlocal] = ACTIONS(1809), + [anon_sym_exec] = ACTIONS(1809), + [anon_sym_type] = ACTIONS(1809), + [anon_sym_class] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_not] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_lambda] = ACTIONS(1809), + [anon_sym_yield] = ACTIONS(1809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1811), + [anon_sym_None] = ACTIONS(1809), + [sym_integer] = ACTIONS(1809), + [sym_float] = ACTIONS(1811), + [anon_sym_await] = ACTIONS(1809), + [anon_sym_api] = ACTIONS(1809), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1809), + [anon_sym_include] = ACTIONS(1809), + [anon_sym_DEF] = ACTIONS(1809), + [anon_sym_cdef] = ACTIONS(1809), + [anon_sym_cpdef] = ACTIONS(1809), + [anon_sym_int] = ACTIONS(1809), + [anon_sym_double] = ACTIONS(1809), + [anon_sym_complex] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_signed] = ACTIONS(1809), + [anon_sym_unsigned] = ACTIONS(1809), + [anon_sym_char] = ACTIONS(1809), + [anon_sym_short] = ACTIONS(1809), + [anon_sym_long] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_volatile] = ACTIONS(1809), + [anon_sym_ctypedef] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_cppclass] = ACTIONS(1809), + [anon_sym_fused] = ACTIONS(1809), + [anon_sym_public] = ACTIONS(1809), + [anon_sym_packed] = ACTIONS(1809), + [anon_sym_inline] = ACTIONS(1809), + [anon_sym_readonly] = ACTIONS(1809), + [anon_sym_sizeof] = ACTIONS(1809), + [sym__dedent] = ACTIONS(1811), + [sym_string_start] = ACTIONS(1811), }, [579] = { - [sym_identifier] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_import] = ACTIONS(1815), - [anon_sym_cimport] = ACTIONS(1815), - [anon_sym_from] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_print] = ACTIONS(1815), - [anon_sym_assert] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_del] = ACTIONS(1815), - [anon_sym_raise] = ACTIONS(1815), - [anon_sym_pass] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_match] = ACTIONS(1815), - [anon_sym_async] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_with] = ACTIONS(1815), - [anon_sym_def] = ACTIONS(1815), - [anon_sym_global] = ACTIONS(1815), - [anon_sym_nonlocal] = ACTIONS(1815), - [anon_sym_exec] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_AT] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_lambda] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), - [anon_sym_None] = ACTIONS(1815), - [sym_integer] = ACTIONS(1815), - [sym_float] = ACTIONS(1817), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_api] = ACTIONS(1815), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1815), - [anon_sym_include] = ACTIONS(1815), - [anon_sym_DEF] = ACTIONS(1815), - [anon_sym_cdef] = ACTIONS(1815), - [anon_sym_cpdef] = ACTIONS(1815), - [anon_sym_int] = ACTIONS(1815), - [anon_sym_double] = ACTIONS(1815), - [anon_sym_complex] = ACTIONS(1815), - [anon_sym_new] = ACTIONS(1815), - [anon_sym_signed] = ACTIONS(1815), - [anon_sym_unsigned] = ACTIONS(1815), - [anon_sym_char] = ACTIONS(1815), - [anon_sym_short] = ACTIONS(1815), - [anon_sym_long] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_volatile] = ACTIONS(1815), - [anon_sym_ctypedef] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1815), - [anon_sym_union] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [anon_sym_cppclass] = ACTIONS(1815), - [anon_sym_fused] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_packed] = ACTIONS(1815), - [anon_sym_inline] = ACTIONS(1815), - [anon_sym_readonly] = ACTIONS(1815), - [anon_sym_sizeof] = ACTIONS(1815), - [sym__dedent] = ACTIONS(1817), - [sym_string_start] = ACTIONS(1817), + [sym_identifier] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1815), + [anon_sym_import] = ACTIONS(1813), + [anon_sym_cimport] = ACTIONS(1813), + [anon_sym_from] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_print] = ACTIONS(1813), + [anon_sym_assert] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_del] = ACTIONS(1813), + [anon_sym_raise] = ACTIONS(1813), + [anon_sym_pass] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1813), + [anon_sym_with] = ACTIONS(1813), + [anon_sym_def] = ACTIONS(1813), + [anon_sym_global] = ACTIONS(1813), + [anon_sym_nonlocal] = ACTIONS(1813), + [anon_sym_exec] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_class] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_AT] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_LBRACE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_not] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_TILDE] = ACTIONS(1815), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_lambda] = ACTIONS(1813), + [anon_sym_yield] = ACTIONS(1813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1815), + [anon_sym_None] = ACTIONS(1813), + [sym_integer] = ACTIONS(1813), + [sym_float] = ACTIONS(1815), + [anon_sym_await] = ACTIONS(1813), + [anon_sym_api] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1813), + [anon_sym_include] = ACTIONS(1813), + [anon_sym_DEF] = ACTIONS(1813), + [anon_sym_cdef] = ACTIONS(1813), + [anon_sym_cpdef] = ACTIONS(1813), + [anon_sym_int] = ACTIONS(1813), + [anon_sym_double] = ACTIONS(1813), + [anon_sym_complex] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1813), + [anon_sym_signed] = ACTIONS(1813), + [anon_sym_unsigned] = ACTIONS(1813), + [anon_sym_char] = ACTIONS(1813), + [anon_sym_short] = ACTIONS(1813), + [anon_sym_long] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_volatile] = ACTIONS(1813), + [anon_sym_ctypedef] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1813), + [anon_sym_union] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [anon_sym_cppclass] = ACTIONS(1813), + [anon_sym_fused] = ACTIONS(1813), + [anon_sym_public] = ACTIONS(1813), + [anon_sym_packed] = ACTIONS(1813), + [anon_sym_inline] = ACTIONS(1813), + [anon_sym_readonly] = ACTIONS(1813), + [anon_sym_sizeof] = ACTIONS(1813), + [sym__dedent] = ACTIONS(1815), + [sym_string_start] = ACTIONS(1815), }, [580] = { - [sym_identifier] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_import] = ACTIONS(1847), - [anon_sym_cimport] = ACTIONS(1847), - [anon_sym_from] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_print] = ACTIONS(1847), - [anon_sym_assert] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_del] = ACTIONS(1847), - [anon_sym_raise] = ACTIONS(1847), - [anon_sym_pass] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_match] = ACTIONS(1847), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_with] = ACTIONS(1847), - [anon_sym_def] = ACTIONS(1847), - [anon_sym_global] = ACTIONS(1847), - [anon_sym_nonlocal] = ACTIONS(1847), - [anon_sym_exec] = ACTIONS(1847), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_AT] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_not] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_lambda] = ACTIONS(1847), - [anon_sym_yield] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1849), - [anon_sym_None] = ACTIONS(1847), - [sym_integer] = ACTIONS(1847), - [sym_float] = ACTIONS(1849), - [anon_sym_await] = ACTIONS(1847), - [anon_sym_api] = ACTIONS(1847), - [sym_true] = ACTIONS(1847), - [sym_false] = ACTIONS(1847), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1847), - [anon_sym_include] = ACTIONS(1847), - [anon_sym_DEF] = ACTIONS(1847), - [anon_sym_cdef] = ACTIONS(1847), - [anon_sym_cpdef] = ACTIONS(1847), - [anon_sym_int] = ACTIONS(1847), - [anon_sym_double] = ACTIONS(1847), - [anon_sym_complex] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1847), - [anon_sym_signed] = ACTIONS(1847), - [anon_sym_unsigned] = ACTIONS(1847), - [anon_sym_char] = ACTIONS(1847), - [anon_sym_short] = ACTIONS(1847), - [anon_sym_long] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_volatile] = ACTIONS(1847), - [anon_sym_ctypedef] = ACTIONS(1847), - [anon_sym_struct] = ACTIONS(1847), - [anon_sym_union] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [anon_sym_cppclass] = ACTIONS(1847), - [anon_sym_fused] = ACTIONS(1847), - [anon_sym_public] = ACTIONS(1847), - [anon_sym_packed] = ACTIONS(1847), - [anon_sym_inline] = ACTIONS(1847), - [anon_sym_readonly] = ACTIONS(1847), - [anon_sym_sizeof] = ACTIONS(1847), - [sym__dedent] = ACTIONS(1849), - [sym_string_start] = ACTIONS(1849), + [sym_identifier] = ACTIONS(1817), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_import] = ACTIONS(1817), + [anon_sym_cimport] = ACTIONS(1817), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_print] = ACTIONS(1817), + [anon_sym_assert] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_del] = ACTIONS(1817), + [anon_sym_raise] = ACTIONS(1817), + [anon_sym_pass] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_match] = ACTIONS(1817), + [anon_sym_async] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_with] = ACTIONS(1817), + [anon_sym_def] = ACTIONS(1817), + [anon_sym_global] = ACTIONS(1817), + [anon_sym_nonlocal] = ACTIONS(1817), + [anon_sym_exec] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_class] = ACTIONS(1817), + [anon_sym_LBRACK] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(1819), + [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_PLUS] = ACTIONS(1819), + [anon_sym_not] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1819), + [anon_sym_TILDE] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_lambda] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1819), + [anon_sym_None] = ACTIONS(1817), + [sym_integer] = ACTIONS(1817), + [sym_float] = ACTIONS(1819), + [anon_sym_await] = ACTIONS(1817), + [anon_sym_api] = ACTIONS(1817), + [sym_true] = ACTIONS(1817), + [sym_false] = ACTIONS(1817), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1817), + [anon_sym_include] = ACTIONS(1817), + [anon_sym_DEF] = ACTIONS(1817), + [anon_sym_cdef] = ACTIONS(1817), + [anon_sym_cpdef] = ACTIONS(1817), + [anon_sym_int] = ACTIONS(1817), + [anon_sym_double] = ACTIONS(1817), + [anon_sym_complex] = ACTIONS(1817), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_signed] = ACTIONS(1817), + [anon_sym_unsigned] = ACTIONS(1817), + [anon_sym_char] = ACTIONS(1817), + [anon_sym_short] = ACTIONS(1817), + [anon_sym_long] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [anon_sym_volatile] = ACTIONS(1817), + [anon_sym_ctypedef] = ACTIONS(1817), + [anon_sym_struct] = ACTIONS(1817), + [anon_sym_union] = ACTIONS(1817), + [anon_sym_enum] = ACTIONS(1817), + [anon_sym_cppclass] = ACTIONS(1817), + [anon_sym_fused] = ACTIONS(1817), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_packed] = ACTIONS(1817), + [anon_sym_inline] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_sizeof] = ACTIONS(1817), + [sym__dedent] = ACTIONS(1819), + [sym_string_start] = ACTIONS(1819), }, [581] = { - [sym_identifier] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_cimport] = ACTIONS(1823), - [anon_sym_from] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_print] = ACTIONS(1823), - [anon_sym_assert] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_del] = ACTIONS(1823), - [anon_sym_raise] = ACTIONS(1823), - [anon_sym_pass] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_match] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_def] = ACTIONS(1823), - [anon_sym_global] = ACTIONS(1823), - [anon_sym_nonlocal] = ACTIONS(1823), - [anon_sym_exec] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1825), - [anon_sym_AT] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_lambda] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1825), - [anon_sym_None] = ACTIONS(1823), - [sym_integer] = ACTIONS(1823), - [sym_float] = ACTIONS(1825), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_api] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1823), - [anon_sym_include] = ACTIONS(1823), - [anon_sym_DEF] = ACTIONS(1823), - [anon_sym_cdef] = ACTIONS(1823), - [anon_sym_cpdef] = ACTIONS(1823), - [anon_sym_int] = ACTIONS(1823), - [anon_sym_double] = ACTIONS(1823), - [anon_sym_complex] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_signed] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_char] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym_ctypedef] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_cppclass] = ACTIONS(1823), - [anon_sym_fused] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_packed] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_readonly] = ACTIONS(1823), - [anon_sym_sizeof] = ACTIONS(1823), - [sym__dedent] = ACTIONS(1825), - [sym_string_start] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_import] = ACTIONS(1821), + [anon_sym_cimport] = ACTIONS(1821), + [anon_sym_from] = ACTIONS(1821), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_print] = ACTIONS(1821), + [anon_sym_assert] = ACTIONS(1821), + [anon_sym_return] = ACTIONS(1821), + [anon_sym_del] = ACTIONS(1821), + [anon_sym_raise] = ACTIONS(1821), + [anon_sym_pass] = ACTIONS(1821), + [anon_sym_break] = ACTIONS(1821), + [anon_sym_continue] = ACTIONS(1821), + [anon_sym_if] = ACTIONS(1821), + [anon_sym_match] = ACTIONS(1821), + [anon_sym_async] = ACTIONS(1821), + [anon_sym_for] = ACTIONS(1821), + [anon_sym_while] = ACTIONS(1821), + [anon_sym_try] = ACTIONS(1821), + [anon_sym_with] = ACTIONS(1821), + [anon_sym_def] = ACTIONS(1821), + [anon_sym_global] = ACTIONS(1821), + [anon_sym_nonlocal] = ACTIONS(1821), + [anon_sym_exec] = ACTIONS(1821), + [anon_sym_type] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_AT] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_not] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_lambda] = ACTIONS(1821), + [anon_sym_yield] = ACTIONS(1821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), + [anon_sym_None] = ACTIONS(1821), + [sym_integer] = ACTIONS(1821), + [sym_float] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1821), + [anon_sym_api] = ACTIONS(1821), + [sym_true] = ACTIONS(1821), + [sym_false] = ACTIONS(1821), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1821), + [anon_sym_include] = ACTIONS(1821), + [anon_sym_DEF] = ACTIONS(1821), + [anon_sym_cdef] = ACTIONS(1821), + [anon_sym_cpdef] = ACTIONS(1821), + [anon_sym_int] = ACTIONS(1821), + [anon_sym_double] = ACTIONS(1821), + [anon_sym_complex] = ACTIONS(1821), + [anon_sym_new] = ACTIONS(1821), + [anon_sym_signed] = ACTIONS(1821), + [anon_sym_unsigned] = ACTIONS(1821), + [anon_sym_char] = ACTIONS(1821), + [anon_sym_short] = ACTIONS(1821), + [anon_sym_long] = ACTIONS(1821), + [anon_sym_const] = ACTIONS(1821), + [anon_sym_volatile] = ACTIONS(1821), + [anon_sym_ctypedef] = ACTIONS(1821), + [anon_sym_struct] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1821), + [anon_sym_enum] = ACTIONS(1821), + [anon_sym_cppclass] = ACTIONS(1821), + [anon_sym_fused] = ACTIONS(1821), + [anon_sym_public] = ACTIONS(1821), + [anon_sym_packed] = ACTIONS(1821), + [anon_sym_inline] = ACTIONS(1821), + [anon_sym_readonly] = ACTIONS(1821), + [anon_sym_sizeof] = ACTIONS(1821), + [sym__dedent] = ACTIONS(1823), + [sym_string_start] = ACTIONS(1823), }, [582] = { - [sym_identifier] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_import] = ACTIONS(1851), - [anon_sym_cimport] = ACTIONS(1851), - [anon_sym_from] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_print] = ACTIONS(1851), - [anon_sym_assert] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_del] = ACTIONS(1851), - [anon_sym_raise] = ACTIONS(1851), - [anon_sym_pass] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_async] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_with] = ACTIONS(1851), - [anon_sym_def] = ACTIONS(1851), - [anon_sym_global] = ACTIONS(1851), - [anon_sym_nonlocal] = ACTIONS(1851), - [anon_sym_exec] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_class] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_not] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_lambda] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1853), - [anon_sym_None] = ACTIONS(1851), - [sym_integer] = ACTIONS(1851), - [sym_float] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_api] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1851), - [anon_sym_include] = ACTIONS(1851), - [anon_sym_DEF] = ACTIONS(1851), - [anon_sym_cdef] = ACTIONS(1851), - [anon_sym_cpdef] = ACTIONS(1851), - [anon_sym_int] = ACTIONS(1851), - [anon_sym_double] = ACTIONS(1851), - [anon_sym_complex] = ACTIONS(1851), - [anon_sym_new] = ACTIONS(1851), - [anon_sym_signed] = ACTIONS(1851), - [anon_sym_unsigned] = ACTIONS(1851), - [anon_sym_char] = ACTIONS(1851), - [anon_sym_short] = ACTIONS(1851), - [anon_sym_long] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_volatile] = ACTIONS(1851), - [anon_sym_ctypedef] = ACTIONS(1851), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_union] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [anon_sym_cppclass] = ACTIONS(1851), - [anon_sym_fused] = ACTIONS(1851), - [anon_sym_public] = ACTIONS(1851), - [anon_sym_packed] = ACTIONS(1851), - [anon_sym_inline] = ACTIONS(1851), - [anon_sym_readonly] = ACTIONS(1851), - [anon_sym_sizeof] = ACTIONS(1851), - [sym__dedent] = ACTIONS(1853), - [sym_string_start] = ACTIONS(1853), + [sym_identifier] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_import] = ACTIONS(1825), + [anon_sym_cimport] = ACTIONS(1825), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1827), + [anon_sym_print] = ACTIONS(1825), + [anon_sym_assert] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_del] = ACTIONS(1825), + [anon_sym_raise] = ACTIONS(1825), + [anon_sym_pass] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_match] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1825), + [anon_sym_with] = ACTIONS(1825), + [anon_sym_def] = ACTIONS(1825), + [anon_sym_global] = ACTIONS(1825), + [anon_sym_nonlocal] = ACTIONS(1825), + [anon_sym_exec] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_class] = ACTIONS(1825), + [anon_sym_LBRACK] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_not] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_lambda] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1827), + [anon_sym_None] = ACTIONS(1825), + [sym_integer] = ACTIONS(1825), + [sym_float] = ACTIONS(1827), + [anon_sym_await] = ACTIONS(1825), + [anon_sym_api] = ACTIONS(1825), + [sym_true] = ACTIONS(1825), + [sym_false] = ACTIONS(1825), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_include] = ACTIONS(1825), + [anon_sym_DEF] = ACTIONS(1825), + [anon_sym_cdef] = ACTIONS(1825), + [anon_sym_cpdef] = ACTIONS(1825), + [anon_sym_int] = ACTIONS(1825), + [anon_sym_double] = ACTIONS(1825), + [anon_sym_complex] = ACTIONS(1825), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_signed] = ACTIONS(1825), + [anon_sym_unsigned] = ACTIONS(1825), + [anon_sym_char] = ACTIONS(1825), + [anon_sym_short] = ACTIONS(1825), + [anon_sym_long] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_volatile] = ACTIONS(1825), + [anon_sym_ctypedef] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_cppclass] = ACTIONS(1825), + [anon_sym_fused] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_packed] = ACTIONS(1825), + [anon_sym_inline] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_sizeof] = ACTIONS(1825), + [sym__dedent] = ACTIONS(1827), + [sym_string_start] = ACTIONS(1827), }, [583] = { - [sym_identifier] = ACTIONS(1855), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_cimport] = ACTIONS(1855), - [anon_sym_from] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_STAR] = ACTIONS(1857), - [anon_sym_print] = ACTIONS(1855), - [anon_sym_assert] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_del] = ACTIONS(1855), - [anon_sym_raise] = ACTIONS(1855), - [anon_sym_pass] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_match] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_def] = ACTIONS(1855), - [anon_sym_global] = ACTIONS(1855), - [anon_sym_nonlocal] = ACTIONS(1855), - [anon_sym_exec] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_AT] = ACTIONS(1857), - [anon_sym_DASH] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_PLUS] = ACTIONS(1857), - [anon_sym_not] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1857), - [anon_sym_TILDE] = ACTIONS(1857), - [anon_sym_LT] = ACTIONS(1857), - [anon_sym_lambda] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1857), - [anon_sym_None] = ACTIONS(1855), - [sym_integer] = ACTIONS(1855), - [sym_float] = ACTIONS(1857), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_api] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1855), - [anon_sym_include] = ACTIONS(1855), - [anon_sym_DEF] = ACTIONS(1855), - [anon_sym_cdef] = ACTIONS(1855), - [anon_sym_cpdef] = ACTIONS(1855), - [anon_sym_int] = ACTIONS(1855), - [anon_sym_double] = ACTIONS(1855), - [anon_sym_complex] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_signed] = ACTIONS(1855), - [anon_sym_unsigned] = ACTIONS(1855), - [anon_sym_char] = ACTIONS(1855), - [anon_sym_short] = ACTIONS(1855), - [anon_sym_long] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_volatile] = ACTIONS(1855), - [anon_sym_ctypedef] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1855), - [anon_sym_union] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [anon_sym_cppclass] = ACTIONS(1855), - [anon_sym_fused] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_packed] = ACTIONS(1855), - [anon_sym_inline] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_sizeof] = ACTIONS(1855), - [sym__dedent] = ACTIONS(1857), - [sym_string_start] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1829), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(1829), + [anon_sym_cimport] = ACTIONS(1829), + [anon_sym_from] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_print] = ACTIONS(1829), + [anon_sym_assert] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_del] = ACTIONS(1829), + [anon_sym_raise] = ACTIONS(1829), + [anon_sym_pass] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_match] = ACTIONS(1829), + [anon_sym_async] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_try] = ACTIONS(1829), + [anon_sym_with] = ACTIONS(1829), + [anon_sym_def] = ACTIONS(1829), + [anon_sym_global] = ACTIONS(1829), + [anon_sym_nonlocal] = ACTIONS(1829), + [anon_sym_exec] = ACTIONS(1829), + [anon_sym_type] = ACTIONS(1829), + [anon_sym_class] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_AT] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_not] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(1831), + [anon_sym_lambda] = ACTIONS(1829), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), + [anon_sym_None] = ACTIONS(1829), + [sym_integer] = ACTIONS(1829), + [sym_float] = ACTIONS(1831), + [anon_sym_await] = ACTIONS(1829), + [anon_sym_api] = ACTIONS(1829), + [sym_true] = ACTIONS(1829), + [sym_false] = ACTIONS(1829), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1829), + [anon_sym_include] = ACTIONS(1829), + [anon_sym_DEF] = ACTIONS(1829), + [anon_sym_cdef] = ACTIONS(1829), + [anon_sym_cpdef] = ACTIONS(1829), + [anon_sym_int] = ACTIONS(1829), + [anon_sym_double] = ACTIONS(1829), + [anon_sym_complex] = ACTIONS(1829), + [anon_sym_new] = ACTIONS(1829), + [anon_sym_signed] = ACTIONS(1829), + [anon_sym_unsigned] = ACTIONS(1829), + [anon_sym_char] = ACTIONS(1829), + [anon_sym_short] = ACTIONS(1829), + [anon_sym_long] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [anon_sym_volatile] = ACTIONS(1829), + [anon_sym_ctypedef] = ACTIONS(1829), + [anon_sym_struct] = ACTIONS(1829), + [anon_sym_union] = ACTIONS(1829), + [anon_sym_enum] = ACTIONS(1829), + [anon_sym_cppclass] = ACTIONS(1829), + [anon_sym_fused] = ACTIONS(1829), + [anon_sym_public] = ACTIONS(1829), + [anon_sym_packed] = ACTIONS(1829), + [anon_sym_inline] = ACTIONS(1829), + [anon_sym_readonly] = ACTIONS(1829), + [anon_sym_sizeof] = ACTIONS(1829), + [sym__dedent] = ACTIONS(1831), + [sym_string_start] = ACTIONS(1831), }, [584] = { - [sym_identifier] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1859), - [anon_sym_cimport] = ACTIONS(1859), - [anon_sym_from] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_print] = ACTIONS(1859), - [anon_sym_assert] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_del] = ACTIONS(1859), - [anon_sym_raise] = ACTIONS(1859), - [anon_sym_pass] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_match] = ACTIONS(1859), - [anon_sym_async] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_try] = ACTIONS(1859), - [anon_sym_with] = ACTIONS(1859), - [anon_sym_def] = ACTIONS(1859), - [anon_sym_global] = ACTIONS(1859), - [anon_sym_nonlocal] = ACTIONS(1859), - [anon_sym_exec] = ACTIONS(1859), - [anon_sym_type] = ACTIONS(1859), - [anon_sym_class] = ACTIONS(1859), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_not] = ACTIONS(1859), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_lambda] = ACTIONS(1859), - [anon_sym_yield] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), - [anon_sym_None] = ACTIONS(1859), - [sym_integer] = ACTIONS(1859), - [sym_float] = ACTIONS(1861), - [anon_sym_await] = ACTIONS(1859), - [anon_sym_api] = ACTIONS(1859), - [sym_true] = ACTIONS(1859), - [sym_false] = ACTIONS(1859), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1859), - [anon_sym_include] = ACTIONS(1859), - [anon_sym_DEF] = ACTIONS(1859), - [anon_sym_cdef] = ACTIONS(1859), - [anon_sym_cpdef] = ACTIONS(1859), - [anon_sym_int] = ACTIONS(1859), - [anon_sym_double] = ACTIONS(1859), - [anon_sym_complex] = ACTIONS(1859), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_signed] = ACTIONS(1859), - [anon_sym_unsigned] = ACTIONS(1859), - [anon_sym_char] = ACTIONS(1859), - [anon_sym_short] = ACTIONS(1859), - [anon_sym_long] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [anon_sym_volatile] = ACTIONS(1859), - [anon_sym_ctypedef] = ACTIONS(1859), - [anon_sym_struct] = ACTIONS(1859), - [anon_sym_union] = ACTIONS(1859), - [anon_sym_enum] = ACTIONS(1859), - [anon_sym_cppclass] = ACTIONS(1859), - [anon_sym_fused] = ACTIONS(1859), - [anon_sym_public] = ACTIONS(1859), - [anon_sym_packed] = ACTIONS(1859), - [anon_sym_inline] = ACTIONS(1859), - [anon_sym_readonly] = ACTIONS(1859), - [anon_sym_sizeof] = ACTIONS(1859), - [sym__dedent] = ACTIONS(1861), - [sym_string_start] = ACTIONS(1861), + [sym_identifier] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_import] = ACTIONS(1833), + [anon_sym_cimport] = ACTIONS(1833), + [anon_sym_from] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_print] = ACTIONS(1833), + [anon_sym_assert] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_del] = ACTIONS(1833), + [anon_sym_raise] = ACTIONS(1833), + [anon_sym_pass] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_with] = ACTIONS(1833), + [anon_sym_def] = ACTIONS(1833), + [anon_sym_global] = ACTIONS(1833), + [anon_sym_nonlocal] = ACTIONS(1833), + [anon_sym_exec] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_class] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_not] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1835), + [anon_sym_lambda] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1835), + [anon_sym_None] = ACTIONS(1833), + [sym_integer] = ACTIONS(1833), + [sym_float] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_api] = ACTIONS(1833), + [sym_true] = ACTIONS(1833), + [sym_false] = ACTIONS(1833), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1833), + [anon_sym_include] = ACTIONS(1833), + [anon_sym_DEF] = ACTIONS(1833), + [anon_sym_cdef] = ACTIONS(1833), + [anon_sym_cpdef] = ACTIONS(1833), + [anon_sym_int] = ACTIONS(1833), + [anon_sym_double] = ACTIONS(1833), + [anon_sym_complex] = ACTIONS(1833), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_signed] = ACTIONS(1833), + [anon_sym_unsigned] = ACTIONS(1833), + [anon_sym_char] = ACTIONS(1833), + [anon_sym_short] = ACTIONS(1833), + [anon_sym_long] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_volatile] = ACTIONS(1833), + [anon_sym_ctypedef] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1833), + [anon_sym_union] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_cppclass] = ACTIONS(1833), + [anon_sym_fused] = ACTIONS(1833), + [anon_sym_public] = ACTIONS(1833), + [anon_sym_packed] = ACTIONS(1833), + [anon_sym_inline] = ACTIONS(1833), + [anon_sym_readonly] = ACTIONS(1833), + [anon_sym_sizeof] = ACTIONS(1833), + [sym__dedent] = ACTIONS(1835), + [sym_string_start] = ACTIONS(1835), }, [585] = { - [sym_identifier] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_import] = ACTIONS(1863), - [anon_sym_cimport] = ACTIONS(1863), - [anon_sym_from] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_print] = ACTIONS(1863), - [anon_sym_assert] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_del] = ACTIONS(1863), - [anon_sym_raise] = ACTIONS(1863), - [anon_sym_pass] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_async] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_with] = ACTIONS(1863), - [anon_sym_def] = ACTIONS(1863), - [anon_sym_global] = ACTIONS(1863), - [anon_sym_nonlocal] = ACTIONS(1863), - [anon_sym_exec] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1863), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_AT] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_PLUS] = ACTIONS(1865), - [anon_sym_not] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_lambda] = ACTIONS(1863), - [anon_sym_yield] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1865), - [anon_sym_None] = ACTIONS(1863), - [sym_integer] = ACTIONS(1863), - [sym_float] = ACTIONS(1865), - [anon_sym_await] = ACTIONS(1863), - [anon_sym_api] = ACTIONS(1863), - [sym_true] = ACTIONS(1863), - [sym_false] = ACTIONS(1863), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1863), - [anon_sym_include] = ACTIONS(1863), - [anon_sym_DEF] = ACTIONS(1863), - [anon_sym_cdef] = ACTIONS(1863), - [anon_sym_cpdef] = ACTIONS(1863), - [anon_sym_int] = ACTIONS(1863), - [anon_sym_double] = ACTIONS(1863), - [anon_sym_complex] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_signed] = ACTIONS(1863), - [anon_sym_unsigned] = ACTIONS(1863), - [anon_sym_char] = ACTIONS(1863), - [anon_sym_short] = ACTIONS(1863), - [anon_sym_long] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_volatile] = ACTIONS(1863), - [anon_sym_ctypedef] = ACTIONS(1863), - [anon_sym_struct] = ACTIONS(1863), - [anon_sym_union] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [anon_sym_cppclass] = ACTIONS(1863), - [anon_sym_fused] = ACTIONS(1863), - [anon_sym_public] = ACTIONS(1863), - [anon_sym_packed] = ACTIONS(1863), - [anon_sym_inline] = ACTIONS(1863), - [anon_sym_readonly] = ACTIONS(1863), - [anon_sym_sizeof] = ACTIONS(1863), - [sym__dedent] = ACTIONS(1865), - [sym_string_start] = ACTIONS(1865), + [sym_identifier] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_import] = ACTIONS(1837), + [anon_sym_cimport] = ACTIONS(1837), + [anon_sym_from] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_print] = ACTIONS(1837), + [anon_sym_assert] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_del] = ACTIONS(1837), + [anon_sym_raise] = ACTIONS(1837), + [anon_sym_pass] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_while] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_with] = ACTIONS(1837), + [anon_sym_def] = ACTIONS(1837), + [anon_sym_global] = ACTIONS(1837), + [anon_sym_nonlocal] = ACTIONS(1837), + [anon_sym_exec] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_class] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_AT] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1839), + [anon_sym_not] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1839), + [anon_sym_TILDE] = ACTIONS(1839), + [anon_sym_LT] = ACTIONS(1839), + [anon_sym_lambda] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1839), + [anon_sym_None] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_api] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1837), + [anon_sym_include] = ACTIONS(1837), + [anon_sym_DEF] = ACTIONS(1837), + [anon_sym_cdef] = ACTIONS(1837), + [anon_sym_cpdef] = ACTIONS(1837), + [anon_sym_int] = ACTIONS(1837), + [anon_sym_double] = ACTIONS(1837), + [anon_sym_complex] = ACTIONS(1837), + [anon_sym_new] = ACTIONS(1837), + [anon_sym_signed] = ACTIONS(1837), + [anon_sym_unsigned] = ACTIONS(1837), + [anon_sym_char] = ACTIONS(1837), + [anon_sym_short] = ACTIONS(1837), + [anon_sym_long] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_volatile] = ACTIONS(1837), + [anon_sym_ctypedef] = ACTIONS(1837), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_cppclass] = ACTIONS(1837), + [anon_sym_fused] = ACTIONS(1837), + [anon_sym_public] = ACTIONS(1837), + [anon_sym_packed] = ACTIONS(1837), + [anon_sym_inline] = ACTIONS(1837), + [anon_sym_readonly] = ACTIONS(1837), + [anon_sym_sizeof] = ACTIONS(1837), + [sym__dedent] = ACTIONS(1839), + [sym_string_start] = ACTIONS(1839), }, [586] = { - [sym_identifier] = ACTIONS(1867), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_import] = ACTIONS(1867), - [anon_sym_cimport] = ACTIONS(1867), - [anon_sym_from] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_print] = ACTIONS(1867), - [anon_sym_assert] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_del] = ACTIONS(1867), - [anon_sym_raise] = ACTIONS(1867), - [anon_sym_pass] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_with] = ACTIONS(1867), - [anon_sym_def] = ACTIONS(1867), - [anon_sym_global] = ACTIONS(1867), - [anon_sym_nonlocal] = ACTIONS(1867), - [anon_sym_exec] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_AT] = ACTIONS(1869), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1869), - [anon_sym_not] = ACTIONS(1867), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_lambda] = ACTIONS(1867), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), - [anon_sym_None] = ACTIONS(1867), - [sym_integer] = ACTIONS(1867), - [sym_float] = ACTIONS(1869), - [anon_sym_await] = ACTIONS(1867), - [anon_sym_api] = ACTIONS(1867), - [sym_true] = ACTIONS(1867), - [sym_false] = ACTIONS(1867), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1867), - [anon_sym_include] = ACTIONS(1867), - [anon_sym_DEF] = ACTIONS(1867), - [anon_sym_cdef] = ACTIONS(1867), - [anon_sym_cpdef] = ACTIONS(1867), - [anon_sym_int] = ACTIONS(1867), - [anon_sym_double] = ACTIONS(1867), - [anon_sym_complex] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_signed] = ACTIONS(1867), - [anon_sym_unsigned] = ACTIONS(1867), - [anon_sym_char] = ACTIONS(1867), - [anon_sym_short] = ACTIONS(1867), - [anon_sym_long] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_volatile] = ACTIONS(1867), - [anon_sym_ctypedef] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_cppclass] = ACTIONS(1867), - [anon_sym_fused] = ACTIONS(1867), - [anon_sym_public] = ACTIONS(1867), - [anon_sym_packed] = ACTIONS(1867), - [anon_sym_inline] = ACTIONS(1867), - [anon_sym_readonly] = ACTIONS(1867), - [anon_sym_sizeof] = ACTIONS(1867), - [sym__dedent] = ACTIONS(1869), - [sym_string_start] = ACTIONS(1869), + [sym_identifier] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_import] = ACTIONS(1841), + [anon_sym_cimport] = ACTIONS(1841), + [anon_sym_from] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_print] = ACTIONS(1841), + [anon_sym_assert] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_del] = ACTIONS(1841), + [anon_sym_raise] = ACTIONS(1841), + [anon_sym_pass] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_async] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_with] = ACTIONS(1841), + [anon_sym_def] = ACTIONS(1841), + [anon_sym_global] = ACTIONS(1841), + [anon_sym_nonlocal] = ACTIONS(1841), + [anon_sym_exec] = ACTIONS(1841), + [anon_sym_type] = ACTIONS(1841), + [anon_sym_class] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_lambda] = ACTIONS(1841), + [anon_sym_yield] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), + [anon_sym_None] = ACTIONS(1841), + [sym_integer] = ACTIONS(1841), + [sym_float] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_api] = ACTIONS(1841), + [sym_true] = ACTIONS(1841), + [sym_false] = ACTIONS(1841), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1841), + [anon_sym_include] = ACTIONS(1841), + [anon_sym_DEF] = ACTIONS(1841), + [anon_sym_cdef] = ACTIONS(1841), + [anon_sym_cpdef] = ACTIONS(1841), + [anon_sym_int] = ACTIONS(1841), + [anon_sym_double] = ACTIONS(1841), + [anon_sym_complex] = ACTIONS(1841), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_signed] = ACTIONS(1841), + [anon_sym_unsigned] = ACTIONS(1841), + [anon_sym_char] = ACTIONS(1841), + [anon_sym_short] = ACTIONS(1841), + [anon_sym_long] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [anon_sym_volatile] = ACTIONS(1841), + [anon_sym_ctypedef] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1841), + [anon_sym_union] = ACTIONS(1841), + [anon_sym_enum] = ACTIONS(1841), + [anon_sym_cppclass] = ACTIONS(1841), + [anon_sym_fused] = ACTIONS(1841), + [anon_sym_public] = ACTIONS(1841), + [anon_sym_packed] = ACTIONS(1841), + [anon_sym_inline] = ACTIONS(1841), + [anon_sym_readonly] = ACTIONS(1841), + [anon_sym_sizeof] = ACTIONS(1841), + [sym__dedent] = ACTIONS(1843), + [sym_string_start] = ACTIONS(1843), }, [587] = { - [sym_identifier] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_import] = ACTIONS(1871), - [anon_sym_cimport] = ACTIONS(1871), - [anon_sym_from] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_print] = ACTIONS(1871), - [anon_sym_assert] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_del] = ACTIONS(1871), - [anon_sym_raise] = ACTIONS(1871), - [anon_sym_pass] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_with] = ACTIONS(1871), - [anon_sym_def] = ACTIONS(1871), - [anon_sym_global] = ACTIONS(1871), - [anon_sym_nonlocal] = ACTIONS(1871), - [anon_sym_exec] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_AT] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_not] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_lambda] = ACTIONS(1871), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1873), - [anon_sym_None] = ACTIONS(1871), - [sym_integer] = ACTIONS(1871), - [sym_float] = ACTIONS(1873), - [anon_sym_await] = ACTIONS(1871), - [anon_sym_api] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1871), - [anon_sym_include] = ACTIONS(1871), - [anon_sym_DEF] = ACTIONS(1871), - [anon_sym_cdef] = ACTIONS(1871), - [anon_sym_cpdef] = ACTIONS(1871), - [anon_sym_int] = ACTIONS(1871), - [anon_sym_double] = ACTIONS(1871), - [anon_sym_complex] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_signed] = ACTIONS(1871), - [anon_sym_unsigned] = ACTIONS(1871), - [anon_sym_char] = ACTIONS(1871), - [anon_sym_short] = ACTIONS(1871), - [anon_sym_long] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_volatile] = ACTIONS(1871), - [anon_sym_ctypedef] = ACTIONS(1871), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_cppclass] = ACTIONS(1871), - [anon_sym_fused] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_packed] = ACTIONS(1871), - [anon_sym_inline] = ACTIONS(1871), - [anon_sym_readonly] = ACTIONS(1871), - [anon_sym_sizeof] = ACTIONS(1871), - [sym__dedent] = ACTIONS(1873), - [sym_string_start] = ACTIONS(1873), + [sym_identifier] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_import] = ACTIONS(1845), + [anon_sym_cimport] = ACTIONS(1845), + [anon_sym_from] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_print] = ACTIONS(1845), + [anon_sym_assert] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_del] = ACTIONS(1845), + [anon_sym_raise] = ACTIONS(1845), + [anon_sym_pass] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_async] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1845), + [anon_sym_with] = ACTIONS(1845), + [anon_sym_def] = ACTIONS(1845), + [anon_sym_global] = ACTIONS(1845), + [anon_sym_nonlocal] = ACTIONS(1845), + [anon_sym_exec] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_class] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_AT] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1847), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_lambda] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1847), + [anon_sym_None] = ACTIONS(1845), + [sym_integer] = ACTIONS(1845), + [sym_float] = ACTIONS(1847), + [anon_sym_await] = ACTIONS(1845), + [anon_sym_api] = ACTIONS(1845), + [sym_true] = ACTIONS(1845), + [sym_false] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1845), + [anon_sym_include] = ACTIONS(1845), + [anon_sym_DEF] = ACTIONS(1845), + [anon_sym_cdef] = ACTIONS(1845), + [anon_sym_cpdef] = ACTIONS(1845), + [anon_sym_int] = ACTIONS(1845), + [anon_sym_double] = ACTIONS(1845), + [anon_sym_complex] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1845), + [anon_sym_signed] = ACTIONS(1845), + [anon_sym_unsigned] = ACTIONS(1845), + [anon_sym_char] = ACTIONS(1845), + [anon_sym_short] = ACTIONS(1845), + [anon_sym_long] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [anon_sym_volatile] = ACTIONS(1845), + [anon_sym_ctypedef] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(1845), + [anon_sym_union] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), + [anon_sym_cppclass] = ACTIONS(1845), + [anon_sym_fused] = ACTIONS(1845), + [anon_sym_public] = ACTIONS(1845), + [anon_sym_packed] = ACTIONS(1845), + [anon_sym_inline] = ACTIONS(1845), + [anon_sym_readonly] = ACTIONS(1845), + [anon_sym_sizeof] = ACTIONS(1845), + [sym__dedent] = ACTIONS(1847), + [sym_string_start] = ACTIONS(1847), }, [588] = { - [sym_identifier] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_import] = ACTIONS(1875), - [anon_sym_cimport] = ACTIONS(1875), - [anon_sym_from] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_print] = ACTIONS(1875), - [anon_sym_assert] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_del] = ACTIONS(1875), - [anon_sym_raise] = ACTIONS(1875), - [anon_sym_pass] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_match] = ACTIONS(1875), - [anon_sym_async] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_with] = ACTIONS(1875), - [anon_sym_def] = ACTIONS(1875), - [anon_sym_global] = ACTIONS(1875), - [anon_sym_nonlocal] = ACTIONS(1875), - [anon_sym_exec] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_class] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_AT] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_not] = ACTIONS(1875), - [anon_sym_AMP] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1877), - [anon_sym_lambda] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), - [anon_sym_None] = ACTIONS(1875), - [sym_integer] = ACTIONS(1875), - [sym_float] = ACTIONS(1877), - [anon_sym_await] = ACTIONS(1875), - [anon_sym_api] = ACTIONS(1875), - [sym_true] = ACTIONS(1875), - [sym_false] = ACTIONS(1875), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1875), - [anon_sym_include] = ACTIONS(1875), - [anon_sym_DEF] = ACTIONS(1875), - [anon_sym_cdef] = ACTIONS(1875), - [anon_sym_cpdef] = ACTIONS(1875), - [anon_sym_int] = ACTIONS(1875), - [anon_sym_double] = ACTIONS(1875), - [anon_sym_complex] = ACTIONS(1875), - [anon_sym_new] = ACTIONS(1875), - [anon_sym_signed] = ACTIONS(1875), - [anon_sym_unsigned] = ACTIONS(1875), - [anon_sym_char] = ACTIONS(1875), - [anon_sym_short] = ACTIONS(1875), - [anon_sym_long] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [anon_sym_volatile] = ACTIONS(1875), - [anon_sym_ctypedef] = ACTIONS(1875), - [anon_sym_struct] = ACTIONS(1875), - [anon_sym_union] = ACTIONS(1875), - [anon_sym_enum] = ACTIONS(1875), - [anon_sym_cppclass] = ACTIONS(1875), - [anon_sym_fused] = ACTIONS(1875), - [anon_sym_public] = ACTIONS(1875), - [anon_sym_packed] = ACTIONS(1875), - [anon_sym_inline] = ACTIONS(1875), - [anon_sym_readonly] = ACTIONS(1875), - [anon_sym_sizeof] = ACTIONS(1875), - [sym__dedent] = ACTIONS(1877), - [sym_string_start] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_import] = ACTIONS(1849), + [anon_sym_cimport] = ACTIONS(1849), + [anon_sym_from] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_print] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_del] = ACTIONS(1849), + [anon_sym_raise] = ACTIONS(1849), + [anon_sym_pass] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_async] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_while] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_with] = ACTIONS(1849), + [anon_sym_def] = ACTIONS(1849), + [anon_sym_global] = ACTIONS(1849), + [anon_sym_nonlocal] = ACTIONS(1849), + [anon_sym_exec] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_class] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_not] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_lambda] = ACTIONS(1849), + [anon_sym_yield] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1851), + [anon_sym_None] = ACTIONS(1849), + [sym_integer] = ACTIONS(1849), + [sym_float] = ACTIONS(1851), + [anon_sym_await] = ACTIONS(1849), + [anon_sym_api] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1849), + [anon_sym_include] = ACTIONS(1849), + [anon_sym_DEF] = ACTIONS(1849), + [anon_sym_cdef] = ACTIONS(1849), + [anon_sym_cpdef] = ACTIONS(1849), + [anon_sym_int] = ACTIONS(1849), + [anon_sym_double] = ACTIONS(1849), + [anon_sym_complex] = ACTIONS(1849), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_signed] = ACTIONS(1849), + [anon_sym_unsigned] = ACTIONS(1849), + [anon_sym_char] = ACTIONS(1849), + [anon_sym_short] = ACTIONS(1849), + [anon_sym_long] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_volatile] = ACTIONS(1849), + [anon_sym_ctypedef] = ACTIONS(1849), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_cppclass] = ACTIONS(1849), + [anon_sym_fused] = ACTIONS(1849), + [anon_sym_public] = ACTIONS(1849), + [anon_sym_packed] = ACTIONS(1849), + [anon_sym_inline] = ACTIONS(1849), + [anon_sym_readonly] = ACTIONS(1849), + [anon_sym_sizeof] = ACTIONS(1849), + [sym__dedent] = ACTIONS(1851), + [sym_string_start] = ACTIONS(1851), }, [589] = { - [sym_identifier] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_import] = ACTIONS(1879), - [anon_sym_cimport] = ACTIONS(1879), - [anon_sym_from] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_print] = ACTIONS(1879), - [anon_sym_assert] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_del] = ACTIONS(1879), - [anon_sym_raise] = ACTIONS(1879), - [anon_sym_pass] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_async] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_with] = ACTIONS(1879), - [anon_sym_def] = ACTIONS(1879), - [anon_sym_global] = ACTIONS(1879), - [anon_sym_nonlocal] = ACTIONS(1879), - [anon_sym_exec] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_class] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_not] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_lambda] = ACTIONS(1879), - [anon_sym_yield] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), - [anon_sym_None] = ACTIONS(1879), - [sym_integer] = ACTIONS(1879), - [sym_float] = ACTIONS(1881), - [anon_sym_await] = ACTIONS(1879), - [anon_sym_api] = ACTIONS(1879), - [sym_true] = ACTIONS(1879), - [sym_false] = ACTIONS(1879), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1879), - [anon_sym_include] = ACTIONS(1879), - [anon_sym_DEF] = ACTIONS(1879), - [anon_sym_cdef] = ACTIONS(1879), - [anon_sym_cpdef] = ACTIONS(1879), - [anon_sym_int] = ACTIONS(1879), - [anon_sym_double] = ACTIONS(1879), - [anon_sym_complex] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_signed] = ACTIONS(1879), - [anon_sym_unsigned] = ACTIONS(1879), - [anon_sym_char] = ACTIONS(1879), - [anon_sym_short] = ACTIONS(1879), - [anon_sym_long] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_volatile] = ACTIONS(1879), - [anon_sym_ctypedef] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_union] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [anon_sym_cppclass] = ACTIONS(1879), - [anon_sym_fused] = ACTIONS(1879), - [anon_sym_public] = ACTIONS(1879), - [anon_sym_packed] = ACTIONS(1879), - [anon_sym_inline] = ACTIONS(1879), - [anon_sym_readonly] = ACTIONS(1879), - [anon_sym_sizeof] = ACTIONS(1879), - [sym__dedent] = ACTIONS(1881), - [sym_string_start] = ACTIONS(1881), + [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), }, [590] = { - [sym_identifier] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_import] = ACTIONS(1883), - [anon_sym_cimport] = ACTIONS(1883), - [anon_sym_from] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_print] = ACTIONS(1883), - [anon_sym_assert] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_del] = ACTIONS(1883), - [anon_sym_raise] = ACTIONS(1883), - [anon_sym_pass] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_async] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_try] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1883), - [anon_sym_def] = ACTIONS(1883), - [anon_sym_global] = ACTIONS(1883), - [anon_sym_nonlocal] = ACTIONS(1883), - [anon_sym_exec] = ACTIONS(1883), - [anon_sym_type] = ACTIONS(1883), - [anon_sym_class] = ACTIONS(1883), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(1885), - [anon_sym_not] = ACTIONS(1883), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_lambda] = ACTIONS(1883), - [anon_sym_yield] = ACTIONS(1883), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), - [anon_sym_None] = ACTIONS(1883), - [sym_integer] = ACTIONS(1883), - [sym_float] = ACTIONS(1885), - [anon_sym_await] = ACTIONS(1883), - [anon_sym_api] = ACTIONS(1883), - [sym_true] = ACTIONS(1883), - [sym_false] = ACTIONS(1883), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1883), - [anon_sym_include] = ACTIONS(1883), - [anon_sym_DEF] = ACTIONS(1883), - [anon_sym_cdef] = ACTIONS(1883), - [anon_sym_cpdef] = ACTIONS(1883), - [anon_sym_int] = ACTIONS(1883), - [anon_sym_double] = ACTIONS(1883), - [anon_sym_complex] = ACTIONS(1883), - [anon_sym_new] = ACTIONS(1883), - [anon_sym_signed] = ACTIONS(1883), - [anon_sym_unsigned] = ACTIONS(1883), - [anon_sym_char] = ACTIONS(1883), - [anon_sym_short] = ACTIONS(1883), - [anon_sym_long] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [anon_sym_volatile] = ACTIONS(1883), - [anon_sym_ctypedef] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_union] = ACTIONS(1883), - [anon_sym_enum] = ACTIONS(1883), - [anon_sym_cppclass] = ACTIONS(1883), - [anon_sym_fused] = ACTIONS(1883), - [anon_sym_public] = ACTIONS(1883), - [anon_sym_packed] = ACTIONS(1883), - [anon_sym_inline] = ACTIONS(1883), - [anon_sym_readonly] = ACTIONS(1883), - [anon_sym_sizeof] = ACTIONS(1883), - [sym__dedent] = ACTIONS(1885), - [sym_string_start] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1857), + [anon_sym_cimport] = ACTIONS(1857), + [anon_sym_from] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_print] = ACTIONS(1857), + [anon_sym_assert] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1857), + [anon_sym_del] = ACTIONS(1857), + [anon_sym_raise] = ACTIONS(1857), + [anon_sym_pass] = ACTIONS(1857), + [anon_sym_break] = ACTIONS(1857), + [anon_sym_continue] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1857), + [anon_sym_match] = ACTIONS(1857), + [anon_sym_async] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1857), + [anon_sym_while] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1857), + [anon_sym_with] = ACTIONS(1857), + [anon_sym_def] = ACTIONS(1857), + [anon_sym_global] = ACTIONS(1857), + [anon_sym_nonlocal] = ACTIONS(1857), + [anon_sym_exec] = ACTIONS(1857), + [anon_sym_type] = ACTIONS(1857), + [anon_sym_class] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1857), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1859), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_lambda] = ACTIONS(1857), + [anon_sym_yield] = ACTIONS(1857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1859), + [anon_sym_None] = ACTIONS(1857), + [sym_integer] = ACTIONS(1857), + [sym_float] = ACTIONS(1859), + [anon_sym_await] = ACTIONS(1857), + [anon_sym_api] = ACTIONS(1857), + [sym_true] = ACTIONS(1857), + [sym_false] = ACTIONS(1857), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1857), + [anon_sym_include] = ACTIONS(1857), + [anon_sym_DEF] = ACTIONS(1857), + [anon_sym_cdef] = ACTIONS(1857), + [anon_sym_cpdef] = ACTIONS(1857), + [anon_sym_int] = ACTIONS(1857), + [anon_sym_double] = ACTIONS(1857), + [anon_sym_complex] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_signed] = ACTIONS(1857), + [anon_sym_unsigned] = ACTIONS(1857), + [anon_sym_char] = ACTIONS(1857), + [anon_sym_short] = ACTIONS(1857), + [anon_sym_long] = ACTIONS(1857), + [anon_sym_const] = ACTIONS(1857), + [anon_sym_volatile] = ACTIONS(1857), + [anon_sym_ctypedef] = ACTIONS(1857), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1857), + [anon_sym_enum] = ACTIONS(1857), + [anon_sym_cppclass] = ACTIONS(1857), + [anon_sym_fused] = ACTIONS(1857), + [anon_sym_public] = ACTIONS(1857), + [anon_sym_packed] = ACTIONS(1857), + [anon_sym_inline] = ACTIONS(1857), + [anon_sym_readonly] = ACTIONS(1857), + [anon_sym_sizeof] = ACTIONS(1857), + [sym__dedent] = ACTIONS(1859), + [sym_string_start] = ACTIONS(1859), }, [591] = { - [sym_identifier] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_cimport] = ACTIONS(1887), - [anon_sym_from] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_print] = ACTIONS(1887), - [anon_sym_assert] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_del] = ACTIONS(1887), - [anon_sym_raise] = ACTIONS(1887), - [anon_sym_pass] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1887), - [anon_sym_global] = ACTIONS(1887), - [anon_sym_nonlocal] = ACTIONS(1887), - [anon_sym_exec] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_AT] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_not] = ACTIONS(1887), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_lambda] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), - [anon_sym_None] = ACTIONS(1887), - [sym_integer] = ACTIONS(1887), - [sym_float] = ACTIONS(1889), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_api] = ACTIONS(1887), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1887), - [anon_sym_include] = ACTIONS(1887), - [anon_sym_DEF] = ACTIONS(1887), - [anon_sym_cdef] = ACTIONS(1887), - [anon_sym_cpdef] = ACTIONS(1887), - [anon_sym_int] = ACTIONS(1887), - [anon_sym_double] = ACTIONS(1887), - [anon_sym_complex] = ACTIONS(1887), - [anon_sym_new] = ACTIONS(1887), - [anon_sym_signed] = ACTIONS(1887), - [anon_sym_unsigned] = ACTIONS(1887), - [anon_sym_char] = ACTIONS(1887), - [anon_sym_short] = ACTIONS(1887), - [anon_sym_long] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_volatile] = ACTIONS(1887), - [anon_sym_ctypedef] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_union] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [anon_sym_cppclass] = ACTIONS(1887), - [anon_sym_fused] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_packed] = ACTIONS(1887), - [anon_sym_inline] = ACTIONS(1887), - [anon_sym_readonly] = ACTIONS(1887), - [anon_sym_sizeof] = ACTIONS(1887), - [sym__dedent] = ACTIONS(1889), - [sym_string_start] = ACTIONS(1889), + [sym_identifier] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_import] = ACTIONS(1861), + [anon_sym_cimport] = ACTIONS(1861), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_print] = ACTIONS(1861), + [anon_sym_assert] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_del] = ACTIONS(1861), + [anon_sym_raise] = ACTIONS(1861), + [anon_sym_pass] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_async] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1861), + [anon_sym_with] = ACTIONS(1861), + [anon_sym_def] = ACTIONS(1861), + [anon_sym_global] = ACTIONS(1861), + [anon_sym_nonlocal] = ACTIONS(1861), + [anon_sym_exec] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_class] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_not] = ACTIONS(1861), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_lambda] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1861), + [sym_integer] = ACTIONS(1861), + [sym_float] = ACTIONS(1863), + [anon_sym_await] = ACTIONS(1861), + [anon_sym_api] = ACTIONS(1861), + [sym_true] = ACTIONS(1861), + [sym_false] = ACTIONS(1861), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1861), + [anon_sym_include] = ACTIONS(1861), + [anon_sym_DEF] = ACTIONS(1861), + [anon_sym_cdef] = ACTIONS(1861), + [anon_sym_cpdef] = ACTIONS(1861), + [anon_sym_int] = ACTIONS(1861), + [anon_sym_double] = ACTIONS(1861), + [anon_sym_complex] = ACTIONS(1861), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_signed] = ACTIONS(1861), + [anon_sym_unsigned] = ACTIONS(1861), + [anon_sym_char] = ACTIONS(1861), + [anon_sym_short] = ACTIONS(1861), + [anon_sym_long] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_volatile] = ACTIONS(1861), + [anon_sym_ctypedef] = ACTIONS(1861), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_union] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [anon_sym_cppclass] = ACTIONS(1861), + [anon_sym_fused] = ACTIONS(1861), + [anon_sym_public] = ACTIONS(1861), + [anon_sym_packed] = ACTIONS(1861), + [anon_sym_inline] = ACTIONS(1861), + [anon_sym_readonly] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1861), + [sym__dedent] = ACTIONS(1863), + [sym_string_start] = ACTIONS(1863), }, [592] = { - [sym_identifier] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_import] = ACTIONS(1891), - [anon_sym_cimport] = ACTIONS(1891), - [anon_sym_from] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_print] = ACTIONS(1891), - [anon_sym_assert] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_del] = ACTIONS(1891), - [anon_sym_raise] = ACTIONS(1891), - [anon_sym_pass] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_async] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [anon_sym_with] = ACTIONS(1891), - [anon_sym_def] = ACTIONS(1891), - [anon_sym_global] = ACTIONS(1891), - [anon_sym_nonlocal] = ACTIONS(1891), - [anon_sym_exec] = ACTIONS(1891), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_class] = ACTIONS(1891), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_AT] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_not] = ACTIONS(1891), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_lambda] = ACTIONS(1891), - [anon_sym_yield] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), - [anon_sym_None] = ACTIONS(1891), - [sym_integer] = ACTIONS(1891), - [sym_float] = ACTIONS(1893), - [anon_sym_await] = ACTIONS(1891), - [anon_sym_api] = ACTIONS(1891), - [sym_true] = ACTIONS(1891), - [sym_false] = ACTIONS(1891), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1891), - [anon_sym_include] = ACTIONS(1891), - [anon_sym_DEF] = ACTIONS(1891), - [anon_sym_cdef] = ACTIONS(1891), - [anon_sym_cpdef] = ACTIONS(1891), - [anon_sym_int] = ACTIONS(1891), - [anon_sym_double] = ACTIONS(1891), - [anon_sym_complex] = ACTIONS(1891), - [anon_sym_new] = ACTIONS(1891), - [anon_sym_signed] = ACTIONS(1891), - [anon_sym_unsigned] = ACTIONS(1891), - [anon_sym_char] = ACTIONS(1891), - [anon_sym_short] = ACTIONS(1891), - [anon_sym_long] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [anon_sym_volatile] = ACTIONS(1891), - [anon_sym_ctypedef] = ACTIONS(1891), - [anon_sym_struct] = ACTIONS(1891), - [anon_sym_union] = ACTIONS(1891), - [anon_sym_enum] = ACTIONS(1891), - [anon_sym_cppclass] = ACTIONS(1891), - [anon_sym_fused] = ACTIONS(1891), - [anon_sym_public] = ACTIONS(1891), - [anon_sym_packed] = ACTIONS(1891), - [anon_sym_inline] = ACTIONS(1891), - [anon_sym_readonly] = ACTIONS(1891), - [anon_sym_sizeof] = ACTIONS(1891), - [sym__dedent] = ACTIONS(1893), - [sym_string_start] = ACTIONS(1893), + [sym_identifier] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(1865), + [anon_sym_cimport] = ACTIONS(1865), + [anon_sym_from] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_print] = ACTIONS(1865), + [anon_sym_assert] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_del] = ACTIONS(1865), + [anon_sym_raise] = ACTIONS(1865), + [anon_sym_pass] = ACTIONS(1865), + [anon_sym_break] = ACTIONS(1865), + [anon_sym_continue] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_async] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_while] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1865), + [anon_sym_with] = ACTIONS(1865), + [anon_sym_def] = ACTIONS(1865), + [anon_sym_global] = ACTIONS(1865), + [anon_sym_nonlocal] = ACTIONS(1865), + [anon_sym_exec] = ACTIONS(1865), + [anon_sym_type] = ACTIONS(1865), + [anon_sym_class] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_AT] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_lambda] = ACTIONS(1865), + [anon_sym_yield] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1867), + [anon_sym_None] = ACTIONS(1865), + [sym_integer] = ACTIONS(1865), + [sym_float] = ACTIONS(1867), + [anon_sym_await] = ACTIONS(1865), + [anon_sym_api] = ACTIONS(1865), + [sym_true] = ACTIONS(1865), + [sym_false] = ACTIONS(1865), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1865), + [anon_sym_include] = ACTIONS(1865), + [anon_sym_DEF] = ACTIONS(1865), + [anon_sym_cdef] = ACTIONS(1865), + [anon_sym_cpdef] = ACTIONS(1865), + [anon_sym_int] = ACTIONS(1865), + [anon_sym_double] = ACTIONS(1865), + [anon_sym_complex] = ACTIONS(1865), + [anon_sym_new] = ACTIONS(1865), + [anon_sym_signed] = ACTIONS(1865), + [anon_sym_unsigned] = ACTIONS(1865), + [anon_sym_char] = ACTIONS(1865), + [anon_sym_short] = ACTIONS(1865), + [anon_sym_long] = ACTIONS(1865), + [anon_sym_const] = ACTIONS(1865), + [anon_sym_volatile] = ACTIONS(1865), + [anon_sym_ctypedef] = ACTIONS(1865), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1865), + [anon_sym_enum] = ACTIONS(1865), + [anon_sym_cppclass] = ACTIONS(1865), + [anon_sym_fused] = ACTIONS(1865), + [anon_sym_public] = ACTIONS(1865), + [anon_sym_packed] = ACTIONS(1865), + [anon_sym_inline] = ACTIONS(1865), + [anon_sym_readonly] = ACTIONS(1865), + [anon_sym_sizeof] = ACTIONS(1865), + [sym__dedent] = ACTIONS(1867), + [sym_string_start] = ACTIONS(1867), }, [593] = { - [sym_identifier] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_import] = ACTIONS(1895), - [anon_sym_cimport] = ACTIONS(1895), - [anon_sym_from] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_print] = ACTIONS(1895), - [anon_sym_assert] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_del] = ACTIONS(1895), - [anon_sym_raise] = ACTIONS(1895), - [anon_sym_pass] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_async] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_with] = ACTIONS(1895), - [anon_sym_def] = ACTIONS(1895), - [anon_sym_global] = ACTIONS(1895), - [anon_sym_nonlocal] = ACTIONS(1895), - [anon_sym_exec] = ACTIONS(1895), - [anon_sym_type] = ACTIONS(1895), - [anon_sym_class] = ACTIONS(1895), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_AT] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_not] = ACTIONS(1895), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1897), - [anon_sym_lambda] = ACTIONS(1895), - [anon_sym_yield] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), - [anon_sym_None] = ACTIONS(1895), - [sym_integer] = ACTIONS(1895), - [sym_float] = ACTIONS(1897), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_api] = ACTIONS(1895), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1895), - [anon_sym_include] = ACTIONS(1895), - [anon_sym_DEF] = ACTIONS(1895), - [anon_sym_cdef] = ACTIONS(1895), - [anon_sym_cpdef] = ACTIONS(1895), - [anon_sym_int] = ACTIONS(1895), - [anon_sym_double] = ACTIONS(1895), - [anon_sym_complex] = ACTIONS(1895), - [anon_sym_new] = ACTIONS(1895), - [anon_sym_signed] = ACTIONS(1895), - [anon_sym_unsigned] = ACTIONS(1895), - [anon_sym_char] = ACTIONS(1895), - [anon_sym_short] = ACTIONS(1895), - [anon_sym_long] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_volatile] = ACTIONS(1895), - [anon_sym_ctypedef] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_union] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_cppclass] = ACTIONS(1895), - [anon_sym_fused] = ACTIONS(1895), - [anon_sym_public] = ACTIONS(1895), - [anon_sym_packed] = ACTIONS(1895), - [anon_sym_inline] = ACTIONS(1895), - [anon_sym_readonly] = ACTIONS(1895), - [anon_sym_sizeof] = ACTIONS(1895), - [sym__dedent] = ACTIONS(1897), - [sym_string_start] = ACTIONS(1897), + [sym_identifier] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1871), + [anon_sym_import] = ACTIONS(1869), + [anon_sym_cimport] = ACTIONS(1869), + [anon_sym_from] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_print] = ACTIONS(1869), + [anon_sym_assert] = ACTIONS(1869), + [anon_sym_return] = ACTIONS(1869), + [anon_sym_del] = ACTIONS(1869), + [anon_sym_raise] = ACTIONS(1869), + [anon_sym_pass] = ACTIONS(1869), + [anon_sym_break] = ACTIONS(1869), + [anon_sym_continue] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_match] = ACTIONS(1869), + [anon_sym_async] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1869), + [anon_sym_while] = ACTIONS(1869), + [anon_sym_try] = ACTIONS(1869), + [anon_sym_with] = ACTIONS(1869), + [anon_sym_def] = ACTIONS(1869), + [anon_sym_global] = ACTIONS(1869), + [anon_sym_nonlocal] = ACTIONS(1869), + [anon_sym_exec] = ACTIONS(1869), + [anon_sym_type] = ACTIONS(1869), + [anon_sym_class] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1869), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_lambda] = ACTIONS(1869), + [anon_sym_yield] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [anon_sym_None] = ACTIONS(1869), + [sym_integer] = ACTIONS(1869), + [sym_float] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_api] = ACTIONS(1869), + [sym_true] = ACTIONS(1869), + [sym_false] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1869), + [anon_sym_include] = ACTIONS(1869), + [anon_sym_DEF] = ACTIONS(1869), + [anon_sym_cdef] = ACTIONS(1869), + [anon_sym_cpdef] = ACTIONS(1869), + [anon_sym_int] = ACTIONS(1869), + [anon_sym_double] = ACTIONS(1869), + [anon_sym_complex] = ACTIONS(1869), + [anon_sym_new] = ACTIONS(1869), + [anon_sym_signed] = ACTIONS(1869), + [anon_sym_unsigned] = ACTIONS(1869), + [anon_sym_char] = ACTIONS(1869), + [anon_sym_short] = ACTIONS(1869), + [anon_sym_long] = ACTIONS(1869), + [anon_sym_const] = ACTIONS(1869), + [anon_sym_volatile] = ACTIONS(1869), + [anon_sym_ctypedef] = ACTIONS(1869), + [anon_sym_struct] = ACTIONS(1869), + [anon_sym_union] = ACTIONS(1869), + [anon_sym_enum] = ACTIONS(1869), + [anon_sym_cppclass] = ACTIONS(1869), + [anon_sym_fused] = ACTIONS(1869), + [anon_sym_public] = ACTIONS(1869), + [anon_sym_packed] = ACTIONS(1869), + [anon_sym_inline] = ACTIONS(1869), + [anon_sym_readonly] = ACTIONS(1869), + [anon_sym_sizeof] = ACTIONS(1869), + [sym__dedent] = ACTIONS(1871), + [sym_string_start] = ACTIONS(1871), }, [594] = { - [sym_identifier] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_import] = ACTIONS(1899), - [anon_sym_cimport] = ACTIONS(1899), - [anon_sym_from] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_print] = ACTIONS(1899), - [anon_sym_assert] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_del] = ACTIONS(1899), - [anon_sym_raise] = ACTIONS(1899), - [anon_sym_pass] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_with] = ACTIONS(1899), - [anon_sym_def] = ACTIONS(1899), - [anon_sym_global] = ACTIONS(1899), - [anon_sym_nonlocal] = ACTIONS(1899), - [anon_sym_exec] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_AT] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_PLUS] = ACTIONS(1901), - [anon_sym_not] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1901), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_lambda] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1901), - [anon_sym_None] = ACTIONS(1899), - [sym_integer] = ACTIONS(1899), - [sym_float] = ACTIONS(1901), - [anon_sym_await] = ACTIONS(1899), - [anon_sym_api] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1899), - [anon_sym_include] = ACTIONS(1899), - [anon_sym_DEF] = ACTIONS(1899), - [anon_sym_cdef] = ACTIONS(1899), - [anon_sym_cpdef] = ACTIONS(1899), - [anon_sym_int] = ACTIONS(1899), - [anon_sym_double] = ACTIONS(1899), - [anon_sym_complex] = ACTIONS(1899), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_signed] = ACTIONS(1899), - [anon_sym_unsigned] = ACTIONS(1899), - [anon_sym_char] = ACTIONS(1899), - [anon_sym_short] = ACTIONS(1899), - [anon_sym_long] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_volatile] = ACTIONS(1899), - [anon_sym_ctypedef] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_cppclass] = ACTIONS(1899), - [anon_sym_fused] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1899), - [anon_sym_packed] = ACTIONS(1899), - [anon_sym_inline] = ACTIONS(1899), - [anon_sym_readonly] = ACTIONS(1899), - [anon_sym_sizeof] = ACTIONS(1899), - [sym__dedent] = ACTIONS(1901), - [sym_string_start] = ACTIONS(1901), + [sym_identifier] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1875), + [anon_sym_import] = ACTIONS(1873), + [anon_sym_cimport] = ACTIONS(1873), + [anon_sym_from] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_print] = ACTIONS(1873), + [anon_sym_assert] = ACTIONS(1873), + [anon_sym_return] = ACTIONS(1873), + [anon_sym_del] = ACTIONS(1873), + [anon_sym_raise] = ACTIONS(1873), + [anon_sym_pass] = ACTIONS(1873), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1873), + [anon_sym_match] = ACTIONS(1873), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1873), + [anon_sym_with] = ACTIONS(1873), + [anon_sym_def] = ACTIONS(1873), + [anon_sym_global] = ACTIONS(1873), + [anon_sym_nonlocal] = ACTIONS(1873), + [anon_sym_exec] = ACTIONS(1873), + [anon_sym_type] = ACTIONS(1873), + [anon_sym_class] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_AT] = ACTIONS(1875), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_lambda] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1875), + [anon_sym_None] = ACTIONS(1873), + [sym_integer] = ACTIONS(1873), + [sym_float] = ACTIONS(1875), + [anon_sym_await] = ACTIONS(1873), + [anon_sym_api] = ACTIONS(1873), + [sym_true] = ACTIONS(1873), + [sym_false] = ACTIONS(1873), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1873), + [anon_sym_include] = ACTIONS(1873), + [anon_sym_DEF] = ACTIONS(1873), + [anon_sym_cdef] = ACTIONS(1873), + [anon_sym_cpdef] = ACTIONS(1873), + [anon_sym_int] = ACTIONS(1873), + [anon_sym_double] = ACTIONS(1873), + [anon_sym_complex] = ACTIONS(1873), + [anon_sym_new] = ACTIONS(1873), + [anon_sym_signed] = ACTIONS(1873), + [anon_sym_unsigned] = ACTIONS(1873), + [anon_sym_char] = ACTIONS(1873), + [anon_sym_short] = ACTIONS(1873), + [anon_sym_long] = ACTIONS(1873), + [anon_sym_const] = ACTIONS(1873), + [anon_sym_volatile] = ACTIONS(1873), + [anon_sym_ctypedef] = ACTIONS(1873), + [anon_sym_struct] = ACTIONS(1873), + [anon_sym_union] = ACTIONS(1873), + [anon_sym_enum] = ACTIONS(1873), + [anon_sym_cppclass] = ACTIONS(1873), + [anon_sym_fused] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1873), + [anon_sym_packed] = ACTIONS(1873), + [anon_sym_inline] = ACTIONS(1873), + [anon_sym_readonly] = ACTIONS(1873), + [anon_sym_sizeof] = ACTIONS(1873), + [sym__dedent] = ACTIONS(1875), + [sym_string_start] = ACTIONS(1875), }, [595] = { - [sym_identifier] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_import] = ACTIONS(1903), - [anon_sym_cimport] = ACTIONS(1903), - [anon_sym_from] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_print] = ACTIONS(1903), - [anon_sym_assert] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_del] = ACTIONS(1903), - [anon_sym_raise] = ACTIONS(1903), - [anon_sym_pass] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_match] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_with] = ACTIONS(1903), - [anon_sym_def] = ACTIONS(1903), - [anon_sym_global] = ACTIONS(1903), - [anon_sym_nonlocal] = ACTIONS(1903), - [anon_sym_exec] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_class] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_AT] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_not] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_lambda] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_None] = ACTIONS(1903), - [sym_integer] = ACTIONS(1903), - [sym_float] = ACTIONS(1905), - [anon_sym_await] = ACTIONS(1903), - [anon_sym_api] = ACTIONS(1903), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1903), - [anon_sym_include] = ACTIONS(1903), - [anon_sym_DEF] = ACTIONS(1903), - [anon_sym_cdef] = ACTIONS(1903), - [anon_sym_cpdef] = ACTIONS(1903), - [anon_sym_int] = ACTIONS(1903), - [anon_sym_double] = ACTIONS(1903), - [anon_sym_complex] = ACTIONS(1903), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_char] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_volatile] = ACTIONS(1903), - [anon_sym_ctypedef] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1903), - [anon_sym_union] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), - [anon_sym_cppclass] = ACTIONS(1903), - [anon_sym_fused] = ACTIONS(1903), - [anon_sym_public] = ACTIONS(1903), - [anon_sym_packed] = ACTIONS(1903), - [anon_sym_inline] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(1903), - [anon_sym_sizeof] = ACTIONS(1903), - [sym__dedent] = ACTIONS(1905), - [sym_string_start] = ACTIONS(1905), + [sym_identifier] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_import] = ACTIONS(1845), + [anon_sym_cimport] = ACTIONS(1845), + [anon_sym_from] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_print] = ACTIONS(1845), + [anon_sym_assert] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_del] = ACTIONS(1845), + [anon_sym_raise] = ACTIONS(1845), + [anon_sym_pass] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_async] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1845), + [anon_sym_with] = ACTIONS(1845), + [anon_sym_def] = ACTIONS(1845), + [anon_sym_global] = ACTIONS(1845), + [anon_sym_nonlocal] = ACTIONS(1845), + [anon_sym_exec] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_class] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_AT] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1847), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_lambda] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1847), + [anon_sym_None] = ACTIONS(1845), + [sym_integer] = ACTIONS(1845), + [sym_float] = ACTIONS(1847), + [anon_sym_await] = ACTIONS(1845), + [anon_sym_api] = ACTIONS(1845), + [sym_true] = ACTIONS(1845), + [sym_false] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1845), + [anon_sym_include] = ACTIONS(1845), + [anon_sym_DEF] = ACTIONS(1845), + [anon_sym_cdef] = ACTIONS(1845), + [anon_sym_cpdef] = ACTIONS(1845), + [anon_sym_int] = ACTIONS(1845), + [anon_sym_double] = ACTIONS(1845), + [anon_sym_complex] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1845), + [anon_sym_signed] = ACTIONS(1845), + [anon_sym_unsigned] = ACTIONS(1845), + [anon_sym_char] = ACTIONS(1845), + [anon_sym_short] = ACTIONS(1845), + [anon_sym_long] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [anon_sym_volatile] = ACTIONS(1845), + [anon_sym_ctypedef] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(1845), + [anon_sym_union] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), + [anon_sym_cppclass] = ACTIONS(1845), + [anon_sym_fused] = ACTIONS(1845), + [anon_sym_public] = ACTIONS(1845), + [anon_sym_packed] = ACTIONS(1845), + [anon_sym_inline] = ACTIONS(1845), + [anon_sym_readonly] = ACTIONS(1845), + [anon_sym_sizeof] = ACTIONS(1845), + [sym__dedent] = ACTIONS(1847), + [sym_string_start] = ACTIONS(1847), }, [596] = { - [sym_identifier] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_import] = ACTIONS(1907), - [anon_sym_cimport] = ACTIONS(1907), - [anon_sym_from] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_print] = ACTIONS(1907), - [anon_sym_assert] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_del] = ACTIONS(1907), - [anon_sym_raise] = ACTIONS(1907), - [anon_sym_pass] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_async] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_try] = ACTIONS(1907), - [anon_sym_with] = ACTIONS(1907), - [anon_sym_def] = ACTIONS(1907), - [anon_sym_global] = ACTIONS(1907), - [anon_sym_nonlocal] = ACTIONS(1907), - [anon_sym_exec] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_class] = ACTIONS(1907), - [anon_sym_LBRACK] = ACTIONS(1909), - [anon_sym_AT] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_PLUS] = ACTIONS(1909), - [anon_sym_not] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_TILDE] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1909), - [anon_sym_lambda] = ACTIONS(1907), - [anon_sym_yield] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1909), - [anon_sym_None] = ACTIONS(1907), - [sym_integer] = ACTIONS(1907), - [sym_float] = ACTIONS(1909), - [anon_sym_await] = ACTIONS(1907), - [anon_sym_api] = ACTIONS(1907), - [sym_true] = ACTIONS(1907), - [sym_false] = ACTIONS(1907), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1907), - [anon_sym_include] = ACTIONS(1907), - [anon_sym_DEF] = ACTIONS(1907), - [anon_sym_cdef] = ACTIONS(1907), - [anon_sym_cpdef] = ACTIONS(1907), - [anon_sym_int] = ACTIONS(1907), - [anon_sym_double] = ACTIONS(1907), - [anon_sym_complex] = ACTIONS(1907), - [anon_sym_new] = ACTIONS(1907), - [anon_sym_signed] = ACTIONS(1907), - [anon_sym_unsigned] = ACTIONS(1907), - [anon_sym_char] = ACTIONS(1907), - [anon_sym_short] = ACTIONS(1907), - [anon_sym_long] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [anon_sym_volatile] = ACTIONS(1907), - [anon_sym_ctypedef] = ACTIONS(1907), - [anon_sym_struct] = ACTIONS(1907), - [anon_sym_union] = ACTIONS(1907), - [anon_sym_enum] = ACTIONS(1907), - [anon_sym_cppclass] = ACTIONS(1907), - [anon_sym_fused] = ACTIONS(1907), - [anon_sym_public] = ACTIONS(1907), - [anon_sym_packed] = ACTIONS(1907), - [anon_sym_inline] = ACTIONS(1907), - [anon_sym_readonly] = ACTIONS(1907), - [anon_sym_sizeof] = ACTIONS(1907), - [sym__dedent] = ACTIONS(1909), - [sym_string_start] = ACTIONS(1909), + [sym_identifier] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_import] = ACTIONS(1877), + [anon_sym_cimport] = ACTIONS(1877), + [anon_sym_from] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_print] = ACTIONS(1877), + [anon_sym_assert] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_del] = ACTIONS(1877), + [anon_sym_raise] = ACTIONS(1877), + [anon_sym_pass] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_async] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_while] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1877), + [anon_sym_with] = ACTIONS(1877), + [anon_sym_def] = ACTIONS(1877), + [anon_sym_global] = ACTIONS(1877), + [anon_sym_nonlocal] = ACTIONS(1877), + [anon_sym_exec] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_class] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_AT] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_not] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_lambda] = ACTIONS(1877), + [anon_sym_yield] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1879), + [anon_sym_None] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1877), + [anon_sym_api] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1877), + [anon_sym_include] = ACTIONS(1877), + [anon_sym_DEF] = ACTIONS(1877), + [anon_sym_cdef] = ACTIONS(1877), + [anon_sym_cpdef] = ACTIONS(1877), + [anon_sym_int] = ACTIONS(1877), + [anon_sym_double] = ACTIONS(1877), + [anon_sym_complex] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1877), + [anon_sym_signed] = ACTIONS(1877), + [anon_sym_unsigned] = ACTIONS(1877), + [anon_sym_char] = ACTIONS(1877), + [anon_sym_short] = ACTIONS(1877), + [anon_sym_long] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_volatile] = ACTIONS(1877), + [anon_sym_ctypedef] = ACTIONS(1877), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_cppclass] = ACTIONS(1877), + [anon_sym_fused] = ACTIONS(1877), + [anon_sym_public] = ACTIONS(1877), + [anon_sym_packed] = ACTIONS(1877), + [anon_sym_inline] = ACTIONS(1877), + [anon_sym_readonly] = ACTIONS(1877), + [anon_sym_sizeof] = ACTIONS(1877), + [sym__dedent] = ACTIONS(1879), + [sym_string_start] = ACTIONS(1879), }, [597] = { - [sym_identifier] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_import] = ACTIONS(1911), - [anon_sym_cimport] = ACTIONS(1911), - [anon_sym_from] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_print] = ACTIONS(1911), - [anon_sym_assert] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_del] = ACTIONS(1911), - [anon_sym_raise] = ACTIONS(1911), - [anon_sym_pass] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1911), - [anon_sym_with] = ACTIONS(1911), - [anon_sym_def] = ACTIONS(1911), - [anon_sym_global] = ACTIONS(1911), - [anon_sym_nonlocal] = ACTIONS(1911), - [anon_sym_exec] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_class] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_AT] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_not] = ACTIONS(1911), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_TILDE] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1913), - [anon_sym_lambda] = ACTIONS(1911), - [anon_sym_yield] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1913), - [anon_sym_None] = ACTIONS(1911), - [sym_integer] = ACTIONS(1911), - [sym_float] = ACTIONS(1913), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_api] = ACTIONS(1911), - [sym_true] = ACTIONS(1911), - [sym_false] = ACTIONS(1911), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1911), - [anon_sym_include] = ACTIONS(1911), - [anon_sym_DEF] = ACTIONS(1911), - [anon_sym_cdef] = ACTIONS(1911), - [anon_sym_cpdef] = ACTIONS(1911), - [anon_sym_int] = ACTIONS(1911), - [anon_sym_double] = ACTIONS(1911), - [anon_sym_complex] = ACTIONS(1911), - [anon_sym_new] = ACTIONS(1911), - [anon_sym_signed] = ACTIONS(1911), - [anon_sym_unsigned] = ACTIONS(1911), - [anon_sym_char] = ACTIONS(1911), - [anon_sym_short] = ACTIONS(1911), - [anon_sym_long] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [anon_sym_volatile] = ACTIONS(1911), - [anon_sym_ctypedef] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1911), - [anon_sym_union] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), - [anon_sym_cppclass] = ACTIONS(1911), - [anon_sym_fused] = ACTIONS(1911), - [anon_sym_public] = ACTIONS(1911), - [anon_sym_packed] = ACTIONS(1911), - [anon_sym_inline] = ACTIONS(1911), - [anon_sym_readonly] = ACTIONS(1911), - [anon_sym_sizeof] = ACTIONS(1911), - [sym__dedent] = ACTIONS(1913), - [sym_string_start] = ACTIONS(1913), + [sym_identifier] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1883), + [anon_sym_import] = ACTIONS(1881), + [anon_sym_cimport] = ACTIONS(1881), + [anon_sym_from] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(1883), + [anon_sym_print] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_del] = ACTIONS(1881), + [anon_sym_raise] = ACTIONS(1881), + [anon_sym_pass] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_async] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1881), + [anon_sym_with] = ACTIONS(1881), + [anon_sym_def] = ACTIONS(1881), + [anon_sym_global] = ACTIONS(1881), + [anon_sym_nonlocal] = ACTIONS(1881), + [anon_sym_exec] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_class] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_AT] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_PLUS] = ACTIONS(1883), + [anon_sym_not] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_lambda] = ACTIONS(1881), + [anon_sym_yield] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1883), + [anon_sym_None] = ACTIONS(1881), + [sym_integer] = ACTIONS(1881), + [sym_float] = ACTIONS(1883), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_api] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1881), + [anon_sym_include] = ACTIONS(1881), + [anon_sym_DEF] = ACTIONS(1881), + [anon_sym_cdef] = ACTIONS(1881), + [anon_sym_cpdef] = ACTIONS(1881), + [anon_sym_int] = ACTIONS(1881), + [anon_sym_double] = ACTIONS(1881), + [anon_sym_complex] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1881), + [anon_sym_signed] = ACTIONS(1881), + [anon_sym_unsigned] = ACTIONS(1881), + [anon_sym_char] = ACTIONS(1881), + [anon_sym_short] = ACTIONS(1881), + [anon_sym_long] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_volatile] = ACTIONS(1881), + [anon_sym_ctypedef] = ACTIONS(1881), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_cppclass] = ACTIONS(1881), + [anon_sym_fused] = ACTIONS(1881), + [anon_sym_public] = ACTIONS(1881), + [anon_sym_packed] = ACTIONS(1881), + [anon_sym_inline] = ACTIONS(1881), + [anon_sym_readonly] = ACTIONS(1881), + [anon_sym_sizeof] = ACTIONS(1881), + [sym__dedent] = ACTIONS(1883), + [sym_string_start] = ACTIONS(1883), }, [598] = { - [sym_identifier] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_import] = ACTIONS(1915), - [anon_sym_cimport] = ACTIONS(1915), - [anon_sym_from] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_print] = ACTIONS(1915), - [anon_sym_assert] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_del] = ACTIONS(1915), - [anon_sym_raise] = ACTIONS(1915), - [anon_sym_pass] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1915), - [anon_sym_with] = ACTIONS(1915), - [anon_sym_def] = ACTIONS(1915), - [anon_sym_global] = ACTIONS(1915), - [anon_sym_nonlocal] = ACTIONS(1915), - [anon_sym_exec] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_class] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_AT] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_not] = ACTIONS(1915), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_lambda] = ACTIONS(1915), - [anon_sym_yield] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1917), - [anon_sym_None] = ACTIONS(1915), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1917), - [anon_sym_await] = ACTIONS(1915), - [anon_sym_api] = ACTIONS(1915), - [sym_true] = ACTIONS(1915), - [sym_false] = ACTIONS(1915), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1915), - [anon_sym_include] = ACTIONS(1915), - [anon_sym_DEF] = ACTIONS(1915), - [anon_sym_cdef] = ACTIONS(1915), - [anon_sym_cpdef] = ACTIONS(1915), - [anon_sym_int] = ACTIONS(1915), - [anon_sym_double] = ACTIONS(1915), - [anon_sym_complex] = ACTIONS(1915), - [anon_sym_new] = ACTIONS(1915), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_char] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1915), - [anon_sym_volatile] = ACTIONS(1915), - [anon_sym_ctypedef] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1915), - [anon_sym_union] = ACTIONS(1915), - [anon_sym_enum] = ACTIONS(1915), - [anon_sym_cppclass] = ACTIONS(1915), - [anon_sym_fused] = ACTIONS(1915), - [anon_sym_public] = ACTIONS(1915), - [anon_sym_packed] = ACTIONS(1915), - [anon_sym_inline] = ACTIONS(1915), - [anon_sym_readonly] = ACTIONS(1915), - [anon_sym_sizeof] = ACTIONS(1915), - [sym__dedent] = ACTIONS(1917), - [sym_string_start] = ACTIONS(1917), + [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), }, [599] = { - [sym_identifier] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_import] = ACTIONS(1919), - [anon_sym_cimport] = ACTIONS(1919), - [anon_sym_from] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_print] = ACTIONS(1919), - [anon_sym_assert] = ACTIONS(1919), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_del] = ACTIONS(1919), - [anon_sym_raise] = ACTIONS(1919), - [anon_sym_pass] = ACTIONS(1919), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_match] = ACTIONS(1919), - [anon_sym_async] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_try] = ACTIONS(1919), - [anon_sym_with] = ACTIONS(1919), - [anon_sym_def] = ACTIONS(1919), - [anon_sym_global] = ACTIONS(1919), - [anon_sym_nonlocal] = ACTIONS(1919), - [anon_sym_exec] = ACTIONS(1919), - [anon_sym_type] = ACTIONS(1919), - [anon_sym_class] = ACTIONS(1919), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_AT] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_not] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_lambda] = ACTIONS(1919), - [anon_sym_yield] = ACTIONS(1919), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), - [anon_sym_None] = ACTIONS(1919), - [sym_integer] = ACTIONS(1919), - [sym_float] = ACTIONS(1921), - [anon_sym_await] = ACTIONS(1919), - [anon_sym_api] = ACTIONS(1919), - [sym_true] = ACTIONS(1919), - [sym_false] = ACTIONS(1919), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1919), - [anon_sym_include] = ACTIONS(1919), - [anon_sym_DEF] = ACTIONS(1919), - [anon_sym_cdef] = ACTIONS(1919), - [anon_sym_cpdef] = ACTIONS(1919), - [anon_sym_int] = ACTIONS(1919), - [anon_sym_double] = ACTIONS(1919), - [anon_sym_complex] = ACTIONS(1919), - [anon_sym_new] = ACTIONS(1919), - [anon_sym_signed] = ACTIONS(1919), - [anon_sym_unsigned] = ACTIONS(1919), - [anon_sym_char] = ACTIONS(1919), - [anon_sym_short] = ACTIONS(1919), - [anon_sym_long] = ACTIONS(1919), - [anon_sym_const] = ACTIONS(1919), - [anon_sym_volatile] = ACTIONS(1919), - [anon_sym_ctypedef] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1919), - [anon_sym_union] = ACTIONS(1919), - [anon_sym_enum] = ACTIONS(1919), - [anon_sym_cppclass] = ACTIONS(1919), - [anon_sym_fused] = ACTIONS(1919), - [anon_sym_public] = ACTIONS(1919), - [anon_sym_packed] = ACTIONS(1919), - [anon_sym_inline] = ACTIONS(1919), - [anon_sym_readonly] = ACTIONS(1919), - [anon_sym_sizeof] = ACTIONS(1919), - [sym__dedent] = ACTIONS(1921), - [sym_string_start] = ACTIONS(1921), + [sym_identifier] = ACTIONS(1885), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_import] = ACTIONS(1885), + [anon_sym_cimport] = ACTIONS(1885), + [anon_sym_from] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_print] = ACTIONS(1885), + [anon_sym_assert] = ACTIONS(1885), + [anon_sym_return] = ACTIONS(1885), + [anon_sym_del] = ACTIONS(1885), + [anon_sym_raise] = ACTIONS(1885), + [anon_sym_pass] = ACTIONS(1885), + [anon_sym_break] = ACTIONS(1885), + [anon_sym_continue] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1885), + [anon_sym_async] = ACTIONS(1885), + [anon_sym_for] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1885), + [anon_sym_try] = ACTIONS(1885), + [anon_sym_with] = ACTIONS(1885), + [anon_sym_def] = ACTIONS(1885), + [anon_sym_global] = ACTIONS(1885), + [anon_sym_nonlocal] = ACTIONS(1885), + [anon_sym_exec] = ACTIONS(1885), + [anon_sym_type] = ACTIONS(1885), + [anon_sym_class] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_AT] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1887), + [anon_sym_not] = ACTIONS(1885), + [anon_sym_AMP] = ACTIONS(1887), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_lambda] = ACTIONS(1885), + [anon_sym_yield] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1887), + [anon_sym_None] = ACTIONS(1885), + [sym_integer] = ACTIONS(1885), + [sym_float] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(1885), + [anon_sym_api] = ACTIONS(1885), + [sym_true] = ACTIONS(1885), + [sym_false] = ACTIONS(1885), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1885), + [anon_sym_include] = ACTIONS(1885), + [anon_sym_DEF] = ACTIONS(1885), + [anon_sym_cdef] = ACTIONS(1885), + [anon_sym_cpdef] = ACTIONS(1885), + [anon_sym_int] = ACTIONS(1885), + [anon_sym_double] = ACTIONS(1885), + [anon_sym_complex] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1885), + [anon_sym_signed] = ACTIONS(1885), + [anon_sym_unsigned] = ACTIONS(1885), + [anon_sym_char] = ACTIONS(1885), + [anon_sym_short] = ACTIONS(1885), + [anon_sym_long] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1885), + [anon_sym_volatile] = ACTIONS(1885), + [anon_sym_ctypedef] = ACTIONS(1885), + [anon_sym_struct] = ACTIONS(1885), + [anon_sym_union] = ACTIONS(1885), + [anon_sym_enum] = ACTIONS(1885), + [anon_sym_cppclass] = ACTIONS(1885), + [anon_sym_fused] = ACTIONS(1885), + [anon_sym_public] = ACTIONS(1885), + [anon_sym_packed] = ACTIONS(1885), + [anon_sym_inline] = ACTIONS(1885), + [anon_sym_readonly] = ACTIONS(1885), + [anon_sym_sizeof] = ACTIONS(1885), + [sym__dedent] = ACTIONS(1887), + [sym_string_start] = ACTIONS(1887), }, [600] = { - [sym_identifier] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_import] = ACTIONS(1923), - [anon_sym_cimport] = ACTIONS(1923), - [anon_sym_from] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_print] = ACTIONS(1923), - [anon_sym_assert] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_del] = ACTIONS(1923), - [anon_sym_raise] = ACTIONS(1923), - [anon_sym_pass] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_match] = ACTIONS(1923), - [anon_sym_async] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_with] = ACTIONS(1923), - [anon_sym_def] = ACTIONS(1923), - [anon_sym_global] = ACTIONS(1923), - [anon_sym_nonlocal] = ACTIONS(1923), - [anon_sym_exec] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_class] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_AT] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1925), - [anon_sym_not] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_lambda] = ACTIONS(1923), - [anon_sym_yield] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1925), - [anon_sym_None] = ACTIONS(1923), - [sym_integer] = ACTIONS(1923), - [sym_float] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(1923), - [anon_sym_api] = ACTIONS(1923), - [sym_true] = ACTIONS(1923), - [sym_false] = ACTIONS(1923), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1923), - [anon_sym_include] = ACTIONS(1923), - [anon_sym_DEF] = ACTIONS(1923), - [anon_sym_cdef] = ACTIONS(1923), - [anon_sym_cpdef] = ACTIONS(1923), - [anon_sym_int] = ACTIONS(1923), - [anon_sym_double] = ACTIONS(1923), - [anon_sym_complex] = ACTIONS(1923), - [anon_sym_new] = ACTIONS(1923), - [anon_sym_signed] = ACTIONS(1923), - [anon_sym_unsigned] = ACTIONS(1923), - [anon_sym_char] = ACTIONS(1923), - [anon_sym_short] = ACTIONS(1923), - [anon_sym_long] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [anon_sym_volatile] = ACTIONS(1923), - [anon_sym_ctypedef] = ACTIONS(1923), - [anon_sym_struct] = ACTIONS(1923), - [anon_sym_union] = ACTIONS(1923), - [anon_sym_enum] = ACTIONS(1923), - [anon_sym_cppclass] = ACTIONS(1923), - [anon_sym_fused] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_packed] = ACTIONS(1923), - [anon_sym_inline] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_sizeof] = ACTIONS(1923), - [sym__dedent] = ACTIONS(1925), - [sym_string_start] = ACTIONS(1925), + [sym_identifier] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1863), + [anon_sym_import] = ACTIONS(1861), + [anon_sym_cimport] = ACTIONS(1861), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_print] = ACTIONS(1861), + [anon_sym_assert] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_del] = ACTIONS(1861), + [anon_sym_raise] = ACTIONS(1861), + [anon_sym_pass] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_async] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1861), + [anon_sym_with] = ACTIONS(1861), + [anon_sym_def] = ACTIONS(1861), + [anon_sym_global] = ACTIONS(1861), + [anon_sym_nonlocal] = ACTIONS(1861), + [anon_sym_exec] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_class] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_not] = ACTIONS(1861), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_lambda] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), + [anon_sym_None] = ACTIONS(1861), + [sym_integer] = ACTIONS(1861), + [sym_float] = ACTIONS(1863), + [anon_sym_await] = ACTIONS(1861), + [anon_sym_api] = ACTIONS(1861), + [sym_true] = ACTIONS(1861), + [sym_false] = ACTIONS(1861), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1861), + [anon_sym_include] = ACTIONS(1861), + [anon_sym_DEF] = ACTIONS(1861), + [anon_sym_cdef] = ACTIONS(1861), + [anon_sym_cpdef] = ACTIONS(1861), + [anon_sym_int] = ACTIONS(1861), + [anon_sym_double] = ACTIONS(1861), + [anon_sym_complex] = ACTIONS(1861), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_signed] = ACTIONS(1861), + [anon_sym_unsigned] = ACTIONS(1861), + [anon_sym_char] = ACTIONS(1861), + [anon_sym_short] = ACTIONS(1861), + [anon_sym_long] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_volatile] = ACTIONS(1861), + [anon_sym_ctypedef] = ACTIONS(1861), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_union] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [anon_sym_cppclass] = ACTIONS(1861), + [anon_sym_fused] = ACTIONS(1861), + [anon_sym_public] = ACTIONS(1861), + [anon_sym_packed] = ACTIONS(1861), + [anon_sym_inline] = ACTIONS(1861), + [anon_sym_readonly] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1861), + [sym__dedent] = ACTIONS(1863), + [sym_string_start] = ACTIONS(1863), }, [601] = { - [sym_identifier] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_import] = ACTIONS(1927), - [anon_sym_cimport] = ACTIONS(1927), - [anon_sym_from] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_STAR] = ACTIONS(1929), - [anon_sym_print] = ACTIONS(1927), - [anon_sym_assert] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_del] = ACTIONS(1927), - [anon_sym_raise] = ACTIONS(1927), - [anon_sym_pass] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_async] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_with] = ACTIONS(1927), - [anon_sym_def] = ACTIONS(1927), - [anon_sym_global] = ACTIONS(1927), - [anon_sym_nonlocal] = ACTIONS(1927), - [anon_sym_exec] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_class] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1929), - [anon_sym_AT] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_PLUS] = ACTIONS(1929), - [anon_sym_not] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_TILDE] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_lambda] = ACTIONS(1927), - [anon_sym_yield] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1929), - [anon_sym_None] = ACTIONS(1927), - [sym_integer] = ACTIONS(1927), - [sym_float] = ACTIONS(1929), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_api] = ACTIONS(1927), - [sym_true] = ACTIONS(1927), - [sym_false] = ACTIONS(1927), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1927), - [anon_sym_include] = ACTIONS(1927), - [anon_sym_DEF] = ACTIONS(1927), - [anon_sym_cdef] = ACTIONS(1927), - [anon_sym_cpdef] = ACTIONS(1927), - [anon_sym_int] = ACTIONS(1927), - [anon_sym_double] = ACTIONS(1927), - [anon_sym_complex] = ACTIONS(1927), - [anon_sym_new] = ACTIONS(1927), - [anon_sym_signed] = ACTIONS(1927), - [anon_sym_unsigned] = ACTIONS(1927), - [anon_sym_char] = ACTIONS(1927), - [anon_sym_short] = ACTIONS(1927), - [anon_sym_long] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_volatile] = ACTIONS(1927), - [anon_sym_ctypedef] = ACTIONS(1927), - [anon_sym_struct] = ACTIONS(1927), - [anon_sym_union] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1927), - [anon_sym_cppclass] = ACTIONS(1927), - [anon_sym_fused] = ACTIONS(1927), - [anon_sym_public] = ACTIONS(1927), - [anon_sym_packed] = ACTIONS(1927), - [anon_sym_inline] = ACTIONS(1927), - [anon_sym_readonly] = ACTIONS(1927), - [anon_sym_sizeof] = ACTIONS(1927), - [sym__dedent] = ACTIONS(1929), - [sym_string_start] = ACTIONS(1929), + [sym_identifier] = ACTIONS(1889), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_import] = ACTIONS(1889), + [anon_sym_cimport] = ACTIONS(1889), + [anon_sym_from] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_print] = ACTIONS(1889), + [anon_sym_assert] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_del] = ACTIONS(1889), + [anon_sym_raise] = ACTIONS(1889), + [anon_sym_pass] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1889), + [anon_sym_async] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_try] = ACTIONS(1889), + [anon_sym_with] = ACTIONS(1889), + [anon_sym_def] = ACTIONS(1889), + [anon_sym_global] = ACTIONS(1889), + [anon_sym_nonlocal] = ACTIONS(1889), + [anon_sym_exec] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_class] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_AT] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1891), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_LT] = ACTIONS(1891), + [anon_sym_lambda] = ACTIONS(1889), + [anon_sym_yield] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), + [anon_sym_None] = ACTIONS(1889), + [sym_integer] = ACTIONS(1889), + [sym_float] = ACTIONS(1891), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_api] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1889), + [anon_sym_include] = ACTIONS(1889), + [anon_sym_DEF] = ACTIONS(1889), + [anon_sym_cdef] = ACTIONS(1889), + [anon_sym_cpdef] = ACTIONS(1889), + [anon_sym_int] = ACTIONS(1889), + [anon_sym_double] = ACTIONS(1889), + [anon_sym_complex] = ACTIONS(1889), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_signed] = ACTIONS(1889), + [anon_sym_unsigned] = ACTIONS(1889), + [anon_sym_char] = ACTIONS(1889), + [anon_sym_short] = ACTIONS(1889), + [anon_sym_long] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_volatile] = ACTIONS(1889), + [anon_sym_ctypedef] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_union] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [anon_sym_cppclass] = ACTIONS(1889), + [anon_sym_fused] = ACTIONS(1889), + [anon_sym_public] = ACTIONS(1889), + [anon_sym_packed] = ACTIONS(1889), + [anon_sym_inline] = ACTIONS(1889), + [anon_sym_readonly] = ACTIONS(1889), + [anon_sym_sizeof] = ACTIONS(1889), + [sym__dedent] = ACTIONS(1891), + [sym_string_start] = ACTIONS(1891), }, [602] = { - [sym_identifier] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1933), - [anon_sym_import] = ACTIONS(1931), - [anon_sym_cimport] = ACTIONS(1931), - [anon_sym_from] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1933), - [anon_sym_print] = ACTIONS(1931), - [anon_sym_assert] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_del] = ACTIONS(1931), - [anon_sym_raise] = ACTIONS(1931), - [anon_sym_pass] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_with] = ACTIONS(1931), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_global] = ACTIONS(1931), - [anon_sym_nonlocal] = ACTIONS(1931), - [anon_sym_exec] = ACTIONS(1931), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_class] = ACTIONS(1931), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_AT] = ACTIONS(1933), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_not] = ACTIONS(1931), - [anon_sym_AMP] = ACTIONS(1933), - [anon_sym_TILDE] = ACTIONS(1933), - [anon_sym_LT] = ACTIONS(1933), - [anon_sym_lambda] = ACTIONS(1931), - [anon_sym_yield] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), - [anon_sym_None] = ACTIONS(1931), - [sym_integer] = ACTIONS(1931), - [sym_float] = ACTIONS(1933), - [anon_sym_await] = ACTIONS(1931), - [anon_sym_api] = ACTIONS(1931), - [sym_true] = ACTIONS(1931), - [sym_false] = ACTIONS(1931), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1931), - [anon_sym_include] = ACTIONS(1931), - [anon_sym_DEF] = ACTIONS(1931), - [anon_sym_cdef] = ACTIONS(1931), - [anon_sym_cpdef] = ACTIONS(1931), - [anon_sym_int] = ACTIONS(1931), - [anon_sym_double] = ACTIONS(1931), - [anon_sym_complex] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_signed] = ACTIONS(1931), - [anon_sym_unsigned] = ACTIONS(1931), - [anon_sym_char] = ACTIONS(1931), - [anon_sym_short] = ACTIONS(1931), - [anon_sym_long] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [anon_sym_volatile] = ACTIONS(1931), - [anon_sym_ctypedef] = ACTIONS(1931), - [anon_sym_struct] = ACTIONS(1931), - [anon_sym_union] = ACTIONS(1931), - [anon_sym_enum] = ACTIONS(1931), - [anon_sym_cppclass] = ACTIONS(1931), - [anon_sym_fused] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_packed] = ACTIONS(1931), - [anon_sym_inline] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1931), - [anon_sym_sizeof] = ACTIONS(1931), - [sym__dedent] = ACTIONS(1933), - [sym_string_start] = ACTIONS(1933), + [sym_identifier] = ACTIONS(1893), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(1893), + [anon_sym_cimport] = ACTIONS(1893), + [anon_sym_from] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_print] = ACTIONS(1893), + [anon_sym_assert] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_del] = ACTIONS(1893), + [anon_sym_raise] = ACTIONS(1893), + [anon_sym_pass] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_with] = ACTIONS(1893), + [anon_sym_def] = ACTIONS(1893), + [anon_sym_global] = ACTIONS(1893), + [anon_sym_nonlocal] = ACTIONS(1893), + [anon_sym_exec] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_class] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_AT] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_PLUS] = ACTIONS(1895), + [anon_sym_not] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_TILDE] = ACTIONS(1895), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_lambda] = ACTIONS(1893), + [anon_sym_yield] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1895), + [anon_sym_None] = ACTIONS(1893), + [sym_integer] = ACTIONS(1893), + [sym_float] = ACTIONS(1895), + [anon_sym_await] = ACTIONS(1893), + [anon_sym_api] = ACTIONS(1893), + [sym_true] = ACTIONS(1893), + [sym_false] = ACTIONS(1893), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1893), + [anon_sym_include] = ACTIONS(1893), + [anon_sym_DEF] = ACTIONS(1893), + [anon_sym_cdef] = ACTIONS(1893), + [anon_sym_cpdef] = ACTIONS(1893), + [anon_sym_int] = ACTIONS(1893), + [anon_sym_double] = ACTIONS(1893), + [anon_sym_complex] = ACTIONS(1893), + [anon_sym_new] = ACTIONS(1893), + [anon_sym_signed] = ACTIONS(1893), + [anon_sym_unsigned] = ACTIONS(1893), + [anon_sym_char] = ACTIONS(1893), + [anon_sym_short] = ACTIONS(1893), + [anon_sym_long] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_volatile] = ACTIONS(1893), + [anon_sym_ctypedef] = ACTIONS(1893), + [anon_sym_struct] = ACTIONS(1893), + [anon_sym_union] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), + [anon_sym_cppclass] = ACTIONS(1893), + [anon_sym_fused] = ACTIONS(1893), + [anon_sym_public] = ACTIONS(1893), + [anon_sym_packed] = ACTIONS(1893), + [anon_sym_inline] = ACTIONS(1893), + [anon_sym_readonly] = ACTIONS(1893), + [anon_sym_sizeof] = ACTIONS(1893), + [sym__dedent] = ACTIONS(1895), + [sym_string_start] = ACTIONS(1895), }, [603] = { - [sym_identifier] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1937), - [anon_sym_import] = ACTIONS(1935), - [anon_sym_cimport] = ACTIONS(1935), - [anon_sym_from] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(1937), - [anon_sym_print] = ACTIONS(1935), - [anon_sym_assert] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_del] = ACTIONS(1935), - [anon_sym_raise] = ACTIONS(1935), - [anon_sym_pass] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_with] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1935), - [anon_sym_global] = ACTIONS(1935), - [anon_sym_nonlocal] = ACTIONS(1935), - [anon_sym_exec] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_class] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_AT] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1937), - [anon_sym_PLUS] = ACTIONS(1937), - [anon_sym_not] = ACTIONS(1935), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_lambda] = ACTIONS(1935), - [anon_sym_yield] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1937), - [anon_sym_None] = ACTIONS(1935), - [sym_integer] = ACTIONS(1935), - [sym_float] = ACTIONS(1937), - [anon_sym_await] = ACTIONS(1935), - [anon_sym_api] = ACTIONS(1935), - [sym_true] = ACTIONS(1935), - [sym_false] = ACTIONS(1935), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1935), - [anon_sym_include] = ACTIONS(1935), - [anon_sym_DEF] = ACTIONS(1935), - [anon_sym_cdef] = ACTIONS(1935), - [anon_sym_cpdef] = ACTIONS(1935), - [anon_sym_int] = ACTIONS(1935), - [anon_sym_double] = ACTIONS(1935), - [anon_sym_complex] = ACTIONS(1935), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_signed] = ACTIONS(1935), - [anon_sym_unsigned] = ACTIONS(1935), - [anon_sym_char] = ACTIONS(1935), - [anon_sym_short] = ACTIONS(1935), - [anon_sym_long] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [anon_sym_volatile] = ACTIONS(1935), - [anon_sym_ctypedef] = ACTIONS(1935), - [anon_sym_struct] = ACTIONS(1935), - [anon_sym_union] = ACTIONS(1935), - [anon_sym_enum] = ACTIONS(1935), - [anon_sym_cppclass] = ACTIONS(1935), - [anon_sym_fused] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1935), - [anon_sym_packed] = ACTIONS(1935), - [anon_sym_inline] = ACTIONS(1935), - [anon_sym_readonly] = ACTIONS(1935), - [anon_sym_sizeof] = ACTIONS(1935), - [sym__dedent] = ACTIONS(1937), - [sym_string_start] = ACTIONS(1937), + [sym_identifier] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_import] = ACTIONS(1897), + [anon_sym_cimport] = ACTIONS(1897), + [anon_sym_from] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_print] = ACTIONS(1897), + [anon_sym_assert] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_del] = ACTIONS(1897), + [anon_sym_raise] = ACTIONS(1897), + [anon_sym_pass] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_with] = ACTIONS(1897), + [anon_sym_def] = ACTIONS(1897), + [anon_sym_global] = ACTIONS(1897), + [anon_sym_nonlocal] = ACTIONS(1897), + [anon_sym_exec] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1897), + [anon_sym_class] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_not] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_lambda] = ACTIONS(1897), + [anon_sym_yield] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), + [anon_sym_None] = ACTIONS(1897), + [sym_integer] = ACTIONS(1897), + [sym_float] = ACTIONS(1899), + [anon_sym_await] = ACTIONS(1897), + [anon_sym_api] = ACTIONS(1897), + [sym_true] = ACTIONS(1897), + [sym_false] = ACTIONS(1897), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1897), + [anon_sym_include] = ACTIONS(1897), + [anon_sym_DEF] = ACTIONS(1897), + [anon_sym_cdef] = ACTIONS(1897), + [anon_sym_cpdef] = ACTIONS(1897), + [anon_sym_int] = ACTIONS(1897), + [anon_sym_double] = ACTIONS(1897), + [anon_sym_complex] = ACTIONS(1897), + [anon_sym_new] = ACTIONS(1897), + [anon_sym_signed] = ACTIONS(1897), + [anon_sym_unsigned] = ACTIONS(1897), + [anon_sym_char] = ACTIONS(1897), + [anon_sym_short] = ACTIONS(1897), + [anon_sym_long] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [anon_sym_volatile] = ACTIONS(1897), + [anon_sym_ctypedef] = ACTIONS(1897), + [anon_sym_struct] = ACTIONS(1897), + [anon_sym_union] = ACTIONS(1897), + [anon_sym_enum] = ACTIONS(1897), + [anon_sym_cppclass] = ACTIONS(1897), + [anon_sym_fused] = ACTIONS(1897), + [anon_sym_public] = ACTIONS(1897), + [anon_sym_packed] = ACTIONS(1897), + [anon_sym_inline] = ACTIONS(1897), + [anon_sym_readonly] = ACTIONS(1897), + [anon_sym_sizeof] = ACTIONS(1897), + [sym__dedent] = ACTIONS(1899), + [sym_string_start] = ACTIONS(1899), }, [604] = { - [sym_identifier] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1941), - [anon_sym_import] = ACTIONS(1939), - [anon_sym_cimport] = ACTIONS(1939), - [anon_sym_from] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1941), - [anon_sym_print] = ACTIONS(1939), - [anon_sym_assert] = ACTIONS(1939), - [anon_sym_return] = ACTIONS(1939), - [anon_sym_del] = ACTIONS(1939), - [anon_sym_raise] = ACTIONS(1939), - [anon_sym_pass] = ACTIONS(1939), - [anon_sym_break] = ACTIONS(1939), - [anon_sym_continue] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_match] = ACTIONS(1939), - [anon_sym_async] = ACTIONS(1939), - [anon_sym_for] = ACTIONS(1939), - [anon_sym_while] = ACTIONS(1939), - [anon_sym_try] = ACTIONS(1939), - [anon_sym_with] = ACTIONS(1939), - [anon_sym_def] = ACTIONS(1939), - [anon_sym_global] = ACTIONS(1939), - [anon_sym_nonlocal] = ACTIONS(1939), - [anon_sym_exec] = ACTIONS(1939), - [anon_sym_type] = ACTIONS(1939), - [anon_sym_class] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_AT] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_PLUS] = ACTIONS(1941), - [anon_sym_not] = ACTIONS(1939), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_TILDE] = ACTIONS(1941), - [anon_sym_LT] = ACTIONS(1941), - [anon_sym_lambda] = ACTIONS(1939), - [anon_sym_yield] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), - [anon_sym_None] = ACTIONS(1939), - [sym_integer] = ACTIONS(1939), - [sym_float] = ACTIONS(1941), - [anon_sym_await] = ACTIONS(1939), - [anon_sym_api] = ACTIONS(1939), - [sym_true] = ACTIONS(1939), - [sym_false] = ACTIONS(1939), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1939), - [anon_sym_include] = ACTIONS(1939), - [anon_sym_DEF] = ACTIONS(1939), - [anon_sym_cdef] = ACTIONS(1939), - [anon_sym_cpdef] = ACTIONS(1939), - [anon_sym_int] = ACTIONS(1939), - [anon_sym_double] = ACTIONS(1939), - [anon_sym_complex] = ACTIONS(1939), - [anon_sym_new] = ACTIONS(1939), - [anon_sym_signed] = ACTIONS(1939), - [anon_sym_unsigned] = ACTIONS(1939), - [anon_sym_char] = ACTIONS(1939), - [anon_sym_short] = ACTIONS(1939), - [anon_sym_long] = ACTIONS(1939), - [anon_sym_const] = ACTIONS(1939), - [anon_sym_volatile] = ACTIONS(1939), - [anon_sym_ctypedef] = ACTIONS(1939), - [anon_sym_struct] = ACTIONS(1939), - [anon_sym_union] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1939), - [anon_sym_cppclass] = ACTIONS(1939), - [anon_sym_fused] = ACTIONS(1939), - [anon_sym_public] = ACTIONS(1939), - [anon_sym_packed] = ACTIONS(1939), - [anon_sym_inline] = ACTIONS(1939), - [anon_sym_readonly] = ACTIONS(1939), - [anon_sym_sizeof] = ACTIONS(1939), - [sym__dedent] = ACTIONS(1941), - [sym_string_start] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_import] = ACTIONS(1901), + [anon_sym_cimport] = ACTIONS(1901), + [anon_sym_from] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_print] = ACTIONS(1901), + [anon_sym_assert] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_del] = ACTIONS(1901), + [anon_sym_raise] = ACTIONS(1901), + [anon_sym_pass] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_async] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1901), + [anon_sym_with] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1901), + [anon_sym_global] = ACTIONS(1901), + [anon_sym_nonlocal] = ACTIONS(1901), + [anon_sym_exec] = ACTIONS(1901), + [anon_sym_type] = ACTIONS(1901), + [anon_sym_class] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_AT] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(1901), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1903), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_lambda] = ACTIONS(1901), + [anon_sym_yield] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1903), + [anon_sym_None] = ACTIONS(1901), + [sym_integer] = ACTIONS(1901), + [sym_float] = ACTIONS(1903), + [anon_sym_await] = ACTIONS(1901), + [anon_sym_api] = ACTIONS(1901), + [sym_true] = ACTIONS(1901), + [sym_false] = ACTIONS(1901), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1901), + [anon_sym_include] = ACTIONS(1901), + [anon_sym_DEF] = ACTIONS(1901), + [anon_sym_cdef] = ACTIONS(1901), + [anon_sym_cpdef] = ACTIONS(1901), + [anon_sym_int] = ACTIONS(1901), + [anon_sym_double] = ACTIONS(1901), + [anon_sym_complex] = ACTIONS(1901), + [anon_sym_new] = ACTIONS(1901), + [anon_sym_signed] = ACTIONS(1901), + [anon_sym_unsigned] = ACTIONS(1901), + [anon_sym_char] = ACTIONS(1901), + [anon_sym_short] = ACTIONS(1901), + [anon_sym_long] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [anon_sym_volatile] = ACTIONS(1901), + [anon_sym_ctypedef] = ACTIONS(1901), + [anon_sym_struct] = ACTIONS(1901), + [anon_sym_union] = ACTIONS(1901), + [anon_sym_enum] = ACTIONS(1901), + [anon_sym_cppclass] = ACTIONS(1901), + [anon_sym_fused] = ACTIONS(1901), + [anon_sym_public] = ACTIONS(1901), + [anon_sym_packed] = ACTIONS(1901), + [anon_sym_inline] = ACTIONS(1901), + [anon_sym_readonly] = ACTIONS(1901), + [anon_sym_sizeof] = ACTIONS(1901), + [sym__dedent] = ACTIONS(1903), + [sym_string_start] = ACTIONS(1903), }, [605] = { - [sym_identifier] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_import] = ACTIONS(1943), - [anon_sym_cimport] = ACTIONS(1943), - [anon_sym_from] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_print] = ACTIONS(1943), - [anon_sym_assert] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1943), - [anon_sym_del] = ACTIONS(1943), - [anon_sym_raise] = ACTIONS(1943), - [anon_sym_pass] = ACTIONS(1943), - [anon_sym_break] = ACTIONS(1943), - [anon_sym_continue] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_match] = ACTIONS(1943), - [anon_sym_async] = ACTIONS(1943), - [anon_sym_for] = ACTIONS(1943), - [anon_sym_while] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1943), - [anon_sym_with] = ACTIONS(1943), - [anon_sym_def] = ACTIONS(1943), - [anon_sym_global] = ACTIONS(1943), - [anon_sym_nonlocal] = ACTIONS(1943), - [anon_sym_exec] = ACTIONS(1943), - [anon_sym_type] = ACTIONS(1943), - [anon_sym_class] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_AT] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1945), - [anon_sym_not] = ACTIONS(1943), - [anon_sym_AMP] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_LT] = ACTIONS(1945), - [anon_sym_lambda] = ACTIONS(1943), - [anon_sym_yield] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), - [anon_sym_None] = ACTIONS(1943), - [sym_integer] = ACTIONS(1943), - [sym_float] = ACTIONS(1945), - [anon_sym_await] = ACTIONS(1943), - [anon_sym_api] = ACTIONS(1943), - [sym_true] = ACTIONS(1943), - [sym_false] = ACTIONS(1943), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1943), - [anon_sym_include] = ACTIONS(1943), - [anon_sym_DEF] = ACTIONS(1943), - [anon_sym_cdef] = ACTIONS(1943), - [anon_sym_cpdef] = ACTIONS(1943), - [anon_sym_int] = ACTIONS(1943), - [anon_sym_double] = ACTIONS(1943), - [anon_sym_complex] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_signed] = ACTIONS(1943), - [anon_sym_unsigned] = ACTIONS(1943), - [anon_sym_char] = ACTIONS(1943), - [anon_sym_short] = ACTIONS(1943), - [anon_sym_long] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1943), - [anon_sym_volatile] = ACTIONS(1943), - [anon_sym_ctypedef] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1943), - [anon_sym_union] = ACTIONS(1943), - [anon_sym_enum] = ACTIONS(1943), - [anon_sym_cppclass] = ACTIONS(1943), - [anon_sym_fused] = ACTIONS(1943), - [anon_sym_public] = ACTIONS(1943), - [anon_sym_packed] = ACTIONS(1943), - [anon_sym_inline] = ACTIONS(1943), - [anon_sym_readonly] = ACTIONS(1943), - [anon_sym_sizeof] = ACTIONS(1943), - [sym__dedent] = ACTIONS(1945), - [sym_string_start] = ACTIONS(1945), + [sym_identifier] = ACTIONS(1905), + [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_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(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), }, [606] = { - [sym_identifier] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_import] = ACTIONS(1903), - [anon_sym_cimport] = ACTIONS(1903), - [anon_sym_from] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_print] = ACTIONS(1903), - [anon_sym_assert] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_del] = ACTIONS(1903), - [anon_sym_raise] = ACTIONS(1903), - [anon_sym_pass] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_match] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_with] = ACTIONS(1903), - [anon_sym_def] = ACTIONS(1903), - [anon_sym_global] = ACTIONS(1903), - [anon_sym_nonlocal] = ACTIONS(1903), - [anon_sym_exec] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_class] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_AT] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1905), - [anon_sym_not] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_lambda] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), - [anon_sym_None] = ACTIONS(1903), - [sym_integer] = ACTIONS(1903), - [sym_float] = ACTIONS(1905), - [anon_sym_await] = ACTIONS(1903), - [anon_sym_api] = ACTIONS(1903), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1903), - [anon_sym_include] = ACTIONS(1903), - [anon_sym_DEF] = ACTIONS(1903), - [anon_sym_cdef] = ACTIONS(1903), - [anon_sym_cpdef] = ACTIONS(1903), - [anon_sym_int] = ACTIONS(1903), - [anon_sym_double] = ACTIONS(1903), - [anon_sym_complex] = ACTIONS(1903), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_char] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_volatile] = ACTIONS(1903), - [anon_sym_ctypedef] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1903), - [anon_sym_union] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), - [anon_sym_cppclass] = ACTIONS(1903), - [anon_sym_fused] = ACTIONS(1903), - [anon_sym_public] = ACTIONS(1903), - [anon_sym_packed] = ACTIONS(1903), - [anon_sym_inline] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(1903), - [anon_sym_sizeof] = ACTIONS(1903), - [sym__dedent] = ACTIONS(1905), - [sym_string_start] = ACTIONS(1905), + [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), }, [607] = { - [sym_identifier] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1949), - [anon_sym_import] = ACTIONS(1947), - [anon_sym_cimport] = ACTIONS(1947), - [anon_sym_from] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1949), - [anon_sym_print] = ACTIONS(1947), - [anon_sym_assert] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_del] = ACTIONS(1947), - [anon_sym_raise] = ACTIONS(1947), - [anon_sym_pass] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_async] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_with] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1947), - [anon_sym_global] = ACTIONS(1947), - [anon_sym_nonlocal] = ACTIONS(1947), - [anon_sym_exec] = ACTIONS(1947), - [anon_sym_type] = ACTIONS(1947), - [anon_sym_class] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1949), - [anon_sym_AT] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1949), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_not] = ACTIONS(1947), - [anon_sym_AMP] = ACTIONS(1949), - [anon_sym_TILDE] = ACTIONS(1949), - [anon_sym_LT] = ACTIONS(1949), - [anon_sym_lambda] = ACTIONS(1947), - [anon_sym_yield] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1949), - [anon_sym_None] = ACTIONS(1947), - [sym_integer] = ACTIONS(1947), - [sym_float] = ACTIONS(1949), - [anon_sym_await] = ACTIONS(1947), - [anon_sym_api] = ACTIONS(1947), - [sym_true] = ACTIONS(1947), - [sym_false] = ACTIONS(1947), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1947), - [anon_sym_include] = ACTIONS(1947), - [anon_sym_DEF] = ACTIONS(1947), - [anon_sym_cdef] = ACTIONS(1947), - [anon_sym_cpdef] = ACTIONS(1947), - [anon_sym_int] = ACTIONS(1947), - [anon_sym_double] = ACTIONS(1947), - [anon_sym_complex] = ACTIONS(1947), - [anon_sym_new] = ACTIONS(1947), - [anon_sym_signed] = ACTIONS(1947), - [anon_sym_unsigned] = ACTIONS(1947), - [anon_sym_char] = ACTIONS(1947), - [anon_sym_short] = ACTIONS(1947), - [anon_sym_long] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [anon_sym_volatile] = ACTIONS(1947), - [anon_sym_ctypedef] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1947), - [anon_sym_union] = ACTIONS(1947), - [anon_sym_enum] = ACTIONS(1947), - [anon_sym_cppclass] = ACTIONS(1947), - [anon_sym_fused] = ACTIONS(1947), - [anon_sym_public] = ACTIONS(1947), - [anon_sym_packed] = ACTIONS(1947), - [anon_sym_inline] = ACTIONS(1947), - [anon_sym_readonly] = ACTIONS(1947), - [anon_sym_sizeof] = ACTIONS(1947), - [sym__dedent] = ACTIONS(1949), - [sym_string_start] = ACTIONS(1949), + [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), }, [608] = { - [sym_identifier] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_import] = ACTIONS(1951), - [anon_sym_cimport] = ACTIONS(1951), - [anon_sym_from] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_print] = ACTIONS(1951), - [anon_sym_assert] = ACTIONS(1951), - [anon_sym_return] = ACTIONS(1951), - [anon_sym_del] = ACTIONS(1951), - [anon_sym_raise] = ACTIONS(1951), - [anon_sym_pass] = ACTIONS(1951), - [anon_sym_break] = ACTIONS(1951), - [anon_sym_continue] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_match] = ACTIONS(1951), - [anon_sym_async] = ACTIONS(1951), - [anon_sym_for] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1951), - [anon_sym_try] = ACTIONS(1951), - [anon_sym_with] = ACTIONS(1951), - [anon_sym_def] = ACTIONS(1951), - [anon_sym_global] = ACTIONS(1951), - [anon_sym_nonlocal] = ACTIONS(1951), - [anon_sym_exec] = ACTIONS(1951), - [anon_sym_type] = ACTIONS(1951), - [anon_sym_class] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_AT] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_PLUS] = ACTIONS(1953), - [anon_sym_not] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1953), - [anon_sym_TILDE] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1953), - [anon_sym_lambda] = ACTIONS(1951), - [anon_sym_yield] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1953), - [anon_sym_None] = ACTIONS(1951), - [sym_integer] = ACTIONS(1951), - [sym_float] = ACTIONS(1953), - [anon_sym_await] = ACTIONS(1951), - [anon_sym_api] = ACTIONS(1951), - [sym_true] = ACTIONS(1951), - [sym_false] = ACTIONS(1951), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1951), - [anon_sym_include] = ACTIONS(1951), - [anon_sym_DEF] = ACTIONS(1951), - [anon_sym_cdef] = ACTIONS(1951), - [anon_sym_cpdef] = ACTIONS(1951), - [anon_sym_int] = ACTIONS(1951), - [anon_sym_double] = ACTIONS(1951), - [anon_sym_complex] = ACTIONS(1951), - [anon_sym_new] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1951), - [anon_sym_unsigned] = ACTIONS(1951), - [anon_sym_char] = ACTIONS(1951), - [anon_sym_short] = ACTIONS(1951), - [anon_sym_long] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_ctypedef] = ACTIONS(1951), - [anon_sym_struct] = ACTIONS(1951), - [anon_sym_union] = ACTIONS(1951), - [anon_sym_enum] = ACTIONS(1951), - [anon_sym_cppclass] = ACTIONS(1951), - [anon_sym_fused] = ACTIONS(1951), - [anon_sym_public] = ACTIONS(1951), - [anon_sym_packed] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym_readonly] = ACTIONS(1951), - [anon_sym_sizeof] = ACTIONS(1951), - [sym__dedent] = ACTIONS(1953), - [sym_string_start] = ACTIONS(1953), + [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), }, [609] = { - [sym_identifier] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_import] = ACTIONS(1955), - [anon_sym_cimport] = ACTIONS(1955), - [anon_sym_from] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_print] = ACTIONS(1955), - [anon_sym_assert] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_del] = ACTIONS(1955), - [anon_sym_raise] = ACTIONS(1955), - [anon_sym_pass] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_async] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_with] = ACTIONS(1955), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_global] = ACTIONS(1955), - [anon_sym_nonlocal] = ACTIONS(1955), - [anon_sym_exec] = ACTIONS(1955), - [anon_sym_type] = ACTIONS(1955), - [anon_sym_class] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1957), - [anon_sym_AT] = ACTIONS(1957), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1957), - [anon_sym_PLUS] = ACTIONS(1957), - [anon_sym_not] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_TILDE] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_lambda] = ACTIONS(1955), - [anon_sym_yield] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), - [anon_sym_None] = ACTIONS(1955), - [sym_integer] = ACTIONS(1955), - [sym_float] = ACTIONS(1957), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_api] = ACTIONS(1955), - [sym_true] = ACTIONS(1955), - [sym_false] = ACTIONS(1955), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1955), - [anon_sym_include] = ACTIONS(1955), - [anon_sym_DEF] = ACTIONS(1955), - [anon_sym_cdef] = ACTIONS(1955), - [anon_sym_cpdef] = ACTIONS(1955), - [anon_sym_int] = ACTIONS(1955), - [anon_sym_double] = ACTIONS(1955), - [anon_sym_complex] = ACTIONS(1955), - [anon_sym_new] = ACTIONS(1955), - [anon_sym_signed] = ACTIONS(1955), - [anon_sym_unsigned] = ACTIONS(1955), - [anon_sym_char] = ACTIONS(1955), - [anon_sym_short] = ACTIONS(1955), - [anon_sym_long] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_volatile] = ACTIONS(1955), - [anon_sym_ctypedef] = ACTIONS(1955), - [anon_sym_struct] = ACTIONS(1955), - [anon_sym_union] = ACTIONS(1955), - [anon_sym_enum] = ACTIONS(1955), - [anon_sym_cppclass] = ACTIONS(1955), - [anon_sym_fused] = ACTIONS(1955), - [anon_sym_public] = ACTIONS(1955), - [anon_sym_packed] = ACTIONS(1955), - [anon_sym_inline] = ACTIONS(1955), - [anon_sym_readonly] = ACTIONS(1955), - [anon_sym_sizeof] = ACTIONS(1955), - [sym__dedent] = ACTIONS(1957), - [sym_string_start] = ACTIONS(1957), + [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), }, [610] = { - [sym_identifier] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_import] = ACTIONS(1959), - [anon_sym_cimport] = ACTIONS(1959), - [anon_sym_from] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_print] = ACTIONS(1959), - [anon_sym_assert] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_del] = ACTIONS(1959), - [anon_sym_raise] = ACTIONS(1959), - [anon_sym_pass] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_async] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_with] = ACTIONS(1959), - [anon_sym_def] = ACTIONS(1959), - [anon_sym_global] = ACTIONS(1959), - [anon_sym_nonlocal] = ACTIONS(1959), - [anon_sym_exec] = ACTIONS(1959), - [anon_sym_type] = ACTIONS(1959), - [anon_sym_class] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1961), - [anon_sym_AT] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_not] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_lambda] = ACTIONS(1959), - [anon_sym_yield] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1961), - [anon_sym_None] = ACTIONS(1959), - [sym_integer] = ACTIONS(1959), - [sym_float] = ACTIONS(1961), - [anon_sym_await] = ACTIONS(1959), - [anon_sym_api] = ACTIONS(1959), - [sym_true] = ACTIONS(1959), - [sym_false] = ACTIONS(1959), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1959), - [anon_sym_include] = ACTIONS(1959), - [anon_sym_DEF] = ACTIONS(1959), - [anon_sym_cdef] = ACTIONS(1959), - [anon_sym_cpdef] = ACTIONS(1959), - [anon_sym_int] = ACTIONS(1959), - [anon_sym_double] = ACTIONS(1959), - [anon_sym_complex] = ACTIONS(1959), - [anon_sym_new] = ACTIONS(1959), - [anon_sym_signed] = ACTIONS(1959), - [anon_sym_unsigned] = ACTIONS(1959), - [anon_sym_char] = ACTIONS(1959), - [anon_sym_short] = ACTIONS(1959), - [anon_sym_long] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [anon_sym_volatile] = ACTIONS(1959), - [anon_sym_ctypedef] = ACTIONS(1959), - [anon_sym_struct] = ACTIONS(1959), - [anon_sym_union] = ACTIONS(1959), - [anon_sym_enum] = ACTIONS(1959), - [anon_sym_cppclass] = ACTIONS(1959), - [anon_sym_fused] = ACTIONS(1959), - [anon_sym_public] = ACTIONS(1959), - [anon_sym_packed] = ACTIONS(1959), - [anon_sym_inline] = ACTIONS(1959), - [anon_sym_readonly] = ACTIONS(1959), - [anon_sym_sizeof] = ACTIONS(1959), - [sym__dedent] = ACTIONS(1961), - [sym_string_start] = ACTIONS(1961), + [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), }, [611] = { - [sym_identifier] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym_import] = ACTIONS(1963), - [anon_sym_cimport] = ACTIONS(1963), - [anon_sym_from] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_print] = ACTIONS(1963), - [anon_sym_assert] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_del] = ACTIONS(1963), - [anon_sym_raise] = ACTIONS(1963), - [anon_sym_pass] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_async] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_with] = ACTIONS(1963), - [anon_sym_def] = ACTIONS(1963), - [anon_sym_global] = ACTIONS(1963), - [anon_sym_nonlocal] = ACTIONS(1963), - [anon_sym_exec] = ACTIONS(1963), - [anon_sym_type] = ACTIONS(1963), - [anon_sym_class] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_AT] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_PLUS] = ACTIONS(1965), - [anon_sym_not] = ACTIONS(1963), - [anon_sym_AMP] = ACTIONS(1965), - [anon_sym_TILDE] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_lambda] = ACTIONS(1963), - [anon_sym_yield] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1965), - [anon_sym_None] = ACTIONS(1963), - [sym_integer] = ACTIONS(1963), - [sym_float] = ACTIONS(1965), - [anon_sym_await] = ACTIONS(1963), - [anon_sym_api] = ACTIONS(1963), - [sym_true] = ACTIONS(1963), - [sym_false] = ACTIONS(1963), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1963), - [anon_sym_include] = ACTIONS(1963), - [anon_sym_DEF] = ACTIONS(1963), - [anon_sym_cdef] = ACTIONS(1963), - [anon_sym_cpdef] = ACTIONS(1963), - [anon_sym_int] = ACTIONS(1963), - [anon_sym_double] = ACTIONS(1963), - [anon_sym_complex] = ACTIONS(1963), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1963), - [anon_sym_unsigned] = ACTIONS(1963), - [anon_sym_char] = ACTIONS(1963), - [anon_sym_short] = ACTIONS(1963), - [anon_sym_long] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_ctypedef] = ACTIONS(1963), - [anon_sym_struct] = ACTIONS(1963), - [anon_sym_union] = ACTIONS(1963), - [anon_sym_enum] = ACTIONS(1963), - [anon_sym_cppclass] = ACTIONS(1963), - [anon_sym_fused] = ACTIONS(1963), - [anon_sym_public] = ACTIONS(1963), - [anon_sym_packed] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym_readonly] = ACTIONS(1963), - [anon_sym_sizeof] = ACTIONS(1963), - [sym__dedent] = ACTIONS(1965), - [sym_string_start] = ACTIONS(1965), + [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), }, [612] = { - [sym_identifier] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_import] = ACTIONS(1967), - [anon_sym_cimport] = ACTIONS(1967), - [anon_sym_from] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_print] = ACTIONS(1967), - [anon_sym_assert] = ACTIONS(1967), - [anon_sym_return] = ACTIONS(1967), - [anon_sym_del] = ACTIONS(1967), - [anon_sym_raise] = ACTIONS(1967), - [anon_sym_pass] = ACTIONS(1967), - [anon_sym_break] = ACTIONS(1967), - [anon_sym_continue] = ACTIONS(1967), - [anon_sym_if] = ACTIONS(1967), - [anon_sym_match] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(1967), - [anon_sym_for] = ACTIONS(1967), - [anon_sym_while] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(1967), - [anon_sym_with] = ACTIONS(1967), - [anon_sym_def] = ACTIONS(1967), - [anon_sym_global] = ACTIONS(1967), - [anon_sym_nonlocal] = ACTIONS(1967), - [anon_sym_exec] = ACTIONS(1967), - [anon_sym_type] = ACTIONS(1967), - [anon_sym_class] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1969), - [anon_sym_AT] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_not] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_TILDE] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_lambda] = ACTIONS(1967), - [anon_sym_yield] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1969), - [anon_sym_None] = ACTIONS(1967), - [sym_integer] = ACTIONS(1967), - [sym_float] = ACTIONS(1969), - [anon_sym_await] = ACTIONS(1967), - [anon_sym_api] = ACTIONS(1967), - [sym_true] = ACTIONS(1967), - [sym_false] = ACTIONS(1967), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1967), - [anon_sym_include] = ACTIONS(1967), - [anon_sym_DEF] = ACTIONS(1967), - [anon_sym_cdef] = ACTIONS(1967), - [anon_sym_cpdef] = ACTIONS(1967), - [anon_sym_int] = ACTIONS(1967), - [anon_sym_double] = ACTIONS(1967), - [anon_sym_complex] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1967), - [anon_sym_signed] = ACTIONS(1967), - [anon_sym_unsigned] = ACTIONS(1967), - [anon_sym_char] = ACTIONS(1967), - [anon_sym_short] = ACTIONS(1967), - [anon_sym_long] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_volatile] = ACTIONS(1967), - [anon_sym_ctypedef] = ACTIONS(1967), - [anon_sym_struct] = ACTIONS(1967), - [anon_sym_union] = ACTIONS(1967), - [anon_sym_enum] = ACTIONS(1967), - [anon_sym_cppclass] = ACTIONS(1967), - [anon_sym_fused] = ACTIONS(1967), - [anon_sym_public] = ACTIONS(1967), - [anon_sym_packed] = ACTIONS(1967), - [anon_sym_inline] = ACTIONS(1967), - [anon_sym_readonly] = ACTIONS(1967), - [anon_sym_sizeof] = ACTIONS(1967), - [sym__dedent] = ACTIONS(1969), - [sym_string_start] = ACTIONS(1969), + [sym_identifier] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1935), + [anon_sym_import] = ACTIONS(1933), + [anon_sym_cimport] = ACTIONS(1933), + [anon_sym_from] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_STAR] = ACTIONS(1935), + [anon_sym_print] = ACTIONS(1933), + [anon_sym_assert] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_del] = ACTIONS(1933), + [anon_sym_raise] = ACTIONS(1933), + [anon_sym_pass] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_async] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_while] = ACTIONS(1933), + [anon_sym_try] = ACTIONS(1933), + [anon_sym_with] = ACTIONS(1933), + [anon_sym_def] = ACTIONS(1933), + [anon_sym_global] = ACTIONS(1933), + [anon_sym_nonlocal] = ACTIONS(1933), + [anon_sym_exec] = ACTIONS(1933), + [anon_sym_type] = ACTIONS(1933), + [anon_sym_class] = ACTIONS(1933), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_AT] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_not] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1935), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_lambda] = ACTIONS(1933), + [anon_sym_yield] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_None] = ACTIONS(1933), + [sym_integer] = ACTIONS(1933), + [sym_float] = ACTIONS(1935), + [anon_sym_await] = ACTIONS(1933), + [anon_sym_api] = ACTIONS(1933), + [sym_true] = ACTIONS(1933), + [sym_false] = ACTIONS(1933), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1933), + [anon_sym_include] = ACTIONS(1933), + [anon_sym_DEF] = ACTIONS(1933), + [anon_sym_cdef] = ACTIONS(1933), + [anon_sym_cpdef] = ACTIONS(1933), + [anon_sym_int] = ACTIONS(1933), + [anon_sym_double] = ACTIONS(1933), + [anon_sym_complex] = ACTIONS(1933), + [anon_sym_new] = ACTIONS(1933), + [anon_sym_signed] = ACTIONS(1933), + [anon_sym_unsigned] = ACTIONS(1933), + [anon_sym_char] = ACTIONS(1933), + [anon_sym_short] = ACTIONS(1933), + [anon_sym_long] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [anon_sym_volatile] = ACTIONS(1933), + [anon_sym_ctypedef] = ACTIONS(1933), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1933), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_cppclass] = ACTIONS(1933), + [anon_sym_fused] = ACTIONS(1933), + [anon_sym_public] = ACTIONS(1933), + [anon_sym_packed] = ACTIONS(1933), + [anon_sym_inline] = ACTIONS(1933), + [anon_sym_readonly] = ACTIONS(1933), + [anon_sym_sizeof] = ACTIONS(1933), + [sym__dedent] = ACTIONS(1935), + [sym_string_start] = ACTIONS(1935), }, [613] = { - [sym_identifier] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_import] = ACTIONS(1971), - [anon_sym_cimport] = ACTIONS(1971), - [anon_sym_from] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_print] = ACTIONS(1971), - [anon_sym_assert] = ACTIONS(1971), - [anon_sym_return] = ACTIONS(1971), - [anon_sym_del] = ACTIONS(1971), - [anon_sym_raise] = ACTIONS(1971), - [anon_sym_pass] = ACTIONS(1971), - [anon_sym_break] = ACTIONS(1971), - [anon_sym_continue] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1971), - [anon_sym_match] = ACTIONS(1971), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_for] = ACTIONS(1971), - [anon_sym_while] = ACTIONS(1971), - [anon_sym_try] = ACTIONS(1971), - [anon_sym_with] = ACTIONS(1971), - [anon_sym_def] = ACTIONS(1971), - [anon_sym_global] = ACTIONS(1971), - [anon_sym_nonlocal] = ACTIONS(1971), - [anon_sym_exec] = ACTIONS(1971), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_class] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_AT] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_PLUS] = ACTIONS(1973), - [anon_sym_not] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1973), - [anon_sym_TILDE] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_lambda] = ACTIONS(1971), - [anon_sym_yield] = ACTIONS(1971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1973), - [anon_sym_None] = ACTIONS(1971), - [sym_integer] = ACTIONS(1971), - [sym_float] = ACTIONS(1973), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_api] = ACTIONS(1971), - [sym_true] = ACTIONS(1971), - [sym_false] = ACTIONS(1971), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1971), - [anon_sym_include] = ACTIONS(1971), - [anon_sym_DEF] = ACTIONS(1971), - [anon_sym_cdef] = ACTIONS(1971), - [anon_sym_cpdef] = ACTIONS(1971), - [anon_sym_int] = ACTIONS(1971), - [anon_sym_double] = ACTIONS(1971), - [anon_sym_complex] = ACTIONS(1971), - [anon_sym_new] = ACTIONS(1971), - [anon_sym_signed] = ACTIONS(1971), - [anon_sym_unsigned] = ACTIONS(1971), - [anon_sym_char] = ACTIONS(1971), - [anon_sym_short] = ACTIONS(1971), - [anon_sym_long] = ACTIONS(1971), - [anon_sym_const] = ACTIONS(1971), - [anon_sym_volatile] = ACTIONS(1971), - [anon_sym_ctypedef] = ACTIONS(1971), - [anon_sym_struct] = ACTIONS(1971), - [anon_sym_union] = ACTIONS(1971), - [anon_sym_enum] = ACTIONS(1971), - [anon_sym_cppclass] = ACTIONS(1971), - [anon_sym_fused] = ACTIONS(1971), - [anon_sym_public] = ACTIONS(1971), - [anon_sym_packed] = ACTIONS(1971), - [anon_sym_inline] = ACTIONS(1971), - [anon_sym_readonly] = ACTIONS(1971), - [anon_sym_sizeof] = ACTIONS(1971), - [sym__dedent] = ACTIONS(1973), - [sym_string_start] = ACTIONS(1973), + [sym_identifier] = ACTIONS(1937), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_import] = ACTIONS(1937), + [anon_sym_cimport] = ACTIONS(1937), + [anon_sym_from] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1939), + [anon_sym_print] = ACTIONS(1937), + [anon_sym_assert] = ACTIONS(1937), + [anon_sym_return] = ACTIONS(1937), + [anon_sym_del] = ACTIONS(1937), + [anon_sym_raise] = ACTIONS(1937), + [anon_sym_pass] = ACTIONS(1937), + [anon_sym_break] = ACTIONS(1937), + [anon_sym_continue] = ACTIONS(1937), + [anon_sym_if] = ACTIONS(1937), + [anon_sym_match] = ACTIONS(1937), + [anon_sym_async] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1937), + [anon_sym_while] = ACTIONS(1937), + [anon_sym_try] = ACTIONS(1937), + [anon_sym_with] = ACTIONS(1937), + [anon_sym_def] = ACTIONS(1937), + [anon_sym_global] = ACTIONS(1937), + [anon_sym_nonlocal] = ACTIONS(1937), + [anon_sym_exec] = ACTIONS(1937), + [anon_sym_type] = ACTIONS(1937), + [anon_sym_class] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(1939), + [anon_sym_AT] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_not] = ACTIONS(1937), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1939), + [anon_sym_LT] = ACTIONS(1939), + [anon_sym_lambda] = ACTIONS(1937), + [anon_sym_yield] = ACTIONS(1937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1939), + [anon_sym_None] = ACTIONS(1937), + [sym_integer] = ACTIONS(1937), + [sym_float] = ACTIONS(1939), + [anon_sym_await] = ACTIONS(1937), + [anon_sym_api] = ACTIONS(1937), + [sym_true] = ACTIONS(1937), + [sym_false] = ACTIONS(1937), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1937), + [anon_sym_include] = ACTIONS(1937), + [anon_sym_DEF] = ACTIONS(1937), + [anon_sym_cdef] = ACTIONS(1937), + [anon_sym_cpdef] = ACTIONS(1937), + [anon_sym_int] = ACTIONS(1937), + [anon_sym_double] = ACTIONS(1937), + [anon_sym_complex] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1937), + [anon_sym_signed] = ACTIONS(1937), + [anon_sym_unsigned] = ACTIONS(1937), + [anon_sym_char] = ACTIONS(1937), + [anon_sym_short] = ACTIONS(1937), + [anon_sym_long] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(1937), + [anon_sym_volatile] = ACTIONS(1937), + [anon_sym_ctypedef] = ACTIONS(1937), + [anon_sym_struct] = ACTIONS(1937), + [anon_sym_union] = ACTIONS(1937), + [anon_sym_enum] = ACTIONS(1937), + [anon_sym_cppclass] = ACTIONS(1937), + [anon_sym_fused] = ACTIONS(1937), + [anon_sym_public] = ACTIONS(1937), + [anon_sym_packed] = ACTIONS(1937), + [anon_sym_inline] = ACTIONS(1937), + [anon_sym_readonly] = ACTIONS(1937), + [anon_sym_sizeof] = ACTIONS(1937), + [sym__dedent] = ACTIONS(1939), + [sym_string_start] = ACTIONS(1939), }, [614] = { - [sym_identifier] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1977), - [anon_sym_import] = ACTIONS(1975), - [anon_sym_cimport] = ACTIONS(1975), - [anon_sym_from] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_print] = ACTIONS(1975), - [anon_sym_assert] = ACTIONS(1975), - [anon_sym_return] = ACTIONS(1975), - [anon_sym_del] = ACTIONS(1975), - [anon_sym_raise] = ACTIONS(1975), - [anon_sym_pass] = ACTIONS(1975), - [anon_sym_break] = ACTIONS(1975), - [anon_sym_continue] = ACTIONS(1975), - [anon_sym_if] = ACTIONS(1975), - [anon_sym_match] = ACTIONS(1975), - [anon_sym_async] = ACTIONS(1975), - [anon_sym_for] = ACTIONS(1975), - [anon_sym_while] = ACTIONS(1975), - [anon_sym_try] = ACTIONS(1975), - [anon_sym_with] = ACTIONS(1975), - [anon_sym_def] = ACTIONS(1975), - [anon_sym_global] = ACTIONS(1975), - [anon_sym_nonlocal] = ACTIONS(1975), - [anon_sym_exec] = ACTIONS(1975), - [anon_sym_type] = ACTIONS(1975), - [anon_sym_class] = ACTIONS(1975), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_AT] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_not] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(1977), - [anon_sym_lambda] = ACTIONS(1975), - [anon_sym_yield] = ACTIONS(1975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1977), - [anon_sym_None] = ACTIONS(1975), - [sym_integer] = ACTIONS(1975), - [sym_float] = ACTIONS(1977), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_api] = ACTIONS(1975), - [sym_true] = ACTIONS(1975), - [sym_false] = ACTIONS(1975), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1975), - [anon_sym_include] = ACTIONS(1975), - [anon_sym_DEF] = ACTIONS(1975), - [anon_sym_cdef] = ACTIONS(1975), - [anon_sym_cpdef] = ACTIONS(1975), - [anon_sym_int] = ACTIONS(1975), - [anon_sym_double] = ACTIONS(1975), - [anon_sym_complex] = ACTIONS(1975), - [anon_sym_new] = ACTIONS(1975), - [anon_sym_signed] = ACTIONS(1975), - [anon_sym_unsigned] = ACTIONS(1975), - [anon_sym_char] = ACTIONS(1975), - [anon_sym_short] = ACTIONS(1975), - [anon_sym_long] = ACTIONS(1975), - [anon_sym_const] = ACTIONS(1975), - [anon_sym_volatile] = ACTIONS(1975), - [anon_sym_ctypedef] = ACTIONS(1975), - [anon_sym_struct] = ACTIONS(1975), - [anon_sym_union] = ACTIONS(1975), - [anon_sym_enum] = ACTIONS(1975), - [anon_sym_cppclass] = ACTIONS(1975), - [anon_sym_fused] = ACTIONS(1975), - [anon_sym_public] = ACTIONS(1975), - [anon_sym_packed] = ACTIONS(1975), - [anon_sym_inline] = ACTIONS(1975), - [anon_sym_readonly] = ACTIONS(1975), - [anon_sym_sizeof] = ACTIONS(1975), - [sym__dedent] = ACTIONS(1977), - [sym_string_start] = ACTIONS(1977), + [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_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), }, [615] = { - [sym_identifier] = ACTIONS(1979), - [anon_sym_SEMI] = ACTIONS(1981), - [anon_sym_import] = ACTIONS(1979), - [anon_sym_cimport] = ACTIONS(1979), - [anon_sym_from] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_print] = ACTIONS(1979), - [anon_sym_assert] = ACTIONS(1979), - [anon_sym_return] = ACTIONS(1979), - [anon_sym_del] = ACTIONS(1979), - [anon_sym_raise] = ACTIONS(1979), - [anon_sym_pass] = ACTIONS(1979), - [anon_sym_break] = ACTIONS(1979), - [anon_sym_continue] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1979), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_async] = ACTIONS(1979), - [anon_sym_for] = ACTIONS(1979), - [anon_sym_while] = ACTIONS(1979), - [anon_sym_try] = ACTIONS(1979), - [anon_sym_with] = ACTIONS(1979), - [anon_sym_def] = ACTIONS(1979), - [anon_sym_global] = ACTIONS(1979), - [anon_sym_nonlocal] = ACTIONS(1979), - [anon_sym_exec] = ACTIONS(1979), - [anon_sym_type] = ACTIONS(1979), - [anon_sym_class] = ACTIONS(1979), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_AT] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1981), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_not] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1981), - [anon_sym_lambda] = ACTIONS(1979), - [anon_sym_yield] = ACTIONS(1979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), - [anon_sym_None] = ACTIONS(1979), - [sym_integer] = ACTIONS(1979), - [sym_float] = ACTIONS(1981), - [anon_sym_await] = ACTIONS(1979), - [anon_sym_api] = ACTIONS(1979), - [sym_true] = ACTIONS(1979), - [sym_false] = ACTIONS(1979), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1979), - [anon_sym_include] = ACTIONS(1979), - [anon_sym_DEF] = ACTIONS(1979), - [anon_sym_cdef] = ACTIONS(1979), - [anon_sym_cpdef] = ACTIONS(1979), - [anon_sym_int] = ACTIONS(1979), - [anon_sym_double] = ACTIONS(1979), - [anon_sym_complex] = ACTIONS(1979), - [anon_sym_new] = ACTIONS(1979), - [anon_sym_signed] = ACTIONS(1979), - [anon_sym_unsigned] = ACTIONS(1979), - [anon_sym_char] = ACTIONS(1979), - [anon_sym_short] = ACTIONS(1979), - [anon_sym_long] = ACTIONS(1979), - [anon_sym_const] = ACTIONS(1979), - [anon_sym_volatile] = ACTIONS(1979), - [anon_sym_ctypedef] = ACTIONS(1979), - [anon_sym_struct] = ACTIONS(1979), - [anon_sym_union] = ACTIONS(1979), - [anon_sym_enum] = ACTIONS(1979), - [anon_sym_cppclass] = ACTIONS(1979), - [anon_sym_fused] = ACTIONS(1979), - [anon_sym_public] = ACTIONS(1979), - [anon_sym_packed] = ACTIONS(1979), - [anon_sym_inline] = ACTIONS(1979), - [anon_sym_readonly] = ACTIONS(1979), - [anon_sym_sizeof] = ACTIONS(1979), - [sym__dedent] = ACTIONS(1981), - [sym_string_start] = ACTIONS(1981), + [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), }, [616] = { - [sym_identifier] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1985), - [anon_sym_import] = ACTIONS(1983), - [anon_sym_cimport] = ACTIONS(1983), - [anon_sym_from] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_print] = ACTIONS(1983), - [anon_sym_assert] = ACTIONS(1983), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_del] = ACTIONS(1983), - [anon_sym_raise] = ACTIONS(1983), - [anon_sym_pass] = ACTIONS(1983), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_async] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1983), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_def] = ACTIONS(1983), - [anon_sym_global] = ACTIONS(1983), - [anon_sym_nonlocal] = ACTIONS(1983), - [anon_sym_exec] = ACTIONS(1983), - [anon_sym_type] = ACTIONS(1983), - [anon_sym_class] = ACTIONS(1983), - [anon_sym_LBRACK] = ACTIONS(1985), - [anon_sym_AT] = ACTIONS(1985), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1985), - [anon_sym_not] = ACTIONS(1983), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_TILDE] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_lambda] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1985), - [anon_sym_None] = ACTIONS(1983), - [sym_integer] = ACTIONS(1983), - [sym_float] = ACTIONS(1985), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_api] = ACTIONS(1983), - [sym_true] = ACTIONS(1983), - [sym_false] = ACTIONS(1983), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1983), - [anon_sym_include] = ACTIONS(1983), - [anon_sym_DEF] = ACTIONS(1983), - [anon_sym_cdef] = ACTIONS(1983), - [anon_sym_cpdef] = ACTIONS(1983), - [anon_sym_int] = ACTIONS(1983), - [anon_sym_double] = ACTIONS(1983), - [anon_sym_complex] = ACTIONS(1983), - [anon_sym_new] = ACTIONS(1983), - [anon_sym_signed] = ACTIONS(1983), - [anon_sym_unsigned] = ACTIONS(1983), - [anon_sym_char] = ACTIONS(1983), - [anon_sym_short] = ACTIONS(1983), - [anon_sym_long] = ACTIONS(1983), - [anon_sym_const] = ACTIONS(1983), - [anon_sym_volatile] = ACTIONS(1983), - [anon_sym_ctypedef] = ACTIONS(1983), - [anon_sym_struct] = ACTIONS(1983), - [anon_sym_union] = ACTIONS(1983), - [anon_sym_enum] = ACTIONS(1983), - [anon_sym_cppclass] = ACTIONS(1983), - [anon_sym_fused] = ACTIONS(1983), - [anon_sym_public] = ACTIONS(1983), - [anon_sym_packed] = ACTIONS(1983), - [anon_sym_inline] = ACTIONS(1983), - [anon_sym_readonly] = ACTIONS(1983), - [anon_sym_sizeof] = ACTIONS(1983), - [sym__dedent] = ACTIONS(1985), - [sym_string_start] = ACTIONS(1985), + [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_DASH] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1949), + [anon_sym_AMP] = ACTIONS(1951), + [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), }, [617] = { - [sym_identifier] = ACTIONS(1987), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_import] = ACTIONS(1987), - [anon_sym_cimport] = ACTIONS(1987), - [anon_sym_from] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1989), - [anon_sym_STAR] = ACTIONS(1989), - [anon_sym_print] = ACTIONS(1987), - [anon_sym_assert] = ACTIONS(1987), - [anon_sym_return] = ACTIONS(1987), - [anon_sym_del] = ACTIONS(1987), - [anon_sym_raise] = ACTIONS(1987), - [anon_sym_pass] = ACTIONS(1987), - [anon_sym_break] = ACTIONS(1987), - [anon_sym_continue] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_async] = ACTIONS(1987), - [anon_sym_for] = ACTIONS(1987), - [anon_sym_while] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1987), - [anon_sym_with] = ACTIONS(1987), - [anon_sym_def] = ACTIONS(1987), - [anon_sym_global] = ACTIONS(1987), - [anon_sym_nonlocal] = ACTIONS(1987), - [anon_sym_exec] = ACTIONS(1987), - [anon_sym_type] = ACTIONS(1987), - [anon_sym_class] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_AT] = ACTIONS(1989), - [anon_sym_DASH] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_PLUS] = ACTIONS(1989), - [anon_sym_not] = ACTIONS(1987), - [anon_sym_AMP] = ACTIONS(1989), - [anon_sym_TILDE] = ACTIONS(1989), - [anon_sym_LT] = ACTIONS(1989), - [anon_sym_lambda] = ACTIONS(1987), - [anon_sym_yield] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1987), - [sym_integer] = ACTIONS(1987), - [sym_float] = ACTIONS(1989), - [anon_sym_await] = ACTIONS(1987), - [anon_sym_api] = ACTIONS(1987), - [sym_true] = ACTIONS(1987), - [sym_false] = ACTIONS(1987), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1987), - [anon_sym_include] = ACTIONS(1987), - [anon_sym_DEF] = ACTIONS(1987), - [anon_sym_cdef] = ACTIONS(1987), - [anon_sym_cpdef] = ACTIONS(1987), - [anon_sym_int] = ACTIONS(1987), - [anon_sym_double] = ACTIONS(1987), - [anon_sym_complex] = ACTIONS(1987), - [anon_sym_new] = ACTIONS(1987), - [anon_sym_signed] = ACTIONS(1987), - [anon_sym_unsigned] = ACTIONS(1987), - [anon_sym_char] = ACTIONS(1987), - [anon_sym_short] = ACTIONS(1987), - [anon_sym_long] = ACTIONS(1987), - [anon_sym_const] = ACTIONS(1987), - [anon_sym_volatile] = ACTIONS(1987), - [anon_sym_ctypedef] = ACTIONS(1987), - [anon_sym_struct] = ACTIONS(1987), - [anon_sym_union] = ACTIONS(1987), - [anon_sym_enum] = ACTIONS(1987), - [anon_sym_cppclass] = ACTIONS(1987), - [anon_sym_fused] = ACTIONS(1987), - [anon_sym_public] = ACTIONS(1987), - [anon_sym_packed] = ACTIONS(1987), - [anon_sym_inline] = ACTIONS(1987), - [anon_sym_readonly] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1987), - [sym__dedent] = ACTIONS(1989), - [sym_string_start] = ACTIONS(1989), + [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_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), }, [618] = { - [sym_identifier] = ACTIONS(1991), - [anon_sym_SEMI] = ACTIONS(1993), - [anon_sym_import] = ACTIONS(1991), - [anon_sym_cimport] = ACTIONS(1991), - [anon_sym_from] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1993), - [anon_sym_print] = ACTIONS(1991), - [anon_sym_assert] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_del] = ACTIONS(1991), - [anon_sym_raise] = ACTIONS(1991), - [anon_sym_pass] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_async] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1991), - [anon_sym_with] = ACTIONS(1991), - [anon_sym_def] = ACTIONS(1991), - [anon_sym_global] = ACTIONS(1991), - [anon_sym_nonlocal] = ACTIONS(1991), - [anon_sym_exec] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1991), - [anon_sym_class] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_AT] = ACTIONS(1993), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_LBRACE] = ACTIONS(1993), - [anon_sym_PLUS] = ACTIONS(1993), - [anon_sym_not] = ACTIONS(1991), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1993), - [anon_sym_lambda] = ACTIONS(1991), - [anon_sym_yield] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1993), - [anon_sym_None] = ACTIONS(1991), - [sym_integer] = ACTIONS(1991), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(1991), - [anon_sym_api] = ACTIONS(1991), - [sym_true] = ACTIONS(1991), - [sym_false] = ACTIONS(1991), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1991), - [anon_sym_include] = ACTIONS(1991), - [anon_sym_DEF] = ACTIONS(1991), - [anon_sym_cdef] = ACTIONS(1991), - [anon_sym_cpdef] = ACTIONS(1991), - [anon_sym_int] = ACTIONS(1991), - [anon_sym_double] = ACTIONS(1991), - [anon_sym_complex] = ACTIONS(1991), - [anon_sym_new] = ACTIONS(1991), - [anon_sym_signed] = ACTIONS(1991), - [anon_sym_unsigned] = ACTIONS(1991), - [anon_sym_char] = ACTIONS(1991), - [anon_sym_short] = ACTIONS(1991), - [anon_sym_long] = ACTIONS(1991), - [anon_sym_const] = ACTIONS(1991), - [anon_sym_volatile] = ACTIONS(1991), - [anon_sym_ctypedef] = ACTIONS(1991), - [anon_sym_struct] = ACTIONS(1991), - [anon_sym_union] = ACTIONS(1991), - [anon_sym_enum] = ACTIONS(1991), - [anon_sym_cppclass] = ACTIONS(1991), - [anon_sym_fused] = ACTIONS(1991), - [anon_sym_public] = ACTIONS(1991), - [anon_sym_packed] = ACTIONS(1991), - [anon_sym_inline] = ACTIONS(1991), - [anon_sym_readonly] = ACTIONS(1991), - [anon_sym_sizeof] = ACTIONS(1991), - [sym__dedent] = ACTIONS(1993), - [sym_string_start] = ACTIONS(1993), + [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), }, [619] = { - [sym_identifier] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_import] = ACTIONS(1995), - [anon_sym_cimport] = ACTIONS(1995), - [anon_sym_from] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_print] = ACTIONS(1995), - [anon_sym_assert] = ACTIONS(1995), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_del] = ACTIONS(1995), - [anon_sym_raise] = ACTIONS(1995), - [anon_sym_pass] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_match] = ACTIONS(1995), - [anon_sym_async] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_try] = ACTIONS(1995), - [anon_sym_with] = ACTIONS(1995), - [anon_sym_def] = ACTIONS(1995), - [anon_sym_global] = ACTIONS(1995), - [anon_sym_nonlocal] = ACTIONS(1995), - [anon_sym_exec] = ACTIONS(1995), - [anon_sym_type] = ACTIONS(1995), - [anon_sym_class] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_AT] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_not] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_TILDE] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_lambda] = ACTIONS(1995), - [anon_sym_yield] = ACTIONS(1995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), - [anon_sym_None] = ACTIONS(1995), - [sym_integer] = ACTIONS(1995), - [sym_float] = ACTIONS(1997), - [anon_sym_await] = ACTIONS(1995), - [anon_sym_api] = ACTIONS(1995), - [sym_true] = ACTIONS(1995), - [sym_false] = ACTIONS(1995), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1995), - [anon_sym_include] = ACTIONS(1995), - [anon_sym_DEF] = ACTIONS(1995), - [anon_sym_cdef] = ACTIONS(1995), - [anon_sym_cpdef] = ACTIONS(1995), - [anon_sym_int] = ACTIONS(1995), - [anon_sym_double] = ACTIONS(1995), - [anon_sym_complex] = ACTIONS(1995), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_signed] = ACTIONS(1995), - [anon_sym_unsigned] = ACTIONS(1995), - [anon_sym_char] = ACTIONS(1995), - [anon_sym_short] = ACTIONS(1995), - [anon_sym_long] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_volatile] = ACTIONS(1995), - [anon_sym_ctypedef] = ACTIONS(1995), - [anon_sym_struct] = ACTIONS(1995), - [anon_sym_union] = ACTIONS(1995), - [anon_sym_enum] = ACTIONS(1995), - [anon_sym_cppclass] = ACTIONS(1995), - [anon_sym_fused] = ACTIONS(1995), - [anon_sym_public] = ACTIONS(1995), - [anon_sym_packed] = ACTIONS(1995), - [anon_sym_inline] = ACTIONS(1995), - [anon_sym_readonly] = ACTIONS(1995), - [anon_sym_sizeof] = ACTIONS(1995), - [sym__dedent] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1997), + [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), }, [620] = { - [sym_identifier] = ACTIONS(1999), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_import] = ACTIONS(1999), - [anon_sym_cimport] = ACTIONS(1999), - [anon_sym_from] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_STAR] = ACTIONS(2001), - [anon_sym_print] = ACTIONS(1999), - [anon_sym_assert] = ACTIONS(1999), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_del] = ACTIONS(1999), - [anon_sym_raise] = ACTIONS(1999), - [anon_sym_pass] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_match] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_with] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1999), - [anon_sym_global] = ACTIONS(1999), - [anon_sym_nonlocal] = ACTIONS(1999), - [anon_sym_exec] = ACTIONS(1999), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_class] = ACTIONS(1999), - [anon_sym_LBRACK] = ACTIONS(2001), - [anon_sym_AT] = ACTIONS(2001), - [anon_sym_DASH] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_PLUS] = ACTIONS(2001), - [anon_sym_not] = ACTIONS(1999), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_TILDE] = ACTIONS(2001), - [anon_sym_LT] = ACTIONS(2001), - [anon_sym_lambda] = ACTIONS(1999), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), - [anon_sym_None] = ACTIONS(1999), - [sym_integer] = ACTIONS(1999), - [sym_float] = ACTIONS(2001), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_api] = ACTIONS(1999), - [sym_true] = ACTIONS(1999), - [sym_false] = ACTIONS(1999), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1999), - [anon_sym_include] = ACTIONS(1999), - [anon_sym_DEF] = ACTIONS(1999), - [anon_sym_cdef] = ACTIONS(1999), - [anon_sym_cpdef] = ACTIONS(1999), - [anon_sym_int] = ACTIONS(1999), - [anon_sym_double] = ACTIONS(1999), - [anon_sym_complex] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_signed] = ACTIONS(1999), - [anon_sym_unsigned] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_short] = ACTIONS(1999), - [anon_sym_long] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_volatile] = ACTIONS(1999), - [anon_sym_ctypedef] = ACTIONS(1999), - [anon_sym_struct] = ACTIONS(1999), - [anon_sym_union] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_cppclass] = ACTIONS(1999), - [anon_sym_fused] = ACTIONS(1999), - [anon_sym_public] = ACTIONS(1999), - [anon_sym_packed] = ACTIONS(1999), - [anon_sym_inline] = ACTIONS(1999), - [anon_sym_readonly] = ACTIONS(1999), - [anon_sym_sizeof] = ACTIONS(1999), - [sym__dedent] = ACTIONS(2001), - [sym_string_start] = ACTIONS(2001), + [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_sizeof] = ACTIONS(1965), + [sym__dedent] = ACTIONS(1967), + [sym_string_start] = ACTIONS(1967), }, [621] = { - [sym_identifier] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_import] = ACTIONS(2003), - [anon_sym_cimport] = ACTIONS(2003), - [anon_sym_from] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2005), - [anon_sym_print] = ACTIONS(2003), - [anon_sym_assert] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_del] = ACTIONS(2003), - [anon_sym_raise] = ACTIONS(2003), - [anon_sym_pass] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_match] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [anon_sym_with] = ACTIONS(2003), - [anon_sym_def] = ACTIONS(2003), - [anon_sym_global] = ACTIONS(2003), - [anon_sym_nonlocal] = ACTIONS(2003), - [anon_sym_exec] = ACTIONS(2003), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_class] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_not] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_TILDE] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_lambda] = ACTIONS(2003), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2005), - [anon_sym_None] = ACTIONS(2003), - [sym_integer] = ACTIONS(2003), - [sym_float] = ACTIONS(2005), - [anon_sym_await] = ACTIONS(2003), - [anon_sym_api] = ACTIONS(2003), - [sym_true] = ACTIONS(2003), - [sym_false] = ACTIONS(2003), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2003), - [anon_sym_include] = ACTIONS(2003), - [anon_sym_DEF] = ACTIONS(2003), - [anon_sym_cdef] = ACTIONS(2003), - [anon_sym_cpdef] = ACTIONS(2003), - [anon_sym_int] = ACTIONS(2003), - [anon_sym_double] = ACTIONS(2003), - [anon_sym_complex] = ACTIONS(2003), - [anon_sym_new] = ACTIONS(2003), - [anon_sym_signed] = ACTIONS(2003), - [anon_sym_unsigned] = ACTIONS(2003), - [anon_sym_char] = ACTIONS(2003), - [anon_sym_short] = ACTIONS(2003), - [anon_sym_long] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_volatile] = ACTIONS(2003), - [anon_sym_ctypedef] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2003), - [anon_sym_union] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_cppclass] = ACTIONS(2003), - [anon_sym_fused] = ACTIONS(2003), - [anon_sym_public] = ACTIONS(2003), - [anon_sym_packed] = ACTIONS(2003), - [anon_sym_inline] = ACTIONS(2003), - [anon_sym_readonly] = ACTIONS(2003), - [anon_sym_sizeof] = ACTIONS(2003), - [sym__dedent] = ACTIONS(2005), - [sym_string_start] = ACTIONS(2005), + [sym_identifier] = ACTIONS(1969), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_import] = ACTIONS(1969), + [anon_sym_cimport] = ACTIONS(1969), + [anon_sym_from] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_print] = ACTIONS(1969), + [anon_sym_assert] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_del] = ACTIONS(1969), + [anon_sym_raise] = ACTIONS(1969), + [anon_sym_pass] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_try] = ACTIONS(1969), + [anon_sym_with] = ACTIONS(1969), + [anon_sym_def] = ACTIONS(1969), + [anon_sym_global] = ACTIONS(1969), + [anon_sym_nonlocal] = ACTIONS(1969), + [anon_sym_exec] = ACTIONS(1969), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_class] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_not] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_lambda] = ACTIONS(1969), + [anon_sym_yield] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1971), + [anon_sym_None] = ACTIONS(1969), + [sym_integer] = ACTIONS(1969), + [sym_float] = ACTIONS(1971), + [anon_sym_await] = ACTIONS(1969), + [anon_sym_api] = ACTIONS(1969), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1969), + [anon_sym_include] = ACTIONS(1969), + [anon_sym_DEF] = ACTIONS(1969), + [anon_sym_cdef] = ACTIONS(1969), + [anon_sym_cpdef] = ACTIONS(1969), + [anon_sym_int] = ACTIONS(1969), + [anon_sym_double] = ACTIONS(1969), + [anon_sym_complex] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_signed] = ACTIONS(1969), + [anon_sym_unsigned] = ACTIONS(1969), + [anon_sym_char] = ACTIONS(1969), + [anon_sym_short] = ACTIONS(1969), + [anon_sym_long] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [anon_sym_volatile] = ACTIONS(1969), + [anon_sym_ctypedef] = ACTIONS(1969), + [anon_sym_struct] = ACTIONS(1969), + [anon_sym_union] = ACTIONS(1969), + [anon_sym_enum] = ACTIONS(1969), + [anon_sym_cppclass] = ACTIONS(1969), + [anon_sym_fused] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_packed] = ACTIONS(1969), + [anon_sym_inline] = ACTIONS(1969), + [anon_sym_readonly] = ACTIONS(1969), + [anon_sym_sizeof] = ACTIONS(1969), + [sym__dedent] = ACTIONS(1971), + [sym_string_start] = ACTIONS(1971), }, [622] = { - [sym_list_splat_pattern] = STATE(2270), - [sym_primary_expression] = STATE(2174), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_attribute] = STATE(2266), - [sym_subscript] = STATE(2266), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2013), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_type_conversion] = ACTIONS(931), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2029), - [anon_sym_api] = ACTIONS(2013), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), + [sym_list_splat_pattern] = STATE(2421), + [sym_primary_expression] = STATE(2212), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_attribute] = STATE(2347), + [sym_subscript] = STATE(2347), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(1973), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_print] = ACTIONS(1979), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(813), + [anon_sym_match] = ACTIONS(1979), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(1979), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_type_conversion] = ACTIONS(811), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1995), + [anon_sym_api] = ACTIONS(1979), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), }, [623] = { - [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), + [sym_identifier] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2003), + [anon_sym_import] = ACTIONS(2001), + [anon_sym_cimport] = ACTIONS(2001), + [anon_sym_from] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2003), + [anon_sym_print] = ACTIONS(2001), + [anon_sym_assert] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_del] = ACTIONS(2001), + [anon_sym_raise] = ACTIONS(2001), + [anon_sym_pass] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_async] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_with] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_global] = ACTIONS(2001), + [anon_sym_nonlocal] = ACTIONS(2001), + [anon_sym_exec] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_class] = ACTIONS(2001), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_PLUS] = ACTIONS(2003), + [anon_sym_not] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym_TILDE] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_lambda] = ACTIONS(2001), + [anon_sym_yield] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2003), + [anon_sym_None] = ACTIONS(2001), + [sym_integer] = ACTIONS(2001), + [sym_float] = ACTIONS(2003), + [anon_sym_await] = ACTIONS(2001), + [anon_sym_api] = ACTIONS(2001), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2001), + [anon_sym_include] = ACTIONS(2001), + [anon_sym_DEF] = ACTIONS(2001), + [anon_sym_cdef] = ACTIONS(2001), + [anon_sym_cpdef] = ACTIONS(2001), + [anon_sym_int] = ACTIONS(2001), + [anon_sym_double] = ACTIONS(2001), + [anon_sym_complex] = ACTIONS(2001), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_signed] = ACTIONS(2001), + [anon_sym_unsigned] = ACTIONS(2001), + [anon_sym_char] = ACTIONS(2001), + [anon_sym_short] = ACTIONS(2001), + [anon_sym_long] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_volatile] = ACTIONS(2001), + [anon_sym_ctypedef] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_cppclass] = ACTIONS(2001), + [anon_sym_fused] = ACTIONS(2001), + [anon_sym_public] = ACTIONS(2001), + [anon_sym_packed] = ACTIONS(2001), + [anon_sym_inline] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2001), + [sym__dedent] = ACTIONS(2003), + [sym_string_start] = ACTIONS(2003), }, [624] = { - [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), + [sym_identifier] = ACTIONS(2005), + [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_import] = ACTIONS(2005), + [anon_sym_cimport] = ACTIONS(2005), + [anon_sym_from] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_print] = ACTIONS(2005), + [anon_sym_assert] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_del] = ACTIONS(2005), + [anon_sym_raise] = ACTIONS(2005), + [anon_sym_pass] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_async] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_try] = ACTIONS(2005), + [anon_sym_with] = ACTIONS(2005), + [anon_sym_def] = ACTIONS(2005), + [anon_sym_global] = ACTIONS(2005), + [anon_sym_nonlocal] = ACTIONS(2005), + [anon_sym_exec] = ACTIONS(2005), + [anon_sym_type] = ACTIONS(2005), + [anon_sym_class] = ACTIONS(2005), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_AT] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(2005), + [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_TILDE] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2007), + [anon_sym_lambda] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2007), + [anon_sym_None] = ACTIONS(2005), + [sym_integer] = ACTIONS(2005), + [sym_float] = ACTIONS(2007), + [anon_sym_await] = ACTIONS(2005), + [anon_sym_api] = ACTIONS(2005), + [sym_true] = ACTIONS(2005), + [sym_false] = ACTIONS(2005), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2005), + [anon_sym_include] = ACTIONS(2005), + [anon_sym_DEF] = ACTIONS(2005), + [anon_sym_cdef] = ACTIONS(2005), + [anon_sym_cpdef] = ACTIONS(2005), + [anon_sym_int] = ACTIONS(2005), + [anon_sym_double] = ACTIONS(2005), + [anon_sym_complex] = ACTIONS(2005), + [anon_sym_new] = ACTIONS(2005), + [anon_sym_signed] = ACTIONS(2005), + [anon_sym_unsigned] = ACTIONS(2005), + [anon_sym_char] = ACTIONS(2005), + [anon_sym_short] = ACTIONS(2005), + [anon_sym_long] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_volatile] = ACTIONS(2005), + [anon_sym_ctypedef] = ACTIONS(2005), + [anon_sym_struct] = ACTIONS(2005), + [anon_sym_union] = ACTIONS(2005), + [anon_sym_enum] = ACTIONS(2005), + [anon_sym_cppclass] = ACTIONS(2005), + [anon_sym_fused] = ACTIONS(2005), + [anon_sym_public] = ACTIONS(2005), + [anon_sym_packed] = ACTIONS(2005), + [anon_sym_inline] = ACTIONS(2005), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_sizeof] = ACTIONS(2005), + [sym__dedent] = ACTIONS(2007), + [sym_string_start] = ACTIONS(2007), }, [625] = { - [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), + [sym_identifier] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_import] = ACTIONS(2009), + [anon_sym_cimport] = ACTIONS(2009), + [anon_sym_from] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_print] = ACTIONS(2009), + [anon_sym_assert] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_del] = ACTIONS(2009), + [anon_sym_raise] = ACTIONS(2009), + [anon_sym_pass] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_async] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_try] = ACTIONS(2009), + [anon_sym_with] = ACTIONS(2009), + [anon_sym_def] = ACTIONS(2009), + [anon_sym_global] = ACTIONS(2009), + [anon_sym_nonlocal] = ACTIONS(2009), + [anon_sym_exec] = ACTIONS(2009), + [anon_sym_type] = ACTIONS(2009), + [anon_sym_class] = ACTIONS(2009), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2011), + [anon_sym_not] = ACTIONS(2009), + [anon_sym_AMP] = ACTIONS(2011), + [anon_sym_TILDE] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_lambda] = ACTIONS(2009), + [anon_sym_yield] = ACTIONS(2009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2011), + [anon_sym_None] = ACTIONS(2009), + [sym_integer] = ACTIONS(2009), + [sym_float] = ACTIONS(2011), + [anon_sym_await] = ACTIONS(2009), + [anon_sym_api] = ACTIONS(2009), + [sym_true] = ACTIONS(2009), + [sym_false] = ACTIONS(2009), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2009), + [anon_sym_include] = ACTIONS(2009), + [anon_sym_DEF] = ACTIONS(2009), + [anon_sym_cdef] = ACTIONS(2009), + [anon_sym_cpdef] = ACTIONS(2009), + [anon_sym_int] = ACTIONS(2009), + [anon_sym_double] = ACTIONS(2009), + [anon_sym_complex] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_signed] = ACTIONS(2009), + [anon_sym_unsigned] = ACTIONS(2009), + [anon_sym_char] = ACTIONS(2009), + [anon_sym_short] = ACTIONS(2009), + [anon_sym_long] = ACTIONS(2009), + [anon_sym_const] = ACTIONS(2009), + [anon_sym_volatile] = ACTIONS(2009), + [anon_sym_ctypedef] = ACTIONS(2009), + [anon_sym_struct] = ACTIONS(2009), + [anon_sym_union] = ACTIONS(2009), + [anon_sym_enum] = ACTIONS(2009), + [anon_sym_cppclass] = ACTIONS(2009), + [anon_sym_fused] = ACTIONS(2009), + [anon_sym_public] = ACTIONS(2009), + [anon_sym_packed] = ACTIONS(2009), + [anon_sym_inline] = ACTIONS(2009), + [anon_sym_readonly] = ACTIONS(2009), + [anon_sym_sizeof] = ACTIONS(2009), + [sym__dedent] = ACTIONS(2011), + [sym_string_start] = ACTIONS(2011), }, [626] = { - [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), + [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_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), }, [627] = { - [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), + [sym_identifier] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_import] = ACTIONS(2013), + [anon_sym_cimport] = ACTIONS(2013), + [anon_sym_from] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_print] = ACTIONS(2013), + [anon_sym_assert] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_del] = ACTIONS(2013), + [anon_sym_raise] = ACTIONS(2013), + [anon_sym_pass] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_async] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(2013), + [anon_sym_with] = ACTIONS(2013), + [anon_sym_def] = ACTIONS(2013), + [anon_sym_global] = ACTIONS(2013), + [anon_sym_nonlocal] = ACTIONS(2013), + [anon_sym_exec] = ACTIONS(2013), + [anon_sym_type] = ACTIONS(2013), + [anon_sym_class] = ACTIONS(2013), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_AT] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_not] = ACTIONS(2013), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_TILDE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2015), + [anon_sym_lambda] = ACTIONS(2013), + [anon_sym_yield] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2015), + [anon_sym_None] = ACTIONS(2013), + [sym_integer] = ACTIONS(2013), + [sym_float] = ACTIONS(2015), + [anon_sym_await] = ACTIONS(2013), + [anon_sym_api] = ACTIONS(2013), + [sym_true] = ACTIONS(2013), + [sym_false] = ACTIONS(2013), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2013), + [anon_sym_include] = ACTIONS(2013), + [anon_sym_DEF] = ACTIONS(2013), + [anon_sym_cdef] = ACTIONS(2013), + [anon_sym_cpdef] = ACTIONS(2013), + [anon_sym_int] = ACTIONS(2013), + [anon_sym_double] = ACTIONS(2013), + [anon_sym_complex] = ACTIONS(2013), + [anon_sym_new] = ACTIONS(2013), + [anon_sym_signed] = ACTIONS(2013), + [anon_sym_unsigned] = ACTIONS(2013), + [anon_sym_char] = ACTIONS(2013), + [anon_sym_short] = ACTIONS(2013), + [anon_sym_long] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [anon_sym_volatile] = ACTIONS(2013), + [anon_sym_ctypedef] = ACTIONS(2013), + [anon_sym_struct] = ACTIONS(2013), + [anon_sym_union] = ACTIONS(2013), + [anon_sym_enum] = ACTIONS(2013), + [anon_sym_cppclass] = ACTIONS(2013), + [anon_sym_fused] = ACTIONS(2013), + [anon_sym_public] = ACTIONS(2013), + [anon_sym_packed] = ACTIONS(2013), + [anon_sym_inline] = ACTIONS(2013), + [anon_sym_readonly] = ACTIONS(2013), + [anon_sym_sizeof] = ACTIONS(2013), + [sym__dedent] = ACTIONS(2015), + [sym_string_start] = ACTIONS(2015), }, [628] = { - [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), + [sym_identifier] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_import] = ACTIONS(2017), + [anon_sym_cimport] = ACTIONS(2017), + [anon_sym_from] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_print] = ACTIONS(2017), + [anon_sym_assert] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_del] = ACTIONS(2017), + [anon_sym_raise] = ACTIONS(2017), + [anon_sym_pass] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_async] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_with] = ACTIONS(2017), + [anon_sym_def] = ACTIONS(2017), + [anon_sym_global] = ACTIONS(2017), + [anon_sym_nonlocal] = ACTIONS(2017), + [anon_sym_exec] = ACTIONS(2017), + [anon_sym_type] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_AT] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_not] = ACTIONS(2017), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_TILDE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_lambda] = ACTIONS(2017), + [anon_sym_yield] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2019), + [anon_sym_None] = ACTIONS(2017), + [sym_integer] = ACTIONS(2017), + [sym_float] = ACTIONS(2019), + [anon_sym_await] = ACTIONS(2017), + [anon_sym_api] = ACTIONS(2017), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2017), + [anon_sym_include] = ACTIONS(2017), + [anon_sym_DEF] = ACTIONS(2017), + [anon_sym_cdef] = ACTIONS(2017), + [anon_sym_cpdef] = ACTIONS(2017), + [anon_sym_int] = ACTIONS(2017), + [anon_sym_double] = ACTIONS(2017), + [anon_sym_complex] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_signed] = ACTIONS(2017), + [anon_sym_unsigned] = ACTIONS(2017), + [anon_sym_char] = ACTIONS(2017), + [anon_sym_short] = ACTIONS(2017), + [anon_sym_long] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_volatile] = ACTIONS(2017), + [anon_sym_ctypedef] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_cppclass] = ACTIONS(2017), + [anon_sym_fused] = ACTIONS(2017), + [anon_sym_public] = ACTIONS(2017), + [anon_sym_packed] = ACTIONS(2017), + [anon_sym_inline] = ACTIONS(2017), + [anon_sym_readonly] = ACTIONS(2017), + [anon_sym_sizeof] = ACTIONS(2017), + [sym__dedent] = ACTIONS(2019), + [sym_string_start] = ACTIONS(2019), }, [629] = { - [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), + [sym_identifier] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_import] = ACTIONS(2021), + [anon_sym_cimport] = ACTIONS(2021), + [anon_sym_from] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_print] = ACTIONS(2021), + [anon_sym_assert] = ACTIONS(2021), + [anon_sym_return] = ACTIONS(2021), + [anon_sym_del] = ACTIONS(2021), + [anon_sym_raise] = ACTIONS(2021), + [anon_sym_pass] = ACTIONS(2021), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_async] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_try] = ACTIONS(2021), + [anon_sym_with] = ACTIONS(2021), + [anon_sym_def] = ACTIONS(2021), + [anon_sym_global] = ACTIONS(2021), + [anon_sym_nonlocal] = ACTIONS(2021), + [anon_sym_exec] = ACTIONS(2021), + [anon_sym_type] = ACTIONS(2021), + [anon_sym_class] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2023), + [anon_sym_not] = ACTIONS(2021), + [anon_sym_AMP] = ACTIONS(2023), + [anon_sym_TILDE] = ACTIONS(2023), + [anon_sym_LT] = ACTIONS(2023), + [anon_sym_lambda] = ACTIONS(2021), + [anon_sym_yield] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), + [anon_sym_None] = ACTIONS(2021), + [sym_integer] = ACTIONS(2021), + [sym_float] = ACTIONS(2023), + [anon_sym_await] = ACTIONS(2021), + [anon_sym_api] = ACTIONS(2021), + [sym_true] = ACTIONS(2021), + [sym_false] = ACTIONS(2021), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2021), + [anon_sym_include] = ACTIONS(2021), + [anon_sym_DEF] = ACTIONS(2021), + [anon_sym_cdef] = ACTIONS(2021), + [anon_sym_cpdef] = ACTIONS(2021), + [anon_sym_int] = ACTIONS(2021), + [anon_sym_double] = ACTIONS(2021), + [anon_sym_complex] = ACTIONS(2021), + [anon_sym_new] = ACTIONS(2021), + [anon_sym_signed] = ACTIONS(2021), + [anon_sym_unsigned] = ACTIONS(2021), + [anon_sym_char] = ACTIONS(2021), + [anon_sym_short] = ACTIONS(2021), + [anon_sym_long] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(2021), + [anon_sym_volatile] = ACTIONS(2021), + [anon_sym_ctypedef] = ACTIONS(2021), + [anon_sym_struct] = ACTIONS(2021), + [anon_sym_union] = ACTIONS(2021), + [anon_sym_enum] = ACTIONS(2021), + [anon_sym_cppclass] = ACTIONS(2021), + [anon_sym_fused] = ACTIONS(2021), + [anon_sym_public] = ACTIONS(2021), + [anon_sym_packed] = ACTIONS(2021), + [anon_sym_inline] = ACTIONS(2021), + [anon_sym_readonly] = ACTIONS(2021), + [anon_sym_sizeof] = ACTIONS(2021), + [sym__dedent] = ACTIONS(2023), + [sym_string_start] = ACTIONS(2023), }, [630] = { - [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), + [sym_identifier] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_import] = ACTIONS(2025), + [anon_sym_cimport] = ACTIONS(2025), + [anon_sym_from] = ACTIONS(2025), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_print] = ACTIONS(2025), + [anon_sym_assert] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_del] = ACTIONS(2025), + [anon_sym_raise] = ACTIONS(2025), + [anon_sym_pass] = ACTIONS(2025), + [anon_sym_break] = ACTIONS(2025), + [anon_sym_continue] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_match] = ACTIONS(2025), + [anon_sym_async] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_try] = ACTIONS(2025), + [anon_sym_with] = ACTIONS(2025), + [anon_sym_def] = ACTIONS(2025), + [anon_sym_global] = ACTIONS(2025), + [anon_sym_nonlocal] = ACTIONS(2025), + [anon_sym_exec] = ACTIONS(2025), + [anon_sym_type] = ACTIONS(2025), + [anon_sym_class] = ACTIONS(2025), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_AT] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(2027), + [anon_sym_not] = ACTIONS(2025), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_lambda] = ACTIONS(2025), + [anon_sym_yield] = ACTIONS(2025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2027), + [anon_sym_None] = ACTIONS(2025), + [sym_integer] = ACTIONS(2025), + [sym_float] = ACTIONS(2027), + [anon_sym_await] = ACTIONS(2025), + [anon_sym_api] = ACTIONS(2025), + [sym_true] = ACTIONS(2025), + [sym_false] = ACTIONS(2025), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2025), + [anon_sym_include] = ACTIONS(2025), + [anon_sym_DEF] = ACTIONS(2025), + [anon_sym_cdef] = ACTIONS(2025), + [anon_sym_cpdef] = ACTIONS(2025), + [anon_sym_int] = ACTIONS(2025), + [anon_sym_double] = ACTIONS(2025), + [anon_sym_complex] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2025), + [anon_sym_signed] = ACTIONS(2025), + [anon_sym_unsigned] = ACTIONS(2025), + [anon_sym_char] = ACTIONS(2025), + [anon_sym_short] = ACTIONS(2025), + [anon_sym_long] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(2025), + [anon_sym_volatile] = ACTIONS(2025), + [anon_sym_ctypedef] = ACTIONS(2025), + [anon_sym_struct] = ACTIONS(2025), + [anon_sym_union] = ACTIONS(2025), + [anon_sym_enum] = ACTIONS(2025), + [anon_sym_cppclass] = ACTIONS(2025), + [anon_sym_fused] = ACTIONS(2025), + [anon_sym_public] = ACTIONS(2025), + [anon_sym_packed] = ACTIONS(2025), + [anon_sym_inline] = ACTIONS(2025), + [anon_sym_readonly] = ACTIONS(2025), + [anon_sym_sizeof] = ACTIONS(2025), + [sym__dedent] = ACTIONS(2027), + [sym_string_start] = ACTIONS(2027), }, [631] = { - [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), + [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(2031), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_print] = ACTIONS(2029), + [anon_sym_assert] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_del] = ACTIONS(2029), + [anon_sym_raise] = ACTIONS(2029), + [anon_sym_pass] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_async] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_try] = ACTIONS(2029), + [anon_sym_with] = ACTIONS(2029), + [anon_sym_def] = ACTIONS(2029), + [anon_sym_global] = ACTIONS(2029), + [anon_sym_nonlocal] = ACTIONS(2029), + [anon_sym_exec] = ACTIONS(2029), + [anon_sym_type] = ACTIONS(2029), + [anon_sym_class] = ACTIONS(2029), + [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(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(2031), + [anon_sym_None] = ACTIONS(2029), + [sym_integer] = ACTIONS(2029), + [sym_float] = ACTIONS(2031), + [anon_sym_await] = ACTIONS(2029), + [anon_sym_api] = ACTIONS(2029), + [sym_true] = ACTIONS(2029), + [sym_false] = ACTIONS(2029), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2029), + [anon_sym_include] = ACTIONS(2029), + [anon_sym_DEF] = ACTIONS(2029), + [anon_sym_cdef] = ACTIONS(2029), + [anon_sym_cpdef] = ACTIONS(2029), + [anon_sym_int] = ACTIONS(2029), + [anon_sym_double] = ACTIONS(2029), + [anon_sym_complex] = ACTIONS(2029), + [anon_sym_new] = ACTIONS(2029), + [anon_sym_signed] = ACTIONS(2029), + [anon_sym_unsigned] = ACTIONS(2029), + [anon_sym_char] = ACTIONS(2029), + [anon_sym_short] = ACTIONS(2029), + [anon_sym_long] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [anon_sym_volatile] = ACTIONS(2029), + [anon_sym_ctypedef] = ACTIONS(2029), + [anon_sym_struct] = ACTIONS(2029), + [anon_sym_union] = ACTIONS(2029), + [anon_sym_enum] = ACTIONS(2029), + [anon_sym_cppclass] = ACTIONS(2029), + [anon_sym_fused] = ACTIONS(2029), + [anon_sym_public] = ACTIONS(2029), + [anon_sym_packed] = ACTIONS(2029), + [anon_sym_inline] = ACTIONS(2029), + [anon_sym_readonly] = ACTIONS(2029), + [anon_sym_sizeof] = ACTIONS(2029), + [sym__dedent] = ACTIONS(2031), + [sym_string_start] = ACTIONS(2031), }, [632] = { - [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), + [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), }, [633] = { - [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), + [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), }, [634] = { - [sym_identifier] = ACTIONS(2079), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_import] = ACTIONS(2079), - [anon_sym_cimport] = ACTIONS(2079), - [anon_sym_from] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2081), - [anon_sym_print] = ACTIONS(2079), - [anon_sym_assert] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_del] = ACTIONS(2079), - [anon_sym_raise] = ACTIONS(2079), - [anon_sym_pass] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_with] = ACTIONS(2079), - [anon_sym_def] = ACTIONS(2079), - [anon_sym_global] = ACTIONS(2079), - [anon_sym_nonlocal] = ACTIONS(2079), - [anon_sym_exec] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_class] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_not] = ACTIONS(2079), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_lambda] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), - [anon_sym_None] = ACTIONS(2079), - [sym_integer] = ACTIONS(2079), - [sym_float] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2079), - [anon_sym_api] = ACTIONS(2079), - [sym_true] = ACTIONS(2079), - [sym_false] = ACTIONS(2079), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2079), - [anon_sym_include] = ACTIONS(2079), - [anon_sym_DEF] = ACTIONS(2079), - [anon_sym_cdef] = ACTIONS(2079), - [anon_sym_cpdef] = ACTIONS(2079), - [anon_sym_int] = ACTIONS(2079), - [anon_sym_double] = ACTIONS(2079), - [anon_sym_complex] = ACTIONS(2079), - [anon_sym_new] = ACTIONS(2079), - [anon_sym_signed] = ACTIONS(2079), - [anon_sym_unsigned] = ACTIONS(2079), - [anon_sym_char] = ACTIONS(2079), - [anon_sym_short] = ACTIONS(2079), - [anon_sym_long] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_volatile] = ACTIONS(2079), - [anon_sym_ctypedef] = ACTIONS(2079), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_union] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_cppclass] = ACTIONS(2079), - [anon_sym_fused] = ACTIONS(2079), - [anon_sym_public] = ACTIONS(2079), - [anon_sym_packed] = ACTIONS(2079), - [anon_sym_inline] = ACTIONS(2079), - [anon_sym_readonly] = ACTIONS(2079), - [anon_sym_sizeof] = ACTIONS(2079), - [sym__dedent] = ACTIONS(2081), - [sym_string_start] = ACTIONS(2081), + [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), }, [635] = { - [sym_identifier] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2083), - [anon_sym_cimport] = ACTIONS(2083), - [anon_sym_from] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_print] = ACTIONS(2083), - [anon_sym_assert] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_del] = ACTIONS(2083), - [anon_sym_raise] = ACTIONS(2083), - [anon_sym_pass] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_match] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [anon_sym_with] = ACTIONS(2083), - [anon_sym_def] = ACTIONS(2083), - [anon_sym_global] = ACTIONS(2083), - [anon_sym_nonlocal] = ACTIONS(2083), - [anon_sym_exec] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_class] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_not] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_lambda] = ACTIONS(2083), - [anon_sym_yield] = ACTIONS(2083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2085), - [anon_sym_None] = ACTIONS(2083), - [sym_integer] = ACTIONS(2083), - [sym_float] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2083), - [anon_sym_api] = ACTIONS(2083), - [sym_true] = ACTIONS(2083), - [sym_false] = ACTIONS(2083), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2083), - [anon_sym_include] = ACTIONS(2083), - [anon_sym_DEF] = ACTIONS(2083), - [anon_sym_cdef] = ACTIONS(2083), - [anon_sym_cpdef] = ACTIONS(2083), - [anon_sym_int] = ACTIONS(2083), - [anon_sym_double] = ACTIONS(2083), - [anon_sym_complex] = ACTIONS(2083), - [anon_sym_new] = ACTIONS(2083), - [anon_sym_signed] = ACTIONS(2083), - [anon_sym_unsigned] = ACTIONS(2083), - [anon_sym_char] = ACTIONS(2083), - [anon_sym_short] = ACTIONS(2083), - [anon_sym_long] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_volatile] = ACTIONS(2083), - [anon_sym_ctypedef] = ACTIONS(2083), - [anon_sym_struct] = ACTIONS(2083), - [anon_sym_union] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [anon_sym_cppclass] = ACTIONS(2083), - [anon_sym_fused] = ACTIONS(2083), - [anon_sym_public] = ACTIONS(2083), - [anon_sym_packed] = ACTIONS(2083), - [anon_sym_inline] = ACTIONS(2083), - [anon_sym_readonly] = ACTIONS(2083), - [anon_sym_sizeof] = ACTIONS(2083), - [sym__dedent] = ACTIONS(2085), - [sym_string_start] = ACTIONS(2085), + [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), }, [636] = { - [sym_identifier] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_import] = ACTIONS(2087), - [anon_sym_cimport] = ACTIONS(2087), - [anon_sym_from] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2089), - [anon_sym_print] = ACTIONS(2087), - [anon_sym_assert] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_del] = ACTIONS(2087), - [anon_sym_raise] = ACTIONS(2087), - [anon_sym_pass] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_async] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_try] = ACTIONS(2087), - [anon_sym_with] = ACTIONS(2087), - [anon_sym_def] = ACTIONS(2087), - [anon_sym_global] = ACTIONS(2087), - [anon_sym_nonlocal] = ACTIONS(2087), - [anon_sym_exec] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2087), - [anon_sym_class] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_AT] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2089), - [anon_sym_not] = ACTIONS(2087), - [anon_sym_AMP] = ACTIONS(2089), - [anon_sym_TILDE] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_lambda] = ACTIONS(2087), - [anon_sym_yield] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2089), - [anon_sym_None] = ACTIONS(2087), - [sym_integer] = ACTIONS(2087), - [sym_float] = ACTIONS(2089), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_api] = ACTIONS(2087), - [sym_true] = ACTIONS(2087), - [sym_false] = ACTIONS(2087), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2087), - [anon_sym_include] = ACTIONS(2087), - [anon_sym_DEF] = ACTIONS(2087), - [anon_sym_cdef] = ACTIONS(2087), - [anon_sym_cpdef] = ACTIONS(2087), - [anon_sym_int] = ACTIONS(2087), - [anon_sym_double] = ACTIONS(2087), - [anon_sym_complex] = ACTIONS(2087), - [anon_sym_new] = ACTIONS(2087), - [anon_sym_signed] = ACTIONS(2087), - [anon_sym_unsigned] = ACTIONS(2087), - [anon_sym_char] = ACTIONS(2087), - [anon_sym_short] = ACTIONS(2087), - [anon_sym_long] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_volatile] = ACTIONS(2087), - [anon_sym_ctypedef] = ACTIONS(2087), - [anon_sym_struct] = ACTIONS(2087), - [anon_sym_union] = ACTIONS(2087), - [anon_sym_enum] = ACTIONS(2087), - [anon_sym_cppclass] = ACTIONS(2087), - [anon_sym_fused] = ACTIONS(2087), - [anon_sym_public] = ACTIONS(2087), - [anon_sym_packed] = ACTIONS(2087), - [anon_sym_inline] = ACTIONS(2087), - [anon_sym_readonly] = ACTIONS(2087), - [anon_sym_sizeof] = ACTIONS(2087), - [sym__dedent] = ACTIONS(2089), - [sym_string_start] = ACTIONS(2089), + [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), }, [637] = { - [sym_identifier] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2091), - [anon_sym_cimport] = ACTIONS(2091), - [anon_sym_from] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_print] = ACTIONS(2091), - [anon_sym_assert] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_del] = ACTIONS(2091), - [anon_sym_raise] = ACTIONS(2091), - [anon_sym_pass] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [anon_sym_try] = ACTIONS(2091), - [anon_sym_with] = ACTIONS(2091), - [anon_sym_def] = ACTIONS(2091), - [anon_sym_global] = ACTIONS(2091), - [anon_sym_nonlocal] = ACTIONS(2091), - [anon_sym_exec] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_class] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_not] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_lambda] = ACTIONS(2091), - [anon_sym_yield] = ACTIONS(2091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2093), - [anon_sym_None] = ACTIONS(2091), - [sym_integer] = ACTIONS(2091), - [sym_float] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2091), - [anon_sym_api] = ACTIONS(2091), - [sym_true] = ACTIONS(2091), - [sym_false] = ACTIONS(2091), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2091), - [anon_sym_include] = ACTIONS(2091), - [anon_sym_DEF] = ACTIONS(2091), - [anon_sym_cdef] = ACTIONS(2091), - [anon_sym_cpdef] = ACTIONS(2091), - [anon_sym_int] = ACTIONS(2091), - [anon_sym_double] = ACTIONS(2091), - [anon_sym_complex] = ACTIONS(2091), - [anon_sym_new] = ACTIONS(2091), - [anon_sym_signed] = ACTIONS(2091), - [anon_sym_unsigned] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [anon_sym_short] = ACTIONS(2091), - [anon_sym_long] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_volatile] = ACTIONS(2091), - [anon_sym_ctypedef] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_cppclass] = ACTIONS(2091), - [anon_sym_fused] = ACTIONS(2091), - [anon_sym_public] = ACTIONS(2091), - [anon_sym_packed] = ACTIONS(2091), - [anon_sym_inline] = ACTIONS(2091), - [anon_sym_readonly] = ACTIONS(2091), - [anon_sym_sizeof] = ACTIONS(2091), - [sym__dedent] = ACTIONS(2093), - [sym_string_start] = ACTIONS(2093), + [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), }, [638] = { - [sym_identifier] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_import] = ACTIONS(2095), - [anon_sym_cimport] = ACTIONS(2095), - [anon_sym_from] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_print] = ACTIONS(2095), - [anon_sym_assert] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_del] = ACTIONS(2095), - [anon_sym_raise] = ACTIONS(2095), - [anon_sym_pass] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_async] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_try] = ACTIONS(2095), - [anon_sym_with] = ACTIONS(2095), - [anon_sym_def] = ACTIONS(2095), - [anon_sym_global] = ACTIONS(2095), - [anon_sym_nonlocal] = ACTIONS(2095), - [anon_sym_exec] = ACTIONS(2095), - [anon_sym_type] = ACTIONS(2095), - [anon_sym_class] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_AT] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_not] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_TILDE] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_lambda] = ACTIONS(2095), - [anon_sym_yield] = ACTIONS(2095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2097), - [anon_sym_None] = ACTIONS(2095), - [sym_integer] = ACTIONS(2095), - [sym_float] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2095), - [anon_sym_api] = ACTIONS(2095), - [sym_true] = ACTIONS(2095), - [sym_false] = ACTIONS(2095), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2095), - [anon_sym_include] = ACTIONS(2095), - [anon_sym_DEF] = ACTIONS(2095), - [anon_sym_cdef] = ACTIONS(2095), - [anon_sym_cpdef] = ACTIONS(2095), - [anon_sym_int] = ACTIONS(2095), - [anon_sym_double] = ACTIONS(2095), - [anon_sym_complex] = ACTIONS(2095), - [anon_sym_new] = ACTIONS(2095), - [anon_sym_signed] = ACTIONS(2095), - [anon_sym_unsigned] = ACTIONS(2095), - [anon_sym_char] = ACTIONS(2095), - [anon_sym_short] = ACTIONS(2095), - [anon_sym_long] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_volatile] = ACTIONS(2095), - [anon_sym_ctypedef] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2095), - [anon_sym_union] = ACTIONS(2095), - [anon_sym_enum] = ACTIONS(2095), - [anon_sym_cppclass] = ACTIONS(2095), - [anon_sym_fused] = ACTIONS(2095), - [anon_sym_public] = ACTIONS(2095), - [anon_sym_packed] = ACTIONS(2095), - [anon_sym_inline] = ACTIONS(2095), - [anon_sym_readonly] = ACTIONS(2095), - [anon_sym_sizeof] = ACTIONS(2095), - [sym__dedent] = ACTIONS(2097), - [sym_string_start] = ACTIONS(2097), + [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), }, [639] = { - [sym_identifier] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_import] = ACTIONS(2099), - [anon_sym_cimport] = ACTIONS(2099), - [anon_sym_from] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2101), - [anon_sym_print] = ACTIONS(2099), - [anon_sym_assert] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2099), - [anon_sym_del] = ACTIONS(2099), - [anon_sym_raise] = ACTIONS(2099), - [anon_sym_pass] = ACTIONS(2099), - [anon_sym_break] = ACTIONS(2099), - [anon_sym_continue] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(2099), - [anon_sym_match] = ACTIONS(2099), - [anon_sym_async] = ACTIONS(2099), - [anon_sym_for] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_try] = ACTIONS(2099), - [anon_sym_with] = ACTIONS(2099), - [anon_sym_def] = ACTIONS(2099), - [anon_sym_global] = ACTIONS(2099), - [anon_sym_nonlocal] = ACTIONS(2099), - [anon_sym_exec] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_class] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_AT] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_PLUS] = ACTIONS(2101), - [anon_sym_not] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_lambda] = ACTIONS(2099), - [anon_sym_yield] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2101), - [anon_sym_None] = ACTIONS(2099), - [sym_integer] = ACTIONS(2099), - [sym_float] = ACTIONS(2101), - [anon_sym_await] = ACTIONS(2099), - [anon_sym_api] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2099), - [anon_sym_include] = ACTIONS(2099), - [anon_sym_DEF] = ACTIONS(2099), - [anon_sym_cdef] = ACTIONS(2099), - [anon_sym_cpdef] = ACTIONS(2099), - [anon_sym_int] = ACTIONS(2099), - [anon_sym_double] = ACTIONS(2099), - [anon_sym_complex] = ACTIONS(2099), - [anon_sym_new] = ACTIONS(2099), - [anon_sym_signed] = ACTIONS(2099), - [anon_sym_unsigned] = ACTIONS(2099), - [anon_sym_char] = ACTIONS(2099), - [anon_sym_short] = ACTIONS(2099), - [anon_sym_long] = ACTIONS(2099), - [anon_sym_const] = ACTIONS(2099), - [anon_sym_volatile] = ACTIONS(2099), - [anon_sym_ctypedef] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2099), - [anon_sym_union] = ACTIONS(2099), - [anon_sym_enum] = ACTIONS(2099), - [anon_sym_cppclass] = ACTIONS(2099), - [anon_sym_fused] = ACTIONS(2099), - [anon_sym_public] = ACTIONS(2099), - [anon_sym_packed] = ACTIONS(2099), - [anon_sym_inline] = ACTIONS(2099), - [anon_sym_readonly] = ACTIONS(2099), - [anon_sym_sizeof] = ACTIONS(2099), - [sym__dedent] = ACTIONS(2101), - [sym_string_start] = ACTIONS(2101), + [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), }, [640] = { - [sym_identifier] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2103), - [anon_sym_cimport] = ACTIONS(2103), - [anon_sym_from] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_print] = ACTIONS(2103), - [anon_sym_assert] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_del] = ACTIONS(2103), - [anon_sym_raise] = ACTIONS(2103), - [anon_sym_pass] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_match] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [anon_sym_with] = ACTIONS(2103), - [anon_sym_def] = ACTIONS(2103), - [anon_sym_global] = ACTIONS(2103), - [anon_sym_nonlocal] = ACTIONS(2103), - [anon_sym_exec] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_class] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_not] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_lambda] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2105), - [anon_sym_None] = ACTIONS(2103), - [sym_integer] = ACTIONS(2103), - [sym_float] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_api] = ACTIONS(2103), - [sym_true] = ACTIONS(2103), - [sym_false] = ACTIONS(2103), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2103), - [anon_sym_include] = ACTIONS(2103), - [anon_sym_DEF] = ACTIONS(2103), - [anon_sym_cdef] = ACTIONS(2103), - [anon_sym_cpdef] = ACTIONS(2103), - [anon_sym_int] = ACTIONS(2103), - [anon_sym_double] = ACTIONS(2103), - [anon_sym_complex] = ACTIONS(2103), - [anon_sym_new] = ACTIONS(2103), - [anon_sym_signed] = ACTIONS(2103), - [anon_sym_unsigned] = ACTIONS(2103), - [anon_sym_char] = ACTIONS(2103), - [anon_sym_short] = ACTIONS(2103), - [anon_sym_long] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_volatile] = ACTIONS(2103), - [anon_sym_ctypedef] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(2103), - [anon_sym_union] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [anon_sym_cppclass] = ACTIONS(2103), - [anon_sym_fused] = ACTIONS(2103), - [anon_sym_public] = ACTIONS(2103), - [anon_sym_packed] = ACTIONS(2103), - [anon_sym_inline] = ACTIONS(2103), - [anon_sym_readonly] = ACTIONS(2103), - [anon_sym_sizeof] = ACTIONS(2103), - [sym__dedent] = ACTIONS(2105), - [sym_string_start] = ACTIONS(2105), + [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), }, [641] = { - [sym_identifier] = ACTIONS(2107), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2107), - [anon_sym_cimport] = ACTIONS(2107), - [anon_sym_from] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_print] = ACTIONS(2107), - [anon_sym_assert] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2107), - [anon_sym_del] = ACTIONS(2107), - [anon_sym_raise] = ACTIONS(2107), - [anon_sym_pass] = ACTIONS(2107), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2107), - [anon_sym_if] = ACTIONS(2107), - [anon_sym_match] = ACTIONS(2107), - [anon_sym_async] = ACTIONS(2107), - [anon_sym_for] = ACTIONS(2107), - [anon_sym_while] = ACTIONS(2107), - [anon_sym_try] = ACTIONS(2107), - [anon_sym_with] = ACTIONS(2107), - [anon_sym_def] = ACTIONS(2107), - [anon_sym_global] = ACTIONS(2107), - [anon_sym_nonlocal] = ACTIONS(2107), - [anon_sym_exec] = ACTIONS(2107), - [anon_sym_type] = ACTIONS(2107), - [anon_sym_class] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_not] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_lambda] = ACTIONS(2107), - [anon_sym_yield] = ACTIONS(2107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2109), - [anon_sym_None] = ACTIONS(2107), - [sym_integer] = ACTIONS(2107), - [sym_float] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_api] = ACTIONS(2107), - [sym_true] = ACTIONS(2107), - [sym_false] = ACTIONS(2107), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2107), - [anon_sym_include] = ACTIONS(2107), - [anon_sym_DEF] = ACTIONS(2107), - [anon_sym_cdef] = ACTIONS(2107), - [anon_sym_cpdef] = ACTIONS(2107), - [anon_sym_int] = ACTIONS(2107), - [anon_sym_double] = ACTIONS(2107), - [anon_sym_complex] = ACTIONS(2107), - [anon_sym_new] = ACTIONS(2107), - [anon_sym_signed] = ACTIONS(2107), - [anon_sym_unsigned] = ACTIONS(2107), - [anon_sym_char] = ACTIONS(2107), - [anon_sym_short] = ACTIONS(2107), - [anon_sym_long] = ACTIONS(2107), - [anon_sym_const] = ACTIONS(2107), - [anon_sym_volatile] = ACTIONS(2107), - [anon_sym_ctypedef] = ACTIONS(2107), - [anon_sym_struct] = ACTIONS(2107), - [anon_sym_union] = ACTIONS(2107), - [anon_sym_enum] = ACTIONS(2107), - [anon_sym_cppclass] = ACTIONS(2107), - [anon_sym_fused] = ACTIONS(2107), - [anon_sym_public] = ACTIONS(2107), - [anon_sym_packed] = ACTIONS(2107), - [anon_sym_inline] = ACTIONS(2107), - [anon_sym_readonly] = ACTIONS(2107), - [anon_sym_sizeof] = ACTIONS(2107), - [sym__dedent] = ACTIONS(2109), - [sym_string_start] = ACTIONS(2109), + [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), }, [642] = { - [sym_identifier] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2113), - [anon_sym_import] = ACTIONS(2111), - [anon_sym_cimport] = ACTIONS(2111), - [anon_sym_from] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(2113), - [anon_sym_print] = ACTIONS(2111), - [anon_sym_assert] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_del] = ACTIONS(2111), - [anon_sym_raise] = ACTIONS(2111), - [anon_sym_pass] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_match] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [anon_sym_with] = ACTIONS(2111), - [anon_sym_def] = ACTIONS(2111), - [anon_sym_global] = ACTIONS(2111), - [anon_sym_nonlocal] = ACTIONS(2111), - [anon_sym_exec] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_class] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_AT] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_not] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_lambda] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2113), - [anon_sym_None] = ACTIONS(2111), - [sym_integer] = ACTIONS(2111), - [sym_float] = ACTIONS(2113), - [anon_sym_await] = ACTIONS(2111), - [anon_sym_api] = ACTIONS(2111), - [sym_true] = ACTIONS(2111), - [sym_false] = ACTIONS(2111), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2111), - [anon_sym_include] = ACTIONS(2111), - [anon_sym_DEF] = ACTIONS(2111), - [anon_sym_cdef] = ACTIONS(2111), - [anon_sym_cpdef] = ACTIONS(2111), - [anon_sym_int] = ACTIONS(2111), - [anon_sym_double] = ACTIONS(2111), - [anon_sym_complex] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2111), - [anon_sym_signed] = ACTIONS(2111), - [anon_sym_unsigned] = ACTIONS(2111), - [anon_sym_char] = ACTIONS(2111), - [anon_sym_short] = ACTIONS(2111), - [anon_sym_long] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_volatile] = ACTIONS(2111), - [anon_sym_ctypedef] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(2111), - [anon_sym_union] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [anon_sym_cppclass] = ACTIONS(2111), - [anon_sym_fused] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_packed] = ACTIONS(2111), - [anon_sym_inline] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_sizeof] = ACTIONS(2111), - [sym__dedent] = ACTIONS(2113), - [sym_string_start] = ACTIONS(2113), + [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), }, [643] = { - [sym_identifier] = ACTIONS(2115), - [anon_sym_SEMI] = ACTIONS(2117), - [anon_sym_import] = ACTIONS(2115), - [anon_sym_cimport] = ACTIONS(2115), - [anon_sym_from] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2117), - [anon_sym_print] = ACTIONS(2115), - [anon_sym_assert] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2115), - [anon_sym_del] = ACTIONS(2115), - [anon_sym_raise] = ACTIONS(2115), - [anon_sym_pass] = ACTIONS(2115), - [anon_sym_break] = ACTIONS(2115), - [anon_sym_continue] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_match] = ACTIONS(2115), - [anon_sym_async] = ACTIONS(2115), - [anon_sym_for] = ACTIONS(2115), - [anon_sym_while] = ACTIONS(2115), - [anon_sym_try] = ACTIONS(2115), - [anon_sym_with] = ACTIONS(2115), - [anon_sym_def] = ACTIONS(2115), - [anon_sym_global] = ACTIONS(2115), - [anon_sym_nonlocal] = ACTIONS(2115), - [anon_sym_exec] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2115), - [anon_sym_class] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_AT] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_not] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_lambda] = ACTIONS(2115), - [anon_sym_yield] = ACTIONS(2115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2117), - [anon_sym_None] = ACTIONS(2115), - [sym_integer] = ACTIONS(2115), - [sym_float] = ACTIONS(2117), - [anon_sym_await] = ACTIONS(2115), - [anon_sym_api] = ACTIONS(2115), - [sym_true] = ACTIONS(2115), - [sym_false] = ACTIONS(2115), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2115), - [anon_sym_include] = ACTIONS(2115), - [anon_sym_DEF] = ACTIONS(2115), - [anon_sym_cdef] = ACTIONS(2115), - [anon_sym_cpdef] = ACTIONS(2115), - [anon_sym_int] = ACTIONS(2115), - [anon_sym_double] = ACTIONS(2115), - [anon_sym_complex] = ACTIONS(2115), - [anon_sym_new] = ACTIONS(2115), - [anon_sym_signed] = ACTIONS(2115), - [anon_sym_unsigned] = ACTIONS(2115), - [anon_sym_char] = ACTIONS(2115), - [anon_sym_short] = ACTIONS(2115), - [anon_sym_long] = ACTIONS(2115), - [anon_sym_const] = ACTIONS(2115), - [anon_sym_volatile] = ACTIONS(2115), - [anon_sym_ctypedef] = ACTIONS(2115), - [anon_sym_struct] = ACTIONS(2115), - [anon_sym_union] = ACTIONS(2115), - [anon_sym_enum] = ACTIONS(2115), - [anon_sym_cppclass] = ACTIONS(2115), - [anon_sym_fused] = ACTIONS(2115), - [anon_sym_public] = ACTIONS(2115), - [anon_sym_packed] = ACTIONS(2115), - [anon_sym_inline] = ACTIONS(2115), - [anon_sym_readonly] = ACTIONS(2115), - [anon_sym_sizeof] = ACTIONS(2115), - [sym__dedent] = ACTIONS(2117), - [sym_string_start] = ACTIONS(2117), + [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), }, [644] = { - [sym_identifier] = ACTIONS(2119), - [anon_sym_SEMI] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2119), - [anon_sym_cimport] = ACTIONS(2119), - [anon_sym_from] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_print] = ACTIONS(2119), - [anon_sym_assert] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2119), - [anon_sym_del] = ACTIONS(2119), - [anon_sym_raise] = ACTIONS(2119), - [anon_sym_pass] = ACTIONS(2119), - [anon_sym_break] = ACTIONS(2119), - [anon_sym_continue] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_match] = ACTIONS(2119), - [anon_sym_async] = ACTIONS(2119), - [anon_sym_for] = ACTIONS(2119), - [anon_sym_while] = ACTIONS(2119), - [anon_sym_try] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2119), - [anon_sym_def] = ACTIONS(2119), - [anon_sym_global] = ACTIONS(2119), - [anon_sym_nonlocal] = ACTIONS(2119), - [anon_sym_exec] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2119), - [anon_sym_class] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_not] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_lambda] = ACTIONS(2119), - [anon_sym_yield] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), - [anon_sym_None] = ACTIONS(2119), - [sym_integer] = ACTIONS(2119), - [sym_float] = ACTIONS(2121), - [anon_sym_await] = ACTIONS(2119), - [anon_sym_api] = ACTIONS(2119), - [sym_true] = ACTIONS(2119), - [sym_false] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2119), - [anon_sym_include] = ACTIONS(2119), - [anon_sym_DEF] = ACTIONS(2119), - [anon_sym_cdef] = ACTIONS(2119), - [anon_sym_cpdef] = ACTIONS(2119), - [anon_sym_int] = ACTIONS(2119), - [anon_sym_double] = ACTIONS(2119), - [anon_sym_complex] = ACTIONS(2119), - [anon_sym_new] = ACTIONS(2119), - [anon_sym_signed] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(2119), - [anon_sym_char] = ACTIONS(2119), - [anon_sym_short] = ACTIONS(2119), - [anon_sym_long] = ACTIONS(2119), - [anon_sym_const] = ACTIONS(2119), - [anon_sym_volatile] = ACTIONS(2119), - [anon_sym_ctypedef] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2119), - [anon_sym_enum] = ACTIONS(2119), - [anon_sym_cppclass] = ACTIONS(2119), - [anon_sym_fused] = ACTIONS(2119), - [anon_sym_public] = ACTIONS(2119), - [anon_sym_packed] = ACTIONS(2119), - [anon_sym_inline] = ACTIONS(2119), - [anon_sym_readonly] = ACTIONS(2119), - [anon_sym_sizeof] = ACTIONS(2119), - [sym__dedent] = ACTIONS(2121), - [sym_string_start] = ACTIONS(2121), + [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(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(2081), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_lambda] = ACTIONS(2081), + [anon_sym_yield] = ACTIONS(2081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2083), + [anon_sym_None] = ACTIONS(2081), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2083), + [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), }, [645] = { - [sym_identifier] = ACTIONS(2123), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_import] = ACTIONS(2123), - [anon_sym_cimport] = ACTIONS(2123), - [anon_sym_from] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2125), - [anon_sym_print] = ACTIONS(2123), - [anon_sym_assert] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_del] = ACTIONS(2123), - [anon_sym_raise] = ACTIONS(2123), - [anon_sym_pass] = ACTIONS(2123), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_while] = ACTIONS(2123), - [anon_sym_try] = ACTIONS(2123), - [anon_sym_with] = ACTIONS(2123), - [anon_sym_def] = ACTIONS(2123), - [anon_sym_global] = ACTIONS(2123), - [anon_sym_nonlocal] = ACTIONS(2123), - [anon_sym_exec] = ACTIONS(2123), - [anon_sym_type] = ACTIONS(2123), - [anon_sym_class] = ACTIONS(2123), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_AT] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_PLUS] = ACTIONS(2125), - [anon_sym_not] = ACTIONS(2123), - [anon_sym_AMP] = ACTIONS(2125), - [anon_sym_TILDE] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_lambda] = ACTIONS(2123), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2125), - [anon_sym_None] = ACTIONS(2123), - [sym_integer] = ACTIONS(2123), - [sym_float] = ACTIONS(2125), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_api] = ACTIONS(2123), - [sym_true] = ACTIONS(2123), - [sym_false] = ACTIONS(2123), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2123), - [anon_sym_include] = ACTIONS(2123), - [anon_sym_DEF] = ACTIONS(2123), - [anon_sym_cdef] = ACTIONS(2123), - [anon_sym_cpdef] = ACTIONS(2123), - [anon_sym_int] = ACTIONS(2123), - [anon_sym_double] = ACTIONS(2123), - [anon_sym_complex] = ACTIONS(2123), - [anon_sym_new] = ACTIONS(2123), - [anon_sym_signed] = ACTIONS(2123), - [anon_sym_unsigned] = ACTIONS(2123), - [anon_sym_char] = ACTIONS(2123), - [anon_sym_short] = ACTIONS(2123), - [anon_sym_long] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [anon_sym_volatile] = ACTIONS(2123), - [anon_sym_ctypedef] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2123), - [anon_sym_union] = ACTIONS(2123), - [anon_sym_enum] = ACTIONS(2123), - [anon_sym_cppclass] = ACTIONS(2123), - [anon_sym_fused] = ACTIONS(2123), - [anon_sym_public] = ACTIONS(2123), - [anon_sym_packed] = ACTIONS(2123), - [anon_sym_inline] = ACTIONS(2123), - [anon_sym_readonly] = ACTIONS(2123), - [anon_sym_sizeof] = ACTIONS(2123), - [sym__dedent] = ACTIONS(2125), - [sym_string_start] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym_import] = ACTIONS(2085), + [anon_sym_cimport] = ACTIONS(2085), + [anon_sym_from] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2087), + [anon_sym_print] = ACTIONS(2085), + [anon_sym_assert] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_del] = ACTIONS(2085), + [anon_sym_raise] = ACTIONS(2085), + [anon_sym_pass] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [anon_sym_with] = ACTIONS(2085), + [anon_sym_def] = ACTIONS(2085), + [anon_sym_global] = ACTIONS(2085), + [anon_sym_nonlocal] = ACTIONS(2085), + [anon_sym_exec] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_class] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_AT] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2087), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_not] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2087), + [anon_sym_lambda] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2087), + [anon_sym_None] = ACTIONS(2085), + [sym_integer] = ACTIONS(2085), + [sym_float] = ACTIONS(2087), + [anon_sym_await] = ACTIONS(2085), + [anon_sym_api] = ACTIONS(2085), + [sym_true] = ACTIONS(2085), + [sym_false] = ACTIONS(2085), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2085), + [anon_sym_include] = ACTIONS(2085), + [anon_sym_DEF] = ACTIONS(2085), + [anon_sym_cdef] = ACTIONS(2085), + [anon_sym_cpdef] = ACTIONS(2085), + [anon_sym_int] = ACTIONS(2085), + [anon_sym_double] = ACTIONS(2085), + [anon_sym_complex] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2085), + [anon_sym_signed] = ACTIONS(2085), + [anon_sym_unsigned] = ACTIONS(2085), + [anon_sym_char] = ACTIONS(2085), + [anon_sym_short] = ACTIONS(2085), + [anon_sym_long] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_volatile] = ACTIONS(2085), + [anon_sym_ctypedef] = ACTIONS(2085), + [anon_sym_struct] = ACTIONS(2085), + [anon_sym_union] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [anon_sym_cppclass] = ACTIONS(2085), + [anon_sym_fused] = ACTIONS(2085), + [anon_sym_public] = ACTIONS(2085), + [anon_sym_packed] = ACTIONS(2085), + [anon_sym_inline] = ACTIONS(2085), + [anon_sym_readonly] = ACTIONS(2085), + [anon_sym_sizeof] = ACTIONS(2085), + [sym__dedent] = ACTIONS(2087), + [sym_string_start] = ACTIONS(2087), }, [646] = { - [sym_identifier] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_import] = ACTIONS(2127), - [anon_sym_cimport] = ACTIONS(2127), - [anon_sym_from] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_print] = ACTIONS(2127), - [anon_sym_assert] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_del] = ACTIONS(2127), - [anon_sym_raise] = ACTIONS(2127), - [anon_sym_pass] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_match] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2127), - [anon_sym_with] = ACTIONS(2127), - [anon_sym_def] = ACTIONS(2127), - [anon_sym_global] = ACTIONS(2127), - [anon_sym_nonlocal] = ACTIONS(2127), - [anon_sym_exec] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_class] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_AT] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2129), - [anon_sym_not] = ACTIONS(2127), - [anon_sym_AMP] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_lambda] = ACTIONS(2127), - [anon_sym_yield] = ACTIONS(2127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2129), - [anon_sym_None] = ACTIONS(2127), - [sym_integer] = ACTIONS(2127), - [sym_float] = ACTIONS(2129), - [anon_sym_await] = ACTIONS(2127), - [anon_sym_api] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2127), - [anon_sym_include] = ACTIONS(2127), - [anon_sym_DEF] = ACTIONS(2127), - [anon_sym_cdef] = ACTIONS(2127), - [anon_sym_cpdef] = ACTIONS(2127), - [anon_sym_int] = ACTIONS(2127), - [anon_sym_double] = ACTIONS(2127), - [anon_sym_complex] = ACTIONS(2127), - [anon_sym_new] = ACTIONS(2127), - [anon_sym_signed] = ACTIONS(2127), - [anon_sym_unsigned] = ACTIONS(2127), - [anon_sym_char] = ACTIONS(2127), - [anon_sym_short] = ACTIONS(2127), - [anon_sym_long] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_volatile] = ACTIONS(2127), - [anon_sym_ctypedef] = ACTIONS(2127), - [anon_sym_struct] = ACTIONS(2127), - [anon_sym_union] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [anon_sym_cppclass] = ACTIONS(2127), - [anon_sym_fused] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_packed] = ACTIONS(2127), - [anon_sym_inline] = ACTIONS(2127), - [anon_sym_readonly] = ACTIONS(2127), - [anon_sym_sizeof] = ACTIONS(2127), - [sym__dedent] = ACTIONS(2129), - [sym_string_start] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_import] = ACTIONS(2089), + [anon_sym_cimport] = ACTIONS(2089), + [anon_sym_from] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_print] = ACTIONS(2089), + [anon_sym_assert] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_del] = ACTIONS(2089), + [anon_sym_raise] = ACTIONS(2089), + [anon_sym_pass] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [anon_sym_with] = ACTIONS(2089), + [anon_sym_def] = ACTIONS(2089), + [anon_sym_global] = ACTIONS(2089), + [anon_sym_nonlocal] = ACTIONS(2089), + [anon_sym_exec] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_class] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_AT] = ACTIONS(2091), + [anon_sym_DASH] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(2091), + [anon_sym_not] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(2091), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_lambda] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2091), + [anon_sym_None] = ACTIONS(2089), + [sym_integer] = ACTIONS(2089), + [sym_float] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2089), + [anon_sym_api] = ACTIONS(2089), + [sym_true] = ACTIONS(2089), + [sym_false] = ACTIONS(2089), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2089), + [anon_sym_include] = ACTIONS(2089), + [anon_sym_DEF] = ACTIONS(2089), + [anon_sym_cdef] = ACTIONS(2089), + [anon_sym_cpdef] = ACTIONS(2089), + [anon_sym_int] = ACTIONS(2089), + [anon_sym_double] = ACTIONS(2089), + [anon_sym_complex] = ACTIONS(2089), + [anon_sym_new] = ACTIONS(2089), + [anon_sym_signed] = ACTIONS(2089), + [anon_sym_unsigned] = ACTIONS(2089), + [anon_sym_char] = ACTIONS(2089), + [anon_sym_short] = ACTIONS(2089), + [anon_sym_long] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_volatile] = ACTIONS(2089), + [anon_sym_ctypedef] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(2089), + [anon_sym_union] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_cppclass] = ACTIONS(2089), + [anon_sym_fused] = ACTIONS(2089), + [anon_sym_public] = ACTIONS(2089), + [anon_sym_packed] = ACTIONS(2089), + [anon_sym_inline] = ACTIONS(2089), + [anon_sym_readonly] = ACTIONS(2089), + [anon_sym_sizeof] = ACTIONS(2089), + [sym__dedent] = ACTIONS(2091), + [sym_string_start] = ACTIONS(2091), }, [647] = { - [sym_identifier] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2133), - [anon_sym_import] = ACTIONS(2131), - [anon_sym_cimport] = ACTIONS(2131), - [anon_sym_from] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2133), - [anon_sym_print] = ACTIONS(2131), - [anon_sym_assert] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_del] = ACTIONS(2131), - [anon_sym_raise] = ACTIONS(2131), - [anon_sym_pass] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_async] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2131), - [anon_sym_with] = ACTIONS(2131), - [anon_sym_def] = ACTIONS(2131), - [anon_sym_global] = ACTIONS(2131), - [anon_sym_nonlocal] = ACTIONS(2131), - [anon_sym_exec] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2131), - [anon_sym_class] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(2133), - [anon_sym_AT] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(2133), - [anon_sym_not] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_TILDE] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_lambda] = ACTIONS(2131), - [anon_sym_yield] = ACTIONS(2131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2133), - [anon_sym_None] = ACTIONS(2131), - [sym_integer] = ACTIONS(2131), - [sym_float] = ACTIONS(2133), - [anon_sym_await] = ACTIONS(2131), - [anon_sym_api] = ACTIONS(2131), - [sym_true] = ACTIONS(2131), - [sym_false] = ACTIONS(2131), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2131), - [anon_sym_include] = ACTIONS(2131), - [anon_sym_DEF] = ACTIONS(2131), - [anon_sym_cdef] = ACTIONS(2131), - [anon_sym_cpdef] = ACTIONS(2131), - [anon_sym_int] = ACTIONS(2131), - [anon_sym_double] = ACTIONS(2131), - [anon_sym_complex] = ACTIONS(2131), - [anon_sym_new] = ACTIONS(2131), - [anon_sym_signed] = ACTIONS(2131), - [anon_sym_unsigned] = ACTIONS(2131), - [anon_sym_char] = ACTIONS(2131), - [anon_sym_short] = ACTIONS(2131), - [anon_sym_long] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [anon_sym_volatile] = ACTIONS(2131), - [anon_sym_ctypedef] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2131), - [anon_sym_union] = ACTIONS(2131), - [anon_sym_enum] = ACTIONS(2131), - [anon_sym_cppclass] = ACTIONS(2131), - [anon_sym_fused] = ACTIONS(2131), - [anon_sym_public] = ACTIONS(2131), - [anon_sym_packed] = ACTIONS(2131), - [anon_sym_inline] = ACTIONS(2131), - [anon_sym_readonly] = ACTIONS(2131), - [anon_sym_sizeof] = ACTIONS(2131), - [sym__dedent] = ACTIONS(2133), - [sym_string_start] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_import] = ACTIONS(2093), + [anon_sym_cimport] = ACTIONS(2093), + [anon_sym_from] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_print] = ACTIONS(2093), + [anon_sym_assert] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_del] = ACTIONS(2093), + [anon_sym_raise] = ACTIONS(2093), + [anon_sym_pass] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [anon_sym_with] = ACTIONS(2093), + [anon_sym_def] = ACTIONS(2093), + [anon_sym_global] = ACTIONS(2093), + [anon_sym_nonlocal] = ACTIONS(2093), + [anon_sym_exec] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_class] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_AT] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_not] = ACTIONS(2093), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_lambda] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2095), + [anon_sym_None] = ACTIONS(2093), + [sym_integer] = ACTIONS(2093), + [sym_float] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_api] = ACTIONS(2093), + [sym_true] = ACTIONS(2093), + [sym_false] = ACTIONS(2093), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2093), + [anon_sym_include] = ACTIONS(2093), + [anon_sym_DEF] = ACTIONS(2093), + [anon_sym_cdef] = ACTIONS(2093), + [anon_sym_cpdef] = ACTIONS(2093), + [anon_sym_int] = ACTIONS(2093), + [anon_sym_double] = ACTIONS(2093), + [anon_sym_complex] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_signed] = ACTIONS(2093), + [anon_sym_unsigned] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [anon_sym_short] = ACTIONS(2093), + [anon_sym_long] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_volatile] = ACTIONS(2093), + [anon_sym_ctypedef] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_cppclass] = ACTIONS(2093), + [anon_sym_fused] = ACTIONS(2093), + [anon_sym_public] = ACTIONS(2093), + [anon_sym_packed] = ACTIONS(2093), + [anon_sym_inline] = ACTIONS(2093), + [anon_sym_readonly] = ACTIONS(2093), + [anon_sym_sizeof] = ACTIONS(2093), + [sym__dedent] = ACTIONS(2095), + [sym_string_start] = ACTIONS(2095), }, [648] = { - [sym_identifier] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_import] = ACTIONS(2135), - [anon_sym_cimport] = ACTIONS(2135), - [anon_sym_from] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_print] = ACTIONS(2135), - [anon_sym_assert] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_del] = ACTIONS(2135), - [anon_sym_raise] = ACTIONS(2135), - [anon_sym_pass] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_match] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [anon_sym_with] = ACTIONS(2135), - [anon_sym_def] = ACTIONS(2135), - [anon_sym_global] = ACTIONS(2135), - [anon_sym_nonlocal] = ACTIONS(2135), - [anon_sym_exec] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_class] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_AT] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_not] = ACTIONS(2135), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_lambda] = ACTIONS(2135), - [anon_sym_yield] = ACTIONS(2135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2137), - [anon_sym_None] = ACTIONS(2135), - [sym_integer] = ACTIONS(2135), - [sym_float] = ACTIONS(2137), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_api] = ACTIONS(2135), - [sym_true] = ACTIONS(2135), - [sym_false] = ACTIONS(2135), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2135), - [anon_sym_include] = ACTIONS(2135), - [anon_sym_DEF] = ACTIONS(2135), - [anon_sym_cdef] = ACTIONS(2135), - [anon_sym_cpdef] = ACTIONS(2135), - [anon_sym_int] = ACTIONS(2135), - [anon_sym_double] = ACTIONS(2135), - [anon_sym_complex] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_signed] = ACTIONS(2135), - [anon_sym_unsigned] = ACTIONS(2135), - [anon_sym_char] = ACTIONS(2135), - [anon_sym_short] = ACTIONS(2135), - [anon_sym_long] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_volatile] = ACTIONS(2135), - [anon_sym_ctypedef] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2135), - [anon_sym_union] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [anon_sym_cppclass] = ACTIONS(2135), - [anon_sym_fused] = ACTIONS(2135), - [anon_sym_public] = ACTIONS(2135), - [anon_sym_packed] = ACTIONS(2135), - [anon_sym_inline] = ACTIONS(2135), - [anon_sym_readonly] = ACTIONS(2135), - [anon_sym_sizeof] = ACTIONS(2135), - [sym__dedent] = ACTIONS(2137), - [sym_string_start] = ACTIONS(2137), + [sym_identifier] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_import] = ACTIONS(2097), + [anon_sym_cimport] = ACTIONS(2097), + [anon_sym_from] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_print] = ACTIONS(2097), + [anon_sym_assert] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_del] = ACTIONS(2097), + [anon_sym_raise] = ACTIONS(2097), + [anon_sym_pass] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_def] = ACTIONS(2097), + [anon_sym_global] = ACTIONS(2097), + [anon_sym_nonlocal] = ACTIONS(2097), + [anon_sym_exec] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_class] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_AT] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(2099), + [anon_sym_not] = ACTIONS(2097), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_lambda] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2099), + [anon_sym_None] = ACTIONS(2097), + [sym_integer] = ACTIONS(2097), + [sym_float] = ACTIONS(2099), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_api] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2097), + [anon_sym_include] = ACTIONS(2097), + [anon_sym_DEF] = ACTIONS(2097), + [anon_sym_cdef] = ACTIONS(2097), + [anon_sym_cpdef] = ACTIONS(2097), + [anon_sym_int] = ACTIONS(2097), + [anon_sym_double] = ACTIONS(2097), + [anon_sym_complex] = ACTIONS(2097), + [anon_sym_new] = ACTIONS(2097), + [anon_sym_signed] = ACTIONS(2097), + [anon_sym_unsigned] = ACTIONS(2097), + [anon_sym_char] = ACTIONS(2097), + [anon_sym_short] = ACTIONS(2097), + [anon_sym_long] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_volatile] = ACTIONS(2097), + [anon_sym_ctypedef] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_union] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_cppclass] = ACTIONS(2097), + [anon_sym_fused] = ACTIONS(2097), + [anon_sym_public] = ACTIONS(2097), + [anon_sym_packed] = ACTIONS(2097), + [anon_sym_inline] = ACTIONS(2097), + [anon_sym_readonly] = ACTIONS(2097), + [anon_sym_sizeof] = ACTIONS(2097), + [sym__dedent] = ACTIONS(2099), + [sym_string_start] = ACTIONS(2099), }, [649] = { - [sym_identifier] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2141), - [anon_sym_import] = ACTIONS(2139), - [anon_sym_cimport] = ACTIONS(2139), - [anon_sym_from] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_print] = ACTIONS(2139), - [anon_sym_assert] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_del] = ACTIONS(2139), - [anon_sym_raise] = ACTIONS(2139), - [anon_sym_pass] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(2139), - [anon_sym_def] = ACTIONS(2139), - [anon_sym_global] = ACTIONS(2139), - [anon_sym_nonlocal] = ACTIONS(2139), - [anon_sym_exec] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_class] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_AT] = ACTIONS(2141), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_PLUS] = ACTIONS(2141), - [anon_sym_not] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_TILDE] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_lambda] = ACTIONS(2139), - [anon_sym_yield] = ACTIONS(2139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2141), - [anon_sym_None] = ACTIONS(2139), - [sym_integer] = ACTIONS(2139), - [sym_float] = ACTIONS(2141), - [anon_sym_await] = ACTIONS(2139), - [anon_sym_api] = ACTIONS(2139), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2139), - [anon_sym_include] = ACTIONS(2139), - [anon_sym_DEF] = ACTIONS(2139), - [anon_sym_cdef] = ACTIONS(2139), - [anon_sym_cpdef] = ACTIONS(2139), - [anon_sym_int] = ACTIONS(2139), - [anon_sym_double] = ACTIONS(2139), - [anon_sym_complex] = ACTIONS(2139), - [anon_sym_new] = ACTIONS(2139), - [anon_sym_signed] = ACTIONS(2139), - [anon_sym_unsigned] = ACTIONS(2139), - [anon_sym_char] = ACTIONS(2139), - [anon_sym_short] = ACTIONS(2139), - [anon_sym_long] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_volatile] = ACTIONS(2139), - [anon_sym_ctypedef] = ACTIONS(2139), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_union] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [anon_sym_cppclass] = ACTIONS(2139), - [anon_sym_fused] = ACTIONS(2139), - [anon_sym_public] = ACTIONS(2139), - [anon_sym_packed] = ACTIONS(2139), - [anon_sym_inline] = ACTIONS(2139), - [anon_sym_readonly] = ACTIONS(2139), - [anon_sym_sizeof] = ACTIONS(2139), - [sym__dedent] = ACTIONS(2141), - [sym_string_start] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_import] = ACTIONS(2101), + [anon_sym_cimport] = ACTIONS(2101), + [anon_sym_from] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_print] = ACTIONS(2101), + [anon_sym_assert] = ACTIONS(2101), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_del] = ACTIONS(2101), + [anon_sym_raise] = ACTIONS(2101), + [anon_sym_pass] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2101), + [anon_sym_with] = ACTIONS(2101), + [anon_sym_def] = ACTIONS(2101), + [anon_sym_global] = ACTIONS(2101), + [anon_sym_nonlocal] = ACTIONS(2101), + [anon_sym_exec] = ACTIONS(2101), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_class] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_not] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2103), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_lambda] = ACTIONS(2101), + [anon_sym_yield] = ACTIONS(2101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2103), + [anon_sym_None] = ACTIONS(2101), + [sym_integer] = ACTIONS(2101), + [sym_float] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2101), + [anon_sym_api] = ACTIONS(2101), + [sym_true] = ACTIONS(2101), + [sym_false] = ACTIONS(2101), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2101), + [anon_sym_include] = ACTIONS(2101), + [anon_sym_DEF] = ACTIONS(2101), + [anon_sym_cdef] = ACTIONS(2101), + [anon_sym_cpdef] = ACTIONS(2101), + [anon_sym_int] = ACTIONS(2101), + [anon_sym_double] = ACTIONS(2101), + [anon_sym_complex] = ACTIONS(2101), + [anon_sym_new] = ACTIONS(2101), + [anon_sym_signed] = ACTIONS(2101), + [anon_sym_unsigned] = ACTIONS(2101), + [anon_sym_char] = ACTIONS(2101), + [anon_sym_short] = ACTIONS(2101), + [anon_sym_long] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_volatile] = ACTIONS(2101), + [anon_sym_ctypedef] = ACTIONS(2101), + [anon_sym_struct] = ACTIONS(2101), + [anon_sym_union] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_cppclass] = ACTIONS(2101), + [anon_sym_fused] = ACTIONS(2101), + [anon_sym_public] = ACTIONS(2101), + [anon_sym_packed] = ACTIONS(2101), + [anon_sym_inline] = ACTIONS(2101), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2101), + [sym__dedent] = ACTIONS(2103), + [sym_string_start] = ACTIONS(2103), }, [650] = { - [sym_identifier] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2143), - [anon_sym_cimport] = ACTIONS(2143), - [anon_sym_from] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(2145), - [anon_sym_print] = ACTIONS(2143), - [anon_sym_assert] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2143), - [anon_sym_del] = ACTIONS(2143), - [anon_sym_raise] = ACTIONS(2143), - [anon_sym_pass] = ACTIONS(2143), - [anon_sym_break] = ACTIONS(2143), - [anon_sym_continue] = ACTIONS(2143), - [anon_sym_if] = ACTIONS(2143), - [anon_sym_match] = ACTIONS(2143), - [anon_sym_async] = ACTIONS(2143), - [anon_sym_for] = ACTIONS(2143), - [anon_sym_while] = ACTIONS(2143), - [anon_sym_try] = ACTIONS(2143), - [anon_sym_with] = ACTIONS(2143), - [anon_sym_def] = ACTIONS(2143), - [anon_sym_global] = ACTIONS(2143), - [anon_sym_nonlocal] = ACTIONS(2143), - [anon_sym_exec] = ACTIONS(2143), - [anon_sym_type] = ACTIONS(2143), - [anon_sym_class] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_not] = ACTIONS(2143), - [anon_sym_AMP] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_lambda] = ACTIONS(2143), - [anon_sym_yield] = ACTIONS(2143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2145), - [anon_sym_None] = ACTIONS(2143), - [sym_integer] = ACTIONS(2143), - [sym_float] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_api] = ACTIONS(2143), - [sym_true] = ACTIONS(2143), - [sym_false] = ACTIONS(2143), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2143), - [anon_sym_include] = ACTIONS(2143), - [anon_sym_DEF] = ACTIONS(2143), - [anon_sym_cdef] = ACTIONS(2143), - [anon_sym_cpdef] = ACTIONS(2143), - [anon_sym_int] = ACTIONS(2143), - [anon_sym_double] = ACTIONS(2143), - [anon_sym_complex] = ACTIONS(2143), - [anon_sym_new] = ACTIONS(2143), - [anon_sym_signed] = ACTIONS(2143), - [anon_sym_unsigned] = ACTIONS(2143), - [anon_sym_char] = ACTIONS(2143), - [anon_sym_short] = ACTIONS(2143), - [anon_sym_long] = ACTIONS(2143), - [anon_sym_const] = ACTIONS(2143), - [anon_sym_volatile] = ACTIONS(2143), - [anon_sym_ctypedef] = ACTIONS(2143), - [anon_sym_struct] = ACTIONS(2143), - [anon_sym_union] = ACTIONS(2143), - [anon_sym_enum] = ACTIONS(2143), - [anon_sym_cppclass] = ACTIONS(2143), - [anon_sym_fused] = ACTIONS(2143), - [anon_sym_public] = ACTIONS(2143), - [anon_sym_packed] = ACTIONS(2143), - [anon_sym_inline] = ACTIONS(2143), - [anon_sym_readonly] = ACTIONS(2143), - [anon_sym_sizeof] = ACTIONS(2143), - [sym__dedent] = ACTIONS(2145), - [sym_string_start] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_import] = ACTIONS(2105), + [anon_sym_cimport] = ACTIONS(2105), + [anon_sym_from] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_print] = ACTIONS(2105), + [anon_sym_assert] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_del] = ACTIONS(2105), + [anon_sym_raise] = ACTIONS(2105), + [anon_sym_pass] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_with] = ACTIONS(2105), + [anon_sym_def] = ACTIONS(2105), + [anon_sym_global] = ACTIONS(2105), + [anon_sym_nonlocal] = ACTIONS(2105), + [anon_sym_exec] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_class] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_AT] = ACTIONS(2107), + [anon_sym_DASH] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_PLUS] = ACTIONS(2107), + [anon_sym_not] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2107), + [anon_sym_LT] = ACTIONS(2107), + [anon_sym_lambda] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2107), + [anon_sym_None] = ACTIONS(2105), + [sym_integer] = ACTIONS(2105), + [sym_float] = ACTIONS(2107), + [anon_sym_await] = ACTIONS(2105), + [anon_sym_api] = ACTIONS(2105), + [sym_true] = ACTIONS(2105), + [sym_false] = ACTIONS(2105), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2105), + [anon_sym_include] = ACTIONS(2105), + [anon_sym_DEF] = ACTIONS(2105), + [anon_sym_cdef] = ACTIONS(2105), + [anon_sym_cpdef] = ACTIONS(2105), + [anon_sym_int] = ACTIONS(2105), + [anon_sym_double] = ACTIONS(2105), + [anon_sym_complex] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_signed] = ACTIONS(2105), + [anon_sym_unsigned] = ACTIONS(2105), + [anon_sym_char] = ACTIONS(2105), + [anon_sym_short] = ACTIONS(2105), + [anon_sym_long] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_volatile] = ACTIONS(2105), + [anon_sym_ctypedef] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_cppclass] = ACTIONS(2105), + [anon_sym_fused] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_packed] = ACTIONS(2105), + [anon_sym_inline] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_sizeof] = ACTIONS(2105), + [sym__dedent] = ACTIONS(2107), + [sym_string_start] = ACTIONS(2107), }, [651] = { - [sym_identifier] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2147), - [anon_sym_cimport] = ACTIONS(2147), - [anon_sym_from] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2149), - [anon_sym_print] = ACTIONS(2147), - [anon_sym_assert] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_del] = ACTIONS(2147), - [anon_sym_raise] = ACTIONS(2147), - [anon_sym_pass] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [anon_sym_try] = ACTIONS(2147), - [anon_sym_with] = ACTIONS(2147), - [anon_sym_def] = ACTIONS(2147), - [anon_sym_global] = ACTIONS(2147), - [anon_sym_nonlocal] = ACTIONS(2147), - [anon_sym_exec] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_class] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_not] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_lambda] = ACTIONS(2147), - [anon_sym_yield] = ACTIONS(2147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2149), - [anon_sym_None] = ACTIONS(2147), - [sym_integer] = ACTIONS(2147), - [sym_float] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_api] = ACTIONS(2147), - [sym_true] = ACTIONS(2147), - [sym_false] = ACTIONS(2147), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2147), - [anon_sym_include] = ACTIONS(2147), - [anon_sym_DEF] = ACTIONS(2147), - [anon_sym_cdef] = ACTIONS(2147), - [anon_sym_cpdef] = ACTIONS(2147), - [anon_sym_int] = ACTIONS(2147), - [anon_sym_double] = ACTIONS(2147), - [anon_sym_complex] = ACTIONS(2147), - [anon_sym_new] = ACTIONS(2147), - [anon_sym_signed] = ACTIONS(2147), - [anon_sym_unsigned] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [anon_sym_short] = ACTIONS(2147), - [anon_sym_long] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_volatile] = ACTIONS(2147), - [anon_sym_ctypedef] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_cppclass] = ACTIONS(2147), - [anon_sym_fused] = ACTIONS(2147), - [anon_sym_public] = ACTIONS(2147), - [anon_sym_packed] = ACTIONS(2147), - [anon_sym_inline] = ACTIONS(2147), - [anon_sym_readonly] = ACTIONS(2147), - [anon_sym_sizeof] = ACTIONS(2147), - [sym__dedent] = ACTIONS(2149), - [sym_string_start] = ACTIONS(2149), + [sym_identifier] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2109), + [anon_sym_cimport] = ACTIONS(2109), + [anon_sym_from] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_print] = ACTIONS(2109), + [anon_sym_assert] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_del] = ACTIONS(2109), + [anon_sym_raise] = ACTIONS(2109), + [anon_sym_pass] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_match] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [anon_sym_with] = ACTIONS(2109), + [anon_sym_def] = ACTIONS(2109), + [anon_sym_global] = ACTIONS(2109), + [anon_sym_nonlocal] = ACTIONS(2109), + [anon_sym_exec] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_not] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_lambda] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2111), + [anon_sym_None] = ACTIONS(2109), + [sym_integer] = ACTIONS(2109), + [sym_float] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2109), + [anon_sym_api] = ACTIONS(2109), + [sym_true] = ACTIONS(2109), + [sym_false] = ACTIONS(2109), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2109), + [anon_sym_include] = ACTIONS(2109), + [anon_sym_DEF] = ACTIONS(2109), + [anon_sym_cdef] = ACTIONS(2109), + [anon_sym_cpdef] = ACTIONS(2109), + [anon_sym_int] = ACTIONS(2109), + [anon_sym_double] = ACTIONS(2109), + [anon_sym_complex] = ACTIONS(2109), + [anon_sym_new] = ACTIONS(2109), + [anon_sym_signed] = ACTIONS(2109), + [anon_sym_unsigned] = ACTIONS(2109), + [anon_sym_char] = ACTIONS(2109), + [anon_sym_short] = ACTIONS(2109), + [anon_sym_long] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_volatile] = ACTIONS(2109), + [anon_sym_ctypedef] = ACTIONS(2109), + [anon_sym_struct] = ACTIONS(2109), + [anon_sym_union] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [anon_sym_cppclass] = ACTIONS(2109), + [anon_sym_fused] = ACTIONS(2109), + [anon_sym_public] = ACTIONS(2109), + [anon_sym_packed] = ACTIONS(2109), + [anon_sym_inline] = ACTIONS(2109), + [anon_sym_readonly] = ACTIONS(2109), + [anon_sym_sizeof] = ACTIONS(2109), + [sym__dedent] = ACTIONS(2111), + [sym_string_start] = ACTIONS(2111), }, [652] = { - [sym_identifier] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2153), - [anon_sym_import] = ACTIONS(2151), - [anon_sym_cimport] = ACTIONS(2151), - [anon_sym_from] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_print] = ACTIONS(2151), - [anon_sym_assert] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_del] = ACTIONS(2151), - [anon_sym_raise] = ACTIONS(2151), - [anon_sym_pass] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [anon_sym_with] = ACTIONS(2151), - [anon_sym_def] = ACTIONS(2151), - [anon_sym_global] = ACTIONS(2151), - [anon_sym_nonlocal] = ACTIONS(2151), - [anon_sym_exec] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_class] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2153), - [anon_sym_AT] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_PLUS] = ACTIONS(2153), - [anon_sym_not] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_TILDE] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_lambda] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2153), - [anon_sym_None] = ACTIONS(2151), - [sym_integer] = ACTIONS(2151), - [sym_float] = ACTIONS(2153), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_api] = ACTIONS(2151), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2151), - [anon_sym_include] = ACTIONS(2151), - [anon_sym_DEF] = ACTIONS(2151), - [anon_sym_cdef] = ACTIONS(2151), - [anon_sym_cpdef] = ACTIONS(2151), - [anon_sym_int] = ACTIONS(2151), - [anon_sym_double] = ACTIONS(2151), - [anon_sym_complex] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2151), - [anon_sym_signed] = ACTIONS(2151), - [anon_sym_unsigned] = ACTIONS(2151), - [anon_sym_char] = ACTIONS(2151), - [anon_sym_short] = ACTIONS(2151), - [anon_sym_long] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_volatile] = ACTIONS(2151), - [anon_sym_ctypedef] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_union] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [anon_sym_cppclass] = ACTIONS(2151), - [anon_sym_fused] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_packed] = ACTIONS(2151), - [anon_sym_inline] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_sizeof] = ACTIONS(2151), - [sym__dedent] = ACTIONS(2153), - [sym_string_start] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_import] = ACTIONS(2113), + [anon_sym_cimport] = ACTIONS(2113), + [anon_sym_from] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_print] = ACTIONS(2113), + [anon_sym_assert] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_del] = ACTIONS(2113), + [anon_sym_raise] = ACTIONS(2113), + [anon_sym_pass] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_with] = ACTIONS(2113), + [anon_sym_def] = ACTIONS(2113), + [anon_sym_global] = ACTIONS(2113), + [anon_sym_nonlocal] = ACTIONS(2113), + [anon_sym_exec] = ACTIONS(2113), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_class] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_AT] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(2115), + [anon_sym_not] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_lambda] = ACTIONS(2113), + [anon_sym_yield] = ACTIONS(2113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), + [anon_sym_None] = ACTIONS(2113), + [sym_integer] = ACTIONS(2113), + [sym_float] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2113), + [anon_sym_api] = ACTIONS(2113), + [sym_true] = ACTIONS(2113), + [sym_false] = ACTIONS(2113), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2113), + [anon_sym_include] = ACTIONS(2113), + [anon_sym_DEF] = ACTIONS(2113), + [anon_sym_cdef] = ACTIONS(2113), + [anon_sym_cpdef] = ACTIONS(2113), + [anon_sym_int] = ACTIONS(2113), + [anon_sym_double] = ACTIONS(2113), + [anon_sym_complex] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2113), + [anon_sym_signed] = ACTIONS(2113), + [anon_sym_unsigned] = ACTIONS(2113), + [anon_sym_char] = ACTIONS(2113), + [anon_sym_short] = ACTIONS(2113), + [anon_sym_long] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_volatile] = ACTIONS(2113), + [anon_sym_ctypedef] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2113), + [anon_sym_union] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_cppclass] = ACTIONS(2113), + [anon_sym_fused] = ACTIONS(2113), + [anon_sym_public] = ACTIONS(2113), + [anon_sym_packed] = ACTIONS(2113), + [anon_sym_inline] = ACTIONS(2113), + [anon_sym_readonly] = ACTIONS(2113), + [anon_sym_sizeof] = ACTIONS(2113), + [sym__dedent] = ACTIONS(2115), + [sym_string_start] = ACTIONS(2115), }, [653] = { - [sym_identifier] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2157), - [anon_sym_import] = ACTIONS(2155), - [anon_sym_cimport] = ACTIONS(2155), - [anon_sym_from] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_print] = ACTIONS(2155), - [anon_sym_assert] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_del] = ACTIONS(2155), - [anon_sym_raise] = ACTIONS(2155), - [anon_sym_pass] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_async] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_try] = ACTIONS(2155), - [anon_sym_with] = ACTIONS(2155), - [anon_sym_def] = ACTIONS(2155), - [anon_sym_global] = ACTIONS(2155), - [anon_sym_nonlocal] = ACTIONS(2155), - [anon_sym_exec] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_class] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_AT] = ACTIONS(2157), - [anon_sym_DASH] = ACTIONS(2157), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_PLUS] = ACTIONS(2157), - [anon_sym_not] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_lambda] = ACTIONS(2155), - [anon_sym_yield] = ACTIONS(2155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2157), - [anon_sym_None] = ACTIONS(2155), - [sym_integer] = ACTIONS(2155), - [sym_float] = ACTIONS(2157), - [anon_sym_await] = ACTIONS(2155), - [anon_sym_api] = ACTIONS(2155), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2155), - [anon_sym_include] = ACTIONS(2155), - [anon_sym_DEF] = ACTIONS(2155), - [anon_sym_cdef] = ACTIONS(2155), - [anon_sym_cpdef] = ACTIONS(2155), - [anon_sym_int] = ACTIONS(2155), - [anon_sym_double] = ACTIONS(2155), - [anon_sym_complex] = ACTIONS(2155), - [anon_sym_new] = ACTIONS(2155), - [anon_sym_signed] = ACTIONS(2155), - [anon_sym_unsigned] = ACTIONS(2155), - [anon_sym_char] = ACTIONS(2155), - [anon_sym_short] = ACTIONS(2155), - [anon_sym_long] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [anon_sym_volatile] = ACTIONS(2155), - [anon_sym_ctypedef] = ACTIONS(2155), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_union] = ACTIONS(2155), - [anon_sym_enum] = ACTIONS(2155), - [anon_sym_cppclass] = ACTIONS(2155), - [anon_sym_fused] = ACTIONS(2155), - [anon_sym_public] = ACTIONS(2155), - [anon_sym_packed] = ACTIONS(2155), - [anon_sym_inline] = ACTIONS(2155), - [anon_sym_readonly] = ACTIONS(2155), - [anon_sym_sizeof] = ACTIONS(2155), - [sym__dedent] = ACTIONS(2157), - [sym_string_start] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_cimport] = ACTIONS(2117), + [anon_sym_from] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_print] = ACTIONS(2117), + [anon_sym_assert] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_del] = ACTIONS(2117), + [anon_sym_raise] = ACTIONS(2117), + [anon_sym_pass] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_match] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_def] = ACTIONS(2117), + [anon_sym_global] = ACTIONS(2117), + [anon_sym_nonlocal] = ACTIONS(2117), + [anon_sym_exec] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2119), + [anon_sym_AT] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2119), + [anon_sym_not] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_lambda] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2119), + [anon_sym_None] = ACTIONS(2117), + [sym_integer] = ACTIONS(2117), + [sym_float] = ACTIONS(2119), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_api] = ACTIONS(2117), + [sym_true] = ACTIONS(2117), + [sym_false] = ACTIONS(2117), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2117), + [anon_sym_include] = ACTIONS(2117), + [anon_sym_DEF] = ACTIONS(2117), + [anon_sym_cdef] = ACTIONS(2117), + [anon_sym_cpdef] = ACTIONS(2117), + [anon_sym_int] = ACTIONS(2117), + [anon_sym_double] = ACTIONS(2117), + [anon_sym_complex] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_signed] = ACTIONS(2117), + [anon_sym_unsigned] = ACTIONS(2117), + [anon_sym_char] = ACTIONS(2117), + [anon_sym_short] = ACTIONS(2117), + [anon_sym_long] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_volatile] = ACTIONS(2117), + [anon_sym_ctypedef] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2117), + [anon_sym_union] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [anon_sym_cppclass] = ACTIONS(2117), + [anon_sym_fused] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_packed] = ACTIONS(2117), + [anon_sym_inline] = ACTIONS(2117), + [anon_sym_readonly] = ACTIONS(2117), + [anon_sym_sizeof] = ACTIONS(2117), + [sym__dedent] = ACTIONS(2119), + [sym_string_start] = ACTIONS(2119), }, [654] = { - [sym_identifier] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2161), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_cimport] = ACTIONS(2159), - [anon_sym_from] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2161), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_print] = ACTIONS(2159), - [anon_sym_assert] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_del] = ACTIONS(2159), - [anon_sym_raise] = ACTIONS(2159), - [anon_sym_pass] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_def] = ACTIONS(2159), - [anon_sym_global] = ACTIONS(2159), - [anon_sym_nonlocal] = ACTIONS(2159), - [anon_sym_exec] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_AT] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2161), - [anon_sym_not] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2161), - [anon_sym_lambda] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2161), - [anon_sym_None] = ACTIONS(2159), - [sym_integer] = ACTIONS(2159), - [sym_float] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_api] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2159), - [anon_sym_include] = ACTIONS(2159), - [anon_sym_DEF] = ACTIONS(2159), - [anon_sym_cdef] = ACTIONS(2159), - [anon_sym_cpdef] = ACTIONS(2159), - [anon_sym_int] = ACTIONS(2159), - [anon_sym_double] = ACTIONS(2159), - [anon_sym_complex] = ACTIONS(2159), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_signed] = ACTIONS(2159), - [anon_sym_unsigned] = ACTIONS(2159), - [anon_sym_char] = ACTIONS(2159), - [anon_sym_short] = ACTIONS(2159), - [anon_sym_long] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_volatile] = ACTIONS(2159), - [anon_sym_ctypedef] = ACTIONS(2159), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_cppclass] = ACTIONS(2159), - [anon_sym_fused] = ACTIONS(2159), - [anon_sym_public] = ACTIONS(2159), - [anon_sym_packed] = ACTIONS(2159), - [anon_sym_inline] = ACTIONS(2159), - [anon_sym_readonly] = ACTIONS(2159), - [anon_sym_sizeof] = ACTIONS(2159), - [sym__dedent] = ACTIONS(2161), - [sym_string_start] = ACTIONS(2161), + [sym_identifier] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_import] = ACTIONS(2121), + [anon_sym_cimport] = ACTIONS(2121), + [anon_sym_from] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_print] = ACTIONS(2121), + [anon_sym_assert] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_del] = ACTIONS(2121), + [anon_sym_raise] = ACTIONS(2121), + [anon_sym_pass] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_match] = ACTIONS(2121), + [anon_sym_async] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [anon_sym_with] = ACTIONS(2121), + [anon_sym_def] = ACTIONS(2121), + [anon_sym_global] = ACTIONS(2121), + [anon_sym_nonlocal] = ACTIONS(2121), + [anon_sym_exec] = ACTIONS(2121), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_AT] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(2123), + [anon_sym_not] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2123), + [anon_sym_TILDE] = ACTIONS(2123), + [anon_sym_LT] = ACTIONS(2123), + [anon_sym_lambda] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), + [anon_sym_None] = ACTIONS(2121), + [sym_integer] = ACTIONS(2121), + [sym_float] = ACTIONS(2123), + [anon_sym_await] = ACTIONS(2121), + [anon_sym_api] = ACTIONS(2121), + [sym_true] = ACTIONS(2121), + [sym_false] = ACTIONS(2121), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2121), + [anon_sym_include] = ACTIONS(2121), + [anon_sym_DEF] = ACTIONS(2121), + [anon_sym_cdef] = ACTIONS(2121), + [anon_sym_cpdef] = ACTIONS(2121), + [anon_sym_int] = ACTIONS(2121), + [anon_sym_double] = ACTIONS(2121), + [anon_sym_complex] = ACTIONS(2121), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_signed] = ACTIONS(2121), + [anon_sym_unsigned] = ACTIONS(2121), + [anon_sym_char] = ACTIONS(2121), + [anon_sym_short] = ACTIONS(2121), + [anon_sym_long] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_volatile] = ACTIONS(2121), + [anon_sym_ctypedef] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2121), + [anon_sym_union] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_cppclass] = ACTIONS(2121), + [anon_sym_fused] = ACTIONS(2121), + [anon_sym_public] = ACTIONS(2121), + [anon_sym_packed] = ACTIONS(2121), + [anon_sym_inline] = ACTIONS(2121), + [anon_sym_readonly] = ACTIONS(2121), + [anon_sym_sizeof] = ACTIONS(2121), + [sym__dedent] = ACTIONS(2123), + [sym_string_start] = ACTIONS(2123), }, [655] = { - [sym_identifier] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2165), - [anon_sym_import] = ACTIONS(2163), - [anon_sym_cimport] = ACTIONS(2163), - [anon_sym_from] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(2165), - [anon_sym_print] = ACTIONS(2163), - [anon_sym_assert] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_del] = ACTIONS(2163), - [anon_sym_raise] = ACTIONS(2163), - [anon_sym_pass] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_match] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [anon_sym_with] = ACTIONS(2163), - [anon_sym_def] = ACTIONS(2163), - [anon_sym_global] = ACTIONS(2163), - [anon_sym_nonlocal] = ACTIONS(2163), - [anon_sym_exec] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_class] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_AT] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_PLUS] = ACTIONS(2165), - [anon_sym_not] = ACTIONS(2163), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_TILDE] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_lambda] = ACTIONS(2163), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2165), - [anon_sym_None] = ACTIONS(2163), - [sym_integer] = ACTIONS(2163), - [sym_float] = ACTIONS(2165), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_api] = ACTIONS(2163), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2163), - [anon_sym_include] = ACTIONS(2163), - [anon_sym_DEF] = ACTIONS(2163), - [anon_sym_cdef] = ACTIONS(2163), - [anon_sym_cpdef] = ACTIONS(2163), - [anon_sym_int] = ACTIONS(2163), - [anon_sym_double] = ACTIONS(2163), - [anon_sym_complex] = ACTIONS(2163), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_signed] = ACTIONS(2163), - [anon_sym_unsigned] = ACTIONS(2163), - [anon_sym_char] = ACTIONS(2163), - [anon_sym_short] = ACTIONS(2163), - [anon_sym_long] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_volatile] = ACTIONS(2163), - [anon_sym_ctypedef] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2163), - [anon_sym_union] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [anon_sym_cppclass] = ACTIONS(2163), - [anon_sym_fused] = ACTIONS(2163), - [anon_sym_public] = ACTIONS(2163), - [anon_sym_packed] = ACTIONS(2163), - [anon_sym_inline] = ACTIONS(2163), - [anon_sym_readonly] = ACTIONS(2163), - [anon_sym_sizeof] = ACTIONS(2163), - [sym__dedent] = ACTIONS(2165), - [sym_string_start] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_cimport] = ACTIONS(2125), + [anon_sym_from] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_print] = ACTIONS(2125), + [anon_sym_assert] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_del] = ACTIONS(2125), + [anon_sym_raise] = ACTIONS(2125), + [anon_sym_pass] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_def] = ACTIONS(2125), + [anon_sym_global] = ACTIONS(2125), + [anon_sym_nonlocal] = ACTIONS(2125), + [anon_sym_exec] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(2127), + [anon_sym_not] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_TILDE] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2127), + [anon_sym_lambda] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2127), + [anon_sym_None] = ACTIONS(2125), + [sym_integer] = ACTIONS(2125), + [sym_float] = ACTIONS(2127), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_api] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2125), + [anon_sym_include] = ACTIONS(2125), + [anon_sym_DEF] = ACTIONS(2125), + [anon_sym_cdef] = ACTIONS(2125), + [anon_sym_cpdef] = ACTIONS(2125), + [anon_sym_int] = ACTIONS(2125), + [anon_sym_double] = ACTIONS(2125), + [anon_sym_complex] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_signed] = ACTIONS(2125), + [anon_sym_unsigned] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [anon_sym_short] = ACTIONS(2125), + [anon_sym_long] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_volatile] = ACTIONS(2125), + [anon_sym_ctypedef] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_cppclass] = ACTIONS(2125), + [anon_sym_fused] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_packed] = ACTIONS(2125), + [anon_sym_inline] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_sizeof] = ACTIONS(2125), + [sym__dedent] = ACTIONS(2127), + [sym_string_start] = ACTIONS(2127), }, [656] = { - [sym_identifier] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_cimport] = ACTIONS(2167), - [anon_sym_from] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_print] = ACTIONS(2167), - [anon_sym_assert] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_del] = ACTIONS(2167), - [anon_sym_raise] = ACTIONS(2167), - [anon_sym_pass] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_def] = ACTIONS(2167), - [anon_sym_global] = ACTIONS(2167), - [anon_sym_nonlocal] = ACTIONS(2167), - [anon_sym_exec] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_AT] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2169), - [anon_sym_not] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_lambda] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2169), - [anon_sym_None] = ACTIONS(2167), - [sym_integer] = ACTIONS(2167), - [sym_float] = ACTIONS(2169), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_api] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2167), - [anon_sym_include] = ACTIONS(2167), - [anon_sym_DEF] = ACTIONS(2167), - [anon_sym_cdef] = ACTIONS(2167), - [anon_sym_cpdef] = ACTIONS(2167), - [anon_sym_int] = ACTIONS(2167), - [anon_sym_double] = ACTIONS(2167), - [anon_sym_complex] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_signed] = ACTIONS(2167), - [anon_sym_unsigned] = ACTIONS(2167), - [anon_sym_char] = ACTIONS(2167), - [anon_sym_short] = ACTIONS(2167), - [anon_sym_long] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_volatile] = ACTIONS(2167), - [anon_sym_ctypedef] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_union] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [anon_sym_cppclass] = ACTIONS(2167), - [anon_sym_fused] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_packed] = ACTIONS(2167), - [anon_sym_inline] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_sizeof] = ACTIONS(2167), - [sym__dedent] = ACTIONS(2169), - [sym_string_start] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_import] = ACTIONS(2129), + [anon_sym_cimport] = ACTIONS(2129), + [anon_sym_from] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_print] = ACTIONS(2129), + [anon_sym_assert] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_del] = ACTIONS(2129), + [anon_sym_raise] = ACTIONS(2129), + [anon_sym_pass] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_with] = ACTIONS(2129), + [anon_sym_def] = ACTIONS(2129), + [anon_sym_global] = ACTIONS(2129), + [anon_sym_nonlocal] = ACTIONS(2129), + [anon_sym_exec] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_AT] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_PLUS] = ACTIONS(2131), + [anon_sym_not] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2131), + [anon_sym_TILDE] = ACTIONS(2131), + [anon_sym_LT] = ACTIONS(2131), + [anon_sym_lambda] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), + [anon_sym_None] = ACTIONS(2129), + [sym_integer] = ACTIONS(2129), + [sym_float] = ACTIONS(2131), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_api] = ACTIONS(2129), + [sym_true] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2129), + [anon_sym_include] = ACTIONS(2129), + [anon_sym_DEF] = ACTIONS(2129), + [anon_sym_cdef] = ACTIONS(2129), + [anon_sym_cpdef] = ACTIONS(2129), + [anon_sym_int] = ACTIONS(2129), + [anon_sym_double] = ACTIONS(2129), + [anon_sym_complex] = ACTIONS(2129), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_signed] = ACTIONS(2129), + [anon_sym_unsigned] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [anon_sym_short] = ACTIONS(2129), + [anon_sym_long] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_volatile] = ACTIONS(2129), + [anon_sym_ctypedef] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_cppclass] = ACTIONS(2129), + [anon_sym_fused] = ACTIONS(2129), + [anon_sym_public] = ACTIONS(2129), + [anon_sym_packed] = ACTIONS(2129), + [anon_sym_inline] = ACTIONS(2129), + [anon_sym_readonly] = ACTIONS(2129), + [anon_sym_sizeof] = ACTIONS(2129), + [sym__dedent] = ACTIONS(2131), + [sym_string_start] = ACTIONS(2131), }, [657] = { - [sym_identifier] = ACTIONS(2171), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_import] = ACTIONS(2171), - [anon_sym_cimport] = ACTIONS(2171), - [anon_sym_from] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_print] = ACTIONS(2171), - [anon_sym_assert] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_del] = ACTIONS(2171), - [anon_sym_raise] = ACTIONS(2171), - [anon_sym_pass] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_async] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_while] = ACTIONS(2171), - [anon_sym_try] = ACTIONS(2171), - [anon_sym_with] = ACTIONS(2171), - [anon_sym_def] = ACTIONS(2171), - [anon_sym_global] = ACTIONS(2171), - [anon_sym_nonlocal] = ACTIONS(2171), - [anon_sym_exec] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2171), - [anon_sym_class] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_AT] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_not] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_lambda] = ACTIONS(2171), - [anon_sym_yield] = ACTIONS(2171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2173), - [anon_sym_None] = ACTIONS(2171), - [sym_integer] = ACTIONS(2171), - [sym_float] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2171), - [anon_sym_api] = ACTIONS(2171), - [sym_true] = ACTIONS(2171), - [sym_false] = ACTIONS(2171), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2171), - [anon_sym_include] = ACTIONS(2171), - [anon_sym_DEF] = ACTIONS(2171), - [anon_sym_cdef] = ACTIONS(2171), - [anon_sym_cpdef] = ACTIONS(2171), - [anon_sym_int] = ACTIONS(2171), - [anon_sym_double] = ACTIONS(2171), - [anon_sym_complex] = ACTIONS(2171), - [anon_sym_new] = ACTIONS(2171), - [anon_sym_signed] = ACTIONS(2171), - [anon_sym_unsigned] = ACTIONS(2171), - [anon_sym_char] = ACTIONS(2171), - [anon_sym_short] = ACTIONS(2171), - [anon_sym_long] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_volatile] = ACTIONS(2171), - [anon_sym_ctypedef] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_union] = ACTIONS(2171), - [anon_sym_enum] = ACTIONS(2171), - [anon_sym_cppclass] = ACTIONS(2171), - [anon_sym_fused] = ACTIONS(2171), - [anon_sym_public] = ACTIONS(2171), - [anon_sym_packed] = ACTIONS(2171), - [anon_sym_inline] = ACTIONS(2171), - [anon_sym_readonly] = ACTIONS(2171), - [anon_sym_sizeof] = ACTIONS(2171), - [sym__dedent] = ACTIONS(2173), - [sym_string_start] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_import] = ACTIONS(2133), + [anon_sym_cimport] = ACTIONS(2133), + [anon_sym_from] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_print] = ACTIONS(2133), + [anon_sym_assert] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_del] = ACTIONS(2133), + [anon_sym_raise] = ACTIONS(2133), + [anon_sym_pass] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [anon_sym_with] = ACTIONS(2133), + [anon_sym_def] = ACTIONS(2133), + [anon_sym_global] = ACTIONS(2133), + [anon_sym_nonlocal] = ACTIONS(2133), + [anon_sym_exec] = ACTIONS(2133), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_class] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_AT] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_not] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_LT] = ACTIONS(2135), + [anon_sym_lambda] = ACTIONS(2133), + [anon_sym_yield] = ACTIONS(2133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2135), + [anon_sym_None] = ACTIONS(2133), + [sym_integer] = ACTIONS(2133), + [sym_float] = ACTIONS(2135), + [anon_sym_await] = ACTIONS(2133), + [anon_sym_api] = ACTIONS(2133), + [sym_true] = ACTIONS(2133), + [sym_false] = ACTIONS(2133), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2133), + [anon_sym_include] = ACTIONS(2133), + [anon_sym_DEF] = ACTIONS(2133), + [anon_sym_cdef] = ACTIONS(2133), + [anon_sym_cpdef] = ACTIONS(2133), + [anon_sym_int] = ACTIONS(2133), + [anon_sym_double] = ACTIONS(2133), + [anon_sym_complex] = ACTIONS(2133), + [anon_sym_new] = ACTIONS(2133), + [anon_sym_signed] = ACTIONS(2133), + [anon_sym_unsigned] = ACTIONS(2133), + [anon_sym_char] = ACTIONS(2133), + [anon_sym_short] = ACTIONS(2133), + [anon_sym_long] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_volatile] = ACTIONS(2133), + [anon_sym_ctypedef] = ACTIONS(2133), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_union] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_cppclass] = ACTIONS(2133), + [anon_sym_fused] = ACTIONS(2133), + [anon_sym_public] = ACTIONS(2133), + [anon_sym_packed] = ACTIONS(2133), + [anon_sym_inline] = ACTIONS(2133), + [anon_sym_readonly] = ACTIONS(2133), + [anon_sym_sizeof] = ACTIONS(2133), + [sym__dedent] = ACTIONS(2135), + [sym_string_start] = ACTIONS(2135), }, [658] = { - [sym_identifier] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2177), - [anon_sym_import] = ACTIONS(2175), - [anon_sym_cimport] = ACTIONS(2175), - [anon_sym_from] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_print] = ACTIONS(2175), - [anon_sym_assert] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_del] = ACTIONS(2175), - [anon_sym_raise] = ACTIONS(2175), - [anon_sym_pass] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [anon_sym_with] = ACTIONS(2175), - [anon_sym_def] = ACTIONS(2175), - [anon_sym_global] = ACTIONS(2175), - [anon_sym_nonlocal] = ACTIONS(2175), - [anon_sym_exec] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_class] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2177), - [anon_sym_AT] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_not] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_lambda] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2177), - [anon_sym_None] = ACTIONS(2175), - [sym_integer] = ACTIONS(2175), - [sym_float] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2175), - [anon_sym_api] = ACTIONS(2175), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2175), - [anon_sym_include] = ACTIONS(2175), - [anon_sym_DEF] = ACTIONS(2175), - [anon_sym_cdef] = ACTIONS(2175), - [anon_sym_cpdef] = ACTIONS(2175), - [anon_sym_int] = ACTIONS(2175), - [anon_sym_double] = ACTIONS(2175), - [anon_sym_complex] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2175), - [anon_sym_signed] = ACTIONS(2175), - [anon_sym_unsigned] = ACTIONS(2175), - [anon_sym_char] = ACTIONS(2175), - [anon_sym_short] = ACTIONS(2175), - [anon_sym_long] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_volatile] = ACTIONS(2175), - [anon_sym_ctypedef] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [anon_sym_cppclass] = ACTIONS(2175), - [anon_sym_fused] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_packed] = ACTIONS(2175), - [anon_sym_inline] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_sizeof] = ACTIONS(2175), - [sym__dedent] = ACTIONS(2177), - [sym_string_start] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_import] = ACTIONS(2137), + [anon_sym_cimport] = ACTIONS(2137), + [anon_sym_from] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_print] = ACTIONS(2137), + [anon_sym_assert] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_del] = ACTIONS(2137), + [anon_sym_raise] = ACTIONS(2137), + [anon_sym_pass] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_with] = ACTIONS(2137), + [anon_sym_def] = ACTIONS(2137), + [anon_sym_global] = ACTIONS(2137), + [anon_sym_nonlocal] = ACTIONS(2137), + [anon_sym_exec] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_AT] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2139), + [anon_sym_not] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_lambda] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2139), + [anon_sym_None] = ACTIONS(2137), + [sym_integer] = ACTIONS(2137), + [sym_float] = ACTIONS(2139), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_api] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2137), + [anon_sym_include] = ACTIONS(2137), + [anon_sym_DEF] = ACTIONS(2137), + [anon_sym_cdef] = ACTIONS(2137), + [anon_sym_cpdef] = ACTIONS(2137), + [anon_sym_int] = ACTIONS(2137), + [anon_sym_double] = ACTIONS(2137), + [anon_sym_complex] = ACTIONS(2137), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_signed] = ACTIONS(2137), + [anon_sym_unsigned] = ACTIONS(2137), + [anon_sym_char] = ACTIONS(2137), + [anon_sym_short] = ACTIONS(2137), + [anon_sym_long] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_volatile] = ACTIONS(2137), + [anon_sym_ctypedef] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_union] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_cppclass] = ACTIONS(2137), + [anon_sym_fused] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_packed] = ACTIONS(2137), + [anon_sym_inline] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_sizeof] = ACTIONS(2137), + [sym__dedent] = ACTIONS(2139), + [sym_string_start] = ACTIONS(2139), }, [659] = { - [sym_identifier] = ACTIONS(2179), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2179), - [anon_sym_cimport] = ACTIONS(2179), - [anon_sym_from] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(2181), - [anon_sym_print] = ACTIONS(2179), - [anon_sym_assert] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_del] = ACTIONS(2179), - [anon_sym_raise] = ACTIONS(2179), - [anon_sym_pass] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2179), - [anon_sym_continue] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_async] = ACTIONS(2179), - [anon_sym_for] = ACTIONS(2179), - [anon_sym_while] = ACTIONS(2179), - [anon_sym_try] = ACTIONS(2179), - [anon_sym_with] = ACTIONS(2179), - [anon_sym_def] = ACTIONS(2179), - [anon_sym_global] = ACTIONS(2179), - [anon_sym_nonlocal] = ACTIONS(2179), - [anon_sym_exec] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2179), - [anon_sym_class] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_AT] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_not] = ACTIONS(2179), - [anon_sym_AMP] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_lambda] = ACTIONS(2179), - [anon_sym_yield] = ACTIONS(2179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2181), - [anon_sym_None] = ACTIONS(2179), - [sym_integer] = ACTIONS(2179), - [sym_float] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2179), - [anon_sym_api] = ACTIONS(2179), - [sym_true] = ACTIONS(2179), - [sym_false] = ACTIONS(2179), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2179), - [anon_sym_include] = ACTIONS(2179), - [anon_sym_DEF] = ACTIONS(2179), - [anon_sym_cdef] = ACTIONS(2179), - [anon_sym_cpdef] = ACTIONS(2179), - [anon_sym_int] = ACTIONS(2179), - [anon_sym_double] = ACTIONS(2179), - [anon_sym_complex] = ACTIONS(2179), - [anon_sym_new] = ACTIONS(2179), - [anon_sym_signed] = ACTIONS(2179), - [anon_sym_unsigned] = ACTIONS(2179), - [anon_sym_char] = ACTIONS(2179), - [anon_sym_short] = ACTIONS(2179), - [anon_sym_long] = ACTIONS(2179), - [anon_sym_const] = ACTIONS(2179), - [anon_sym_volatile] = ACTIONS(2179), - [anon_sym_ctypedef] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2179), - [anon_sym_enum] = ACTIONS(2179), - [anon_sym_cppclass] = ACTIONS(2179), - [anon_sym_fused] = ACTIONS(2179), - [anon_sym_public] = ACTIONS(2179), - [anon_sym_packed] = ACTIONS(2179), - [anon_sym_inline] = ACTIONS(2179), - [anon_sym_readonly] = ACTIONS(2179), - [anon_sym_sizeof] = ACTIONS(2179), - [sym__dedent] = ACTIONS(2181), - [sym_string_start] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2141), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_cimport] = ACTIONS(2141), + [anon_sym_from] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_print] = ACTIONS(2141), + [anon_sym_assert] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_del] = ACTIONS(2141), + [anon_sym_raise] = ACTIONS(2141), + [anon_sym_pass] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_try] = ACTIONS(2141), + [anon_sym_with] = ACTIONS(2141), + [anon_sym_def] = ACTIONS(2141), + [anon_sym_global] = ACTIONS(2141), + [anon_sym_nonlocal] = ACTIONS(2141), + [anon_sym_exec] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_class] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_AT] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_PLUS] = ACTIONS(2143), + [anon_sym_not] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2143), + [anon_sym_LT] = ACTIONS(2143), + [anon_sym_lambda] = ACTIONS(2141), + [anon_sym_yield] = ACTIONS(2141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2143), + [anon_sym_None] = ACTIONS(2141), + [sym_integer] = ACTIONS(2141), + [sym_float] = ACTIONS(2143), + [anon_sym_await] = ACTIONS(2141), + [anon_sym_api] = ACTIONS(2141), + [sym_true] = ACTIONS(2141), + [sym_false] = ACTIONS(2141), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2141), + [anon_sym_include] = ACTIONS(2141), + [anon_sym_DEF] = ACTIONS(2141), + [anon_sym_cdef] = ACTIONS(2141), + [anon_sym_cpdef] = ACTIONS(2141), + [anon_sym_int] = ACTIONS(2141), + [anon_sym_double] = ACTIONS(2141), + [anon_sym_complex] = ACTIONS(2141), + [anon_sym_new] = ACTIONS(2141), + [anon_sym_signed] = ACTIONS(2141), + [anon_sym_unsigned] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [anon_sym_short] = ACTIONS(2141), + [anon_sym_long] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_volatile] = ACTIONS(2141), + [anon_sym_ctypedef] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_cppclass] = ACTIONS(2141), + [anon_sym_fused] = ACTIONS(2141), + [anon_sym_public] = ACTIONS(2141), + [anon_sym_packed] = ACTIONS(2141), + [anon_sym_inline] = ACTIONS(2141), + [anon_sym_readonly] = ACTIONS(2141), + [anon_sym_sizeof] = ACTIONS(2141), + [sym__dedent] = ACTIONS(2143), + [sym_string_start] = ACTIONS(2143), }, [660] = { - [sym_identifier] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_import] = ACTIONS(2183), - [anon_sym_cimport] = ACTIONS(2183), - [anon_sym_from] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_print] = ACTIONS(2183), - [anon_sym_assert] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_del] = ACTIONS(2183), - [anon_sym_raise] = ACTIONS(2183), - [anon_sym_pass] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [anon_sym_with] = ACTIONS(2183), - [anon_sym_def] = ACTIONS(2183), - [anon_sym_global] = ACTIONS(2183), - [anon_sym_nonlocal] = ACTIONS(2183), - [anon_sym_exec] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_AT] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_PLUS] = ACTIONS(2185), - [anon_sym_not] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_TILDE] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_lambda] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2185), - [anon_sym_None] = ACTIONS(2183), - [sym_integer] = ACTIONS(2183), - [sym_float] = ACTIONS(2185), - [anon_sym_await] = ACTIONS(2183), - [anon_sym_api] = ACTIONS(2183), - [sym_true] = ACTIONS(2183), - [sym_false] = ACTIONS(2183), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2183), - [anon_sym_include] = ACTIONS(2183), - [anon_sym_DEF] = ACTIONS(2183), - [anon_sym_cdef] = ACTIONS(2183), - [anon_sym_cpdef] = ACTIONS(2183), - [anon_sym_int] = ACTIONS(2183), - [anon_sym_double] = ACTIONS(2183), - [anon_sym_complex] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2183), - [anon_sym_signed] = ACTIONS(2183), - [anon_sym_unsigned] = ACTIONS(2183), - [anon_sym_char] = ACTIONS(2183), - [anon_sym_short] = ACTIONS(2183), - [anon_sym_long] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_volatile] = ACTIONS(2183), - [anon_sym_ctypedef] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2183), - [anon_sym_union] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [anon_sym_cppclass] = ACTIONS(2183), - [anon_sym_fused] = ACTIONS(2183), - [anon_sym_public] = ACTIONS(2183), - [anon_sym_packed] = ACTIONS(2183), - [anon_sym_inline] = ACTIONS(2183), - [anon_sym_readonly] = ACTIONS(2183), - [anon_sym_sizeof] = ACTIONS(2183), - [sym__dedent] = ACTIONS(2185), - [sym_string_start] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2145), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_import] = ACTIONS(2145), + [anon_sym_cimport] = ACTIONS(2145), + [anon_sym_from] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_print] = ACTIONS(2145), + [anon_sym_assert] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_del] = ACTIONS(2145), + [anon_sym_raise] = ACTIONS(2145), + [anon_sym_pass] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_match] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_with] = ACTIONS(2145), + [anon_sym_def] = ACTIONS(2145), + [anon_sym_global] = ACTIONS(2145), + [anon_sym_nonlocal] = ACTIONS(2145), + [anon_sym_exec] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_AT] = ACTIONS(2147), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(2147), + [anon_sym_not] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_TILDE] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_lambda] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2147), + [anon_sym_None] = ACTIONS(2145), + [sym_integer] = ACTIONS(2145), + [sym_float] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_api] = ACTIONS(2145), + [sym_true] = ACTIONS(2145), + [sym_false] = ACTIONS(2145), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2145), + [anon_sym_include] = ACTIONS(2145), + [anon_sym_DEF] = ACTIONS(2145), + [anon_sym_cdef] = ACTIONS(2145), + [anon_sym_cpdef] = ACTIONS(2145), + [anon_sym_int] = ACTIONS(2145), + [anon_sym_double] = ACTIONS(2145), + [anon_sym_complex] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_signed] = ACTIONS(2145), + [anon_sym_unsigned] = ACTIONS(2145), + [anon_sym_char] = ACTIONS(2145), + [anon_sym_short] = ACTIONS(2145), + [anon_sym_long] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_volatile] = ACTIONS(2145), + [anon_sym_ctypedef] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2145), + [anon_sym_union] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [anon_sym_cppclass] = ACTIONS(2145), + [anon_sym_fused] = ACTIONS(2145), + [anon_sym_public] = ACTIONS(2145), + [anon_sym_packed] = ACTIONS(2145), + [anon_sym_inline] = ACTIONS(2145), + [anon_sym_readonly] = ACTIONS(2145), + [anon_sym_sizeof] = ACTIONS(2145), + [sym__dedent] = ACTIONS(2147), + [sym_string_start] = ACTIONS(2147), }, [661] = { - [sym_identifier] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_import] = ACTIONS(2187), - [anon_sym_cimport] = ACTIONS(2187), - [anon_sym_from] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2189), - [anon_sym_print] = ACTIONS(2187), - [anon_sym_assert] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_del] = ACTIONS(2187), - [anon_sym_raise] = ACTIONS(2187), - [anon_sym_pass] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_match] = ACTIONS(2187), - [anon_sym_async] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [anon_sym_with] = ACTIONS(2187), - [anon_sym_def] = ACTIONS(2187), - [anon_sym_global] = ACTIONS(2187), - [anon_sym_nonlocal] = ACTIONS(2187), - [anon_sym_exec] = ACTIONS(2187), - [anon_sym_type] = ACTIONS(2187), - [anon_sym_class] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_AT] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_PLUS] = ACTIONS(2189), - [anon_sym_not] = ACTIONS(2187), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_TILDE] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_lambda] = ACTIONS(2187), - [anon_sym_yield] = ACTIONS(2187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2189), - [anon_sym_None] = ACTIONS(2187), - [sym_integer] = ACTIONS(2187), - [sym_float] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2187), - [anon_sym_api] = ACTIONS(2187), - [sym_true] = ACTIONS(2187), - [sym_false] = ACTIONS(2187), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2187), - [anon_sym_include] = ACTIONS(2187), - [anon_sym_DEF] = ACTIONS(2187), - [anon_sym_cdef] = ACTIONS(2187), - [anon_sym_cpdef] = ACTIONS(2187), - [anon_sym_int] = ACTIONS(2187), - [anon_sym_double] = ACTIONS(2187), - [anon_sym_complex] = ACTIONS(2187), - [anon_sym_new] = ACTIONS(2187), - [anon_sym_signed] = ACTIONS(2187), - [anon_sym_unsigned] = ACTIONS(2187), - [anon_sym_char] = ACTIONS(2187), - [anon_sym_short] = ACTIONS(2187), - [anon_sym_long] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_volatile] = ACTIONS(2187), - [anon_sym_ctypedef] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2187), - [anon_sym_union] = ACTIONS(2187), - [anon_sym_enum] = ACTIONS(2187), - [anon_sym_cppclass] = ACTIONS(2187), - [anon_sym_fused] = ACTIONS(2187), - [anon_sym_public] = ACTIONS(2187), - [anon_sym_packed] = ACTIONS(2187), - [anon_sym_inline] = ACTIONS(2187), - [anon_sym_readonly] = ACTIONS(2187), - [anon_sym_sizeof] = ACTIONS(2187), - [sym__dedent] = ACTIONS(2189), - [sym_string_start] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_import] = ACTIONS(2149), + [anon_sym_cimport] = ACTIONS(2149), + [anon_sym_from] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_print] = ACTIONS(2149), + [anon_sym_assert] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_del] = ACTIONS(2149), + [anon_sym_raise] = ACTIONS(2149), + [anon_sym_pass] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(2149), + [anon_sym_def] = ACTIONS(2149), + [anon_sym_global] = ACTIONS(2149), + [anon_sym_nonlocal] = ACTIONS(2149), + [anon_sym_exec] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_AT] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2151), + [anon_sym_not] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_lambda] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2151), + [anon_sym_None] = ACTIONS(2149), + [sym_integer] = ACTIONS(2149), + [sym_float] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_api] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2149), + [anon_sym_include] = ACTIONS(2149), + [anon_sym_DEF] = ACTIONS(2149), + [anon_sym_cdef] = ACTIONS(2149), + [anon_sym_cpdef] = ACTIONS(2149), + [anon_sym_int] = ACTIONS(2149), + [anon_sym_double] = ACTIONS(2149), + [anon_sym_complex] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_signed] = ACTIONS(2149), + [anon_sym_unsigned] = ACTIONS(2149), + [anon_sym_char] = ACTIONS(2149), + [anon_sym_short] = ACTIONS(2149), + [anon_sym_long] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_volatile] = ACTIONS(2149), + [anon_sym_ctypedef] = ACTIONS(2149), + [anon_sym_struct] = ACTIONS(2149), + [anon_sym_union] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_cppclass] = ACTIONS(2149), + [anon_sym_fused] = ACTIONS(2149), + [anon_sym_public] = ACTIONS(2149), + [anon_sym_packed] = ACTIONS(2149), + [anon_sym_inline] = ACTIONS(2149), + [anon_sym_readonly] = ACTIONS(2149), + [anon_sym_sizeof] = ACTIONS(2149), + [sym__dedent] = ACTIONS(2151), + [sym_string_start] = ACTIONS(2151), }, [662] = { - [sym_identifier] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_import] = ACTIONS(2191), - [anon_sym_cimport] = ACTIONS(2191), - [anon_sym_from] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_print] = ACTIONS(2191), - [anon_sym_assert] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2191), - [anon_sym_del] = ACTIONS(2191), - [anon_sym_raise] = ACTIONS(2191), - [anon_sym_pass] = ACTIONS(2191), - [anon_sym_break] = ACTIONS(2191), - [anon_sym_continue] = ACTIONS(2191), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_match] = ACTIONS(2191), - [anon_sym_async] = ACTIONS(2191), - [anon_sym_for] = ACTIONS(2191), - [anon_sym_while] = ACTIONS(2191), - [anon_sym_try] = ACTIONS(2191), - [anon_sym_with] = ACTIONS(2191), - [anon_sym_def] = ACTIONS(2191), - [anon_sym_global] = ACTIONS(2191), - [anon_sym_nonlocal] = ACTIONS(2191), - [anon_sym_exec] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2191), - [anon_sym_class] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_AT] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2193), - [anon_sym_not] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_TILDE] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_lambda] = ACTIONS(2191), - [anon_sym_yield] = ACTIONS(2191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), - [anon_sym_None] = ACTIONS(2191), - [sym_integer] = ACTIONS(2191), - [sym_float] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_api] = ACTIONS(2191), - [sym_true] = ACTIONS(2191), - [sym_false] = ACTIONS(2191), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2191), - [anon_sym_include] = ACTIONS(2191), - [anon_sym_DEF] = ACTIONS(2191), - [anon_sym_cdef] = ACTIONS(2191), - [anon_sym_cpdef] = ACTIONS(2191), - [anon_sym_int] = ACTIONS(2191), - [anon_sym_double] = ACTIONS(2191), - [anon_sym_complex] = ACTIONS(2191), - [anon_sym_new] = ACTIONS(2191), - [anon_sym_signed] = ACTIONS(2191), - [anon_sym_unsigned] = ACTIONS(2191), - [anon_sym_char] = ACTIONS(2191), - [anon_sym_short] = ACTIONS(2191), - [anon_sym_long] = ACTIONS(2191), - [anon_sym_const] = ACTIONS(2191), - [anon_sym_volatile] = ACTIONS(2191), - [anon_sym_ctypedef] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2191), - [anon_sym_union] = ACTIONS(2191), - [anon_sym_enum] = ACTIONS(2191), - [anon_sym_cppclass] = ACTIONS(2191), - [anon_sym_fused] = ACTIONS(2191), - [anon_sym_public] = ACTIONS(2191), - [anon_sym_packed] = ACTIONS(2191), - [anon_sym_inline] = ACTIONS(2191), - [anon_sym_readonly] = ACTIONS(2191), - [anon_sym_sizeof] = ACTIONS(2191), - [sym__dedent] = ACTIONS(2193), - [sym_string_start] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2153), + [anon_sym_SEMI] = ACTIONS(2155), + [anon_sym_import] = ACTIONS(2153), + [anon_sym_cimport] = ACTIONS(2153), + [anon_sym_from] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2155), + [anon_sym_print] = ACTIONS(2153), + [anon_sym_assert] = ACTIONS(2153), + [anon_sym_return] = ACTIONS(2153), + [anon_sym_del] = ACTIONS(2153), + [anon_sym_raise] = ACTIONS(2153), + [anon_sym_pass] = ACTIONS(2153), + [anon_sym_break] = ACTIONS(2153), + [anon_sym_continue] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_match] = ACTIONS(2153), + [anon_sym_async] = ACTIONS(2153), + [anon_sym_for] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2153), + [anon_sym_with] = ACTIONS(2153), + [anon_sym_def] = ACTIONS(2153), + [anon_sym_global] = ACTIONS(2153), + [anon_sym_nonlocal] = ACTIONS(2153), + [anon_sym_exec] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2153), + [anon_sym_class] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_AT] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_not] = ACTIONS(2153), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_TILDE] = ACTIONS(2155), + [anon_sym_LT] = ACTIONS(2155), + [anon_sym_lambda] = ACTIONS(2153), + [anon_sym_yield] = ACTIONS(2153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2155), + [anon_sym_None] = ACTIONS(2153), + [sym_integer] = ACTIONS(2153), + [sym_float] = ACTIONS(2155), + [anon_sym_await] = ACTIONS(2153), + [anon_sym_api] = ACTIONS(2153), + [sym_true] = ACTIONS(2153), + [sym_false] = ACTIONS(2153), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2153), + [anon_sym_include] = ACTIONS(2153), + [anon_sym_DEF] = ACTIONS(2153), + [anon_sym_cdef] = ACTIONS(2153), + [anon_sym_cpdef] = ACTIONS(2153), + [anon_sym_int] = ACTIONS(2153), + [anon_sym_double] = ACTIONS(2153), + [anon_sym_complex] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(2153), + [anon_sym_signed] = ACTIONS(2153), + [anon_sym_unsigned] = ACTIONS(2153), + [anon_sym_char] = ACTIONS(2153), + [anon_sym_short] = ACTIONS(2153), + [anon_sym_long] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_volatile] = ACTIONS(2153), + [anon_sym_ctypedef] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(2153), + [anon_sym_union] = ACTIONS(2153), + [anon_sym_enum] = ACTIONS(2153), + [anon_sym_cppclass] = ACTIONS(2153), + [anon_sym_fused] = ACTIONS(2153), + [anon_sym_public] = ACTIONS(2153), + [anon_sym_packed] = ACTIONS(2153), + [anon_sym_inline] = ACTIONS(2153), + [anon_sym_readonly] = ACTIONS(2153), + [anon_sym_sizeof] = ACTIONS(2153), + [sym__dedent] = ACTIONS(2155), + [sym_string_start] = ACTIONS(2155), }, [663] = { - [sym_identifier] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_import] = ACTIONS(2195), - [anon_sym_cimport] = ACTIONS(2195), - [anon_sym_from] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_print] = ACTIONS(2195), - [anon_sym_assert] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_del] = ACTIONS(2195), - [anon_sym_raise] = ACTIONS(2195), - [anon_sym_pass] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_with] = ACTIONS(2195), - [anon_sym_def] = ACTIONS(2195), - [anon_sym_global] = ACTIONS(2195), - [anon_sym_nonlocal] = ACTIONS(2195), - [anon_sym_exec] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_class] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_AT] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_not] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_lambda] = ACTIONS(2195), - [anon_sym_yield] = ACTIONS(2195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2197), - [anon_sym_None] = ACTIONS(2195), - [sym_integer] = ACTIONS(2195), - [sym_float] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_api] = ACTIONS(2195), - [sym_true] = ACTIONS(2195), - [sym_false] = ACTIONS(2195), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2195), - [anon_sym_include] = ACTIONS(2195), - [anon_sym_DEF] = ACTIONS(2195), - [anon_sym_cdef] = ACTIONS(2195), - [anon_sym_cpdef] = ACTIONS(2195), - [anon_sym_int] = ACTIONS(2195), - [anon_sym_double] = ACTIONS(2195), - [anon_sym_complex] = ACTIONS(2195), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_signed] = ACTIONS(2195), - [anon_sym_unsigned] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [anon_sym_short] = ACTIONS(2195), - [anon_sym_long] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_volatile] = ACTIONS(2195), - [anon_sym_ctypedef] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_cppclass] = ACTIONS(2195), - [anon_sym_fused] = ACTIONS(2195), - [anon_sym_public] = ACTIONS(2195), - [anon_sym_packed] = ACTIONS(2195), - [anon_sym_inline] = ACTIONS(2195), - [anon_sym_readonly] = ACTIONS(2195), - [anon_sym_sizeof] = ACTIONS(2195), - [sym__dedent] = ACTIONS(2197), - [sym_string_start] = ACTIONS(2197), + [sym_identifier] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_import] = ACTIONS(2157), + [anon_sym_cimport] = ACTIONS(2157), + [anon_sym_from] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_print] = ACTIONS(2157), + [anon_sym_assert] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_del] = ACTIONS(2157), + [anon_sym_raise] = ACTIONS(2157), + [anon_sym_pass] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [anon_sym_with] = ACTIONS(2157), + [anon_sym_def] = ACTIONS(2157), + [anon_sym_global] = ACTIONS(2157), + [anon_sym_nonlocal] = ACTIONS(2157), + [anon_sym_exec] = ACTIONS(2157), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_class] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_AT] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(2159), + [anon_sym_not] = ACTIONS(2157), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_TILDE] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_lambda] = ACTIONS(2157), + [anon_sym_yield] = ACTIONS(2157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2159), + [anon_sym_None] = ACTIONS(2157), + [sym_integer] = ACTIONS(2157), + [sym_float] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2157), + [anon_sym_api] = ACTIONS(2157), + [sym_true] = ACTIONS(2157), + [sym_false] = ACTIONS(2157), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2157), + [anon_sym_include] = ACTIONS(2157), + [anon_sym_DEF] = ACTIONS(2157), + [anon_sym_cdef] = ACTIONS(2157), + [anon_sym_cpdef] = ACTIONS(2157), + [anon_sym_int] = ACTIONS(2157), + [anon_sym_double] = ACTIONS(2157), + [anon_sym_complex] = ACTIONS(2157), + [anon_sym_new] = ACTIONS(2157), + [anon_sym_signed] = ACTIONS(2157), + [anon_sym_unsigned] = ACTIONS(2157), + [anon_sym_char] = ACTIONS(2157), + [anon_sym_short] = ACTIONS(2157), + [anon_sym_long] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_volatile] = ACTIONS(2157), + [anon_sym_ctypedef] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2157), + [anon_sym_union] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + [anon_sym_cppclass] = ACTIONS(2157), + [anon_sym_fused] = ACTIONS(2157), + [anon_sym_public] = ACTIONS(2157), + [anon_sym_packed] = ACTIONS(2157), + [anon_sym_inline] = ACTIONS(2157), + [anon_sym_readonly] = ACTIONS(2157), + [anon_sym_sizeof] = ACTIONS(2157), + [sym__dedent] = ACTIONS(2159), + [sym_string_start] = ACTIONS(2159), }, [664] = { - [sym_identifier] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2201), - [anon_sym_import] = ACTIONS(2199), - [anon_sym_cimport] = ACTIONS(2199), - [anon_sym_from] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_print] = ACTIONS(2199), - [anon_sym_assert] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_del] = ACTIONS(2199), - [anon_sym_raise] = ACTIONS(2199), - [anon_sym_pass] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_match] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_with] = ACTIONS(2199), - [anon_sym_def] = ACTIONS(2199), - [anon_sym_global] = ACTIONS(2199), - [anon_sym_nonlocal] = ACTIONS(2199), - [anon_sym_exec] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_class] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_AT] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_PLUS] = ACTIONS(2201), - [anon_sym_not] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_TILDE] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_lambda] = ACTIONS(2199), - [anon_sym_yield] = ACTIONS(2199), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), - [anon_sym_None] = ACTIONS(2199), - [sym_integer] = ACTIONS(2199), - [sym_float] = ACTIONS(2201), - [anon_sym_await] = ACTIONS(2199), - [anon_sym_api] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2199), - [anon_sym_include] = ACTIONS(2199), - [anon_sym_DEF] = ACTIONS(2199), - [anon_sym_cdef] = ACTIONS(2199), - [anon_sym_cpdef] = ACTIONS(2199), - [anon_sym_int] = ACTIONS(2199), - [anon_sym_double] = ACTIONS(2199), - [anon_sym_complex] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2199), - [anon_sym_signed] = ACTIONS(2199), - [anon_sym_unsigned] = ACTIONS(2199), - [anon_sym_char] = ACTIONS(2199), - [anon_sym_short] = ACTIONS(2199), - [anon_sym_long] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_volatile] = ACTIONS(2199), - [anon_sym_ctypedef] = ACTIONS(2199), - [anon_sym_struct] = ACTIONS(2199), - [anon_sym_union] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [anon_sym_cppclass] = ACTIONS(2199), - [anon_sym_fused] = ACTIONS(2199), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_packed] = ACTIONS(2199), - [anon_sym_inline] = ACTIONS(2199), - [anon_sym_readonly] = ACTIONS(2199), - [anon_sym_sizeof] = ACTIONS(2199), - [sym__dedent] = ACTIONS(2201), - [sym_string_start] = ACTIONS(2201), + [sym_identifier] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_import] = ACTIONS(2161), + [anon_sym_cimport] = ACTIONS(2161), + [anon_sym_from] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_print] = ACTIONS(2161), + [anon_sym_assert] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_del] = ACTIONS(2161), + [anon_sym_raise] = ACTIONS(2161), + [anon_sym_pass] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [anon_sym_with] = ACTIONS(2161), + [anon_sym_def] = ACTIONS(2161), + [anon_sym_global] = ACTIONS(2161), + [anon_sym_nonlocal] = ACTIONS(2161), + [anon_sym_exec] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_class] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_not] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_lambda] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2163), + [anon_sym_None] = ACTIONS(2161), + [sym_integer] = ACTIONS(2161), + [sym_float] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_api] = ACTIONS(2161), + [sym_true] = ACTIONS(2161), + [sym_false] = ACTIONS(2161), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2161), + [anon_sym_include] = ACTIONS(2161), + [anon_sym_DEF] = ACTIONS(2161), + [anon_sym_cdef] = ACTIONS(2161), + [anon_sym_cpdef] = ACTIONS(2161), + [anon_sym_int] = ACTIONS(2161), + [anon_sym_double] = ACTIONS(2161), + [anon_sym_complex] = ACTIONS(2161), + [anon_sym_new] = ACTIONS(2161), + [anon_sym_signed] = ACTIONS(2161), + [anon_sym_unsigned] = ACTIONS(2161), + [anon_sym_char] = ACTIONS(2161), + [anon_sym_short] = ACTIONS(2161), + [anon_sym_long] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_volatile] = ACTIONS(2161), + [anon_sym_ctypedef] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_cppclass] = ACTIONS(2161), + [anon_sym_fused] = ACTIONS(2161), + [anon_sym_public] = ACTIONS(2161), + [anon_sym_packed] = ACTIONS(2161), + [anon_sym_inline] = ACTIONS(2161), + [anon_sym_readonly] = ACTIONS(2161), + [anon_sym_sizeof] = ACTIONS(2161), + [sym__dedent] = ACTIONS(2163), + [sym_string_start] = ACTIONS(2163), }, [665] = { - [sym_identifier] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_import] = ACTIONS(2203), - [anon_sym_cimport] = ACTIONS(2203), - [anon_sym_from] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2205), - [anon_sym_print] = ACTIONS(2203), - [anon_sym_assert] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_del] = ACTIONS(2203), - [anon_sym_raise] = ACTIONS(2203), - [anon_sym_pass] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_with] = ACTIONS(2203), - [anon_sym_def] = ACTIONS(2203), - [anon_sym_global] = ACTIONS(2203), - [anon_sym_nonlocal] = ACTIONS(2203), - [anon_sym_exec] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_class] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_AT] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_PLUS] = ACTIONS(2205), - [anon_sym_not] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_TILDE] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_lambda] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2203), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2205), - [anon_sym_None] = ACTIONS(2203), - [sym_integer] = ACTIONS(2203), - [sym_float] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_api] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2203), - [anon_sym_include] = ACTIONS(2203), - [anon_sym_DEF] = ACTIONS(2203), - [anon_sym_cdef] = ACTIONS(2203), - [anon_sym_cpdef] = ACTIONS(2203), - [anon_sym_int] = ACTIONS(2203), - [anon_sym_double] = ACTIONS(2203), - [anon_sym_complex] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_signed] = ACTIONS(2203), - [anon_sym_unsigned] = ACTIONS(2203), - [anon_sym_char] = ACTIONS(2203), - [anon_sym_short] = ACTIONS(2203), - [anon_sym_long] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_volatile] = ACTIONS(2203), - [anon_sym_ctypedef] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_cppclass] = ACTIONS(2203), - [anon_sym_fused] = ACTIONS(2203), - [anon_sym_public] = ACTIONS(2203), - [anon_sym_packed] = ACTIONS(2203), - [anon_sym_inline] = ACTIONS(2203), - [anon_sym_readonly] = ACTIONS(2203), - [anon_sym_sizeof] = ACTIONS(2203), - [sym__dedent] = ACTIONS(2205), - [sym_string_start] = ACTIONS(2205), + [sym_identifier] = ACTIONS(2165), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_cimport] = ACTIONS(2165), + [anon_sym_from] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_print] = ACTIONS(2165), + [anon_sym_assert] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_del] = ACTIONS(2165), + [anon_sym_raise] = ACTIONS(2165), + [anon_sym_pass] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2165), + [anon_sym_with] = ACTIONS(2165), + [anon_sym_def] = ACTIONS(2165), + [anon_sym_global] = ACTIONS(2165), + [anon_sym_nonlocal] = ACTIONS(2165), + [anon_sym_exec] = ACTIONS(2165), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_class] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_not] = ACTIONS(2165), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_lambda] = ACTIONS(2165), + [anon_sym_yield] = ACTIONS(2165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2167), + [anon_sym_None] = ACTIONS(2165), + [sym_integer] = ACTIONS(2165), + [sym_float] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2165), + [anon_sym_api] = ACTIONS(2165), + [sym_true] = ACTIONS(2165), + [sym_false] = ACTIONS(2165), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2165), + [anon_sym_include] = ACTIONS(2165), + [anon_sym_DEF] = ACTIONS(2165), + [anon_sym_cdef] = ACTIONS(2165), + [anon_sym_cpdef] = ACTIONS(2165), + [anon_sym_int] = ACTIONS(2165), + [anon_sym_double] = ACTIONS(2165), + [anon_sym_complex] = ACTIONS(2165), + [anon_sym_new] = ACTIONS(2165), + [anon_sym_signed] = ACTIONS(2165), + [anon_sym_unsigned] = ACTIONS(2165), + [anon_sym_char] = ACTIONS(2165), + [anon_sym_short] = ACTIONS(2165), + [anon_sym_long] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [anon_sym_volatile] = ACTIONS(2165), + [anon_sym_ctypedef] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2165), + [anon_sym_union] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_cppclass] = ACTIONS(2165), + [anon_sym_fused] = ACTIONS(2165), + [anon_sym_public] = ACTIONS(2165), + [anon_sym_packed] = ACTIONS(2165), + [anon_sym_inline] = ACTIONS(2165), + [anon_sym_readonly] = ACTIONS(2165), + [anon_sym_sizeof] = ACTIONS(2165), + [sym__dedent] = ACTIONS(2167), + [sym_string_start] = ACTIONS(2167), }, [666] = { - [sym_identifier] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2209), - [anon_sym_import] = ACTIONS(2207), - [anon_sym_cimport] = ACTIONS(2207), - [anon_sym_from] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2209), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_print] = ACTIONS(2207), - [anon_sym_assert] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2207), - [anon_sym_del] = ACTIONS(2207), - [anon_sym_raise] = ACTIONS(2207), - [anon_sym_pass] = ACTIONS(2207), - [anon_sym_break] = ACTIONS(2207), - [anon_sym_continue] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2207), - [anon_sym_match] = ACTIONS(2207), - [anon_sym_async] = ACTIONS(2207), - [anon_sym_for] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_with] = ACTIONS(2207), - [anon_sym_def] = ACTIONS(2207), - [anon_sym_global] = ACTIONS(2207), - [anon_sym_nonlocal] = ACTIONS(2207), - [anon_sym_exec] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2207), - [anon_sym_class] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_AT] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_not] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_TILDE] = ACTIONS(2209), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_lambda] = ACTIONS(2207), - [anon_sym_yield] = ACTIONS(2207), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2209), - [anon_sym_None] = ACTIONS(2207), - [sym_integer] = ACTIONS(2207), - [sym_float] = ACTIONS(2209), - [anon_sym_await] = ACTIONS(2207), - [anon_sym_api] = ACTIONS(2207), - [sym_true] = ACTIONS(2207), - [sym_false] = ACTIONS(2207), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2207), - [anon_sym_include] = ACTIONS(2207), - [anon_sym_DEF] = ACTIONS(2207), - [anon_sym_cdef] = ACTIONS(2207), - [anon_sym_cpdef] = ACTIONS(2207), - [anon_sym_int] = ACTIONS(2207), - [anon_sym_double] = ACTIONS(2207), - [anon_sym_complex] = ACTIONS(2207), - [anon_sym_new] = ACTIONS(2207), - [anon_sym_signed] = ACTIONS(2207), - [anon_sym_unsigned] = ACTIONS(2207), - [anon_sym_char] = ACTIONS(2207), - [anon_sym_short] = ACTIONS(2207), - [anon_sym_long] = ACTIONS(2207), - [anon_sym_const] = ACTIONS(2207), - [anon_sym_volatile] = ACTIONS(2207), - [anon_sym_ctypedef] = ACTIONS(2207), - [anon_sym_struct] = ACTIONS(2207), - [anon_sym_union] = ACTIONS(2207), - [anon_sym_enum] = ACTIONS(2207), - [anon_sym_cppclass] = ACTIONS(2207), - [anon_sym_fused] = ACTIONS(2207), - [anon_sym_public] = ACTIONS(2207), - [anon_sym_packed] = ACTIONS(2207), - [anon_sym_inline] = ACTIONS(2207), - [anon_sym_readonly] = ACTIONS(2207), - [anon_sym_sizeof] = ACTIONS(2207), - [sym__dedent] = ACTIONS(2209), - [sym_string_start] = ACTIONS(2209), + [sym_identifier] = ACTIONS(2169), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_import] = ACTIONS(2169), + [anon_sym_cimport] = ACTIONS(2169), + [anon_sym_from] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_print] = ACTIONS(2169), + [anon_sym_assert] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_del] = ACTIONS(2169), + [anon_sym_raise] = ACTIONS(2169), + [anon_sym_pass] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_async] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [anon_sym_with] = ACTIONS(2169), + [anon_sym_def] = ACTIONS(2169), + [anon_sym_global] = ACTIONS(2169), + [anon_sym_nonlocal] = ACTIONS(2169), + [anon_sym_exec] = ACTIONS(2169), + [anon_sym_type] = ACTIONS(2169), + [anon_sym_class] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_AT] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_TILDE] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_lambda] = ACTIONS(2169), + [anon_sym_yield] = ACTIONS(2169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2171), + [anon_sym_None] = ACTIONS(2169), + [sym_integer] = ACTIONS(2169), + [sym_float] = ACTIONS(2171), + [anon_sym_await] = ACTIONS(2169), + [anon_sym_api] = ACTIONS(2169), + [sym_true] = ACTIONS(2169), + [sym_false] = ACTIONS(2169), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2169), + [anon_sym_include] = ACTIONS(2169), + [anon_sym_DEF] = ACTIONS(2169), + [anon_sym_cdef] = ACTIONS(2169), + [anon_sym_cpdef] = ACTIONS(2169), + [anon_sym_int] = ACTIONS(2169), + [anon_sym_double] = ACTIONS(2169), + [anon_sym_complex] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2169), + [anon_sym_signed] = ACTIONS(2169), + [anon_sym_unsigned] = ACTIONS(2169), + [anon_sym_char] = ACTIONS(2169), + [anon_sym_short] = ACTIONS(2169), + [anon_sym_long] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_volatile] = ACTIONS(2169), + [anon_sym_ctypedef] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2169), + [anon_sym_union] = ACTIONS(2169), + [anon_sym_enum] = ACTIONS(2169), + [anon_sym_cppclass] = ACTIONS(2169), + [anon_sym_fused] = ACTIONS(2169), + [anon_sym_public] = ACTIONS(2169), + [anon_sym_packed] = ACTIONS(2169), + [anon_sym_inline] = ACTIONS(2169), + [anon_sym_readonly] = ACTIONS(2169), + [anon_sym_sizeof] = ACTIONS(2169), + [sym__dedent] = ACTIONS(2171), + [sym_string_start] = ACTIONS(2171), }, [667] = { - [sym_identifier] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2211), - [anon_sym_cimport] = ACTIONS(2211), - [anon_sym_from] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2213), - [anon_sym_print] = ACTIONS(2211), - [anon_sym_assert] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_del] = ACTIONS(2211), - [anon_sym_raise] = ACTIONS(2211), - [anon_sym_pass] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [anon_sym_try] = ACTIONS(2211), - [anon_sym_with] = ACTIONS(2211), - [anon_sym_def] = ACTIONS(2211), - [anon_sym_global] = ACTIONS(2211), - [anon_sym_nonlocal] = ACTIONS(2211), - [anon_sym_exec] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_class] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_not] = ACTIONS(2211), - [anon_sym_AMP] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_lambda] = ACTIONS(2211), - [anon_sym_yield] = ACTIONS(2211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), - [anon_sym_None] = ACTIONS(2211), - [sym_integer] = ACTIONS(2211), - [sym_float] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2211), - [anon_sym_api] = ACTIONS(2211), - [sym_true] = ACTIONS(2211), - [sym_false] = ACTIONS(2211), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2211), - [anon_sym_include] = ACTIONS(2211), - [anon_sym_DEF] = ACTIONS(2211), - [anon_sym_cdef] = ACTIONS(2211), - [anon_sym_cpdef] = ACTIONS(2211), - [anon_sym_int] = ACTIONS(2211), - [anon_sym_double] = ACTIONS(2211), - [anon_sym_complex] = ACTIONS(2211), - [anon_sym_new] = ACTIONS(2211), - [anon_sym_signed] = ACTIONS(2211), - [anon_sym_unsigned] = ACTIONS(2211), - [anon_sym_char] = ACTIONS(2211), - [anon_sym_short] = ACTIONS(2211), - [anon_sym_long] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [anon_sym_volatile] = ACTIONS(2211), - [anon_sym_ctypedef] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2211), - [anon_sym_union] = ACTIONS(2211), - [anon_sym_enum] = ACTIONS(2211), - [anon_sym_cppclass] = ACTIONS(2211), - [anon_sym_fused] = ACTIONS(2211), - [anon_sym_public] = ACTIONS(2211), - [anon_sym_packed] = ACTIONS(2211), - [anon_sym_inline] = ACTIONS(2211), - [anon_sym_readonly] = ACTIONS(2211), - [anon_sym_sizeof] = ACTIONS(2211), - [sym__dedent] = ACTIONS(2213), - [sym_string_start] = ACTIONS(2213), + [sym_identifier] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_cimport] = ACTIONS(2173), + [anon_sym_from] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_print] = ACTIONS(2173), + [anon_sym_assert] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_del] = ACTIONS(2173), + [anon_sym_raise] = ACTIONS(2173), + [anon_sym_pass] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_with] = ACTIONS(2173), + [anon_sym_def] = ACTIONS(2173), + [anon_sym_global] = ACTIONS(2173), + [anon_sym_nonlocal] = ACTIONS(2173), + [anon_sym_exec] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_class] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_not] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_lambda] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2175), + [anon_sym_None] = ACTIONS(2173), + [sym_integer] = ACTIONS(2173), + [sym_float] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_api] = ACTIONS(2173), + [sym_true] = ACTIONS(2173), + [sym_false] = ACTIONS(2173), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2173), + [anon_sym_include] = ACTIONS(2173), + [anon_sym_DEF] = ACTIONS(2173), + [anon_sym_cdef] = ACTIONS(2173), + [anon_sym_cpdef] = ACTIONS(2173), + [anon_sym_int] = ACTIONS(2173), + [anon_sym_double] = ACTIONS(2173), + [anon_sym_complex] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_signed] = ACTIONS(2173), + [anon_sym_unsigned] = ACTIONS(2173), + [anon_sym_char] = ACTIONS(2173), + [anon_sym_short] = ACTIONS(2173), + [anon_sym_long] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_volatile] = ACTIONS(2173), + [anon_sym_ctypedef] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2173), + [anon_sym_union] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + [anon_sym_cppclass] = ACTIONS(2173), + [anon_sym_fused] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_packed] = ACTIONS(2173), + [anon_sym_inline] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_sizeof] = ACTIONS(2173), + [sym__dedent] = ACTIONS(2175), + [sym_string_start] = ACTIONS(2175), }, [668] = { - [sym_identifier] = ACTIONS(2215), - [anon_sym_SEMI] = ACTIONS(2217), - [anon_sym_import] = ACTIONS(2215), - [anon_sym_cimport] = ACTIONS(2215), - [anon_sym_from] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_print] = ACTIONS(2215), - [anon_sym_assert] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_del] = ACTIONS(2215), - [anon_sym_raise] = ACTIONS(2215), - [anon_sym_pass] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_async] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [anon_sym_try] = ACTIONS(2215), - [anon_sym_with] = ACTIONS(2215), - [anon_sym_def] = ACTIONS(2215), - [anon_sym_global] = ACTIONS(2215), - [anon_sym_nonlocal] = ACTIONS(2215), - [anon_sym_exec] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2215), - [anon_sym_class] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2217), - [anon_sym_AT] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_PLUS] = ACTIONS(2217), - [anon_sym_not] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_lambda] = ACTIONS(2215), - [anon_sym_yield] = ACTIONS(2215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2217), - [anon_sym_None] = ACTIONS(2215), - [sym_integer] = ACTIONS(2215), - [sym_float] = ACTIONS(2217), - [anon_sym_await] = ACTIONS(2215), - [anon_sym_api] = ACTIONS(2215), - [sym_true] = ACTIONS(2215), - [sym_false] = ACTIONS(2215), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2215), - [anon_sym_include] = ACTIONS(2215), - [anon_sym_DEF] = ACTIONS(2215), - [anon_sym_cdef] = ACTIONS(2215), - [anon_sym_cpdef] = ACTIONS(2215), - [anon_sym_int] = ACTIONS(2215), - [anon_sym_double] = ACTIONS(2215), - [anon_sym_complex] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2215), - [anon_sym_signed] = ACTIONS(2215), - [anon_sym_unsigned] = ACTIONS(2215), - [anon_sym_char] = ACTIONS(2215), - [anon_sym_short] = ACTIONS(2215), - [anon_sym_long] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [anon_sym_volatile] = ACTIONS(2215), - [anon_sym_ctypedef] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2215), - [anon_sym_union] = ACTIONS(2215), - [anon_sym_enum] = ACTIONS(2215), - [anon_sym_cppclass] = ACTIONS(2215), - [anon_sym_fused] = ACTIONS(2215), - [anon_sym_public] = ACTIONS(2215), - [anon_sym_packed] = ACTIONS(2215), - [anon_sym_inline] = ACTIONS(2215), - [anon_sym_readonly] = ACTIONS(2215), - [anon_sym_sizeof] = ACTIONS(2215), - [sym__dedent] = ACTIONS(2217), - [sym_string_start] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2177), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_import] = ACTIONS(2177), + [anon_sym_cimport] = ACTIONS(2177), + [anon_sym_from] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_STAR] = ACTIONS(2179), + [anon_sym_print] = ACTIONS(2177), + [anon_sym_assert] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_del] = ACTIONS(2177), + [anon_sym_raise] = ACTIONS(2177), + [anon_sym_pass] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [anon_sym_with] = ACTIONS(2177), + [anon_sym_def] = ACTIONS(2177), + [anon_sym_global] = ACTIONS(2177), + [anon_sym_nonlocal] = ACTIONS(2177), + [anon_sym_exec] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_class] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2179), + [anon_sym_AT] = ACTIONS(2179), + [anon_sym_DASH] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_PLUS] = ACTIONS(2179), + [anon_sym_not] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2179), + [anon_sym_TILDE] = ACTIONS(2179), + [anon_sym_LT] = ACTIONS(2179), + [anon_sym_lambda] = ACTIONS(2177), + [anon_sym_yield] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2179), + [anon_sym_None] = ACTIONS(2177), + [sym_integer] = ACTIONS(2177), + [sym_float] = ACTIONS(2179), + [anon_sym_await] = ACTIONS(2177), + [anon_sym_api] = ACTIONS(2177), + [sym_true] = ACTIONS(2177), + [sym_false] = ACTIONS(2177), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2177), + [anon_sym_include] = ACTIONS(2177), + [anon_sym_DEF] = ACTIONS(2177), + [anon_sym_cdef] = ACTIONS(2177), + [anon_sym_cpdef] = ACTIONS(2177), + [anon_sym_int] = ACTIONS(2177), + [anon_sym_double] = ACTIONS(2177), + [anon_sym_complex] = ACTIONS(2177), + [anon_sym_new] = ACTIONS(2177), + [anon_sym_signed] = ACTIONS(2177), + [anon_sym_unsigned] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [anon_sym_short] = ACTIONS(2177), + [anon_sym_long] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_volatile] = ACTIONS(2177), + [anon_sym_ctypedef] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_cppclass] = ACTIONS(2177), + [anon_sym_fused] = ACTIONS(2177), + [anon_sym_public] = ACTIONS(2177), + [anon_sym_packed] = ACTIONS(2177), + [anon_sym_inline] = ACTIONS(2177), + [anon_sym_readonly] = ACTIONS(2177), + [anon_sym_sizeof] = ACTIONS(2177), + [sym__dedent] = ACTIONS(2179), + [sym_string_start] = ACTIONS(2179), }, [669] = { - [sym_identifier] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2219), - [anon_sym_cimport] = ACTIONS(2219), - [anon_sym_from] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2221), - [anon_sym_print] = ACTIONS(2219), - [anon_sym_assert] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2219), - [anon_sym_del] = ACTIONS(2219), - [anon_sym_raise] = ACTIONS(2219), - [anon_sym_pass] = ACTIONS(2219), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_continue] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2219), - [anon_sym_async] = ACTIONS(2219), - [anon_sym_for] = ACTIONS(2219), - [anon_sym_while] = ACTIONS(2219), - [anon_sym_try] = ACTIONS(2219), - [anon_sym_with] = ACTIONS(2219), - [anon_sym_def] = ACTIONS(2219), - [anon_sym_global] = ACTIONS(2219), - [anon_sym_nonlocal] = ACTIONS(2219), - [anon_sym_exec] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2219), - [anon_sym_class] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_not] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_lambda] = ACTIONS(2219), - [anon_sym_yield] = ACTIONS(2219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2221), - [anon_sym_None] = ACTIONS(2219), - [sym_integer] = ACTIONS(2219), - [sym_float] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2219), - [anon_sym_api] = ACTIONS(2219), - [sym_true] = ACTIONS(2219), - [sym_false] = ACTIONS(2219), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2219), - [anon_sym_include] = ACTIONS(2219), - [anon_sym_DEF] = ACTIONS(2219), - [anon_sym_cdef] = ACTIONS(2219), - [anon_sym_cpdef] = ACTIONS(2219), - [anon_sym_int] = ACTIONS(2219), - [anon_sym_double] = ACTIONS(2219), - [anon_sym_complex] = ACTIONS(2219), - [anon_sym_new] = ACTIONS(2219), - [anon_sym_signed] = ACTIONS(2219), - [anon_sym_unsigned] = ACTIONS(2219), - [anon_sym_char] = ACTIONS(2219), - [anon_sym_short] = ACTIONS(2219), - [anon_sym_long] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2219), - [anon_sym_volatile] = ACTIONS(2219), - [anon_sym_ctypedef] = ACTIONS(2219), - [anon_sym_struct] = ACTIONS(2219), - [anon_sym_union] = ACTIONS(2219), - [anon_sym_enum] = ACTIONS(2219), - [anon_sym_cppclass] = ACTIONS(2219), - [anon_sym_fused] = ACTIONS(2219), - [anon_sym_public] = ACTIONS(2219), - [anon_sym_packed] = ACTIONS(2219), - [anon_sym_inline] = ACTIONS(2219), - [anon_sym_readonly] = ACTIONS(2219), - [anon_sym_sizeof] = ACTIONS(2219), - [sym__dedent] = ACTIONS(2221), - [sym_string_start] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2181), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2181), + [anon_sym_cimport] = ACTIONS(2181), + [anon_sym_from] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_print] = ACTIONS(2181), + [anon_sym_assert] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_del] = ACTIONS(2181), + [anon_sym_raise] = ACTIONS(2181), + [anon_sym_pass] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2181), + [anon_sym_with] = ACTIONS(2181), + [anon_sym_def] = ACTIONS(2181), + [anon_sym_global] = ACTIONS(2181), + [anon_sym_nonlocal] = ACTIONS(2181), + [anon_sym_exec] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_class] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_not] = ACTIONS(2181), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_lambda] = ACTIONS(2181), + [anon_sym_yield] = ACTIONS(2181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2183), + [anon_sym_None] = ACTIONS(2181), + [sym_integer] = ACTIONS(2181), + [sym_float] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_api] = ACTIONS(2181), + [sym_true] = ACTIONS(2181), + [sym_false] = ACTIONS(2181), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2181), + [anon_sym_include] = ACTIONS(2181), + [anon_sym_DEF] = ACTIONS(2181), + [anon_sym_cdef] = ACTIONS(2181), + [anon_sym_cpdef] = ACTIONS(2181), + [anon_sym_int] = ACTIONS(2181), + [anon_sym_double] = ACTIONS(2181), + [anon_sym_complex] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2181), + [anon_sym_signed] = ACTIONS(2181), + [anon_sym_unsigned] = ACTIONS(2181), + [anon_sym_char] = ACTIONS(2181), + [anon_sym_short] = ACTIONS(2181), + [anon_sym_long] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_volatile] = ACTIONS(2181), + [anon_sym_ctypedef] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_cppclass] = ACTIONS(2181), + [anon_sym_fused] = ACTIONS(2181), + [anon_sym_public] = ACTIONS(2181), + [anon_sym_packed] = ACTIONS(2181), + [anon_sym_inline] = ACTIONS(2181), + [anon_sym_readonly] = ACTIONS(2181), + [anon_sym_sizeof] = ACTIONS(2181), + [sym__dedent] = ACTIONS(2183), + [sym_string_start] = ACTIONS(2183), }, [670] = { - [sym_identifier] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_import] = ACTIONS(2223), - [anon_sym_cimport] = ACTIONS(2223), - [anon_sym_from] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_print] = ACTIONS(2223), - [anon_sym_assert] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_del] = ACTIONS(2223), - [anon_sym_raise] = ACTIONS(2223), - [anon_sym_pass] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [anon_sym_with] = ACTIONS(2223), - [anon_sym_def] = ACTIONS(2223), - [anon_sym_global] = ACTIONS(2223), - [anon_sym_nonlocal] = ACTIONS(2223), - [anon_sym_exec] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_class] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_AT] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2225), - [anon_sym_not] = ACTIONS(2223), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_lambda] = ACTIONS(2223), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2225), - [anon_sym_None] = ACTIONS(2223), - [sym_integer] = ACTIONS(2223), - [sym_float] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_api] = ACTIONS(2223), - [sym_true] = ACTIONS(2223), - [sym_false] = ACTIONS(2223), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2223), - [anon_sym_include] = ACTIONS(2223), - [anon_sym_DEF] = ACTIONS(2223), - [anon_sym_cdef] = ACTIONS(2223), - [anon_sym_cpdef] = ACTIONS(2223), - [anon_sym_int] = ACTIONS(2223), - [anon_sym_double] = ACTIONS(2223), - [anon_sym_complex] = ACTIONS(2223), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_signed] = ACTIONS(2223), - [anon_sym_unsigned] = ACTIONS(2223), - [anon_sym_char] = ACTIONS(2223), - [anon_sym_short] = ACTIONS(2223), - [anon_sym_long] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_volatile] = ACTIONS(2223), - [anon_sym_ctypedef] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_union] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_cppclass] = ACTIONS(2223), - [anon_sym_fused] = ACTIONS(2223), - [anon_sym_public] = ACTIONS(2223), - [anon_sym_packed] = ACTIONS(2223), - [anon_sym_inline] = ACTIONS(2223), - [anon_sym_readonly] = ACTIONS(2223), - [anon_sym_sizeof] = ACTIONS(2223), - [sym__dedent] = ACTIONS(2225), - [sym_string_start] = ACTIONS(2225), + [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), }, [671] = { - [sym_identifier] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_import] = ACTIONS(2227), - [anon_sym_cimport] = ACTIONS(2227), - [anon_sym_from] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2229), - [anon_sym_print] = ACTIONS(2227), - [anon_sym_assert] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_del] = ACTIONS(2227), - [anon_sym_raise] = ACTIONS(2227), - [anon_sym_pass] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_match] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2227), - [anon_sym_with] = ACTIONS(2227), - [anon_sym_def] = ACTIONS(2227), - [anon_sym_global] = ACTIONS(2227), - [anon_sym_nonlocal] = ACTIONS(2227), - [anon_sym_exec] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_class] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_AT] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_not] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_lambda] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2229), - [anon_sym_None] = ACTIONS(2227), - [sym_integer] = ACTIONS(2227), - [sym_float] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_api] = ACTIONS(2227), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2227), - [anon_sym_include] = ACTIONS(2227), - [anon_sym_DEF] = ACTIONS(2227), - [anon_sym_cdef] = ACTIONS(2227), - [anon_sym_cpdef] = ACTIONS(2227), - [anon_sym_int] = ACTIONS(2227), - [anon_sym_double] = ACTIONS(2227), - [anon_sym_complex] = ACTIONS(2227), - [anon_sym_new] = ACTIONS(2227), - [anon_sym_signed] = ACTIONS(2227), - [anon_sym_unsigned] = ACTIONS(2227), - [anon_sym_char] = ACTIONS(2227), - [anon_sym_short] = ACTIONS(2227), - [anon_sym_long] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_volatile] = ACTIONS(2227), - [anon_sym_ctypedef] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [anon_sym_cppclass] = ACTIONS(2227), - [anon_sym_fused] = ACTIONS(2227), - [anon_sym_public] = ACTIONS(2227), - [anon_sym_packed] = ACTIONS(2227), - [anon_sym_inline] = ACTIONS(2227), - [anon_sym_readonly] = ACTIONS(2227), - [anon_sym_sizeof] = ACTIONS(2227), - [sym__dedent] = ACTIONS(2229), - [sym_string_start] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_import] = ACTIONS(2189), + [anon_sym_cimport] = ACTIONS(2189), + [anon_sym_from] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_print] = ACTIONS(2189), + [anon_sym_assert] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_del] = ACTIONS(2189), + [anon_sym_raise] = ACTIONS(2189), + [anon_sym_pass] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_with] = ACTIONS(2189), + [anon_sym_def] = ACTIONS(2189), + [anon_sym_global] = ACTIONS(2189), + [anon_sym_nonlocal] = ACTIONS(2189), + [anon_sym_exec] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_AT] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2191), + [anon_sym_not] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_lambda] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2191), + [anon_sym_None] = ACTIONS(2189), + [sym_integer] = ACTIONS(2189), + [sym_float] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_api] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2189), + [anon_sym_include] = ACTIONS(2189), + [anon_sym_DEF] = ACTIONS(2189), + [anon_sym_cdef] = ACTIONS(2189), + [anon_sym_cpdef] = ACTIONS(2189), + [anon_sym_int] = ACTIONS(2189), + [anon_sym_double] = ACTIONS(2189), + [anon_sym_complex] = ACTIONS(2189), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_signed] = ACTIONS(2189), + [anon_sym_unsigned] = ACTIONS(2189), + [anon_sym_char] = ACTIONS(2189), + [anon_sym_short] = ACTIONS(2189), + [anon_sym_long] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_volatile] = ACTIONS(2189), + [anon_sym_ctypedef] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_cppclass] = ACTIONS(2189), + [anon_sym_fused] = ACTIONS(2189), + [anon_sym_public] = ACTIONS(2189), + [anon_sym_packed] = ACTIONS(2189), + [anon_sym_inline] = ACTIONS(2189), + [anon_sym_readonly] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(2189), + [sym__dedent] = ACTIONS(2191), + [sym_string_start] = ACTIONS(2191), }, [672] = { - [sym_identifier] = ACTIONS(2231), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_import] = ACTIONS(2231), - [anon_sym_cimport] = ACTIONS(2231), - [anon_sym_from] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_print] = ACTIONS(2231), - [anon_sym_assert] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2231), - [anon_sym_del] = ACTIONS(2231), - [anon_sym_raise] = ACTIONS(2231), - [anon_sym_pass] = ACTIONS(2231), - [anon_sym_break] = ACTIONS(2231), - [anon_sym_continue] = ACTIONS(2231), - [anon_sym_if] = ACTIONS(2231), - [anon_sym_match] = ACTIONS(2231), - [anon_sym_async] = ACTIONS(2231), - [anon_sym_for] = ACTIONS(2231), - [anon_sym_while] = ACTIONS(2231), - [anon_sym_try] = ACTIONS(2231), - [anon_sym_with] = ACTIONS(2231), - [anon_sym_def] = ACTIONS(2231), - [anon_sym_global] = ACTIONS(2231), - [anon_sym_nonlocal] = ACTIONS(2231), - [anon_sym_exec] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2231), - [anon_sym_class] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_AT] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2233), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2233), - [anon_sym_not] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2233), - [anon_sym_TILDE] = ACTIONS(2233), - [anon_sym_LT] = ACTIONS(2233), - [anon_sym_lambda] = ACTIONS(2231), - [anon_sym_yield] = ACTIONS(2231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2233), - [anon_sym_None] = ACTIONS(2231), - [sym_integer] = ACTIONS(2231), - [sym_float] = ACTIONS(2233), - [anon_sym_await] = ACTIONS(2231), - [anon_sym_api] = ACTIONS(2231), - [sym_true] = ACTIONS(2231), - [sym_false] = ACTIONS(2231), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2231), - [anon_sym_include] = ACTIONS(2231), - [anon_sym_DEF] = ACTIONS(2231), - [anon_sym_cdef] = ACTIONS(2231), - [anon_sym_cpdef] = ACTIONS(2231), - [anon_sym_int] = ACTIONS(2231), - [anon_sym_double] = ACTIONS(2231), - [anon_sym_complex] = ACTIONS(2231), - [anon_sym_new] = ACTIONS(2231), - [anon_sym_signed] = ACTIONS(2231), - [anon_sym_unsigned] = ACTIONS(2231), - [anon_sym_char] = ACTIONS(2231), - [anon_sym_short] = ACTIONS(2231), - [anon_sym_long] = ACTIONS(2231), - [anon_sym_const] = ACTIONS(2231), - [anon_sym_volatile] = ACTIONS(2231), - [anon_sym_ctypedef] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2231), - [anon_sym_union] = ACTIONS(2231), - [anon_sym_enum] = ACTIONS(2231), - [anon_sym_cppclass] = ACTIONS(2231), - [anon_sym_fused] = ACTIONS(2231), - [anon_sym_public] = ACTIONS(2231), - [anon_sym_packed] = ACTIONS(2231), - [anon_sym_inline] = ACTIONS(2231), - [anon_sym_readonly] = ACTIONS(2231), - [anon_sym_sizeof] = ACTIONS(2231), - [sym__dedent] = ACTIONS(2233), - [sym_string_start] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_cimport] = ACTIONS(2193), + [anon_sym_from] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2195), + [anon_sym_print] = ACTIONS(2193), + [anon_sym_assert] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_del] = ACTIONS(2193), + [anon_sym_raise] = ACTIONS(2193), + [anon_sym_pass] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [anon_sym_with] = ACTIONS(2193), + [anon_sym_def] = ACTIONS(2193), + [anon_sym_global] = ACTIONS(2193), + [anon_sym_nonlocal] = ACTIONS(2193), + [anon_sym_exec] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_class] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_AT] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_not] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_TILDE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2195), + [anon_sym_lambda] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2195), + [anon_sym_None] = ACTIONS(2193), + [sym_integer] = ACTIONS(2193), + [sym_float] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_api] = ACTIONS(2193), + [sym_true] = ACTIONS(2193), + [sym_false] = ACTIONS(2193), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2193), + [anon_sym_include] = ACTIONS(2193), + [anon_sym_DEF] = ACTIONS(2193), + [anon_sym_cdef] = ACTIONS(2193), + [anon_sym_cpdef] = ACTIONS(2193), + [anon_sym_int] = ACTIONS(2193), + [anon_sym_double] = ACTIONS(2193), + [anon_sym_complex] = ACTIONS(2193), + [anon_sym_new] = ACTIONS(2193), + [anon_sym_signed] = ACTIONS(2193), + [anon_sym_unsigned] = ACTIONS(2193), + [anon_sym_char] = ACTIONS(2193), + [anon_sym_short] = ACTIONS(2193), + [anon_sym_long] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_volatile] = ACTIONS(2193), + [anon_sym_ctypedef] = ACTIONS(2193), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_union] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_cppclass] = ACTIONS(2193), + [anon_sym_fused] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_packed] = ACTIONS(2193), + [anon_sym_inline] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_sizeof] = ACTIONS(2193), + [sym__dedent] = ACTIONS(2195), + [sym_string_start] = ACTIONS(2195), }, [673] = { - [sym_identifier] = ACTIONS(2235), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2235), - [anon_sym_cimport] = ACTIONS(2235), - [anon_sym_from] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2237), - [anon_sym_print] = ACTIONS(2235), - [anon_sym_assert] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_del] = ACTIONS(2235), - [anon_sym_raise] = ACTIONS(2235), - [anon_sym_pass] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [anon_sym_try] = ACTIONS(2235), - [anon_sym_with] = ACTIONS(2235), - [anon_sym_def] = ACTIONS(2235), - [anon_sym_global] = ACTIONS(2235), - [anon_sym_nonlocal] = ACTIONS(2235), - [anon_sym_exec] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_class] = ACTIONS(2235), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_not] = ACTIONS(2235), - [anon_sym_AMP] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_lambda] = ACTIONS(2235), - [anon_sym_yield] = ACTIONS(2235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2237), - [anon_sym_None] = ACTIONS(2235), - [sym_integer] = ACTIONS(2235), - [sym_float] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_api] = ACTIONS(2235), - [sym_true] = ACTIONS(2235), - [sym_false] = ACTIONS(2235), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2235), - [anon_sym_include] = ACTIONS(2235), - [anon_sym_DEF] = ACTIONS(2235), - [anon_sym_cdef] = ACTIONS(2235), - [anon_sym_cpdef] = ACTIONS(2235), - [anon_sym_int] = ACTIONS(2235), - [anon_sym_double] = ACTIONS(2235), - [anon_sym_complex] = ACTIONS(2235), - [anon_sym_new] = ACTIONS(2235), - [anon_sym_signed] = ACTIONS(2235), - [anon_sym_unsigned] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [anon_sym_short] = ACTIONS(2235), - [anon_sym_long] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_volatile] = ACTIONS(2235), - [anon_sym_ctypedef] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_cppclass] = ACTIONS(2235), - [anon_sym_fused] = ACTIONS(2235), - [anon_sym_public] = ACTIONS(2235), - [anon_sym_packed] = ACTIONS(2235), - [anon_sym_inline] = ACTIONS(2235), - [anon_sym_readonly] = ACTIONS(2235), - [anon_sym_sizeof] = ACTIONS(2235), - [sym__dedent] = ACTIONS(2237), - [sym_string_start] = ACTIONS(2237), + [sym_identifier] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_cimport] = ACTIONS(2197), + [anon_sym_from] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_print] = ACTIONS(2197), + [anon_sym_assert] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_del] = ACTIONS(2197), + [anon_sym_raise] = ACTIONS(2197), + [anon_sym_pass] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_def] = ACTIONS(2197), + [anon_sym_global] = ACTIONS(2197), + [anon_sym_nonlocal] = ACTIONS(2197), + [anon_sym_exec] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_AT] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2199), + [anon_sym_not] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2199), + [anon_sym_lambda] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_None] = ACTIONS(2197), + [sym_integer] = ACTIONS(2197), + [sym_float] = ACTIONS(2199), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_api] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2197), + [anon_sym_include] = ACTIONS(2197), + [anon_sym_DEF] = ACTIONS(2197), + [anon_sym_cdef] = ACTIONS(2197), + [anon_sym_cpdef] = ACTIONS(2197), + [anon_sym_int] = ACTIONS(2197), + [anon_sym_double] = ACTIONS(2197), + [anon_sym_complex] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_signed] = ACTIONS(2197), + [anon_sym_unsigned] = ACTIONS(2197), + [anon_sym_char] = ACTIONS(2197), + [anon_sym_short] = ACTIONS(2197), + [anon_sym_long] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_volatile] = ACTIONS(2197), + [anon_sym_ctypedef] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_union] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_cppclass] = ACTIONS(2197), + [anon_sym_fused] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_packed] = ACTIONS(2197), + [anon_sym_inline] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_sizeof] = ACTIONS(2197), + [sym__dedent] = ACTIONS(2199), + [sym_string_start] = ACTIONS(2199), }, [674] = { - [sym_identifier] = ACTIONS(2239), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2239), - [anon_sym_cimport] = ACTIONS(2239), - [anon_sym_from] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_print] = ACTIONS(2239), - [anon_sym_assert] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_del] = ACTIONS(2239), - [anon_sym_raise] = ACTIONS(2239), - [anon_sym_pass] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [anon_sym_try] = ACTIONS(2239), - [anon_sym_with] = ACTIONS(2239), - [anon_sym_def] = ACTIONS(2239), - [anon_sym_global] = ACTIONS(2239), - [anon_sym_nonlocal] = ACTIONS(2239), - [anon_sym_exec] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_class] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_AT] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_not] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_TILDE] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_lambda] = ACTIONS(2239), - [anon_sym_yield] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), - [anon_sym_None] = ACTIONS(2239), - [sym_integer] = ACTIONS(2239), - [sym_float] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_api] = ACTIONS(2239), - [sym_true] = ACTIONS(2239), - [sym_false] = ACTIONS(2239), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2239), - [anon_sym_include] = ACTIONS(2239), - [anon_sym_DEF] = ACTIONS(2239), - [anon_sym_cdef] = ACTIONS(2239), - [anon_sym_cpdef] = ACTIONS(2239), - [anon_sym_int] = ACTIONS(2239), - [anon_sym_double] = ACTIONS(2239), - [anon_sym_complex] = ACTIONS(2239), - [anon_sym_new] = ACTIONS(2239), - [anon_sym_signed] = ACTIONS(2239), - [anon_sym_unsigned] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [anon_sym_short] = ACTIONS(2239), - [anon_sym_long] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_volatile] = ACTIONS(2239), - [anon_sym_ctypedef] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_cppclass] = ACTIONS(2239), - [anon_sym_fused] = ACTIONS(2239), - [anon_sym_public] = ACTIONS(2239), - [anon_sym_packed] = ACTIONS(2239), - [anon_sym_inline] = ACTIONS(2239), - [anon_sym_readonly] = ACTIONS(2239), - [anon_sym_sizeof] = ACTIONS(2239), - [sym__dedent] = ACTIONS(2241), - [sym_string_start] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2201), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_import] = ACTIONS(2201), + [anon_sym_cimport] = ACTIONS(2201), + [anon_sym_from] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_STAR] = ACTIONS(2203), + [anon_sym_print] = ACTIONS(2201), + [anon_sym_assert] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_del] = ACTIONS(2201), + [anon_sym_raise] = ACTIONS(2201), + [anon_sym_pass] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2201), + [anon_sym_def] = ACTIONS(2201), + [anon_sym_global] = ACTIONS(2201), + [anon_sym_nonlocal] = ACTIONS(2201), + [anon_sym_exec] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_class] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_AT] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_PLUS] = ACTIONS(2203), + [anon_sym_not] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_TILDE] = ACTIONS(2203), + [anon_sym_LT] = ACTIONS(2203), + [anon_sym_lambda] = ACTIONS(2201), + [anon_sym_yield] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2203), + [anon_sym_None] = ACTIONS(2201), + [sym_integer] = ACTIONS(2201), + [sym_float] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_api] = ACTIONS(2201), + [sym_true] = ACTIONS(2201), + [sym_false] = ACTIONS(2201), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2201), + [anon_sym_include] = ACTIONS(2201), + [anon_sym_DEF] = ACTIONS(2201), + [anon_sym_cdef] = ACTIONS(2201), + [anon_sym_cpdef] = ACTIONS(2201), + [anon_sym_int] = ACTIONS(2201), + [anon_sym_double] = ACTIONS(2201), + [anon_sym_complex] = ACTIONS(2201), + [anon_sym_new] = ACTIONS(2201), + [anon_sym_signed] = ACTIONS(2201), + [anon_sym_unsigned] = ACTIONS(2201), + [anon_sym_char] = ACTIONS(2201), + [anon_sym_short] = ACTIONS(2201), + [anon_sym_long] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_volatile] = ACTIONS(2201), + [anon_sym_ctypedef] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_union] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_cppclass] = ACTIONS(2201), + [anon_sym_fused] = ACTIONS(2201), + [anon_sym_public] = ACTIONS(2201), + [anon_sym_packed] = ACTIONS(2201), + [anon_sym_inline] = ACTIONS(2201), + [anon_sym_readonly] = ACTIONS(2201), + [anon_sym_sizeof] = ACTIONS(2201), + [sym__dedent] = ACTIONS(2203), + [sym_string_start] = ACTIONS(2203), }, [675] = { - [sym_identifier] = ACTIONS(2243), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_import] = ACTIONS(2243), - [anon_sym_cimport] = ACTIONS(2243), - [anon_sym_from] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_print] = ACTIONS(2243), - [anon_sym_assert] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2243), - [anon_sym_del] = ACTIONS(2243), - [anon_sym_raise] = ACTIONS(2243), - [anon_sym_pass] = ACTIONS(2243), - [anon_sym_break] = ACTIONS(2243), - [anon_sym_continue] = ACTIONS(2243), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_match] = ACTIONS(2243), - [anon_sym_async] = ACTIONS(2243), - [anon_sym_for] = ACTIONS(2243), - [anon_sym_while] = ACTIONS(2243), - [anon_sym_try] = ACTIONS(2243), - [anon_sym_with] = ACTIONS(2243), - [anon_sym_def] = ACTIONS(2243), - [anon_sym_global] = ACTIONS(2243), - [anon_sym_nonlocal] = ACTIONS(2243), - [anon_sym_exec] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2243), - [anon_sym_class] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_AT] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_PLUS] = ACTIONS(2245), - [anon_sym_not] = ACTIONS(2243), - [anon_sym_AMP] = ACTIONS(2245), - [anon_sym_TILDE] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_lambda] = ACTIONS(2243), - [anon_sym_yield] = ACTIONS(2243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2245), - [anon_sym_None] = ACTIONS(2243), - [sym_integer] = ACTIONS(2243), - [sym_float] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2243), - [anon_sym_api] = ACTIONS(2243), - [sym_true] = ACTIONS(2243), - [sym_false] = ACTIONS(2243), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2243), - [anon_sym_include] = ACTIONS(2243), - [anon_sym_DEF] = ACTIONS(2243), - [anon_sym_cdef] = ACTIONS(2243), - [anon_sym_cpdef] = ACTIONS(2243), - [anon_sym_int] = ACTIONS(2243), - [anon_sym_double] = ACTIONS(2243), - [anon_sym_complex] = ACTIONS(2243), - [anon_sym_new] = ACTIONS(2243), - [anon_sym_signed] = ACTIONS(2243), - [anon_sym_unsigned] = ACTIONS(2243), - [anon_sym_char] = ACTIONS(2243), - [anon_sym_short] = ACTIONS(2243), - [anon_sym_long] = ACTIONS(2243), - [anon_sym_const] = ACTIONS(2243), - [anon_sym_volatile] = ACTIONS(2243), - [anon_sym_ctypedef] = ACTIONS(2243), - [anon_sym_struct] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(2243), - [anon_sym_enum] = ACTIONS(2243), - [anon_sym_cppclass] = ACTIONS(2243), - [anon_sym_fused] = ACTIONS(2243), - [anon_sym_public] = ACTIONS(2243), - [anon_sym_packed] = ACTIONS(2243), - [anon_sym_inline] = ACTIONS(2243), - [anon_sym_readonly] = ACTIONS(2243), - [anon_sym_sizeof] = ACTIONS(2243), - [sym__dedent] = ACTIONS(2245), - [sym_string_start] = ACTIONS(2245), + [sym_identifier] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_cimport] = ACTIONS(2205), + [anon_sym_from] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_print] = ACTIONS(2205), + [anon_sym_assert] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_del] = ACTIONS(2205), + [anon_sym_raise] = ACTIONS(2205), + [anon_sym_pass] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_def] = ACTIONS(2205), + [anon_sym_global] = ACTIONS(2205), + [anon_sym_nonlocal] = ACTIONS(2205), + [anon_sym_exec] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_AT] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2207), + [anon_sym_not] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2207), + [anon_sym_lambda] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2207), + [anon_sym_None] = ACTIONS(2205), + [sym_integer] = ACTIONS(2205), + [sym_float] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_api] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2205), + [anon_sym_include] = ACTIONS(2205), + [anon_sym_DEF] = ACTIONS(2205), + [anon_sym_cdef] = ACTIONS(2205), + [anon_sym_cpdef] = ACTIONS(2205), + [anon_sym_int] = ACTIONS(2205), + [anon_sym_double] = ACTIONS(2205), + [anon_sym_complex] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_signed] = ACTIONS(2205), + [anon_sym_unsigned] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [anon_sym_short] = ACTIONS(2205), + [anon_sym_long] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_volatile] = ACTIONS(2205), + [anon_sym_ctypedef] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_cppclass] = ACTIONS(2205), + [anon_sym_fused] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_packed] = ACTIONS(2205), + [anon_sym_inline] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_sizeof] = ACTIONS(2205), + [sym__dedent] = ACTIONS(2207), + [sym_string_start] = ACTIONS(2207), }, [676] = { - [sym_identifier] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_cimport] = ACTIONS(2247), - [anon_sym_from] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_print] = ACTIONS(2247), - [anon_sym_assert] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2247), - [anon_sym_del] = ACTIONS(2247), - [anon_sym_raise] = ACTIONS(2247), - [anon_sym_pass] = ACTIONS(2247), - [anon_sym_break] = ACTIONS(2247), - [anon_sym_continue] = ACTIONS(2247), - [anon_sym_if] = ACTIONS(2247), - [anon_sym_match] = ACTIONS(2247), - [anon_sym_async] = ACTIONS(2247), - [anon_sym_for] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2247), - [anon_sym_try] = ACTIONS(2247), - [anon_sym_with] = ACTIONS(2247), - [anon_sym_def] = ACTIONS(2247), - [anon_sym_global] = ACTIONS(2247), - [anon_sym_nonlocal] = ACTIONS(2247), - [anon_sym_exec] = ACTIONS(2247), - [anon_sym_type] = ACTIONS(2247), - [anon_sym_class] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_AT] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_not] = ACTIONS(2247), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_lambda] = ACTIONS(2247), - [anon_sym_yield] = ACTIONS(2247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2249), - [anon_sym_None] = ACTIONS(2247), - [sym_integer] = ACTIONS(2247), - [sym_float] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_api] = ACTIONS(2247), - [sym_true] = ACTIONS(2247), - [sym_false] = ACTIONS(2247), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2247), - [anon_sym_include] = ACTIONS(2247), - [anon_sym_DEF] = ACTIONS(2247), - [anon_sym_cdef] = ACTIONS(2247), - [anon_sym_cpdef] = ACTIONS(2247), - [anon_sym_int] = ACTIONS(2247), - [anon_sym_double] = ACTIONS(2247), - [anon_sym_complex] = ACTIONS(2247), - [anon_sym_new] = ACTIONS(2247), - [anon_sym_signed] = ACTIONS(2247), - [anon_sym_unsigned] = ACTIONS(2247), - [anon_sym_char] = ACTIONS(2247), - [anon_sym_short] = ACTIONS(2247), - [anon_sym_long] = ACTIONS(2247), - [anon_sym_const] = ACTIONS(2247), - [anon_sym_volatile] = ACTIONS(2247), - [anon_sym_ctypedef] = ACTIONS(2247), - [anon_sym_struct] = ACTIONS(2247), - [anon_sym_union] = ACTIONS(2247), - [anon_sym_enum] = ACTIONS(2247), - [anon_sym_cppclass] = ACTIONS(2247), - [anon_sym_fused] = ACTIONS(2247), - [anon_sym_public] = ACTIONS(2247), - [anon_sym_packed] = ACTIONS(2247), - [anon_sym_inline] = ACTIONS(2247), - [anon_sym_readonly] = ACTIONS(2247), - [anon_sym_sizeof] = ACTIONS(2247), - [sym__dedent] = ACTIONS(2249), - [sym_string_start] = ACTIONS(2249), + [sym_identifier] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_import] = ACTIONS(2209), + [anon_sym_cimport] = ACTIONS(2209), + [anon_sym_from] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_print] = ACTIONS(2209), + [anon_sym_assert] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_del] = ACTIONS(2209), + [anon_sym_raise] = ACTIONS(2209), + [anon_sym_pass] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [anon_sym_with] = ACTIONS(2209), + [anon_sym_def] = ACTIONS(2209), + [anon_sym_global] = ACTIONS(2209), + [anon_sym_nonlocal] = ACTIONS(2209), + [anon_sym_exec] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_class] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_AT] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(2211), + [anon_sym_not] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_TILDE] = ACTIONS(2211), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_lambda] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_None] = ACTIONS(2209), + [sym_integer] = ACTIONS(2209), + [sym_float] = ACTIONS(2211), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_api] = ACTIONS(2209), + [sym_true] = ACTIONS(2209), + [sym_false] = ACTIONS(2209), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2209), + [anon_sym_include] = ACTIONS(2209), + [anon_sym_DEF] = ACTIONS(2209), + [anon_sym_cdef] = ACTIONS(2209), + [anon_sym_cpdef] = ACTIONS(2209), + [anon_sym_int] = ACTIONS(2209), + [anon_sym_double] = ACTIONS(2209), + [anon_sym_complex] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2209), + [anon_sym_signed] = ACTIONS(2209), + [anon_sym_unsigned] = ACTIONS(2209), + [anon_sym_char] = ACTIONS(2209), + [anon_sym_short] = ACTIONS(2209), + [anon_sym_long] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_volatile] = ACTIONS(2209), + [anon_sym_ctypedef] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2209), + [anon_sym_union] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_cppclass] = ACTIONS(2209), + [anon_sym_fused] = ACTIONS(2209), + [anon_sym_public] = ACTIONS(2209), + [anon_sym_packed] = ACTIONS(2209), + [anon_sym_inline] = ACTIONS(2209), + [anon_sym_readonly] = ACTIONS(2209), + [anon_sym_sizeof] = ACTIONS(2209), + [sym__dedent] = ACTIONS(2211), + [sym_string_start] = ACTIONS(2211), }, [677] = { - [sym_identifier] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2253), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_cimport] = ACTIONS(2251), - [anon_sym_from] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_print] = ACTIONS(2251), - [anon_sym_assert] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_del] = ACTIONS(2251), - [anon_sym_raise] = ACTIONS(2251), - [anon_sym_pass] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_match] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_def] = ACTIONS(2251), - [anon_sym_global] = ACTIONS(2251), - [anon_sym_nonlocal] = ACTIONS(2251), - [anon_sym_exec] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2253), - [anon_sym_AT] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_not] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_TILDE] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_lambda] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2253), - [anon_sym_None] = ACTIONS(2251), - [sym_integer] = ACTIONS(2251), - [sym_float] = ACTIONS(2253), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_api] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2251), - [anon_sym_include] = ACTIONS(2251), - [anon_sym_DEF] = ACTIONS(2251), - [anon_sym_cdef] = ACTIONS(2251), - [anon_sym_cpdef] = ACTIONS(2251), - [anon_sym_int] = ACTIONS(2251), - [anon_sym_double] = ACTIONS(2251), - [anon_sym_complex] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_signed] = ACTIONS(2251), - [anon_sym_unsigned] = ACTIONS(2251), - [anon_sym_char] = ACTIONS(2251), - [anon_sym_short] = ACTIONS(2251), - [anon_sym_long] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_volatile] = ACTIONS(2251), - [anon_sym_ctypedef] = ACTIONS(2251), - [anon_sym_struct] = ACTIONS(2251), - [anon_sym_union] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_cppclass] = ACTIONS(2251), - [anon_sym_fused] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_packed] = ACTIONS(2251), - [anon_sym_inline] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_sizeof] = ACTIONS(2251), - [sym__dedent] = ACTIONS(2253), - [sym_string_start] = ACTIONS(2253), + [sym_identifier] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_cimport] = ACTIONS(2213), + [anon_sym_from] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_print] = ACTIONS(2213), + [anon_sym_assert] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_del] = ACTIONS(2213), + [anon_sym_raise] = ACTIONS(2213), + [anon_sym_pass] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_def] = ACTIONS(2213), + [anon_sym_global] = ACTIONS(2213), + [anon_sym_nonlocal] = ACTIONS(2213), + [anon_sym_exec] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_AT] = ACTIONS(2215), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2215), + [anon_sym_not] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_lambda] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2215), + [anon_sym_None] = ACTIONS(2213), + [sym_integer] = ACTIONS(2213), + [sym_float] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_api] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2213), + [anon_sym_include] = ACTIONS(2213), + [anon_sym_DEF] = ACTIONS(2213), + [anon_sym_cdef] = ACTIONS(2213), + [anon_sym_cpdef] = ACTIONS(2213), + [anon_sym_int] = ACTIONS(2213), + [anon_sym_double] = ACTIONS(2213), + [anon_sym_complex] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_signed] = ACTIONS(2213), + [anon_sym_unsigned] = ACTIONS(2213), + [anon_sym_char] = ACTIONS(2213), + [anon_sym_short] = ACTIONS(2213), + [anon_sym_long] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_volatile] = ACTIONS(2213), + [anon_sym_ctypedef] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_cppclass] = ACTIONS(2213), + [anon_sym_fused] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_packed] = ACTIONS(2213), + [anon_sym_inline] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_sizeof] = ACTIONS(2213), + [sym__dedent] = ACTIONS(2215), + [sym_string_start] = ACTIONS(2215), }, [678] = { - [sym_identifier] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_import] = ACTIONS(2255), - [anon_sym_cimport] = ACTIONS(2255), - [anon_sym_from] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2257), - [anon_sym_print] = ACTIONS(2255), - [anon_sym_assert] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_del] = ACTIONS(2255), - [anon_sym_raise] = ACTIONS(2255), - [anon_sym_pass] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_match] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_with] = ACTIONS(2255), - [anon_sym_def] = ACTIONS(2255), - [anon_sym_global] = ACTIONS(2255), - [anon_sym_nonlocal] = ACTIONS(2255), - [anon_sym_exec] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_class] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_AT] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_not] = ACTIONS(2255), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_lambda] = ACTIONS(2255), - [anon_sym_yield] = ACTIONS(2255), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2257), - [anon_sym_None] = ACTIONS(2255), - [sym_integer] = ACTIONS(2255), - [sym_float] = ACTIONS(2257), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_api] = ACTIONS(2255), - [sym_true] = ACTIONS(2255), - [sym_false] = ACTIONS(2255), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2255), - [anon_sym_include] = ACTIONS(2255), - [anon_sym_DEF] = ACTIONS(2255), - [anon_sym_cdef] = ACTIONS(2255), - [anon_sym_cpdef] = ACTIONS(2255), - [anon_sym_int] = ACTIONS(2255), - [anon_sym_double] = ACTIONS(2255), - [anon_sym_complex] = ACTIONS(2255), - [anon_sym_new] = ACTIONS(2255), - [anon_sym_signed] = ACTIONS(2255), - [anon_sym_unsigned] = ACTIONS(2255), - [anon_sym_char] = ACTIONS(2255), - [anon_sym_short] = ACTIONS(2255), - [anon_sym_long] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_volatile] = ACTIONS(2255), - [anon_sym_ctypedef] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2255), - [anon_sym_union] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [anon_sym_cppclass] = ACTIONS(2255), - [anon_sym_fused] = ACTIONS(2255), - [anon_sym_public] = ACTIONS(2255), - [anon_sym_packed] = ACTIONS(2255), - [anon_sym_inline] = ACTIONS(2255), - [anon_sym_readonly] = ACTIONS(2255), - [anon_sym_sizeof] = ACTIONS(2255), - [sym__dedent] = ACTIONS(2257), - [sym_string_start] = ACTIONS(2257), + [sym_identifier] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_import] = ACTIONS(2217), + [anon_sym_cimport] = ACTIONS(2217), + [anon_sym_from] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_print] = ACTIONS(2217), + [anon_sym_assert] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_del] = ACTIONS(2217), + [anon_sym_raise] = ACTIONS(2217), + [anon_sym_pass] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [anon_sym_with] = ACTIONS(2217), + [anon_sym_def] = ACTIONS(2217), + [anon_sym_global] = ACTIONS(2217), + [anon_sym_nonlocal] = ACTIONS(2217), + [anon_sym_exec] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_class] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_AT] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_not] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_TILDE] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_lambda] = ACTIONS(2217), + [anon_sym_yield] = ACTIONS(2217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2219), + [anon_sym_None] = ACTIONS(2217), + [sym_integer] = ACTIONS(2217), + [sym_float] = ACTIONS(2219), + [anon_sym_await] = ACTIONS(2217), + [anon_sym_api] = ACTIONS(2217), + [sym_true] = ACTIONS(2217), + [sym_false] = ACTIONS(2217), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2217), + [anon_sym_include] = ACTIONS(2217), + [anon_sym_DEF] = ACTIONS(2217), + [anon_sym_cdef] = ACTIONS(2217), + [anon_sym_cpdef] = ACTIONS(2217), + [anon_sym_int] = ACTIONS(2217), + [anon_sym_double] = ACTIONS(2217), + [anon_sym_complex] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2217), + [anon_sym_signed] = ACTIONS(2217), + [anon_sym_unsigned] = ACTIONS(2217), + [anon_sym_char] = ACTIONS(2217), + [anon_sym_short] = ACTIONS(2217), + [anon_sym_long] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_volatile] = ACTIONS(2217), + [anon_sym_ctypedef] = ACTIONS(2217), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_union] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_cppclass] = ACTIONS(2217), + [anon_sym_fused] = ACTIONS(2217), + [anon_sym_public] = ACTIONS(2217), + [anon_sym_packed] = ACTIONS(2217), + [anon_sym_inline] = ACTIONS(2217), + [anon_sym_readonly] = ACTIONS(2217), + [anon_sym_sizeof] = ACTIONS(2217), + [sym__dedent] = ACTIONS(2219), + [sym_string_start] = ACTIONS(2219), }, [679] = { - [sym_identifier] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(2259), - [anon_sym_cimport] = ACTIONS(2259), - [anon_sym_from] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_print] = ACTIONS(2259), - [anon_sym_assert] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_del] = ACTIONS(2259), - [anon_sym_raise] = ACTIONS(2259), - [anon_sym_pass] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_match] = ACTIONS(2259), - [anon_sym_async] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_with] = ACTIONS(2259), - [anon_sym_def] = ACTIONS(2259), - [anon_sym_global] = ACTIONS(2259), - [anon_sym_nonlocal] = ACTIONS(2259), - [anon_sym_exec] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2259), - [anon_sym_class] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_AT] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(2261), - [anon_sym_not] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_lambda] = ACTIONS(2259), - [anon_sym_yield] = ACTIONS(2259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2261), - [anon_sym_None] = ACTIONS(2259), - [sym_integer] = ACTIONS(2259), - [sym_float] = ACTIONS(2261), - [anon_sym_await] = ACTIONS(2259), - [anon_sym_api] = ACTIONS(2259), - [sym_true] = ACTIONS(2259), - [sym_false] = ACTIONS(2259), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2259), - [anon_sym_include] = ACTIONS(2259), - [anon_sym_DEF] = ACTIONS(2259), - [anon_sym_cdef] = ACTIONS(2259), - [anon_sym_cpdef] = ACTIONS(2259), - [anon_sym_int] = ACTIONS(2259), - [anon_sym_double] = ACTIONS(2259), - [anon_sym_complex] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2259), - [anon_sym_signed] = ACTIONS(2259), - [anon_sym_unsigned] = ACTIONS(2259), - [anon_sym_char] = ACTIONS(2259), - [anon_sym_short] = ACTIONS(2259), - [anon_sym_long] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_volatile] = ACTIONS(2259), - [anon_sym_ctypedef] = ACTIONS(2259), - [anon_sym_struct] = ACTIONS(2259), - [anon_sym_union] = ACTIONS(2259), - [anon_sym_enum] = ACTIONS(2259), - [anon_sym_cppclass] = ACTIONS(2259), - [anon_sym_fused] = ACTIONS(2259), - [anon_sym_public] = ACTIONS(2259), - [anon_sym_packed] = ACTIONS(2259), - [anon_sym_inline] = ACTIONS(2259), - [anon_sym_readonly] = ACTIONS(2259), - [anon_sym_sizeof] = ACTIONS(2259), - [sym__dedent] = ACTIONS(2261), - [sym_string_start] = ACTIONS(2261), + [sym_identifier] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_cimport] = ACTIONS(2221), + [anon_sym_from] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_print] = ACTIONS(2221), + [anon_sym_assert] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_del] = ACTIONS(2221), + [anon_sym_raise] = ACTIONS(2221), + [anon_sym_pass] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_def] = ACTIONS(2221), + [anon_sym_global] = ACTIONS(2221), + [anon_sym_nonlocal] = ACTIONS(2221), + [anon_sym_exec] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_AT] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_not] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2223), + [anon_sym_TILDE] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_lambda] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2223), + [anon_sym_None] = ACTIONS(2221), + [sym_integer] = ACTIONS(2221), + [sym_float] = ACTIONS(2223), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_api] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2221), + [anon_sym_include] = ACTIONS(2221), + [anon_sym_DEF] = ACTIONS(2221), + [anon_sym_cdef] = ACTIONS(2221), + [anon_sym_cpdef] = ACTIONS(2221), + [anon_sym_int] = ACTIONS(2221), + [anon_sym_double] = ACTIONS(2221), + [anon_sym_complex] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_signed] = ACTIONS(2221), + [anon_sym_unsigned] = ACTIONS(2221), + [anon_sym_char] = ACTIONS(2221), + [anon_sym_short] = ACTIONS(2221), + [anon_sym_long] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_volatile] = ACTIONS(2221), + [anon_sym_ctypedef] = ACTIONS(2221), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_cppclass] = ACTIONS(2221), + [anon_sym_fused] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_packed] = ACTIONS(2221), + [anon_sym_inline] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_sizeof] = ACTIONS(2221), + [sym__dedent] = ACTIONS(2223), + [sym_string_start] = ACTIONS(2223), }, [680] = { - [sym_identifier] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_import] = ACTIONS(2263), - [anon_sym_cimport] = ACTIONS(2263), - [anon_sym_from] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_print] = ACTIONS(2263), - [anon_sym_assert] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_del] = ACTIONS(2263), - [anon_sym_raise] = ACTIONS(2263), - [anon_sym_pass] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_match] = ACTIONS(2263), - [anon_sym_async] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_with] = ACTIONS(2263), - [anon_sym_def] = ACTIONS(2263), - [anon_sym_global] = ACTIONS(2263), - [anon_sym_nonlocal] = ACTIONS(2263), - [anon_sym_exec] = ACTIONS(2263), - [anon_sym_type] = ACTIONS(2263), - [anon_sym_class] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_AT] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_not] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_lambda] = ACTIONS(2263), - [anon_sym_yield] = ACTIONS(2263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), - [anon_sym_None] = ACTIONS(2263), - [sym_integer] = ACTIONS(2263), - [sym_float] = ACTIONS(2265), - [anon_sym_await] = ACTIONS(2263), - [anon_sym_api] = ACTIONS(2263), - [sym_true] = ACTIONS(2263), - [sym_false] = ACTIONS(2263), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2263), - [anon_sym_include] = ACTIONS(2263), - [anon_sym_DEF] = ACTIONS(2263), - [anon_sym_cdef] = ACTIONS(2263), - [anon_sym_cpdef] = ACTIONS(2263), - [anon_sym_int] = ACTIONS(2263), - [anon_sym_double] = ACTIONS(2263), - [anon_sym_complex] = ACTIONS(2263), - [anon_sym_new] = ACTIONS(2263), - [anon_sym_signed] = ACTIONS(2263), - [anon_sym_unsigned] = ACTIONS(2263), - [anon_sym_char] = ACTIONS(2263), - [anon_sym_short] = ACTIONS(2263), - [anon_sym_long] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [anon_sym_volatile] = ACTIONS(2263), - [anon_sym_ctypedef] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2263), - [anon_sym_union] = ACTIONS(2263), - [anon_sym_enum] = ACTIONS(2263), - [anon_sym_cppclass] = ACTIONS(2263), - [anon_sym_fused] = ACTIONS(2263), - [anon_sym_public] = ACTIONS(2263), - [anon_sym_packed] = ACTIONS(2263), - [anon_sym_inline] = ACTIONS(2263), - [anon_sym_readonly] = ACTIONS(2263), - [anon_sym_sizeof] = ACTIONS(2263), - [sym__dedent] = ACTIONS(2265), - [sym_string_start] = ACTIONS(2265), + [sym_identifier] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_cimport] = ACTIONS(2225), + [anon_sym_from] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_print] = ACTIONS(2225), + [anon_sym_assert] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_del] = ACTIONS(2225), + [anon_sym_raise] = ACTIONS(2225), + [anon_sym_pass] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_def] = ACTIONS(2225), + [anon_sym_global] = ACTIONS(2225), + [anon_sym_nonlocal] = ACTIONS(2225), + [anon_sym_exec] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_AT] = ACTIONS(2227), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2227), + [anon_sym_not] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_lambda] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2227), + [anon_sym_None] = ACTIONS(2225), + [sym_integer] = ACTIONS(2225), + [sym_float] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_api] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2225), + [anon_sym_include] = ACTIONS(2225), + [anon_sym_DEF] = ACTIONS(2225), + [anon_sym_cdef] = ACTIONS(2225), + [anon_sym_cpdef] = ACTIONS(2225), + [anon_sym_int] = ACTIONS(2225), + [anon_sym_double] = ACTIONS(2225), + [anon_sym_complex] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_signed] = ACTIONS(2225), + [anon_sym_unsigned] = ACTIONS(2225), + [anon_sym_char] = ACTIONS(2225), + [anon_sym_short] = ACTIONS(2225), + [anon_sym_long] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_volatile] = ACTIONS(2225), + [anon_sym_ctypedef] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_cppclass] = ACTIONS(2225), + [anon_sym_fused] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_packed] = ACTIONS(2225), + [anon_sym_inline] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_sizeof] = ACTIONS(2225), + [sym__dedent] = ACTIONS(2227), + [sym_string_start] = ACTIONS(2227), }, [681] = { - [sym_identifier] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2269), - [anon_sym_import] = ACTIONS(2267), - [anon_sym_cimport] = ACTIONS(2267), - [anon_sym_from] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_STAR] = ACTIONS(2269), - [anon_sym_print] = ACTIONS(2267), - [anon_sym_assert] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_del] = ACTIONS(2267), - [anon_sym_raise] = ACTIONS(2267), - [anon_sym_pass] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [anon_sym_try] = ACTIONS(2267), - [anon_sym_with] = ACTIONS(2267), - [anon_sym_def] = ACTIONS(2267), - [anon_sym_global] = ACTIONS(2267), - [anon_sym_nonlocal] = ACTIONS(2267), - [anon_sym_exec] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_class] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2269), - [anon_sym_AT] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_PLUS] = ACTIONS(2269), - [anon_sym_not] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2269), - [anon_sym_TILDE] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_lambda] = ACTIONS(2267), - [anon_sym_yield] = ACTIONS(2267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2269), - [anon_sym_None] = ACTIONS(2267), - [sym_integer] = ACTIONS(2267), - [sym_float] = ACTIONS(2269), - [anon_sym_await] = ACTIONS(2267), - [anon_sym_api] = ACTIONS(2267), - [sym_true] = ACTIONS(2267), - [sym_false] = ACTIONS(2267), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2267), - [anon_sym_include] = ACTIONS(2267), - [anon_sym_DEF] = ACTIONS(2267), - [anon_sym_cdef] = ACTIONS(2267), - [anon_sym_cpdef] = ACTIONS(2267), - [anon_sym_int] = ACTIONS(2267), - [anon_sym_double] = ACTIONS(2267), - [anon_sym_complex] = ACTIONS(2267), - [anon_sym_new] = ACTIONS(2267), - [anon_sym_signed] = ACTIONS(2267), - [anon_sym_unsigned] = ACTIONS(2267), - [anon_sym_char] = ACTIONS(2267), - [anon_sym_short] = ACTIONS(2267), - [anon_sym_long] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_volatile] = ACTIONS(2267), - [anon_sym_ctypedef] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2267), - [anon_sym_union] = ACTIONS(2267), - [anon_sym_enum] = ACTIONS(2267), - [anon_sym_cppclass] = ACTIONS(2267), - [anon_sym_fused] = ACTIONS(2267), - [anon_sym_public] = ACTIONS(2267), - [anon_sym_packed] = ACTIONS(2267), - [anon_sym_inline] = ACTIONS(2267), - [anon_sym_readonly] = ACTIONS(2267), - [anon_sym_sizeof] = ACTIONS(2267), - [sym__dedent] = ACTIONS(2269), - [sym_string_start] = ACTIONS(2269), + [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), }, [682] = { - [sym_identifier] = ACTIONS(2271), - [anon_sym_SEMI] = ACTIONS(2273), - [anon_sym_import] = ACTIONS(2271), - [anon_sym_cimport] = ACTIONS(2271), - [anon_sym_from] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_print] = ACTIONS(2271), - [anon_sym_assert] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_del] = ACTIONS(2271), - [anon_sym_raise] = ACTIONS(2271), - [anon_sym_pass] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [anon_sym_try] = ACTIONS(2271), - [anon_sym_with] = ACTIONS(2271), - [anon_sym_def] = ACTIONS(2271), - [anon_sym_global] = ACTIONS(2271), - [anon_sym_nonlocal] = ACTIONS(2271), - [anon_sym_exec] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2271), - [anon_sym_class] = ACTIONS(2271), - [anon_sym_LBRACK] = ACTIONS(2273), - [anon_sym_AT] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_not] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_TILDE] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_lambda] = ACTIONS(2271), - [anon_sym_yield] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2273), - [anon_sym_None] = ACTIONS(2271), - [sym_integer] = ACTIONS(2271), - [sym_float] = ACTIONS(2273), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_api] = ACTIONS(2271), - [sym_true] = ACTIONS(2271), - [sym_false] = ACTIONS(2271), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2271), - [anon_sym_include] = ACTIONS(2271), - [anon_sym_DEF] = ACTIONS(2271), - [anon_sym_cdef] = ACTIONS(2271), - [anon_sym_cpdef] = ACTIONS(2271), - [anon_sym_int] = ACTIONS(2271), - [anon_sym_double] = ACTIONS(2271), - [anon_sym_complex] = ACTIONS(2271), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_signed] = ACTIONS(2271), - [anon_sym_unsigned] = ACTIONS(2271), - [anon_sym_char] = ACTIONS(2271), - [anon_sym_short] = ACTIONS(2271), - [anon_sym_long] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_volatile] = ACTIONS(2271), - [anon_sym_ctypedef] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_enum] = ACTIONS(2271), - [anon_sym_cppclass] = ACTIONS(2271), - [anon_sym_fused] = ACTIONS(2271), - [anon_sym_public] = ACTIONS(2271), - [anon_sym_packed] = ACTIONS(2271), - [anon_sym_inline] = ACTIONS(2271), - [anon_sym_readonly] = ACTIONS(2271), - [anon_sym_sizeof] = ACTIONS(2271), - [sym__dedent] = ACTIONS(2273), - [sym_string_start] = ACTIONS(2273), + [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), }, [683] = { - [sym_identifier] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2277), - [anon_sym_import] = ACTIONS(2275), - [anon_sym_cimport] = ACTIONS(2275), - [anon_sym_from] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2277), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_print] = ACTIONS(2275), - [anon_sym_assert] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_del] = ACTIONS(2275), - [anon_sym_raise] = ACTIONS(2275), - [anon_sym_pass] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_async] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_try] = ACTIONS(2275), - [anon_sym_with] = ACTIONS(2275), - [anon_sym_def] = ACTIONS(2275), - [anon_sym_global] = ACTIONS(2275), - [anon_sym_nonlocal] = ACTIONS(2275), - [anon_sym_exec] = ACTIONS(2275), - [anon_sym_type] = ACTIONS(2275), - [anon_sym_class] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2277), - [anon_sym_AT] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_not] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2277), - [anon_sym_LT] = ACTIONS(2277), - [anon_sym_lambda] = ACTIONS(2275), - [anon_sym_yield] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), - [anon_sym_None] = ACTIONS(2275), - [sym_integer] = ACTIONS(2275), - [sym_float] = ACTIONS(2277), - [anon_sym_await] = ACTIONS(2275), - [anon_sym_api] = ACTIONS(2275), - [sym_true] = ACTIONS(2275), - [sym_false] = ACTIONS(2275), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2275), - [anon_sym_include] = ACTIONS(2275), - [anon_sym_DEF] = ACTIONS(2275), - [anon_sym_cdef] = ACTIONS(2275), - [anon_sym_cpdef] = ACTIONS(2275), - [anon_sym_int] = ACTIONS(2275), - [anon_sym_double] = ACTIONS(2275), - [anon_sym_complex] = ACTIONS(2275), - [anon_sym_new] = ACTIONS(2275), - [anon_sym_signed] = ACTIONS(2275), - [anon_sym_unsigned] = ACTIONS(2275), - [anon_sym_char] = ACTIONS(2275), - [anon_sym_short] = ACTIONS(2275), - [anon_sym_long] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [anon_sym_volatile] = ACTIONS(2275), - [anon_sym_ctypedef] = ACTIONS(2275), - [anon_sym_struct] = ACTIONS(2275), - [anon_sym_union] = ACTIONS(2275), - [anon_sym_enum] = ACTIONS(2275), - [anon_sym_cppclass] = ACTIONS(2275), - [anon_sym_fused] = ACTIONS(2275), - [anon_sym_public] = ACTIONS(2275), - [anon_sym_packed] = ACTIONS(2275), - [anon_sym_inline] = ACTIONS(2275), - [anon_sym_readonly] = ACTIONS(2275), - [anon_sym_sizeof] = ACTIONS(2275), - [sym__dedent] = ACTIONS(2277), - [sym_string_start] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_cimport] = ACTIONS(2237), + [anon_sym_from] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_print] = ACTIONS(2237), + [anon_sym_assert] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_del] = ACTIONS(2237), + [anon_sym_raise] = ACTIONS(2237), + [anon_sym_pass] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_def] = ACTIONS(2237), + [anon_sym_global] = ACTIONS(2237), + [anon_sym_nonlocal] = ACTIONS(2237), + [anon_sym_exec] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(2239), + [anon_sym_not] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_TILDE] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_lambda] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2239), + [anon_sym_None] = ACTIONS(2237), + [sym_integer] = ACTIONS(2237), + [sym_float] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_api] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2237), + [anon_sym_include] = ACTIONS(2237), + [anon_sym_DEF] = ACTIONS(2237), + [anon_sym_cdef] = ACTIONS(2237), + [anon_sym_cpdef] = ACTIONS(2237), + [anon_sym_int] = ACTIONS(2237), + [anon_sym_double] = ACTIONS(2237), + [anon_sym_complex] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_signed] = ACTIONS(2237), + [anon_sym_unsigned] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [anon_sym_short] = ACTIONS(2237), + [anon_sym_long] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_volatile] = ACTIONS(2237), + [anon_sym_ctypedef] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_cppclass] = ACTIONS(2237), + [anon_sym_fused] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_packed] = ACTIONS(2237), + [anon_sym_inline] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_sizeof] = ACTIONS(2237), + [sym__dedent] = ACTIONS(2239), + [sym_string_start] = ACTIONS(2239), }, [684] = { - [sym_identifier] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym_import] = ACTIONS(2279), - [anon_sym_cimport] = ACTIONS(2279), - [anon_sym_from] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_print] = ACTIONS(2279), - [anon_sym_assert] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2279), - [anon_sym_del] = ACTIONS(2279), - [anon_sym_raise] = ACTIONS(2279), - [anon_sym_pass] = ACTIONS(2279), - [anon_sym_break] = ACTIONS(2279), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2279), - [anon_sym_match] = ACTIONS(2279), - [anon_sym_async] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2279), - [anon_sym_while] = ACTIONS(2279), - [anon_sym_try] = ACTIONS(2279), - [anon_sym_with] = ACTIONS(2279), - [anon_sym_def] = ACTIONS(2279), - [anon_sym_global] = ACTIONS(2279), - [anon_sym_nonlocal] = ACTIONS(2279), - [anon_sym_exec] = ACTIONS(2279), - [anon_sym_type] = ACTIONS(2279), - [anon_sym_class] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_AT] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2281), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_not] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_TILDE] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_lambda] = ACTIONS(2279), - [anon_sym_yield] = ACTIONS(2279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), - [anon_sym_None] = ACTIONS(2279), - [sym_integer] = ACTIONS(2279), - [sym_float] = ACTIONS(2281), - [anon_sym_await] = ACTIONS(2279), - [anon_sym_api] = ACTIONS(2279), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2279), - [anon_sym_include] = ACTIONS(2279), - [anon_sym_DEF] = ACTIONS(2279), - [anon_sym_cdef] = ACTIONS(2279), - [anon_sym_cpdef] = ACTIONS(2279), - [anon_sym_int] = ACTIONS(2279), - [anon_sym_double] = ACTIONS(2279), - [anon_sym_complex] = ACTIONS(2279), - [anon_sym_new] = ACTIONS(2279), - [anon_sym_signed] = ACTIONS(2279), - [anon_sym_unsigned] = ACTIONS(2279), - [anon_sym_char] = ACTIONS(2279), - [anon_sym_short] = ACTIONS(2279), - [anon_sym_long] = ACTIONS(2279), - [anon_sym_const] = ACTIONS(2279), - [anon_sym_volatile] = ACTIONS(2279), - [anon_sym_ctypedef] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2279), - [anon_sym_union] = ACTIONS(2279), - [anon_sym_enum] = ACTIONS(2279), - [anon_sym_cppclass] = ACTIONS(2279), - [anon_sym_fused] = ACTIONS(2279), - [anon_sym_public] = ACTIONS(2279), - [anon_sym_packed] = ACTIONS(2279), - [anon_sym_inline] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2279), - [anon_sym_sizeof] = ACTIONS(2279), - [sym__dedent] = ACTIONS(2281), - [sym_string_start] = ACTIONS(2281), + [sym_identifier] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(2241), + [anon_sym_cimport] = ACTIONS(2241), + [anon_sym_from] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_print] = ACTIONS(2241), + [anon_sym_assert] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_del] = ACTIONS(2241), + [anon_sym_raise] = ACTIONS(2241), + [anon_sym_pass] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_with] = ACTIONS(2241), + [anon_sym_def] = ACTIONS(2241), + [anon_sym_global] = ACTIONS(2241), + [anon_sym_nonlocal] = ACTIONS(2241), + [anon_sym_exec] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_AT] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(2243), + [anon_sym_not] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_lambda] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), + [anon_sym_None] = ACTIONS(2241), + [sym_integer] = ACTIONS(2241), + [sym_float] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_api] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2241), + [anon_sym_include] = ACTIONS(2241), + [anon_sym_DEF] = ACTIONS(2241), + [anon_sym_cdef] = ACTIONS(2241), + [anon_sym_cpdef] = ACTIONS(2241), + [anon_sym_int] = ACTIONS(2241), + [anon_sym_double] = ACTIONS(2241), + [anon_sym_complex] = ACTIONS(2241), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_signed] = ACTIONS(2241), + [anon_sym_unsigned] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [anon_sym_short] = ACTIONS(2241), + [anon_sym_long] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_volatile] = ACTIONS(2241), + [anon_sym_ctypedef] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_cppclass] = ACTIONS(2241), + [anon_sym_fused] = ACTIONS(2241), + [anon_sym_public] = ACTIONS(2241), + [anon_sym_packed] = ACTIONS(2241), + [anon_sym_inline] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2241), + [anon_sym_sizeof] = ACTIONS(2241), + [sym__dedent] = ACTIONS(2243), + [sym_string_start] = ACTIONS(2243), }, [685] = { - [sym_identifier] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(2285), - [anon_sym_import] = ACTIONS(2283), - [anon_sym_cimport] = ACTIONS(2283), - [anon_sym_from] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(2285), - [anon_sym_print] = ACTIONS(2283), - [anon_sym_assert] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2283), - [anon_sym_del] = ACTIONS(2283), - [anon_sym_raise] = ACTIONS(2283), - [anon_sym_pass] = ACTIONS(2283), - [anon_sym_break] = ACTIONS(2283), - [anon_sym_continue] = ACTIONS(2283), - [anon_sym_if] = ACTIONS(2283), - [anon_sym_match] = ACTIONS(2283), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_for] = ACTIONS(2283), - [anon_sym_while] = ACTIONS(2283), - [anon_sym_try] = ACTIONS(2283), - [anon_sym_with] = ACTIONS(2283), - [anon_sym_def] = ACTIONS(2283), - [anon_sym_global] = ACTIONS(2283), - [anon_sym_nonlocal] = ACTIONS(2283), - [anon_sym_exec] = ACTIONS(2283), - [anon_sym_type] = ACTIONS(2283), - [anon_sym_class] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_AT] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_PLUS] = ACTIONS(2285), - [anon_sym_not] = ACTIONS(2283), - [anon_sym_AMP] = ACTIONS(2285), - [anon_sym_TILDE] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_lambda] = ACTIONS(2283), - [anon_sym_yield] = ACTIONS(2283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2285), - [anon_sym_None] = ACTIONS(2283), - [sym_integer] = ACTIONS(2283), - [sym_float] = ACTIONS(2285), - [anon_sym_await] = ACTIONS(2283), - [anon_sym_api] = ACTIONS(2283), - [sym_true] = ACTIONS(2283), - [sym_false] = ACTIONS(2283), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2283), - [anon_sym_include] = ACTIONS(2283), - [anon_sym_DEF] = ACTIONS(2283), - [anon_sym_cdef] = ACTIONS(2283), - [anon_sym_cpdef] = ACTIONS(2283), - [anon_sym_int] = ACTIONS(2283), - [anon_sym_double] = ACTIONS(2283), - [anon_sym_complex] = ACTIONS(2283), - [anon_sym_new] = ACTIONS(2283), - [anon_sym_signed] = ACTIONS(2283), - [anon_sym_unsigned] = ACTIONS(2283), - [anon_sym_char] = ACTIONS(2283), - [anon_sym_short] = ACTIONS(2283), - [anon_sym_long] = ACTIONS(2283), - [anon_sym_const] = ACTIONS(2283), - [anon_sym_volatile] = ACTIONS(2283), - [anon_sym_ctypedef] = ACTIONS(2283), - [anon_sym_struct] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_enum] = ACTIONS(2283), - [anon_sym_cppclass] = ACTIONS(2283), - [anon_sym_fused] = ACTIONS(2283), - [anon_sym_public] = ACTIONS(2283), - [anon_sym_packed] = ACTIONS(2283), - [anon_sym_inline] = ACTIONS(2283), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_sizeof] = ACTIONS(2283), - [sym__dedent] = ACTIONS(2285), - [sym_string_start] = ACTIONS(2285), + [sym_identifier] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_import] = ACTIONS(2245), + [anon_sym_cimport] = ACTIONS(2245), + [anon_sym_from] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_print] = ACTIONS(2245), + [anon_sym_assert] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_del] = ACTIONS(2245), + [anon_sym_raise] = ACTIONS(2245), + [anon_sym_pass] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [anon_sym_with] = ACTIONS(2245), + [anon_sym_def] = ACTIONS(2245), + [anon_sym_global] = ACTIONS(2245), + [anon_sym_nonlocal] = ACTIONS(2245), + [anon_sym_exec] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_class] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_AT] = ACTIONS(2247), + [anon_sym_DASH] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_PLUS] = ACTIONS(2247), + [anon_sym_not] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2247), + [anon_sym_TILDE] = ACTIONS(2247), + [anon_sym_LT] = ACTIONS(2247), + [anon_sym_lambda] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2247), + [anon_sym_None] = ACTIONS(2245), + [sym_integer] = ACTIONS(2245), + [sym_float] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_api] = ACTIONS(2245), + [sym_true] = ACTIONS(2245), + [sym_false] = ACTIONS(2245), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2245), + [anon_sym_include] = ACTIONS(2245), + [anon_sym_DEF] = ACTIONS(2245), + [anon_sym_cdef] = ACTIONS(2245), + [anon_sym_cpdef] = ACTIONS(2245), + [anon_sym_int] = ACTIONS(2245), + [anon_sym_double] = ACTIONS(2245), + [anon_sym_complex] = ACTIONS(2245), + [anon_sym_new] = ACTIONS(2245), + [anon_sym_signed] = ACTIONS(2245), + [anon_sym_unsigned] = ACTIONS(2245), + [anon_sym_char] = ACTIONS(2245), + [anon_sym_short] = ACTIONS(2245), + [anon_sym_long] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_volatile] = ACTIONS(2245), + [anon_sym_ctypedef] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_cppclass] = ACTIONS(2245), + [anon_sym_fused] = ACTIONS(2245), + [anon_sym_public] = ACTIONS(2245), + [anon_sym_packed] = ACTIONS(2245), + [anon_sym_inline] = ACTIONS(2245), + [anon_sym_readonly] = ACTIONS(2245), + [anon_sym_sizeof] = ACTIONS(2245), + [sym__dedent] = ACTIONS(2247), + [sym_string_start] = ACTIONS(2247), }, [686] = { - [sym_identifier] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_cimport] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_print] = ACTIONS(2287), - [anon_sym_assert] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_del] = ACTIONS(2287), - [anon_sym_raise] = ACTIONS(2287), - [anon_sym_pass] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_def] = ACTIONS(2287), - [anon_sym_global] = ACTIONS(2287), - [anon_sym_nonlocal] = ACTIONS(2287), - [anon_sym_exec] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_AT] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_not] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_lambda] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2289), - [anon_sym_None] = ACTIONS(2287), - [sym_integer] = ACTIONS(2287), - [sym_float] = ACTIONS(2289), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_api] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_include] = ACTIONS(2287), - [anon_sym_DEF] = ACTIONS(2287), - [anon_sym_cdef] = ACTIONS(2287), - [anon_sym_cpdef] = ACTIONS(2287), - [anon_sym_int] = ACTIONS(2287), - [anon_sym_double] = ACTIONS(2287), - [anon_sym_complex] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_signed] = ACTIONS(2287), - [anon_sym_unsigned] = ACTIONS(2287), - [anon_sym_char] = ACTIONS(2287), - [anon_sym_short] = ACTIONS(2287), - [anon_sym_long] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_volatile] = ACTIONS(2287), - [anon_sym_ctypedef] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_cppclass] = ACTIONS(2287), - [anon_sym_fused] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_packed] = ACTIONS(2287), - [anon_sym_inline] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_sizeof] = ACTIONS(2287), - [sym__dedent] = ACTIONS(2289), - [sym_string_start] = ACTIONS(2289), + [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), }, [687] = { - [sym_identifier] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_import] = ACTIONS(2291), - [anon_sym_cimport] = ACTIONS(2291), - [anon_sym_from] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_print] = ACTIONS(2291), - [anon_sym_assert] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_del] = ACTIONS(2291), - [anon_sym_raise] = ACTIONS(2291), - [anon_sym_pass] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2291), - [anon_sym_async] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_with] = ACTIONS(2291), - [anon_sym_def] = ACTIONS(2291), - [anon_sym_global] = ACTIONS(2291), - [anon_sym_nonlocal] = ACTIONS(2291), - [anon_sym_exec] = ACTIONS(2291), - [anon_sym_type] = ACTIONS(2291), - [anon_sym_class] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2293), - [anon_sym_AT] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_PLUS] = ACTIONS(2293), - [anon_sym_not] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_lambda] = ACTIONS(2291), - [anon_sym_yield] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2293), - [anon_sym_None] = ACTIONS(2291), - [sym_integer] = ACTIONS(2291), - [sym_float] = ACTIONS(2293), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_api] = ACTIONS(2291), - [sym_true] = ACTIONS(2291), - [sym_false] = ACTIONS(2291), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2291), - [anon_sym_include] = ACTIONS(2291), - [anon_sym_DEF] = ACTIONS(2291), - [anon_sym_cdef] = ACTIONS(2291), - [anon_sym_cpdef] = ACTIONS(2291), - [anon_sym_int] = ACTIONS(2291), - [anon_sym_double] = ACTIONS(2291), - [anon_sym_complex] = ACTIONS(2291), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_signed] = ACTIONS(2291), - [anon_sym_unsigned] = ACTIONS(2291), - [anon_sym_char] = ACTIONS(2291), - [anon_sym_short] = ACTIONS(2291), - [anon_sym_long] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_volatile] = ACTIONS(2291), - [anon_sym_ctypedef] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_enum] = ACTIONS(2291), - [anon_sym_cppclass] = ACTIONS(2291), - [anon_sym_fused] = ACTIONS(2291), - [anon_sym_public] = ACTIONS(2291), - [anon_sym_packed] = ACTIONS(2291), - [anon_sym_inline] = ACTIONS(2291), - [anon_sym_readonly] = ACTIONS(2291), - [anon_sym_sizeof] = ACTIONS(2291), - [sym__dedent] = ACTIONS(2293), - [sym_string_start] = ACTIONS(2293), + [sym_identifier] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_import] = ACTIONS(2253), + [anon_sym_cimport] = ACTIONS(2253), + [anon_sym_from] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_print] = ACTIONS(2253), + [anon_sym_assert] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_del] = ACTIONS(2253), + [anon_sym_raise] = ACTIONS(2253), + [anon_sym_pass] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [anon_sym_with] = ACTIONS(2253), + [anon_sym_def] = ACTIONS(2253), + [anon_sym_global] = ACTIONS(2253), + [anon_sym_nonlocal] = ACTIONS(2253), + [anon_sym_exec] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_not] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_lambda] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2255), + [anon_sym_None] = ACTIONS(2253), + [sym_integer] = ACTIONS(2253), + [sym_float] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_api] = ACTIONS(2253), + [sym_true] = ACTIONS(2253), + [sym_false] = ACTIONS(2253), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2253), + [anon_sym_include] = ACTIONS(2253), + [anon_sym_DEF] = ACTIONS(2253), + [anon_sym_cdef] = ACTIONS(2253), + [anon_sym_cpdef] = ACTIONS(2253), + [anon_sym_int] = ACTIONS(2253), + [anon_sym_double] = ACTIONS(2253), + [anon_sym_complex] = ACTIONS(2253), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_signed] = ACTIONS(2253), + [anon_sym_unsigned] = ACTIONS(2253), + [anon_sym_char] = ACTIONS(2253), + [anon_sym_short] = ACTIONS(2253), + [anon_sym_long] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_volatile] = ACTIONS(2253), + [anon_sym_ctypedef] = ACTIONS(2253), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_cppclass] = ACTIONS(2253), + [anon_sym_fused] = ACTIONS(2253), + [anon_sym_public] = ACTIONS(2253), + [anon_sym_packed] = ACTIONS(2253), + [anon_sym_inline] = ACTIONS(2253), + [anon_sym_readonly] = ACTIONS(2253), + [anon_sym_sizeof] = ACTIONS(2253), + [sym__dedent] = ACTIONS(2255), + [sym_string_start] = ACTIONS(2255), }, [688] = { - [sym_identifier] = ACTIONS(2295), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2295), - [anon_sym_cimport] = ACTIONS(2295), - [anon_sym_from] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_print] = ACTIONS(2295), - [anon_sym_assert] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_del] = ACTIONS(2295), - [anon_sym_raise] = ACTIONS(2295), - [anon_sym_pass] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [anon_sym_try] = ACTIONS(2295), - [anon_sym_with] = ACTIONS(2295), - [anon_sym_def] = ACTIONS(2295), - [anon_sym_global] = ACTIONS(2295), - [anon_sym_nonlocal] = ACTIONS(2295), - [anon_sym_exec] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2295), - [anon_sym_class] = ACTIONS(2295), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_not] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_lambda] = ACTIONS(2295), - [anon_sym_yield] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2297), - [anon_sym_None] = ACTIONS(2295), - [sym_integer] = ACTIONS(2295), - [sym_float] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_api] = ACTIONS(2295), - [sym_true] = ACTIONS(2295), - [sym_false] = ACTIONS(2295), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2295), - [anon_sym_include] = ACTIONS(2295), - [anon_sym_DEF] = ACTIONS(2295), - [anon_sym_cdef] = ACTIONS(2295), - [anon_sym_cpdef] = ACTIONS(2295), - [anon_sym_int] = ACTIONS(2295), - [anon_sym_double] = ACTIONS(2295), - [anon_sym_complex] = ACTIONS(2295), - [anon_sym_new] = ACTIONS(2295), - [anon_sym_signed] = ACTIONS(2295), - [anon_sym_unsigned] = ACTIONS(2295), - [anon_sym_char] = ACTIONS(2295), - [anon_sym_short] = ACTIONS(2295), - [anon_sym_long] = ACTIONS(2295), - [anon_sym_const] = ACTIONS(2295), - [anon_sym_volatile] = ACTIONS(2295), - [anon_sym_ctypedef] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2295), - [anon_sym_union] = ACTIONS(2295), - [anon_sym_enum] = ACTIONS(2295), - [anon_sym_cppclass] = ACTIONS(2295), - [anon_sym_fused] = ACTIONS(2295), - [anon_sym_public] = ACTIONS(2295), - [anon_sym_packed] = ACTIONS(2295), - [anon_sym_inline] = ACTIONS(2295), - [anon_sym_readonly] = ACTIONS(2295), - [anon_sym_sizeof] = ACTIONS(2295), - [sym__dedent] = ACTIONS(2297), - [sym_string_start] = ACTIONS(2297), + [sym_identifier] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_import] = ACTIONS(2257), + [anon_sym_cimport] = ACTIONS(2257), + [anon_sym_from] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_print] = ACTIONS(2257), + [anon_sym_assert] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_del] = ACTIONS(2257), + [anon_sym_raise] = ACTIONS(2257), + [anon_sym_pass] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_with] = ACTIONS(2257), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_global] = ACTIONS(2257), + [anon_sym_nonlocal] = ACTIONS(2257), + [anon_sym_exec] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_class] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_AT] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_PLUS] = ACTIONS(2259), + [anon_sym_not] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2259), + [anon_sym_TILDE] = ACTIONS(2259), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_lambda] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2259), + [anon_sym_None] = ACTIONS(2257), + [sym_integer] = ACTIONS(2257), + [sym_float] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_api] = ACTIONS(2257), + [sym_true] = ACTIONS(2257), + [sym_false] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2257), + [anon_sym_include] = ACTIONS(2257), + [anon_sym_DEF] = ACTIONS(2257), + [anon_sym_cdef] = ACTIONS(2257), + [anon_sym_cpdef] = ACTIONS(2257), + [anon_sym_int] = ACTIONS(2257), + [anon_sym_double] = ACTIONS(2257), + [anon_sym_complex] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2257), + [anon_sym_signed] = ACTIONS(2257), + [anon_sym_unsigned] = ACTIONS(2257), + [anon_sym_char] = ACTIONS(2257), + [anon_sym_short] = ACTIONS(2257), + [anon_sym_long] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_volatile] = ACTIONS(2257), + [anon_sym_ctypedef] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_cppclass] = ACTIONS(2257), + [anon_sym_fused] = ACTIONS(2257), + [anon_sym_public] = ACTIONS(2257), + [anon_sym_packed] = ACTIONS(2257), + [anon_sym_inline] = ACTIONS(2257), + [anon_sym_readonly] = ACTIONS(2257), + [anon_sym_sizeof] = ACTIONS(2257), + [sym__dedent] = ACTIONS(2259), + [sym_string_start] = ACTIONS(2259), }, [689] = { - [sym_identifier] = ACTIONS(2299), - [anon_sym_SEMI] = ACTIONS(2301), - [anon_sym_import] = ACTIONS(2299), - [anon_sym_cimport] = ACTIONS(2299), - [anon_sym_from] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_STAR] = ACTIONS(2301), - [anon_sym_print] = ACTIONS(2299), - [anon_sym_assert] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2299), - [anon_sym_del] = ACTIONS(2299), - [anon_sym_raise] = ACTIONS(2299), - [anon_sym_pass] = ACTIONS(2299), - [anon_sym_break] = ACTIONS(2299), - [anon_sym_continue] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_async] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_try] = ACTIONS(2299), - [anon_sym_with] = ACTIONS(2299), - [anon_sym_def] = ACTIONS(2299), - [anon_sym_global] = ACTIONS(2299), - [anon_sym_nonlocal] = ACTIONS(2299), - [anon_sym_exec] = ACTIONS(2299), - [anon_sym_type] = ACTIONS(2299), - [anon_sym_class] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_AT] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_LBRACE] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2301), - [anon_sym_not] = ACTIONS(2299), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_TILDE] = ACTIONS(2301), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_lambda] = ACTIONS(2299), - [anon_sym_yield] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), - [anon_sym_None] = ACTIONS(2299), - [sym_integer] = ACTIONS(2299), - [sym_float] = ACTIONS(2301), - [anon_sym_await] = ACTIONS(2299), - [anon_sym_api] = ACTIONS(2299), - [sym_true] = ACTIONS(2299), - [sym_false] = ACTIONS(2299), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2299), - [anon_sym_include] = ACTIONS(2299), - [anon_sym_DEF] = ACTIONS(2299), - [anon_sym_cdef] = ACTIONS(2299), - [anon_sym_cpdef] = ACTIONS(2299), - [anon_sym_int] = ACTIONS(2299), - [anon_sym_double] = ACTIONS(2299), - [anon_sym_complex] = ACTIONS(2299), - [anon_sym_new] = ACTIONS(2299), - [anon_sym_signed] = ACTIONS(2299), - [anon_sym_unsigned] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [anon_sym_short] = ACTIONS(2299), - [anon_sym_long] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [anon_sym_volatile] = ACTIONS(2299), - [anon_sym_ctypedef] = ACTIONS(2299), - [anon_sym_struct] = ACTIONS(2299), - [anon_sym_union] = ACTIONS(2299), - [anon_sym_enum] = ACTIONS(2299), - [anon_sym_cppclass] = ACTIONS(2299), - [anon_sym_fused] = ACTIONS(2299), - [anon_sym_public] = ACTIONS(2299), - [anon_sym_packed] = ACTIONS(2299), - [anon_sym_inline] = ACTIONS(2299), - [anon_sym_readonly] = ACTIONS(2299), - [anon_sym_sizeof] = ACTIONS(2299), - [sym__dedent] = ACTIONS(2301), - [sym_string_start] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_cimport] = ACTIONS(2261), + [anon_sym_from] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_STAR] = ACTIONS(2263), + [anon_sym_print] = ACTIONS(2261), + [anon_sym_assert] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_del] = ACTIONS(2261), + [anon_sym_raise] = ACTIONS(2261), + [anon_sym_pass] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [anon_sym_with] = ACTIONS(2261), + [anon_sym_def] = ACTIONS(2261), + [anon_sym_global] = ACTIONS(2261), + [anon_sym_nonlocal] = ACTIONS(2261), + [anon_sym_exec] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_class] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_AT] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_not] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_lambda] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2263), + [anon_sym_None] = ACTIONS(2261), + [sym_integer] = ACTIONS(2261), + [sym_float] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_api] = ACTIONS(2261), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2261), + [anon_sym_include] = ACTIONS(2261), + [anon_sym_DEF] = ACTIONS(2261), + [anon_sym_cdef] = ACTIONS(2261), + [anon_sym_cpdef] = ACTIONS(2261), + [anon_sym_int] = ACTIONS(2261), + [anon_sym_double] = ACTIONS(2261), + [anon_sym_complex] = ACTIONS(2261), + [anon_sym_new] = ACTIONS(2261), + [anon_sym_signed] = ACTIONS(2261), + [anon_sym_unsigned] = ACTIONS(2261), + [anon_sym_char] = ACTIONS(2261), + [anon_sym_short] = ACTIONS(2261), + [anon_sym_long] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_volatile] = ACTIONS(2261), + [anon_sym_ctypedef] = ACTIONS(2261), + [anon_sym_struct] = ACTIONS(2261), + [anon_sym_union] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_cppclass] = ACTIONS(2261), + [anon_sym_fused] = ACTIONS(2261), + [anon_sym_public] = ACTIONS(2261), + [anon_sym_packed] = ACTIONS(2261), + [anon_sym_inline] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2261), + [anon_sym_sizeof] = ACTIONS(2261), + [sym__dedent] = ACTIONS(2263), + [sym_string_start] = ACTIONS(2263), }, [690] = { - [sym_identifier] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2305), - [anon_sym_import] = ACTIONS(2303), - [anon_sym_cimport] = ACTIONS(2303), - [anon_sym_from] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2305), - [anon_sym_print] = ACTIONS(2303), - [anon_sym_assert] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_del] = ACTIONS(2303), - [anon_sym_raise] = ACTIONS(2303), - [anon_sym_pass] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [anon_sym_try] = ACTIONS(2303), - [anon_sym_with] = ACTIONS(2303), - [anon_sym_def] = ACTIONS(2303), - [anon_sym_global] = ACTIONS(2303), - [anon_sym_nonlocal] = ACTIONS(2303), - [anon_sym_exec] = ACTIONS(2303), - [anon_sym_type] = ACTIONS(2303), - [anon_sym_class] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_AT] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_not] = ACTIONS(2303), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_TILDE] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_lambda] = ACTIONS(2303), - [anon_sym_yield] = ACTIONS(2303), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2305), - [anon_sym_None] = ACTIONS(2303), - [sym_integer] = ACTIONS(2303), - [sym_float] = ACTIONS(2305), - [anon_sym_await] = ACTIONS(2303), - [anon_sym_api] = ACTIONS(2303), - [sym_true] = ACTIONS(2303), - [sym_false] = ACTIONS(2303), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2303), - [anon_sym_include] = ACTIONS(2303), - [anon_sym_DEF] = ACTIONS(2303), - [anon_sym_cdef] = ACTIONS(2303), - [anon_sym_cpdef] = ACTIONS(2303), - [anon_sym_int] = ACTIONS(2303), - [anon_sym_double] = ACTIONS(2303), - [anon_sym_complex] = ACTIONS(2303), - [anon_sym_new] = ACTIONS(2303), - [anon_sym_signed] = ACTIONS(2303), - [anon_sym_unsigned] = ACTIONS(2303), - [anon_sym_char] = ACTIONS(2303), - [anon_sym_short] = ACTIONS(2303), - [anon_sym_long] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [anon_sym_volatile] = ACTIONS(2303), - [anon_sym_ctypedef] = ACTIONS(2303), - [anon_sym_struct] = ACTIONS(2303), - [anon_sym_union] = ACTIONS(2303), - [anon_sym_enum] = ACTIONS(2303), - [anon_sym_cppclass] = ACTIONS(2303), - [anon_sym_fused] = ACTIONS(2303), - [anon_sym_public] = ACTIONS(2303), - [anon_sym_packed] = ACTIONS(2303), - [anon_sym_inline] = ACTIONS(2303), - [anon_sym_readonly] = ACTIONS(2303), - [anon_sym_sizeof] = ACTIONS(2303), - [sym__dedent] = ACTIONS(2305), - [sym_string_start] = ACTIONS(2305), + [sym_identifier] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_import] = ACTIONS(2265), + [anon_sym_cimport] = ACTIONS(2265), + [anon_sym_from] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_print] = ACTIONS(2265), + [anon_sym_assert] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_del] = ACTIONS(2265), + [anon_sym_raise] = ACTIONS(2265), + [anon_sym_pass] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [anon_sym_with] = ACTIONS(2265), + [anon_sym_def] = ACTIONS(2265), + [anon_sym_global] = ACTIONS(2265), + [anon_sym_nonlocal] = ACTIONS(2265), + [anon_sym_exec] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_class] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_AT] = ACTIONS(2267), + [anon_sym_DASH] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(2267), + [anon_sym_not] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_TILDE] = ACTIONS(2267), + [anon_sym_LT] = ACTIONS(2267), + [anon_sym_lambda] = ACTIONS(2265), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2267), + [anon_sym_None] = ACTIONS(2265), + [sym_integer] = ACTIONS(2265), + [sym_float] = ACTIONS(2267), + [anon_sym_await] = ACTIONS(2265), + [anon_sym_api] = ACTIONS(2265), + [sym_true] = ACTIONS(2265), + [sym_false] = ACTIONS(2265), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2265), + [anon_sym_include] = ACTIONS(2265), + [anon_sym_DEF] = ACTIONS(2265), + [anon_sym_cdef] = ACTIONS(2265), + [anon_sym_cpdef] = ACTIONS(2265), + [anon_sym_int] = ACTIONS(2265), + [anon_sym_double] = ACTIONS(2265), + [anon_sym_complex] = ACTIONS(2265), + [anon_sym_new] = ACTIONS(2265), + [anon_sym_signed] = ACTIONS(2265), + [anon_sym_unsigned] = ACTIONS(2265), + [anon_sym_char] = ACTIONS(2265), + [anon_sym_short] = ACTIONS(2265), + [anon_sym_long] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_volatile] = ACTIONS(2265), + [anon_sym_ctypedef] = ACTIONS(2265), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_union] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_cppclass] = ACTIONS(2265), + [anon_sym_fused] = ACTIONS(2265), + [anon_sym_public] = ACTIONS(2265), + [anon_sym_packed] = ACTIONS(2265), + [anon_sym_inline] = ACTIONS(2265), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_sizeof] = ACTIONS(2265), + [sym__dedent] = ACTIONS(2267), + [sym_string_start] = ACTIONS(2267), }, [691] = { - [sym_identifier] = ACTIONS(2307), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_import] = ACTIONS(2307), - [anon_sym_cimport] = ACTIONS(2307), - [anon_sym_from] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_STAR] = ACTIONS(2309), - [anon_sym_print] = ACTIONS(2307), - [anon_sym_assert] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_del] = ACTIONS(2307), - [anon_sym_raise] = ACTIONS(2307), - [anon_sym_pass] = ACTIONS(2307), - [anon_sym_break] = ACTIONS(2307), - [anon_sym_continue] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_with] = ACTIONS(2307), - [anon_sym_def] = ACTIONS(2307), - [anon_sym_global] = ACTIONS(2307), - [anon_sym_nonlocal] = ACTIONS(2307), - [anon_sym_exec] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_class] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_AT] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_not] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2309), - [anon_sym_TILDE] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_lambda] = ACTIONS(2307), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2309), - [anon_sym_None] = ACTIONS(2307), - [sym_integer] = ACTIONS(2307), - [sym_float] = ACTIONS(2309), - [anon_sym_await] = ACTIONS(2307), - [anon_sym_api] = ACTIONS(2307), - [sym_true] = ACTIONS(2307), - [sym_false] = ACTIONS(2307), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2307), - [anon_sym_include] = ACTIONS(2307), - [anon_sym_DEF] = ACTIONS(2307), - [anon_sym_cdef] = ACTIONS(2307), - [anon_sym_cpdef] = ACTIONS(2307), - [anon_sym_int] = ACTIONS(2307), - [anon_sym_double] = ACTIONS(2307), - [anon_sym_complex] = ACTIONS(2307), - [anon_sym_new] = ACTIONS(2307), - [anon_sym_signed] = ACTIONS(2307), - [anon_sym_unsigned] = ACTIONS(2307), - [anon_sym_char] = ACTIONS(2307), - [anon_sym_short] = ACTIONS(2307), - [anon_sym_long] = ACTIONS(2307), - [anon_sym_const] = ACTIONS(2307), - [anon_sym_volatile] = ACTIONS(2307), - [anon_sym_ctypedef] = ACTIONS(2307), - [anon_sym_struct] = ACTIONS(2307), - [anon_sym_union] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2307), - [anon_sym_cppclass] = ACTIONS(2307), - [anon_sym_fused] = ACTIONS(2307), - [anon_sym_public] = ACTIONS(2307), - [anon_sym_packed] = ACTIONS(2307), - [anon_sym_inline] = ACTIONS(2307), - [anon_sym_readonly] = ACTIONS(2307), - [anon_sym_sizeof] = ACTIONS(2307), - [sym__dedent] = ACTIONS(2309), - [sym_string_start] = ACTIONS(2309), + [sym_identifier] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_import] = ACTIONS(2269), + [anon_sym_cimport] = ACTIONS(2269), + [anon_sym_from] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_print] = ACTIONS(2269), + [anon_sym_assert] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_del] = ACTIONS(2269), + [anon_sym_raise] = ACTIONS(2269), + [anon_sym_pass] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2269), + [anon_sym_with] = ACTIONS(2269), + [anon_sym_def] = ACTIONS(2269), + [anon_sym_global] = ACTIONS(2269), + [anon_sym_nonlocal] = ACTIONS(2269), + [anon_sym_exec] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_class] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_AT] = ACTIONS(2271), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_PLUS] = ACTIONS(2271), + [anon_sym_not] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_TILDE] = ACTIONS(2271), + [anon_sym_LT] = ACTIONS(2271), + [anon_sym_lambda] = ACTIONS(2269), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), + [anon_sym_None] = ACTIONS(2269), + [sym_integer] = ACTIONS(2269), + [sym_float] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_api] = ACTIONS(2269), + [sym_true] = ACTIONS(2269), + [sym_false] = ACTIONS(2269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2269), + [anon_sym_include] = ACTIONS(2269), + [anon_sym_DEF] = ACTIONS(2269), + [anon_sym_cdef] = ACTIONS(2269), + [anon_sym_cpdef] = ACTIONS(2269), + [anon_sym_int] = ACTIONS(2269), + [anon_sym_double] = ACTIONS(2269), + [anon_sym_complex] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2269), + [anon_sym_signed] = ACTIONS(2269), + [anon_sym_unsigned] = ACTIONS(2269), + [anon_sym_char] = ACTIONS(2269), + [anon_sym_short] = ACTIONS(2269), + [anon_sym_long] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_volatile] = ACTIONS(2269), + [anon_sym_ctypedef] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_cppclass] = ACTIONS(2269), + [anon_sym_fused] = ACTIONS(2269), + [anon_sym_public] = ACTIONS(2269), + [anon_sym_packed] = ACTIONS(2269), + [anon_sym_inline] = ACTIONS(2269), + [anon_sym_readonly] = ACTIONS(2269), + [anon_sym_sizeof] = ACTIONS(2269), + [sym__dedent] = ACTIONS(2271), + [sym_string_start] = ACTIONS(2271), }, [692] = { - [sym_identifier] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_import] = ACTIONS(2311), - [anon_sym_cimport] = ACTIONS(2311), - [anon_sym_from] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(2313), - [anon_sym_print] = ACTIONS(2311), - [anon_sym_assert] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_del] = ACTIONS(2311), - [anon_sym_raise] = ACTIONS(2311), - [anon_sym_pass] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_async] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_while] = ACTIONS(2311), - [anon_sym_try] = ACTIONS(2311), - [anon_sym_with] = ACTIONS(2311), - [anon_sym_def] = ACTIONS(2311), - [anon_sym_global] = ACTIONS(2311), - [anon_sym_nonlocal] = ACTIONS(2311), - [anon_sym_exec] = ACTIONS(2311), - [anon_sym_type] = ACTIONS(2311), - [anon_sym_class] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_AT] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_not] = ACTIONS(2311), - [anon_sym_AMP] = ACTIONS(2313), - [anon_sym_TILDE] = ACTIONS(2313), - [anon_sym_LT] = ACTIONS(2313), - [anon_sym_lambda] = ACTIONS(2311), - [anon_sym_yield] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2313), - [anon_sym_None] = ACTIONS(2311), - [sym_integer] = ACTIONS(2311), - [sym_float] = ACTIONS(2313), - [anon_sym_await] = ACTIONS(2311), - [anon_sym_api] = ACTIONS(2311), - [sym_true] = ACTIONS(2311), - [sym_false] = ACTIONS(2311), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2311), - [anon_sym_include] = ACTIONS(2311), - [anon_sym_DEF] = ACTIONS(2311), - [anon_sym_cdef] = ACTIONS(2311), - [anon_sym_cpdef] = ACTIONS(2311), - [anon_sym_int] = ACTIONS(2311), - [anon_sym_double] = ACTIONS(2311), - [anon_sym_complex] = ACTIONS(2311), - [anon_sym_new] = ACTIONS(2311), - [anon_sym_signed] = ACTIONS(2311), - [anon_sym_unsigned] = ACTIONS(2311), - [anon_sym_char] = ACTIONS(2311), - [anon_sym_short] = ACTIONS(2311), - [anon_sym_long] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [anon_sym_volatile] = ACTIONS(2311), - [anon_sym_ctypedef] = ACTIONS(2311), - [anon_sym_struct] = ACTIONS(2311), - [anon_sym_union] = ACTIONS(2311), - [anon_sym_enum] = ACTIONS(2311), - [anon_sym_cppclass] = ACTIONS(2311), - [anon_sym_fused] = ACTIONS(2311), - [anon_sym_public] = ACTIONS(2311), - [anon_sym_packed] = ACTIONS(2311), - [anon_sym_inline] = ACTIONS(2311), - [anon_sym_readonly] = ACTIONS(2311), - [anon_sym_sizeof] = ACTIONS(2311), - [sym__dedent] = ACTIONS(2313), - [sym_string_start] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_import] = ACTIONS(2273), + [anon_sym_cimport] = ACTIONS(2273), + [anon_sym_from] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(2275), + [anon_sym_print] = ACTIONS(2273), + [anon_sym_assert] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_del] = ACTIONS(2273), + [anon_sym_raise] = ACTIONS(2273), + [anon_sym_pass] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [anon_sym_with] = ACTIONS(2273), + [anon_sym_def] = ACTIONS(2273), + [anon_sym_global] = ACTIONS(2273), + [anon_sym_nonlocal] = ACTIONS(2273), + [anon_sym_exec] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_class] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_AT] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_PLUS] = ACTIONS(2275), + [anon_sym_not] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(2275), + [anon_sym_TILDE] = ACTIONS(2275), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_lambda] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2275), + [anon_sym_None] = ACTIONS(2273), + [sym_integer] = ACTIONS(2273), + [sym_float] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2273), + [anon_sym_api] = ACTIONS(2273), + [sym_true] = ACTIONS(2273), + [sym_false] = ACTIONS(2273), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2273), + [anon_sym_include] = ACTIONS(2273), + [anon_sym_DEF] = ACTIONS(2273), + [anon_sym_cdef] = ACTIONS(2273), + [anon_sym_cpdef] = ACTIONS(2273), + [anon_sym_int] = ACTIONS(2273), + [anon_sym_double] = ACTIONS(2273), + [anon_sym_complex] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(2273), + [anon_sym_signed] = ACTIONS(2273), + [anon_sym_unsigned] = ACTIONS(2273), + [anon_sym_char] = ACTIONS(2273), + [anon_sym_short] = ACTIONS(2273), + [anon_sym_long] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_volatile] = ACTIONS(2273), + [anon_sym_ctypedef] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_cppclass] = ACTIONS(2273), + [anon_sym_fused] = ACTIONS(2273), + [anon_sym_public] = ACTIONS(2273), + [anon_sym_packed] = ACTIONS(2273), + [anon_sym_inline] = ACTIONS(2273), + [anon_sym_readonly] = ACTIONS(2273), + [anon_sym_sizeof] = ACTIONS(2273), + [sym__dedent] = ACTIONS(2275), + [sym_string_start] = ACTIONS(2275), }, [693] = { - [sym_identifier] = ACTIONS(2315), - [anon_sym_SEMI] = ACTIONS(2317), - [anon_sym_import] = ACTIONS(2315), - [anon_sym_cimport] = ACTIONS(2315), - [anon_sym_from] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_print] = ACTIONS(2315), - [anon_sym_assert] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2315), - [anon_sym_del] = ACTIONS(2315), - [anon_sym_raise] = ACTIONS(2315), - [anon_sym_pass] = ACTIONS(2315), - [anon_sym_break] = ACTIONS(2315), - [anon_sym_continue] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_async] = ACTIONS(2315), - [anon_sym_for] = ACTIONS(2315), - [anon_sym_while] = ACTIONS(2315), - [anon_sym_try] = ACTIONS(2315), - [anon_sym_with] = ACTIONS(2315), - [anon_sym_def] = ACTIONS(2315), - [anon_sym_global] = ACTIONS(2315), - [anon_sym_nonlocal] = ACTIONS(2315), - [anon_sym_exec] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2315), - [anon_sym_class] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_AT] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2317), - [anon_sym_not] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2317), - [anon_sym_TILDE] = ACTIONS(2317), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_lambda] = ACTIONS(2315), - [anon_sym_yield] = ACTIONS(2315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2317), - [anon_sym_None] = ACTIONS(2315), - [sym_integer] = ACTIONS(2315), - [sym_float] = ACTIONS(2317), - [anon_sym_await] = ACTIONS(2315), - [anon_sym_api] = ACTIONS(2315), - [sym_true] = ACTIONS(2315), - [sym_false] = ACTIONS(2315), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2315), - [anon_sym_include] = ACTIONS(2315), - [anon_sym_DEF] = ACTIONS(2315), - [anon_sym_cdef] = ACTIONS(2315), - [anon_sym_cpdef] = ACTIONS(2315), - [anon_sym_int] = ACTIONS(2315), - [anon_sym_double] = ACTIONS(2315), - [anon_sym_complex] = ACTIONS(2315), - [anon_sym_new] = ACTIONS(2315), - [anon_sym_signed] = ACTIONS(2315), - [anon_sym_unsigned] = ACTIONS(2315), - [anon_sym_char] = ACTIONS(2315), - [anon_sym_short] = ACTIONS(2315), - [anon_sym_long] = ACTIONS(2315), - [anon_sym_const] = ACTIONS(2315), - [anon_sym_volatile] = ACTIONS(2315), - [anon_sym_ctypedef] = ACTIONS(2315), - [anon_sym_struct] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(2315), - [anon_sym_enum] = ACTIONS(2315), - [anon_sym_cppclass] = ACTIONS(2315), - [anon_sym_fused] = ACTIONS(2315), - [anon_sym_public] = ACTIONS(2315), - [anon_sym_packed] = ACTIONS(2315), - [anon_sym_inline] = ACTIONS(2315), - [anon_sym_readonly] = ACTIONS(2315), - [anon_sym_sizeof] = ACTIONS(2315), - [sym__dedent] = ACTIONS(2317), - [sym_string_start] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_import] = ACTIONS(2277), + [anon_sym_cimport] = ACTIONS(2277), + [anon_sym_from] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_STAR] = ACTIONS(2279), + [anon_sym_print] = ACTIONS(2277), + [anon_sym_assert] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_del] = ACTIONS(2277), + [anon_sym_raise] = ACTIONS(2277), + [anon_sym_pass] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2277), + [anon_sym_with] = ACTIONS(2277), + [anon_sym_def] = ACTIONS(2277), + [anon_sym_global] = ACTIONS(2277), + [anon_sym_nonlocal] = ACTIONS(2277), + [anon_sym_exec] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_class] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_AT] = ACTIONS(2279), + [anon_sym_DASH] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_PLUS] = ACTIONS(2279), + [anon_sym_not] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2279), + [anon_sym_TILDE] = ACTIONS(2279), + [anon_sym_LT] = ACTIONS(2279), + [anon_sym_lambda] = ACTIONS(2277), + [anon_sym_yield] = ACTIONS(2277), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2279), + [anon_sym_None] = ACTIONS(2277), + [sym_integer] = ACTIONS(2277), + [sym_float] = ACTIONS(2279), + [anon_sym_await] = ACTIONS(2277), + [anon_sym_api] = ACTIONS(2277), + [sym_true] = ACTIONS(2277), + [sym_false] = ACTIONS(2277), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2277), + [anon_sym_include] = ACTIONS(2277), + [anon_sym_DEF] = ACTIONS(2277), + [anon_sym_cdef] = ACTIONS(2277), + [anon_sym_cpdef] = ACTIONS(2277), + [anon_sym_int] = ACTIONS(2277), + [anon_sym_double] = ACTIONS(2277), + [anon_sym_complex] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(2277), + [anon_sym_signed] = ACTIONS(2277), + [anon_sym_unsigned] = ACTIONS(2277), + [anon_sym_char] = ACTIONS(2277), + [anon_sym_short] = ACTIONS(2277), + [anon_sym_long] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_volatile] = ACTIONS(2277), + [anon_sym_ctypedef] = ACTIONS(2277), + [anon_sym_struct] = ACTIONS(2277), + [anon_sym_union] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_cppclass] = ACTIONS(2277), + [anon_sym_fused] = ACTIONS(2277), + [anon_sym_public] = ACTIONS(2277), + [anon_sym_packed] = ACTIONS(2277), + [anon_sym_inline] = ACTIONS(2277), + [anon_sym_readonly] = ACTIONS(2277), + [anon_sym_sizeof] = ACTIONS(2277), + [sym__dedent] = ACTIONS(2279), + [sym_string_start] = ACTIONS(2279), }, [694] = { - [sym_identifier] = ACTIONS(2319), - [anon_sym_SEMI] = ACTIONS(2321), - [anon_sym_import] = ACTIONS(2319), - [anon_sym_cimport] = ACTIONS(2319), - [anon_sym_from] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_STAR] = ACTIONS(2321), - [anon_sym_print] = ACTIONS(2319), - [anon_sym_assert] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2319), - [anon_sym_del] = ACTIONS(2319), - [anon_sym_raise] = ACTIONS(2319), - [anon_sym_pass] = ACTIONS(2319), - [anon_sym_break] = ACTIONS(2319), - [anon_sym_continue] = ACTIONS(2319), - [anon_sym_if] = ACTIONS(2319), - [anon_sym_match] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_for] = ACTIONS(2319), - [anon_sym_while] = ACTIONS(2319), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_with] = ACTIONS(2319), - [anon_sym_def] = ACTIONS(2319), - [anon_sym_global] = ACTIONS(2319), - [anon_sym_nonlocal] = ACTIONS(2319), - [anon_sym_exec] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2319), - [anon_sym_class] = 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(2319), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_lambda] = ACTIONS(2319), - [anon_sym_yield] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), - [anon_sym_None] = ACTIONS(2319), - [sym_integer] = ACTIONS(2319), - [sym_float] = ACTIONS(2321), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_api] = ACTIONS(2319), - [sym_true] = ACTIONS(2319), - [sym_false] = ACTIONS(2319), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2319), - [anon_sym_include] = ACTIONS(2319), - [anon_sym_DEF] = ACTIONS(2319), - [anon_sym_cdef] = ACTIONS(2319), - [anon_sym_cpdef] = ACTIONS(2319), - [anon_sym_int] = ACTIONS(2319), - [anon_sym_double] = ACTIONS(2319), - [anon_sym_complex] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_signed] = ACTIONS(2319), - [anon_sym_unsigned] = ACTIONS(2319), - [anon_sym_char] = ACTIONS(2319), - [anon_sym_short] = ACTIONS(2319), - [anon_sym_long] = ACTIONS(2319), - [anon_sym_const] = ACTIONS(2319), - [anon_sym_volatile] = ACTIONS(2319), - [anon_sym_ctypedef] = ACTIONS(2319), - [anon_sym_struct] = ACTIONS(2319), - [anon_sym_union] = ACTIONS(2319), - [anon_sym_enum] = ACTIONS(2319), - [anon_sym_cppclass] = ACTIONS(2319), - [anon_sym_fused] = ACTIONS(2319), - [anon_sym_public] = ACTIONS(2319), - [anon_sym_packed] = ACTIONS(2319), - [anon_sym_inline] = ACTIONS(2319), - [anon_sym_readonly] = ACTIONS(2319), - [anon_sym_sizeof] = ACTIONS(2319), - [sym__dedent] = ACTIONS(2321), - [sym_string_start] = ACTIONS(2321), + [sym_identifier] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_import] = ACTIONS(2281), + [anon_sym_cimport] = ACTIONS(2281), + [anon_sym_from] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_print] = ACTIONS(2281), + [anon_sym_assert] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_del] = ACTIONS(2281), + [anon_sym_raise] = ACTIONS(2281), + [anon_sym_pass] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_with] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2281), + [anon_sym_global] = ACTIONS(2281), + [anon_sym_nonlocal] = ACTIONS(2281), + [anon_sym_exec] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_class] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_AT] = ACTIONS(2283), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(2283), + [anon_sym_not] = ACTIONS(2281), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_TILDE] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2283), + [anon_sym_lambda] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2283), + [anon_sym_None] = ACTIONS(2281), + [sym_integer] = ACTIONS(2281), + [sym_float] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_api] = ACTIONS(2281), + [sym_true] = ACTIONS(2281), + [sym_false] = ACTIONS(2281), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2281), + [anon_sym_include] = ACTIONS(2281), + [anon_sym_DEF] = ACTIONS(2281), + [anon_sym_cdef] = ACTIONS(2281), + [anon_sym_cpdef] = ACTIONS(2281), + [anon_sym_int] = ACTIONS(2281), + [anon_sym_double] = ACTIONS(2281), + [anon_sym_complex] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_signed] = ACTIONS(2281), + [anon_sym_unsigned] = ACTIONS(2281), + [anon_sym_char] = ACTIONS(2281), + [anon_sym_short] = ACTIONS(2281), + [anon_sym_long] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_volatile] = ACTIONS(2281), + [anon_sym_ctypedef] = ACTIONS(2281), + [anon_sym_struct] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_cppclass] = ACTIONS(2281), + [anon_sym_fused] = ACTIONS(2281), + [anon_sym_public] = ACTIONS(2281), + [anon_sym_packed] = ACTIONS(2281), + [anon_sym_inline] = ACTIONS(2281), + [anon_sym_readonly] = ACTIONS(2281), + [anon_sym_sizeof] = ACTIONS(2281), + [sym__dedent] = ACTIONS(2283), + [sym_string_start] = ACTIONS(2283), }, [695] = { - [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), + [sym_identifier] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_cimport] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_print] = ACTIONS(2285), + [anon_sym_assert] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_del] = ACTIONS(2285), + [anon_sym_raise] = ACTIONS(2285), + [anon_sym_pass] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_match] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_def] = ACTIONS(2285), + [anon_sym_global] = ACTIONS(2285), + [anon_sym_nonlocal] = ACTIONS(2285), + [anon_sym_exec] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_AT] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_not] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2287), + [anon_sym_LT] = ACTIONS(2287), + [anon_sym_lambda] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2287), + [anon_sym_None] = ACTIONS(2285), + [sym_integer] = ACTIONS(2285), + [sym_float] = ACTIONS(2287), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_api] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_include] = ACTIONS(2285), + [anon_sym_DEF] = ACTIONS(2285), + [anon_sym_cdef] = ACTIONS(2285), + [anon_sym_cpdef] = ACTIONS(2285), + [anon_sym_int] = ACTIONS(2285), + [anon_sym_double] = ACTIONS(2285), + [anon_sym_complex] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_signed] = ACTIONS(2285), + [anon_sym_unsigned] = ACTIONS(2285), + [anon_sym_char] = ACTIONS(2285), + [anon_sym_short] = ACTIONS(2285), + [anon_sym_long] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_volatile] = ACTIONS(2285), + [anon_sym_ctypedef] = ACTIONS(2285), + [anon_sym_struct] = ACTIONS(2285), + [anon_sym_union] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_cppclass] = ACTIONS(2285), + [anon_sym_fused] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_packed] = ACTIONS(2285), + [anon_sym_inline] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_sizeof] = ACTIONS(2285), + [sym__dedent] = ACTIONS(2287), + [sym_string_start] = ACTIONS(2287), }, [696] = { - [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), + [sym_identifier] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_cimport] = ACTIONS(2289), + [anon_sym_from] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_print] = ACTIONS(2289), + [anon_sym_assert] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_del] = ACTIONS(2289), + [anon_sym_raise] = ACTIONS(2289), + [anon_sym_pass] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_match] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_def] = ACTIONS(2289), + [anon_sym_global] = ACTIONS(2289), + [anon_sym_nonlocal] = ACTIONS(2289), + [anon_sym_exec] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_AT] = ACTIONS(2291), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_PLUS] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_TILDE] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2291), + [anon_sym_lambda] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2291), + [anon_sym_None] = ACTIONS(2289), + [sym_integer] = ACTIONS(2289), + [sym_float] = ACTIONS(2291), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_api] = ACTIONS(2289), + [sym_true] = ACTIONS(2289), + [sym_false] = ACTIONS(2289), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2289), + [anon_sym_include] = ACTIONS(2289), + [anon_sym_DEF] = ACTIONS(2289), + [anon_sym_cdef] = ACTIONS(2289), + [anon_sym_cpdef] = ACTIONS(2289), + [anon_sym_int] = ACTIONS(2289), + [anon_sym_double] = ACTIONS(2289), + [anon_sym_complex] = ACTIONS(2289), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_signed] = ACTIONS(2289), + [anon_sym_unsigned] = ACTIONS(2289), + [anon_sym_char] = ACTIONS(2289), + [anon_sym_short] = ACTIONS(2289), + [anon_sym_long] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_volatile] = ACTIONS(2289), + [anon_sym_ctypedef] = ACTIONS(2289), + [anon_sym_struct] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_cppclass] = ACTIONS(2289), + [anon_sym_fused] = ACTIONS(2289), + [anon_sym_public] = ACTIONS(2289), + [anon_sym_packed] = ACTIONS(2289), + [anon_sym_inline] = ACTIONS(2289), + [anon_sym_readonly] = ACTIONS(2289), + [anon_sym_sizeof] = ACTIONS(2289), + [sym__dedent] = ACTIONS(2291), + [sym_string_start] = ACTIONS(2291), }, [697] = { - [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(2333), - [anon_sym_STAR] = 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(2333), - [anon_sym_AT] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2333), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_lambda] = ACTIONS(2331), - [anon_sym_yield] = ACTIONS(2331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2333), - [anon_sym_None] = ACTIONS(2331), - [sym_integer] = ACTIONS(2331), - [sym_float] = 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(2333), - [sym_string_start] = ACTIONS(2333), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_import] = ACTIONS(2293), + [anon_sym_cimport] = ACTIONS(2293), + [anon_sym_from] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_print] = ACTIONS(2293), + [anon_sym_assert] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_del] = ACTIONS(2293), + [anon_sym_raise] = ACTIONS(2293), + [anon_sym_pass] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_with] = ACTIONS(2293), + [anon_sym_def] = ACTIONS(2293), + [anon_sym_global] = ACTIONS(2293), + [anon_sym_nonlocal] = ACTIONS(2293), + [anon_sym_exec] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_class] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_AT] = ACTIONS(2295), + [anon_sym_DASH] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_PLUS] = ACTIONS(2295), + [anon_sym_not] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2295), + [anon_sym_TILDE] = ACTIONS(2295), + [anon_sym_LT] = ACTIONS(2295), + [anon_sym_lambda] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2295), + [anon_sym_None] = ACTIONS(2293), + [sym_integer] = ACTIONS(2293), + [sym_float] = ACTIONS(2295), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_api] = ACTIONS(2293), + [sym_true] = ACTIONS(2293), + [sym_false] = ACTIONS(2293), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2293), + [anon_sym_include] = ACTIONS(2293), + [anon_sym_DEF] = ACTIONS(2293), + [anon_sym_cdef] = ACTIONS(2293), + [anon_sym_cpdef] = ACTIONS(2293), + [anon_sym_int] = ACTIONS(2293), + [anon_sym_double] = ACTIONS(2293), + [anon_sym_complex] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_signed] = ACTIONS(2293), + [anon_sym_unsigned] = ACTIONS(2293), + [anon_sym_char] = ACTIONS(2293), + [anon_sym_short] = ACTIONS(2293), + [anon_sym_long] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_volatile] = ACTIONS(2293), + [anon_sym_ctypedef] = ACTIONS(2293), + [anon_sym_struct] = ACTIONS(2293), + [anon_sym_union] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_cppclass] = ACTIONS(2293), + [anon_sym_fused] = ACTIONS(2293), + [anon_sym_public] = ACTIONS(2293), + [anon_sym_packed] = ACTIONS(2293), + [anon_sym_inline] = ACTIONS(2293), + [anon_sym_readonly] = ACTIONS(2293), + [anon_sym_sizeof] = ACTIONS(2293), + [sym__dedent] = ACTIONS(2295), + [sym_string_start] = ACTIONS(2295), }, [698] = { - [sym_identifier] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_import] = ACTIONS(2335), - [anon_sym_cimport] = ACTIONS(2335), - [anon_sym_from] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_print] = ACTIONS(2335), - [anon_sym_assert] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_del] = ACTIONS(2335), - [anon_sym_raise] = ACTIONS(2335), - [anon_sym_pass] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_async] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2335), - [anon_sym_with] = ACTIONS(2335), - [anon_sym_def] = ACTIONS(2335), - [anon_sym_global] = ACTIONS(2335), - [anon_sym_nonlocal] = ACTIONS(2335), - [anon_sym_exec] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2335), - [anon_sym_class] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_AT] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_not] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_TILDE] = ACTIONS(2337), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_lambda] = ACTIONS(2335), - [anon_sym_yield] = ACTIONS(2335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2337), - [anon_sym_None] = ACTIONS(2335), - [sym_integer] = ACTIONS(2335), - [sym_float] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2335), - [anon_sym_api] = ACTIONS(2335), - [sym_true] = ACTIONS(2335), - [sym_false] = ACTIONS(2335), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2335), - [anon_sym_include] = ACTIONS(2335), - [anon_sym_DEF] = ACTIONS(2335), - [anon_sym_cdef] = ACTIONS(2335), - [anon_sym_cpdef] = ACTIONS(2335), - [anon_sym_int] = ACTIONS(2335), - [anon_sym_double] = ACTIONS(2335), - [anon_sym_complex] = ACTIONS(2335), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_signed] = ACTIONS(2335), - [anon_sym_unsigned] = ACTIONS(2335), - [anon_sym_char] = ACTIONS(2335), - [anon_sym_short] = ACTIONS(2335), - [anon_sym_long] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [anon_sym_volatile] = ACTIONS(2335), - [anon_sym_ctypedef] = ACTIONS(2335), - [anon_sym_struct] = ACTIONS(2335), - [anon_sym_union] = ACTIONS(2335), - [anon_sym_enum] = ACTIONS(2335), - [anon_sym_cppclass] = ACTIONS(2335), - [anon_sym_fused] = ACTIONS(2335), - [anon_sym_public] = ACTIONS(2335), - [anon_sym_packed] = ACTIONS(2335), - [anon_sym_inline] = ACTIONS(2335), - [anon_sym_readonly] = ACTIONS(2335), - [anon_sym_sizeof] = ACTIONS(2335), - [sym__dedent] = ACTIONS(2337), - [sym_string_start] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_import] = ACTIONS(2297), + [anon_sym_cimport] = ACTIONS(2297), + [anon_sym_from] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2299), + [anon_sym_print] = ACTIONS(2297), + [anon_sym_assert] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_del] = ACTIONS(2297), + [anon_sym_raise] = ACTIONS(2297), + [anon_sym_pass] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_with] = ACTIONS(2297), + [anon_sym_def] = ACTIONS(2297), + [anon_sym_global] = ACTIONS(2297), + [anon_sym_nonlocal] = ACTIONS(2297), + [anon_sym_exec] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_class] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_AT] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2299), + [anon_sym_not] = ACTIONS(2297), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_lambda] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2299), + [anon_sym_None] = ACTIONS(2297), + [sym_integer] = ACTIONS(2297), + [sym_float] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_api] = ACTIONS(2297), + [sym_true] = ACTIONS(2297), + [sym_false] = ACTIONS(2297), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2297), + [anon_sym_include] = ACTIONS(2297), + [anon_sym_DEF] = ACTIONS(2297), + [anon_sym_cdef] = ACTIONS(2297), + [anon_sym_cpdef] = ACTIONS(2297), + [anon_sym_int] = ACTIONS(2297), + [anon_sym_double] = ACTIONS(2297), + [anon_sym_complex] = ACTIONS(2297), + [anon_sym_new] = ACTIONS(2297), + [anon_sym_signed] = ACTIONS(2297), + [anon_sym_unsigned] = ACTIONS(2297), + [anon_sym_char] = ACTIONS(2297), + [anon_sym_short] = ACTIONS(2297), + [anon_sym_long] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_volatile] = ACTIONS(2297), + [anon_sym_ctypedef] = ACTIONS(2297), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_cppclass] = ACTIONS(2297), + [anon_sym_fused] = ACTIONS(2297), + [anon_sym_public] = ACTIONS(2297), + [anon_sym_packed] = ACTIONS(2297), + [anon_sym_inline] = ACTIONS(2297), + [anon_sym_readonly] = ACTIONS(2297), + [anon_sym_sizeof] = ACTIONS(2297), + [sym__dedent] = ACTIONS(2299), + [sym_string_start] = ACTIONS(2299), }, [699] = { - [sym_identifier] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2341), - [anon_sym_import] = ACTIONS(2339), - [anon_sym_cimport] = ACTIONS(2339), - [anon_sym_from] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_print] = ACTIONS(2339), - [anon_sym_assert] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2339), - [anon_sym_del] = ACTIONS(2339), - [anon_sym_raise] = ACTIONS(2339), - [anon_sym_pass] = ACTIONS(2339), - [anon_sym_break] = ACTIONS(2339), - [anon_sym_continue] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(2339), - [anon_sym_match] = ACTIONS(2339), - [anon_sym_async] = ACTIONS(2339), - [anon_sym_for] = ACTIONS(2339), - [anon_sym_while] = ACTIONS(2339), - [anon_sym_try] = ACTIONS(2339), - [anon_sym_with] = ACTIONS(2339), - [anon_sym_def] = ACTIONS(2339), - [anon_sym_global] = ACTIONS(2339), - [anon_sym_nonlocal] = ACTIONS(2339), - [anon_sym_exec] = ACTIONS(2339), - [anon_sym_type] = ACTIONS(2339), - [anon_sym_class] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_AT] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2341), - [anon_sym_not] = ACTIONS(2339), - [anon_sym_AMP] = ACTIONS(2341), - [anon_sym_TILDE] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_lambda] = ACTIONS(2339), - [anon_sym_yield] = ACTIONS(2339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2341), - [anon_sym_None] = ACTIONS(2339), - [sym_integer] = ACTIONS(2339), - [sym_float] = ACTIONS(2341), - [anon_sym_await] = ACTIONS(2339), - [anon_sym_api] = ACTIONS(2339), - [sym_true] = ACTIONS(2339), - [sym_false] = ACTIONS(2339), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2339), - [anon_sym_include] = ACTIONS(2339), - [anon_sym_DEF] = ACTIONS(2339), - [anon_sym_cdef] = ACTIONS(2339), - [anon_sym_cpdef] = ACTIONS(2339), - [anon_sym_int] = ACTIONS(2339), - [anon_sym_double] = ACTIONS(2339), - [anon_sym_complex] = ACTIONS(2339), - [anon_sym_new] = ACTIONS(2339), - [anon_sym_signed] = ACTIONS(2339), - [anon_sym_unsigned] = ACTIONS(2339), - [anon_sym_char] = ACTIONS(2339), - [anon_sym_short] = ACTIONS(2339), - [anon_sym_long] = ACTIONS(2339), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_volatile] = ACTIONS(2339), - [anon_sym_ctypedef] = ACTIONS(2339), - [anon_sym_struct] = ACTIONS(2339), - [anon_sym_union] = ACTIONS(2339), - [anon_sym_enum] = ACTIONS(2339), - [anon_sym_cppclass] = ACTIONS(2339), - [anon_sym_fused] = ACTIONS(2339), - [anon_sym_public] = ACTIONS(2339), - [anon_sym_packed] = ACTIONS(2339), - [anon_sym_inline] = ACTIONS(2339), - [anon_sym_readonly] = ACTIONS(2339), - [anon_sym_sizeof] = ACTIONS(2339), - [sym__dedent] = ACTIONS(2341), - [sym_string_start] = ACTIONS(2341), + [sym_identifier] = ACTIONS(2301), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_import] = ACTIONS(2301), + [anon_sym_cimport] = ACTIONS(2301), + [anon_sym_from] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2303), + [anon_sym_print] = ACTIONS(2301), + [anon_sym_assert] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_del] = ACTIONS(2301), + [anon_sym_raise] = ACTIONS(2301), + [anon_sym_pass] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_match] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [anon_sym_with] = ACTIONS(2301), + [anon_sym_def] = ACTIONS(2301), + [anon_sym_global] = ACTIONS(2301), + [anon_sym_nonlocal] = ACTIONS(2301), + [anon_sym_exec] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_class] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_AT] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(2303), + [anon_sym_not] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_TILDE] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2303), + [anon_sym_lambda] = ACTIONS(2301), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2303), + [anon_sym_None] = ACTIONS(2301), + [sym_integer] = ACTIONS(2301), + [sym_float] = ACTIONS(2303), + [anon_sym_await] = ACTIONS(2301), + [anon_sym_api] = ACTIONS(2301), + [sym_true] = ACTIONS(2301), + [sym_false] = ACTIONS(2301), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2301), + [anon_sym_include] = ACTIONS(2301), + [anon_sym_DEF] = ACTIONS(2301), + [anon_sym_cdef] = ACTIONS(2301), + [anon_sym_cpdef] = ACTIONS(2301), + [anon_sym_int] = ACTIONS(2301), + [anon_sym_double] = ACTIONS(2301), + [anon_sym_complex] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2301), + [anon_sym_signed] = ACTIONS(2301), + [anon_sym_unsigned] = ACTIONS(2301), + [anon_sym_char] = ACTIONS(2301), + [anon_sym_short] = ACTIONS(2301), + [anon_sym_long] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_volatile] = ACTIONS(2301), + [anon_sym_ctypedef] = ACTIONS(2301), + [anon_sym_struct] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), + [anon_sym_cppclass] = ACTIONS(2301), + [anon_sym_fused] = ACTIONS(2301), + [anon_sym_public] = ACTIONS(2301), + [anon_sym_packed] = ACTIONS(2301), + [anon_sym_inline] = ACTIONS(2301), + [anon_sym_readonly] = ACTIONS(2301), + [anon_sym_sizeof] = ACTIONS(2301), + [sym__dedent] = ACTIONS(2303), + [sym_string_start] = ACTIONS(2303), }, [700] = { - [sym_identifier] = ACTIONS(2343), - [anon_sym_SEMI] = ACTIONS(2345), - [anon_sym_import] = ACTIONS(2343), - [anon_sym_cimport] = ACTIONS(2343), - [anon_sym_from] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2345), - [anon_sym_print] = ACTIONS(2343), - [anon_sym_assert] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_del] = ACTIONS(2343), - [anon_sym_raise] = ACTIONS(2343), - [anon_sym_pass] = ACTIONS(2343), - [anon_sym_break] = ACTIONS(2343), - [anon_sym_continue] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_async] = ACTIONS(2343), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_def] = ACTIONS(2343), - [anon_sym_global] = ACTIONS(2343), - [anon_sym_nonlocal] = ACTIONS(2343), - [anon_sym_exec] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_class] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2345), - [anon_sym_AT] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2345), - [anon_sym_not] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2345), - [anon_sym_TILDE] = ACTIONS(2345), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_lambda] = ACTIONS(2343), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2345), - [anon_sym_None] = ACTIONS(2343), - [sym_integer] = ACTIONS(2343), - [sym_float] = ACTIONS(2345), - [anon_sym_await] = ACTIONS(2343), - [anon_sym_api] = ACTIONS(2343), - [sym_true] = ACTIONS(2343), - [sym_false] = ACTIONS(2343), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2343), - [anon_sym_include] = ACTIONS(2343), - [anon_sym_DEF] = ACTIONS(2343), - [anon_sym_cdef] = ACTIONS(2343), - [anon_sym_cpdef] = ACTIONS(2343), - [anon_sym_int] = ACTIONS(2343), - [anon_sym_double] = ACTIONS(2343), - [anon_sym_complex] = ACTIONS(2343), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_signed] = ACTIONS(2343), - [anon_sym_unsigned] = ACTIONS(2343), - [anon_sym_char] = ACTIONS(2343), - [anon_sym_short] = ACTIONS(2343), - [anon_sym_long] = ACTIONS(2343), - [anon_sym_const] = ACTIONS(2343), - [anon_sym_volatile] = ACTIONS(2343), - [anon_sym_ctypedef] = ACTIONS(2343), - [anon_sym_struct] = ACTIONS(2343), - [anon_sym_union] = ACTIONS(2343), - [anon_sym_enum] = ACTIONS(2343), - [anon_sym_cppclass] = ACTIONS(2343), - [anon_sym_fused] = ACTIONS(2343), - [anon_sym_public] = ACTIONS(2343), - [anon_sym_packed] = ACTIONS(2343), - [anon_sym_inline] = ACTIONS(2343), - [anon_sym_readonly] = ACTIONS(2343), - [anon_sym_sizeof] = ACTIONS(2343), - [sym__dedent] = ACTIONS(2345), - [sym_string_start] = ACTIONS(2345), + [sym_identifier] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_import] = ACTIONS(2305), + [anon_sym_cimport] = ACTIONS(2305), + [anon_sym_from] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2307), + [anon_sym_print] = ACTIONS(2305), + [anon_sym_assert] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_del] = ACTIONS(2305), + [anon_sym_raise] = ACTIONS(2305), + [anon_sym_pass] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [anon_sym_with] = ACTIONS(2305), + [anon_sym_def] = ACTIONS(2305), + [anon_sym_global] = ACTIONS(2305), + [anon_sym_nonlocal] = ACTIONS(2305), + [anon_sym_exec] = ACTIONS(2305), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_class] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_AT] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_not] = ACTIONS(2305), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_TILDE] = ACTIONS(2307), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_lambda] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2307), + [anon_sym_None] = ACTIONS(2305), + [sym_integer] = ACTIONS(2305), + [sym_float] = ACTIONS(2307), + [anon_sym_await] = ACTIONS(2305), + [anon_sym_api] = ACTIONS(2305), + [sym_true] = ACTIONS(2305), + [sym_false] = ACTIONS(2305), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2305), + [anon_sym_include] = ACTIONS(2305), + [anon_sym_DEF] = ACTIONS(2305), + [anon_sym_cdef] = ACTIONS(2305), + [anon_sym_cpdef] = ACTIONS(2305), + [anon_sym_int] = ACTIONS(2305), + [anon_sym_double] = ACTIONS(2305), + [anon_sym_complex] = ACTIONS(2305), + [anon_sym_new] = ACTIONS(2305), + [anon_sym_signed] = ACTIONS(2305), + [anon_sym_unsigned] = ACTIONS(2305), + [anon_sym_char] = ACTIONS(2305), + [anon_sym_short] = ACTIONS(2305), + [anon_sym_long] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_volatile] = ACTIONS(2305), + [anon_sym_ctypedef] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2305), + [anon_sym_union] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_cppclass] = ACTIONS(2305), + [anon_sym_fused] = ACTIONS(2305), + [anon_sym_public] = ACTIONS(2305), + [anon_sym_packed] = ACTIONS(2305), + [anon_sym_inline] = ACTIONS(2305), + [anon_sym_readonly] = ACTIONS(2305), + [anon_sym_sizeof] = ACTIONS(2305), + [sym__dedent] = ACTIONS(2307), + [sym_string_start] = ACTIONS(2307), }, [701] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_import] = ACTIONS(2347), - [anon_sym_cimport] = ACTIONS(2347), - [anon_sym_from] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_print] = ACTIONS(2347), - [anon_sym_assert] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_del] = ACTIONS(2347), - [anon_sym_raise] = ACTIONS(2347), - [anon_sym_pass] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_match] = ACTIONS(2347), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_with] = ACTIONS(2347), - [anon_sym_def] = ACTIONS(2347), - [anon_sym_global] = ACTIONS(2347), - [anon_sym_nonlocal] = ACTIONS(2347), - [anon_sym_exec] = ACTIONS(2347), - [anon_sym_type] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_AT] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_not] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_lambda] = ACTIONS(2347), - [anon_sym_yield] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_None] = ACTIONS(2347), - [sym_integer] = ACTIONS(2347), - [sym_float] = ACTIONS(2349), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_api] = ACTIONS(2347), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2347), - [anon_sym_include] = ACTIONS(2347), - [anon_sym_DEF] = ACTIONS(2347), - [anon_sym_cdef] = ACTIONS(2347), - [anon_sym_cpdef] = ACTIONS(2347), - [anon_sym_int] = ACTIONS(2347), - [anon_sym_double] = ACTIONS(2347), - [anon_sym_complex] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_char] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_ctypedef] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_cppclass] = ACTIONS(2347), - [anon_sym_fused] = ACTIONS(2347), - [anon_sym_public] = ACTIONS(2347), - [anon_sym_packed] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_readonly] = ACTIONS(2347), - [anon_sym_sizeof] = ACTIONS(2347), - [sym__dedent] = ACTIONS(2349), - [sym_string_start] = ACTIONS(2349), + [sym_identifier] = ACTIONS(2309), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_import] = ACTIONS(2309), + [anon_sym_cimport] = ACTIONS(2309), + [anon_sym_from] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_STAR] = ACTIONS(2311), + [anon_sym_print] = ACTIONS(2309), + [anon_sym_assert] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_del] = ACTIONS(2309), + [anon_sym_raise] = ACTIONS(2309), + [anon_sym_pass] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_match] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [anon_sym_with] = ACTIONS(2309), + [anon_sym_def] = ACTIONS(2309), + [anon_sym_global] = ACTIONS(2309), + [anon_sym_nonlocal] = ACTIONS(2309), + [anon_sym_exec] = ACTIONS(2309), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_class] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2311), + [anon_sym_AT] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_not] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2311), + [anon_sym_TILDE] = ACTIONS(2311), + [anon_sym_LT] = ACTIONS(2311), + [anon_sym_lambda] = ACTIONS(2309), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2311), + [anon_sym_None] = ACTIONS(2309), + [sym_integer] = ACTIONS(2309), + [sym_float] = ACTIONS(2311), + [anon_sym_await] = ACTIONS(2309), + [anon_sym_api] = ACTIONS(2309), + [sym_true] = ACTIONS(2309), + [sym_false] = ACTIONS(2309), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2309), + [anon_sym_include] = ACTIONS(2309), + [anon_sym_DEF] = ACTIONS(2309), + [anon_sym_cdef] = ACTIONS(2309), + [anon_sym_cpdef] = ACTIONS(2309), + [anon_sym_int] = ACTIONS(2309), + [anon_sym_double] = ACTIONS(2309), + [anon_sym_complex] = ACTIONS(2309), + [anon_sym_new] = ACTIONS(2309), + [anon_sym_signed] = ACTIONS(2309), + [anon_sym_unsigned] = ACTIONS(2309), + [anon_sym_char] = ACTIONS(2309), + [anon_sym_short] = ACTIONS(2309), + [anon_sym_long] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_volatile] = ACTIONS(2309), + [anon_sym_ctypedef] = ACTIONS(2309), + [anon_sym_struct] = ACTIONS(2309), + [anon_sym_union] = ACTIONS(2309), + [anon_sym_enum] = ACTIONS(2309), + [anon_sym_cppclass] = ACTIONS(2309), + [anon_sym_fused] = ACTIONS(2309), + [anon_sym_public] = ACTIONS(2309), + [anon_sym_packed] = ACTIONS(2309), + [anon_sym_inline] = ACTIONS(2309), + [anon_sym_readonly] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2309), + [sym__dedent] = ACTIONS(2311), + [sym_string_start] = ACTIONS(2311), }, [702] = { - [sym_identifier] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_import] = ACTIONS(2351), - [anon_sym_cimport] = ACTIONS(2351), - [anon_sym_from] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_print] = ACTIONS(2351), - [anon_sym_assert] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_del] = ACTIONS(2351), - [anon_sym_raise] = ACTIONS(2351), - [anon_sym_pass] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_match] = ACTIONS(2351), - [anon_sym_async] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_with] = ACTIONS(2351), - [anon_sym_def] = ACTIONS(2351), - [anon_sym_global] = ACTIONS(2351), - [anon_sym_nonlocal] = ACTIONS(2351), - [anon_sym_exec] = ACTIONS(2351), - [anon_sym_type] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_AT] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_not] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_lambda] = ACTIONS(2351), - [anon_sym_yield] = ACTIONS(2351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), - [anon_sym_None] = ACTIONS(2351), - [sym_integer] = ACTIONS(2351), - [sym_float] = ACTIONS(2353), - [anon_sym_await] = ACTIONS(2351), - [anon_sym_api] = ACTIONS(2351), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2351), - [anon_sym_include] = ACTIONS(2351), - [anon_sym_DEF] = ACTIONS(2351), - [anon_sym_cdef] = ACTIONS(2351), - [anon_sym_cpdef] = ACTIONS(2351), - [anon_sym_int] = ACTIONS(2351), - [anon_sym_double] = ACTIONS(2351), - [anon_sym_complex] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2351), - [anon_sym_signed] = ACTIONS(2351), - [anon_sym_unsigned] = ACTIONS(2351), - [anon_sym_char] = ACTIONS(2351), - [anon_sym_short] = ACTIONS(2351), - [anon_sym_long] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_volatile] = ACTIONS(2351), - [anon_sym_ctypedef] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_cppclass] = ACTIONS(2351), - [anon_sym_fused] = ACTIONS(2351), - [anon_sym_public] = ACTIONS(2351), - [anon_sym_packed] = ACTIONS(2351), - [anon_sym_inline] = ACTIONS(2351), - [anon_sym_readonly] = ACTIONS(2351), - [anon_sym_sizeof] = ACTIONS(2351), - [sym__dedent] = ACTIONS(2353), - [sym_string_start] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2313), + [anon_sym_SEMI] = ACTIONS(2315), + [anon_sym_import] = ACTIONS(2313), + [anon_sym_cimport] = ACTIONS(2313), + [anon_sym_from] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_print] = ACTIONS(2313), + [anon_sym_assert] = ACTIONS(2313), + [anon_sym_return] = ACTIONS(2313), + [anon_sym_del] = ACTIONS(2313), + [anon_sym_raise] = ACTIONS(2313), + [anon_sym_pass] = ACTIONS(2313), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2313), + [anon_sym_match] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(2313), + [anon_sym_for] = ACTIONS(2313), + [anon_sym_while] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2313), + [anon_sym_with] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2313), + [anon_sym_global] = ACTIONS(2313), + [anon_sym_nonlocal] = ACTIONS(2313), + [anon_sym_exec] = ACTIONS(2313), + [anon_sym_type] = ACTIONS(2313), + [anon_sym_class] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_AT] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_not] = ACTIONS(2313), + [anon_sym_AMP] = ACTIONS(2315), + [anon_sym_TILDE] = ACTIONS(2315), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_lambda] = ACTIONS(2313), + [anon_sym_yield] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2315), + [anon_sym_None] = ACTIONS(2313), + [sym_integer] = ACTIONS(2313), + [sym_float] = ACTIONS(2315), + [anon_sym_await] = ACTIONS(2313), + [anon_sym_api] = ACTIONS(2313), + [sym_true] = ACTIONS(2313), + [sym_false] = ACTIONS(2313), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2313), + [anon_sym_include] = ACTIONS(2313), + [anon_sym_DEF] = ACTIONS(2313), + [anon_sym_cdef] = ACTIONS(2313), + [anon_sym_cpdef] = ACTIONS(2313), + [anon_sym_int] = ACTIONS(2313), + [anon_sym_double] = ACTIONS(2313), + [anon_sym_complex] = ACTIONS(2313), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_signed] = ACTIONS(2313), + [anon_sym_unsigned] = ACTIONS(2313), + [anon_sym_char] = ACTIONS(2313), + [anon_sym_short] = ACTIONS(2313), + [anon_sym_long] = ACTIONS(2313), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_volatile] = ACTIONS(2313), + [anon_sym_ctypedef] = ACTIONS(2313), + [anon_sym_struct] = ACTIONS(2313), + [anon_sym_union] = ACTIONS(2313), + [anon_sym_enum] = ACTIONS(2313), + [anon_sym_cppclass] = ACTIONS(2313), + [anon_sym_fused] = ACTIONS(2313), + [anon_sym_public] = ACTIONS(2313), + [anon_sym_packed] = ACTIONS(2313), + [anon_sym_inline] = ACTIONS(2313), + [anon_sym_readonly] = ACTIONS(2313), + [anon_sym_sizeof] = ACTIONS(2313), + [sym__dedent] = ACTIONS(2315), + [sym_string_start] = ACTIONS(2315), }, [703] = { - [sym_identifier] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_import] = ACTIONS(2355), - [anon_sym_cimport] = ACTIONS(2355), - [anon_sym_from] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_print] = ACTIONS(2355), - [anon_sym_assert] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_del] = ACTIONS(2355), - [anon_sym_raise] = ACTIONS(2355), - [anon_sym_pass] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_with] = ACTIONS(2355), - [anon_sym_def] = ACTIONS(2355), - [anon_sym_global] = ACTIONS(2355), - [anon_sym_nonlocal] = ACTIONS(2355), - [anon_sym_exec] = ACTIONS(2355), - [anon_sym_type] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_AT] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_PLUS] = ACTIONS(2357), - [anon_sym_not] = ACTIONS(2355), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_lambda] = ACTIONS(2355), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), - [anon_sym_None] = ACTIONS(2355), - [sym_integer] = ACTIONS(2355), - [sym_float] = ACTIONS(2357), - [anon_sym_await] = ACTIONS(2355), - [anon_sym_api] = ACTIONS(2355), - [sym_true] = ACTIONS(2355), - [sym_false] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2355), - [anon_sym_include] = ACTIONS(2355), - [anon_sym_DEF] = ACTIONS(2355), - [anon_sym_cdef] = ACTIONS(2355), - [anon_sym_cpdef] = ACTIONS(2355), - [anon_sym_int] = ACTIONS(2355), - [anon_sym_double] = ACTIONS(2355), - [anon_sym_complex] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_signed] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_char] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym_ctypedef] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_cppclass] = ACTIONS(2355), - [anon_sym_fused] = ACTIONS(2355), - [anon_sym_public] = ACTIONS(2355), - [anon_sym_packed] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_readonly] = ACTIONS(2355), - [anon_sym_sizeof] = ACTIONS(2355), - [sym__dedent] = ACTIONS(2357), - [sym_string_start] = ACTIONS(2357), + [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_print] = ACTIONS(2317), + [anon_sym_assert] = ACTIONS(2317), + [anon_sym_return] = ACTIONS(2317), + [anon_sym_del] = ACTIONS(2317), + [anon_sym_raise] = ACTIONS(2317), + [anon_sym_pass] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2317), + [anon_sym_continue] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_match] = ACTIONS(2317), + [anon_sym_async] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_with] = ACTIONS(2317), + [anon_sym_def] = ACTIONS(2317), + [anon_sym_global] = ACTIONS(2317), + [anon_sym_nonlocal] = ACTIONS(2317), + [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_not] = ACTIONS(2317), + [anon_sym_AMP] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(2319), + [anon_sym_lambda] = ACTIONS(2317), + [anon_sym_yield] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2319), + [anon_sym_None] = ACTIONS(2317), + [sym_integer] = ACTIONS(2317), + [sym_float] = ACTIONS(2319), + [anon_sym_await] = ACTIONS(2317), + [anon_sym_api] = ACTIONS(2317), + [sym_true] = ACTIONS(2317), + [sym_false] = ACTIONS(2317), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2317), + [anon_sym_include] = ACTIONS(2317), + [anon_sym_DEF] = ACTIONS(2317), + [anon_sym_cdef] = ACTIONS(2317), + [anon_sym_cpdef] = ACTIONS(2317), + [anon_sym_int] = ACTIONS(2317), + [anon_sym_double] = ACTIONS(2317), + [anon_sym_complex] = ACTIONS(2317), + [anon_sym_new] = ACTIONS(2317), + [anon_sym_signed] = ACTIONS(2317), + [anon_sym_unsigned] = ACTIONS(2317), + [anon_sym_char] = ACTIONS(2317), + [anon_sym_short] = ACTIONS(2317), + [anon_sym_long] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [anon_sym_volatile] = ACTIONS(2317), + [anon_sym_ctypedef] = ACTIONS(2317), + [anon_sym_struct] = ACTIONS(2317), + [anon_sym_union] = ACTIONS(2317), + [anon_sym_enum] = ACTIONS(2317), + [anon_sym_cppclass] = ACTIONS(2317), + [anon_sym_fused] = ACTIONS(2317), + [anon_sym_public] = ACTIONS(2317), + [anon_sym_packed] = ACTIONS(2317), + [anon_sym_inline] = ACTIONS(2317), + [anon_sym_readonly] = ACTIONS(2317), + [anon_sym_sizeof] = ACTIONS(2317), + [sym__dedent] = ACTIONS(2319), + [sym_string_start] = ACTIONS(2319), }, [704] = { - [sym_identifier] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_import] = ACTIONS(2359), - [anon_sym_cimport] = ACTIONS(2359), - [anon_sym_from] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2361), - [anon_sym_print] = ACTIONS(2359), - [anon_sym_assert] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_del] = ACTIONS(2359), - [anon_sym_raise] = ACTIONS(2359), - [anon_sym_pass] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_async] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_with] = ACTIONS(2359), - [anon_sym_def] = ACTIONS(2359), - [anon_sym_global] = ACTIONS(2359), - [anon_sym_nonlocal] = ACTIONS(2359), - [anon_sym_exec] = ACTIONS(2359), - [anon_sym_type] = ACTIONS(2359), - [anon_sym_class] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_AT] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2361), - [anon_sym_not] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2361), - [anon_sym_TILDE] = ACTIONS(2361), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_lambda] = ACTIONS(2359), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2361), - [anon_sym_None] = ACTIONS(2359), - [sym_integer] = ACTIONS(2359), - [sym_float] = ACTIONS(2361), - [anon_sym_await] = ACTIONS(2359), - [anon_sym_api] = ACTIONS(2359), - [sym_true] = ACTIONS(2359), - [sym_false] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2359), - [anon_sym_include] = ACTIONS(2359), - [anon_sym_DEF] = ACTIONS(2359), - [anon_sym_cdef] = ACTIONS(2359), - [anon_sym_cpdef] = ACTIONS(2359), - [anon_sym_int] = ACTIONS(2359), - [anon_sym_double] = ACTIONS(2359), - [anon_sym_complex] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_signed] = ACTIONS(2359), - [anon_sym_unsigned] = ACTIONS(2359), - [anon_sym_char] = ACTIONS(2359), - [anon_sym_short] = ACTIONS(2359), - [anon_sym_long] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_volatile] = ACTIONS(2359), - [anon_sym_ctypedef] = ACTIONS(2359), - [anon_sym_struct] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_enum] = ACTIONS(2359), - [anon_sym_cppclass] = ACTIONS(2359), - [anon_sym_fused] = ACTIONS(2359), - [anon_sym_public] = ACTIONS(2359), - [anon_sym_packed] = ACTIONS(2359), - [anon_sym_inline] = ACTIONS(2359), - [anon_sym_readonly] = ACTIONS(2359), - [anon_sym_sizeof] = ACTIONS(2359), - [sym__dedent] = ACTIONS(2361), - [sym_string_start] = ACTIONS(2361), + [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), }, [705] = { - [sym_identifier] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2365), - [anon_sym_import] = ACTIONS(2363), - [anon_sym_cimport] = ACTIONS(2363), - [anon_sym_from] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_STAR] = ACTIONS(2365), - [anon_sym_print] = ACTIONS(2363), - [anon_sym_assert] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_del] = ACTIONS(2363), - [anon_sym_raise] = ACTIONS(2363), - [anon_sym_pass] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_match] = ACTIONS(2363), - [anon_sym_async] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_try] = ACTIONS(2363), - [anon_sym_with] = ACTIONS(2363), - [anon_sym_def] = ACTIONS(2363), - [anon_sym_global] = ACTIONS(2363), - [anon_sym_nonlocal] = ACTIONS(2363), - [anon_sym_exec] = ACTIONS(2363), - [anon_sym_type] = ACTIONS(2363), - [anon_sym_class] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_AT] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_not] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_TILDE] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_lambda] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2365), - [anon_sym_None] = ACTIONS(2363), - [sym_integer] = ACTIONS(2363), - [sym_float] = ACTIONS(2365), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_api] = ACTIONS(2363), - [sym_true] = ACTIONS(2363), - [sym_false] = ACTIONS(2363), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2363), - [anon_sym_include] = ACTIONS(2363), - [anon_sym_DEF] = ACTIONS(2363), - [anon_sym_cdef] = ACTIONS(2363), - [anon_sym_cpdef] = ACTIONS(2363), - [anon_sym_int] = ACTIONS(2363), - [anon_sym_double] = ACTIONS(2363), - [anon_sym_complex] = ACTIONS(2363), - [anon_sym_new] = ACTIONS(2363), - [anon_sym_signed] = ACTIONS(2363), - [anon_sym_unsigned] = ACTIONS(2363), - [anon_sym_char] = ACTIONS(2363), - [anon_sym_short] = ACTIONS(2363), - [anon_sym_long] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2363), - [anon_sym_volatile] = ACTIONS(2363), - [anon_sym_ctypedef] = ACTIONS(2363), - [anon_sym_struct] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), - [anon_sym_enum] = ACTIONS(2363), - [anon_sym_cppclass] = ACTIONS(2363), - [anon_sym_fused] = ACTIONS(2363), - [anon_sym_public] = ACTIONS(2363), - [anon_sym_packed] = ACTIONS(2363), - [anon_sym_inline] = ACTIONS(2363), - [anon_sym_readonly] = ACTIONS(2363), - [anon_sym_sizeof] = ACTIONS(2363), - [sym__dedent] = ACTIONS(2365), - [sym_string_start] = ACTIONS(2365), + [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), }, [706] = { - [sym_list_splat_pattern] = STATE(2270), - [sym_primary_expression] = STATE(2174), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_attribute] = STATE(2266), - [sym_subscript] = STATE(2266), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2013), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_type_conversion] = ACTIONS(931), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2029), - [anon_sym_api] = ACTIONS(2013), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), + [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), }, [707] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(3236), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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), + [sym_identifier] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2335), + [anon_sym_import] = ACTIONS(2333), + [anon_sym_cimport] = ACTIONS(2333), + [anon_sym_from] = ACTIONS(2333), + [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_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_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_DOT_DOT_DOT] = ACTIONS(2335), + [anon_sym_None] = ACTIONS(2333), + [sym_integer] = ACTIONS(2333), + [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), + [sym__dedent] = ACTIONS(2335), + [sym_string_start] = ACTIONS(2335), }, [708] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4461), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5337), - [sym_c_function_argument_type] = STATE(5645), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_print] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_exec] = ACTIONS(1567), - [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(1569), - [anon_sym_api] = ACTIONS(1567), - [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), + [sym_identifier] = ACTIONS(2337), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_import] = ACTIONS(2337), + [anon_sym_cimport] = ACTIONS(2337), + [anon_sym_from] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2339), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_print] = ACTIONS(2337), + [anon_sym_assert] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2337), + [anon_sym_del] = ACTIONS(2337), + [anon_sym_raise] = ACTIONS(2337), + [anon_sym_pass] = ACTIONS(2337), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_async] = ACTIONS(2337), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_while] = ACTIONS(2337), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_with] = ACTIONS(2337), + [anon_sym_def] = ACTIONS(2337), + [anon_sym_global] = ACTIONS(2337), + [anon_sym_nonlocal] = ACTIONS(2337), + [anon_sym_exec] = ACTIONS(2337), + [anon_sym_type] = ACTIONS(2337), + [anon_sym_class] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_AT] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2339), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_PLUS] = ACTIONS(2339), + [anon_sym_not] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2339), + [anon_sym_TILDE] = ACTIONS(2339), + [anon_sym_LT] = ACTIONS(2339), + [anon_sym_lambda] = ACTIONS(2337), + [anon_sym_yield] = ACTIONS(2337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2339), + [anon_sym_None] = ACTIONS(2337), + [sym_integer] = ACTIONS(2337), + [sym_float] = ACTIONS(2339), + [anon_sym_await] = ACTIONS(2337), + [anon_sym_api] = ACTIONS(2337), + [sym_true] = ACTIONS(2337), + [sym_false] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2337), + [anon_sym_include] = ACTIONS(2337), + [anon_sym_DEF] = ACTIONS(2337), + [anon_sym_cdef] = ACTIONS(2337), + [anon_sym_cpdef] = ACTIONS(2337), + [anon_sym_int] = ACTIONS(2337), + [anon_sym_double] = ACTIONS(2337), + [anon_sym_complex] = ACTIONS(2337), + [anon_sym_new] = ACTIONS(2337), + [anon_sym_signed] = ACTIONS(2337), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_char] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_const] = ACTIONS(2337), + [anon_sym_volatile] = ACTIONS(2337), + [anon_sym_ctypedef] = ACTIONS(2337), + [anon_sym_struct] = ACTIONS(2337), + [anon_sym_union] = ACTIONS(2337), + [anon_sym_enum] = ACTIONS(2337), + [anon_sym_cppclass] = ACTIONS(2337), + [anon_sym_fused] = ACTIONS(2337), + [anon_sym_public] = ACTIONS(2337), + [anon_sym_packed] = ACTIONS(2337), + [anon_sym_inline] = ACTIONS(2337), + [anon_sym_readonly] = ACTIONS(2337), + [anon_sym_sizeof] = ACTIONS(2337), + [sym__dedent] = ACTIONS(2339), + [sym_string_start] = ACTIONS(2339), }, [709] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4385), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5236), - [sym_c_function_argument_type] = STATE(5398), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_print] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_exec] = ACTIONS(1567), - [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(1569), - [anon_sym_api] = ACTIONS(1567), - [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), + [sym_identifier] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2343), + [anon_sym_import] = ACTIONS(2341), + [anon_sym_cimport] = ACTIONS(2341), + [anon_sym_from] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_print] = ACTIONS(2341), + [anon_sym_assert] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_del] = ACTIONS(2341), + [anon_sym_raise] = ACTIONS(2341), + [anon_sym_pass] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_with] = ACTIONS(2341), + [anon_sym_def] = ACTIONS(2341), + [anon_sym_global] = ACTIONS(2341), + [anon_sym_nonlocal] = ACTIONS(2341), + [anon_sym_exec] = ACTIONS(2341), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_class] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_AT] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_PLUS] = ACTIONS(2343), + [anon_sym_not] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(2343), + [anon_sym_TILDE] = ACTIONS(2343), + [anon_sym_LT] = ACTIONS(2343), + [anon_sym_lambda] = ACTIONS(2341), + [anon_sym_yield] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2343), + [anon_sym_None] = ACTIONS(2341), + [sym_integer] = ACTIONS(2341), + [sym_float] = ACTIONS(2343), + [anon_sym_await] = ACTIONS(2341), + [anon_sym_api] = ACTIONS(2341), + [sym_true] = ACTIONS(2341), + [sym_false] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2341), + [anon_sym_include] = ACTIONS(2341), + [anon_sym_DEF] = ACTIONS(2341), + [anon_sym_cdef] = ACTIONS(2341), + [anon_sym_cpdef] = ACTIONS(2341), + [anon_sym_int] = ACTIONS(2341), + [anon_sym_double] = ACTIONS(2341), + [anon_sym_complex] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_signed] = ACTIONS(2341), + [anon_sym_unsigned] = ACTIONS(2341), + [anon_sym_char] = ACTIONS(2341), + [anon_sym_short] = ACTIONS(2341), + [anon_sym_long] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_volatile] = ACTIONS(2341), + [anon_sym_ctypedef] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_cppclass] = ACTIONS(2341), + [anon_sym_fused] = ACTIONS(2341), + [anon_sym_public] = ACTIONS(2341), + [anon_sym_packed] = ACTIONS(2341), + [anon_sym_inline] = ACTIONS(2341), + [anon_sym_readonly] = ACTIONS(2341), + [anon_sym_sizeof] = ACTIONS(2341), + [sym__dedent] = ACTIONS(2343), + [sym_string_start] = ACTIONS(2343), }, [710] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4404), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5230), - [sym_c_function_argument_type] = STATE(5719), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_print] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_exec] = ACTIONS(1567), - [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(1569), - [anon_sym_api] = ACTIONS(1567), - [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), + [sym_identifier] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2347), + [anon_sym_import] = ACTIONS(2345), + [anon_sym_cimport] = ACTIONS(2345), + [anon_sym_from] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_print] = ACTIONS(2345), + [anon_sym_assert] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_del] = ACTIONS(2345), + [anon_sym_raise] = ACTIONS(2345), + [anon_sym_pass] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [anon_sym_try] = ACTIONS(2345), + [anon_sym_with] = ACTIONS(2345), + [anon_sym_def] = ACTIONS(2345), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_nonlocal] = ACTIONS(2345), + [anon_sym_exec] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_class] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2347), + [anon_sym_AT] = ACTIONS(2347), + [anon_sym_DASH] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_PLUS] = ACTIONS(2347), + [anon_sym_not] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(2347), + [anon_sym_TILDE] = ACTIONS(2347), + [anon_sym_LT] = ACTIONS(2347), + [anon_sym_lambda] = ACTIONS(2345), + [anon_sym_yield] = ACTIONS(2345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2347), + [anon_sym_None] = ACTIONS(2345), + [sym_integer] = ACTIONS(2345), + [sym_float] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2345), + [anon_sym_api] = ACTIONS(2345), + [sym_true] = ACTIONS(2345), + [sym_false] = ACTIONS(2345), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2345), + [anon_sym_include] = ACTIONS(2345), + [anon_sym_DEF] = ACTIONS(2345), + [anon_sym_cdef] = ACTIONS(2345), + [anon_sym_cpdef] = ACTIONS(2345), + [anon_sym_int] = ACTIONS(2345), + [anon_sym_double] = ACTIONS(2345), + [anon_sym_complex] = ACTIONS(2345), + [anon_sym_new] = ACTIONS(2345), + [anon_sym_signed] = ACTIONS(2345), + [anon_sym_unsigned] = ACTIONS(2345), + [anon_sym_char] = ACTIONS(2345), + [anon_sym_short] = ACTIONS(2345), + [anon_sym_long] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_volatile] = ACTIONS(2345), + [anon_sym_ctypedef] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_cppclass] = ACTIONS(2345), + [anon_sym_fused] = ACTIONS(2345), + [anon_sym_public] = ACTIONS(2345), + [anon_sym_packed] = ACTIONS(2345), + [anon_sym_inline] = ACTIONS(2345), + [anon_sym_readonly] = ACTIONS(2345), + [anon_sym_sizeof] = ACTIONS(2345), + [sym__dedent] = ACTIONS(2347), + [sym_string_start] = ACTIONS(2347), }, [711] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4471), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5189), - [sym_c_function_argument_type] = STATE(5752), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_print] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_exec] = ACTIONS(1567), - [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(1569), - [anon_sym_api] = ACTIONS(1567), - [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), + [sym_identifier] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_import] = ACTIONS(2349), + [anon_sym_cimport] = ACTIONS(2349), + [anon_sym_from] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_print] = ACTIONS(2349), + [anon_sym_assert] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_del] = ACTIONS(2349), + [anon_sym_raise] = ACTIONS(2349), + [anon_sym_pass] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_match] = ACTIONS(2349), + [anon_sym_async] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_with] = ACTIONS(2349), + [anon_sym_def] = ACTIONS(2349), + [anon_sym_global] = ACTIONS(2349), + [anon_sym_nonlocal] = ACTIONS(2349), + [anon_sym_exec] = ACTIONS(2349), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_class] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2351), + [anon_sym_AT] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2351), + [anon_sym_LBRACE] = ACTIONS(2351), + [anon_sym_PLUS] = ACTIONS(2351), + [anon_sym_not] = ACTIONS(2349), + [anon_sym_AMP] = ACTIONS(2351), + [anon_sym_TILDE] = ACTIONS(2351), + [anon_sym_LT] = ACTIONS(2351), + [anon_sym_lambda] = ACTIONS(2349), + [anon_sym_yield] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2351), + [anon_sym_None] = ACTIONS(2349), + [sym_integer] = ACTIONS(2349), + [sym_float] = ACTIONS(2351), + [anon_sym_await] = ACTIONS(2349), + [anon_sym_api] = ACTIONS(2349), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2349), + [anon_sym_include] = ACTIONS(2349), + [anon_sym_DEF] = ACTIONS(2349), + [anon_sym_cdef] = ACTIONS(2349), + [anon_sym_cpdef] = ACTIONS(2349), + [anon_sym_int] = ACTIONS(2349), + [anon_sym_double] = ACTIONS(2349), + [anon_sym_complex] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_signed] = ACTIONS(2349), + [anon_sym_unsigned] = ACTIONS(2349), + [anon_sym_char] = ACTIONS(2349), + [anon_sym_short] = ACTIONS(2349), + [anon_sym_long] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [anon_sym_volatile] = ACTIONS(2349), + [anon_sym_ctypedef] = ACTIONS(2349), + [anon_sym_struct] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_enum] = ACTIONS(2349), + [anon_sym_cppclass] = ACTIONS(2349), + [anon_sym_fused] = ACTIONS(2349), + [anon_sym_public] = ACTIONS(2349), + [anon_sym_packed] = ACTIONS(2349), + [anon_sym_inline] = ACTIONS(2349), + [anon_sym_readonly] = ACTIONS(2349), + [anon_sym_sizeof] = ACTIONS(2349), + [sym__dedent] = ACTIONS(2351), + [sym_string_start] = ACTIONS(2351), }, [712] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4302), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5234), - [sym_c_function_argument_type] = STATE(5399), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_print] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_exec] = ACTIONS(1567), - [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(1569), - [anon_sym_api] = ACTIONS(1567), - [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), + [sym_identifier] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_import] = ACTIONS(2353), + [anon_sym_cimport] = ACTIONS(2353), + [anon_sym_from] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_print] = ACTIONS(2353), + [anon_sym_assert] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_del] = ACTIONS(2353), + [anon_sym_raise] = ACTIONS(2353), + [anon_sym_pass] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_match] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2353), + [anon_sym_with] = ACTIONS(2353), + [anon_sym_def] = ACTIONS(2353), + [anon_sym_global] = ACTIONS(2353), + [anon_sym_nonlocal] = ACTIONS(2353), + [anon_sym_exec] = ACTIONS(2353), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_class] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_AT] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_not] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [anon_sym_LT] = ACTIONS(2355), + [anon_sym_lambda] = ACTIONS(2353), + [anon_sym_yield] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2355), + [anon_sym_None] = ACTIONS(2353), + [sym_integer] = ACTIONS(2353), + [sym_float] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(2353), + [anon_sym_api] = ACTIONS(2353), + [sym_true] = ACTIONS(2353), + [sym_false] = ACTIONS(2353), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2353), + [anon_sym_include] = ACTIONS(2353), + [anon_sym_DEF] = ACTIONS(2353), + [anon_sym_cdef] = ACTIONS(2353), + [anon_sym_cpdef] = ACTIONS(2353), + [anon_sym_int] = ACTIONS(2353), + [anon_sym_double] = ACTIONS(2353), + [anon_sym_complex] = ACTIONS(2353), + [anon_sym_new] = ACTIONS(2353), + [anon_sym_signed] = ACTIONS(2353), + [anon_sym_unsigned] = ACTIONS(2353), + [anon_sym_char] = ACTIONS(2353), + [anon_sym_short] = ACTIONS(2353), + [anon_sym_long] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_volatile] = ACTIONS(2353), + [anon_sym_ctypedef] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_cppclass] = ACTIONS(2353), + [anon_sym_fused] = ACTIONS(2353), + [anon_sym_public] = ACTIONS(2353), + [anon_sym_packed] = ACTIONS(2353), + [anon_sym_inline] = ACTIONS(2353), + [anon_sym_readonly] = ACTIONS(2353), + [anon_sym_sizeof] = ACTIONS(2353), + [sym__dedent] = ACTIONS(2355), + [sym_string_start] = ACTIONS(2355), }, [713] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4310), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5316), - [sym_c_function_argument_type] = STATE(5563), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_print] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_exec] = ACTIONS(1567), - [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(1569), - [anon_sym_api] = ACTIONS(1567), - [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), + [sym_identifier] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym_import] = ACTIONS(2357), + [anon_sym_cimport] = ACTIONS(2357), + [anon_sym_from] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_print] = ACTIONS(2357), + [anon_sym_assert] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_del] = ACTIONS(2357), + [anon_sym_raise] = ACTIONS(2357), + [anon_sym_pass] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [anon_sym_try] = ACTIONS(2357), + [anon_sym_with] = ACTIONS(2357), + [anon_sym_def] = ACTIONS(2357), + [anon_sym_global] = ACTIONS(2357), + [anon_sym_nonlocal] = ACTIONS(2357), + [anon_sym_exec] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_class] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_AT] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2359), + [anon_sym_not] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2359), + [anon_sym_TILDE] = ACTIONS(2359), + [anon_sym_LT] = ACTIONS(2359), + [anon_sym_lambda] = ACTIONS(2357), + [anon_sym_yield] = ACTIONS(2357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2359), + [anon_sym_None] = ACTIONS(2357), + [sym_integer] = ACTIONS(2357), + [sym_float] = ACTIONS(2359), + [anon_sym_await] = ACTIONS(2357), + [anon_sym_api] = ACTIONS(2357), + [sym_true] = ACTIONS(2357), + [sym_false] = ACTIONS(2357), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2357), + [anon_sym_include] = ACTIONS(2357), + [anon_sym_DEF] = ACTIONS(2357), + [anon_sym_cdef] = ACTIONS(2357), + [anon_sym_cpdef] = ACTIONS(2357), + [anon_sym_int] = ACTIONS(2357), + [anon_sym_double] = ACTIONS(2357), + [anon_sym_complex] = ACTIONS(2357), + [anon_sym_new] = ACTIONS(2357), + [anon_sym_signed] = ACTIONS(2357), + [anon_sym_unsigned] = ACTIONS(2357), + [anon_sym_char] = ACTIONS(2357), + [anon_sym_short] = ACTIONS(2357), + [anon_sym_long] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_volatile] = ACTIONS(2357), + [anon_sym_ctypedef] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_cppclass] = ACTIONS(2357), + [anon_sym_fused] = ACTIONS(2357), + [anon_sym_public] = ACTIONS(2357), + [anon_sym_packed] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2357), + [anon_sym_readonly] = ACTIONS(2357), + [anon_sym_sizeof] = ACTIONS(2357), + [sym__dedent] = ACTIONS(2359), + [sym_string_start] = ACTIONS(2359), }, [714] = { - [sym_identifier] = ACTIONS(2367), - [anon_sym_SEMI] = ACTIONS(2369), - [anon_sym_import] = ACTIONS(2367), - [anon_sym_cimport] = ACTIONS(2367), - [anon_sym_from] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(2369), - [anon_sym_print] = ACTIONS(2367), - [anon_sym_assert] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_del] = ACTIONS(2367), - [anon_sym_raise] = ACTIONS(2367), - [anon_sym_pass] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2367), - [anon_sym_with] = ACTIONS(2367), - [anon_sym_def] = ACTIONS(2367), - [anon_sym_global] = ACTIONS(2367), - [anon_sym_nonlocal] = ACTIONS(2367), - [anon_sym_exec] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2367), - [anon_sym_class] = ACTIONS(2367), - [anon_sym_LBRACK] = ACTIONS(2369), - [anon_sym_AT] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_PLUS] = ACTIONS(2369), - [anon_sym_not] = ACTIONS(2367), - [anon_sym_AMP] = ACTIONS(2369), - [anon_sym_TILDE] = ACTIONS(2369), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_lambda] = ACTIONS(2367), - [anon_sym_yield] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2369), - [anon_sym_None] = ACTIONS(2367), - [sym_integer] = ACTIONS(2367), - [sym_float] = ACTIONS(2369), - [anon_sym_await] = ACTIONS(2367), - [anon_sym_api] = ACTIONS(2367), - [sym_true] = ACTIONS(2367), - [sym_false] = ACTIONS(2367), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2367), - [anon_sym_include] = ACTIONS(2367), - [anon_sym_DEF] = ACTIONS(2367), - [anon_sym_cdef] = ACTIONS(2367), - [anon_sym_cpdef] = ACTIONS(2367), - [anon_sym_int] = ACTIONS(2367), - [anon_sym_double] = ACTIONS(2367), - [anon_sym_complex] = ACTIONS(2367), - [anon_sym_new] = ACTIONS(2367), - [anon_sym_signed] = ACTIONS(2367), - [anon_sym_unsigned] = ACTIONS(2367), - [anon_sym_char] = ACTIONS(2367), - [anon_sym_short] = ACTIONS(2367), - [anon_sym_long] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [anon_sym_volatile] = ACTIONS(2367), - [anon_sym_ctypedef] = ACTIONS(2367), - [anon_sym_struct] = ACTIONS(2367), - [anon_sym_union] = ACTIONS(2367), - [anon_sym_enum] = ACTIONS(2367), - [anon_sym_cppclass] = ACTIONS(2367), - [anon_sym_fused] = ACTIONS(2367), - [anon_sym_public] = ACTIONS(2367), - [anon_sym_packed] = ACTIONS(2367), - [anon_sym_inline] = ACTIONS(2367), - [anon_sym_readonly] = ACTIONS(2367), - [anon_sym_sizeof] = ACTIONS(2367), - [sym__dedent] = ACTIONS(2369), - [sym_string_start] = ACTIONS(2369), + [sym_identifier] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_import] = ACTIONS(2361), + [anon_sym_cimport] = ACTIONS(2361), + [anon_sym_from] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_print] = ACTIONS(2361), + [anon_sym_assert] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_del] = ACTIONS(2361), + [anon_sym_raise] = ACTIONS(2361), + [anon_sym_pass] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_match] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2361), + [anon_sym_with] = ACTIONS(2361), + [anon_sym_def] = ACTIONS(2361), + [anon_sym_global] = ACTIONS(2361), + [anon_sym_nonlocal] = ACTIONS(2361), + [anon_sym_exec] = ACTIONS(2361), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_AT] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_not] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2363), + [anon_sym_lambda] = ACTIONS(2361), + [anon_sym_yield] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2363), + [anon_sym_None] = ACTIONS(2361), + [sym_integer] = ACTIONS(2361), + [sym_float] = ACTIONS(2363), + [anon_sym_await] = ACTIONS(2361), + [anon_sym_api] = ACTIONS(2361), + [sym_true] = ACTIONS(2361), + [sym_false] = ACTIONS(2361), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2361), + [anon_sym_include] = ACTIONS(2361), + [anon_sym_DEF] = ACTIONS(2361), + [anon_sym_cdef] = ACTIONS(2361), + [anon_sym_cpdef] = ACTIONS(2361), + [anon_sym_int] = ACTIONS(2361), + [anon_sym_double] = ACTIONS(2361), + [anon_sym_complex] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2361), + [anon_sym_signed] = ACTIONS(2361), + [anon_sym_unsigned] = ACTIONS(2361), + [anon_sym_char] = ACTIONS(2361), + [anon_sym_short] = ACTIONS(2361), + [anon_sym_long] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_volatile] = ACTIONS(2361), + [anon_sym_ctypedef] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_cppclass] = ACTIONS(2361), + [anon_sym_fused] = ACTIONS(2361), + [anon_sym_public] = ACTIONS(2361), + [anon_sym_packed] = ACTIONS(2361), + [anon_sym_inline] = ACTIONS(2361), + [anon_sym_readonly] = ACTIONS(2361), + [anon_sym_sizeof] = ACTIONS(2361), + [sym__dedent] = ACTIONS(2363), + [sym_string_start] = ACTIONS(2363), }, [715] = { - [sym_identifier] = ACTIONS(2371), - [anon_sym_import] = ACTIONS(2371), - [anon_sym_cimport] = ACTIONS(2371), - [anon_sym_from] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2373), - [anon_sym_print] = ACTIONS(2371), - [anon_sym_assert] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_del] = ACTIONS(2371), - [anon_sym_raise] = ACTIONS(2371), - [anon_sym_pass] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_with] = ACTIONS(2371), - [anon_sym_def] = ACTIONS(2371), - [anon_sym_global] = ACTIONS(2371), - [anon_sym_nonlocal] = ACTIONS(2371), - [anon_sym_exec] = ACTIONS(2371), - [anon_sym_type] = ACTIONS(2371), - [anon_sym_class] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2373), - [anon_sym_AT] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_PLUS] = ACTIONS(2373), - [anon_sym_not] = ACTIONS(2371), - [anon_sym_AMP] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2373), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_lambda] = ACTIONS(2371), - [anon_sym_yield] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2373), - [anon_sym_None] = ACTIONS(2371), - [sym_integer] = ACTIONS(2371), - [sym_float] = ACTIONS(2373), - [anon_sym_await] = ACTIONS(2371), - [anon_sym_api] = ACTIONS(2371), - [sym_true] = ACTIONS(2371), - [sym_false] = ACTIONS(2371), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2371), - [anon_sym_include] = ACTIONS(2371), - [anon_sym_DEF] = ACTIONS(2371), - [anon_sym_cdef] = ACTIONS(2371), - [anon_sym_cpdef] = ACTIONS(2371), - [anon_sym_int] = ACTIONS(2371), - [anon_sym_double] = ACTIONS(2371), - [anon_sym_complex] = ACTIONS(2371), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_signed] = ACTIONS(2371), - [anon_sym_unsigned] = ACTIONS(2371), - [anon_sym_char] = ACTIONS(2371), - [anon_sym_short] = ACTIONS(2371), - [anon_sym_long] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_volatile] = ACTIONS(2371), - [anon_sym_ctypedef] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_cppclass] = ACTIONS(2371), - [anon_sym_fused] = ACTIONS(2371), - [anon_sym_public] = ACTIONS(2371), - [anon_sym_packed] = ACTIONS(2371), - [anon_sym_inline] = ACTIONS(2371), - [anon_sym_readonly] = ACTIONS(2371), - [anon_sym_sizeof] = ACTIONS(2371), - [sym__dedent] = ACTIONS(2373), - [sym_string_start] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_import] = ACTIONS(2365), + [anon_sym_cimport] = ACTIONS(2365), + [anon_sym_from] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_print] = ACTIONS(2365), + [anon_sym_assert] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_del] = ACTIONS(2365), + [anon_sym_raise] = ACTIONS(2365), + [anon_sym_pass] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_match] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [anon_sym_try] = ACTIONS(2365), + [anon_sym_with] = ACTIONS(2365), + [anon_sym_def] = ACTIONS(2365), + [anon_sym_global] = ACTIONS(2365), + [anon_sym_nonlocal] = ACTIONS(2365), + [anon_sym_exec] = ACTIONS(2365), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_AT] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_not] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2367), + [anon_sym_TILDE] = ACTIONS(2367), + [anon_sym_LT] = ACTIONS(2367), + [anon_sym_lambda] = ACTIONS(2365), + [anon_sym_yield] = ACTIONS(2365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2367), + [anon_sym_None] = ACTIONS(2365), + [sym_integer] = ACTIONS(2365), + [sym_float] = ACTIONS(2367), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_api] = ACTIONS(2365), + [sym_true] = ACTIONS(2365), + [sym_false] = ACTIONS(2365), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2365), + [anon_sym_include] = ACTIONS(2365), + [anon_sym_DEF] = ACTIONS(2365), + [anon_sym_cdef] = ACTIONS(2365), + [anon_sym_cpdef] = ACTIONS(2365), + [anon_sym_int] = ACTIONS(2365), + [anon_sym_double] = ACTIONS(2365), + [anon_sym_complex] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2365), + [anon_sym_signed] = ACTIONS(2365), + [anon_sym_unsigned] = ACTIONS(2365), + [anon_sym_char] = ACTIONS(2365), + [anon_sym_short] = ACTIONS(2365), + [anon_sym_long] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_volatile] = ACTIONS(2365), + [anon_sym_ctypedef] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2365), + [anon_sym_union] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_cppclass] = ACTIONS(2365), + [anon_sym_fused] = ACTIONS(2365), + [anon_sym_public] = ACTIONS(2365), + [anon_sym_packed] = ACTIONS(2365), + [anon_sym_inline] = ACTIONS(2365), + [anon_sym_readonly] = ACTIONS(2365), + [anon_sym_sizeof] = ACTIONS(2365), + [sym__dedent] = ACTIONS(2367), + [sym_string_start] = ACTIONS(2367), }, [716] = { - [sym_list_splat_pattern] = STATE(2288), - [sym_primary_expression] = STATE(2170), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), + [sym_identifier] = ACTIONS(2369), + [anon_sym_SEMI] = ACTIONS(2371), + [anon_sym_import] = ACTIONS(2369), + [anon_sym_cimport] = ACTIONS(2369), + [anon_sym_from] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_print] = ACTIONS(2369), + [anon_sym_assert] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_del] = ACTIONS(2369), + [anon_sym_raise] = ACTIONS(2369), + [anon_sym_pass] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [anon_sym_try] = ACTIONS(2369), + [anon_sym_with] = ACTIONS(2369), + [anon_sym_def] = ACTIONS(2369), + [anon_sym_global] = ACTIONS(2369), + [anon_sym_nonlocal] = ACTIONS(2369), + [anon_sym_exec] = ACTIONS(2369), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_class] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_AT] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_PLUS] = ACTIONS(2371), + [anon_sym_not] = ACTIONS(2369), + [anon_sym_AMP] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(2371), + [anon_sym_lambda] = ACTIONS(2369), + [anon_sym_yield] = ACTIONS(2369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2371), + [anon_sym_None] = ACTIONS(2369), + [sym_integer] = ACTIONS(2369), + [sym_float] = ACTIONS(2371), + [anon_sym_await] = ACTIONS(2369), + [anon_sym_api] = ACTIONS(2369), + [sym_true] = ACTIONS(2369), + [sym_false] = ACTIONS(2369), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2369), + [anon_sym_include] = ACTIONS(2369), + [anon_sym_DEF] = ACTIONS(2369), + [anon_sym_cdef] = ACTIONS(2369), + [anon_sym_cpdef] = ACTIONS(2369), + [anon_sym_int] = ACTIONS(2369), + [anon_sym_double] = ACTIONS(2369), + [anon_sym_complex] = ACTIONS(2369), + [anon_sym_new] = ACTIONS(2369), + [anon_sym_signed] = ACTIONS(2369), + [anon_sym_unsigned] = ACTIONS(2369), + [anon_sym_char] = ACTIONS(2369), + [anon_sym_short] = ACTIONS(2369), + [anon_sym_long] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_volatile] = ACTIONS(2369), + [anon_sym_ctypedef] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_cppclass] = ACTIONS(2369), + [anon_sym_fused] = ACTIONS(2369), + [anon_sym_public] = ACTIONS(2369), + [anon_sym_packed] = ACTIONS(2369), + [anon_sym_inline] = ACTIONS(2369), + [anon_sym_readonly] = ACTIONS(2369), + [anon_sym_sizeof] = ACTIONS(2369), + [sym__dedent] = ACTIONS(2371), + [sym_string_start] = ACTIONS(2371), + }, + [717] = { + [sym_identifier] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_import] = ACTIONS(2373), + [anon_sym_cimport] = ACTIONS(2373), + [anon_sym_from] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_STAR] = ACTIONS(2375), + [anon_sym_print] = ACTIONS(2373), + [anon_sym_assert] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_del] = ACTIONS(2373), + [anon_sym_raise] = ACTIONS(2373), + [anon_sym_pass] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_with] = ACTIONS(2373), + [anon_sym_def] = ACTIONS(2373), + [anon_sym_global] = ACTIONS(2373), + [anon_sym_nonlocal] = ACTIONS(2373), + [anon_sym_exec] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_AT] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_not] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2375), + [anon_sym_TILDE] = ACTIONS(2375), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_lambda] = ACTIONS(2373), + [anon_sym_yield] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2375), + [anon_sym_None] = ACTIONS(2373), + [sym_integer] = ACTIONS(2373), + [sym_float] = ACTIONS(2375), + [anon_sym_await] = ACTIONS(2373), + [anon_sym_api] = ACTIONS(2373), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2373), + [anon_sym_include] = ACTIONS(2373), + [anon_sym_DEF] = ACTIONS(2373), + [anon_sym_cdef] = ACTIONS(2373), + [anon_sym_cpdef] = ACTIONS(2373), + [anon_sym_int] = ACTIONS(2373), + [anon_sym_double] = ACTIONS(2373), + [anon_sym_complex] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2373), + [anon_sym_signed] = ACTIONS(2373), + [anon_sym_unsigned] = ACTIONS(2373), + [anon_sym_char] = ACTIONS(2373), + [anon_sym_short] = ACTIONS(2373), + [anon_sym_long] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_volatile] = ACTIONS(2373), + [anon_sym_ctypedef] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_cppclass] = ACTIONS(2373), + [anon_sym_fused] = ACTIONS(2373), + [anon_sym_public] = ACTIONS(2373), + [anon_sym_packed] = ACTIONS(2373), + [anon_sym_inline] = ACTIONS(2373), + [anon_sym_readonly] = ACTIONS(2373), + [anon_sym_sizeof] = ACTIONS(2373), + [sym__dedent] = ACTIONS(2375), + [sym_string_start] = ACTIONS(2375), + }, + [718] = { + [sym_identifier] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2379), + [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), + }, + [719] = { + [sym_identifier] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2383), + [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), [anon_sym_print] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(933), + [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_match] = ACTIONS(2381), [anon_sym_async] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(933), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), + [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_exec] = ACTIONS(2381), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_class] = ACTIONS(2381), [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2397), + [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_api] = ACTIONS(2381), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), - }, - [717] = { - [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), - }, - [718] = { - [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), - }, - [719] = { - [sym_list_splat_pattern] = STATE(2270), - [sym_primary_expression] = STATE(2174), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_attribute] = STATE(2266), - [sym_subscript] = STATE(2266), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(1498), - [anon_sym_as] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_COLON] = ACTIONS(1300), - [anon_sym_match] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_STAR_STAR] = ACTIONS(1498), - [anon_sym_exec] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(2017), - [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(2017), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_is] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(2021), - [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(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2029), - [anon_sym_api] = ACTIONS(2013), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), + [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), }, [720] = { - [sym_identifier] = ACTIONS(2411), - [anon_sym_import] = ACTIONS(2411), - [anon_sym_cimport] = ACTIONS(2411), - [anon_sym_from] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_STAR] = ACTIONS(2413), - [anon_sym_print] = ACTIONS(2411), - [anon_sym_assert] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_del] = ACTIONS(2411), - [anon_sym_raise] = ACTIONS(2411), - [anon_sym_pass] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [anon_sym_try] = ACTIONS(2411), - [anon_sym_with] = ACTIONS(2411), - [anon_sym_def] = ACTIONS(2411), - [anon_sym_global] = ACTIONS(2411), - [anon_sym_nonlocal] = ACTIONS(2411), - [anon_sym_exec] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2411), - [anon_sym_class] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_AT] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_not] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_lambda] = ACTIONS(2411), - [anon_sym_yield] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2413), - [anon_sym_None] = ACTIONS(2411), - [sym_integer] = ACTIONS(2411), - [sym_float] = ACTIONS(2413), - [anon_sym_await] = ACTIONS(2411), - [anon_sym_api] = ACTIONS(2411), - [sym_true] = ACTIONS(2411), - [sym_false] = ACTIONS(2411), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2411), - [anon_sym_include] = ACTIONS(2411), - [anon_sym_DEF] = ACTIONS(2411), - [anon_sym_cdef] = ACTIONS(2411), - [anon_sym_cpdef] = ACTIONS(2411), - [anon_sym_int] = ACTIONS(2411), - [anon_sym_double] = ACTIONS(2411), - [anon_sym_complex] = ACTIONS(2411), - [anon_sym_new] = ACTIONS(2411), - [anon_sym_signed] = ACTIONS(2411), - [anon_sym_unsigned] = ACTIONS(2411), - [anon_sym_char] = ACTIONS(2411), - [anon_sym_short] = ACTIONS(2411), - [anon_sym_long] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [anon_sym_volatile] = ACTIONS(2411), - [anon_sym_ctypedef] = ACTIONS(2411), - [anon_sym_struct] = ACTIONS(2411), - [anon_sym_union] = ACTIONS(2411), - [anon_sym_enum] = ACTIONS(2411), - [anon_sym_cppclass] = ACTIONS(2411), - [anon_sym_fused] = ACTIONS(2411), - [anon_sym_public] = ACTIONS(2411), - [anon_sym_packed] = ACTIONS(2411), - [anon_sym_inline] = ACTIONS(2411), - [anon_sym_readonly] = ACTIONS(2411), - [anon_sym_sizeof] = ACTIONS(2411), - [sym__dedent] = ACTIONS(2413), - [sym_string_start] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2387), + [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), }, [721] = { - [sym_identifier] = ACTIONS(2415), - [anon_sym_import] = ACTIONS(2415), - [anon_sym_cimport] = ACTIONS(2415), - [anon_sym_from] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_print] = ACTIONS(2415), - [anon_sym_assert] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2415), - [anon_sym_del] = ACTIONS(2415), - [anon_sym_raise] = ACTIONS(2415), - [anon_sym_pass] = ACTIONS(2415), - [anon_sym_break] = ACTIONS(2415), - [anon_sym_continue] = ACTIONS(2415), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_match] = ACTIONS(2415), - [anon_sym_async] = ACTIONS(2415), - [anon_sym_for] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [anon_sym_try] = ACTIONS(2415), - [anon_sym_with] = ACTIONS(2415), - [anon_sym_def] = ACTIONS(2415), - [anon_sym_global] = ACTIONS(2415), - [anon_sym_nonlocal] = ACTIONS(2415), - [anon_sym_exec] = ACTIONS(2415), - [anon_sym_type] = ACTIONS(2415), - [anon_sym_class] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_AT] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2417), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_not] = ACTIONS(2415), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_TILDE] = ACTIONS(2417), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_lambda] = ACTIONS(2415), - [anon_sym_yield] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2417), - [anon_sym_None] = ACTIONS(2415), - [sym_integer] = ACTIONS(2415), - [sym_float] = ACTIONS(2417), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_api] = ACTIONS(2415), - [sym_true] = ACTIONS(2415), - [sym_false] = ACTIONS(2415), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2415), - [anon_sym_include] = ACTIONS(2415), - [anon_sym_DEF] = ACTIONS(2415), - [anon_sym_cdef] = ACTIONS(2415), - [anon_sym_cpdef] = ACTIONS(2415), - [anon_sym_int] = ACTIONS(2415), - [anon_sym_double] = ACTIONS(2415), - [anon_sym_complex] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2415), - [anon_sym_signed] = ACTIONS(2415), - [anon_sym_unsigned] = ACTIONS(2415), - [anon_sym_char] = ACTIONS(2415), - [anon_sym_short] = ACTIONS(2415), - [anon_sym_long] = ACTIONS(2415), - [anon_sym_const] = ACTIONS(2415), - [anon_sym_volatile] = ACTIONS(2415), - [anon_sym_ctypedef] = ACTIONS(2415), - [anon_sym_struct] = ACTIONS(2415), - [anon_sym_union] = ACTIONS(2415), - [anon_sym_enum] = ACTIONS(2415), - [anon_sym_cppclass] = ACTIONS(2415), - [anon_sym_fused] = ACTIONS(2415), - [anon_sym_public] = ACTIONS(2415), - [anon_sym_packed] = ACTIONS(2415), - [anon_sym_inline] = ACTIONS(2415), - [anon_sym_readonly] = ACTIONS(2415), - [anon_sym_sizeof] = ACTIONS(2415), - [sym__dedent] = ACTIONS(2417), - [sym_string_start] = ACTIONS(2417), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4484), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5373), + [sym_c_function_argument_type] = STATE(5621), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_print] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_api] = ACTIONS(1599), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [722] = { - [sym_identifier] = ACTIONS(2419), - [anon_sym_import] = ACTIONS(2419), - [anon_sym_cimport] = ACTIONS(2419), - [anon_sym_from] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_print] = ACTIONS(2419), - [anon_sym_assert] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_del] = ACTIONS(2419), - [anon_sym_raise] = ACTIONS(2419), - [anon_sym_pass] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [anon_sym_try] = ACTIONS(2419), - [anon_sym_with] = ACTIONS(2419), - [anon_sym_def] = ACTIONS(2419), - [anon_sym_global] = ACTIONS(2419), - [anon_sym_nonlocal] = ACTIONS(2419), - [anon_sym_exec] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_class] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_AT] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_not] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2421), - [anon_sym_TILDE] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_lambda] = ACTIONS(2419), - [anon_sym_yield] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2421), - [anon_sym_None] = ACTIONS(2419), - [sym_integer] = ACTIONS(2419), - [sym_float] = ACTIONS(2421), - [anon_sym_await] = ACTIONS(2419), - [anon_sym_api] = ACTIONS(2419), - [sym_true] = ACTIONS(2419), - [sym_false] = ACTIONS(2419), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2419), - [anon_sym_include] = ACTIONS(2419), - [anon_sym_DEF] = ACTIONS(2419), - [anon_sym_cdef] = ACTIONS(2419), - [anon_sym_cpdef] = ACTIONS(2419), - [anon_sym_int] = ACTIONS(2419), - [anon_sym_double] = ACTIONS(2419), - [anon_sym_complex] = ACTIONS(2419), - [anon_sym_new] = ACTIONS(2419), - [anon_sym_signed] = ACTIONS(2419), - [anon_sym_unsigned] = ACTIONS(2419), - [anon_sym_char] = ACTIONS(2419), - [anon_sym_short] = ACTIONS(2419), - [anon_sym_long] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [anon_sym_volatile] = ACTIONS(2419), - [anon_sym_ctypedef] = ACTIONS(2419), - [anon_sym_struct] = ACTIONS(2419), - [anon_sym_union] = ACTIONS(2419), - [anon_sym_enum] = ACTIONS(2419), - [anon_sym_cppclass] = ACTIONS(2419), - [anon_sym_fused] = ACTIONS(2419), - [anon_sym_public] = ACTIONS(2419), - [anon_sym_packed] = ACTIONS(2419), - [anon_sym_inline] = ACTIONS(2419), - [anon_sym_readonly] = ACTIONS(2419), - [anon_sym_sizeof] = ACTIONS(2419), - [sym__dedent] = ACTIONS(2421), - [sym_string_start] = ACTIONS(2421), + [sym_identifier] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2391), + [anon_sym_import] = ACTIONS(2389), + [anon_sym_cimport] = ACTIONS(2389), + [anon_sym_from] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_STAR] = ACTIONS(2391), + [anon_sym_print] = ACTIONS(2389), + [anon_sym_assert] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_del] = ACTIONS(2389), + [anon_sym_raise] = ACTIONS(2389), + [anon_sym_pass] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_match] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_with] = ACTIONS(2389), + [anon_sym_def] = ACTIONS(2389), + [anon_sym_global] = ACTIONS(2389), + [anon_sym_nonlocal] = ACTIONS(2389), + [anon_sym_exec] = ACTIONS(2389), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_class] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_AT] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_PLUS] = ACTIONS(2391), + [anon_sym_not] = ACTIONS(2389), + [anon_sym_AMP] = ACTIONS(2391), + [anon_sym_TILDE] = ACTIONS(2391), + [anon_sym_LT] = ACTIONS(2391), + [anon_sym_lambda] = ACTIONS(2389), + [anon_sym_yield] = ACTIONS(2389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), + [anon_sym_None] = ACTIONS(2389), + [sym_integer] = ACTIONS(2389), + [sym_float] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2389), + [anon_sym_api] = ACTIONS(2389), + [sym_true] = ACTIONS(2389), + [sym_false] = ACTIONS(2389), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2389), + [anon_sym_include] = ACTIONS(2389), + [anon_sym_DEF] = ACTIONS(2389), + [anon_sym_cdef] = ACTIONS(2389), + [anon_sym_cpdef] = ACTIONS(2389), + [anon_sym_int] = ACTIONS(2389), + [anon_sym_double] = ACTIONS(2389), + [anon_sym_complex] = ACTIONS(2389), + [anon_sym_new] = ACTIONS(2389), + [anon_sym_signed] = ACTIONS(2389), + [anon_sym_unsigned] = ACTIONS(2389), + [anon_sym_char] = ACTIONS(2389), + [anon_sym_short] = ACTIONS(2389), + [anon_sym_long] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_volatile] = ACTIONS(2389), + [anon_sym_ctypedef] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(2389), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_cppclass] = ACTIONS(2389), + [anon_sym_fused] = ACTIONS(2389), + [anon_sym_public] = ACTIONS(2389), + [anon_sym_packed] = ACTIONS(2389), + [anon_sym_inline] = ACTIONS(2389), + [anon_sym_readonly] = ACTIONS(2389), + [anon_sym_sizeof] = ACTIONS(2389), + [sym__dedent] = ACTIONS(2391), + [sym_string_start] = ACTIONS(2391), }, [723] = { - [sym_identifier] = ACTIONS(2423), - [anon_sym_import] = ACTIONS(2423), - [anon_sym_cimport] = ACTIONS(2423), - [anon_sym_from] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_STAR] = ACTIONS(2425), - [anon_sym_print] = ACTIONS(2423), - [anon_sym_assert] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_del] = ACTIONS(2423), - [anon_sym_raise] = ACTIONS(2423), - [anon_sym_pass] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_while] = ACTIONS(2423), - [anon_sym_try] = ACTIONS(2423), - [anon_sym_with] = ACTIONS(2423), - [anon_sym_def] = ACTIONS(2423), - [anon_sym_global] = ACTIONS(2423), - [anon_sym_nonlocal] = ACTIONS(2423), - [anon_sym_exec] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_class] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_AT] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2425), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_not] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2425), - [anon_sym_TILDE] = ACTIONS(2425), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_lambda] = ACTIONS(2423), - [anon_sym_yield] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2425), - [anon_sym_None] = ACTIONS(2423), - [sym_integer] = ACTIONS(2423), - [sym_float] = ACTIONS(2425), - [anon_sym_await] = ACTIONS(2423), - [anon_sym_api] = ACTIONS(2423), - [sym_true] = ACTIONS(2423), - [sym_false] = ACTIONS(2423), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2423), - [anon_sym_include] = ACTIONS(2423), - [anon_sym_DEF] = ACTIONS(2423), - [anon_sym_cdef] = ACTIONS(2423), - [anon_sym_cpdef] = ACTIONS(2423), - [anon_sym_int] = ACTIONS(2423), - [anon_sym_double] = ACTIONS(2423), - [anon_sym_complex] = ACTIONS(2423), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_signed] = ACTIONS(2423), - [anon_sym_unsigned] = ACTIONS(2423), - [anon_sym_char] = ACTIONS(2423), - [anon_sym_short] = ACTIONS(2423), - [anon_sym_long] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [anon_sym_volatile] = ACTIONS(2423), - [anon_sym_ctypedef] = ACTIONS(2423), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_union] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2423), - [anon_sym_cppclass] = ACTIONS(2423), - [anon_sym_fused] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_packed] = ACTIONS(2423), - [anon_sym_inline] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_sizeof] = ACTIONS(2423), - [sym__dedent] = ACTIONS(2425), - [sym_string_start] = ACTIONS(2425), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4511), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5239), + [sym_c_function_argument_type] = STATE(5546), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_print] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_api] = ACTIONS(1599), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [724] = { - [sym_identifier] = ACTIONS(2427), - [anon_sym_import] = ACTIONS(2427), - [anon_sym_cimport] = ACTIONS(2427), - [anon_sym_from] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2429), - [anon_sym_print] = ACTIONS(2427), - [anon_sym_assert] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_del] = ACTIONS(2427), - [anon_sym_raise] = ACTIONS(2427), - [anon_sym_pass] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2427), - [anon_sym_with] = ACTIONS(2427), - [anon_sym_def] = ACTIONS(2427), - [anon_sym_global] = ACTIONS(2427), - [anon_sym_nonlocal] = ACTIONS(2427), - [anon_sym_exec] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_AT] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_not] = ACTIONS(2427), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_TILDE] = ACTIONS(2429), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_lambda] = ACTIONS(2427), - [anon_sym_yield] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2429), - [anon_sym_None] = ACTIONS(2427), - [sym_integer] = ACTIONS(2427), - [sym_float] = ACTIONS(2429), - [anon_sym_await] = ACTIONS(2427), - [anon_sym_api] = ACTIONS(2427), - [sym_true] = ACTIONS(2427), - [sym_false] = ACTIONS(2427), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2427), - [anon_sym_include] = ACTIONS(2427), - [anon_sym_DEF] = ACTIONS(2427), - [anon_sym_cdef] = ACTIONS(2427), - [anon_sym_cpdef] = ACTIONS(2427), - [anon_sym_int] = ACTIONS(2427), - [anon_sym_double] = ACTIONS(2427), - [anon_sym_complex] = ACTIONS(2427), - [anon_sym_new] = ACTIONS(2427), - [anon_sym_signed] = ACTIONS(2427), - [anon_sym_unsigned] = ACTIONS(2427), - [anon_sym_char] = ACTIONS(2427), - [anon_sym_short] = ACTIONS(2427), - [anon_sym_long] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [anon_sym_volatile] = ACTIONS(2427), - [anon_sym_ctypedef] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_union] = ACTIONS(2427), - [anon_sym_enum] = ACTIONS(2427), - [anon_sym_cppclass] = ACTIONS(2427), - [anon_sym_fused] = ACTIONS(2427), - [anon_sym_public] = ACTIONS(2427), - [anon_sym_packed] = ACTIONS(2427), - [anon_sym_inline] = ACTIONS(2427), - [anon_sym_readonly] = ACTIONS(2427), - [anon_sym_sizeof] = ACTIONS(2427), - [sym__dedent] = ACTIONS(2429), - [sym_string_start] = ACTIONS(2429), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4517), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5328), + [sym_c_function_argument_type] = STATE(5519), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_print] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_api] = ACTIONS(1599), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [725] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(3236), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4367), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5256), + [sym_c_function_argument_type] = STATE(5506), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_print] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_api] = ACTIONS(1599), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [726] = { - [sym_identifier] = ACTIONS(2431), - [anon_sym_import] = ACTIONS(2431), - [anon_sym_cimport] = ACTIONS(2431), - [anon_sym_from] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_print] = ACTIONS(2431), - [anon_sym_assert] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_del] = ACTIONS(2431), - [anon_sym_raise] = ACTIONS(2431), - [anon_sym_pass] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [anon_sym_try] = ACTIONS(2431), - [anon_sym_with] = ACTIONS(2431), - [anon_sym_def] = ACTIONS(2431), - [anon_sym_global] = ACTIONS(2431), - [anon_sym_nonlocal] = ACTIONS(2431), - [anon_sym_exec] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_class] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_AT] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_not] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_lambda] = ACTIONS(2431), - [anon_sym_yield] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2433), - [anon_sym_None] = ACTIONS(2431), - [sym_integer] = ACTIONS(2431), - [sym_float] = ACTIONS(2433), - [anon_sym_await] = ACTIONS(2431), - [anon_sym_api] = ACTIONS(2431), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2431), - [anon_sym_include] = ACTIONS(2431), - [anon_sym_DEF] = ACTIONS(2431), - [anon_sym_cdef] = ACTIONS(2431), - [anon_sym_cpdef] = ACTIONS(2431), - [anon_sym_int] = ACTIONS(2431), - [anon_sym_double] = ACTIONS(2431), - [anon_sym_complex] = ACTIONS(2431), - [anon_sym_new] = ACTIONS(2431), - [anon_sym_signed] = ACTIONS(2431), - [anon_sym_unsigned] = ACTIONS(2431), - [anon_sym_char] = ACTIONS(2431), - [anon_sym_short] = ACTIONS(2431), - [anon_sym_long] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [anon_sym_volatile] = ACTIONS(2431), - [anon_sym_ctypedef] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2431), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_enum] = ACTIONS(2431), - [anon_sym_cppclass] = ACTIONS(2431), - [anon_sym_fused] = ACTIONS(2431), - [anon_sym_public] = ACTIONS(2431), - [anon_sym_packed] = ACTIONS(2431), - [anon_sym_inline] = ACTIONS(2431), - [anon_sym_readonly] = ACTIONS(2431), - [anon_sym_sizeof] = ACTIONS(2431), - [sym__dedent] = ACTIONS(2433), - [sym_string_start] = ACTIONS(2433), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4378), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5315), + [sym_c_function_argument_type] = STATE(5495), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_print] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_api] = ACTIONS(1599), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [727] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(3236), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_STAR_STAR] = ACTIONS(933), - [anon_sym_exec] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), - [anon_sym_STAR_EQ] = ACTIONS(967), - [anon_sym_SLASH_EQ] = ACTIONS(967), - [anon_sym_AT_EQ] = ACTIONS(967), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(967), - [anon_sym_PERCENT_EQ] = ACTIONS(967), - [anon_sym_STAR_STAR_EQ] = ACTIONS(967), - [anon_sym_GT_GT_EQ] = ACTIONS(967), - [anon_sym_LT_LT_EQ] = ACTIONS(967), - [anon_sym_AMP_EQ] = ACTIONS(967), - [anon_sym_CARET_EQ] = ACTIONS(967), - [anon_sym_PIPE_EQ] = ACTIONS(967), - [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(967), - [sym_string_start] = ACTIONS(1247), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4394), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5383), + [sym_c_function_argument_type] = STATE(5641), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_print] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_api] = ACTIONS(1599), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [728] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(2197), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(1237), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2435), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4406), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5443), + [sym_c_function_argument_type] = STATE(5774), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_print] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_api] = ACTIONS(1599), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [729] = { - [sym_list_splat_pattern] = STATE(2270), - [sym_primary_expression] = STATE(2174), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_attribute] = STATE(2266), - [sym_subscript] = STATE(2266), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2007), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_match] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2013), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_type_conversion] = ACTIONS(931), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2029), - [anon_sym_api] = ACTIONS(2013), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), + [sym_identifier] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(2395), + [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), }, [730] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(3236), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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), + [sym_identifier] = ACTIONS(2397), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_import] = ACTIONS(2397), + [anon_sym_cimport] = ACTIONS(2397), + [anon_sym_from] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_print] = ACTIONS(2397), + [anon_sym_assert] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_del] = ACTIONS(2397), + [anon_sym_raise] = ACTIONS(2397), + [anon_sym_pass] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_try] = ACTIONS(2397), + [anon_sym_with] = ACTIONS(2397), + [anon_sym_def] = ACTIONS(2397), + [anon_sym_global] = ACTIONS(2397), + [anon_sym_nonlocal] = ACTIONS(2397), + [anon_sym_exec] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_class] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_AT] = ACTIONS(2399), + [anon_sym_DASH] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2399), + [anon_sym_not] = ACTIONS(2397), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_LT] = ACTIONS(2399), + [anon_sym_lambda] = ACTIONS(2397), + [anon_sym_yield] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2399), + [anon_sym_None] = ACTIONS(2397), + [sym_integer] = ACTIONS(2397), + [sym_float] = ACTIONS(2399), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_api] = ACTIONS(2397), + [sym_true] = ACTIONS(2397), + [sym_false] = ACTIONS(2397), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2397), + [anon_sym_include] = ACTIONS(2397), + [anon_sym_DEF] = ACTIONS(2397), + [anon_sym_cdef] = ACTIONS(2397), + [anon_sym_cpdef] = ACTIONS(2397), + [anon_sym_int] = ACTIONS(2397), + [anon_sym_double] = ACTIONS(2397), + [anon_sym_complex] = ACTIONS(2397), + [anon_sym_new] = ACTIONS(2397), + [anon_sym_signed] = ACTIONS(2397), + [anon_sym_unsigned] = ACTIONS(2397), + [anon_sym_char] = ACTIONS(2397), + [anon_sym_short] = ACTIONS(2397), + [anon_sym_long] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_volatile] = ACTIONS(2397), + [anon_sym_ctypedef] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_cppclass] = ACTIONS(2397), + [anon_sym_fused] = ACTIONS(2397), + [anon_sym_public] = ACTIONS(2397), + [anon_sym_packed] = ACTIONS(2397), + [anon_sym_inline] = ACTIONS(2397), + [anon_sym_readonly] = ACTIONS(2397), + [anon_sym_sizeof] = ACTIONS(2397), + [sym__dedent] = ACTIONS(2399), + [sym_string_start] = ACTIONS(2399), }, [731] = { - [sym_identifier] = ACTIONS(1585), - [anon_sym_import] = ACTIONS(1585), - [anon_sym_cimport] = ACTIONS(1585), - [anon_sym_from] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_print] = ACTIONS(1585), - [anon_sym_assert] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_del] = ACTIONS(1585), - [anon_sym_raise] = ACTIONS(1585), - [anon_sym_pass] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_with] = ACTIONS(1585), - [anon_sym_def] = ACTIONS(1585), - [anon_sym_global] = ACTIONS(1585), - [anon_sym_nonlocal] = ACTIONS(1585), - [anon_sym_exec] = ACTIONS(1585), - [anon_sym_type] = ACTIONS(1585), - [anon_sym_class] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_AT] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_not] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_lambda] = ACTIONS(1585), - [anon_sym_yield] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1589), - [anon_sym_None] = ACTIONS(1585), - [sym_integer] = ACTIONS(1585), - [sym_float] = ACTIONS(1589), - [anon_sym_await] = ACTIONS(1585), - [anon_sym_api] = ACTIONS(1585), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), + [sym_list_splat_pattern] = STATE(2421), + [sym_primary_expression] = STATE(2212), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_attribute] = STATE(2347), + [sym_subscript] = STATE(2347), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(1973), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_print] = ACTIONS(1979), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(813), + [anon_sym_match] = ACTIONS(1979), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(1979), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_type_conversion] = ACTIONS(811), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1995), + [anon_sym_api] = ACTIONS(1979), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1585), - [anon_sym_include] = ACTIONS(1585), - [anon_sym_DEF] = ACTIONS(1585), - [anon_sym_cdef] = ACTIONS(1585), - [anon_sym_cpdef] = ACTIONS(1585), - [anon_sym_int] = ACTIONS(1585), - [anon_sym_double] = ACTIONS(1585), - [anon_sym_complex] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_ctypedef] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_cppclass] = ACTIONS(1585), - [anon_sym_fused] = ACTIONS(1585), - [anon_sym_public] = ACTIONS(1585), - [anon_sym_packed] = ACTIONS(1585), - [anon_sym_inline] = ACTIONS(1585), - [anon_sym_readonly] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1585), - [sym__dedent] = ACTIONS(1589), - [sym_string_start] = ACTIONS(1589), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), }, [732] = { - [sym_list_splat_pattern] = STATE(2403), - [sym_primary_expression] = STATE(2236), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_print] = ACTIONS(2441), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(933), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2441), - [anon_sym_EQ] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2447), - [anon_sym_api] = ACTIONS(2441), - [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), + [sym_identifier] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_import] = ACTIONS(2401), + [anon_sym_cimport] = ACTIONS(2401), + [anon_sym_from] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_print] = ACTIONS(2401), + [anon_sym_assert] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_del] = ACTIONS(2401), + [anon_sym_raise] = ACTIONS(2401), + [anon_sym_pass] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_try] = ACTIONS(2401), + [anon_sym_with] = ACTIONS(2401), + [anon_sym_def] = ACTIONS(2401), + [anon_sym_global] = ACTIONS(2401), + [anon_sym_nonlocal] = ACTIONS(2401), + [anon_sym_exec] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_class] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_not] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_LT] = ACTIONS(2403), + [anon_sym_lambda] = ACTIONS(2401), + [anon_sym_yield] = ACTIONS(2401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2403), + [anon_sym_None] = ACTIONS(2401), + [sym_integer] = ACTIONS(2401), + [sym_float] = ACTIONS(2403), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_api] = ACTIONS(2401), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2401), + [anon_sym_include] = ACTIONS(2401), + [anon_sym_DEF] = ACTIONS(2401), + [anon_sym_cdef] = ACTIONS(2401), + [anon_sym_cpdef] = ACTIONS(2401), + [anon_sym_int] = ACTIONS(2401), + [anon_sym_double] = ACTIONS(2401), + [anon_sym_complex] = ACTIONS(2401), + [anon_sym_new] = ACTIONS(2401), + [anon_sym_signed] = ACTIONS(2401), + [anon_sym_unsigned] = ACTIONS(2401), + [anon_sym_char] = ACTIONS(2401), + [anon_sym_short] = ACTIONS(2401), + [anon_sym_long] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_volatile] = ACTIONS(2401), + [anon_sym_ctypedef] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_cppclass] = ACTIONS(2401), + [anon_sym_fused] = ACTIONS(2401), + [anon_sym_public] = ACTIONS(2401), + [anon_sym_packed] = ACTIONS(2401), + [anon_sym_inline] = ACTIONS(2401), + [anon_sym_readonly] = ACTIONS(2401), + [anon_sym_sizeof] = ACTIONS(2401), + [sym__dedent] = ACTIONS(2403), + [sym_string_start] = ACTIONS(2403), }, [733] = { - [sym_list_splat_pattern] = STATE(2403), - [sym_primary_expression] = STATE(2236), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_print] = ACTIONS(2441), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(933), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2447), - [anon_sym_api] = ACTIONS(2441), - [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), + [sym_list_splat_pattern] = STATE(2604), + [sym_primary_expression] = STATE(2269), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_print] = ACTIONS(2409), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2409), + [anon_sym_EQ] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(2415), + [anon_sym_api] = ACTIONS(2409), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [734] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(2197), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(1237), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_from] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_in] = ACTIONS(950), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2435), - [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), + [sym_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(3290), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(847), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_SLASH_SLASH] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym_LT_LT] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_AT_EQ] = ACTIONS(847), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_STAR_STAR_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym__newline] = ACTIONS(847), + [sym_string_start] = ACTIONS(1279), }, [735] = { - [sym_list_splat_pattern] = STATE(2479), - [sym_primary_expression] = STATE(2217), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2449), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_print] = ACTIONS(2455), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_async] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(933), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [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), + [sym_identifier] = ACTIONS(2417), + [anon_sym_import] = ACTIONS(2417), + [anon_sym_cimport] = ACTIONS(2417), + [anon_sym_from] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_print] = ACTIONS(2417), + [anon_sym_assert] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_del] = ACTIONS(2417), + [anon_sym_raise] = ACTIONS(2417), + [anon_sym_pass] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_with] = ACTIONS(2417), + [anon_sym_def] = ACTIONS(2417), + [anon_sym_global] = ACTIONS(2417), + [anon_sym_nonlocal] = ACTIONS(2417), + [anon_sym_exec] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_class] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_AT] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_not] = ACTIONS(2417), + [anon_sym_AMP] = ACTIONS(2419), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_lambda] = ACTIONS(2417), + [anon_sym_yield] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2419), + [anon_sym_None] = ACTIONS(2417), + [sym_integer] = ACTIONS(2417), + [sym_float] = ACTIONS(2419), + [anon_sym_await] = ACTIONS(2417), + [anon_sym_api] = ACTIONS(2417), + [sym_true] = ACTIONS(2417), + [sym_false] = ACTIONS(2417), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2417), + [anon_sym_include] = ACTIONS(2417), + [anon_sym_DEF] = ACTIONS(2417), + [anon_sym_cdef] = ACTIONS(2417), + [anon_sym_cpdef] = ACTIONS(2417), + [anon_sym_int] = ACTIONS(2417), + [anon_sym_double] = ACTIONS(2417), + [anon_sym_complex] = ACTIONS(2417), + [anon_sym_new] = ACTIONS(2417), + [anon_sym_signed] = ACTIONS(2417), + [anon_sym_unsigned] = ACTIONS(2417), + [anon_sym_char] = ACTIONS(2417), + [anon_sym_short] = ACTIONS(2417), + [anon_sym_long] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_volatile] = ACTIONS(2417), + [anon_sym_ctypedef] = ACTIONS(2417), + [anon_sym_struct] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_cppclass] = ACTIONS(2417), + [anon_sym_fused] = ACTIONS(2417), + [anon_sym_public] = ACTIONS(2417), + [anon_sym_packed] = ACTIONS(2417), + [anon_sym_inline] = ACTIONS(2417), + [anon_sym_readonly] = ACTIONS(2417), + [anon_sym_sizeof] = ACTIONS(2417), + [sym__dedent] = ACTIONS(2419), + [sym_string_start] = ACTIONS(2419), }, [736] = { - [sym_list_splat_pattern] = STATE(2288), - [sym_primary_expression] = STATE(2170), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2375), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2379), - [anon_sym_print] = ACTIONS(2381), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_match] = ACTIONS(2381), - [anon_sym_async] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(933), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_api] = ACTIONS(2381), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), + [sym_identifier] = ACTIONS(2421), + [anon_sym_import] = ACTIONS(2421), + [anon_sym_cimport] = ACTIONS(2421), + [anon_sym_from] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_print] = ACTIONS(2421), + [anon_sym_assert] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_del] = ACTIONS(2421), + [anon_sym_raise] = ACTIONS(2421), + [anon_sym_pass] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_with] = ACTIONS(2421), + [anon_sym_def] = ACTIONS(2421), + [anon_sym_global] = ACTIONS(2421), + [anon_sym_nonlocal] = ACTIONS(2421), + [anon_sym_exec] = ACTIONS(2421), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_class] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_AT] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_not] = ACTIONS(2421), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_TILDE] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_lambda] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2423), + [anon_sym_None] = ACTIONS(2421), + [sym_integer] = ACTIONS(2421), + [sym_float] = ACTIONS(2423), + [anon_sym_await] = ACTIONS(2421), + [anon_sym_api] = ACTIONS(2421), + [sym_true] = ACTIONS(2421), + [sym_false] = ACTIONS(2421), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2421), + [anon_sym_include] = ACTIONS(2421), + [anon_sym_DEF] = ACTIONS(2421), + [anon_sym_cdef] = ACTIONS(2421), + [anon_sym_cpdef] = ACTIONS(2421), + [anon_sym_int] = ACTIONS(2421), + [anon_sym_double] = ACTIONS(2421), + [anon_sym_complex] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(2421), + [anon_sym_signed] = ACTIONS(2421), + [anon_sym_unsigned] = ACTIONS(2421), + [anon_sym_char] = ACTIONS(2421), + [anon_sym_short] = ACTIONS(2421), + [anon_sym_long] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_volatile] = ACTIONS(2421), + [anon_sym_ctypedef] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_cppclass] = ACTIONS(2421), + [anon_sym_fused] = ACTIONS(2421), + [anon_sym_public] = ACTIONS(2421), + [anon_sym_packed] = ACTIONS(2421), + [anon_sym_inline] = ACTIONS(2421), + [anon_sym_readonly] = ACTIONS(2421), + [anon_sym_sizeof] = ACTIONS(2421), + [sym__dedent] = ACTIONS(2423), + [sym_string_start] = ACTIONS(2423), }, [737] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(3236), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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_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), + [sym_list_splat_pattern] = STATE(2421), + [sym_primary_expression] = STATE(2212), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_attribute] = STATE(2347), + [sym_subscript] = STATE(2347), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(1973), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_print] = ACTIONS(1979), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(811), + [anon_sym_match] = ACTIONS(1979), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(1979), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_type_conversion] = ACTIONS(811), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1995), + [anon_sym_api] = ACTIONS(1979), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), }, [738] = { - [sym_list_splat_pattern] = STATE(2479), - [sym_primary_expression] = STATE(2217), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2449), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_print] = ACTIONS(2455), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_async] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(933), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(938), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [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_identifier] = ACTIONS(1619), + [anon_sym_import] = ACTIONS(1619), + [anon_sym_cimport] = ACTIONS(1619), + [anon_sym_from] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_print] = ACTIONS(1619), + [anon_sym_assert] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_del] = ACTIONS(1619), + [anon_sym_raise] = ACTIONS(1619), + [anon_sym_pass] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_match] = ACTIONS(1619), + [anon_sym_async] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_try] = ACTIONS(1619), + [anon_sym_with] = ACTIONS(1619), + [anon_sym_def] = ACTIONS(1619), + [anon_sym_global] = ACTIONS(1619), + [anon_sym_nonlocal] = ACTIONS(1619), + [anon_sym_exec] = ACTIONS(1619), + [anon_sym_type] = ACTIONS(1619), + [anon_sym_class] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_not] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_lambda] = ACTIONS(1619), + [anon_sym_yield] = ACTIONS(1619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1623), + [anon_sym_None] = ACTIONS(1619), + [sym_integer] = ACTIONS(1619), + [sym_float] = ACTIONS(1623), + [anon_sym_await] = ACTIONS(1619), + [anon_sym_api] = ACTIONS(1619), + [sym_true] = ACTIONS(1619), + [sym_false] = ACTIONS(1619), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [anon_sym_property] = ACTIONS(1619), + [anon_sym_include] = ACTIONS(1619), + [anon_sym_DEF] = ACTIONS(1619), + [anon_sym_cdef] = ACTIONS(1619), + [anon_sym_cpdef] = ACTIONS(1619), + [anon_sym_int] = ACTIONS(1619), + [anon_sym_double] = ACTIONS(1619), + [anon_sym_complex] = ACTIONS(1619), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_signed] = ACTIONS(1619), + [anon_sym_unsigned] = ACTIONS(1619), + [anon_sym_char] = ACTIONS(1619), + [anon_sym_short] = ACTIONS(1619), + [anon_sym_long] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_volatile] = ACTIONS(1619), + [anon_sym_ctypedef] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1619), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_cppclass] = ACTIONS(1619), + [anon_sym_fused] = ACTIONS(1619), + [anon_sym_public] = ACTIONS(1619), + [anon_sym_packed] = ACTIONS(1619), + [anon_sym_inline] = ACTIONS(1619), + [anon_sym_readonly] = ACTIONS(1619), + [anon_sym_sizeof] = ACTIONS(1619), + [sym__dedent] = ACTIONS(1623), + [sym_string_start] = ACTIONS(1623), }, [739] = { - [sym_list_splat_pattern] = STATE(2608), - [sym_primary_expression] = STATE(2277), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2477), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_print] = ACTIONS(2483), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [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), + [sym_identifier] = ACTIONS(2425), + [anon_sym_import] = ACTIONS(2425), + [anon_sym_cimport] = ACTIONS(2425), + [anon_sym_from] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_print] = ACTIONS(2425), + [anon_sym_assert] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_del] = ACTIONS(2425), + [anon_sym_raise] = ACTIONS(2425), + [anon_sym_pass] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_with] = ACTIONS(2425), + [anon_sym_def] = ACTIONS(2425), + [anon_sym_global] = ACTIONS(2425), + [anon_sym_nonlocal] = ACTIONS(2425), + [anon_sym_exec] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_class] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_AT] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(2427), + [anon_sym_not] = ACTIONS(2425), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_TILDE] = ACTIONS(2427), + [anon_sym_LT] = ACTIONS(2427), + [anon_sym_lambda] = ACTIONS(2425), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), + [anon_sym_None] = ACTIONS(2425), + [sym_integer] = ACTIONS(2425), + [sym_float] = ACTIONS(2427), + [anon_sym_await] = ACTIONS(2425), + [anon_sym_api] = ACTIONS(2425), + [sym_true] = ACTIONS(2425), + [sym_false] = ACTIONS(2425), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2425), + [anon_sym_include] = ACTIONS(2425), + [anon_sym_DEF] = ACTIONS(2425), + [anon_sym_cdef] = ACTIONS(2425), + [anon_sym_cpdef] = ACTIONS(2425), + [anon_sym_int] = ACTIONS(2425), + [anon_sym_double] = ACTIONS(2425), + [anon_sym_complex] = ACTIONS(2425), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_signed] = ACTIONS(2425), + [anon_sym_unsigned] = ACTIONS(2425), + [anon_sym_char] = ACTIONS(2425), + [anon_sym_short] = ACTIONS(2425), + [anon_sym_long] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_volatile] = ACTIONS(2425), + [anon_sym_ctypedef] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_cppclass] = ACTIONS(2425), + [anon_sym_fused] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_packed] = ACTIONS(2425), + [anon_sym_inline] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_sizeof] = ACTIONS(2425), + [sym__dedent] = ACTIONS(2427), + [sym_string_start] = ACTIONS(2427), }, [740] = { - [sym_list_splat_pattern] = STATE(2403), - [sym_primary_expression] = STATE(2236), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_print] = ACTIONS(2441), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(933), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2447), - [anon_sym_api] = ACTIONS(2441), - [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), + [sym_identifier] = ACTIONS(2429), + [anon_sym_import] = ACTIONS(2429), + [anon_sym_cimport] = ACTIONS(2429), + [anon_sym_from] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_assert] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_del] = ACTIONS(2429), + [anon_sym_raise] = ACTIONS(2429), + [anon_sym_pass] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_with] = ACTIONS(2429), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_global] = ACTIONS(2429), + [anon_sym_nonlocal] = ACTIONS(2429), + [anon_sym_exec] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_class] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_AT] = ACTIONS(2431), + [anon_sym_DASH] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_PLUS] = ACTIONS(2431), + [anon_sym_not] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2431), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_lambda] = ACTIONS(2429), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), + [anon_sym_None] = ACTIONS(2429), + [sym_integer] = ACTIONS(2429), + [sym_float] = ACTIONS(2431), + [anon_sym_await] = ACTIONS(2429), + [anon_sym_api] = ACTIONS(2429), + [sym_true] = ACTIONS(2429), + [sym_false] = ACTIONS(2429), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2429), + [anon_sym_include] = ACTIONS(2429), + [anon_sym_DEF] = ACTIONS(2429), + [anon_sym_cdef] = ACTIONS(2429), + [anon_sym_cpdef] = ACTIONS(2429), + [anon_sym_int] = ACTIONS(2429), + [anon_sym_double] = ACTIONS(2429), + [anon_sym_complex] = ACTIONS(2429), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_signed] = ACTIONS(2429), + [anon_sym_unsigned] = ACTIONS(2429), + [anon_sym_char] = ACTIONS(2429), + [anon_sym_short] = ACTIONS(2429), + [anon_sym_long] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_volatile] = ACTIONS(2429), + [anon_sym_ctypedef] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_cppclass] = ACTIONS(2429), + [anon_sym_fused] = ACTIONS(2429), + [anon_sym_public] = ACTIONS(2429), + [anon_sym_packed] = ACTIONS(2429), + [anon_sym_inline] = ACTIONS(2429), + [anon_sym_readonly] = ACTIONS(2429), + [anon_sym_sizeof] = ACTIONS(2429), + [sym__dedent] = ACTIONS(2431), + [sym_string_start] = ACTIONS(2431), }, [741] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(2197), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(1237), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_else] = ACTIONS(933), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2435), - [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), + [sym_identifier] = ACTIONS(2433), + [anon_sym_import] = ACTIONS(2433), + [anon_sym_cimport] = ACTIONS(2433), + [anon_sym_from] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_print] = ACTIONS(2433), + [anon_sym_assert] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_del] = ACTIONS(2433), + [anon_sym_raise] = ACTIONS(2433), + [anon_sym_pass] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_with] = ACTIONS(2433), + [anon_sym_def] = ACTIONS(2433), + [anon_sym_global] = ACTIONS(2433), + [anon_sym_nonlocal] = ACTIONS(2433), + [anon_sym_exec] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_class] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_AT] = ACTIONS(2435), + [anon_sym_DASH] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(2435), + [anon_sym_not] = ACTIONS(2433), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_TILDE] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_lambda] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), + [anon_sym_None] = ACTIONS(2433), + [sym_integer] = ACTIONS(2433), + [sym_float] = ACTIONS(2435), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_api] = ACTIONS(2433), + [sym_true] = ACTIONS(2433), + [sym_false] = ACTIONS(2433), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2433), + [anon_sym_include] = ACTIONS(2433), + [anon_sym_DEF] = ACTIONS(2433), + [anon_sym_cdef] = ACTIONS(2433), + [anon_sym_cpdef] = ACTIONS(2433), + [anon_sym_int] = ACTIONS(2433), + [anon_sym_double] = ACTIONS(2433), + [anon_sym_complex] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(2433), + [anon_sym_signed] = ACTIONS(2433), + [anon_sym_unsigned] = ACTIONS(2433), + [anon_sym_char] = ACTIONS(2433), + [anon_sym_short] = ACTIONS(2433), + [anon_sym_long] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_volatile] = ACTIONS(2433), + [anon_sym_ctypedef] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_cppclass] = ACTIONS(2433), + [anon_sym_fused] = ACTIONS(2433), + [anon_sym_public] = ACTIONS(2433), + [anon_sym_packed] = ACTIONS(2433), + [anon_sym_inline] = ACTIONS(2433), + [anon_sym_readonly] = ACTIONS(2433), + [anon_sym_sizeof] = ACTIONS(2433), + [sym__dedent] = ACTIONS(2435), + [sym_string_start] = ACTIONS(2435), }, [742] = { - [sym_list_splat_pattern] = STATE(2693), - [sym_primary_expression] = STATE(2448), - [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(2239), - [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(2505), - [anon_sym_RPAREN] = ACTIONS(1498), - [anon_sym_COMMA] = ACTIONS(1498), - [anon_sym_as] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_print] = ACTIONS(2509), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_async] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_STAR_STAR] = ACTIONS(1498), - [anon_sym_exec] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [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(1384), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_is] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(2511), - [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(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_api] = ACTIONS(2509), - [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), + [sym_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(2239), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(811), + [anon_sym_else] = ACTIONS(813), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_in] = ACTIONS(813), + [anon_sym_by] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(813), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [743] = { - [sym_list_splat_pattern] = STATE(2608), - [sym_primary_expression] = STATE(2277), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2477), - [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(1498), - [anon_sym_as] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_print] = ACTIONS(2483), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_STAR_STAR] = ACTIONS(1498), - [anon_sym_exec] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(1498), - [anon_sym_AT] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [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(2487), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_is] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(2491), - [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(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_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(2239), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_from] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(813), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_in] = ACTIONS(830), + [anon_sym_by] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1603), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [744] = { - [sym_list_splat_pattern] = STATE(2693), - [sym_primary_expression] = STATE(2448), - [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(2239), - [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(933), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_print] = ACTIONS(2509), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_async] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2509), - [anon_sym_EQ] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_api] = ACTIONS(2509), - [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), + [sym_list_splat_pattern] = STATE(2449), + [sym_primary_expression] = STATE(2198), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2437), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_print] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(813), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_async] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2451), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2459), + [anon_sym_api] = ACTIONS(2443), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), }, [745] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(3236), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(1237), - [anon_sym_DOT] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1295), - [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_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_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), + [sym_identifier] = ACTIONS(2465), + [anon_sym_import] = ACTIONS(2465), + [anon_sym_cimport] = ACTIONS(2465), + [anon_sym_from] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_print] = ACTIONS(2465), + [anon_sym_assert] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_del] = ACTIONS(2465), + [anon_sym_raise] = ACTIONS(2465), + [anon_sym_pass] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_async] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_with] = ACTIONS(2465), + [anon_sym_def] = ACTIONS(2465), + [anon_sym_global] = ACTIONS(2465), + [anon_sym_nonlocal] = ACTIONS(2465), + [anon_sym_exec] = ACTIONS(2465), + [anon_sym_type] = ACTIONS(2465), + [anon_sym_class] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2467), + [anon_sym_AT] = ACTIONS(2467), + [anon_sym_DASH] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2467), + [anon_sym_not] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2467), + [anon_sym_TILDE] = ACTIONS(2467), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_lambda] = ACTIONS(2465), + [anon_sym_yield] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2467), + [anon_sym_None] = ACTIONS(2465), + [sym_integer] = ACTIONS(2465), + [sym_float] = ACTIONS(2467), + [anon_sym_await] = ACTIONS(2465), + [anon_sym_api] = ACTIONS(2465), + [sym_true] = ACTIONS(2465), + [sym_false] = ACTIONS(2465), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2465), + [anon_sym_include] = ACTIONS(2465), + [anon_sym_DEF] = ACTIONS(2465), + [anon_sym_cdef] = ACTIONS(2465), + [anon_sym_cpdef] = ACTIONS(2465), + [anon_sym_int] = ACTIONS(2465), + [anon_sym_double] = ACTIONS(2465), + [anon_sym_complex] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(2465), + [anon_sym_signed] = ACTIONS(2465), + [anon_sym_unsigned] = ACTIONS(2465), + [anon_sym_char] = ACTIONS(2465), + [anon_sym_short] = ACTIONS(2465), + [anon_sym_long] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_volatile] = ACTIONS(2465), + [anon_sym_ctypedef] = ACTIONS(2465), + [anon_sym_struct] = ACTIONS(2465), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_enum] = ACTIONS(2465), + [anon_sym_cppclass] = ACTIONS(2465), + [anon_sym_fused] = ACTIONS(2465), + [anon_sym_public] = ACTIONS(2465), + [anon_sym_packed] = ACTIONS(2465), + [anon_sym_inline] = ACTIONS(2465), + [anon_sym_readonly] = ACTIONS(2465), + [anon_sym_sizeof] = ACTIONS(2465), + [sym__dedent] = ACTIONS(2467), + [sym_string_start] = ACTIONS(2467), }, [746] = { - [sym_list_splat_pattern] = STATE(2479), - [sym_primary_expression] = STATE(2217), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2449), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_print] = ACTIONS(2455), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_if] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_async] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(933), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2455), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [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), + [sym_identifier] = ACTIONS(2469), + [anon_sym_import] = ACTIONS(2469), + [anon_sym_cimport] = ACTIONS(2469), + [anon_sym_from] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_print] = ACTIONS(2469), + [anon_sym_assert] = ACTIONS(2469), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_del] = ACTIONS(2469), + [anon_sym_raise] = ACTIONS(2469), + [anon_sym_pass] = ACTIONS(2469), + [anon_sym_break] = ACTIONS(2469), + [anon_sym_continue] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_async] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_with] = ACTIONS(2469), + [anon_sym_def] = ACTIONS(2469), + [anon_sym_global] = ACTIONS(2469), + [anon_sym_nonlocal] = ACTIONS(2469), + [anon_sym_exec] = ACTIONS(2469), + [anon_sym_type] = ACTIONS(2469), + [anon_sym_class] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_AT] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_not] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_TILDE] = ACTIONS(2471), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_lambda] = ACTIONS(2469), + [anon_sym_yield] = ACTIONS(2469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2471), + [anon_sym_None] = ACTIONS(2469), + [sym_integer] = ACTIONS(2469), + [sym_float] = ACTIONS(2471), + [anon_sym_await] = ACTIONS(2469), + [anon_sym_api] = ACTIONS(2469), + [sym_true] = ACTIONS(2469), + [sym_false] = ACTIONS(2469), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2469), + [anon_sym_include] = ACTIONS(2469), + [anon_sym_DEF] = ACTIONS(2469), + [anon_sym_cdef] = ACTIONS(2469), + [anon_sym_cpdef] = ACTIONS(2469), + [anon_sym_int] = ACTIONS(2469), + [anon_sym_double] = ACTIONS(2469), + [anon_sym_complex] = ACTIONS(2469), + [anon_sym_new] = ACTIONS(2469), + [anon_sym_signed] = ACTIONS(2469), + [anon_sym_unsigned] = ACTIONS(2469), + [anon_sym_char] = ACTIONS(2469), + [anon_sym_short] = ACTIONS(2469), + [anon_sym_long] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [anon_sym_volatile] = ACTIONS(2469), + [anon_sym_ctypedef] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(2469), + [anon_sym_union] = ACTIONS(2469), + [anon_sym_enum] = ACTIONS(2469), + [anon_sym_cppclass] = ACTIONS(2469), + [anon_sym_fused] = ACTIONS(2469), + [anon_sym_public] = ACTIONS(2469), + [anon_sym_packed] = ACTIONS(2469), + [anon_sym_inline] = ACTIONS(2469), + [anon_sym_readonly] = ACTIONS(2469), + [anon_sym_sizeof] = ACTIONS(2469), + [sym__dedent] = ACTIONS(2471), + [sym_string_start] = ACTIONS(2471), }, [747] = { - [sym_list_splat_pattern] = STATE(2693), - [sym_primary_expression] = STATE(2448), - [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(2239), - [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(933), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_print] = ACTIONS(2509), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_COLON_EQ] = ACTIONS(948), - [anon_sym_if] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_async] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_api] = ACTIONS(2509), - [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), + [sym_identifier] = ACTIONS(2473), + [anon_sym_import] = ACTIONS(2473), + [anon_sym_cimport] = ACTIONS(2473), + [anon_sym_from] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_print] = ACTIONS(2473), + [anon_sym_assert] = ACTIONS(2473), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_del] = ACTIONS(2473), + [anon_sym_raise] = ACTIONS(2473), + [anon_sym_pass] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2473), + [anon_sym_with] = ACTIONS(2473), + [anon_sym_def] = ACTIONS(2473), + [anon_sym_global] = ACTIONS(2473), + [anon_sym_nonlocal] = ACTIONS(2473), + [anon_sym_exec] = ACTIONS(2473), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_class] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_AT] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_not] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2475), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_lambda] = ACTIONS(2473), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), + [anon_sym_None] = ACTIONS(2473), + [sym_integer] = ACTIONS(2473), + [sym_float] = ACTIONS(2475), + [anon_sym_await] = ACTIONS(2473), + [anon_sym_api] = ACTIONS(2473), + [sym_true] = ACTIONS(2473), + [sym_false] = ACTIONS(2473), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2473), + [anon_sym_include] = ACTIONS(2473), + [anon_sym_DEF] = ACTIONS(2473), + [anon_sym_cdef] = ACTIONS(2473), + [anon_sym_cpdef] = ACTIONS(2473), + [anon_sym_int] = ACTIONS(2473), + [anon_sym_double] = ACTIONS(2473), + [anon_sym_complex] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_signed] = ACTIONS(2473), + [anon_sym_unsigned] = ACTIONS(2473), + [anon_sym_char] = ACTIONS(2473), + [anon_sym_short] = ACTIONS(2473), + [anon_sym_long] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_volatile] = ACTIONS(2473), + [anon_sym_ctypedef] = ACTIONS(2473), + [anon_sym_struct] = ACTIONS(2473), + [anon_sym_union] = ACTIONS(2473), + [anon_sym_enum] = ACTIONS(2473), + [anon_sym_cppclass] = ACTIONS(2473), + [anon_sym_fused] = ACTIONS(2473), + [anon_sym_public] = ACTIONS(2473), + [anon_sym_packed] = ACTIONS(2473), + [anon_sym_inline] = ACTIONS(2473), + [anon_sym_readonly] = ACTIONS(2473), + [anon_sym_sizeof] = ACTIONS(2473), + [sym__dedent] = ACTIONS(2475), + [sym_string_start] = ACTIONS(2475), }, [748] = { - [sym_list_splat_pattern] = STATE(2403), - [sym_primary_expression] = STATE(2236), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_print] = ACTIONS(2441), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_if] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(933), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), - [anon_sym_None] = ACTIONS(1340), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(2447), - [anon_sym_api] = ACTIONS(2441), - [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), - }, - [749] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(3236), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(1237), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_COMMA] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_print] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(967), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_STAR_STAR] = ACTIONS(933), - [anon_sym_exec] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(933), - [anon_sym_SLASH_SLASH] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), - [anon_sym_STAR_EQ] = ACTIONS(967), - [anon_sym_SLASH_EQ] = ACTIONS(967), - [anon_sym_AT_EQ] = ACTIONS(967), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(967), - [anon_sym_PERCENT_EQ] = ACTIONS(967), - [anon_sym_STAR_STAR_EQ] = ACTIONS(967), - [anon_sym_GT_GT_EQ] = ACTIONS(967), - [anon_sym_LT_LT_EQ] = ACTIONS(967), - [anon_sym_AMP_EQ] = ACTIONS(967), - [anon_sym_CARET_EQ] = ACTIONS(967), - [anon_sym_PIPE_EQ] = ACTIONS(967), - [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), - }, - [750] = { - [sym_list_splat_pattern] = STATE(2451), - [sym_primary_expression] = STATE(3236), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(1237), - [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_string_start] = ACTIONS(1247), - }, - [751] = { - [sym_list_splat_pattern] = STATE(2608), - [sym_primary_expression] = STATE(2277), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), [sym_identifier] = ACTIONS(2477), - [anon_sym_DOT] = ACTIONS(933), + [anon_sym_import] = ACTIONS(2477), + [anon_sym_cimport] = ACTIONS(2477), + [anon_sym_from] = ACTIONS(2477), [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_print] = ACTIONS(2483), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_if] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_print] = ACTIONS(2477), + [anon_sym_assert] = ACTIONS(2477), + [anon_sym_return] = ACTIONS(2477), + [anon_sym_del] = ACTIONS(2477), + [anon_sym_raise] = ACTIONS(2477), + [anon_sym_pass] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2477), + [anon_sym_continue] = ACTIONS(2477), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_match] = ACTIONS(2477), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_for] = ACTIONS(2477), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2477), + [anon_sym_with] = ACTIONS(2477), + [anon_sym_def] = ACTIONS(2477), + [anon_sym_global] = ACTIONS(2477), + [anon_sym_nonlocal] = ACTIONS(2477), + [anon_sym_exec] = ACTIONS(2477), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_class] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_AT] = ACTIONS(2479), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(2479), + [anon_sym_not] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_lambda] = ACTIONS(2477), + [anon_sym_yield] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2479), + [anon_sym_None] = ACTIONS(2477), [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2499), - [anon_sym_api] = ACTIONS(2483), + [sym_float] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2477), + [anon_sym_api] = ACTIONS(2477), [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_property] = ACTIONS(2477), + [anon_sym_include] = ACTIONS(2477), + [anon_sym_DEF] = ACTIONS(2477), + [anon_sym_cdef] = ACTIONS(2477), + [anon_sym_cpdef] = ACTIONS(2477), + [anon_sym_int] = ACTIONS(2477), + [anon_sym_double] = ACTIONS(2477), + [anon_sym_complex] = ACTIONS(2477), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_signed] = ACTIONS(2477), + [anon_sym_unsigned] = ACTIONS(2477), + [anon_sym_char] = ACTIONS(2477), + [anon_sym_short] = ACTIONS(2477), + [anon_sym_long] = ACTIONS(2477), + [anon_sym_const] = ACTIONS(2477), + [anon_sym_volatile] = ACTIONS(2477), + [anon_sym_ctypedef] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(2477), + [anon_sym_union] = ACTIONS(2477), + [anon_sym_enum] = ACTIONS(2477), + [anon_sym_cppclass] = ACTIONS(2477), + [anon_sym_fused] = ACTIONS(2477), + [anon_sym_public] = ACTIONS(2477), + [anon_sym_packed] = ACTIONS(2477), + [anon_sym_inline] = ACTIONS(2477), + [anon_sym_readonly] = ACTIONS(2477), + [anon_sym_sizeof] = ACTIONS(2477), + [sym__dedent] = ACTIONS(2479), + [sym_string_start] = ACTIONS(2479), + }, + [749] = { + [sym_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(3290), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_COLON] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_STAR_STAR] = ACTIONS(1329), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_CARET] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_PLUS_EQ] = ACTIONS(1327), + [anon_sym_DASH_EQ] = ACTIONS(1327), + [anon_sym_STAR_EQ] = ACTIONS(1327), + [anon_sym_SLASH_EQ] = ACTIONS(1327), + [anon_sym_AT_EQ] = ACTIONS(1327), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1327), + [anon_sym_PERCENT_EQ] = ACTIONS(1327), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1327), + [anon_sym_GT_GT_EQ] = ACTIONS(1327), + [anon_sym_LT_LT_EQ] = ACTIONS(1327), + [anon_sym_AMP_EQ] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym__newline] = ACTIONS(1327), + [sym_string_start] = ACTIONS(1279), + }, + [750] = { + [sym_list_splat_pattern] = STATE(2421), + [sym_primary_expression] = STATE(2212), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_attribute] = STATE(2347), + [sym_subscript] = STATE(2347), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(1973), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_as] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_print] = ACTIONS(1979), + [anon_sym_GT_GT] = ACTIONS(1530), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_COLON] = ACTIONS(1332), + [anon_sym_match] = ACTIONS(1979), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_STAR_STAR] = ACTIONS(1530), + [anon_sym_exec] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_SLASH_SLASH] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_is] = ACTIONS(1329), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_LT_EQ] = ACTIONS(1530), + [anon_sym_EQ_EQ] = ACTIONS(1530), + [anon_sym_BANG_EQ] = ACTIONS(1530), + [anon_sym_GT_EQ] = ACTIONS(1530), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_LT_GT] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1995), + [anon_sym_api] = ACTIONS(1979), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), + }, + [751] = { + [sym_list_splat_pattern] = STATE(2546), + [sym_primary_expression] = STATE(2287), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2481), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2487), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_match] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(818), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2495), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(2487), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [752] = { - [sym_list_splat_pattern] = STATE(2693), - [sym_primary_expression] = STATE(2448), - [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(2239), - [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(933), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_as] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_print] = ACTIONS(2509), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_if] = ACTIONS(933), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_async] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(933), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_exec] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_not] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_SLASH] = ACTIONS(933), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_is] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(2511), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_LT_GT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_None] = ACTIONS(1396), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_api] = ACTIONS(2509), - [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), + [sym_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(3290), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_COLON] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_in] = ACTIONS(1332), + [anon_sym_STAR_STAR] = ACTIONS(1530), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_RBRACK] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_not] = ACTIONS(1332), + [anon_sym_and] = ACTIONS(1332), + [anon_sym_or] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_SLASH_SLASH] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_is] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1332), + [anon_sym_LT_GT] = ACTIONS(1327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [753] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym__patterns] = STATE(5637), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3632), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4963), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5429), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [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), - [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), + [sym_list_splat_pattern] = STATE(2604), + [sym_primary_expression] = STATE(2269), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(818), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_print] = ACTIONS(2409), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(2415), + [anon_sym_api] = ACTIONS(2409), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [754] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym__patterns] = STATE(5458), - [sym_pattern] = STATE(4722), - [sym_tuple_pattern] = STATE(5353), - [sym_list_pattern] = STATE(5353), - [sym_list_splat_pattern] = STATE(2528), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3698), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2529), - [sym_subscript] = STATE(2529), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5437), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_exec] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_RBRACK] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_api] = ACTIONS(2527), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_list_splat_pattern] = STATE(2642), + [sym_primary_expression] = STATE(2425), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2509), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_print] = ACTIONS(2515), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(813), + [anon_sym_match] = ACTIONS(2515), + [anon_sym_async] = ACTIONS(2515), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(811), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2531), + [anon_sym_api] = ACTIONS(2515), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [755] = { - [sym_named_expression] = STATE(2388), - [sym__named_expression_lhs] = STATE(5531), - [sym_list_splat] = STATE(4954), - [sym_dictionary_splat] = STATE(4749), - [sym_parenthesized_list_splat] = STATE(4954), - [sym_list_splat_pattern] = STATE(2288), - [sym_as_pattern] = STATE(2388), - [sym_expression] = STATE(3612), - [sym_primary_expression] = STATE(2047), - [sym_not_operator] = STATE(2388), - [sym_boolean_operator] = STATE(2388), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_comparison_operator] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_yield] = STATE(4954), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_pair] = STATE(4064), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym__collection_elements] = STATE(5467), - [sym_conditional_expression] = STATE(2388), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_new_expression] = STATE(2388), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_COMMA] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_STAR_STAR] = ACTIONS(2555), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2557), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), + [sym_list_splat_pattern] = STATE(2642), + [sym_primary_expression] = STATE(2425), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2509), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_as] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_print] = ACTIONS(2515), + [anon_sym_GT_GT] = ACTIONS(1530), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(2515), + [anon_sym_async] = ACTIONS(2515), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_STAR_STAR] = ACTIONS(1530), + [anon_sym_exec] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(1530), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_SLASH_SLASH] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_is] = ACTIONS(1329), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_LT_EQ] = ACTIONS(1530), + [anon_sym_EQ_EQ] = ACTIONS(1530), + [anon_sym_BANG_EQ] = ACTIONS(1530), + [anon_sym_GT_EQ] = ACTIONS(1530), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_LT_GT] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2531), + [anon_sym_api] = ACTIONS(2515), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [756] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4784), - [sym_parenthesized_list_splat] = STATE(4848), - [sym__patterns] = STATE(5589), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3648), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4999), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5600), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [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), - [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), + [sym_list_splat_pattern] = STATE(2604), + [sym_primary_expression] = STATE(2269), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_print] = ACTIONS(2409), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(2415), + [anon_sym_api] = ACTIONS(2409), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [757] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym__patterns] = STATE(5589), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3632), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4963), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5429), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [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), - [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), + [sym_list_splat_pattern] = STATE(2546), + [sym_primary_expression] = STATE(2287), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2481), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2487), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_match] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(811), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2495), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(2487), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [758] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym__patterns] = STATE(5585), - [sym_pattern] = STATE(4722), - [sym_tuple_pattern] = STATE(5353), - [sym_list_pattern] = STATE(5353), - [sym_list_splat_pattern] = STATE(2528), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3703), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2529), - [sym_subscript] = STATE(2529), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5605), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_exec] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_RBRACK] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_api] = ACTIONS(2527), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_list_splat_pattern] = STATE(2449), + [sym_primary_expression] = STATE(2198), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2437), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_print] = ACTIONS(2443), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(811), + [anon_sym_match] = ACTIONS(2443), + [anon_sym_async] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2443), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2451), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2459), + [anon_sym_api] = ACTIONS(2443), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), }, [759] = { - [sym_named_expression] = STATE(2388), - [sym__named_expression_lhs] = STATE(5531), - [sym_list_splat] = STATE(4954), - [sym_dictionary_splat] = STATE(4808), - [sym_parenthesized_list_splat] = STATE(4954), - [sym_list_splat_pattern] = STATE(2288), - [sym_as_pattern] = STATE(2388), - [sym_expression] = STATE(3614), - [sym_primary_expression] = STATE(2047), - [sym_not_operator] = STATE(2388), - [sym_boolean_operator] = STATE(2388), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_comparison_operator] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_yield] = STATE(4954), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_pair] = STATE(4025), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym__collection_elements] = STATE(5500), - [sym_conditional_expression] = STATE(2388), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_new_expression] = STATE(2388), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_COMMA] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_STAR_STAR] = ACTIONS(2555), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), + [sym_list_splat_pattern] = STATE(2703), + [sym_primary_expression] = STATE(2533), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_print] = ACTIONS(2541), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2541), + [anon_sym_EQ] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2543), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(2545), + [anon_sym_api] = ACTIONS(2541), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [760] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym__patterns] = STATE(5438), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3632), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4963), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5429), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [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), - [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), + [sym_list_splat_pattern] = STATE(2703), + [sym_primary_expression] = STATE(2533), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_as] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_print] = ACTIONS(2541), + [anon_sym_GT_GT] = ACTIONS(1530), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_STAR_STAR] = ACTIONS(1530), + [anon_sym_exec] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1329), + [anon_sym_and] = ACTIONS(1329), + [anon_sym_or] = ACTIONS(1329), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_SLASH_SLASH] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_is] = ACTIONS(1329), + [anon_sym_LT] = ACTIONS(2543), + [anon_sym_LT_EQ] = ACTIONS(1530), + [anon_sym_EQ_EQ] = ACTIONS(1530), + [anon_sym_BANG_EQ] = ACTIONS(1530), + [anon_sym_GT_EQ] = ACTIONS(1530), + [anon_sym_GT] = ACTIONS(1329), + [anon_sym_LT_GT] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(2545), + [anon_sym_api] = ACTIONS(2541), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [761] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym__patterns] = STATE(5739), - [sym_pattern] = STATE(4722), - [sym_tuple_pattern] = STATE(5353), - [sym_list_pattern] = STATE(5353), - [sym_list_splat_pattern] = STATE(2528), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3694), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2529), - [sym_subscript] = STATE(2529), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5460), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_exec] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_RBRACK] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_api] = ACTIONS(2527), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_list_splat_pattern] = STATE(2642), + [sym_primary_expression] = STATE(2425), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2509), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2513), + [anon_sym_print] = ACTIONS(2515), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_if] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(811), + [anon_sym_match] = ACTIONS(2515), + [anon_sym_async] = ACTIONS(2515), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(811), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2531), + [anon_sym_api] = ACTIONS(2515), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [762] = { - [sym_named_expression] = STATE(2388), - [sym__named_expression_lhs] = STATE(5531), - [sym_list_splat] = STATE(4954), - [sym_dictionary_splat] = STATE(4840), - [sym_parenthesized_list_splat] = STATE(4954), - [sym_list_splat_pattern] = STATE(2288), - [sym_as_pattern] = STATE(2388), - [sym_expression] = STATE(3617), - [sym_primary_expression] = STATE(2047), - [sym_not_operator] = STATE(2388), - [sym_boolean_operator] = STATE(2388), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_comparison_operator] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_yield] = STATE(4954), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_pair] = STATE(4058), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym__collection_elements] = STATE(5620), - [sym_conditional_expression] = STATE(2388), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_new_expression] = STATE(2388), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_STAR_STAR] = ACTIONS(2555), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), + [sym_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(3290), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1327), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1329), + [anon_sym_COLON] = ACTIONS(1327), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_STAR_STAR] = ACTIONS(1329), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1329), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1329), + [anon_sym_SLASH_SLASH] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_CARET] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1329), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_PLUS_EQ] = ACTIONS(1327), + [anon_sym_DASH_EQ] = ACTIONS(1327), + [anon_sym_STAR_EQ] = ACTIONS(1327), + [anon_sym_SLASH_EQ] = ACTIONS(1327), + [anon_sym_AT_EQ] = ACTIONS(1327), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1327), + [anon_sym_PERCENT_EQ] = ACTIONS(1327), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1327), + [anon_sym_GT_GT_EQ] = ACTIONS(1327), + [anon_sym_LT_LT_EQ] = ACTIONS(1327), + [anon_sym_AMP_EQ] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [763] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym__patterns] = STATE(5438), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3672), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4837), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5586), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), + [sym_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(3290), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_RPAREN] = ACTIONS(2585), - [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), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(813), + [anon_sym_COLON] = ACTIONS(847), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(813), + [anon_sym_SLASH_SLASH] = ACTIONS(813), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_CARET] = ACTIONS(813), + [anon_sym_LT_LT] = ACTIONS(813), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_PLUS_EQ] = ACTIONS(847), + [anon_sym_DASH_EQ] = ACTIONS(847), + [anon_sym_STAR_EQ] = ACTIONS(847), + [anon_sym_SLASH_EQ] = ACTIONS(847), + [anon_sym_AT_EQ] = ACTIONS(847), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), + [anon_sym_PERCENT_EQ] = ACTIONS(847), + [anon_sym_STAR_STAR_EQ] = ACTIONS(847), + [anon_sym_GT_GT_EQ] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(847), + [anon_sym_AMP_EQ] = ACTIONS(847), + [anon_sym_CARET_EQ] = ACTIONS(847), + [anon_sym_PIPE_EQ] = ACTIONS(847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [764] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym__patterns] = STATE(5585), - [sym_pattern] = STATE(4722), - [sym_tuple_pattern] = STATE(5353), - [sym_list_pattern] = STATE(5353), - [sym_list_splat_pattern] = STATE(2528), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3694), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2529), - [sym_subscript] = STATE(2529), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5460), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_exec] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_RBRACK] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_api] = ACTIONS(2527), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_list_splat_pattern] = STATE(2546), + [sym_primary_expression] = STATE(2287), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2481), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_print] = ACTIONS(2487), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_if] = ACTIONS(813), + [anon_sym_match] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(811), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2495), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_api] = ACTIONS(2487), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [765] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym__patterns] = STATE(5410), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3632), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4963), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5429), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_RPAREN] = ACTIONS(2589), - [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), + [sym_list_splat_pattern] = STATE(2604), + [sym_primary_expression] = STATE(2269), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_print] = ACTIONS(2409), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_if] = ACTIONS(813), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(2415), + [anon_sym_api] = ACTIONS(2409), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [766] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym__patterns] = STATE(5585), - [sym_pattern] = STATE(4722), - [sym_tuple_pattern] = STATE(5353), - [sym_list_pattern] = STATE(5353), - [sym_list_splat_pattern] = STATE(2528), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3694), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2529), - [sym_subscript] = STATE(2529), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5460), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_exec] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_RBRACK] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_api] = ACTIONS(2527), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_list_splat_pattern] = STATE(2349), + [sym_primary_expression] = STATE(3290), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(1329), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1327), + [anon_sym_COMMA] = ACTIONS(1327), + [anon_sym_as] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_print] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_in] = ACTIONS(1332), + [anon_sym_STAR_STAR] = ACTIONS(1530), + [anon_sym_exec] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_not] = ACTIONS(1332), + [anon_sym_and] = ACTIONS(1332), + [anon_sym_or] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(1329), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_SLASH_SLASH] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym_LT_LT] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_is] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1332), + [anon_sym_LT_GT] = ACTIONS(1327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_api] = ACTIONS(1336), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [767] = { - [sym_named_expression] = STATE(2388), - [sym__named_expression_lhs] = STATE(5531), - [sym_list_splat] = STATE(4954), - [sym_dictionary_splat] = STATE(4873), - [sym_parenthesized_list_splat] = STATE(4954), - [sym_list_splat_pattern] = STATE(2288), - [sym_as_pattern] = STATE(2388), - [sym_expression] = STATE(3618), - [sym_primary_expression] = STATE(2047), - [sym_not_operator] = STATE(2388), - [sym_boolean_operator] = STATE(2388), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_comparison_operator] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_yield] = STATE(4954), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_pair] = STATE(4109), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym__collection_elements] = STATE(5517), - [sym_conditional_expression] = STATE(2388), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_new_expression] = STATE(2388), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_COMMA] = ACTIONS(2593), + [sym_list_splat_pattern] = STATE(2703), + [sym_primary_expression] = STATE(2533), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_print] = ACTIONS(2541), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_COLON_EQ] = ACTIONS(828), + [anon_sym_if] = ACTIONS(813), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2543), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(2545), + [anon_sym_api] = ACTIONS(2541), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [768] = { + [sym_list_splat_pattern] = STATE(2703), + [sym_primary_expression] = STATE(2533), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(813), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_RPAREN] = ACTIONS(811), + [anon_sym_COMMA] = ACTIONS(811), + [anon_sym_as] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_print] = ACTIONS(2541), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_if] = ACTIONS(813), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_in] = ACTIONS(813), + [anon_sym_STAR_STAR] = ACTIONS(811), + [anon_sym_exec] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(813), + [anon_sym_and] = ACTIONS(813), + [anon_sym_or] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(813), + [anon_sym_PERCENT] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_is] = ACTIONS(813), + [anon_sym_LT] = ACTIONS(2543), + [anon_sym_LT_EQ] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(813), + [anon_sym_LT_GT] = ACTIONS(811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(2545), + [anon_sym_api] = ACTIONS(2541), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [769] = { + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym__patterns] = STATE(5563), + [sym_pattern] = STATE(4806), + [sym_tuple_pattern] = STATE(5319), + [sym_list_pattern] = STATE(5319), + [sym_list_splat_pattern] = STATE(2538), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3768), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2541), + [sym_subscript] = STATE(2541), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5686), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), [anon_sym_STAR] = ACTIONS(2551), [anon_sym_print] = ACTIONS(2553), [anon_sym_match] = ACTIONS(2553), [anon_sym_async] = ACTIONS(2553), - [anon_sym_STAR_STAR] = ACTIONS(2555), [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2595), - [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), [anon_sym_LT] = ACTIONS(2561), [anon_sym_lambda] = ACTIONS(2563), [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), [anon_sym_await] = ACTIONS(2567), [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, - [768] = { - [sym_named_expression] = STATE(2388), - [sym__named_expression_lhs] = STATE(5531), - [sym_list_splat] = STATE(4954), - [sym_dictionary_splat] = STATE(4977), - [sym_parenthesized_list_splat] = STATE(4954), - [sym_list_splat_pattern] = STATE(2288), - [sym_as_pattern] = STATE(2388), - [sym_expression] = STATE(3606), - [sym_primary_expression] = STATE(2047), - [sym_not_operator] = STATE(2388), - [sym_boolean_operator] = STATE(2388), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_comparison_operator] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_yield] = STATE(4954), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_pair] = STATE(4148), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym__collection_elements] = STATE(5475), - [sym_conditional_expression] = STATE(2388), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_new_expression] = STATE(2388), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_COMMA] = ACTIONS(2597), + [770] = { + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym__patterns] = STATE(5695), + [sym_pattern] = STATE(4806), + [sym_tuple_pattern] = STATE(5319), + [sym_list_pattern] = STATE(5319), + [sym_list_splat_pattern] = STATE(2538), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3718), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2541), + [sym_subscript] = STATE(2541), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5604), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), [anon_sym_STAR] = ACTIONS(2551), [anon_sym_print] = ACTIONS(2553), [anon_sym_match] = ACTIONS(2553), [anon_sym_async] = ACTIONS(2553), - [anon_sym_STAR_STAR] = ACTIONS(2555), [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), [anon_sym_LT] = ACTIONS(2561), [anon_sym_lambda] = ACTIONS(2563), [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), [anon_sym_await] = ACTIONS(2567), [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), - }, - [769] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym__patterns] = STATE(5585), - [sym_pattern] = STATE(4722), - [sym_tuple_pattern] = STATE(5353), - [sym_list_pattern] = STATE(5353), - [sym_list_splat_pattern] = STATE(2528), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3694), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2529), - [sym_subscript] = STATE(2529), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5460), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_exec] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_RBRACK] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_api] = ACTIONS(2527), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [770] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym__patterns] = STATE(5438), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3632), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4963), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5429), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_RPAREN] = ACTIONS(2603), - [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), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [771] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym__patterns] = STATE(5684), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3632), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4963), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5429), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_RPAREN] = ACTIONS(2605), - [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), + [sym_named_expression] = STATE(2468), + [sym__named_expression_lhs] = STATE(5491), + [sym_list_splat] = STATE(5104), + [sym_dictionary_splat] = STATE(4816), + [sym_parenthesized_list_splat] = STATE(5104), + [sym_list_splat_pattern] = STATE(2449), + [sym_as_pattern] = STATE(2468), + [sym_expression] = STATE(3644), + [sym_primary_expression] = STATE(2119), + [sym_not_operator] = STATE(2468), + [sym_boolean_operator] = STATE(2468), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_comparison_operator] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_yield] = STATE(5104), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_pair] = STATE(4152), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym__collection_elements] = STATE(5625), + [sym_conditional_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_new_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2577), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2585), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_lambda] = ACTIONS(2591), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2581), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), }, [772] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym__patterns] = STATE(5458), - [sym_pattern] = STATE(4722), - [sym_tuple_pattern] = STATE(5353), - [sym_list_pattern] = STATE(5353), - [sym_list_splat_pattern] = STATE(2528), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3694), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2529), - [sym_subscript] = STATE(2529), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5460), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_exec] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_RBRACK] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_api] = ACTIONS(2527), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym__patterns] = STATE(5511), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3696), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4886), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5637), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [773] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym__patterns] = STATE(5438), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3634), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(5089), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5670), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [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), - [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), - }, - [774] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym__patterns] = STATE(5435), - [sym_pattern] = STATE(4722), - [sym_tuple_pattern] = STATE(5353), - [sym_list_pattern] = STATE(5353), - [sym_list_splat_pattern] = STATE(2528), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3694), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2529), - [sym_subscript] = STATE(2529), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5460), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_exec] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_RBRACK] = ACTIONS(2611), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_api] = ACTIONS(2527), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [775] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym__patterns] = STATE(5432), - [sym_pattern] = STATE(4722), - [sym_tuple_pattern] = STATE(5353), - [sym_list_pattern] = STATE(5353), - [sym_list_splat_pattern] = STATE(2528), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3694), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2529), - [sym_subscript] = STATE(2529), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5460), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_exec] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_RBRACK] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_api] = ACTIONS(2527), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [776] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym__patterns] = STATE(5585), - [sym_pattern] = STATE(4722), - [sym_tuple_pattern] = STATE(5353), - [sym_list_pattern] = STATE(5353), - [sym_list_splat_pattern] = STATE(2528), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3633), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2529), - [sym_subscript] = STATE(2529), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5434), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_exec] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_RBRACK] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_api] = ACTIONS(2527), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [777] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym__patterns] = STATE(5438), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3632), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4963), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5429), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_RPAREN] = ACTIONS(2617), - [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), - }, - [778] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym__patterns] = STATE(5739), - [sym_pattern] = STATE(4722), - [sym_tuple_pattern] = STATE(5353), - [sym_list_pattern] = STATE(5353), - [sym_list_splat_pattern] = STATE(2528), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3692), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2529), - [sym_subscript] = STATE(2529), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5400), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_exec] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_RBRACK] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_api] = ACTIONS(2527), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [779] = { - [sym_named_expression] = STATE(2388), - [sym__named_expression_lhs] = STATE(5531), - [sym_list_splat] = STATE(4954), - [sym_dictionary_splat] = STATE(5040), - [sym_parenthesized_list_splat] = STATE(4954), - [sym_list_splat_pattern] = STATE(2288), - [sym_as_pattern] = STATE(2388), - [sym_expression] = STATE(3600), - [sym_primary_expression] = STATE(2047), - [sym_not_operator] = STATE(2388), - [sym_boolean_operator] = STATE(2388), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_comparison_operator] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_yield] = STATE(4954), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_pair] = STATE(4057), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym__collection_elements] = STATE(5454), - [sym_conditional_expression] = STATE(2388), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_new_expression] = STATE(2388), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_COMMA] = ACTIONS(2621), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym__patterns] = STATE(5563), + [sym_pattern] = STATE(4806), + [sym_tuple_pattern] = STATE(5319), + [sym_list_pattern] = STATE(5319), + [sym_list_splat_pattern] = STATE(2538), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3731), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2541), + [sym_subscript] = STATE(2541), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5765), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), [anon_sym_STAR] = ACTIONS(2551), [anon_sym_print] = ACTIONS(2553), [anon_sym_match] = ACTIONS(2553), [anon_sym_async] = ACTIONS(2553), - [anon_sym_STAR_STAR] = ACTIONS(2555), [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), [anon_sym_LT] = ACTIONS(2561), [anon_sym_lambda] = ACTIONS(2563), [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), [anon_sym_await] = ACTIONS(2567), [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, - [780] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(5122), - [sym_parenthesized_list_splat] = STATE(5123), - [sym__patterns] = STATE(5410), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3657), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4747), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5728), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_RPAREN] = ACTIONS(2625), - [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), + [774] = { + [sym_named_expression] = STATE(2468), + [sym__named_expression_lhs] = STATE(5491), + [sym_list_splat] = STATE(5104), + [sym_dictionary_splat] = STATE(4866), + [sym_parenthesized_list_splat] = STATE(5104), + [sym_list_splat_pattern] = STATE(2449), + [sym_as_pattern] = STATE(2468), + [sym_expression] = STATE(3650), + [sym_primary_expression] = STATE(2119), + [sym_not_operator] = STATE(2468), + [sym_boolean_operator] = STATE(2468), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_comparison_operator] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_yield] = STATE(5104), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_pair] = STATE(4161), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym__collection_elements] = STATE(5688), + [sym_conditional_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_new_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_lambda] = ACTIONS(2591), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2581), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), }, - [781] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_expression_list] = STATE(5241), - [sym_pattern] = STATE(3241), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3911), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5241), - [sym_augmented_assignment] = STATE(5241), - [sym_pattern_list] = STATE(3287), - [sym__right_hand_side] = STATE(5241), - [sym_yield] = STATE(5241), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [775] = { + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_expression_list] = STATE(5379), + [sym_pattern] = STATE(3324), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(4040), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5379), + [sym_augmented_assignment] = STATE(5379), + [sym_pattern_list] = STATE(3341), + [sym__right_hand_side] = STATE(5379), + [sym_yield] = STATE(5379), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), @@ -100941,123 +101569,1085 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(105), [sym_string_start] = ACTIONS(107), }, - [782] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_expression_list] = STATE(5297), - [sym_pattern] = STATE(3241), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3911), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5297), - [sym_augmented_assignment] = STATE(5297), - [sym_pattern_list] = STATE(3287), - [sym__right_hand_side] = STATE(5297), - [sym_yield] = STATE(5297), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [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), + [776] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym__patterns] = STATE(5676), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3696), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4886), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5637), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_RPAREN] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [777] = { + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym__patterns] = STATE(5570), + [sym_pattern] = STATE(4806), + [sym_tuple_pattern] = STATE(5319), + [sym_list_pattern] = STATE(5319), + [sym_list_splat_pattern] = STATE(2538), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3712), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2541), + [sym_subscript] = STATE(2541), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5749), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2553), + [anon_sym_match] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_exec] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2567), + [anon_sym_api] = ACTIONS(2553), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), + }, + [778] = { + [sym_named_expression] = STATE(2468), + [sym__named_expression_lhs] = STATE(5491), + [sym_list_splat] = STATE(5104), + [sym_dictionary_splat] = STATE(4897), + [sym_parenthesized_list_splat] = STATE(5104), + [sym_list_splat_pattern] = STATE(2449), + [sym_as_pattern] = STATE(2468), + [sym_expression] = STATE(3651), + [sym_primary_expression] = STATE(2119), + [sym_not_operator] = STATE(2468), + [sym_boolean_operator] = STATE(2468), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_comparison_operator] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_yield] = STATE(5104), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_pair] = STATE(4163), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym__collection_elements] = STATE(5804), + [sym_conditional_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_new_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_lambda] = ACTIONS(2591), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2581), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), + }, + [779] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5080), + [sym_parenthesized_list_splat] = STATE(5082), + [sym__patterns] = STATE(5618), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3771), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4814), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5542), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_RPAREN] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [780] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym__patterns] = STATE(5618), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3696), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4886), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5637), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_RPAREN] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [781] = { + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym__patterns] = STATE(5563), + [sym_pattern] = STATE(4806), + [sym_tuple_pattern] = STATE(5319), + [sym_list_pattern] = STATE(5319), + [sym_list_splat_pattern] = STATE(2538), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3712), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2541), + [sym_subscript] = STATE(2541), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5749), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2553), + [anon_sym_match] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_exec] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2567), + [anon_sym_api] = ACTIONS(2553), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), + }, + [782] = { + [sym_named_expression] = STATE(2468), + [sym__named_expression_lhs] = STATE(5491), + [sym_list_splat] = STATE(5104), + [sym_dictionary_splat] = STATE(4924), + [sym_parenthesized_list_splat] = STATE(5104), + [sym_list_splat_pattern] = STATE(2449), + [sym_as_pattern] = STATE(2468), + [sym_expression] = STATE(3653), + [sym_primary_expression] = STATE(2119), + [sym_not_operator] = STATE(2468), + [sym_boolean_operator] = STATE(2468), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_comparison_operator] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_yield] = STATE(5104), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_pair] = STATE(4167), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym__collection_elements] = STATE(5605), + [sym_conditional_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_new_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_lambda] = ACTIONS(2591), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2581), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), }, [783] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_expression_list] = STATE(5306), - [sym_pattern] = STATE(3241), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(1885), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3911), - [sym_primary_expression] = STATE(2064), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_assignment] = STATE(5306), - [sym_augmented_assignment] = STATE(5306), - [sym_pattern_list] = STATE(3287), - [sym__right_hand_side] = STATE(5306), - [sym_yield] = STATE(5306), - [sym_attribute] = STATE(1886), - [sym_subscript] = STATE(1886), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym__patterns] = STATE(5570), + [sym_pattern] = STATE(4806), + [sym_tuple_pattern] = STATE(5319), + [sym_list_pattern] = STATE(5319), + [sym_list_splat_pattern] = STATE(2538), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3697), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2541), + [sym_subscript] = STATE(2541), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5585), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2553), + [anon_sym_match] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_exec] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2567), + [anon_sym_api] = ACTIONS(2553), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), + }, + [784] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym__patterns] = STATE(5517), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3696), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4886), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5637), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_RPAREN] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [785] = { + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym__patterns] = STATE(5563), + [sym_pattern] = STATE(4806), + [sym_tuple_pattern] = STATE(5319), + [sym_list_pattern] = STATE(5319), + [sym_list_splat_pattern] = STATE(2538), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3712), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2541), + [sym_subscript] = STATE(2541), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5749), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2553), + [anon_sym_match] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_exec] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2567), + [anon_sym_api] = ACTIONS(2553), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), + }, + [786] = { + [sym_named_expression] = STATE(2468), + [sym__named_expression_lhs] = STATE(5491), + [sym_list_splat] = STATE(5104), + [sym_dictionary_splat] = STATE(4949), + [sym_parenthesized_list_splat] = STATE(5104), + [sym_list_splat_pattern] = STATE(2449), + [sym_as_pattern] = STATE(2468), + [sym_expression] = STATE(3655), + [sym_primary_expression] = STATE(2119), + [sym_not_operator] = STATE(2468), + [sym_boolean_operator] = STATE(2468), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_comparison_operator] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_yield] = STATE(5104), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_pair] = STATE(4171), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym__collection_elements] = STATE(5739), + [sym_conditional_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_new_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_lambda] = ACTIONS(2591), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2581), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), + }, + [787] = { + [sym_named_expression] = STATE(2468), + [sym__named_expression_lhs] = STATE(5491), + [sym_list_splat] = STATE(5104), + [sym_dictionary_splat] = STATE(5170), + [sym_parenthesized_list_splat] = STATE(5104), + [sym_list_splat_pattern] = STATE(2449), + [sym_as_pattern] = STATE(2468), + [sym_expression] = STATE(3678), + [sym_primary_expression] = STATE(2119), + [sym_not_operator] = STATE(2468), + [sym_boolean_operator] = STATE(2468), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_comparison_operator] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_yield] = STATE(5104), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_pair] = STATE(4099), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym__collection_elements] = STATE(5492), + [sym_conditional_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_new_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_lambda] = ACTIONS(2591), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2581), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), + }, + [788] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym__patterns] = STATE(5676), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3696), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4886), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5637), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_RPAREN] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [789] = { + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym__patterns] = STATE(5695), + [sym_pattern] = STATE(4806), + [sym_tuple_pattern] = STATE(5319), + [sym_list_pattern] = STATE(5319), + [sym_list_splat_pattern] = STATE(2538), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3712), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2541), + [sym_subscript] = STATE(2541), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5749), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2553), + [anon_sym_match] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_exec] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2567), + [anon_sym_api] = ACTIONS(2553), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), + }, + [790] = { + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_expression_list] = STATE(5419), + [sym_pattern] = STATE(3324), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(4040), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5419), + [sym_augmented_assignment] = STATE(5419), + [sym_pattern_list] = STATE(3341), + [sym__right_hand_side] = STATE(5419), + [sym_yield] = STATE(5419), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), [sym_identifier] = ACTIONS(9), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), @@ -101089,998 +102679,575 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(105), [sym_string_start] = ACTIONS(107), }, - [784] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym__patterns] = STATE(5585), - [sym_pattern] = STATE(4722), - [sym_tuple_pattern] = STATE(5353), - [sym_list_pattern] = STATE(5353), - [sym_list_splat_pattern] = STATE(2528), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3633), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2529), - [sym_subscript] = STATE(2529), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5434), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_exec] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_RBRACK] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_api] = ACTIONS(2527), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [791] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym__patterns] = STATE(5676), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3746), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4858), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5724), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_RPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, - [785] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym__patterns] = STATE(5438), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(2458), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3634), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(5089), - [sym_attribute] = STATE(2464), - [sym_subscript] = STATE(2464), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5670), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [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), - [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), + [792] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym__patterns] = STATE(5676), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3746), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4858), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5724), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_RPAREN] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, - [786] = { - [sym_named_expression] = STATE(2388), - [sym__named_expression_lhs] = STATE(5531), - [sym_list_splat] = STATE(4954), - [sym_dictionary_splat] = STATE(4673), - [sym_parenthesized_list_splat] = STATE(4954), - [sym_list_splat_pattern] = STATE(2288), - [sym_as_pattern] = STATE(2388), - [sym_expression] = STATE(3534), - [sym_primary_expression] = STATE(2047), - [sym_not_operator] = STATE(2388), - [sym_boolean_operator] = STATE(2388), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_comparison_operator] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_yield] = STATE(4954), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_pair] = STATE(4029), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym__collection_elements] = STATE(5420), - [sym_conditional_expression] = STATE(2388), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_new_expression] = STATE(2388), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_COMMA] = ACTIONS(2629), + [793] = { + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym__patterns] = STATE(5601), + [sym_pattern] = STATE(4806), + [sym_tuple_pattern] = STATE(5319), + [sym_list_pattern] = STATE(5319), + [sym_list_splat_pattern] = STATE(2538), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3712), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2541), + [sym_subscript] = STATE(2541), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5749), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), [anon_sym_STAR] = ACTIONS(2551), [anon_sym_print] = ACTIONS(2553), [anon_sym_match] = ACTIONS(2553), [anon_sym_async] = ACTIONS(2553), - [anon_sym_STAR_STAR] = ACTIONS(2555), [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2631), - [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), [anon_sym_LT] = ACTIONS(2561), [anon_sym_lambda] = ACTIONS(2563), [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), [anon_sym_await] = ACTIONS(2567), [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, - [787] = { - [sym_named_expression] = STATE(2388), - [sym__named_expression_lhs] = STATE(5531), - [sym_list_splat] = STATE(4954), - [sym_dictionary_splat] = STATE(4901), - [sym_parenthesized_list_splat] = STATE(4954), - [sym_list_splat_pattern] = STATE(2288), - [sym_as_pattern] = STATE(2388), - [sym_expression] = STATE(3619), - [sym_primary_expression] = STATE(2047), - [sym_not_operator] = STATE(2388), - [sym_boolean_operator] = STATE(2388), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_comparison_operator] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_yield] = STATE(4954), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_pair] = STATE(3982), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym__collection_elements] = STATE(5661), - [sym_conditional_expression] = STATE(2388), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_new_expression] = STATE(2388), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_COMMA] = ACTIONS(2633), + [794] = { + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym__patterns] = STATE(5636), + [sym_pattern] = STATE(4806), + [sym_tuple_pattern] = STATE(5319), + [sym_list_pattern] = STATE(5319), + [sym_list_splat_pattern] = STATE(2538), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3712), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2541), + [sym_subscript] = STATE(2541), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5749), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), [anon_sym_STAR] = ACTIONS(2551), [anon_sym_print] = ACTIONS(2553), [anon_sym_match] = ACTIONS(2553), [anon_sym_async] = ACTIONS(2553), - [anon_sym_STAR_STAR] = ACTIONS(2555), [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), [anon_sym_LT] = ACTIONS(2561), [anon_sym_lambda] = ACTIONS(2563), [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), [anon_sym_await] = ACTIONS(2567), [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), - }, - [788] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_type] = STATE(4316), - [sym_splat_type] = STATE(4342), - [sym_generic_type] = STATE(4342), - [sym_union_type] = STATE(4342), - [sym_constrained_type] = STATE(4342), - [sym_member_type] = STATE(4342), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2479), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [789] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_type] = STATE(4316), - [sym_splat_type] = STATE(4342), - [sym_generic_type] = STATE(4342), - [sym_union_type] = STATE(4342), - [sym_constrained_type] = STATE(4342), - [sym_member_type] = STATE(4342), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2479), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [790] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_type] = STATE(4316), - [sym_splat_type] = STATE(4342), - [sym_generic_type] = STATE(4342), - [sym_union_type] = STATE(4342), - [sym_constrained_type] = STATE(4342), - [sym_member_type] = STATE(4342), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2479), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [791] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_type] = STATE(4316), - [sym_splat_type] = STATE(4342), - [sym_generic_type] = STATE(4342), - [sym_union_type] = STATE(4342), - [sym_constrained_type] = STATE(4342), - [sym_member_type] = STATE(4342), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2479), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [792] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_type] = STATE(4316), - [sym_splat_type] = STATE(4342), - [sym_generic_type] = STATE(4342), - [sym_union_type] = STATE(4342), - [sym_constrained_type] = STATE(4342), - [sym_member_type] = STATE(4342), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2479), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [793] = { - [sym_named_expression] = STATE(3805), - [sym__named_expression_lhs] = STATE(5543), - [sym_expression_list] = STATE(4334), - [sym_pattern] = STATE(5382), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(2389), - [sym_as_pattern] = STATE(3805), - [sym_expression] = STATE(3722), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3805), - [sym_boolean_operator] = STATE(3805), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_comparison_operator] = STATE(3805), - [sym_lambda] = STATE(3805), - [sym_pattern_list] = STATE(4334), - [sym_yield] = STATE(4334), - [sym_attribute] = STATE(2391), - [sym_subscript] = STATE(2391), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_conditional_expression] = STATE(3805), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym__f_expression] = STATE(4334), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_new_expression] = STATE(3805), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_print] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_async] = ACTIONS(2671), - [anon_sym_exec] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_not] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_lambda] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2683), - [anon_sym_api] = ACTIONS(2671), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), - }, - [794] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_type] = STATE(4316), - [sym_splat_type] = STATE(4342), - [sym_generic_type] = STATE(4342), - [sym_union_type] = STATE(4342), - [sym_constrained_type] = STATE(4342), - [sym_member_type] = STATE(4342), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2479), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [795] = { - [sym_named_expression] = STATE(3805), - [sym__named_expression_lhs] = STATE(5543), - [sym_expression_list] = STATE(4477), - [sym_pattern] = STATE(5382), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(2389), - [sym_as_pattern] = STATE(3805), - [sym_expression] = STATE(3722), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3805), - [sym_boolean_operator] = STATE(3805), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_comparison_operator] = STATE(3805), - [sym_lambda] = STATE(3805), - [sym_pattern_list] = STATE(4477), - [sym_yield] = STATE(4477), - [sym_attribute] = STATE(2391), - [sym_subscript] = STATE(2391), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_conditional_expression] = STATE(3805), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym__f_expression] = STATE(4477), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_new_expression] = STATE(3805), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_print] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_async] = ACTIONS(2671), - [anon_sym_exec] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_not] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_lambda] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2683), - [anon_sym_api] = ACTIONS(2671), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym__patterns] = STATE(5563), + [sym_pattern] = STATE(4806), + [sym_tuple_pattern] = STATE(5319), + [sym_list_pattern] = STATE(5319), + [sym_list_splat_pattern] = STATE(2538), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3768), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2541), + [sym_subscript] = STATE(2541), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5686), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2553), + [anon_sym_match] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_exec] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2567), + [anon_sym_api] = ACTIONS(2553), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [796] = { - [sym_else_clause] = STATE(1102), - [sym_except_group_clause] = STATE(921), - [sym_finally_clause] = STATE(1414), - [aux_sym_try_statement_repeat2] = STATE(921), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4809), + [sym_parenthesized_list_splat] = STATE(4970), + [sym__patterns] = STATE(5511), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3772), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(5026), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5545), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [797] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3849), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(4277), - [sym_splat_type] = STATE(4184), - [sym_generic_type] = STATE(4184), - [sym_union_type] = STATE(4184), - [sym_constrained_type] = STATE(4184), - [sym_member_type] = STATE(4184), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_print] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_STAR_STAR] = ACTIONS(2703), - [anon_sym_exec] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(1287), + [sym_named_expression] = STATE(2468), + [sym__named_expression_lhs] = STATE(5491), + [sym_list_splat] = STATE(5104), + [sym_dictionary_splat] = STATE(5033), + [sym_parenthesized_list_splat] = STATE(5104), + [sym_list_splat_pattern] = STATE(2449), + [sym_as_pattern] = STATE(2468), + [sym_expression] = STATE(3630), + [sym_primary_expression] = STATE(2119), + [sym_not_operator] = STATE(2468), + [sym_boolean_operator] = STATE(2468), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_comparison_operator] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_yield] = STATE(5104), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_pair] = STATE(4182), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym__collection_elements] = STATE(5610), + [sym_conditional_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_new_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_lambda] = ACTIONS(2591), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2581), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), + }, + [798] = { + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_expression_list] = STATE(5332), + [sym_pattern] = STATE(3324), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(1937), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(4040), + [sym_primary_expression] = STATE(2121), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_assignment] = STATE(5332), + [sym_augmented_assignment] = STATE(5332), + [sym_pattern_list] = STATE(3341), + [sym__right_hand_side] = STATE(5332), + [sym_yield] = STATE(5332), + [sym_attribute] = STATE(1951), + [sym_subscript] = STATE(1951), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [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), @@ -102089,12 +103256,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), [anon_sym_lambda] = ACTIONS(73), + [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(969), - [anon_sym_api] = ACTIONS(944), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(363), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -102103,765 +103271,1285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(105), [sym_string_start] = ACTIONS(107), }, - [798] = { - [sym_pattern] = STATE(3220), - [sym_tuple_pattern] = STATE(3212), - [sym_list_pattern] = STATE(3212), - [sym_list_splat_pattern] = STATE(2410), - [sym_primary_expression] = STATE(3230), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2411), - [sym_subscript] = STATE(2411), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2711), - [anon_sym_print] = ACTIONS(2713), - [anon_sym_COLON] = ACTIONS(2707), - [anon_sym_match] = ACTIONS(2713), - [anon_sym_async] = ACTIONS(2713), - [anon_sym_exec] = ACTIONS(2713), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2715), - [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(2707), - [anon_sym_DASH_EQ] = ACTIONS(2707), - [anon_sym_STAR_EQ] = ACTIONS(2707), - [anon_sym_SLASH_EQ] = ACTIONS(2707), - [anon_sym_AT_EQ] = ACTIONS(2707), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2707), - [anon_sym_PERCENT_EQ] = ACTIONS(2707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2707), - [anon_sym_GT_GT_EQ] = ACTIONS(2707), - [anon_sym_LT_LT_EQ] = ACTIONS(2707), - [anon_sym_AMP_EQ] = ACTIONS(2707), - [anon_sym_CARET_EQ] = ACTIONS(2707), - [anon_sym_PIPE_EQ] = ACTIONS(2707), - [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(2713), - [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(2707), - [sym_string_start] = ACTIONS(1247), - }, [799] = { - [sym__patterns] = STATE(5438), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(3204), - [sym_primary_expression] = STATE(3219), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(3214), - [sym_subscript] = STATE(3214), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5217), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2723), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), - [anon_sym_exec] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2729), - [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(2731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2733), - [anon_sym_api] = ACTIONS(2727), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym__patterns] = STATE(5676), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3716), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4895), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5740), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_RPAREN] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [800] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5679), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(3912), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(4502), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [anon_sym_lambda] = ACTIONS(2743), - [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(2745), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_string_start] = ACTIONS(1247), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym__patterns] = STATE(5563), + [sym_pattern] = STATE(4806), + [sym_tuple_pattern] = STATE(5319), + [sym_list_pattern] = STATE(5319), + [sym_list_splat_pattern] = STATE(2538), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3712), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2541), + [sym_subscript] = STATE(2541), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5749), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2553), + [anon_sym_match] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_exec] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2567), + [anon_sym_api] = ACTIONS(2553), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [801] = { - [sym_else_clause] = STATE(1125), - [sym_except_group_clause] = STATE(938), - [sym_finally_clause] = STATE(1580), - [aux_sym_try_statement_repeat2] = STATE(938), - [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(2747), - [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(2749), - [anon_sym_finally] = ACTIONS(2751), - [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), + [sym_named_expression] = STATE(2468), + [sym__named_expression_lhs] = STATE(5491), + [sym_list_splat] = STATE(5104), + [sym_dictionary_splat] = STATE(4903), + [sym_parenthesized_list_splat] = STATE(5104), + [sym_list_splat_pattern] = STATE(2449), + [sym_as_pattern] = STATE(2468), + [sym_expression] = STATE(3639), + [sym_primary_expression] = STATE(2119), + [sym_not_operator] = STATE(2468), + [sym_boolean_operator] = STATE(2468), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_comparison_operator] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_yield] = STATE(5104), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_pair] = STATE(4108), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym__collection_elements] = STATE(5522), + [sym_conditional_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_new_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_lambda] = ACTIONS(2591), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2581), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), }, [802] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4759), - [sym_dictionary_splat] = STATE(4759), - [sym_parenthesized_list_splat] = STATE(4760), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3658), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_keyword_argument] = STATE(4759), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_print] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2761), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2761), - [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(2763), - [anon_sym_api] = ACTIONS(2761), - [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_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym__patterns] = STATE(5676), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3696), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4886), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5637), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_RPAREN] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [803] = { - [sym_else_clause] = STATE(1102), - [sym_except_clause] = STATE(920), - [sym_finally_clause] = STATE(1414), - [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(2765), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym__patterns] = STATE(5538), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(2582), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3696), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4886), + [sym_attribute] = STATE(2623), + [sym_subscript] = STATE(2623), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5637), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_RPAREN] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_exec] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1354), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [804] = { - [sym_else_clause] = STATE(1159), - [sym_except_group_clause] = STATE(938), - [sym_finally_clause] = STATE(1539), - [aux_sym_try_statement_repeat2] = STATE(938), - [sym_identifier] = ACTIONS(2767), - [anon_sym_import] = ACTIONS(2767), - [anon_sym_cimport] = ACTIONS(2767), - [anon_sym_from] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_print] = ACTIONS(2767), - [anon_sym_assert] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_del] = ACTIONS(2767), - [anon_sym_raise] = ACTIONS(2767), - [anon_sym_pass] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2767), - [anon_sym_async] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_except_STAR] = ACTIONS(2749), - [anon_sym_finally] = ACTIONS(2751), - [anon_sym_with] = ACTIONS(2767), - [anon_sym_def] = ACTIONS(2767), - [anon_sym_global] = ACTIONS(2767), - [anon_sym_nonlocal] = ACTIONS(2767), - [anon_sym_exec] = ACTIONS(2767), - [anon_sym_type] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_AT] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_lambda] = ACTIONS(2767), - [anon_sym_yield] = ACTIONS(2767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_None] = ACTIONS(2767), - [sym_integer] = ACTIONS(2767), - [sym_float] = ACTIONS(2769), - [anon_sym_await] = ACTIONS(2767), - [anon_sym_api] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2767), - [anon_sym_include] = ACTIONS(2767), - [anon_sym_DEF] = ACTIONS(2767), - [anon_sym_cdef] = ACTIONS(2767), - [anon_sym_cpdef] = ACTIONS(2767), - [anon_sym_new] = ACTIONS(2767), - [anon_sym_ctypedef] = ACTIONS(2767), - [anon_sym_public] = ACTIONS(2767), - [anon_sym_packed] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym_readonly] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2767), - [sym__dedent] = ACTIONS(2769), - [sym_string_start] = ACTIONS(2769), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(3883), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_type] = STATE(4360), + [sym_splat_type] = STATE(4473), + [sym_generic_type] = STATE(4473), + [sym_union_type] = STATE(4473), + [sym_constrained_type] = STATE(4473), + [sym_member_type] = STATE(4473), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_STAR_STAR] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [805] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4144), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(4825), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [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), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(3883), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_type] = STATE(4360), + [sym_splat_type] = STATE(4473), + [sym_generic_type] = STATE(4473), + [sym_union_type] = STATE(4473), + [sym_constrained_type] = STATE(4473), + [sym_member_type] = STATE(4473), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_STAR_STAR] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [806] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4881), - [sym_dictionary_splat] = STATE(4881), - [sym_parenthesized_list_splat] = STATE(4882), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3678), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_keyword_argument] = STATE(4881), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2771), - [anon_sym_COMMA] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_print] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2761), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2761), - [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(2763), - [anon_sym_api] = ACTIONS(2761), - [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_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(3883), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_type] = STATE(4360), + [sym_splat_type] = STATE(4473), + [sym_generic_type] = STATE(4473), + [sym_union_type] = STATE(4473), + [sym_constrained_type] = STATE(4473), + [sym_member_type] = STATE(4473), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_STAR_STAR] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [807] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_type] = STATE(4312), - [sym_splat_type] = STATE(4342), - [sym_generic_type] = STATE(4342), - [sym_union_type] = STATE(4342), - [sym_constrained_type] = STATE(4342), - [sym_member_type] = STATE(4342), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2479), - [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(2485), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), + [sym_named_expression] = STATE(3906), + [sym__named_expression_lhs] = STATE(5700), + [sym_expression_list] = STATE(4420), + [sym_pattern] = STATE(5237), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(2469), + [sym_as_pattern] = STATE(3906), + [sym_expression] = STATE(3795), + [sym_primary_expression] = STATE(2117), + [sym_not_operator] = STATE(3906), + [sym_boolean_operator] = STATE(3906), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_comparison_operator] = STATE(3906), + [sym_lambda] = STATE(3906), + [sym_pattern_list] = STATE(4420), + [sym_yield] = STATE(4420), + [sym_attribute] = STATE(2474), + [sym_subscript] = STATE(2474), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_conditional_expression] = STATE(3906), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym__f_expression] = STATE(4420), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_new_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_print] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_async] = ACTIONS(2699), + [anon_sym_exec] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(2707), + [anon_sym_yield] = ACTIONS(2709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(2711), + [anon_sym_api] = ACTIONS(2699), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), }, [808] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3849), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(4313), - [sym_splat_type] = STATE(4184), - [sym_generic_type] = STATE(4184), - [sym_union_type] = STATE(4184), - [sym_constrained_type] = STATE(4184), - [sym_member_type] = STATE(4184), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_print] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_STAR_STAR] = ACTIONS(2703), - [anon_sym_exec] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(1287), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(3883), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_type] = STATE(4360), + [sym_splat_type] = STATE(4473), + [sym_generic_type] = STATE(4473), + [sym_union_type] = STATE(4473), + [sym_constrained_type] = STATE(4473), + [sym_member_type] = STATE(4473), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_STAR_STAR] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [809] = { + [sym_named_expression] = STATE(3906), + [sym__named_expression_lhs] = STATE(5700), + [sym_expression_list] = STATE(4460), + [sym_pattern] = STATE(5237), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(2469), + [sym_as_pattern] = STATE(3906), + [sym_expression] = STATE(3795), + [sym_primary_expression] = STATE(2117), + [sym_not_operator] = STATE(3906), + [sym_boolean_operator] = STATE(3906), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_comparison_operator] = STATE(3906), + [sym_lambda] = STATE(3906), + [sym_pattern_list] = STATE(4460), + [sym_yield] = STATE(4460), + [sym_attribute] = STATE(2474), + [sym_subscript] = STATE(2474), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_conditional_expression] = STATE(3906), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym__f_expression] = STATE(4460), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_new_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_print] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_async] = ACTIONS(2699), + [anon_sym_exec] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(2707), + [anon_sym_yield] = ACTIONS(2709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(2711), + [anon_sym_api] = ACTIONS(2699), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), + }, + [810] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(3883), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_type] = STATE(4360), + [sym_splat_type] = STATE(4473), + [sym_generic_type] = STATE(4473), + [sym_union_type] = STATE(4473), + [sym_constrained_type] = STATE(4473), + [sym_member_type] = STATE(4473), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_STAR_STAR] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [811] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(3883), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_type] = STATE(4360), + [sym_splat_type] = STATE(4473), + [sym_generic_type] = STATE(4473), + [sym_union_type] = STATE(4473), + [sym_constrained_type] = STATE(4473), + [sym_member_type] = STATE(4473), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_STAR_STAR] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [812] = { + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4215), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(5077), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), + }, + [813] = { + [sym_else_clause] = STATE(1156), + [sym_except_clause] = STATE(934), + [sym_finally_clause] = STATE(1513), + [aux_sym_try_statement_repeat1] = STATE(934), + [sym_identifier] = ACTIONS(2727), + [anon_sym_import] = ACTIONS(2727), + [anon_sym_cimport] = ACTIONS(2727), + [anon_sym_from] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_print] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_del] = ACTIONS(2727), + [anon_sym_raise] = ACTIONS(2727), + [anon_sym_pass] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_async] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_while] = ACTIONS(2727), + [anon_sym_try] = ACTIONS(2727), + [anon_sym_except] = ACTIONS(2733), + [anon_sym_finally] = ACTIONS(2735), + [anon_sym_with] = ACTIONS(2727), + [anon_sym_def] = ACTIONS(2727), + [anon_sym_global] = ACTIONS(2727), + [anon_sym_nonlocal] = ACTIONS(2727), + [anon_sym_exec] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_class] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_lambda] = ACTIONS(2727), + [anon_sym_yield] = ACTIONS(2727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), + [anon_sym_None] = ACTIONS(2727), + [sym_integer] = ACTIONS(2727), + [sym_float] = ACTIONS(2729), + [anon_sym_await] = ACTIONS(2727), + [anon_sym_api] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2727), + [anon_sym_include] = ACTIONS(2727), + [anon_sym_DEF] = ACTIONS(2727), + [anon_sym_cdef] = ACTIONS(2727), + [anon_sym_cpdef] = ACTIONS(2727), + [anon_sym_new] = ACTIONS(2727), + [anon_sym_ctypedef] = ACTIONS(2727), + [anon_sym_public] = ACTIONS(2727), + [anon_sym_packed] = ACTIONS(2727), + [anon_sym_inline] = ACTIONS(2727), + [anon_sym_readonly] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2727), + [sym__dedent] = ACTIONS(2729), + [sym_string_start] = ACTIONS(2729), + }, + [814] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4875), + [sym_dictionary_splat] = STATE(4875), + [sym_parenthesized_list_splat] = STATE(4876), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3710), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_keyword_argument] = STATE(4875), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2741), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_print] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(2747), + [anon_sym_api] = ACTIONS(2745), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [815] = { + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4215), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(5212), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), + }, + [816] = { + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3930), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(4356), + [sym_splat_type] = STATE(4280), + [sym_generic_type] = STATE(4280), + [sym_union_type] = STATE(4280), + [sym_constrained_type] = STATE(4280), + [sym_member_type] = STATE(4280), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_STAR_STAR] = ACTIONS(2753), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(1319), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -102874,8 +104562,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(969), - [anon_sym_api] = ACTIONS(944), + [anon_sym_await] = ACTIONS(849), + [anon_sym_api] = ACTIONS(824), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), @@ -102884,8225 +104572,8239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(105), [sym_string_start] = ACTIONS(107), }, - [809] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5750), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3774), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(4290), - [sym_splat_type] = STATE(4184), - [sym_generic_type] = STATE(4184), - [sym_union_type] = STATE(4184), - [sym_constrained_type] = STATE(4184), - [sym_member_type] = STATE(4184), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_print] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_STAR_STAR] = ACTIONS(2703), - [anon_sym_exec] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2775), - [anon_sym_DOT_DOT_DOT] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(969), - [anon_sym_api] = ACTIONS(944), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), + [817] = { + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5751), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(3977), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(4604), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(2757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2759), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, - [810] = { - [sym__patterns] = STATE(5589), - [sym_pattern] = STATE(4997), - [sym_tuple_pattern] = STATE(5246), - [sym_list_pattern] = STATE(5246), - [sym_list_splat_pattern] = STATE(3204), - [sym_primary_expression] = STATE(3219), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(3214), - [sym_subscript] = STATE(3214), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_int_type] = STATE(3515), - [sym__signedness] = STATE(3156), - [sym__longness] = STATE(3364), - [sym_function_pointer_type] = STATE(3515), - [sym_c_type] = STATE(5217), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2779), - [anon_sym_STAR] = ACTIONS(2725), + [818] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5038), + [sym_dictionary_splat] = STATE(5038), + [sym_parenthesized_list_splat] = STATE(5047), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3702), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_keyword_argument] = STATE(5038), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_print] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(2747), + [anon_sym_api] = ACTIONS(2745), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [819] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4930), + [sym_dictionary_splat] = STATE(4930), + [sym_parenthesized_list_splat] = STATE(4931), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3745), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_keyword_argument] = STATE(4930), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2763), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_print] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(2747), + [anon_sym_api] = ACTIONS(2745), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [820] = { + [sym_else_clause] = STATE(1156), + [sym_except_group_clause] = STATE(936), + [sym_finally_clause] = STATE(1513), + [aux_sym_try_statement_repeat2] = STATE(936), + [sym_identifier] = ACTIONS(2727), + [anon_sym_import] = ACTIONS(2727), + [anon_sym_cimport] = ACTIONS(2727), + [anon_sym_from] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), [anon_sym_print] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_del] = ACTIONS(2727), + [anon_sym_raise] = ACTIONS(2727), + [anon_sym_pass] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_else] = ACTIONS(2731), [anon_sym_match] = ACTIONS(2727), [anon_sym_async] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_while] = ACTIONS(2727), + [anon_sym_try] = ACTIONS(2727), + [anon_sym_except_STAR] = ACTIONS(2765), + [anon_sym_finally] = ACTIONS(2735), + [anon_sym_with] = ACTIONS(2727), + [anon_sym_def] = ACTIONS(2727), + [anon_sym_global] = ACTIONS(2727), + [anon_sym_nonlocal] = ACTIONS(2727), [anon_sym_exec] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_class] = ACTIONS(2727), [anon_sym_LBRACK] = ACTIONS(2729), - [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(2731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2733), + [anon_sym_AT] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_lambda] = ACTIONS(2727), + [anon_sym_yield] = ACTIONS(2727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), + [anon_sym_None] = ACTIONS(2727), + [sym_integer] = ACTIONS(2727), + [sym_float] = ACTIONS(2729), + [anon_sym_await] = ACTIONS(2727), [anon_sym_api] = ACTIONS(2727), - [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), - }, - [811] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3637), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_keyword_argument] = STATE(5025), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(1412), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_print] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2761), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2761), - [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(2763), - [anon_sym_api] = ACTIONS(2761), - [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), - }, - [812] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5025), - [sym_dictionary_splat] = STATE(5025), - [sym_parenthesized_list_splat] = STATE(5026), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4044), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5025), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [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), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2727), + [anon_sym_include] = ACTIONS(2727), + [anon_sym_DEF] = ACTIONS(2727), + [anon_sym_cdef] = ACTIONS(2727), + [anon_sym_cpdef] = ACTIONS(2727), + [anon_sym_new] = ACTIONS(2727), + [anon_sym_ctypedef] = ACTIONS(2727), + [anon_sym_public] = ACTIONS(2727), + [anon_sym_packed] = ACTIONS(2727), + [anon_sym_inline] = ACTIONS(2727), + [anon_sym_readonly] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2727), + [sym__dedent] = ACTIONS(2729), + [sym_string_start] = ACTIONS(2729), }, - [813] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_type] = STATE(4316), - [sym_splat_type] = STATE(4342), - [sym_generic_type] = STATE(4342), - [sym_union_type] = STATE(4342), - [sym_constrained_type] = STATE(4342), - [sym_member_type] = STATE(4342), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2479), - [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(2485), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [821] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4194), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, - [814] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4733), - [sym_dictionary_splat] = STATE(4733), - [sym_parenthesized_list_splat] = STATE(4734), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3664), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_keyword_argument] = STATE(4733), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), + [822] = { + [sym_pattern] = STATE(3255), + [sym_tuple_pattern] = STATE(3249), + [sym_list_pattern] = STATE(3249), + [sym_list_splat_pattern] = STATE(2601), + [sym_primary_expression] = STATE(3268), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2618), + [sym_subscript] = STATE(2618), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2785), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_print] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2761), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2761), - [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(2763), - [anon_sym_api] = ACTIONS(2761), - [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), - }, - [815] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_type] = STATE(4205), - [sym_splat_type] = STATE(4342), - [sym_generic_type] = STATE(4342), - [sym_union_type] = STATE(4342), - [sym_constrained_type] = STATE(4342), - [sym_member_type] = STATE(4342), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2479), - [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(2485), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [816] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5679), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(3912), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(4527), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [anon_sym_lambda] = ACTIONS(2743), - [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(2745), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_string_start] = ACTIONS(1247), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_print] = ACTIONS(2779), + [anon_sym_COLON] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2779), + [anon_sym_exec] = ACTIONS(2779), + [anon_sym_EQ] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_PLUS_EQ] = ACTIONS(2773), + [anon_sym_DASH_EQ] = ACTIONS(2773), + [anon_sym_STAR_EQ] = ACTIONS(2773), + [anon_sym_SLASH_EQ] = ACTIONS(2773), + [anon_sym_AT_EQ] = ACTIONS(2773), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2773), + [anon_sym_PERCENT_EQ] = ACTIONS(2773), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2773), + [anon_sym_GT_GT_EQ] = ACTIONS(2773), + [anon_sym_LT_LT_EQ] = ACTIONS(2773), + [anon_sym_AMP_EQ] = ACTIONS(2773), + [anon_sym_CARET_EQ] = ACTIONS(2773), + [anon_sym_PIPE_EQ] = ACTIONS(2773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(2783), + [anon_sym_api] = ACTIONS(2779), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym__newline] = ACTIONS(2773), + [sym_string_start] = ACTIONS(1279), }, - [817] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4851), - [sym_dictionary_splat] = STATE(4851), - [sym_parenthesized_list_splat] = STATE(4852), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3673), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_keyword_argument] = STATE(4851), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2787), - [anon_sym_COMMA] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_print] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2761), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2761), - [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(2763), - [anon_sym_api] = ACTIONS(2761), - [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), + [823] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(3883), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_type] = STATE(4384), + [sym_splat_type] = STATE(4473), + [sym_generic_type] = STATE(4473), + [sym_union_type] = STATE(4473), + [sym_constrained_type] = STATE(4473), + [sym_member_type] = STATE(4473), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_STAR_STAR] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, - [818] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4144), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(4777), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [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), + [824] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(3883), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_type] = STATE(4385), + [sym_splat_type] = STATE(4473), + [sym_generic_type] = STATE(4473), + [sym_union_type] = STATE(4473), + [sym_constrained_type] = STATE(4473), + [sym_member_type] = STATE(4473), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_STAR_STAR] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, - [819] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_type] = STATE(4230), - [sym_splat_type] = STATE(4342), - [sym_generic_type] = STATE(4342), - [sym_union_type] = STATE(4342), - [sym_constrained_type] = STATE(4342), - [sym_member_type] = STATE(4342), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2479), - [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(2485), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [825] = { + [sym_else_clause] = STATE(1138), + [sym_except_clause] = STATE(952), + [sym_finally_clause] = STATE(1657), + [aux_sym_try_statement_repeat1] = STATE(952), + [ts_builtin_sym_end] = ACTIONS(2785), + [sym_identifier] = ACTIONS(2787), + [anon_sym_import] = ACTIONS(2787), + [anon_sym_cimport] = ACTIONS(2787), + [anon_sym_from] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_print] = ACTIONS(2787), + [anon_sym_assert] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_del] = ACTIONS(2787), + [anon_sym_raise] = ACTIONS(2787), + [anon_sym_pass] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_match] = ACTIONS(2787), + [anon_sym_async] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2787), + [anon_sym_except] = ACTIONS(2791), + [anon_sym_finally] = ACTIONS(2793), + [anon_sym_with] = ACTIONS(2787), + [anon_sym_def] = ACTIONS(2787), + [anon_sym_global] = ACTIONS(2787), + [anon_sym_nonlocal] = ACTIONS(2787), + [anon_sym_exec] = ACTIONS(2787), + [anon_sym_type] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_AT] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_not] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_LT] = ACTIONS(2785), + [anon_sym_lambda] = ACTIONS(2787), + [anon_sym_yield] = ACTIONS(2787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2785), + [anon_sym_None] = ACTIONS(2787), + [sym_integer] = ACTIONS(2787), + [sym_float] = ACTIONS(2785), + [anon_sym_await] = ACTIONS(2787), + [anon_sym_api] = ACTIONS(2787), + [sym_true] = ACTIONS(2787), + [sym_false] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2787), + [anon_sym_include] = ACTIONS(2787), + [anon_sym_DEF] = ACTIONS(2787), + [anon_sym_cdef] = ACTIONS(2787), + [anon_sym_cpdef] = ACTIONS(2787), + [anon_sym_new] = ACTIONS(2787), + [anon_sym_ctypedef] = ACTIONS(2787), + [anon_sym_public] = ACTIONS(2787), + [anon_sym_packed] = ACTIONS(2787), + [anon_sym_inline] = ACTIONS(2787), + [anon_sym_readonly] = ACTIONS(2787), + [anon_sym_sizeof] = ACTIONS(2787), + [sym_string_start] = ACTIONS(2785), }, - [820] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4144), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(4895), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [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), + [826] = { + [sym_else_clause] = STATE(1138), + [sym_except_group_clause] = STATE(955), + [sym_finally_clause] = STATE(1657), + [aux_sym_try_statement_repeat2] = STATE(955), + [ts_builtin_sym_end] = ACTIONS(2785), + [sym_identifier] = ACTIONS(2787), + [anon_sym_import] = ACTIONS(2787), + [anon_sym_cimport] = ACTIONS(2787), + [anon_sym_from] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_print] = ACTIONS(2787), + [anon_sym_assert] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_del] = ACTIONS(2787), + [anon_sym_raise] = ACTIONS(2787), + [anon_sym_pass] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_match] = ACTIONS(2787), + [anon_sym_async] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2787), + [anon_sym_except_STAR] = ACTIONS(2795), + [anon_sym_finally] = ACTIONS(2793), + [anon_sym_with] = ACTIONS(2787), + [anon_sym_def] = ACTIONS(2787), + [anon_sym_global] = ACTIONS(2787), + [anon_sym_nonlocal] = ACTIONS(2787), + [anon_sym_exec] = ACTIONS(2787), + [anon_sym_type] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_AT] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_not] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_LT] = ACTIONS(2785), + [anon_sym_lambda] = ACTIONS(2787), + [anon_sym_yield] = ACTIONS(2787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2785), + [anon_sym_None] = ACTIONS(2787), + [sym_integer] = ACTIONS(2787), + [sym_float] = ACTIONS(2785), + [anon_sym_await] = ACTIONS(2787), + [anon_sym_api] = ACTIONS(2787), + [sym_true] = ACTIONS(2787), + [sym_false] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2787), + [anon_sym_include] = ACTIONS(2787), + [anon_sym_DEF] = ACTIONS(2787), + [anon_sym_cdef] = ACTIONS(2787), + [anon_sym_cpdef] = ACTIONS(2787), + [anon_sym_new] = ACTIONS(2787), + [anon_sym_ctypedef] = ACTIONS(2787), + [anon_sym_public] = ACTIONS(2787), + [anon_sym_packed] = ACTIONS(2787), + [anon_sym_inline] = ACTIONS(2787), + [anon_sym_readonly] = ACTIONS(2787), + [anon_sym_sizeof] = ACTIONS(2787), + [sym_string_start] = ACTIONS(2785), }, - [821] = { - [sym_else_clause] = STATE(1091), - [sym_except_group_clause] = STATE(921), - [sym_finally_clause] = STATE(1524), - [aux_sym_try_statement_repeat2] = STATE(921), - [ts_builtin_sym_end] = ACTIONS(2769), - [sym_identifier] = ACTIONS(2767), - [anon_sym_import] = ACTIONS(2767), - [anon_sym_cimport] = ACTIONS(2767), - [anon_sym_from] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_print] = ACTIONS(2767), - [anon_sym_assert] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_del] = ACTIONS(2767), - [anon_sym_raise] = ACTIONS(2767), - [anon_sym_pass] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2693), - [anon_sym_match] = ACTIONS(2767), - [anon_sym_async] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_except_STAR] = ACTIONS(2695), - [anon_sym_finally] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2767), - [anon_sym_def] = ACTIONS(2767), - [anon_sym_global] = ACTIONS(2767), - [anon_sym_nonlocal] = ACTIONS(2767), - [anon_sym_exec] = ACTIONS(2767), - [anon_sym_type] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_AT] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_lambda] = ACTIONS(2767), - [anon_sym_yield] = ACTIONS(2767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_None] = ACTIONS(2767), - [sym_integer] = ACTIONS(2767), - [sym_float] = ACTIONS(2769), - [anon_sym_await] = ACTIONS(2767), - [anon_sym_api] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2767), - [anon_sym_include] = ACTIONS(2767), - [anon_sym_DEF] = ACTIONS(2767), - [anon_sym_cdef] = ACTIONS(2767), - [anon_sym_cpdef] = ACTIONS(2767), - [anon_sym_new] = ACTIONS(2767), - [anon_sym_ctypedef] = ACTIONS(2767), - [anon_sym_public] = ACTIONS(2767), - [anon_sym_packed] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym_readonly] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2767), - [sym_string_start] = ACTIONS(2769), + [827] = { + [sym__patterns] = STATE(5676), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(3257), + [sym_primary_expression] = STATE(3286), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(3259), + [sym_subscript] = STATE(3259), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5282), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2797), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_print] = ACTIONS(2805), + [anon_sym_match] = ACTIONS(2805), + [anon_sym_async] = ACTIONS(2805), + [anon_sym_exec] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(2811), + [anon_sym_api] = ACTIONS(2805), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, - [822] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5750), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3774), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(4275), - [sym_splat_type] = STATE(4184), - [sym_generic_type] = STATE(4184), - [sym_union_type] = STATE(4184), - [sym_constrained_type] = STATE(4184), - [sym_member_type] = STATE(4184), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_print] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_STAR_STAR] = ACTIONS(2703), - [anon_sym_exec] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(1287), + [828] = { + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5822), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3832), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(4218), + [sym_splat_type] = STATE(4280), + [sym_generic_type] = STATE(4280), + [sym_union_type] = STATE(4280), + [sym_constrained_type] = STATE(4280), + [sym_member_type] = STATE(4280), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_STAR_STAR] = ACTIONS(2753), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(1319), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2813), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2775), + [anon_sym_lambda] = ACTIONS(2815), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(969), - [anon_sym_api] = ACTIONS(944), + [anon_sym_await] = ACTIONS(849), + [anon_sym_api] = ACTIONS(824), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2817), [anon_sym_sizeof] = ACTIONS(105), [sym_string_start] = ACTIONS(107), }, - [823] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4925), - [sym_dictionary_splat] = STATE(4925), - [sym_parenthesized_list_splat] = STATE(4926), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3682), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_keyword_argument] = STATE(4925), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2789), - [anon_sym_COMMA] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_print] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2761), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2761), - [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(2763), - [anon_sym_api] = ACTIONS(2761), - [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), - }, - [824] = { - [sym_else_clause] = STATE(1159), - [sym_except_clause] = STATE(937), - [sym_finally_clause] = STATE(1539), - [aux_sym_try_statement_repeat1] = STATE(937), - [sym_identifier] = ACTIONS(2767), - [anon_sym_import] = ACTIONS(2767), - [anon_sym_cimport] = ACTIONS(2767), - [anon_sym_from] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_print] = ACTIONS(2767), - [anon_sym_assert] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_del] = ACTIONS(2767), - [anon_sym_raise] = ACTIONS(2767), - [anon_sym_pass] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2767), - [anon_sym_async] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_except] = ACTIONS(2791), - [anon_sym_finally] = ACTIONS(2751), - [anon_sym_with] = ACTIONS(2767), - [anon_sym_def] = ACTIONS(2767), - [anon_sym_global] = ACTIONS(2767), - [anon_sym_nonlocal] = ACTIONS(2767), - [anon_sym_exec] = ACTIONS(2767), - [anon_sym_type] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_AT] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_lambda] = ACTIONS(2767), - [anon_sym_yield] = ACTIONS(2767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_None] = ACTIONS(2767), - [sym_integer] = ACTIONS(2767), - [sym_float] = ACTIONS(2769), - [anon_sym_await] = ACTIONS(2767), - [anon_sym_api] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2767), - [anon_sym_include] = ACTIONS(2767), - [anon_sym_DEF] = ACTIONS(2767), - [anon_sym_cdef] = ACTIONS(2767), - [anon_sym_cpdef] = ACTIONS(2767), - [anon_sym_new] = ACTIONS(2767), - [anon_sym_ctypedef] = ACTIONS(2767), - [anon_sym_public] = ACTIONS(2767), - [anon_sym_packed] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym_readonly] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2767), - [sym__dedent] = ACTIONS(2769), - [sym_string_start] = ACTIONS(2769), - }, - [825] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4993), - [sym_dictionary_splat] = STATE(4993), - [sym_parenthesized_list_splat] = STATE(4998), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3628), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_keyword_argument] = STATE(4993), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2793), - [anon_sym_COMMA] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_print] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2761), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2761), - [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(2763), - [anon_sym_api] = ACTIONS(2761), - [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), - }, - [826] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4144), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(5112), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [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), - }, - [827] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4144), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(4527), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [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), - }, - [828] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5679), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(3912), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(4522), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [anon_sym_lambda] = ACTIONS(2743), - [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(2745), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_string_start] = ACTIONS(1247), - }, [829] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4144), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(5022), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4823), + [sym_dictionary_splat] = STATE(4823), + [sym_parenthesized_list_splat] = STATE(4824), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3691), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_keyword_argument] = STATE(4823), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2819), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_print] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(2747), + [anon_sym_api] = ACTIONS(2745), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [830] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4144), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(5018), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [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), + [sym_else_clause] = STATE(1164), + [sym_except_clause] = STATE(934), + [sym_finally_clause] = STATE(1545), + [aux_sym_try_statement_repeat1] = STATE(934), + [sym_identifier] = ACTIONS(2787), + [anon_sym_import] = ACTIONS(2787), + [anon_sym_cimport] = ACTIONS(2787), + [anon_sym_from] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_print] = ACTIONS(2787), + [anon_sym_assert] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_del] = ACTIONS(2787), + [anon_sym_raise] = ACTIONS(2787), + [anon_sym_pass] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_match] = ACTIONS(2787), + [anon_sym_async] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2787), + [anon_sym_except] = ACTIONS(2733), + [anon_sym_finally] = ACTIONS(2735), + [anon_sym_with] = ACTIONS(2787), + [anon_sym_def] = ACTIONS(2787), + [anon_sym_global] = ACTIONS(2787), + [anon_sym_nonlocal] = ACTIONS(2787), + [anon_sym_exec] = ACTIONS(2787), + [anon_sym_type] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_AT] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_not] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_LT] = ACTIONS(2785), + [anon_sym_lambda] = ACTIONS(2787), + [anon_sym_yield] = ACTIONS(2787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2785), + [anon_sym_None] = ACTIONS(2787), + [sym_integer] = ACTIONS(2787), + [sym_float] = ACTIONS(2785), + [anon_sym_await] = ACTIONS(2787), + [anon_sym_api] = ACTIONS(2787), + [sym_true] = ACTIONS(2787), + [sym_false] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2787), + [anon_sym_include] = ACTIONS(2787), + [anon_sym_DEF] = ACTIONS(2787), + [anon_sym_cdef] = ACTIONS(2787), + [anon_sym_cpdef] = ACTIONS(2787), + [anon_sym_new] = ACTIONS(2787), + [anon_sym_ctypedef] = ACTIONS(2787), + [anon_sym_public] = ACTIONS(2787), + [anon_sym_packed] = ACTIONS(2787), + [anon_sym_inline] = ACTIONS(2787), + [anon_sym_readonly] = ACTIONS(2787), + [anon_sym_sizeof] = ACTIONS(2787), + [sym__dedent] = ACTIONS(2785), + [sym_string_start] = ACTIONS(2785), }, [831] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_type] = STATE(4476), - [sym_splat_type] = STATE(4342), - [sym_generic_type] = STATE(4342), - [sym_union_type] = STATE(4342), - [sym_constrained_type] = STATE(4342), - [sym_member_type] = STATE(4342), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2479), - [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(2485), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(3883), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_type] = STATE(4330), + [sym_splat_type] = STATE(4473), + [sym_generic_type] = STATE(4473), + [sym_union_type] = STATE(4473), + [sym_constrained_type] = STATE(4473), + [sym_member_type] = STATE(4473), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_STAR_STAR] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [832] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4144), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(5027), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [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), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(3883), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_type] = STATE(4296), + [sym_splat_type] = STATE(4473), + [sym_generic_type] = STATE(4473), + [sym_union_type] = STATE(4473), + [sym_constrained_type] = STATE(4473), + [sym_member_type] = STATE(4473), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_STAR_STAR] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [833] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4144), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(5028), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [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), + [sym_pattern] = STATE(3255), + [sym_tuple_pattern] = STATE(3249), + [sym_list_pattern] = STATE(3249), + [sym_list_splat_pattern] = STATE(2601), + [sym_primary_expression] = STATE(3268), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2618), + [sym_subscript] = STATE(2618), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2777), + [anon_sym_print] = ACTIONS(2779), + [anon_sym_COLON] = ACTIONS(2821), + [anon_sym_match] = ACTIONS(2779), + [anon_sym_async] = ACTIONS(2779), + [anon_sym_exec] = ACTIONS(2779), + [anon_sym_EQ] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_PLUS_EQ] = ACTIONS(2821), + [anon_sym_DASH_EQ] = ACTIONS(2821), + [anon_sym_STAR_EQ] = ACTIONS(2821), + [anon_sym_SLASH_EQ] = ACTIONS(2821), + [anon_sym_AT_EQ] = ACTIONS(2821), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2821), + [anon_sym_PERCENT_EQ] = ACTIONS(2821), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2821), + [anon_sym_GT_GT_EQ] = ACTIONS(2821), + [anon_sym_LT_LT_EQ] = ACTIONS(2821), + [anon_sym_AMP_EQ] = ACTIONS(2821), + [anon_sym_CARET_EQ] = ACTIONS(2821), + [anon_sym_PIPE_EQ] = ACTIONS(2821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(2783), + [anon_sym_api] = ACTIONS(2779), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym__newline] = ACTIONS(2821), + [sym_string_start] = ACTIONS(1279), }, [834] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_type] = STATE(4196), - [sym_splat_type] = STATE(4342), - [sym_generic_type] = STATE(4342), - [sym_union_type] = STATE(4342), - [sym_constrained_type] = STATE(4342), - [sym_member_type] = STATE(4342), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2479), - [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(2485), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(3883), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_type] = STATE(4231), + [sym_splat_type] = STATE(4473), + [sym_generic_type] = STATE(4473), + [sym_union_type] = STATE(4473), + [sym_constrained_type] = STATE(4473), + [sym_member_type] = STATE(4473), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_STAR_STAR] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [835] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4144), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_type] = STATE(5030), - [sym_splat_type] = STATE(4608), - [sym_generic_type] = STATE(4608), - [sym_union_type] = STATE(4608), - [sym_constrained_type] = STATE(4608), - [sym_member_type] = STATE(4608), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(2737), - [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(2741), - [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), + [sym_else_clause] = STATE(1164), + [sym_except_group_clause] = STATE(936), + [sym_finally_clause] = STATE(1545), + [aux_sym_try_statement_repeat2] = STATE(936), + [sym_identifier] = ACTIONS(2787), + [anon_sym_import] = ACTIONS(2787), + [anon_sym_cimport] = ACTIONS(2787), + [anon_sym_from] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_print] = ACTIONS(2787), + [anon_sym_assert] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_del] = ACTIONS(2787), + [anon_sym_raise] = ACTIONS(2787), + [anon_sym_pass] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_match] = ACTIONS(2787), + [anon_sym_async] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2787), + [anon_sym_except_STAR] = ACTIONS(2765), + [anon_sym_finally] = ACTIONS(2735), + [anon_sym_with] = ACTIONS(2787), + [anon_sym_def] = ACTIONS(2787), + [anon_sym_global] = ACTIONS(2787), + [anon_sym_nonlocal] = ACTIONS(2787), + [anon_sym_exec] = ACTIONS(2787), + [anon_sym_type] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_AT] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_not] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_LT] = ACTIONS(2785), + [anon_sym_lambda] = ACTIONS(2787), + [anon_sym_yield] = ACTIONS(2787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2785), + [anon_sym_None] = ACTIONS(2787), + [sym_integer] = ACTIONS(2787), + [sym_float] = ACTIONS(2785), + [anon_sym_await] = ACTIONS(2787), + [anon_sym_api] = ACTIONS(2787), + [sym_true] = ACTIONS(2787), + [sym_false] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2787), + [anon_sym_include] = ACTIONS(2787), + [anon_sym_DEF] = ACTIONS(2787), + [anon_sym_cdef] = ACTIONS(2787), + [anon_sym_cpdef] = ACTIONS(2787), + [anon_sym_new] = ACTIONS(2787), + [anon_sym_ctypedef] = ACTIONS(2787), + [anon_sym_public] = ACTIONS(2787), + [anon_sym_packed] = ACTIONS(2787), + [anon_sym_inline] = ACTIONS(2787), + [anon_sym_readonly] = ACTIONS(2787), + [anon_sym_sizeof] = ACTIONS(2787), + [sym__dedent] = ACTIONS(2785), + [sym_string_start] = ACTIONS(2785), }, [836] = { - [sym_else_clause] = STATE(1091), - [sym_except_clause] = STATE(920), - [sym_finally_clause] = STATE(1524), - [aux_sym_try_statement_repeat1] = STATE(920), - [ts_builtin_sym_end] = ACTIONS(2769), - [sym_identifier] = ACTIONS(2767), - [anon_sym_import] = ACTIONS(2767), - [anon_sym_cimport] = ACTIONS(2767), - [anon_sym_from] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_print] = ACTIONS(2767), - [anon_sym_assert] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_del] = ACTIONS(2767), - [anon_sym_raise] = ACTIONS(2767), - [anon_sym_pass] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2693), - [anon_sym_match] = ACTIONS(2767), - [anon_sym_async] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_except] = ACTIONS(2765), - [anon_sym_finally] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2767), - [anon_sym_def] = ACTIONS(2767), - [anon_sym_global] = ACTIONS(2767), - [anon_sym_nonlocal] = ACTIONS(2767), - [anon_sym_exec] = ACTIONS(2767), - [anon_sym_type] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2767), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_AT] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_not] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2769), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_lambda] = ACTIONS(2767), - [anon_sym_yield] = ACTIONS(2767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2769), - [anon_sym_None] = ACTIONS(2767), - [sym_integer] = ACTIONS(2767), - [sym_float] = ACTIONS(2769), - [anon_sym_await] = ACTIONS(2767), - [anon_sym_api] = ACTIONS(2767), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2767), - [anon_sym_include] = ACTIONS(2767), - [anon_sym_DEF] = ACTIONS(2767), - [anon_sym_cdef] = ACTIONS(2767), - [anon_sym_cpdef] = ACTIONS(2767), - [anon_sym_new] = ACTIONS(2767), - [anon_sym_ctypedef] = ACTIONS(2767), - [anon_sym_public] = ACTIONS(2767), - [anon_sym_packed] = ACTIONS(2767), - [anon_sym_inline] = ACTIONS(2767), - [anon_sym_readonly] = ACTIONS(2767), - [anon_sym_sizeof] = ACTIONS(2767), - [sym_string_start] = ACTIONS(2769), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_with_item] = STATE(4739), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3694), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4886), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5637), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [837] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4818), - [sym_dictionary_splat] = STATE(4818), - [sym_parenthesized_list_splat] = STATE(4819), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3669), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_keyword_argument] = STATE(4818), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2795), - [anon_sym_COMMA] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_print] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2761), - [anon_sym_STAR_STAR] = ACTIONS(1380), - [anon_sym_exec] = ACTIONS(2761), - [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(2763), - [anon_sym_api] = ACTIONS(2761), - [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_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4978), + [sym_dictionary_splat] = STATE(4978), + [sym_parenthesized_list_splat] = STATE(4979), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3759), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_keyword_argument] = STATE(4978), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2827), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_print] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(2747), + [anon_sym_api] = ACTIONS(2745), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [838] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_with_item] = STATE(4922), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3629), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4963), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5429), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2799), - [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), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(3883), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_type] = STATE(4360), + [sym_splat_type] = STATE(4473), + [sym_generic_type] = STATE(4473), + [sym_union_type] = STATE(4473), + [sym_constrained_type] = STATE(4473), + [sym_member_type] = STATE(4473), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_STAR_STAR] = ACTIONS(2675), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [839] = { - [sym_else_clause] = STATE(1125), - [sym_except_clause] = STATE(937), - [sym_finally_clause] = STATE(1580), - [aux_sym_try_statement_repeat1] = STATE(937), - [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(2747), - [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(2791), - [anon_sym_finally] = ACTIONS(2751), - [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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4215), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(4792), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [840] = { - [sym_pattern] = STATE(3220), - [sym_tuple_pattern] = STATE(3212), - [sym_list_pattern] = STATE(3212), - [sym_list_splat_pattern] = STATE(2410), - [sym_primary_expression] = STATE(3230), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2411), - [sym_subscript] = STATE(2411), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2711), - [anon_sym_print] = ACTIONS(2713), - [anon_sym_COLON] = ACTIONS(2801), - [anon_sym_match] = ACTIONS(2713), - [anon_sym_async] = ACTIONS(2713), - [anon_sym_exec] = ACTIONS(2713), - [anon_sym_EQ] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2715), - [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(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_AT_EQ] = ACTIONS(2801), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2801), - [anon_sym_GT_GT_EQ] = ACTIONS(2801), - [anon_sym_LT_LT_EQ] = ACTIONS(2801), - [anon_sym_AMP_EQ] = ACTIONS(2801), - [anon_sym_CARET_EQ] = ACTIONS(2801), - [anon_sym_PIPE_EQ] = ACTIONS(2801), - [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(2713), - [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(2801), - [sym_string_start] = ACTIONS(1247), - }, - [841] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3849), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(4475), - [sym_splat_type] = STATE(4184), - [sym_generic_type] = STATE(4184), - [sym_union_type] = STATE(4184), - [sym_constrained_type] = STATE(4184), - [sym_member_type] = STATE(4184), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_print] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_STAR_STAR] = ACTIONS(2703), - [anon_sym_exec] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(1287), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5822), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3832), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(4281), + [sym_splat_type] = STATE(4280), + [sym_generic_type] = STATE(4280), + [sym_union_type] = STATE(4280), + [sym_constrained_type] = STATE(4280), + [sym_member_type] = STATE(4280), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_STAR_STAR] = ACTIONS(2753), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(1319), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_not] = ACTIONS(2813), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), + [anon_sym_lambda] = ACTIONS(2815), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(969), - [anon_sym_api] = ACTIONS(944), + [anon_sym_await] = ACTIONS(849), + [anon_sym_api] = ACTIONS(824), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), + [anon_sym_new] = ACTIONS(2817), [anon_sym_sizeof] = ACTIONS(105), [sym_string_start] = ACTIONS(107), }, + [841] = { + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4215), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(5167), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), + }, [842] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5750), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3774), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_type] = STATE(4277), - [sym_splat_type] = STATE(4184), - [sym_generic_type] = STATE(4184), - [sym_union_type] = STATE(4184), - [sym_constrained_type] = STATE(4184), - [sym_member_type] = STATE(4184), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_print] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_STAR_STAR] = ACTIONS(2703), - [anon_sym_exec] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(1287), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4215), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(4604), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), + }, + [843] = { + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5822), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3832), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(4290), + [sym_splat_type] = STATE(4280), + [sym_generic_type] = STATE(4280), + [sym_union_type] = STATE(4280), + [sym_constrained_type] = STATE(4280), + [sym_member_type] = STATE(4280), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_STAR_STAR] = ACTIONS(2753), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(1319), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2813), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2775), + [anon_sym_lambda] = ACTIONS(2815), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(969), - [anon_sym_api] = ACTIONS(944), + [anon_sym_await] = ACTIONS(849), + [anon_sym_api] = ACTIONS(824), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2817), [anon_sym_sizeof] = ACTIONS(105), [sym_string_start] = ACTIONS(107), }, - [843] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2803), - [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), - }, [844] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2805), - [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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4215), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(5064), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [845] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3632), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4963), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5429), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5751), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(3977), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(4588), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2799), - [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), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(2757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2759), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [846] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3634), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(5089), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5670), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2807), - [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), + [sym_else_clause] = STATE(1122), + [sym_except_clause] = STATE(952), + [sym_finally_clause] = STATE(1764), + [aux_sym_try_statement_repeat1] = STATE(952), + [ts_builtin_sym_end] = ACTIONS(2729), + [sym_identifier] = ACTIONS(2727), + [anon_sym_import] = ACTIONS(2727), + [anon_sym_cimport] = ACTIONS(2727), + [anon_sym_from] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_print] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_del] = ACTIONS(2727), + [anon_sym_raise] = ACTIONS(2727), + [anon_sym_pass] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_async] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_while] = ACTIONS(2727), + [anon_sym_try] = ACTIONS(2727), + [anon_sym_except] = ACTIONS(2791), + [anon_sym_finally] = ACTIONS(2793), + [anon_sym_with] = ACTIONS(2727), + [anon_sym_def] = ACTIONS(2727), + [anon_sym_global] = ACTIONS(2727), + [anon_sym_nonlocal] = ACTIONS(2727), + [anon_sym_exec] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_class] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_lambda] = ACTIONS(2727), + [anon_sym_yield] = ACTIONS(2727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), + [anon_sym_None] = ACTIONS(2727), + [sym_integer] = ACTIONS(2727), + [sym_float] = ACTIONS(2729), + [anon_sym_await] = ACTIONS(2727), + [anon_sym_api] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2727), + [anon_sym_include] = ACTIONS(2727), + [anon_sym_DEF] = ACTIONS(2727), + [anon_sym_cdef] = ACTIONS(2727), + [anon_sym_cpdef] = ACTIONS(2727), + [anon_sym_new] = ACTIONS(2727), + [anon_sym_ctypedef] = ACTIONS(2727), + [anon_sym_public] = ACTIONS(2727), + [anon_sym_packed] = ACTIONS(2727), + [anon_sym_inline] = ACTIONS(2727), + [anon_sym_readonly] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2727), + [sym_string_start] = ACTIONS(2729), }, [847] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym_list_splat_pattern] = STATE(2479), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3633), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5434), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_exec] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_api] = ACTIONS(2813), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4215), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(5071), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [848] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4784), - [sym_parenthesized_list_splat] = STATE(4848), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3648), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4999), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5600), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4215), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(5073), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [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), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [849] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2819), - [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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4215), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(4879), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [850] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2821), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3766), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_print] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(2747), + [anon_sym_api] = ACTIONS(2745), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [851] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym_list_splat_pattern] = STATE(2479), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3694), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5460), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_exec] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_api] = ACTIONS(2813), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_else_clause] = STATE(1122), + [sym_except_group_clause] = STATE(955), + [sym_finally_clause] = STATE(1764), + [aux_sym_try_statement_repeat2] = STATE(955), + [ts_builtin_sym_end] = ACTIONS(2729), + [sym_identifier] = ACTIONS(2727), + [anon_sym_import] = ACTIONS(2727), + [anon_sym_cimport] = ACTIONS(2727), + [anon_sym_from] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_print] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_del] = ACTIONS(2727), + [anon_sym_raise] = ACTIONS(2727), + [anon_sym_pass] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_async] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_while] = ACTIONS(2727), + [anon_sym_try] = ACTIONS(2727), + [anon_sym_except_STAR] = ACTIONS(2795), + [anon_sym_finally] = ACTIONS(2793), + [anon_sym_with] = ACTIONS(2727), + [anon_sym_def] = ACTIONS(2727), + [anon_sym_global] = ACTIONS(2727), + [anon_sym_nonlocal] = ACTIONS(2727), + [anon_sym_exec] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_class] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_lambda] = ACTIONS(2727), + [anon_sym_yield] = ACTIONS(2727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), + [anon_sym_None] = ACTIONS(2727), + [sym_integer] = ACTIONS(2727), + [sym_float] = ACTIONS(2729), + [anon_sym_await] = ACTIONS(2727), + [anon_sym_api] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2727), + [anon_sym_include] = ACTIONS(2727), + [anon_sym_DEF] = ACTIONS(2727), + [anon_sym_cdef] = ACTIONS(2727), + [anon_sym_cpdef] = ACTIONS(2727), + [anon_sym_new] = ACTIONS(2727), + [anon_sym_ctypedef] = ACTIONS(2727), + [anon_sym_public] = ACTIONS(2727), + [anon_sym_packed] = ACTIONS(2727), + [anon_sym_inline] = ACTIONS(2727), + [anon_sym_readonly] = ACTIONS(2727), + [anon_sym_sizeof] = ACTIONS(2727), + [sym_string_start] = ACTIONS(2729), }, [852] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2825), - [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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5751), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(3977), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(4601), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(2757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2759), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [853] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2827), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4905), + [sym_dictionary_splat] = STATE(4905), + [sym_parenthesized_list_splat] = STATE(4906), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3717), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_keyword_argument] = STATE(4905), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2829), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_print] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(2747), + [anon_sym_api] = ACTIONS(2745), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [854] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2829), - [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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4215), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_type] = STATE(4815), + [sym_splat_type] = STATE(4653), + [sym_generic_type] = STATE(4653), + [sym_union_type] = STATE(4653), + [sym_constrained_type] = STATE(4653), + [sym_member_type] = STATE(4653), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [855] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5136), + [sym_dictionary_splat] = STATE(5136), + [sym_parenthesized_list_splat] = STATE(5138), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3763), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_keyword_argument] = STATE(5136), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2739), [anon_sym_RPAREN] = ACTIONS(2831), - [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), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_print] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(2747), + [anon_sym_api] = ACTIONS(2745), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [856] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4871), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5497), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [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), - }, - [857] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym_list_splat_pattern] = STATE(2479), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3700), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5443), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_exec] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2833), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_api] = ACTIONS(2813), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3930), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(4539), + [sym_splat_type] = STATE(4280), + [sym_generic_type] = STATE(4280), + [sym_union_type] = STATE(4280), + [sym_constrained_type] = STATE(4280), + [sym_member_type] = STATE(4280), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_STAR_STAR] = ACTIONS(2753), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(1319), + [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(849), + [anon_sym_api] = ACTIONS(824), + [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), + }, + [857] = { + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3930), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_type] = STATE(4218), + [sym_splat_type] = STATE(4280), + [sym_generic_type] = STATE(4280), + [sym_union_type] = STATE(4280), + [sym_constrained_type] = STATE(4280), + [sym_member_type] = STATE(4280), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_print] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_STAR_STAR] = ACTIONS(2753), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(1319), + [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(849), + [anon_sym_api] = ACTIONS(824), + [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), }, [858] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(5122), - [sym_parenthesized_list_splat] = STATE(5123), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3657), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4747), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5728), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), + [sym__patterns] = STATE(5511), + [sym_pattern] = STATE(4811), + [sym_tuple_pattern] = STATE(5233), + [sym_list_pattern] = STATE(5233), + [sym_list_splat_pattern] = STATE(3257), + [sym_primary_expression] = STATE(3286), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(3259), + [sym_subscript] = STATE(3259), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_int_type] = STATE(3530), + [sym__signedness] = STATE(3209), + [sym__longness] = STATE(3417), + [sym_function_pointer_type] = STATE(3530), + [sym_c_type] = STATE(5282), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2835), - [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), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_print] = ACTIONS(2805), + [anon_sym_match] = ACTIONS(2805), + [anon_sym_async] = ACTIONS(2805), + [anon_sym_exec] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(2811), + [anon_sym_api] = ACTIONS(2805), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1380), + [anon_sym_double] = ACTIONS(1380), + [anon_sym_complex] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [859] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [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_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2835), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [860] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2839), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [861] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2841), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3746), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4858), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5724), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [862] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2843), - [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), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym_list_splat_pattern] = STATE(2546), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3768), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5686), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(2845), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [863] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3648), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4999), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5600), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4809), + [sym_parenthesized_list_splat] = STATE(4970), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3772), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(5026), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5545), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [864] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym_list_splat_pattern] = STATE(2479), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3707), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5509), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_exec] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_api] = ACTIONS(2813), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3696), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4886), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5637), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [865] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4784), - [sym_parenthesized_list_splat] = STATE(4848), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4871), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5497), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2851), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [866] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [867] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2849), - [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), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym_list_splat_pattern] = STATE(2546), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3712), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5749), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(2845), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [868] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2851), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [869] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2853), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [870] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3681), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4899), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5646), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2855), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [871] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym_list_splat_pattern] = STATE(2479), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3692), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5400), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_exec] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_api] = ACTIONS(2813), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2863), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [872] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(5122), - [sym_parenthesized_list_splat] = STATE(5123), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3681), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4899), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5646), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2855), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3733), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4923), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5594), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [873] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2859), - [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), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym_list_splat_pattern] = STATE(2546), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3727), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5826), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(2845), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [874] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2861), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5080), + [sym_parenthesized_list_splat] = STATE(5082), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3771), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4814), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5542), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [875] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2863), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [876] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2865), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2871), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [877] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3657), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4747), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5728), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2835), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [878] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym_list_splat_pattern] = STATE(2479), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3698), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5437), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_exec] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_api] = ACTIONS(2813), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [879] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2869), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3772), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(5026), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5545), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [880] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4991), - [sym_parenthesized_list_splat] = STATE(4992), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3668), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4804), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5402), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2871), - [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), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym_list_splat_pattern] = STATE(2546), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3734), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5598), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(2845), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [881] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2873), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4809), + [sym_parenthesized_list_splat] = STATE(4970), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3733), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4923), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5594), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [882] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [883] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [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_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [884] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2879), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [885] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3672), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4837), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5586), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2881), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [886] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym_list_splat_pattern] = STATE(2479), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3708), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5651), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_exec] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_api] = ACTIONS(2813), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3756), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4948), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5728), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [887] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2885), - [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), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym_list_splat_pattern] = STATE(2546), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3697), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5585), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(2845), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [888] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5080), + [sym_parenthesized_list_splat] = STATE(5082), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3756), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4948), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5728), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), [anon_sym_RPAREN] = ACTIONS(2887), - [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), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [889] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2889), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [890] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2891), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [891] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4921), - [sym_parenthesized_list_splat] = STATE(4921), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3668), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4804), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5402), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2871), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [892] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat] = STATE(4719), - [sym_parenthesized_list_splat] = STATE(4719), - [sym_list_splat_pattern] = STATE(2479), - [sym_as_pattern] = STATE(2527), - [sym_expression] = STATE(3703), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_yield] = STATE(4719), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym__collection_elements] = STATE(5605), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_print] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_exec] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_api] = ACTIONS(2813), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [893] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2895), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3771), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4814), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5542), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [894] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2897), - [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), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym_list_splat_pattern] = STATE(2546), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3718), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5604), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(2845), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [895] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2899), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4928), + [sym_parenthesized_list_splat] = STATE(4929), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3716), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4895), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5740), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [896] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2901), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [897] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2903), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [898] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2905), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [899] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2907), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [900] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2909), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3716), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4895), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5740), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [901] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2911), - [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), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym_list_splat_pattern] = STATE(2546), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3739), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5734), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(2845), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [902] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), [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(1404), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [903] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), [anon_sym_RPAREN] = ACTIONS(2915), - [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), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [904] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), [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(1404), - [anon_sym_sizeof] = ACTIONS(1406), - [sym_string_start] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [905] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), [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), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [906] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(5165), + [sym_parenthesized_list_splat] = STATE(5165), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3707), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4864), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5577), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), [anon_sym_RPAREN] = ACTIONS(2921), - [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), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [907] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2923), - [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), - }, - [908] = { - [sym_named_expression] = STATE(3805), - [sym__named_expression_lhs] = STATE(5543), - [sym_expression_list] = STATE(4438), - [sym_list_splat_pattern] = STATE(2270), - [sym_as_pattern] = STATE(3805), - [sym_expression] = STATE(3785), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3805), - [sym_boolean_operator] = STATE(3805), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_comparison_operator] = STATE(3805), - [sym_lambda] = STATE(3805), - [sym_attribute] = STATE(2266), - [sym_subscript] = STATE(2266), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_conditional_expression] = STATE(3805), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_new_expression] = STATE(3805), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2925), - [anon_sym_from] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_print] = ACTIONS(2929), - [anon_sym_COLON] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2929), - [anon_sym_async] = ACTIONS(2929), - [anon_sym_exec] = ACTIONS(2929), - [anon_sym_EQ] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_not] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_lambda] = ACTIONS(2679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_type_conversion] = ACTIONS(2931), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2933), - [anon_sym_api] = ACTIONS(2929), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat] = STATE(4800), + [sym_parenthesized_list_splat] = STATE(4800), + [sym_list_splat_pattern] = STATE(2546), + [sym_as_pattern] = STATE(2536), + [sym_expression] = STATE(3731), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_yield] = STATE(4800), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym__collection_elements] = STATE(5765), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(2845), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), + }, + [908] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [909] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat] = STATE(4991), - [sym_parenthesized_list_splat] = STATE(4992), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym_expression] = STATE(3672), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_yield] = STATE(4837), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym__collection_elements] = STATE(5586), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_RPAREN] = ACTIONS(2881), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [910] = { - [sym_named_expression] = STATE(2388), - [sym__named_expression_lhs] = STATE(5531), - [sym_list_splat_pattern] = STATE(2288), - [sym_as_pattern] = STATE(2388), - [sym__expression_within_for_in_clause] = STATE(4301), - [sym_expression] = STATE(3965), - [sym_primary_expression] = STATE(2047), - [sym_not_operator] = STATE(2388), - [sym_boolean_operator] = STATE(2388), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_comparison_operator] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_lambda_within_for_in_clause] = STATE(4301), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym_conditional_expression] = STATE(2388), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_new_expression] = STATE(2388), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [911] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat_pattern] = STATE(2479), - [sym_as_pattern] = STATE(2527), - [sym__expression_within_for_in_clause] = STATE(4467), - [sym_expression] = STATE(3940), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_lambda_within_for_in_clause] = STATE(4467), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_print] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_exec] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_api] = ACTIONS(2813), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [912] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat_pattern] = STATE(2479), - [sym_as_pattern] = STATE(2527), - [sym__expression_within_for_in_clause] = STATE(4467), - [sym_expression] = STATE(3940), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_lambda_within_for_in_clause] = STATE(4467), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_print] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_exec] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_api] = ACTIONS(2813), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [913] = { - [sym_elif_clause] = STATE(1071), - [sym_else_clause] = STATE(1385), - [aux_sym_if_statement_repeat1] = STATE(971), - [ts_builtin_sym_end] = ACTIONS(2951), - [sym_identifier] = ACTIONS(2953), - [anon_sym_import] = ACTIONS(2953), - [anon_sym_cimport] = ACTIONS(2953), - [anon_sym_from] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_print] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_del] = ACTIONS(2953), - [anon_sym_raise] = ACTIONS(2953), - [anon_sym_pass] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_elif] = ACTIONS(2955), - [anon_sym_else] = ACTIONS(2693), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_async] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_with] = ACTIONS(2953), - [anon_sym_def] = ACTIONS(2953), - [anon_sym_global] = ACTIONS(2953), - [anon_sym_nonlocal] = ACTIONS(2953), - [anon_sym_exec] = ACTIONS(2953), - [anon_sym_type] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_lambda] = ACTIONS(2953), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2951), - [anon_sym_None] = ACTIONS(2953), - [sym_integer] = ACTIONS(2953), - [sym_float] = ACTIONS(2951), - [anon_sym_await] = ACTIONS(2953), - [anon_sym_api] = ACTIONS(2953), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2953), - [anon_sym_include] = ACTIONS(2953), - [anon_sym_DEF] = ACTIONS(2953), - [anon_sym_cdef] = ACTIONS(2953), - [anon_sym_cpdef] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_ctypedef] = ACTIONS(2953), - [anon_sym_public] = ACTIONS(2953), - [anon_sym_packed] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym_readonly] = ACTIONS(2953), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_string_start] = ACTIONS(2951), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [914] = { - [sym_elif_clause] = STATE(1071), - [sym_else_clause] = STATE(1391), - [aux_sym_if_statement_repeat1] = STATE(926), - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_import] = ACTIONS(2959), - [anon_sym_cimport] = ACTIONS(2959), - [anon_sym_from] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_del] = ACTIONS(2959), - [anon_sym_raise] = ACTIONS(2959), - [anon_sym_pass] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_elif] = ACTIONS(2955), - [anon_sym_else] = ACTIONS(2693), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_def] = ACTIONS(2959), - [anon_sym_global] = ACTIONS(2959), - [anon_sym_nonlocal] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_class] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_AT] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_lambda] = ACTIONS(2959), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2957), - [anon_sym_None] = ACTIONS(2959), - [sym_integer] = ACTIONS(2959), - [sym_float] = ACTIONS(2957), - [anon_sym_await] = ACTIONS(2959), - [anon_sym_api] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2959), - [anon_sym_include] = ACTIONS(2959), - [anon_sym_DEF] = ACTIONS(2959), - [anon_sym_cdef] = ACTIONS(2959), - [anon_sym_cpdef] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_ctypedef] = ACTIONS(2959), - [anon_sym_public] = ACTIONS(2959), - [anon_sym_packed] = ACTIONS(2959), - [anon_sym_inline] = ACTIONS(2959), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2959), - [sym_string_start] = ACTIONS(2957), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [915] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat_pattern] = STATE(2479), - [sym_as_pattern] = STATE(2527), - [sym__expression_within_for_in_clause] = STATE(4467), - [sym_expression] = STATE(3940), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_lambda_within_for_in_clause] = STATE(4467), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_print] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_exec] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_api] = ACTIONS(2813), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2939), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [916] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5390), - [sym_parenthesized_list_splat] = STATE(5390), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4181), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_yield] = STATE(5390), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2969), - [anon_sym_print] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_exec] = ACTIONS(1567), - [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(1569), - [anon_sym_api] = ACTIONS(1567), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [917] = { - [sym_pattern] = STATE(3218), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(2658), - [sym_primary_expression] = STATE(3221), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2663), - [sym_subscript] = STATE(2663), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_print] = ACTIONS(2977), - [anon_sym_COLON] = ACTIONS(2707), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_async] = ACTIONS(2977), - [anon_sym_exec] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2979), - [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(2707), - [anon_sym_DASH_EQ] = ACTIONS(2707), - [anon_sym_STAR_EQ] = ACTIONS(2707), - [anon_sym_SLASH_EQ] = ACTIONS(2707), - [anon_sym_AT_EQ] = ACTIONS(2707), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2707), - [anon_sym_PERCENT_EQ] = ACTIONS(2707), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2707), - [anon_sym_GT_GT_EQ] = ACTIONS(2707), - [anon_sym_LT_LT_EQ] = ACTIONS(2707), - [anon_sym_AMP_EQ] = ACTIONS(2707), - [anon_sym_CARET_EQ] = ACTIONS(2707), - [anon_sym_PIPE_EQ] = ACTIONS(2707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2981), - [anon_sym_api] = ACTIONS(2977), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [918] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym__expression_within_for_in_clause] = STATE(4392), - [sym_expression] = STATE(3887), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_lambda_within_for_in_clause] = STATE(4392), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2983), - [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(2985), - [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_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [919] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym__expression_within_for_in_clause] = STATE(4392), - [sym_expression] = STATE(3887), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_lambda_within_for_in_clause] = STATE(4392), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [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(2985), - [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_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [920] = { - [sym_except_clause] = STATE(920), - [aux_sym_try_statement_repeat1] = STATE(920), - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(2989), - [anon_sym_cimport] = ACTIONS(2989), - [anon_sym_from] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_print] = ACTIONS(2989), - [anon_sym_assert] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_del] = ACTIONS(2989), - [anon_sym_raise] = ACTIONS(2989), - [anon_sym_pass] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_else] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_async] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_except] = ACTIONS(2991), - [anon_sym_finally] = ACTIONS(2989), - [anon_sym_with] = ACTIONS(2989), - [anon_sym_def] = ACTIONS(2989), - [anon_sym_global] = ACTIONS(2989), - [anon_sym_nonlocal] = ACTIONS(2989), - [anon_sym_exec] = ACTIONS(2989), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_AT] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2987), - [anon_sym_lambda] = ACTIONS(2989), - [anon_sym_yield] = ACTIONS(2989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2987), - [anon_sym_None] = ACTIONS(2989), - [sym_integer] = ACTIONS(2989), - [sym_float] = ACTIONS(2987), - [anon_sym_await] = ACTIONS(2989), - [anon_sym_api] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2989), - [anon_sym_include] = ACTIONS(2989), - [anon_sym_DEF] = ACTIONS(2989), - [anon_sym_cdef] = ACTIONS(2989), - [anon_sym_cpdef] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_ctypedef] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_packed] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2989), - [sym_string_start] = ACTIONS(2987), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [921] = { - [sym_except_group_clause] = STATE(921), - [aux_sym_try_statement_repeat2] = STATE(921), - [ts_builtin_sym_end] = ACTIONS(2994), - [sym_identifier] = ACTIONS(2996), - [anon_sym_import] = ACTIONS(2996), - [anon_sym_cimport] = ACTIONS(2996), - [anon_sym_from] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_print] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_del] = ACTIONS(2996), - [anon_sym_raise] = ACTIONS(2996), - [anon_sym_pass] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_async] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_except_STAR] = ACTIONS(2998), - [anon_sym_finally] = ACTIONS(2996), - [anon_sym_with] = ACTIONS(2996), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_global] = ACTIONS(2996), - [anon_sym_nonlocal] = ACTIONS(2996), - [anon_sym_exec] = ACTIONS(2996), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_class] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2994), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_lambda] = ACTIONS(2996), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2994), - [anon_sym_None] = ACTIONS(2996), - [sym_integer] = ACTIONS(2996), - [sym_float] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2996), - [anon_sym_api] = ACTIONS(2996), - [sym_true] = ACTIONS(2996), - [sym_false] = ACTIONS(2996), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2996), - [anon_sym_include] = ACTIONS(2996), - [anon_sym_DEF] = ACTIONS(2996), - [anon_sym_cdef] = ACTIONS(2996), - [anon_sym_cpdef] = ACTIONS(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_ctypedef] = ACTIONS(2996), - [anon_sym_public] = ACTIONS(2996), - [anon_sym_packed] = ACTIONS(2996), - [anon_sym_inline] = ACTIONS(2996), - [anon_sym_readonly] = ACTIONS(2996), - [anon_sym_sizeof] = ACTIONS(2996), - [sym_string_start] = ACTIONS(2994), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [922] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5390), - [sym_parenthesized_list_splat] = STATE(5390), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4181), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_yield] = STATE(5390), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(2969), - [anon_sym_print] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_exec] = ACTIONS(1567), - [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(1569), - [anon_sym_api] = ACTIONS(1567), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [923] = { - [sym_elif_clause] = STATE(1071), - [sym_else_clause] = STATE(1416), - [aux_sym_if_statement_repeat1] = STATE(913), - [ts_builtin_sym_end] = ACTIONS(3003), - [sym_identifier] = ACTIONS(3005), - [anon_sym_import] = ACTIONS(3005), - [anon_sym_cimport] = ACTIONS(3005), - [anon_sym_from] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_print] = ACTIONS(3005), - [anon_sym_assert] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_del] = ACTIONS(3005), - [anon_sym_raise] = ACTIONS(3005), - [anon_sym_pass] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_elif] = ACTIONS(2955), - [anon_sym_else] = ACTIONS(2693), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_async] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_while] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3005), - [anon_sym_with] = ACTIONS(3005), - [anon_sym_def] = ACTIONS(3005), - [anon_sym_global] = ACTIONS(3005), - [anon_sym_nonlocal] = ACTIONS(3005), - [anon_sym_exec] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_class] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_AT] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_not] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3003), - [anon_sym_lambda] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3003), - [anon_sym_None] = ACTIONS(3005), - [sym_integer] = ACTIONS(3005), - [sym_float] = ACTIONS(3003), - [anon_sym_await] = ACTIONS(3005), - [anon_sym_api] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3005), - [anon_sym_include] = ACTIONS(3005), - [anon_sym_DEF] = ACTIONS(3005), - [anon_sym_cdef] = ACTIONS(3005), - [anon_sym_cpdef] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3005), - [anon_sym_ctypedef] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_packed] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_readonly] = ACTIONS(3005), - [anon_sym_sizeof] = ACTIONS(3005), - [sym_string_start] = ACTIONS(3003), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat] = STATE(4928), + [sym_parenthesized_list_splat] = STATE(4929), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym_expression] = STATE(3707), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_yield] = STATE(4864), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym__collection_elements] = STATE(5577), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_RPAREN] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [924] = { - [sym_named_expression] = STATE(3805), - [sym__named_expression_lhs] = STATE(5685), - [sym_list_splat] = STATE(5240), - [sym_parenthesized_list_splat] = STATE(5240), - [sym_list_splat_pattern] = STATE(2270), - [sym_as_pattern] = STATE(3805), - [sym_expression] = STATE(4176), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3805), - [sym_boolean_operator] = STATE(3805), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_comparison_operator] = STATE(3805), - [sym_lambda] = STATE(3805), - [sym_yield] = STATE(5240), - [sym_attribute] = STATE(2266), - [sym_subscript] = STATE(2266), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_conditional_expression] = STATE(3805), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_new_expression] = STATE(3805), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_print] = ACTIONS(2929), - [anon_sym_match] = ACTIONS(2929), - [anon_sym_async] = ACTIONS(2929), - [anon_sym_exec] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_not] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_lambda] = ACTIONS(3013), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2933), - [anon_sym_api] = ACTIONS(2929), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), + [sym_named_expression] = STATE(3906), + [sym__named_expression_lhs] = STATE(5700), + [sym_expression_list] = STATE(4480), + [sym_list_splat_pattern] = STATE(2421), + [sym_as_pattern] = STATE(3906), + [sym_expression] = STATE(3836), + [sym_primary_expression] = STATE(2117), + [sym_not_operator] = STATE(3906), + [sym_boolean_operator] = STATE(3906), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_comparison_operator] = STATE(3906), + [sym_lambda] = STATE(3906), + [sym_attribute] = STATE(2347), + [sym_subscript] = STATE(2347), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_conditional_expression] = STATE(3906), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_new_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(2955), + [anon_sym_from] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_print] = ACTIONS(2959), + [anon_sym_COLON] = ACTIONS(2961), + [anon_sym_match] = ACTIONS(2959), + [anon_sym_async] = ACTIONS(2959), + [anon_sym_exec] = ACTIONS(2959), + [anon_sym_EQ] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(2707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_type_conversion] = ACTIONS(2961), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(2963), + [anon_sym_api] = ACTIONS(2959), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3015), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), }, [925] = { - [sym_named_expression] = STATE(3805), - [sym__named_expression_lhs] = STATE(5685), - [sym_list_splat] = STATE(5240), - [sym_parenthesized_list_splat] = STATE(5240), - [sym_list_splat_pattern] = STATE(2270), - [sym_as_pattern] = STATE(3805), - [sym_expression] = STATE(4176), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3805), - [sym_boolean_operator] = STATE(3805), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_comparison_operator] = STATE(3805), - [sym_lambda] = STATE(3805), - [sym_yield] = STATE(5240), - [sym_attribute] = STATE(2266), - [sym_subscript] = STATE(2266), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_conditional_expression] = STATE(3805), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_new_expression] = STATE(3805), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_print] = ACTIONS(2929), - [anon_sym_match] = ACTIONS(2929), - [anon_sym_async] = ACTIONS(2929), - [anon_sym_exec] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_not] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_lambda] = ACTIONS(3013), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [926] = { + [sym_elif_clause] = STATE(1100), + [sym_else_clause] = STATE(1729), + [aux_sym_if_statement_repeat1] = STATE(992), + [ts_builtin_sym_end] = ACTIONS(2967), + [sym_identifier] = ACTIONS(2969), + [anon_sym_import] = ACTIONS(2969), + [anon_sym_cimport] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [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(2971), + [anon_sym_else] = ACTIONS(2789), + [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(2967), + [anon_sym_AT] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2967), + [anon_sym_lambda] = ACTIONS(2969), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2967), + [anon_sym_None] = ACTIONS(2969), + [sym_integer] = ACTIONS(2969), + [sym_float] = ACTIONS(2967), + [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(2967), + }, + [927] = { + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_expression_list] = STATE(5363), + [sym_pattern] = STATE(4711), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(2529), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(3992), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_pattern_list] = STATE(5403), + [sym_attribute] = STATE(2531), + [sym_subscript] = STATE(2531), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_print] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_exec] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(2983), + [anon_sym_api] = ACTIONS(2979), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), + }, + [928] = { + [sym_elif_clause] = STATE(1100), + [sym_else_clause] = STATE(1713), + [aux_sym_if_statement_repeat1] = STATE(944), + [ts_builtin_sym_end] = ACTIONS(2985), + [sym_identifier] = ACTIONS(2987), + [anon_sym_import] = ACTIONS(2987), + [anon_sym_cimport] = ACTIONS(2987), + [anon_sym_from] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_print] = ACTIONS(2987), + [anon_sym_assert] = ACTIONS(2987), + [anon_sym_return] = ACTIONS(2987), + [anon_sym_del] = ACTIONS(2987), + [anon_sym_raise] = ACTIONS(2987), + [anon_sym_pass] = ACTIONS(2987), + [anon_sym_break] = ACTIONS(2987), + [anon_sym_continue] = ACTIONS(2987), + [anon_sym_if] = ACTIONS(2987), + [anon_sym_elif] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_match] = ACTIONS(2987), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_for] = ACTIONS(2987), + [anon_sym_while] = ACTIONS(2987), + [anon_sym_try] = ACTIONS(2987), + [anon_sym_with] = ACTIONS(2987), + [anon_sym_def] = ACTIONS(2987), + [anon_sym_global] = ACTIONS(2987), + [anon_sym_nonlocal] = ACTIONS(2987), + [anon_sym_exec] = ACTIONS(2987), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_class] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_AT] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_lambda] = ACTIONS(2987), + [anon_sym_yield] = ACTIONS(2987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2985), + [anon_sym_None] = ACTIONS(2987), + [sym_integer] = ACTIONS(2987), + [sym_float] = ACTIONS(2985), + [anon_sym_await] = ACTIONS(2987), + [anon_sym_api] = ACTIONS(2987), + [sym_true] = ACTIONS(2987), + [sym_false] = ACTIONS(2987), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2987), + [anon_sym_include] = ACTIONS(2987), + [anon_sym_DEF] = ACTIONS(2987), + [anon_sym_cdef] = ACTIONS(2987), + [anon_sym_cpdef] = ACTIONS(2987), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_ctypedef] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_packed] = ACTIONS(2987), + [anon_sym_inline] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_sizeof] = ACTIONS(2987), + [sym_string_start] = ACTIONS(2985), + }, + [929] = { + [sym_named_expression] = STATE(3906), + [sym__named_expression_lhs] = STATE(5757), + [sym_list_splat] = STATE(5461), + [sym_parenthesized_list_splat] = STATE(5461), + [sym_list_splat_pattern] = STATE(2421), + [sym_as_pattern] = STATE(3906), + [sym_expression] = STATE(4284), + [sym_primary_expression] = STATE(2117), + [sym_not_operator] = STATE(3906), + [sym_boolean_operator] = STATE(3906), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_comparison_operator] = STATE(3906), + [sym_lambda] = STATE(3906), + [sym_yield] = STATE(5461), + [sym_attribute] = STATE(2347), + [sym_subscript] = STATE(2347), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_conditional_expression] = STATE(3906), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_new_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_print] = ACTIONS(2959), + [anon_sym_match] = ACTIONS(2959), + [anon_sym_async] = ACTIONS(2959), + [anon_sym_exec] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(2963), + [anon_sym_api] = ACTIONS(2959), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), + }, + [930] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat] = STATE(5458), + [sym_parenthesized_list_splat] = STATE(5458), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_yield] = STATE(5458), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2933), - [anon_sym_api] = ACTIONS(2929), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [931] = { + [sym_elif_clause] = STATE(1152), + [sym_else_clause] = STATE(1502), + [aux_sym_if_statement_repeat1] = STATE(932), + [sym_identifier] = ACTIONS(2987), + [anon_sym_import] = ACTIONS(2987), + [anon_sym_cimport] = ACTIONS(2987), + [anon_sym_from] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_print] = ACTIONS(2987), + [anon_sym_assert] = ACTIONS(2987), + [anon_sym_return] = ACTIONS(2987), + [anon_sym_del] = ACTIONS(2987), + [anon_sym_raise] = ACTIONS(2987), + [anon_sym_pass] = ACTIONS(2987), + [anon_sym_break] = ACTIONS(2987), + [anon_sym_continue] = ACTIONS(2987), + [anon_sym_if] = ACTIONS(2987), + [anon_sym_elif] = ACTIONS(3009), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_match] = ACTIONS(2987), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_for] = ACTIONS(2987), + [anon_sym_while] = ACTIONS(2987), + [anon_sym_try] = ACTIONS(2987), + [anon_sym_with] = ACTIONS(2987), + [anon_sym_def] = ACTIONS(2987), + [anon_sym_global] = ACTIONS(2987), + [anon_sym_nonlocal] = ACTIONS(2987), + [anon_sym_exec] = ACTIONS(2987), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_class] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_AT] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_lambda] = ACTIONS(2987), + [anon_sym_yield] = ACTIONS(2987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2985), + [anon_sym_None] = ACTIONS(2987), + [sym_integer] = ACTIONS(2987), + [sym_float] = ACTIONS(2985), + [anon_sym_await] = ACTIONS(2987), + [anon_sym_api] = ACTIONS(2987), + [sym_true] = ACTIONS(2987), + [sym_false] = ACTIONS(2987), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2987), + [anon_sym_include] = ACTIONS(2987), + [anon_sym_DEF] = ACTIONS(2987), + [anon_sym_cdef] = ACTIONS(2987), + [anon_sym_cpdef] = ACTIONS(2987), + [anon_sym_new] = ACTIONS(2987), + [anon_sym_ctypedef] = ACTIONS(2987), + [anon_sym_public] = ACTIONS(2987), + [anon_sym_packed] = ACTIONS(2987), + [anon_sym_inline] = ACTIONS(2987), + [anon_sym_readonly] = ACTIONS(2987), + [anon_sym_sizeof] = ACTIONS(2987), + [sym__dedent] = ACTIONS(2985), + [sym_string_start] = ACTIONS(2985), + }, + [932] = { + [sym_elif_clause] = STATE(1152), + [sym_else_clause] = STATE(1529), + [aux_sym_if_statement_repeat1] = STATE(976), + [sym_identifier] = ACTIONS(3011), + [anon_sym_import] = ACTIONS(3011), + [anon_sym_cimport] = ACTIONS(3011), + [anon_sym_from] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_print] = ACTIONS(3011), + [anon_sym_assert] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3011), + [anon_sym_del] = ACTIONS(3011), + [anon_sym_raise] = ACTIONS(3011), + [anon_sym_pass] = ACTIONS(3011), + [anon_sym_break] = ACTIONS(3011), + [anon_sym_continue] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_elif] = ACTIONS(3009), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_match] = ACTIONS(3011), + [anon_sym_async] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3011), + [anon_sym_while] = ACTIONS(3011), + [anon_sym_try] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3011), + [anon_sym_def] = ACTIONS(3011), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_nonlocal] = ACTIONS(3011), + [anon_sym_exec] = ACTIONS(3011), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_class] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_AT] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_not] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_lambda] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3013), + [anon_sym_None] = ACTIONS(3011), + [sym_integer] = ACTIONS(3011), + [sym_float] = ACTIONS(3013), + [anon_sym_await] = ACTIONS(3011), + [anon_sym_api] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3011), + [anon_sym_include] = ACTIONS(3011), + [anon_sym_DEF] = ACTIONS(3011), + [anon_sym_cdef] = ACTIONS(3011), + [anon_sym_cpdef] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3011), + [anon_sym_ctypedef] = ACTIONS(3011), + [anon_sym_public] = ACTIONS(3011), + [anon_sym_packed] = ACTIONS(3011), + [anon_sym_inline] = ACTIONS(3011), + [anon_sym_readonly] = ACTIONS(3011), + [anon_sym_sizeof] = ACTIONS(3011), + [sym__dedent] = ACTIONS(3013), + [sym_string_start] = ACTIONS(3013), + }, + [933] = { + [sym_elif_clause] = STATE(1152), + [sym_else_clause] = STATE(1531), + [aux_sym_if_statement_repeat1] = STATE(937), + [sym_identifier] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(3015), + [anon_sym_cimport] = ACTIONS(3015), + [anon_sym_from] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_print] = ACTIONS(3015), + [anon_sym_assert] = ACTIONS(3015), + [anon_sym_return] = ACTIONS(3015), + [anon_sym_del] = ACTIONS(3015), + [anon_sym_raise] = ACTIONS(3015), + [anon_sym_pass] = ACTIONS(3015), + [anon_sym_break] = ACTIONS(3015), + [anon_sym_continue] = ACTIONS(3015), + [anon_sym_if] = ACTIONS(3015), + [anon_sym_elif] = ACTIONS(3009), + [anon_sym_else] = ACTIONS(2731), + [anon_sym_match] = ACTIONS(3015), + [anon_sym_async] = ACTIONS(3015), + [anon_sym_for] = ACTIONS(3015), + [anon_sym_while] = ACTIONS(3015), + [anon_sym_try] = ACTIONS(3015), + [anon_sym_with] = ACTIONS(3015), + [anon_sym_def] = ACTIONS(3015), + [anon_sym_global] = ACTIONS(3015), + [anon_sym_nonlocal] = ACTIONS(3015), + [anon_sym_exec] = ACTIONS(3015), + [anon_sym_type] = ACTIONS(3015), + [anon_sym_class] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_not] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_lambda] = ACTIONS(3015), + [anon_sym_yield] = ACTIONS(3015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_None] = ACTIONS(3015), + [sym_integer] = ACTIONS(3015), + [sym_float] = ACTIONS(3017), + [anon_sym_await] = ACTIONS(3015), + [anon_sym_api] = ACTIONS(3015), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3015), + [anon_sym_include] = ACTIONS(3015), + [anon_sym_DEF] = ACTIONS(3015), + [anon_sym_cdef] = ACTIONS(3015), + [anon_sym_cpdef] = ACTIONS(3015), [anon_sym_new] = ACTIONS(3015), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), + [anon_sym_ctypedef] = ACTIONS(3015), + [anon_sym_public] = ACTIONS(3015), + [anon_sym_packed] = ACTIONS(3015), + [anon_sym_inline] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3015), + [anon_sym_sizeof] = ACTIONS(3015), + [sym__dedent] = ACTIONS(3017), + [sym_string_start] = ACTIONS(3017), }, - [926] = { - [sym_elif_clause] = STATE(1071), - [sym_else_clause] = STATE(1669), - [aux_sym_if_statement_repeat1] = STATE(971), - [ts_builtin_sym_end] = ACTIONS(3017), + [934] = { + [sym_except_clause] = STATE(934), + [aux_sym_try_statement_repeat1] = STATE(934), [sym_identifier] = ACTIONS(3019), [anon_sym_import] = ACTIONS(3019), [anon_sym_cimport] = ACTIONS(3019), [anon_sym_from] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3021), [anon_sym_print] = ACTIONS(3019), [anon_sym_assert] = ACTIONS(3019), [anon_sym_return] = ACTIONS(3019), @@ -111112,13 +112814,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(3019), [anon_sym_continue] = ACTIONS(3019), [anon_sym_if] = ACTIONS(3019), - [anon_sym_elif] = ACTIONS(2955), - [anon_sym_else] = ACTIONS(2693), + [anon_sym_else] = ACTIONS(3019), [anon_sym_match] = ACTIONS(3019), [anon_sym_async] = ACTIONS(3019), [anon_sym_for] = ACTIONS(3019), [anon_sym_while] = ACTIONS(3019), [anon_sym_try] = ACTIONS(3019), + [anon_sym_except] = ACTIONS(3023), + [anon_sym_finally] = ACTIONS(3019), [anon_sym_with] = ACTIONS(3019), [anon_sym_def] = ACTIONS(3019), [anon_sym_global] = ACTIONS(3019), @@ -111126,21 +112829,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3019), [anon_sym_type] = ACTIONS(3019), [anon_sym_class] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_AT] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), [anon_sym_not] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_LT] = ACTIONS(3021), [anon_sym_lambda] = ACTIONS(3019), [anon_sym_yield] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3021), [anon_sym_None] = ACTIONS(3019), [sym_integer] = ACTIONS(3019), - [sym_float] = ACTIONS(3017), + [sym_float] = ACTIONS(3021), [anon_sym_await] = ACTIONS(3019), [anon_sym_api] = ACTIONS(3019), [sym_true] = ACTIONS(3019), @@ -111159,846 +112862,1192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3019), [anon_sym_readonly] = ACTIONS(3019), [anon_sym_sizeof] = ACTIONS(3019), - [sym_string_start] = ACTIONS(3017), + [sym__dedent] = ACTIONS(3021), + [sym_string_start] = ACTIONS(3021), }, - [927] = { - [sym_pattern] = STATE(3218), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(2658), - [sym_primary_expression] = STATE(3221), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_attribute] = STATE(2663), - [sym_subscript] = STATE(2663), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_print] = ACTIONS(2977), - [anon_sym_COLON] = ACTIONS(2801), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_async] = ACTIONS(2977), - [anon_sym_exec] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2979), - [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(2801), - [anon_sym_DASH_EQ] = ACTIONS(2801), - [anon_sym_STAR_EQ] = ACTIONS(2801), - [anon_sym_SLASH_EQ] = ACTIONS(2801), - [anon_sym_AT_EQ] = ACTIONS(2801), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2801), - [anon_sym_PERCENT_EQ] = ACTIONS(2801), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2801), - [anon_sym_GT_GT_EQ] = ACTIONS(2801), - [anon_sym_LT_LT_EQ] = ACTIONS(2801), - [anon_sym_AMP_EQ] = ACTIONS(2801), - [anon_sym_CARET_EQ] = ACTIONS(2801), - [anon_sym_PIPE_EQ] = ACTIONS(2801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_None] = ACTIONS(1235), - [sym_integer] = ACTIONS(1237), - [sym_float] = ACTIONS(1239), - [anon_sym_await] = ACTIONS(2981), - [anon_sym_api] = ACTIONS(2977), - [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), + [935] = { + [sym_named_expression] = STATE(3906), + [sym__named_expression_lhs] = STATE(5757), + [sym_list_splat] = STATE(5461), + [sym_parenthesized_list_splat] = STATE(5461), + [sym_list_splat_pattern] = STATE(2421), + [sym_as_pattern] = STATE(3906), + [sym_expression] = STATE(4284), + [sym_primary_expression] = STATE(2117), + [sym_not_operator] = STATE(3906), + [sym_boolean_operator] = STATE(3906), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_comparison_operator] = STATE(3906), + [sym_lambda] = STATE(3906), + [sym_yield] = STATE(5461), + [sym_attribute] = STATE(2347), + [sym_subscript] = STATE(2347), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_conditional_expression] = STATE(3906), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_new_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_print] = ACTIONS(2959), + [anon_sym_match] = ACTIONS(2959), + [anon_sym_async] = ACTIONS(2959), + [anon_sym_exec] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(3007), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(2963), + [anon_sym_api] = ACTIONS(2959), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), }, - [928] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_expression_list] = STATE(5444), - [sym_pattern] = STATE(4548), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(2590), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4102), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_pattern_list] = STATE(5172), - [sym_attribute] = STATE(2591), - [sym_subscript] = STATE(2591), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_print] = ACTIONS(3027), - [anon_sym_match] = ACTIONS(3027), - [anon_sym_async] = ACTIONS(3027), - [anon_sym_exec] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [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(2741), - [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(3031), - [anon_sym_api] = ACTIONS(3027), - [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), + [936] = { + [sym_except_group_clause] = STATE(936), + [aux_sym_try_statement_repeat2] = STATE(936), + [sym_identifier] = ACTIONS(3026), + [anon_sym_import] = ACTIONS(3026), + [anon_sym_cimport] = ACTIONS(3026), + [anon_sym_from] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3028), + [anon_sym_print] = ACTIONS(3026), + [anon_sym_assert] = ACTIONS(3026), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_del] = ACTIONS(3026), + [anon_sym_raise] = ACTIONS(3026), + [anon_sym_pass] = ACTIONS(3026), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_async] = ACTIONS(3026), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_while] = ACTIONS(3026), + [anon_sym_try] = ACTIONS(3026), + [anon_sym_except_STAR] = ACTIONS(3030), + [anon_sym_finally] = ACTIONS(3026), + [anon_sym_with] = ACTIONS(3026), + [anon_sym_def] = ACTIONS(3026), + [anon_sym_global] = ACTIONS(3026), + [anon_sym_nonlocal] = ACTIONS(3026), + [anon_sym_exec] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_class] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_AT] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_lambda] = ACTIONS(3026), + [anon_sym_yield] = ACTIONS(3026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3028), + [anon_sym_None] = ACTIONS(3026), + [sym_integer] = ACTIONS(3026), + [sym_float] = ACTIONS(3028), + [anon_sym_await] = ACTIONS(3026), + [anon_sym_api] = ACTIONS(3026), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3026), + [anon_sym_include] = ACTIONS(3026), + [anon_sym_DEF] = ACTIONS(3026), + [anon_sym_cdef] = ACTIONS(3026), + [anon_sym_cpdef] = ACTIONS(3026), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_ctypedef] = ACTIONS(3026), + [anon_sym_public] = ACTIONS(3026), + [anon_sym_packed] = ACTIONS(3026), + [anon_sym_inline] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3026), + [sym__dedent] = ACTIONS(3028), + [sym_string_start] = ACTIONS(3028), }, - [929] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat] = STATE(5360), - [sym_parenthesized_list_splat] = STATE(5360), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4251), + [937] = { + [sym_elif_clause] = STATE(1152), + [sym_else_clause] = STATE(1560), + [aux_sym_if_statement_repeat1] = STATE(976), + [sym_identifier] = ACTIONS(2969), + [anon_sym_import] = ACTIONS(2969), + [anon_sym_cimport] = ACTIONS(2969), + [anon_sym_from] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_STAR] = ACTIONS(2967), + [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(3009), + [anon_sym_else] = ACTIONS(2731), + [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(2967), + [anon_sym_AT] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_not] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2967), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2967), + [anon_sym_lambda] = ACTIONS(2969), + [anon_sym_yield] = ACTIONS(2969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2967), + [anon_sym_None] = ACTIONS(2969), + [sym_integer] = ACTIONS(2969), + [sym_float] = ACTIONS(2967), + [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(2967), + [sym_string_start] = ACTIONS(2967), + }, + [938] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5406), + [sym_dictionary_splat] = STATE(5406), + [sym_parenthesized_list_splat] = STATE(5416), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4220), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_keyword_argument] = STATE(5406), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_print] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_STAR_STAR] = ACTIONS(1412), + [anon_sym_exec] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_api] = ACTIONS(1410), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), + }, + [939] = { + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat_pattern] = STATE(2546), + [sym_as_pattern] = STATE(2536), + [sym__expression_within_for_in_clause] = STATE(4366), + [sym_expression] = STATE(4015), [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_yield] = STATE(5360), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_print] = ACTIONS(2641), - [anon_sym_match] = ACTIONS(2641), - [anon_sym_async] = ACTIONS(2641), - [anon_sym_exec] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_lambda_within_for_in_clause] = STATE(4366), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(3039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, - [930] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym__expression_within_for_in_clause] = STATE(4392), - [sym_expression] = STATE(3887), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_lambda_within_for_in_clause] = STATE(4392), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [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(2985), - [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), + [940] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym__expression_within_for_in_clause] = STATE(4493), + [sym_expression] = STATE(4018), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_lambda_within_for_in_clause] = STATE(4493), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(3043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, - [931] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_expression_list] = STATE(5417), - [sym_pattern] = STATE(4647), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(2590), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4028), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_pattern_list] = STATE(5338), - [sym_attribute] = STATE(2591), - [sym_subscript] = STATE(2591), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_print] = ACTIONS(3027), - [anon_sym_match] = ACTIONS(3027), - [anon_sym_async] = ACTIONS(3027), - [anon_sym_exec] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [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(2741), - [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(3031), - [anon_sym_api] = ACTIONS(3027), - [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), + [941] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat] = STATE(5458), + [sym_parenthesized_list_splat] = STATE(5458), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_yield] = STATE(5458), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, - [932] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat] = STATE(5360), - [sym_parenthesized_list_splat] = STATE(5360), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4251), + [942] = { + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_expression_list] = STATE(5337), + [sym_pattern] = STATE(4635), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(2529), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4008), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_pattern_list] = STATE(5464), + [sym_attribute] = STATE(2531), + [sym_subscript] = STATE(2531), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_print] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_exec] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(2983), + [anon_sym_api] = ACTIONS(2979), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), + }, + [943] = { + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat_pattern] = STATE(2546), + [sym_as_pattern] = STATE(2536), + [sym__expression_within_for_in_clause] = STATE(4366), + [sym_expression] = STATE(4015), [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_yield] = STATE(5360), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_print] = ACTIONS(2641), - [anon_sym_match] = ACTIONS(2641), - [anon_sym_async] = ACTIONS(2641), - [anon_sym_exec] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_lambda_within_for_in_clause] = STATE(4366), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(3047), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(3039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, - [933] = { - [sym_elif_clause] = STATE(1111), - [sym_else_clause] = STATE(1528), - [aux_sym_if_statement_repeat1] = STATE(934), - [sym_identifier] = ACTIONS(3005), - [anon_sym_import] = ACTIONS(3005), - [anon_sym_cimport] = ACTIONS(3005), - [anon_sym_from] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_print] = ACTIONS(3005), - [anon_sym_assert] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_del] = ACTIONS(3005), - [anon_sym_raise] = ACTIONS(3005), - [anon_sym_pass] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_elif] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_async] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_while] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3005), - [anon_sym_with] = ACTIONS(3005), - [anon_sym_def] = ACTIONS(3005), - [anon_sym_global] = ACTIONS(3005), - [anon_sym_nonlocal] = ACTIONS(3005), - [anon_sym_exec] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_class] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_AT] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3003), - [anon_sym_not] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3003), - [anon_sym_lambda] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3003), - [anon_sym_None] = ACTIONS(3005), - [sym_integer] = ACTIONS(3005), - [sym_float] = ACTIONS(3003), - [anon_sym_await] = ACTIONS(3005), - [anon_sym_api] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3005), - [anon_sym_include] = ACTIONS(3005), - [anon_sym_DEF] = ACTIONS(3005), - [anon_sym_cdef] = ACTIONS(3005), - [anon_sym_cpdef] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3005), - [anon_sym_ctypedef] = ACTIONS(3005), - [anon_sym_public] = ACTIONS(3005), - [anon_sym_packed] = ACTIONS(3005), - [anon_sym_inline] = ACTIONS(3005), - [anon_sym_readonly] = ACTIONS(3005), - [anon_sym_sizeof] = ACTIONS(3005), - [sym__dedent] = ACTIONS(3003), - [sym_string_start] = ACTIONS(3003), + [944] = { + [sym_elif_clause] = STATE(1100), + [sym_else_clause] = STATE(1573), + [aux_sym_if_statement_repeat1] = STATE(992), + [ts_builtin_sym_end] = ACTIONS(3013), + [sym_identifier] = ACTIONS(3011), + [anon_sym_import] = ACTIONS(3011), + [anon_sym_cimport] = ACTIONS(3011), + [anon_sym_from] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_print] = ACTIONS(3011), + [anon_sym_assert] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3011), + [anon_sym_del] = ACTIONS(3011), + [anon_sym_raise] = ACTIONS(3011), + [anon_sym_pass] = ACTIONS(3011), + [anon_sym_break] = ACTIONS(3011), + [anon_sym_continue] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_elif] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_match] = ACTIONS(3011), + [anon_sym_async] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3011), + [anon_sym_while] = ACTIONS(3011), + [anon_sym_try] = ACTIONS(3011), + [anon_sym_with] = ACTIONS(3011), + [anon_sym_def] = ACTIONS(3011), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_nonlocal] = ACTIONS(3011), + [anon_sym_exec] = ACTIONS(3011), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_class] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_AT] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_not] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_lambda] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3013), + [anon_sym_None] = ACTIONS(3011), + [sym_integer] = ACTIONS(3011), + [sym_float] = ACTIONS(3013), + [anon_sym_await] = ACTIONS(3011), + [anon_sym_api] = ACTIONS(3011), + [sym_true] = ACTIONS(3011), + [sym_false] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3011), + [anon_sym_include] = ACTIONS(3011), + [anon_sym_DEF] = ACTIONS(3011), + [anon_sym_cdef] = ACTIONS(3011), + [anon_sym_cpdef] = ACTIONS(3011), + [anon_sym_new] = ACTIONS(3011), + [anon_sym_ctypedef] = ACTIONS(3011), + [anon_sym_public] = ACTIONS(3011), + [anon_sym_packed] = ACTIONS(3011), + [anon_sym_inline] = ACTIONS(3011), + [anon_sym_readonly] = ACTIONS(3011), + [anon_sym_sizeof] = ACTIONS(3011), + [sym_string_start] = ACTIONS(3013), }, - [934] = { - [sym_elif_clause] = STATE(1111), - [sym_else_clause] = STATE(1557), - [aux_sym_if_statement_repeat1] = STATE(970), - [sym_identifier] = ACTIONS(2953), - [anon_sym_import] = ACTIONS(2953), - [anon_sym_cimport] = ACTIONS(2953), - [anon_sym_from] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_print] = ACTIONS(2953), - [anon_sym_assert] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_del] = ACTIONS(2953), - [anon_sym_raise] = ACTIONS(2953), - [anon_sym_pass] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_elif] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_async] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [anon_sym_with] = ACTIONS(2953), - [anon_sym_def] = ACTIONS(2953), - [anon_sym_global] = ACTIONS(2953), - [anon_sym_nonlocal] = ACTIONS(2953), - [anon_sym_exec] = ACTIONS(2953), - [anon_sym_type] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_not] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_lambda] = ACTIONS(2953), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2951), - [anon_sym_None] = ACTIONS(2953), - [sym_integer] = ACTIONS(2953), - [sym_float] = ACTIONS(2951), - [anon_sym_await] = ACTIONS(2953), - [anon_sym_api] = ACTIONS(2953), - [sym_true] = ACTIONS(2953), - [sym_false] = ACTIONS(2953), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2953), - [anon_sym_include] = ACTIONS(2953), - [anon_sym_DEF] = ACTIONS(2953), - [anon_sym_cdef] = ACTIONS(2953), - [anon_sym_cpdef] = ACTIONS(2953), - [anon_sym_new] = ACTIONS(2953), - [anon_sym_ctypedef] = ACTIONS(2953), - [anon_sym_public] = ACTIONS(2953), - [anon_sym_packed] = ACTIONS(2953), - [anon_sym_inline] = ACTIONS(2953), - [anon_sym_readonly] = ACTIONS(2953), - [anon_sym_sizeof] = ACTIONS(2953), - [sym__dedent] = ACTIONS(2951), - [sym_string_start] = ACTIONS(2951), + [945] = { + [sym_elif_clause] = STATE(1100), + [sym_else_clause] = STATE(1575), + [aux_sym_if_statement_repeat1] = STATE(926), + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_identifier] = ACTIONS(3015), + [anon_sym_import] = ACTIONS(3015), + [anon_sym_cimport] = ACTIONS(3015), + [anon_sym_from] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_print] = ACTIONS(3015), + [anon_sym_assert] = ACTIONS(3015), + [anon_sym_return] = ACTIONS(3015), + [anon_sym_del] = ACTIONS(3015), + [anon_sym_raise] = ACTIONS(3015), + [anon_sym_pass] = ACTIONS(3015), + [anon_sym_break] = ACTIONS(3015), + [anon_sym_continue] = ACTIONS(3015), + [anon_sym_if] = ACTIONS(3015), + [anon_sym_elif] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_match] = ACTIONS(3015), + [anon_sym_async] = ACTIONS(3015), + [anon_sym_for] = ACTIONS(3015), + [anon_sym_while] = ACTIONS(3015), + [anon_sym_try] = ACTIONS(3015), + [anon_sym_with] = ACTIONS(3015), + [anon_sym_def] = ACTIONS(3015), + [anon_sym_global] = ACTIONS(3015), + [anon_sym_nonlocal] = ACTIONS(3015), + [anon_sym_exec] = ACTIONS(3015), + [anon_sym_type] = ACTIONS(3015), + [anon_sym_class] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_not] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_lambda] = ACTIONS(3015), + [anon_sym_yield] = ACTIONS(3015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_None] = ACTIONS(3015), + [sym_integer] = ACTIONS(3015), + [sym_float] = ACTIONS(3017), + [anon_sym_await] = ACTIONS(3015), + [anon_sym_api] = ACTIONS(3015), + [sym_true] = ACTIONS(3015), + [sym_false] = ACTIONS(3015), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3015), + [anon_sym_include] = ACTIONS(3015), + [anon_sym_DEF] = ACTIONS(3015), + [anon_sym_cdef] = ACTIONS(3015), + [anon_sym_cpdef] = ACTIONS(3015), + [anon_sym_new] = ACTIONS(3015), + [anon_sym_ctypedef] = ACTIONS(3015), + [anon_sym_public] = ACTIONS(3015), + [anon_sym_packed] = ACTIONS(3015), + [anon_sym_inline] = ACTIONS(3015), + [anon_sym_readonly] = ACTIONS(3015), + [anon_sym_sizeof] = ACTIONS(3015), + [sym_string_start] = ACTIONS(3017), }, - [935] = { - [sym_elif_clause] = STATE(1111), - [sym_else_clause] = STATE(1558), - [aux_sym_if_statement_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(2959), - [anon_sym_import] = ACTIONS(2959), - [anon_sym_cimport] = ACTIONS(2959), - [anon_sym_from] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_del] = ACTIONS(2959), - [anon_sym_raise] = ACTIONS(2959), - [anon_sym_pass] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_elif] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_def] = ACTIONS(2959), - [anon_sym_global] = ACTIONS(2959), - [anon_sym_nonlocal] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_class] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_AT] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_not] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_lambda] = ACTIONS(2959), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2957), - [anon_sym_None] = ACTIONS(2959), - [sym_integer] = ACTIONS(2959), - [sym_float] = ACTIONS(2957), - [anon_sym_await] = ACTIONS(2959), - [anon_sym_api] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2959), - [anon_sym_include] = ACTIONS(2959), - [anon_sym_DEF] = ACTIONS(2959), - [anon_sym_cdef] = ACTIONS(2959), - [anon_sym_cpdef] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_ctypedef] = ACTIONS(2959), - [anon_sym_public] = ACTIONS(2959), - [anon_sym_packed] = ACTIONS(2959), - [anon_sym_inline] = ACTIONS(2959), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_sizeof] = ACTIONS(2959), - [sym__dedent] = ACTIONS(2957), - [sym_string_start] = ACTIONS(2957), + [946] = { + [sym_pattern] = STATE(3278), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(2713), + [sym_primary_expression] = STATE(3287), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2714), + [sym_subscript] = STATE(2714), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_print] = ACTIONS(3055), + [anon_sym_COLON] = ACTIONS(2821), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_async] = ACTIONS(3055), + [anon_sym_exec] = ACTIONS(3055), + [anon_sym_EQ] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_PLUS_EQ] = ACTIONS(2821), + [anon_sym_DASH_EQ] = ACTIONS(2821), + [anon_sym_STAR_EQ] = ACTIONS(2821), + [anon_sym_SLASH_EQ] = ACTIONS(2821), + [anon_sym_AT_EQ] = ACTIONS(2821), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2821), + [anon_sym_PERCENT_EQ] = ACTIONS(2821), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2821), + [anon_sym_GT_GT_EQ] = ACTIONS(2821), + [anon_sym_LT_LT_EQ] = ACTIONS(2821), + [anon_sym_AMP_EQ] = ACTIONS(2821), + [anon_sym_CARET_EQ] = ACTIONS(2821), + [anon_sym_PIPE_EQ] = ACTIONS(2821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(3059), + [anon_sym_api] = ACTIONS(3055), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, - [936] = { - [sym_named_expression] = STATE(2388), - [sym__named_expression_lhs] = STATE(5531), - [sym_list_splat_pattern] = STATE(2288), - [sym_as_pattern] = STATE(2388), - [sym__expression_within_for_in_clause] = STATE(4301), - [sym_expression] = STATE(3965), - [sym_primary_expression] = STATE(2047), - [sym_not_operator] = STATE(2388), - [sym_boolean_operator] = STATE(2388), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_comparison_operator] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_lambda_within_for_in_clause] = STATE(4301), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym_conditional_expression] = STATE(2388), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_new_expression] = STATE(2388), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(2385), + [947] = { + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat_pattern] = STATE(2546), + [sym_as_pattern] = STATE(2536), + [sym__expression_within_for_in_clause] = STATE(4366), + [sym_expression] = STATE(4015), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_lambda_within_for_in_clause] = STATE(4366), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), + [anon_sym_lambda] = ACTIONS(3039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, - [937] = { - [sym_except_clause] = STATE(937), - [aux_sym_try_statement_repeat1] = STATE(937), - [sym_identifier] = ACTIONS(2989), - [anon_sym_import] = ACTIONS(2989), - [anon_sym_cimport] = ACTIONS(2989), - [anon_sym_from] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_print] = ACTIONS(2989), - [anon_sym_assert] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_del] = ACTIONS(2989), - [anon_sym_raise] = ACTIONS(2989), - [anon_sym_pass] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_else] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_async] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [anon_sym_except] = ACTIONS(3045), - [anon_sym_finally] = ACTIONS(2989), - [anon_sym_with] = ACTIONS(2989), - [anon_sym_def] = ACTIONS(2989), - [anon_sym_global] = ACTIONS(2989), - [anon_sym_nonlocal] = ACTIONS(2989), - [anon_sym_exec] = ACTIONS(2989), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_class] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_AT] = ACTIONS(2987), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2987), - [anon_sym_not] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2987), - [anon_sym_lambda] = ACTIONS(2989), - [anon_sym_yield] = ACTIONS(2989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2987), - [anon_sym_None] = ACTIONS(2989), - [sym_integer] = ACTIONS(2989), - [sym_float] = ACTIONS(2987), - [anon_sym_await] = ACTIONS(2989), - [anon_sym_api] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2989), - [anon_sym_include] = ACTIONS(2989), - [anon_sym_DEF] = ACTIONS(2989), - [anon_sym_cdef] = ACTIONS(2989), - [anon_sym_cpdef] = ACTIONS(2989), - [anon_sym_new] = ACTIONS(2989), - [anon_sym_ctypedef] = ACTIONS(2989), - [anon_sym_public] = ACTIONS(2989), - [anon_sym_packed] = ACTIONS(2989), - [anon_sym_inline] = ACTIONS(2989), - [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_sizeof] = ACTIONS(2989), - [sym__dedent] = ACTIONS(2987), - [sym_string_start] = ACTIONS(2987), + [948] = { + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5413), + [sym_parenthesized_list_splat] = STATE(5413), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4338), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_yield] = STATE(5413), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_print] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_api] = ACTIONS(1599), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, - [938] = { - [sym_except_group_clause] = STATE(938), - [aux_sym_try_statement_repeat2] = STATE(938), - [sym_identifier] = ACTIONS(2996), - [anon_sym_import] = ACTIONS(2996), - [anon_sym_cimport] = ACTIONS(2996), - [anon_sym_from] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_print] = ACTIONS(2996), - [anon_sym_assert] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_del] = ACTIONS(2996), - [anon_sym_raise] = ACTIONS(2996), - [anon_sym_pass] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_else] = ACTIONS(2996), - [anon_sym_match] = ACTIONS(2996), - [anon_sym_async] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_except_STAR] = ACTIONS(3048), - [anon_sym_finally] = ACTIONS(2996), - [anon_sym_with] = ACTIONS(2996), - [anon_sym_def] = ACTIONS(2996), - [anon_sym_global] = ACTIONS(2996), - [anon_sym_nonlocal] = ACTIONS(2996), - [anon_sym_exec] = ACTIONS(2996), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_class] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2994), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_not] = ACTIONS(2996), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_lambda] = ACTIONS(2996), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2994), - [anon_sym_None] = ACTIONS(2996), - [sym_integer] = ACTIONS(2996), - [sym_float] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2996), - [anon_sym_api] = ACTIONS(2996), - [sym_true] = ACTIONS(2996), - [sym_false] = ACTIONS(2996), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2996), - [anon_sym_include] = ACTIONS(2996), - [anon_sym_DEF] = ACTIONS(2996), - [anon_sym_cdef] = ACTIONS(2996), - [anon_sym_cpdef] = ACTIONS(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_ctypedef] = ACTIONS(2996), - [anon_sym_public] = ACTIONS(2996), - [anon_sym_packed] = ACTIONS(2996), - [anon_sym_inline] = ACTIONS(2996), - [anon_sym_readonly] = ACTIONS(2996), - [anon_sym_sizeof] = ACTIONS(2996), - [sym__dedent] = ACTIONS(2994), - [sym_string_start] = ACTIONS(2994), + [949] = { + [sym_pattern] = STATE(3278), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(2713), + [sym_primary_expression] = STATE(3287), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_attribute] = STATE(2714), + [sym_subscript] = STATE(2714), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_print] = ACTIONS(3055), + [anon_sym_COLON] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_async] = ACTIONS(3055), + [anon_sym_exec] = ACTIONS(3055), + [anon_sym_EQ] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_PLUS_EQ] = ACTIONS(2773), + [anon_sym_DASH_EQ] = ACTIONS(2773), + [anon_sym_STAR_EQ] = ACTIONS(2773), + [anon_sym_SLASH_EQ] = ACTIONS(2773), + [anon_sym_AT_EQ] = ACTIONS(2773), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2773), + [anon_sym_PERCENT_EQ] = ACTIONS(2773), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2773), + [anon_sym_GT_GT_EQ] = ACTIONS(2773), + [anon_sym_LT_LT_EQ] = ACTIONS(2773), + [anon_sym_AMP_EQ] = ACTIONS(2773), + [anon_sym_CARET_EQ] = ACTIONS(2773), + [anon_sym_PIPE_EQ] = ACTIONS(2773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(3059), + [anon_sym_api] = ACTIONS(3055), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, - [939] = { - [sym_elif_clause] = STATE(1111), - [sym_else_clause] = STATE(1642), - [aux_sym_if_statement_repeat1] = STATE(970), + [950] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym__expression_within_for_in_clause] = STATE(4493), + [sym_expression] = STATE(4018), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_lambda_within_for_in_clause] = STATE(4493), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(3071), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3071), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(3043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [951] = { + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym__expression_within_for_in_clause] = STATE(4493), + [sym_expression] = STATE(4018), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_lambda_within_for_in_clause] = STATE(4493), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(3043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), + }, + [952] = { + [sym_except_clause] = STATE(952), + [aux_sym_try_statement_repeat1] = STATE(952), + [ts_builtin_sym_end] = ACTIONS(3021), [sym_identifier] = ACTIONS(3019), [anon_sym_import] = ACTIONS(3019), [anon_sym_cimport] = ACTIONS(3019), [anon_sym_from] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3021), [anon_sym_print] = ACTIONS(3019), [anon_sym_assert] = ACTIONS(3019), [anon_sym_return] = ACTIONS(3019), @@ -112008,13 +114057,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(3019), [anon_sym_continue] = ACTIONS(3019), [anon_sym_if] = ACTIONS(3019), - [anon_sym_elif] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(2747), + [anon_sym_else] = ACTIONS(3019), [anon_sym_match] = ACTIONS(3019), [anon_sym_async] = ACTIONS(3019), [anon_sym_for] = ACTIONS(3019), [anon_sym_while] = ACTIONS(3019), [anon_sym_try] = ACTIONS(3019), + [anon_sym_except] = ACTIONS(3073), + [anon_sym_finally] = ACTIONS(3019), [anon_sym_with] = ACTIONS(3019), [anon_sym_def] = ACTIONS(3019), [anon_sym_global] = ACTIONS(3019), @@ -112022,21 +114072,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3019), [anon_sym_type] = ACTIONS(3019), [anon_sym_class] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_AT] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), [anon_sym_not] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3021), + [anon_sym_LT] = ACTIONS(3021), [anon_sym_lambda] = ACTIONS(3019), [anon_sym_yield] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3021), [anon_sym_None] = ACTIONS(3019), [sym_integer] = ACTIONS(3019), - [sym_float] = ACTIONS(3017), + [sym_float] = ACTIONS(3021), [anon_sym_await] = ACTIONS(3019), [anon_sym_api] = ACTIONS(3019), [sym_true] = ACTIONS(3019), @@ -112055,4589 +114105,3790 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3019), [anon_sym_readonly] = ACTIONS(3019), [anon_sym_sizeof] = ACTIONS(3019), - [sym__dedent] = ACTIONS(3017), - [sym_string_start] = ACTIONS(3017), - }, - [940] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5317), - [sym_dictionary_splat] = STATE(5317), - [sym_parenthesized_list_splat] = STATE(5321), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4280), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_attribute] = STATE(2651), - [sym_subscript] = STATE(2651), - [sym_ellipsis] = STATE(2651), - [sym_call] = STATE(2651), - [sym_keyword_argument] = STATE(5317), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2783), - [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), - }, - [941] = { - [sym_named_expression] = STATE(2527), - [sym__named_expression_lhs] = STATE(5590), - [sym_list_splat_pattern] = STATE(2479), - [sym_as_pattern] = STATE(2527), - [sym__expression_within_for_in_clause] = STATE(4467), - [sym_expression] = STATE(3940), - [sym_primary_expression] = STATE(2072), - [sym_not_operator] = STATE(2527), - [sym_boolean_operator] = STATE(2527), - [sym_binary_operator] = STATE(2526), - [sym_unary_operator] = STATE(2526), - [sym_comparison_operator] = STATE(2527), - [sym_lambda] = STATE(2527), - [sym_lambda_within_for_in_clause] = STATE(4467), - [sym_attribute] = STATE(2526), - [sym_subscript] = STATE(2526), - [sym_ellipsis] = STATE(2526), - [sym_call] = STATE(2526), - [sym_list] = STATE(2526), - [sym_set] = STATE(2526), - [sym_tuple] = STATE(2526), - [sym_dictionary] = STATE(2526), - [sym_list_comprehension] = STATE(2526), - [sym_dictionary_comprehension] = STATE(2526), - [sym_set_comprehension] = STATE(2526), - [sym_generator_expression] = STATE(2526), - [sym_parenthesized_expression] = STATE(2526), - [sym_conditional_expression] = STATE(2527), - [sym_concatenated_string] = STATE(2526), - [sym_string] = STATE(2166), - [sym_none] = STATE(2526), - [sym_await] = STATE(2526), - [sym_new_expression] = STATE(2527), - [sym_sizeof_expression] = STATE(2526), - [sym_cast_expression] = STATE(2526), - [sym_identifier] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_print] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_exec] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(3043), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_lambda] = ACTIONS(2949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_None] = ACTIONS(2467), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_api] = ACTIONS(2813), - [sym_true] = ACTIONS(2449), - [sym_false] = ACTIONS(2449), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2543), - [anon_sym_sizeof] = ACTIONS(2473), - [sym_string_start] = ACTIONS(2475), - }, - [942] = { - [sym_named_expression] = STATE(2388), - [sym__named_expression_lhs] = STATE(5531), - [sym_list_splat_pattern] = STATE(2288), - [sym_as_pattern] = STATE(2388), - [sym__expression_within_for_in_clause] = STATE(4301), - [sym_expression] = STATE(3965), - [sym_primary_expression] = STATE(2047), - [sym_not_operator] = STATE(2388), - [sym_boolean_operator] = STATE(2388), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_comparison_operator] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_lambda_within_for_in_clause] = STATE(4301), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym_conditional_expression] = STATE(2388), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_new_expression] = STATE(2388), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), - }, - [943] = { - [sym_named_expression] = STATE(2388), - [sym__named_expression_lhs] = STATE(5531), - [sym_list_splat_pattern] = STATE(2288), - [sym_as_pattern] = STATE(2388), - [sym__expression_within_for_in_clause] = STATE(4301), - [sym_expression] = STATE(3965), - [sym_primary_expression] = STATE(2047), - [sym_not_operator] = STATE(2388), - [sym_boolean_operator] = STATE(2388), - [sym_binary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_comparison_operator] = STATE(2388), - [sym_lambda] = STATE(2388), - [sym_lambda_within_for_in_clause] = STATE(4301), - [sym_attribute] = STATE(2386), - [sym_subscript] = STATE(2386), - [sym_ellipsis] = STATE(2386), - [sym_call] = STATE(2386), - [sym_list] = STATE(2386), - [sym_set] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_dictionary] = STATE(2386), - [sym_list_comprehension] = STATE(2386), - [sym_dictionary_comprehension] = STATE(2386), - [sym_set_comprehension] = STATE(2386), - [sym_generator_expression] = STATE(2386), - [sym_parenthesized_expression] = STATE(2386), - [sym_conditional_expression] = STATE(2388), - [sym_concatenated_string] = STATE(2386), - [sym_string] = STATE(2073), - [sym_none] = STATE(2386), - [sym_await] = STATE(2386), - [sym_new_expression] = STATE(2388), - [sym_sizeof_expression] = STATE(2386), - [sym_cast_expression] = STATE(2386), - [sym_identifier] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2393), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2401), - }, - [944] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_expression_list] = STATE(5561), - [sym_pattern] = STATE(4626), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(2590), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4034), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_pattern_list] = STATE(5381), - [sym_attribute] = STATE(2591), - [sym_subscript] = STATE(2591), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_print] = ACTIONS(3027), - [anon_sym_match] = ACTIONS(3027), - [anon_sym_async] = ACTIONS(3027), - [anon_sym_exec] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [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(2741), - [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(3031), - [anon_sym_api] = ACTIONS(3027), - [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), - }, - [945] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_expression_list] = STATE(5599), - [sym_pattern] = STATE(4632), - [sym_tuple_pattern] = STATE(3209), - [sym_list_pattern] = STATE(3209), - [sym_list_splat_pattern] = STATE(2590), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4042), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_pattern_list] = STATE(5387), - [sym_attribute] = STATE(2591), - [sym_subscript] = STATE(2591), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [sym_identifier] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_print] = ACTIONS(3027), - [anon_sym_match] = ACTIONS(3027), - [anon_sym_async] = ACTIONS(3027), - [anon_sym_exec] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [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(2741), - [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(3031), - [anon_sym_api] = ACTIONS(3027), - [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), - }, - [946] = { - [sym_named_expression] = STATE(2456), - [sym__named_expression_lhs] = STATE(5743), - [sym_list_splat_pattern] = STATE(2403), - [sym_as_pattern] = STATE(2456), - [sym__expression_within_for_in_clause] = STATE(4392), - [sym_expression] = STATE(3887), - [sym_primary_expression] = STATE(2066), - [sym_not_operator] = STATE(2456), - [sym_boolean_operator] = STATE(2456), - [sym_binary_operator] = STATE(2455), - [sym_unary_operator] = STATE(2455), - [sym_comparison_operator] = STATE(2456), - [sym_lambda] = STATE(2456), - [sym_lambda_within_for_in_clause] = STATE(4392), - [sym_attribute] = STATE(2455), - [sym_subscript] = STATE(2455), - [sym_ellipsis] = STATE(2455), - [sym_call] = STATE(2455), - [sym_list] = STATE(2455), - [sym_set] = STATE(2455), - [sym_tuple] = STATE(2455), - [sym_dictionary] = STATE(2455), - [sym_list_comprehension] = STATE(2455), - [sym_dictionary_comprehension] = STATE(2455), - [sym_set_comprehension] = STATE(2455), - [sym_generator_expression] = STATE(2455), - [sym_parenthesized_expression] = STATE(2455), - [sym_conditional_expression] = STATE(2456), - [sym_concatenated_string] = STATE(2455), - [sym_string] = STATE(2143), - [sym_none] = STATE(2455), - [sym_await] = STATE(2455), - [sym_new_expression] = STATE(2456), - [sym_sizeof_expression] = STATE(2455), - [sym_cast_expression] = STATE(2455), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [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(2985), - [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(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), - }, - [948] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [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(2741), - [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), - }, - [949] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_expression_list] = STATE(5192), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3890), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym_from] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_print] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_exec] = ACTIONS(944), - [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(969), - [anon_sym_api] = ACTIONS(944), - [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(2931), - [sym_string_start] = ACTIONS(107), - }, - [950] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [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_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2741), - [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), - }, - [951] = { - [sym_named_expression] = STATE(3805), - [sym__named_expression_lhs] = STATE(5685), - [sym_list_splat] = STATE(5240), - [sym_parenthesized_list_splat] = STATE(5240), - [sym_list_splat_pattern] = STATE(2270), - [sym_as_pattern] = STATE(3805), - [sym_expression] = STATE(4176), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3805), - [sym_boolean_operator] = STATE(3805), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_comparison_operator] = STATE(3805), - [sym_lambda] = STATE(3805), - [sym_yield] = STATE(5240), - [sym_attribute] = STATE(2266), - [sym_subscript] = STATE(2266), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_conditional_expression] = STATE(3805), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_new_expression] = STATE(3805), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_print] = ACTIONS(2929), - [anon_sym_match] = ACTIONS(2929), - [anon_sym_async] = ACTIONS(2929), - [anon_sym_exec] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_not] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_lambda] = ACTIONS(3013), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2933), - [anon_sym_api] = ACTIONS(2929), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3015), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), - }, - [952] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [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_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2741), - [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), + [sym_string_start] = ACTIONS(3021), }, [953] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [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_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2741), - [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), + [sym_named_expression] = STATE(2579), + [sym__named_expression_lhs] = STATE(5800), + [sym_list_splat_pattern] = STATE(2604), + [sym_as_pattern] = STATE(2579), + [sym__expression_within_for_in_clause] = STATE(4493), + [sym_expression] = STATE(4018), + [sym_primary_expression] = STATE(2122), + [sym_not_operator] = STATE(2579), + [sym_boolean_operator] = STATE(2579), + [sym_binary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_comparison_operator] = STATE(2579), + [sym_lambda] = STATE(2579), + [sym_lambda_within_for_in_clause] = STATE(4493), + [sym_attribute] = STATE(2556), + [sym_subscript] = STATE(2556), + [sym_ellipsis] = STATE(2556), + [sym_call] = STATE(2556), + [sym_list] = STATE(2556), + [sym_set] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_dictionary] = STATE(2556), + [sym_list_comprehension] = STATE(2556), + [sym_dictionary_comprehension] = STATE(2556), + [sym_set_comprehension] = STATE(2556), + [sym_generator_expression] = STATE(2556), + [sym_parenthesized_expression] = STATE(2556), + [sym_conditional_expression] = STATE(2579), + [sym_concatenated_string] = STATE(2556), + [sym_string] = STATE(2202), + [sym_none] = STATE(2556), + [sym_await] = STATE(2556), + [sym_new_expression] = STATE(2579), + [sym_sizeof_expression] = STATE(2556), + [sym_cast_expression] = STATE(2556), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_print] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_exec] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_not] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_lambda] = ACTIONS(3043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_None] = ACTIONS(1372), + [sym_integer] = ACTIONS(1374), + [sym_float] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_api] = ACTIONS(1502), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_string_start] = ACTIONS(1394), }, [954] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_expression_list] = STATE(5281), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4048), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_from] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_print] = ACTIONS(2641), - [anon_sym_match] = ACTIONS(2641), - [anon_sym_async] = ACTIONS(2641), - [anon_sym_exec] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2468), + [sym__named_expression_lhs] = STATE(5491), + [sym_list_splat_pattern] = STATE(2449), + [sym_as_pattern] = STATE(2468), + [sym__expression_within_for_in_clause] = STATE(4389), + [sym_expression] = STATE(3956), + [sym_primary_expression] = STATE(2119), + [sym_not_operator] = STATE(2468), + [sym_boolean_operator] = STATE(2468), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_comparison_operator] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_lambda_within_for_in_clause] = STATE(4389), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym_conditional_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_new_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_exec] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(3037), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_lambda] = ACTIONS(3078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2581), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), }, [955] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [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_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2741), - [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), + [sym_except_group_clause] = STATE(955), + [aux_sym_try_statement_repeat2] = STATE(955), + [ts_builtin_sym_end] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3026), + [anon_sym_import] = ACTIONS(3026), + [anon_sym_cimport] = ACTIONS(3026), + [anon_sym_from] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3028), + [anon_sym_print] = ACTIONS(3026), + [anon_sym_assert] = ACTIONS(3026), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_del] = ACTIONS(3026), + [anon_sym_raise] = ACTIONS(3026), + [anon_sym_pass] = ACTIONS(3026), + [anon_sym_break] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3026), + [anon_sym_else] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3026), + [anon_sym_async] = ACTIONS(3026), + [anon_sym_for] = ACTIONS(3026), + [anon_sym_while] = ACTIONS(3026), + [anon_sym_try] = ACTIONS(3026), + [anon_sym_except_STAR] = ACTIONS(3080), + [anon_sym_finally] = ACTIONS(3026), + [anon_sym_with] = ACTIONS(3026), + [anon_sym_def] = ACTIONS(3026), + [anon_sym_global] = ACTIONS(3026), + [anon_sym_nonlocal] = ACTIONS(3026), + [anon_sym_exec] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3026), + [anon_sym_class] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_AT] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_lambda] = ACTIONS(3026), + [anon_sym_yield] = ACTIONS(3026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3028), + [anon_sym_None] = ACTIONS(3026), + [sym_integer] = ACTIONS(3026), + [sym_float] = ACTIONS(3028), + [anon_sym_await] = ACTIONS(3026), + [anon_sym_api] = ACTIONS(3026), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3026), + [anon_sym_include] = ACTIONS(3026), + [anon_sym_DEF] = ACTIONS(3026), + [anon_sym_cdef] = ACTIONS(3026), + [anon_sym_cpdef] = ACTIONS(3026), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_ctypedef] = ACTIONS(3026), + [anon_sym_public] = ACTIONS(3026), + [anon_sym_packed] = ACTIONS(3026), + [anon_sym_inline] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3026), + [sym_string_start] = ACTIONS(3028), }, [956] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_list_splat] = STATE(5390), - [sym_parenthesized_list_splat] = STATE(5390), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4181), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [sym_yield] = STATE(5390), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2969), - [anon_sym_print] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_exec] = ACTIONS(1567), - [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(1569), - [anon_sym_api] = ACTIONS(1567), - [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), + [sym_named_expression] = STATE(2468), + [sym__named_expression_lhs] = STATE(5491), + [sym_list_splat_pattern] = STATE(2449), + [sym_as_pattern] = STATE(2468), + [sym__expression_within_for_in_clause] = STATE(4389), + [sym_expression] = STATE(3956), + [sym_primary_expression] = STATE(2119), + [sym_not_operator] = STATE(2468), + [sym_boolean_operator] = STATE(2468), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_comparison_operator] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_lambda_within_for_in_clause] = STATE(4389), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym_conditional_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_new_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(3071), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3071), + [anon_sym_exec] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_lambda] = ACTIONS(3078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2581), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), }, [957] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2741), - [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), + [sym_named_expression] = STATE(2468), + [sym__named_expression_lhs] = STATE(5491), + [sym_list_splat_pattern] = STATE(2449), + [sym_as_pattern] = STATE(2468), + [sym__expression_within_for_in_clause] = STATE(4389), + [sym_expression] = STATE(3956), + [sym_primary_expression] = STATE(2119), + [sym_not_operator] = STATE(2468), + [sym_boolean_operator] = STATE(2468), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_comparison_operator] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_lambda_within_for_in_clause] = STATE(4389), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym_conditional_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_new_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_exec] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(3047), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_lambda] = ACTIONS(3078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2581), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), }, [958] = { - [sym_named_expression] = STATE(3805), - [sym__named_expression_lhs] = STATE(5543), - [sym_list_splat_pattern] = STATE(2270), - [sym_as_pattern] = STATE(3805), - [sym_expression] = STATE(3871), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3805), - [sym_boolean_operator] = STATE(3805), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_comparison_operator] = STATE(3805), - [sym_lambda] = STATE(3805), - [sym_attribute] = STATE(2266), - [sym_subscript] = STATE(2266), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_conditional_expression] = STATE(3805), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_new_expression] = STATE(3805), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_print] = ACTIONS(2929), - [anon_sym_COLON] = ACTIONS(3071), - [anon_sym_match] = ACTIONS(2929), - [anon_sym_async] = ACTIONS(2929), - [anon_sym_exec] = ACTIONS(2929), - [anon_sym_EQ] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_not] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_lambda] = ACTIONS(2679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_type_conversion] = ACTIONS(3071), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2933), - [anon_sym_api] = ACTIONS(2929), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_expression_list] = STATE(5272), + [sym_pattern] = STATE(4702), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(2529), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_pattern_list] = STATE(5449), + [sym_attribute] = STATE(2531), + [sym_subscript] = STATE(2531), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_print] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_exec] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(2983), + [anon_sym_api] = ACTIONS(2979), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [959] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_expression_list] = STATE(5102), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3862), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_from] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_print] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_exec] = ACTIONS(944), - [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(969), - [anon_sym_api] = ACTIONS(944), - [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(3073), - [sym_string_start] = ACTIONS(107), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_expression_list] = STATE(5277), + [sym_pattern] = STATE(4706), + [sym_tuple_pattern] = STATE(3274), + [sym_list_pattern] = STATE(3274), + [sym_list_splat_pattern] = STATE(2529), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4038), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_pattern_list] = STATE(5455), + [sym_attribute] = STATE(2531), + [sym_subscript] = STATE(2531), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_print] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_exec] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(2983), + [anon_sym_api] = ACTIONS(2979), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [960] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [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(2741), - [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), + [sym_named_expression] = STATE(2468), + [sym__named_expression_lhs] = STATE(5491), + [sym_list_splat_pattern] = STATE(2449), + [sym_as_pattern] = STATE(2468), + [sym__expression_within_for_in_clause] = STATE(4389), + [sym_expression] = STATE(3956), + [sym_primary_expression] = STATE(2119), + [sym_not_operator] = STATE(2468), + [sym_boolean_operator] = STATE(2468), + [sym_binary_operator] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_comparison_operator] = STATE(2468), + [sym_lambda] = STATE(2468), + [sym_lambda_within_for_in_clause] = STATE(4389), + [sym_attribute] = STATE(2328), + [sym_subscript] = STATE(2328), + [sym_ellipsis] = STATE(2328), + [sym_call] = STATE(2328), + [sym_list] = STATE(2328), + [sym_set] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_dictionary] = STATE(2328), + [sym_list_comprehension] = STATE(2328), + [sym_dictionary_comprehension] = STATE(2328), + [sym_set_comprehension] = STATE(2328), + [sym_generator_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym_conditional_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2328), + [sym_string] = STATE(2193), + [sym_none] = STATE(2328), + [sym_await] = STATE(2328), + [sym_new_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_identifier] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_print] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_exec] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2445), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_lambda] = ACTIONS(3078), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), + [anon_sym_None] = ACTIONS(2455), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2457), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_api] = ACTIONS(2581), + [sym_true] = ACTIONS(2437), + [sym_false] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2461), + [sym_string_start] = ACTIONS(2463), }, [961] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [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_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2741), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5413), + [sym_parenthesized_list_splat] = STATE(5413), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4338), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_yield] = STATE(5413), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_RPAREN] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_print] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_api] = ACTIONS(1599), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [962] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [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_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2741), - [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), + [sym_named_expression] = STATE(2536), + [sym__named_expression_lhs] = STATE(5737), + [sym_list_splat_pattern] = STATE(2546), + [sym_as_pattern] = STATE(2536), + [sym__expression_within_for_in_clause] = STATE(4366), + [sym_expression] = STATE(4015), + [sym_primary_expression] = STATE(2127), + [sym_not_operator] = STATE(2536), + [sym_boolean_operator] = STATE(2536), + [sym_binary_operator] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_comparison_operator] = STATE(2536), + [sym_lambda] = STATE(2536), + [sym_lambda_within_for_in_clause] = STATE(4366), + [sym_attribute] = STATE(2512), + [sym_subscript] = STATE(2512), + [sym_ellipsis] = STATE(2512), + [sym_call] = STATE(2512), + [sym_list] = STATE(2512), + [sym_set] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_dictionary] = STATE(2512), + [sym_list_comprehension] = STATE(2512), + [sym_dictionary_comprehension] = STATE(2512), + [sym_set_comprehension] = STATE(2512), + [sym_generator_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(2512), + [sym_conditional_expression] = STATE(2536), + [sym_concatenated_string] = STATE(2512), + [sym_string] = STATE(2229), + [sym_none] = STATE(2512), + [sym_await] = STATE(2512), + [sym_new_expression] = STATE(2536), + [sym_sizeof_expression] = STATE(2512), + [sym_cast_expression] = STATE(2512), + [sym_identifier] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(3071), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3071), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_lambda] = ACTIONS(3039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), + [anon_sym_None] = ACTIONS(2499), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2501), + [anon_sym_await] = ACTIONS(2849), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2505), + [sym_string_start] = ACTIONS(2507), }, [963] = { - [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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [964] = { - [sym_named_expression] = STATE(3805), - [sym__named_expression_lhs] = STATE(5543), - [sym_list_splat_pattern] = STATE(2270), - [sym_as_pattern] = STATE(3805), - [sym_expression] = STATE(3871), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3805), - [sym_boolean_operator] = STATE(3805), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_comparison_operator] = STATE(3805), - [sym_lambda] = STATE(3805), - [sym_attribute] = STATE(2266), - [sym_subscript] = STATE(2266), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_conditional_expression] = STATE(3805), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_new_expression] = STATE(3805), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_print] = ACTIONS(2929), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(2929), - [anon_sym_async] = ACTIONS(2929), - [anon_sym_exec] = ACTIONS(2929), - [anon_sym_EQ] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_not] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_lambda] = ACTIONS(2679), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_type_conversion] = ACTIONS(3083), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2933), - [anon_sym_api] = ACTIONS(2929), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), + [sym_named_expression] = STATE(3906), + [sym__named_expression_lhs] = STATE(5700), + [sym_list_splat_pattern] = STATE(2421), + [sym_as_pattern] = STATE(3906), + [sym_expression] = STATE(3924), + [sym_primary_expression] = STATE(2117), + [sym_not_operator] = STATE(3906), + [sym_boolean_operator] = STATE(3906), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_comparison_operator] = STATE(3906), + [sym_lambda] = STATE(3906), + [sym_attribute] = STATE(2347), + [sym_subscript] = STATE(2347), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_conditional_expression] = STATE(3906), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_new_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_print] = ACTIONS(2959), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_match] = ACTIONS(2959), + [anon_sym_async] = ACTIONS(2959), + [anon_sym_exec] = ACTIONS(2959), + [anon_sym_EQ] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(2707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_type_conversion] = ACTIONS(3085), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(2963), + [anon_sym_api] = ACTIONS(2959), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), }, [965] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [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(2741), - [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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [966] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [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(2741), - [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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [967] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2741), - [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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [968] = { - [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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [969] = { - [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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [970] = { - [sym_elif_clause] = STATE(1111), - [aux_sym_if_statement_repeat1] = STATE(970), - [sym_identifier] = ACTIONS(3091), - [anon_sym_import] = ACTIONS(3091), - [anon_sym_cimport] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_print] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_del] = ACTIONS(3091), - [anon_sym_raise] = ACTIONS(3091), - [anon_sym_pass] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_elif] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_with] = ACTIONS(3091), - [anon_sym_def] = ACTIONS(3091), - [anon_sym_global] = ACTIONS(3091), - [anon_sym_nonlocal] = ACTIONS(3091), - [anon_sym_exec] = ACTIONS(3091), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_class] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_not] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_lambda] = ACTIONS(3091), - [anon_sym_yield] = ACTIONS(3091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), - [anon_sym_None] = ACTIONS(3091), - [sym_integer] = ACTIONS(3091), - [sym_float] = ACTIONS(3093), - [anon_sym_await] = ACTIONS(3091), - [anon_sym_api] = ACTIONS(3091), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3091), - [anon_sym_include] = ACTIONS(3091), - [anon_sym_DEF] = ACTIONS(3091), - [anon_sym_cdef] = ACTIONS(3091), - [anon_sym_cpdef] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_ctypedef] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_packed] = ACTIONS(3091), - [anon_sym_inline] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_sizeof] = ACTIONS(3091), - [sym__dedent] = ACTIONS(3093), - [sym_string_start] = ACTIONS(3093), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [971] = { - [sym_elif_clause] = STATE(1071), - [aux_sym_if_statement_repeat1] = STATE(971), - [ts_builtin_sym_end] = ACTIONS(3093), - [sym_identifier] = ACTIONS(3091), - [anon_sym_import] = ACTIONS(3091), - [anon_sym_cimport] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_print] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_del] = ACTIONS(3091), - [anon_sym_raise] = ACTIONS(3091), - [anon_sym_pass] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_elif] = ACTIONS(3098), - [anon_sym_else] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_while] = ACTIONS(3091), - [anon_sym_try] = ACTIONS(3091), - [anon_sym_with] = ACTIONS(3091), - [anon_sym_def] = ACTIONS(3091), - [anon_sym_global] = ACTIONS(3091), - [anon_sym_nonlocal] = ACTIONS(3091), - [anon_sym_exec] = ACTIONS(3091), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_class] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_not] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_lambda] = ACTIONS(3091), - [anon_sym_yield] = ACTIONS(3091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3093), - [anon_sym_None] = ACTIONS(3091), - [sym_integer] = ACTIONS(3091), - [sym_float] = ACTIONS(3093), - [anon_sym_await] = ACTIONS(3091), - [anon_sym_api] = ACTIONS(3091), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3091), - [anon_sym_include] = ACTIONS(3091), - [anon_sym_DEF] = ACTIONS(3091), - [anon_sym_cdef] = ACTIONS(3091), - [anon_sym_cpdef] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_ctypedef] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_packed] = ACTIONS(3091), - [anon_sym_inline] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_sizeof] = ACTIONS(3091), - [sym_string_start] = ACTIONS(3093), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_expression_list] = STATE(5346), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4166), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(3065), + [anon_sym_from] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_RPAREN] = ACTIONS(2961), + [anon_sym_COMMA] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_print] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_api] = ACTIONS(1599), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [972] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2741), - [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), + [sym_named_expression] = STATE(3906), + [sym__named_expression_lhs] = STATE(5757), + [sym_list_splat] = STATE(5461), + [sym_parenthesized_list_splat] = STATE(5461), + [sym_list_splat_pattern] = STATE(2421), + [sym_as_pattern] = STATE(3906), + [sym_expression] = STATE(4284), + [sym_primary_expression] = STATE(2117), + [sym_not_operator] = STATE(3906), + [sym_boolean_operator] = STATE(3906), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_comparison_operator] = STATE(3906), + [sym_lambda] = STATE(3906), + [sym_yield] = STATE(5461), + [sym_attribute] = STATE(2347), + [sym_subscript] = STATE(2347), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_conditional_expression] = STATE(3906), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_new_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_print] = ACTIONS(2959), + [anon_sym_match] = ACTIONS(2959), + [anon_sym_async] = ACTIONS(2959), + [anon_sym_exec] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(2997), + [anon_sym_yield] = ACTIONS(2593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(2963), + [anon_sym_api] = ACTIONS(2959), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), }, [973] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2741), - [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), + [sym_named_expression] = STATE(2712), + [sym__named_expression_lhs] = STATE(5581), + [sym_list_splat] = STATE(5413), + [sym_parenthesized_list_splat] = STATE(5413), + [sym_list_splat_pattern] = STATE(2703), + [sym_as_pattern] = STATE(2712), + [sym_expression] = STATE(4338), + [sym_primary_expression] = STATE(2221), + [sym_not_operator] = STATE(2712), + [sym_boolean_operator] = STATE(2712), + [sym_binary_operator] = STATE(2710), + [sym_unary_operator] = STATE(2710), + [sym_comparison_operator] = STATE(2712), + [sym_lambda] = STATE(2712), + [sym_yield] = STATE(5413), + [sym_attribute] = STATE(2710), + [sym_subscript] = STATE(2710), + [sym_ellipsis] = STATE(2710), + [sym_call] = STATE(2710), + [sym_list] = STATE(2710), + [sym_set] = STATE(2710), + [sym_tuple] = STATE(2710), + [sym_dictionary] = STATE(2710), + [sym_list_comprehension] = STATE(2710), + [sym_dictionary_comprehension] = STATE(2710), + [sym_set_comprehension] = STATE(2710), + [sym_generator_expression] = STATE(2710), + [sym_parenthesized_expression] = STATE(2710), + [sym_conditional_expression] = STATE(2712), + [sym_concatenated_string] = STATE(2710), + [sym_string] = STATE(2410), + [sym_none] = STATE(2710), + [sym_await] = STATE(2710), + [sym_new_expression] = STATE(2712), + [sym_sizeof_expression] = STATE(2710), + [sym_cast_expression] = STATE(2710), + [sym_identifier] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_print] = ACTIONS(1599), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_not] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_lambda] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), + [anon_sym_None] = ACTIONS(1428), + [sym_integer] = ACTIONS(1430), + [sym_float] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1601), + [anon_sym_api] = ACTIONS(1599), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1438), + [sym_string_start] = ACTIONS(1440), }, [974] = { - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_import] = ACTIONS(1490), - [anon_sym_cimport] = ACTIONS(1490), - [anon_sym_from] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_print] = ACTIONS(1490), - [anon_sym_assert] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_del] = ACTIONS(1490), - [anon_sym_raise] = ACTIONS(1490), - [anon_sym_pass] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_elif] = 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_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), + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_identifier] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_cimport] = ACTIONS(1510), + [anon_sym_from] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_print] = ACTIONS(1510), + [anon_sym_assert] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_del] = ACTIONS(1510), + [anon_sym_raise] = ACTIONS(1510), + [anon_sym_pass] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_elif] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_finally] = ACTIONS(1510), + [anon_sym_with] = ACTIONS(1510), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_global] = ACTIONS(1510), + [anon_sym_nonlocal] = ACTIONS(1510), + [anon_sym_exec] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_not] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_lambda] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), + [anon_sym_None] = ACTIONS(1510), + [sym_integer] = ACTIONS(1510), + [sym_float] = ACTIONS(1512), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_api] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1510), + [anon_sym_include] = ACTIONS(1510), + [anon_sym_DEF] = ACTIONS(1510), + [anon_sym_cdef] = ACTIONS(1510), + [anon_sym_cpdef] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_ctypedef] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_packed] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_readonly] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1510), + [sym_string_start] = ACTIONS(1512), }, [975] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [anon_sym_exec] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1223), - [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(2741), - [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), + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_import] = ACTIONS(1514), + [anon_sym_cimport] = ACTIONS(1514), + [anon_sym_from] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_print] = ACTIONS(1514), + [anon_sym_assert] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_del] = ACTIONS(1514), + [anon_sym_raise] = ACTIONS(1514), + [anon_sym_pass] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_elif] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_async] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_finally] = ACTIONS(1514), + [anon_sym_with] = ACTIONS(1514), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_global] = ACTIONS(1514), + [anon_sym_nonlocal] = ACTIONS(1514), + [anon_sym_exec] = ACTIONS(1514), + [anon_sym_type] = ACTIONS(1514), + [anon_sym_class] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_lambda] = ACTIONS(1514), + [anon_sym_yield] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), + [anon_sym_None] = ACTIONS(1514), + [sym_integer] = ACTIONS(1514), + [sym_float] = ACTIONS(1516), + [anon_sym_await] = ACTIONS(1514), + [anon_sym_api] = ACTIONS(1514), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1514), + [anon_sym_include] = ACTIONS(1514), + [anon_sym_DEF] = ACTIONS(1514), + [anon_sym_cdef] = ACTIONS(1514), + [anon_sym_cpdef] = ACTIONS(1514), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_ctypedef] = ACTIONS(1514), + [anon_sym_public] = ACTIONS(1514), + [anon_sym_packed] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym_readonly] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1514), + [sym_string_start] = ACTIONS(1516), }, [976] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat] = STATE(5360), - [sym_parenthesized_list_splat] = STATE(5360), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4251), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_yield] = STATE(5360), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_print] = ACTIONS(2641), - [anon_sym_match] = ACTIONS(2641), - [anon_sym_async] = ACTIONS(2641), - [anon_sym_exec] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_elif_clause] = STATE(1152), + [aux_sym_if_statement_repeat1] = STATE(976), + [sym_identifier] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(3101), + [anon_sym_cimport] = ACTIONS(3101), + [anon_sym_from] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(3101), + [anon_sym_assert] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_del] = ACTIONS(3101), + [anon_sym_raise] = ACTIONS(3101), + [anon_sym_pass] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_elif] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3101), + [anon_sym_async] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_with] = ACTIONS(3101), + [anon_sym_def] = ACTIONS(3101), + [anon_sym_global] = ACTIONS(3101), + [anon_sym_nonlocal] = ACTIONS(3101), + [anon_sym_exec] = ACTIONS(3101), + [anon_sym_type] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_AT] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_lambda] = ACTIONS(3101), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), + [anon_sym_None] = ACTIONS(3101), + [sym_integer] = ACTIONS(3101), + [sym_float] = ACTIONS(3103), + [anon_sym_await] = ACTIONS(3101), + [anon_sym_api] = ACTIONS(3101), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3101), + [anon_sym_include] = ACTIONS(3101), + [anon_sym_DEF] = ACTIONS(3101), + [anon_sym_cdef] = ACTIONS(3101), + [anon_sym_cpdef] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_ctypedef] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_packed] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3101), + [sym__dedent] = ACTIONS(3103), + [sym_string_start] = ACTIONS(3103), }, [977] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [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_PLUS] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_TILDE] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(2741), - [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), - }, - [978] = { - [sym_named_expression] = STATE(2657), - [sym__named_expression_lhs] = STATE(5483), - [sym_expression_list] = STATE(5168), - [sym_list_splat_pattern] = STATE(2693), - [sym_as_pattern] = STATE(2657), - [sym_expression] = STATE(4009), - [sym_primary_expression] = STATE(2168), - [sym_not_operator] = STATE(2657), - [sym_boolean_operator] = STATE(2657), - [sym_binary_operator] = STATE(2651), - [sym_unary_operator] = STATE(2651), - [sym_comparison_operator] = STATE(2657), - [sym_lambda] = STATE(2657), - [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(2657), - [sym_concatenated_string] = STATE(2651), - [sym_string] = STATE(2239), - [sym_none] = STATE(2651), - [sym_await] = STATE(2651), - [sym_new_expression] = STATE(2657), - [sym_sizeof_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_identifier] = ACTIONS(2965), - [anon_sym_from] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_RPAREN] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_print] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_exec] = ACTIONS(1567), - [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(1569), - [anon_sym_api] = ACTIONS(1567), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_expression_list] = STATE(5279), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3939), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_from] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_print] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(1319), + [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(849), + [anon_sym_api] = ACTIONS(824), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [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(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(2961), + [sym_string_start] = ACTIONS(107), + }, + [978] = { + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [979] = { - [sym_named_expression] = STATE(3805), - [sym__named_expression_lhs] = STATE(5685), - [sym_expression_list] = STATE(4438), - [sym_list_splat_pattern] = STATE(2270), - [sym_as_pattern] = STATE(3805), - [sym_expression] = STATE(4070), - [sym_primary_expression] = STATE(2046), - [sym_not_operator] = STATE(3805), - [sym_boolean_operator] = STATE(3805), - [sym_binary_operator] = STATE(2266), - [sym_unary_operator] = STATE(2266), - [sym_comparison_operator] = STATE(3805), - [sym_lambda] = STATE(3805), - [sym_attribute] = STATE(2266), - [sym_subscript] = STATE(2266), - [sym_ellipsis] = STATE(2266), - [sym_call] = STATE(2266), - [sym_list] = STATE(2266), - [sym_set] = STATE(2266), - [sym_tuple] = STATE(2266), - [sym_dictionary] = STATE(2266), - [sym_list_comprehension] = STATE(2266), - [sym_dictionary_comprehension] = STATE(2266), - [sym_set_comprehension] = STATE(2266), - [sym_generator_expression] = STATE(2266), - [sym_parenthesized_expression] = STATE(2266), - [sym_conditional_expression] = STATE(3805), - [sym_concatenated_string] = STATE(2266), - [sym_string] = STATE(2135), - [sym_none] = STATE(2266), - [sym_await] = STATE(2266), - [sym_new_expression] = STATE(3805), - [sym_sizeof_expression] = STATE(2266), - [sym_cast_expression] = STATE(2266), - [sym_identifier] = ACTIONS(2925), - [anon_sym_from] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_print] = ACTIONS(2929), - [anon_sym_match] = ACTIONS(2929), - [anon_sym_async] = ACTIONS(2929), - [anon_sym_exec] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2017), - [anon_sym_not] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_TILDE] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_lambda] = ACTIONS(3013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2025), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2933), - [anon_sym_api] = ACTIONS(2929), - [sym_true] = ACTIONS(2007), - [sym_false] = ACTIONS(2007), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_expression_list] = STATE(5093), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3915), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(3114), + [anon_sym_from] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_print] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(1319), + [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(849), + [anon_sym_api] = ACTIONS(824), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(3015), - [anon_sym_sizeof] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2033), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(3114), + [sym_string_start] = ACTIONS(107), }, [980] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [ts_builtin_sym_end] = ACTIONS(1528), + [sym_identifier] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_import] = ACTIONS(1526), + [anon_sym_cimport] = ACTIONS(1526), + [anon_sym_from] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_print] = ACTIONS(1526), + [anon_sym_assert] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_del] = ACTIONS(1526), + [anon_sym_raise] = ACTIONS(1526), + [anon_sym_pass] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_elif] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_finally] = ACTIONS(1526), + [anon_sym_with] = ACTIONS(1526), + [anon_sym_def] = ACTIONS(1526), + [anon_sym_global] = ACTIONS(1526), + [anon_sym_nonlocal] = ACTIONS(1526), + [anon_sym_exec] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_class] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_not] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_lambda] = ACTIONS(1526), + [anon_sym_yield] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), + [anon_sym_None] = ACTIONS(1526), + [sym_integer] = ACTIONS(1526), + [sym_float] = ACTIONS(1528), + [anon_sym_await] = ACTIONS(1526), + [anon_sym_api] = ACTIONS(1526), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1526), + [anon_sym_include] = ACTIONS(1526), + [anon_sym_DEF] = ACTIONS(1526), + [anon_sym_cdef] = ACTIONS(1526), + [anon_sym_cpdef] = ACTIONS(1526), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_ctypedef] = ACTIONS(1526), + [anon_sym_public] = ACTIONS(1526), + [anon_sym_packed] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1526), + [sym_string_start] = ACTIONS(1528), }, [981] = { - [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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [982] = { - [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(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), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [983] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [984] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [985] = { - [ts_builtin_sym_end] = ACTIONS(3125), - [sym_identifier] = ACTIONS(3127), - [anon_sym_import] = ACTIONS(3127), - [anon_sym_cimport] = ACTIONS(3127), - [anon_sym_from] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [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(3125), - [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(3125), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_not] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_lambda] = ACTIONS(3127), - [anon_sym_yield] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3125), - [anon_sym_None] = ACTIONS(3127), - [sym_integer] = ACTIONS(3127), - [sym_float] = ACTIONS(3125), - [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(3125), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [986] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_import] = ACTIONS(3129), - [anon_sym_cimport] = ACTIONS(3129), - [anon_sym_from] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_print] = ACTIONS(3129), - [anon_sym_assert] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_del] = ACTIONS(3129), - [anon_sym_raise] = ACTIONS(3129), - [anon_sym_pass] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_except] = ACTIONS(3129), - [anon_sym_finally] = ACTIONS(3129), - [anon_sym_with] = ACTIONS(3129), - [anon_sym_def] = ACTIONS(3129), - [anon_sym_global] = ACTIONS(3129), - [anon_sym_nonlocal] = ACTIONS(3129), - [anon_sym_exec] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_not] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_lambda] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_None] = ACTIONS(3129), - [sym_integer] = ACTIONS(3129), - [sym_float] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_api] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3129), - [anon_sym_include] = ACTIONS(3129), - [anon_sym_DEF] = ACTIONS(3129), - [anon_sym_cdef] = ACTIONS(3129), - [anon_sym_cpdef] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_ctypedef] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_packed] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_sizeof] = ACTIONS(3129), - [sym__dedent] = ACTIONS(3131), - [sym_string_start] = ACTIONS(3131), + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_import] = ACTIONS(1518), + [anon_sym_cimport] = ACTIONS(1518), + [anon_sym_from] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_print] = ACTIONS(1518), + [anon_sym_assert] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_del] = ACTIONS(1518), + [anon_sym_raise] = ACTIONS(1518), + [anon_sym_pass] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_elif] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_finally] = ACTIONS(1518), + [anon_sym_with] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_global] = ACTIONS(1518), + [anon_sym_nonlocal] = ACTIONS(1518), + [anon_sym_exec] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_class] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_not] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_lambda] = ACTIONS(1518), + [anon_sym_yield] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_None] = ACTIONS(1518), + [sym_integer] = ACTIONS(1518), + [sym_float] = ACTIONS(1520), + [anon_sym_await] = ACTIONS(1518), + [anon_sym_api] = ACTIONS(1518), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1518), + [anon_sym_include] = ACTIONS(1518), + [anon_sym_DEF] = ACTIONS(1518), + [anon_sym_cdef] = ACTIONS(1518), + [anon_sym_cpdef] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_ctypedef] = ACTIONS(1518), + [anon_sym_public] = ACTIONS(1518), + [anon_sym_packed] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym_readonly] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1518), + [sym_string_start] = ACTIONS(1520), }, [987] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [988] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [989] = { - [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), + [sym_named_expression] = STATE(3906), + [sym__named_expression_lhs] = STATE(5757), + [sym_expression_list] = STATE(4480), + [sym_list_splat_pattern] = STATE(2421), + [sym_as_pattern] = STATE(3906), + [sym_expression] = STATE(4204), + [sym_primary_expression] = STATE(2117), + [sym_not_operator] = STATE(3906), + [sym_boolean_operator] = STATE(3906), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_comparison_operator] = STATE(3906), + [sym_lambda] = STATE(3906), + [sym_attribute] = STATE(2347), + [sym_subscript] = STATE(2347), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_conditional_expression] = STATE(3906), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_new_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(2955), + [anon_sym_from] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_print] = ACTIONS(2959), + [anon_sym_match] = ACTIONS(2959), + [anon_sym_async] = ACTIONS(2959), + [anon_sym_exec] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(2997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(2963), + [anon_sym_api] = ACTIONS(2959), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2999), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), }, [990] = { - [sym_identifier] = ACTIONS(3137), - [anon_sym_import] = ACTIONS(3137), - [anon_sym_cimport] = ACTIONS(3137), - [anon_sym_from] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_print] = ACTIONS(3137), - [anon_sym_assert] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_del] = ACTIONS(3137), - [anon_sym_raise] = ACTIONS(3137), - [anon_sym_pass] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_async] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_except_STAR] = ACTIONS(3139), - [anon_sym_finally] = ACTIONS(3137), - [anon_sym_with] = ACTIONS(3137), - [anon_sym_def] = ACTIONS(3137), - [anon_sym_global] = ACTIONS(3137), - [anon_sym_nonlocal] = ACTIONS(3137), - [anon_sym_exec] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3139), - [anon_sym_lambda] = ACTIONS(3137), - [anon_sym_yield] = ACTIONS(3137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), - [anon_sym_None] = ACTIONS(3137), - [sym_integer] = ACTIONS(3137), - [sym_float] = ACTIONS(3139), - [anon_sym_await] = ACTIONS(3137), - [anon_sym_api] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3137), - [anon_sym_include] = ACTIONS(3137), - [anon_sym_DEF] = ACTIONS(3137), - [anon_sym_cdef] = ACTIONS(3137), - [anon_sym_cpdef] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_ctypedef] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_packed] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_readonly] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(3137), - [sym__dedent] = ACTIONS(3139), - [sym_string_start] = ACTIONS(3139), - }, - [991] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4023), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_print] = ACTIONS(2641), - [anon_sym_COLON] = ACTIONS(3143), - [anon_sym_match] = ACTIONS(2641), - [anon_sym_async] = ACTIONS(2641), - [anon_sym_exec] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat] = STATE(5458), + [sym_parenthesized_list_splat] = STATE(5458), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4245), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_yield] = STATE(5458), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [991] = { + [ts_builtin_sym_end] = ACTIONS(1524), + [sym_identifier] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_import] = ACTIONS(1522), + [anon_sym_cimport] = ACTIONS(1522), + [anon_sym_from] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_print] = ACTIONS(1522), + [anon_sym_assert] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_del] = ACTIONS(1522), + [anon_sym_raise] = ACTIONS(1522), + [anon_sym_pass] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_elif] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_finally] = ACTIONS(1522), + [anon_sym_with] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_global] = ACTIONS(1522), + [anon_sym_nonlocal] = ACTIONS(1522), + [anon_sym_exec] = ACTIONS(1522), + [anon_sym_type] = ACTIONS(1522), + [anon_sym_class] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_AT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_not] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_lambda] = ACTIONS(1522), + [anon_sym_yield] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), + [anon_sym_None] = ACTIONS(1522), + [sym_integer] = ACTIONS(1522), + [sym_float] = ACTIONS(1524), + [anon_sym_await] = ACTIONS(1522), + [anon_sym_api] = ACTIONS(1522), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1522), + [anon_sym_include] = ACTIONS(1522), + [anon_sym_DEF] = ACTIONS(1522), + [anon_sym_cdef] = ACTIONS(1522), + [anon_sym_cpdef] = ACTIONS(1522), + [anon_sym_new] = ACTIONS(1522), + [anon_sym_ctypedef] = ACTIONS(1522), + [anon_sym_public] = ACTIONS(1522), + [anon_sym_packed] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1522), + [sym_string_start] = ACTIONS(1524), }, [992] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_elif_clause] = STATE(1100), + [aux_sym_if_statement_repeat1] = STATE(992), + [ts_builtin_sym_end] = ACTIONS(3103), + [sym_identifier] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(3101), + [anon_sym_cimport] = ACTIONS(3101), + [anon_sym_from] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_print] = ACTIONS(3101), + [anon_sym_assert] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_del] = ACTIONS(3101), + [anon_sym_raise] = ACTIONS(3101), + [anon_sym_pass] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_elif] = ACTIONS(3134), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3101), + [anon_sym_async] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_with] = ACTIONS(3101), + [anon_sym_def] = ACTIONS(3101), + [anon_sym_global] = ACTIONS(3101), + [anon_sym_nonlocal] = ACTIONS(3101), + [anon_sym_exec] = ACTIONS(3101), + [anon_sym_type] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_AT] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_lambda] = ACTIONS(3101), + [anon_sym_yield] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), + [anon_sym_None] = ACTIONS(3101), + [sym_integer] = ACTIONS(3101), + [sym_float] = ACTIONS(3103), + [anon_sym_await] = ACTIONS(3101), + [anon_sym_api] = ACTIONS(3101), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3101), + [anon_sym_include] = ACTIONS(3101), + [anon_sym_DEF] = ACTIONS(3101), + [anon_sym_cdef] = ACTIONS(3101), + [anon_sym_cpdef] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_ctypedef] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_packed] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3101), + [sym_string_start] = ACTIONS(3103), }, [993] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(4113), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_print] = ACTIONS(2641), - [anon_sym_COLON] = ACTIONS(3149), - [anon_sym_match] = ACTIONS(2641), - [anon_sym_async] = ACTIONS(2641), - [anon_sym_exec] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [994] = { - [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] = 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__dedent] = ACTIONS(1484), - [sym_string_start] = ACTIONS(1484), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_expression_list] = STATE(5375), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4205), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_from] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [995] = { - [sym_identifier] = ACTIONS(1494), - [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_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_except_STAR] = ACTIONS(1496), - [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__dedent] = ACTIONS(1496), - [sym_string_start] = ACTIONS(1496), + [sym_named_expression] = STATE(3906), + [sym__named_expression_lhs] = STATE(5700), + [sym_list_splat_pattern] = STATE(2421), + [sym_as_pattern] = STATE(3906), + [sym_expression] = STATE(3924), + [sym_primary_expression] = STATE(2117), + [sym_not_operator] = STATE(3906), + [sym_boolean_operator] = STATE(3906), + [sym_binary_operator] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_comparison_operator] = STATE(3906), + [sym_lambda] = STATE(3906), + [sym_attribute] = STATE(2347), + [sym_subscript] = STATE(2347), + [sym_ellipsis] = STATE(2347), + [sym_call] = STATE(2347), + [sym_list] = STATE(2347), + [sym_set] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_dictionary] = STATE(2347), + [sym_list_comprehension] = STATE(2347), + [sym_dictionary_comprehension] = STATE(2347), + [sym_set_comprehension] = STATE(2347), + [sym_generator_expression] = STATE(2347), + [sym_parenthesized_expression] = STATE(2347), + [sym_conditional_expression] = STATE(3906), + [sym_concatenated_string] = STATE(2347), + [sym_string] = STATE(2153), + [sym_none] = STATE(2347), + [sym_await] = STATE(2347), + [sym_new_expression] = STATE(3906), + [sym_sizeof_expression] = STATE(2347), + [sym_cast_expression] = STATE(2347), + [sym_identifier] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_print] = ACTIONS(2959), + [anon_sym_COLON] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(2959), + [anon_sym_async] = ACTIONS(2959), + [anon_sym_exec] = ACTIONS(2959), + [anon_sym_EQ] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(1983), + [anon_sym_not] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(1983), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_lambda] = ACTIONS(2707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1991), + [sym_type_conversion] = ACTIONS(3143), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(2963), + [anon_sym_api] = ACTIONS(2959), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_sizeof] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1999), }, [996] = { - [ts_builtin_sym_end] = ACTIONS(3151), - [sym_identifier] = ACTIONS(3153), - [anon_sym_import] = ACTIONS(3153), - [anon_sym_cimport] = ACTIONS(3153), - [anon_sym_from] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_print] = ACTIONS(3153), - [anon_sym_assert] = ACTIONS(3153), - [anon_sym_return] = ACTIONS(3153), - [anon_sym_del] = ACTIONS(3153), - [anon_sym_raise] = ACTIONS(3153), - [anon_sym_pass] = ACTIONS(3153), - [anon_sym_break] = ACTIONS(3153), - [anon_sym_continue] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_else] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(3153), - [anon_sym_async] = ACTIONS(3153), - [anon_sym_for] = ACTIONS(3153), - [anon_sym_while] = ACTIONS(3153), - [anon_sym_try] = ACTIONS(3153), - [anon_sym_except] = ACTIONS(3153), - [anon_sym_finally] = ACTIONS(3153), - [anon_sym_with] = ACTIONS(3153), - [anon_sym_def] = ACTIONS(3153), - [anon_sym_global] = ACTIONS(3153), - [anon_sym_nonlocal] = ACTIONS(3153), - [anon_sym_exec] = ACTIONS(3153), - [anon_sym_type] = ACTIONS(3153), - [anon_sym_class] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_not] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_lambda] = ACTIONS(3153), - [anon_sym_yield] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), - [anon_sym_None] = ACTIONS(3153), - [sym_integer] = ACTIONS(3153), - [sym_float] = ACTIONS(3151), - [anon_sym_await] = ACTIONS(3153), - [anon_sym_api] = ACTIONS(3153), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3153), - [anon_sym_include] = ACTIONS(3153), - [anon_sym_DEF] = ACTIONS(3153), - [anon_sym_cdef] = ACTIONS(3153), - [anon_sym_cpdef] = ACTIONS(3153), - [anon_sym_new] = ACTIONS(3153), - [anon_sym_ctypedef] = ACTIONS(3153), - [anon_sym_public] = ACTIONS(3153), - [anon_sym_packed] = ACTIONS(3153), - [anon_sym_inline] = ACTIONS(3153), - [anon_sym_readonly] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3153), - [sym_string_start] = ACTIONS(3151), + [ts_builtin_sym_end] = ACTIONS(3145), + [sym_identifier] = ACTIONS(3147), + [anon_sym_import] = ACTIONS(3147), + [anon_sym_cimport] = ACTIONS(3147), + [anon_sym_from] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_print] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_del] = ACTIONS(3147), + [anon_sym_raise] = ACTIONS(3147), + [anon_sym_pass] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_else] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_async] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_except_STAR] = ACTIONS(3145), + [anon_sym_finally] = ACTIONS(3147), + [anon_sym_with] = ACTIONS(3147), + [anon_sym_def] = ACTIONS(3147), + [anon_sym_global] = ACTIONS(3147), + [anon_sym_nonlocal] = ACTIONS(3147), + [anon_sym_exec] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_not] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_lambda] = ACTIONS(3147), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [anon_sym_None] = ACTIONS(3147), + [sym_integer] = ACTIONS(3147), + [sym_float] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3147), + [anon_sym_api] = ACTIONS(3147), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3147), + [anon_sym_include] = ACTIONS(3147), + [anon_sym_DEF] = ACTIONS(3147), + [anon_sym_cdef] = ACTIONS(3147), + [anon_sym_cpdef] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_ctypedef] = ACTIONS(3147), + [anon_sym_public] = ACTIONS(3147), + [anon_sym_packed] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym_readonly] = ACTIONS(3147), + [anon_sym_sizeof] = ACTIONS(3147), + [sym_string_start] = ACTIONS(3145), }, [997] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4170), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [998] = { - [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), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [999] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3129), - [anon_sym_import] = ACTIONS(3129), - [anon_sym_cimport] = ACTIONS(3129), - [anon_sym_from] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_print] = ACTIONS(3129), - [anon_sym_assert] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_del] = ACTIONS(3129), - [anon_sym_raise] = ACTIONS(3129), - [anon_sym_pass] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_async] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_except] = ACTIONS(3129), - [anon_sym_finally] = ACTIONS(3129), - [anon_sym_with] = ACTIONS(3129), - [anon_sym_def] = ACTIONS(3129), - [anon_sym_global] = ACTIONS(3129), - [anon_sym_nonlocal] = ACTIONS(3129), - [anon_sym_exec] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_class] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_not] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_lambda] = ACTIONS(3129), - [anon_sym_yield] = ACTIONS(3129), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_None] = ACTIONS(3129), - [sym_integer] = ACTIONS(3129), - [sym_float] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3129), - [anon_sym_api] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3129), - [anon_sym_include] = ACTIONS(3129), - [anon_sym_DEF] = ACTIONS(3129), - [anon_sym_cdef] = ACTIONS(3129), - [anon_sym_cpdef] = ACTIONS(3129), - [anon_sym_new] = ACTIONS(3129), - [anon_sym_ctypedef] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_packed] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_readonly] = ACTIONS(3129), - [anon_sym_sizeof] = ACTIONS(3129), - [sym_string_start] = ACTIONS(3131), + [ts_builtin_sym_end] = ACTIONS(3157), + [sym_identifier] = ACTIONS(3159), + [anon_sym_import] = ACTIONS(3159), + [anon_sym_cimport] = ACTIONS(3159), + [anon_sym_from] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3157), + [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(3157), + [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(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(3159), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_lambda] = ACTIONS(3159), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), + [anon_sym_None] = ACTIONS(3159), + [sym_integer] = ACTIONS(3159), + [sym_float] = ACTIONS(3157), + [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(3157), }, [1000] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1001] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_identifier] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_cimport] = ACTIONS(1510), + [anon_sym_from] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_print] = ACTIONS(1510), + [anon_sym_assert] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_del] = ACTIONS(1510), + [anon_sym_raise] = ACTIONS(1510), + [anon_sym_pass] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_except_STAR] = ACTIONS(1512), + [anon_sym_finally] = ACTIONS(1510), + [anon_sym_with] = ACTIONS(1510), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_global] = ACTIONS(1510), + [anon_sym_nonlocal] = ACTIONS(1510), + [anon_sym_exec] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_not] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_lambda] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), + [anon_sym_None] = ACTIONS(1510), + [sym_integer] = ACTIONS(1510), + [sym_float] = ACTIONS(1512), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_api] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1510), + [anon_sym_include] = ACTIONS(1510), + [anon_sym_DEF] = ACTIONS(1510), + [anon_sym_cdef] = ACTIONS(1510), + [anon_sym_cpdef] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_ctypedef] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_packed] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_readonly] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1510), + [sym_string_start] = ACTIONS(1512), }, [1002] = { - [sym_named_expression] = STATE(3089), - [sym__named_expression_lhs] = STATE(5741), - [sym_dictionary_splat] = STATE(5180), - [sym_list_splat_pattern] = STATE(2451), - [sym_as_pattern] = STATE(3089), - [sym_expression] = STATE(4335), - [sym_primary_expression] = STATE(2068), - [sym_not_operator] = STATE(3089), - [sym_boolean_operator] = STATE(3089), - [sym_binary_operator] = STATE(2471), - [sym_unary_operator] = STATE(2471), - [sym_comparison_operator] = STATE(3089), - [sym_lambda] = STATE(3089), - [sym_attribute] = STATE(2471), - [sym_subscript] = STATE(2471), - [sym_ellipsis] = STATE(2471), - [sym_call] = STATE(2471), - [sym_list] = STATE(2471), - [sym_set] = STATE(2471), - [sym_tuple] = STATE(2471), - [sym_dictionary] = STATE(2471), - [sym_pair] = STATE(5180), - [sym_list_comprehension] = STATE(2471), - [sym_dictionary_comprehension] = STATE(2471), - [sym_set_comprehension] = STATE(2471), - [sym_generator_expression] = STATE(2471), - [sym_parenthesized_expression] = STATE(2471), - [sym_conditional_expression] = STATE(3089), - [sym_concatenated_string] = STATE(2471), - [sym_string] = STATE(2147), - [sym_none] = STATE(2471), - [sym_await] = STATE(2471), - [sym_new_expression] = STATE(3089), - [sym_sizeof_expression] = STATE(2471), - [sym_cast_expression] = STATE(2471), - [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(2555), - [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(2741), - [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), + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1514), + [anon_sym_import] = ACTIONS(1514), + [anon_sym_cimport] = ACTIONS(1514), + [anon_sym_from] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_print] = ACTIONS(1514), + [anon_sym_assert] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_del] = ACTIONS(1514), + [anon_sym_raise] = ACTIONS(1514), + [anon_sym_pass] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_async] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_except_STAR] = ACTIONS(1516), + [anon_sym_finally] = ACTIONS(1514), + [anon_sym_with] = ACTIONS(1514), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_global] = ACTIONS(1514), + [anon_sym_nonlocal] = ACTIONS(1514), + [anon_sym_exec] = ACTIONS(1514), + [anon_sym_type] = ACTIONS(1514), + [anon_sym_class] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_lambda] = ACTIONS(1514), + [anon_sym_yield] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), + [anon_sym_None] = ACTIONS(1514), + [sym_integer] = ACTIONS(1514), + [sym_float] = ACTIONS(1516), + [anon_sym_await] = ACTIONS(1514), + [anon_sym_api] = ACTIONS(1514), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1514), + [anon_sym_include] = ACTIONS(1514), + [anon_sym_DEF] = ACTIONS(1514), + [anon_sym_cdef] = ACTIONS(1514), + [anon_sym_cpdef] = ACTIONS(1514), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_ctypedef] = ACTIONS(1514), + [anon_sym_public] = ACTIONS(1514), + [anon_sym_packed] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym_readonly] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1514), + [sym_string_start] = ACTIONS(1516), }, [1003] = { - [ts_builtin_sym_end] = ACTIONS(3139), - [sym_identifier] = ACTIONS(3137), - [anon_sym_import] = ACTIONS(3137), - [anon_sym_cimport] = ACTIONS(3137), - [anon_sym_from] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_print] = ACTIONS(3137), - [anon_sym_assert] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_del] = ACTIONS(3137), - [anon_sym_raise] = ACTIONS(3137), - [anon_sym_pass] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_async] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_except_STAR] = ACTIONS(3139), - [anon_sym_finally] = ACTIONS(3137), - [anon_sym_with] = ACTIONS(3137), - [anon_sym_def] = ACTIONS(3137), - [anon_sym_global] = ACTIONS(3137), - [anon_sym_nonlocal] = ACTIONS(3137), - [anon_sym_exec] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3139), - [anon_sym_lambda] = ACTIONS(3137), - [anon_sym_yield] = ACTIONS(3137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), - [anon_sym_None] = ACTIONS(3137), - [sym_integer] = ACTIONS(3137), - [sym_float] = ACTIONS(3139), - [anon_sym_await] = ACTIONS(3137), - [anon_sym_api] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3137), - [anon_sym_include] = ACTIONS(3137), - [anon_sym_DEF] = ACTIONS(3137), - [anon_sym_cdef] = ACTIONS(3137), - [anon_sym_cpdef] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_ctypedef] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_packed] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_readonly] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(3137), - [sym_string_start] = ACTIONS(3139), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1004] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1005] = { - [ts_builtin_sym_end] = ACTIONS(3163), - [sym_identifier] = ACTIONS(3165), - [anon_sym_import] = ACTIONS(3165), - [anon_sym_cimport] = ACTIONS(3165), - [anon_sym_from] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_print] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_del] = ACTIONS(3165), - [anon_sym_raise] = ACTIONS(3165), - [anon_sym_pass] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_async] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_except] = ACTIONS(3165), - [anon_sym_finally] = ACTIONS(3165), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_def] = ACTIONS(3165), - [anon_sym_global] = ACTIONS(3165), - [anon_sym_nonlocal] = ACTIONS(3165), - [anon_sym_exec] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [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(3165), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_lambda] = ACTIONS(3165), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3163), - [anon_sym_None] = ACTIONS(3165), - [sym_integer] = ACTIONS(3165), - [sym_float] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3165), - [anon_sym_api] = ACTIONS(3165), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3165), - [anon_sym_include] = ACTIONS(3165), - [anon_sym_DEF] = ACTIONS(3165), - [anon_sym_cdef] = ACTIONS(3165), - [anon_sym_cpdef] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_ctypedef] = ACTIONS(3165), - [anon_sym_public] = ACTIONS(3165), - [anon_sym_packed] = ACTIONS(3165), - [anon_sym_inline] = ACTIONS(3165), - [anon_sym_readonly] = ACTIONS(3165), - [anon_sym_sizeof] = ACTIONS(3165), - [sym_string_start] = ACTIONS(3163), + [ts_builtin_sym_end] = ACTIONS(1524), + [sym_identifier] = ACTIONS(1522), + [anon_sym_import] = ACTIONS(1522), + [anon_sym_cimport] = ACTIONS(1522), + [anon_sym_from] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_print] = ACTIONS(1522), + [anon_sym_assert] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_del] = ACTIONS(1522), + [anon_sym_raise] = ACTIONS(1522), + [anon_sym_pass] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_except_STAR] = ACTIONS(1524), + [anon_sym_finally] = ACTIONS(1522), + [anon_sym_with] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_global] = ACTIONS(1522), + [anon_sym_nonlocal] = ACTIONS(1522), + [anon_sym_exec] = ACTIONS(1522), + [anon_sym_type] = ACTIONS(1522), + [anon_sym_class] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_AT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_not] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_lambda] = ACTIONS(1522), + [anon_sym_yield] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), + [anon_sym_None] = ACTIONS(1522), + [sym_integer] = ACTIONS(1522), + [sym_float] = ACTIONS(1524), + [anon_sym_await] = ACTIONS(1522), + [anon_sym_api] = ACTIONS(1522), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1522), + [anon_sym_include] = ACTIONS(1522), + [anon_sym_DEF] = ACTIONS(1522), + [anon_sym_cdef] = ACTIONS(1522), + [anon_sym_cpdef] = ACTIONS(1522), + [anon_sym_new] = ACTIONS(1522), + [anon_sym_ctypedef] = ACTIONS(1522), + [anon_sym_public] = ACTIONS(1522), + [anon_sym_packed] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1522), + [sym_string_start] = ACTIONS(1524), }, [1006] = { - [ts_builtin_sym_end] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3169), - [anon_sym_import] = ACTIONS(3169), - [anon_sym_cimport] = ACTIONS(3169), - [anon_sym_from] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_print] = ACTIONS(3169), - [anon_sym_assert] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3169), - [anon_sym_del] = ACTIONS(3169), - [anon_sym_raise] = ACTIONS(3169), - [anon_sym_pass] = ACTIONS(3169), - [anon_sym_break] = ACTIONS(3169), - [anon_sym_continue] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_else] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3169), - [anon_sym_async] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3169), - [anon_sym_while] = ACTIONS(3169), - [anon_sym_try] = ACTIONS(3169), - [anon_sym_except_STAR] = ACTIONS(3167), - [anon_sym_finally] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3169), - [anon_sym_def] = ACTIONS(3169), - [anon_sym_global] = ACTIONS(3169), - [anon_sym_nonlocal] = ACTIONS(3169), - [anon_sym_exec] = ACTIONS(3169), - [anon_sym_type] = ACTIONS(3169), - [anon_sym_class] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_not] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_lambda] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3167), - [anon_sym_None] = ACTIONS(3169), - [sym_integer] = ACTIONS(3169), - [sym_float] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3169), - [anon_sym_api] = ACTIONS(3169), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3169), - [anon_sym_include] = ACTIONS(3169), - [anon_sym_DEF] = ACTIONS(3169), - [anon_sym_cdef] = ACTIONS(3169), - [anon_sym_cpdef] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3169), - [anon_sym_ctypedef] = ACTIONS(3169), - [anon_sym_public] = ACTIONS(3169), - [anon_sym_packed] = ACTIONS(3169), - [anon_sym_inline] = ACTIONS(3169), - [anon_sym_readonly] = ACTIONS(3169), - [anon_sym_sizeof] = ACTIONS(3169), - [sym_string_start] = ACTIONS(3167), + [ts_builtin_sym_end] = ACTIONS(1528), + [sym_identifier] = ACTIONS(1526), + [anon_sym_import] = ACTIONS(1526), + [anon_sym_cimport] = ACTIONS(1526), + [anon_sym_from] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_print] = ACTIONS(1526), + [anon_sym_assert] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_del] = ACTIONS(1526), + [anon_sym_raise] = ACTIONS(1526), + [anon_sym_pass] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_except_STAR] = ACTIONS(1528), + [anon_sym_finally] = ACTIONS(1526), + [anon_sym_with] = ACTIONS(1526), + [anon_sym_def] = ACTIONS(1526), + [anon_sym_global] = ACTIONS(1526), + [anon_sym_nonlocal] = ACTIONS(1526), + [anon_sym_exec] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_class] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_not] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_lambda] = ACTIONS(1526), + [anon_sym_yield] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), + [anon_sym_None] = ACTIONS(1526), + [sym_integer] = ACTIONS(1526), + [sym_float] = ACTIONS(1528), + [anon_sym_await] = ACTIONS(1526), + [anon_sym_api] = ACTIONS(1526), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1526), + [anon_sym_include] = ACTIONS(1526), + [anon_sym_DEF] = ACTIONS(1526), + [anon_sym_cdef] = ACTIONS(1526), + [anon_sym_cpdef] = ACTIONS(1526), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_ctypedef] = ACTIONS(1526), + [anon_sym_public] = ACTIONS(1526), + [anon_sym_packed] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1526), + [sym_string_start] = ACTIONS(1528), }, [1007] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3943), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(3083), - [anon_sym_from] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_print] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_exec] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(1287), + [ts_builtin_sym_end] = ACTIONS(1528), + [sym_identifier] = ACTIONS(1526), + [anon_sym_import] = ACTIONS(1526), + [anon_sym_cimport] = ACTIONS(1526), + [anon_sym_from] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_print] = ACTIONS(1526), + [anon_sym_assert] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_del] = ACTIONS(1526), + [anon_sym_raise] = ACTIONS(1526), + [anon_sym_pass] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_except] = ACTIONS(1526), + [anon_sym_finally] = ACTIONS(1526), + [anon_sym_with] = ACTIONS(1526), + [anon_sym_def] = ACTIONS(1526), + [anon_sym_global] = ACTIONS(1526), + [anon_sym_nonlocal] = ACTIONS(1526), + [anon_sym_exec] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_class] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_not] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_lambda] = ACTIONS(1526), + [anon_sym_yield] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), + [anon_sym_None] = ACTIONS(1526), + [sym_integer] = ACTIONS(1526), + [sym_float] = ACTIONS(1528), + [anon_sym_await] = ACTIONS(1526), + [anon_sym_api] = ACTIONS(1526), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1526), + [anon_sym_include] = ACTIONS(1526), + [anon_sym_DEF] = ACTIONS(1526), + [anon_sym_cdef] = ACTIONS(1526), + [anon_sym_cpdef] = ACTIONS(1526), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_ctypedef] = ACTIONS(1526), + [anon_sym_public] = ACTIONS(1526), + [anon_sym_packed] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1526), + [sym_string_start] = ACTIONS(1528), + }, + [1008] = { + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3964), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_from] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_print] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(1319), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -116650,695 +117901,1029 @@ 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(969), - [anon_sym_api] = ACTIONS(944), + [anon_sym_await] = ACTIONS(849), + [anon_sym_api] = ACTIONS(824), [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(3083), + [sym__newline] = ACTIONS(3143), [sym_string_start] = ACTIONS(107), }, - [1008] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, [1009] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1518), + [anon_sym_import] = ACTIONS(1518), + [anon_sym_cimport] = ACTIONS(1518), + [anon_sym_from] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_print] = ACTIONS(1518), + [anon_sym_assert] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_del] = ACTIONS(1518), + [anon_sym_raise] = ACTIONS(1518), + [anon_sym_pass] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_except_STAR] = ACTIONS(1520), + [anon_sym_finally] = ACTIONS(1518), + [anon_sym_with] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_global] = ACTIONS(1518), + [anon_sym_nonlocal] = ACTIONS(1518), + [anon_sym_exec] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_class] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_not] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_lambda] = ACTIONS(1518), + [anon_sym_yield] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_None] = ACTIONS(1518), + [sym_integer] = ACTIONS(1518), + [sym_float] = ACTIONS(1520), + [anon_sym_await] = ACTIONS(1518), + [anon_sym_api] = ACTIONS(1518), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1518), + [anon_sym_include] = ACTIONS(1518), + [anon_sym_DEF] = ACTIONS(1518), + [anon_sym_cdef] = ACTIONS(1518), + [anon_sym_cpdef] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_ctypedef] = ACTIONS(1518), + [anon_sym_public] = ACTIONS(1518), + [anon_sym_packed] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym_readonly] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1518), + [sym_string_start] = ACTIONS(1520), }, [1010] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1011] = { - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3181), - [anon_sym_import] = ACTIONS(3181), - [anon_sym_cimport] = ACTIONS(3181), - [anon_sym_from] = ACTIONS(3181), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1012] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1013] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1014] = { + [sym_identifier] = ACTIONS(3177), + [anon_sym_import] = ACTIONS(3177), + [anon_sym_cimport] = ACTIONS(3177), + [anon_sym_from] = ACTIONS(3177), [anon_sym_LPAREN] = ACTIONS(3179), [anon_sym_STAR] = ACTIONS(3179), - [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_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] = ACTIONS(3177), + [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(3179), [anon_sym_AT] = ACTIONS(3179), [anon_sym_DASH] = ACTIONS(3179), [anon_sym_LBRACE] = ACTIONS(3179), [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(3181), + [anon_sym_not] = ACTIONS(3177), [anon_sym_AMP] = ACTIONS(3179), [anon_sym_TILDE] = ACTIONS(3179), [anon_sym_LT] = ACTIONS(3179), - [anon_sym_lambda] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3181), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3177), [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), - [anon_sym_None] = ACTIONS(3181), - [sym_integer] = ACTIONS(3181), + [anon_sym_None] = ACTIONS(3177), + [sym_integer] = ACTIONS(3177), [sym_float] = ACTIONS(3179), - [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), + [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(3179), [sym_string_start] = ACTIONS(3179), }, - [1012] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3985), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_print] = ACTIONS(2641), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(2641), - [anon_sym_async] = ACTIONS(2641), - [anon_sym_exec] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [1013] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [1014] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, [1015] = { - [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__dedent] = ACTIONS(1480), - [sym_string_start] = ACTIONS(1480), + [sym_identifier] = ACTIONS(3147), + [anon_sym_import] = ACTIONS(3147), + [anon_sym_cimport] = ACTIONS(3147), + [anon_sym_from] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_print] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_del] = ACTIONS(3147), + [anon_sym_raise] = ACTIONS(3147), + [anon_sym_pass] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_else] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_async] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [anon_sym_except_STAR] = ACTIONS(3145), + [anon_sym_finally] = ACTIONS(3147), + [anon_sym_with] = ACTIONS(3147), + [anon_sym_def] = ACTIONS(3147), + [anon_sym_global] = ACTIONS(3147), + [anon_sym_nonlocal] = ACTIONS(3147), + [anon_sym_exec] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_class] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_not] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_lambda] = ACTIONS(3147), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), + [anon_sym_None] = ACTIONS(3147), + [sym_integer] = ACTIONS(3147), + [sym_float] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3147), + [anon_sym_api] = ACTIONS(3147), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3147), + [anon_sym_include] = ACTIONS(3147), + [anon_sym_DEF] = ACTIONS(3147), + [anon_sym_cdef] = ACTIONS(3147), + [anon_sym_cpdef] = ACTIONS(3147), + [anon_sym_new] = ACTIONS(3147), + [anon_sym_ctypedef] = ACTIONS(3147), + [anon_sym_public] = ACTIONS(3147), + [anon_sym_packed] = ACTIONS(3147), + [anon_sym_inline] = ACTIONS(3147), + [anon_sym_readonly] = ACTIONS(3147), + [anon_sym_sizeof] = ACTIONS(3147), + [sym__dedent] = ACTIONS(3145), + [sym_string_start] = ACTIONS(3145), }, [1016] = { - [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), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1017] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3943), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(3071), - [anon_sym_from] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_print] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_exec] = ACTIONS(944), - [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(969), - [anon_sym_api] = ACTIONS(944), - [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(3071), - [sym_string_start] = ACTIONS(107), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1018] = { - [ts_builtin_sym_end] = ACTIONS(3193), + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1514), + [anon_sym_import] = ACTIONS(1514), + [anon_sym_cimport] = ACTIONS(1514), + [anon_sym_from] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_print] = ACTIONS(1514), + [anon_sym_assert] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_del] = ACTIONS(1514), + [anon_sym_raise] = ACTIONS(1514), + [anon_sym_pass] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_async] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_except] = ACTIONS(1514), + [anon_sym_finally] = ACTIONS(1514), + [anon_sym_with] = ACTIONS(1514), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_global] = ACTIONS(1514), + [anon_sym_nonlocal] = ACTIONS(1514), + [anon_sym_exec] = ACTIONS(1514), + [anon_sym_type] = ACTIONS(1514), + [anon_sym_class] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_lambda] = ACTIONS(1514), + [anon_sym_yield] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), + [anon_sym_None] = ACTIONS(1514), + [sym_integer] = ACTIONS(1514), + [sym_float] = ACTIONS(1516), + [anon_sym_await] = ACTIONS(1514), + [anon_sym_api] = ACTIONS(1514), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1514), + [anon_sym_include] = ACTIONS(1514), + [anon_sym_DEF] = ACTIONS(1514), + [anon_sym_cdef] = ACTIONS(1514), + [anon_sym_cpdef] = ACTIONS(1514), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_ctypedef] = ACTIONS(1514), + [anon_sym_public] = ACTIONS(1514), + [anon_sym_packed] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym_readonly] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1514), + [sym_string_start] = ACTIONS(1516), + }, + [1019] = { + [sym_identifier] = ACTIONS(1522), + [anon_sym_import] = ACTIONS(1522), + [anon_sym_cimport] = ACTIONS(1522), + [anon_sym_from] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_print] = ACTIONS(1522), + [anon_sym_assert] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_del] = ACTIONS(1522), + [anon_sym_raise] = ACTIONS(1522), + [anon_sym_pass] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_except] = ACTIONS(1522), + [anon_sym_finally] = ACTIONS(1522), + [anon_sym_with] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_global] = ACTIONS(1522), + [anon_sym_nonlocal] = ACTIONS(1522), + [anon_sym_exec] = ACTIONS(1522), + [anon_sym_type] = ACTIONS(1522), + [anon_sym_class] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_AT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_not] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_lambda] = ACTIONS(1522), + [anon_sym_yield] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), + [anon_sym_None] = ACTIONS(1522), + [sym_integer] = ACTIONS(1522), + [sym_float] = ACTIONS(1524), + [anon_sym_await] = ACTIONS(1522), + [anon_sym_api] = ACTIONS(1522), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1522), + [anon_sym_include] = ACTIONS(1522), + [anon_sym_DEF] = ACTIONS(1522), + [anon_sym_cdef] = ACTIONS(1522), + [anon_sym_cpdef] = ACTIONS(1522), + [anon_sym_new] = ACTIONS(1522), + [anon_sym_ctypedef] = ACTIONS(1522), + [anon_sym_public] = ACTIONS(1522), + [anon_sym_packed] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1522), + [sym__dedent] = ACTIONS(1524), + [sym_string_start] = ACTIONS(1524), + }, + [1020] = { + [sym_identifier] = ACTIONS(1526), + [anon_sym_import] = ACTIONS(1526), + [anon_sym_cimport] = ACTIONS(1526), + [anon_sym_from] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_print] = ACTIONS(1526), + [anon_sym_assert] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_del] = ACTIONS(1526), + [anon_sym_raise] = ACTIONS(1526), + [anon_sym_pass] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_except] = ACTIONS(1526), + [anon_sym_finally] = ACTIONS(1526), + [anon_sym_with] = ACTIONS(1526), + [anon_sym_def] = ACTIONS(1526), + [anon_sym_global] = ACTIONS(1526), + [anon_sym_nonlocal] = ACTIONS(1526), + [anon_sym_exec] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_class] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_not] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_lambda] = ACTIONS(1526), + [anon_sym_yield] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), + [anon_sym_None] = ACTIONS(1526), + [sym_integer] = ACTIONS(1526), + [sym_float] = ACTIONS(1528), + [anon_sym_await] = ACTIONS(1526), + [anon_sym_api] = ACTIONS(1526), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1526), + [anon_sym_include] = ACTIONS(1526), + [anon_sym_DEF] = ACTIONS(1526), + [anon_sym_cdef] = ACTIONS(1526), + [anon_sym_cpdef] = ACTIONS(1526), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_ctypedef] = ACTIONS(1526), + [anon_sym_public] = ACTIONS(1526), + [anon_sym_packed] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1526), + [sym__dedent] = ACTIONS(1528), + [sym_string_start] = ACTIONS(1528), + }, + [1021] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1022] = { + [sym_identifier] = ACTIONS(3187), + [anon_sym_import] = ACTIONS(3187), + [anon_sym_cimport] = ACTIONS(3187), + [anon_sym_from] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_print] = ACTIONS(3187), + [anon_sym_assert] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_del] = ACTIONS(3187), + [anon_sym_raise] = ACTIONS(3187), + [anon_sym_pass] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_else] = ACTIONS(3187), + [anon_sym_match] = ACTIONS(3187), + [anon_sym_async] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_except] = ACTIONS(3187), + [anon_sym_finally] = ACTIONS(3187), + [anon_sym_with] = ACTIONS(3187), + [anon_sym_def] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_nonlocal] = ACTIONS(3187), + [anon_sym_exec] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_lambda] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), + [anon_sym_None] = ACTIONS(3187), + [sym_integer] = ACTIONS(3187), + [sym_float] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3187), + [anon_sym_api] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3187), + [anon_sym_include] = ACTIONS(3187), + [anon_sym_DEF] = ACTIONS(3187), + [anon_sym_cdef] = ACTIONS(3187), + [anon_sym_cpdef] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_ctypedef] = ACTIONS(3187), + [anon_sym_public] = ACTIONS(3187), + [anon_sym_packed] = ACTIONS(3187), + [anon_sym_inline] = ACTIONS(3187), + [anon_sym_readonly] = ACTIONS(3187), + [anon_sym_sizeof] = ACTIONS(3187), + [sym__dedent] = ACTIONS(3189), + [sym_string_start] = ACTIONS(3189), + }, + [1023] = { + [sym_identifier] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3191), + [anon_sym_cimport] = ACTIONS(3191), + [anon_sym_from] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_print] = ACTIONS(3191), + [anon_sym_assert] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_del] = ACTIONS(3191), + [anon_sym_raise] = ACTIONS(3191), + [anon_sym_pass] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_else] = ACTIONS(3191), + [anon_sym_match] = ACTIONS(3191), + [anon_sym_async] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_except] = ACTIONS(3191), + [anon_sym_finally] = ACTIONS(3191), + [anon_sym_with] = ACTIONS(3191), + [anon_sym_def] = ACTIONS(3191), + [anon_sym_global] = ACTIONS(3191), + [anon_sym_nonlocal] = ACTIONS(3191), + [anon_sym_exec] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_not] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_lambda] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), + [anon_sym_None] = ACTIONS(3191), + [sym_integer] = ACTIONS(3191), + [sym_float] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3191), + [anon_sym_api] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3191), + [anon_sym_include] = ACTIONS(3191), + [anon_sym_DEF] = ACTIONS(3191), + [anon_sym_cdef] = ACTIONS(3191), + [anon_sym_cpdef] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_ctypedef] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_packed] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym_readonly] = ACTIONS(3191), + [anon_sym_sizeof] = ACTIONS(3191), + [sym__dedent] = ACTIONS(3193), + [sym_string_start] = ACTIONS(3193), + }, + [1024] = { [sym_identifier] = ACTIONS(3195), [anon_sym_import] = ACTIONS(3195), [anon_sym_cimport] = ACTIONS(3195), [anon_sym_from] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), [anon_sym_print] = ACTIONS(3195), [anon_sym_assert] = ACTIONS(3195), [anon_sym_return] = ACTIONS(3195), @@ -117354,7 +118939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3195), [anon_sym_while] = ACTIONS(3195), [anon_sym_try] = ACTIONS(3195), - [anon_sym_except] = ACTIONS(3195), + [anon_sym_except_STAR] = ACTIONS(3197), [anon_sym_finally] = ACTIONS(3195), [anon_sym_with] = ACTIONS(3195), [anon_sym_def] = ACTIONS(3195), @@ -117363,21 +118948,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3195), [anon_sym_type] = ACTIONS(3195), [anon_sym_class] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), [anon_sym_not] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), [anon_sym_lambda] = ACTIONS(3195), [anon_sym_yield] = ACTIONS(3195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), [anon_sym_None] = ACTIONS(3195), [sym_integer] = ACTIONS(3195), - [sym_float] = ACTIONS(3193), + [sym_float] = ACTIONS(3197), [anon_sym_await] = ACTIONS(3195), [anon_sym_api] = ACTIONS(3195), [sym_true] = ACTIONS(3195), @@ -117396,552 +118981,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3195), [anon_sym_readonly] = ACTIONS(3195), [anon_sym_sizeof] = ACTIONS(3195), - [sym_string_start] = ACTIONS(3193), - }, - [1019] = { - [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__dedent] = ACTIONS(1488), - [sym_string_start] = ACTIONS(1488), - }, - [1020] = { - [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__dedent] = ACTIONS(1488), - [sym_string_start] = ACTIONS(1488), - }, - [1021] = { - [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), - }, - [1022] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [1023] = { - [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(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), - }, - [1024] = { - [sym_identifier] = ACTIONS(1494), - [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_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_except] = 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__dedent] = ACTIONS(1496), - [sym_string_start] = ACTIONS(1496), + [sym__dedent] = ACTIONS(3197), + [sym_string_start] = ACTIONS(3197), }, [1025] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), [anon_sym_RBRACK] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1026] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_identifier] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_cimport] = ACTIONS(1510), + [anon_sym_from] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_print] = ACTIONS(1510), + [anon_sym_assert] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_del] = ACTIONS(1510), + [anon_sym_raise] = ACTIONS(1510), + [anon_sym_pass] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_except] = ACTIONS(1510), + [anon_sym_finally] = ACTIONS(1510), + [anon_sym_with] = ACTIONS(1510), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_global] = ACTIONS(1510), + [anon_sym_nonlocal] = ACTIONS(1510), + [anon_sym_exec] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_not] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_lambda] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), + [anon_sym_None] = ACTIONS(1510), + [sym_integer] = ACTIONS(1510), + [sym_float] = ACTIONS(1512), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_api] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1510), + [anon_sym_include] = ACTIONS(1510), + [anon_sym_DEF] = ACTIONS(1510), + [anon_sym_cdef] = ACTIONS(1510), + [anon_sym_cpdef] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_ctypedef] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_packed] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_readonly] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1510), + [sym__dedent] = ACTIONS(1512), + [sym_string_start] = ACTIONS(1512), }, [1027] = { - [ts_builtin_sym_end] = ACTIONS(3203), + [sym_identifier] = ACTIONS(1518), + [anon_sym_import] = ACTIONS(1518), + [anon_sym_cimport] = ACTIONS(1518), + [anon_sym_from] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_print] = ACTIONS(1518), + [anon_sym_assert] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_del] = ACTIONS(1518), + [anon_sym_raise] = ACTIONS(1518), + [anon_sym_pass] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_except] = ACTIONS(1518), + [anon_sym_finally] = ACTIONS(1518), + [anon_sym_with] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_global] = ACTIONS(1518), + [anon_sym_nonlocal] = ACTIONS(1518), + [anon_sym_exec] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_class] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_not] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_lambda] = ACTIONS(1518), + [anon_sym_yield] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_None] = ACTIONS(1518), + [sym_integer] = ACTIONS(1518), + [sym_float] = ACTIONS(1520), + [anon_sym_await] = ACTIONS(1518), + [anon_sym_api] = ACTIONS(1518), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1518), + [anon_sym_include] = ACTIONS(1518), + [anon_sym_DEF] = ACTIONS(1518), + [anon_sym_cdef] = ACTIONS(1518), + [anon_sym_cpdef] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_ctypedef] = ACTIONS(1518), + [anon_sym_public] = ACTIONS(1518), + [anon_sym_packed] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym_readonly] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1518), + [sym__dedent] = ACTIONS(1520), + [sym_string_start] = ACTIONS(1520), + }, + [1028] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1029] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1030] = { + [sym_identifier] = ACTIONS(1514), + [anon_sym_import] = ACTIONS(1514), + [anon_sym_cimport] = ACTIONS(1514), + [anon_sym_from] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_print] = ACTIONS(1514), + [anon_sym_assert] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_del] = ACTIONS(1514), + [anon_sym_raise] = ACTIONS(1514), + [anon_sym_pass] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_async] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_except] = ACTIONS(1514), + [anon_sym_finally] = ACTIONS(1514), + [anon_sym_with] = ACTIONS(1514), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_global] = ACTIONS(1514), + [anon_sym_nonlocal] = ACTIONS(1514), + [anon_sym_exec] = ACTIONS(1514), + [anon_sym_type] = ACTIONS(1514), + [anon_sym_class] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_lambda] = ACTIONS(1514), + [anon_sym_yield] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), + [anon_sym_None] = ACTIONS(1514), + [sym_integer] = ACTIONS(1514), + [sym_float] = ACTIONS(1516), + [anon_sym_await] = ACTIONS(1514), + [anon_sym_api] = ACTIONS(1514), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1514), + [anon_sym_include] = ACTIONS(1514), + [anon_sym_DEF] = ACTIONS(1514), + [anon_sym_cdef] = ACTIONS(1514), + [anon_sym_cpdef] = ACTIONS(1514), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_ctypedef] = ACTIONS(1514), + [anon_sym_public] = ACTIONS(1514), + [anon_sym_packed] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym_readonly] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1514), + [sym__dedent] = ACTIONS(1516), + [sym_string_start] = ACTIONS(1516), + }, + [1031] = { [sym_identifier] = ACTIONS(3205), [anon_sym_import] = ACTIONS(3205), [anon_sym_cimport] = ACTIONS(3205), [anon_sym_from] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3207), [anon_sym_print] = ACTIONS(3205), [anon_sym_assert] = ACTIONS(3205), [anon_sym_return] = ACTIONS(3205), @@ -117957,7 +119408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3205), [anon_sym_while] = ACTIONS(3205), [anon_sym_try] = ACTIONS(3205), - [anon_sym_except_STAR] = ACTIONS(3203), + [anon_sym_except] = ACTIONS(3205), [anon_sym_finally] = ACTIONS(3205), [anon_sym_with] = ACTIONS(3205), [anon_sym_def] = ACTIONS(3205), @@ -117966,21 +119417,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3205), [anon_sym_type] = ACTIONS(3205), [anon_sym_class] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_AT] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_AT] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), [anon_sym_not] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), + [anon_sym_AMP] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_LT] = ACTIONS(3207), [anon_sym_lambda] = ACTIONS(3205), [anon_sym_yield] = ACTIONS(3205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3207), [anon_sym_None] = ACTIONS(3205), [sym_integer] = ACTIONS(3205), - [sym_float] = ACTIONS(3203), + [sym_float] = ACTIONS(3207), [anon_sym_await] = ACTIONS(3205), [anon_sym_api] = ACTIONS(3205), [sym_true] = ACTIONS(3205), @@ -117999,1824 +119450,2697 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3205), [anon_sym_readonly] = ACTIONS(3205), [anon_sym_sizeof] = ACTIONS(3205), - [sym_string_start] = ACTIONS(3203), - }, - [1028] = { - [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), - }, - [1029] = { - [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__dedent] = ACTIONS(1492), - [sym_string_start] = ACTIONS(1492), - }, - [1030] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [1031] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym__dedent] = ACTIONS(3207), + [sym_string_start] = ACTIONS(3207), }, [1032] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4101), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3211), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1033] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(3138), + [sym__named_expression_lhs] = STATE(5559), + [sym_dictionary_splat] = STATE(5400), + [sym_list_splat_pattern] = STATE(2349), + [sym_as_pattern] = STATE(3138), + [sym_expression] = STATE(4364), + [sym_primary_expression] = STATE(2108), + [sym_not_operator] = STATE(3138), + [sym_boolean_operator] = STATE(3138), + [sym_binary_operator] = STATE(2443), + [sym_unary_operator] = STATE(2443), + [sym_comparison_operator] = STATE(3138), + [sym_lambda] = STATE(3138), + [sym_attribute] = STATE(2443), + [sym_subscript] = STATE(2443), + [sym_ellipsis] = STATE(2443), + [sym_call] = STATE(2443), + [sym_list] = STATE(2443), + [sym_set] = STATE(2443), + [sym_tuple] = STATE(2443), + [sym_dictionary] = STATE(2443), + [sym_pair] = STATE(5400), + [sym_list_comprehension] = STATE(2443), + [sym_dictionary_comprehension] = STATE(2443), + [sym_set_comprehension] = STATE(2443), + [sym_generator_expression] = STATE(2443), + [sym_parenthesized_expression] = STATE(2443), + [sym_conditional_expression] = STATE(3138), + [sym_concatenated_string] = STATE(2443), + [sym_string] = STATE(2143), + [sym_none] = STATE(2443), + [sym_await] = STATE(2443), + [sym_new_expression] = STATE(3138), + [sym_sizeof_expression] = STATE(2443), + [sym_cast_expression] = STATE(2443), + [sym_identifier] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_exec] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_not] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_lambda] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_None] = ACTIONS(1267), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_api] = ACTIONS(1249), + [sym_true] = ACTIONS(1269), + [sym_false] = ACTIONS(1269), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_sizeof] = ACTIONS(1277), + [sym_string_start] = ACTIONS(1279), }, [1034] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_identifier] = ACTIONS(3213), + [anon_sym_import] = ACTIONS(3213), + [anon_sym_cimport] = ACTIONS(3213), + [anon_sym_from] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_print] = ACTIONS(3213), + [anon_sym_assert] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_del] = ACTIONS(3213), + [anon_sym_raise] = ACTIONS(3213), + [anon_sym_pass] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_match] = ACTIONS(3213), + [anon_sym_async] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_except] = ACTIONS(3213), + [anon_sym_finally] = ACTIONS(3213), + [anon_sym_with] = ACTIONS(3213), + [anon_sym_def] = ACTIONS(3213), + [anon_sym_global] = ACTIONS(3213), + [anon_sym_nonlocal] = ACTIONS(3213), + [anon_sym_exec] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_AT] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_not] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_LT] = ACTIONS(3215), + [anon_sym_lambda] = ACTIONS(3213), + [anon_sym_yield] = ACTIONS(3213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3215), + [anon_sym_None] = ACTIONS(3213), + [sym_integer] = ACTIONS(3213), + [sym_float] = ACTIONS(3215), + [anon_sym_await] = ACTIONS(3213), + [anon_sym_api] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3213), + [anon_sym_include] = ACTIONS(3213), + [anon_sym_DEF] = ACTIONS(3213), + [anon_sym_cdef] = ACTIONS(3213), + [anon_sym_cpdef] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_ctypedef] = ACTIONS(3213), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_packed] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym_readonly] = ACTIONS(3213), + [anon_sym_sizeof] = ACTIONS(3213), + [sym__dedent] = ACTIONS(3215), + [sym_string_start] = ACTIONS(3215), }, [1035] = { - [ts_builtin_sym_end] = ACTIONS(1496), - [sym_identifier] = ACTIONS(1494), - [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_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_except_STAR] = ACTIONS(1496), - [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), + [ts_builtin_sym_end] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_cimport] = ACTIONS(3219), + [anon_sym_from] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_print] = ACTIONS(3219), + [anon_sym_assert] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_del] = ACTIONS(3219), + [anon_sym_raise] = ACTIONS(3219), + [anon_sym_pass] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_match] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_except] = ACTIONS(3219), + [anon_sym_finally] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_def] = ACTIONS(3219), + [anon_sym_global] = ACTIONS(3219), + [anon_sym_nonlocal] = ACTIONS(3219), + [anon_sym_exec] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_not] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_lambda] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), + [anon_sym_None] = ACTIONS(3219), + [sym_integer] = ACTIONS(3219), + [sym_float] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_api] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3219), + [anon_sym_include] = ACTIONS(3219), + [anon_sym_DEF] = ACTIONS(3219), + [anon_sym_cdef] = ACTIONS(3219), + [anon_sym_cpdef] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_ctypedef] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_packed] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_sizeof] = ACTIONS(3219), + [sym_string_start] = ACTIONS(3217), }, [1036] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [ts_builtin_sym_end] = ACTIONS(3221), + [sym_identifier] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_cimport] = ACTIONS(3223), + [anon_sym_from] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_print] = ACTIONS(3223), + [anon_sym_assert] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_del] = ACTIONS(3223), + [anon_sym_raise] = ACTIONS(3223), + [anon_sym_pass] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3223), + [anon_sym_match] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_except_STAR] = ACTIONS(3221), + [anon_sym_finally] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_def] = ACTIONS(3223), + [anon_sym_global] = ACTIONS(3223), + [anon_sym_nonlocal] = ACTIONS(3223), + [anon_sym_exec] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_not] = ACTIONS(3223), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_lambda] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), + [anon_sym_None] = ACTIONS(3223), + [sym_integer] = ACTIONS(3223), + [sym_float] = ACTIONS(3221), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_api] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3223), + [anon_sym_include] = ACTIONS(3223), + [anon_sym_DEF] = ACTIONS(3223), + [anon_sym_cdef] = ACTIONS(3223), + [anon_sym_cpdef] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_ctypedef] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_packed] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_sizeof] = ACTIONS(3223), + [sym_string_start] = ACTIONS(3221), }, [1037] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1038] = { - [sym_identifier] = ACTIONS(3153), - [anon_sym_import] = ACTIONS(3153), - [anon_sym_cimport] = ACTIONS(3153), - [anon_sym_from] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_print] = ACTIONS(3153), - [anon_sym_assert] = ACTIONS(3153), - [anon_sym_return] = ACTIONS(3153), - [anon_sym_del] = ACTIONS(3153), - [anon_sym_raise] = ACTIONS(3153), - [anon_sym_pass] = ACTIONS(3153), - [anon_sym_break] = ACTIONS(3153), - [anon_sym_continue] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_else] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(3153), - [anon_sym_async] = ACTIONS(3153), - [anon_sym_for] = ACTIONS(3153), - [anon_sym_while] = ACTIONS(3153), - [anon_sym_try] = ACTIONS(3153), - [anon_sym_except] = ACTIONS(3153), - [anon_sym_finally] = ACTIONS(3153), - [anon_sym_with] = ACTIONS(3153), - [anon_sym_def] = ACTIONS(3153), - [anon_sym_global] = ACTIONS(3153), - [anon_sym_nonlocal] = ACTIONS(3153), - [anon_sym_exec] = ACTIONS(3153), - [anon_sym_type] = ACTIONS(3153), - [anon_sym_class] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_not] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_lambda] = ACTIONS(3153), - [anon_sym_yield] = ACTIONS(3153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), - [anon_sym_None] = ACTIONS(3153), - [sym_integer] = ACTIONS(3153), - [sym_float] = ACTIONS(3151), - [anon_sym_await] = ACTIONS(3153), - [anon_sym_api] = ACTIONS(3153), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3153), - [anon_sym_include] = ACTIONS(3153), - [anon_sym_DEF] = ACTIONS(3153), - [anon_sym_cdef] = ACTIONS(3153), - [anon_sym_cpdef] = ACTIONS(3153), - [anon_sym_new] = ACTIONS(3153), - [anon_sym_ctypedef] = ACTIONS(3153), - [anon_sym_public] = ACTIONS(3153), - [anon_sym_packed] = ACTIONS(3153), - [anon_sym_inline] = ACTIONS(3153), - [anon_sym_readonly] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3153), - [sym__dedent] = ACTIONS(3151), - [sym_string_start] = ACTIONS(3151), + [sym_identifier] = ACTIONS(3159), + [anon_sym_import] = ACTIONS(3159), + [anon_sym_cimport] = ACTIONS(3159), + [anon_sym_from] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3157), + [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(3157), + [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(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(3159), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_lambda] = ACTIONS(3159), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), + [anon_sym_None] = ACTIONS(3159), + [sym_integer] = ACTIONS(3159), + [sym_float] = ACTIONS(3157), + [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(3157), + [sym_string_start] = ACTIONS(3157), }, [1039] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3964), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_from] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_print] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(1319), + [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(849), + [anon_sym_api] = ACTIONS(824), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(3085), + [sym_string_start] = ACTIONS(107), }, [1040] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [ts_builtin_sym_end] = ACTIONS(1524), + [sym_identifier] = ACTIONS(1522), + [anon_sym_import] = ACTIONS(1522), + [anon_sym_cimport] = ACTIONS(1522), + [anon_sym_from] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_print] = ACTIONS(1522), + [anon_sym_assert] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_del] = ACTIONS(1522), + [anon_sym_raise] = ACTIONS(1522), + [anon_sym_pass] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_except] = ACTIONS(1522), + [anon_sym_finally] = ACTIONS(1522), + [anon_sym_with] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_global] = ACTIONS(1522), + [anon_sym_nonlocal] = ACTIONS(1522), + [anon_sym_exec] = ACTIONS(1522), + [anon_sym_type] = ACTIONS(1522), + [anon_sym_class] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_AT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_not] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_lambda] = ACTIONS(1522), + [anon_sym_yield] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), + [anon_sym_None] = ACTIONS(1522), + [sym_integer] = ACTIONS(1522), + [sym_float] = ACTIONS(1524), + [anon_sym_await] = ACTIONS(1522), + [anon_sym_api] = ACTIONS(1522), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1522), + [anon_sym_include] = ACTIONS(1522), + [anon_sym_DEF] = ACTIONS(1522), + [anon_sym_cdef] = ACTIONS(1522), + [anon_sym_cpdef] = ACTIONS(1522), + [anon_sym_new] = ACTIONS(1522), + [anon_sym_ctypedef] = ACTIONS(1522), + [anon_sym_public] = ACTIONS(1522), + [anon_sym_packed] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1522), + [sym_string_start] = ACTIONS(1524), }, [1041] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1042] = { - [sym_identifier] = ACTIONS(3165), - [anon_sym_import] = ACTIONS(3165), - [anon_sym_cimport] = ACTIONS(3165), - [anon_sym_from] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_print] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_del] = ACTIONS(3165), - [anon_sym_raise] = ACTIONS(3165), - [anon_sym_pass] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_async] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_except] = ACTIONS(3165), - [anon_sym_finally] = ACTIONS(3165), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_def] = ACTIONS(3165), - [anon_sym_global] = ACTIONS(3165), - [anon_sym_nonlocal] = ACTIONS(3165), - [anon_sym_exec] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [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(3165), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_lambda] = ACTIONS(3165), - [anon_sym_yield] = ACTIONS(3165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3163), - [anon_sym_None] = ACTIONS(3165), - [sym_integer] = ACTIONS(3165), - [sym_float] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3165), - [anon_sym_api] = ACTIONS(3165), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3165), - [anon_sym_include] = ACTIONS(3165), - [anon_sym_DEF] = ACTIONS(3165), - [anon_sym_cdef] = ACTIONS(3165), - [anon_sym_cpdef] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_ctypedef] = ACTIONS(3165), - [anon_sym_public] = ACTIONS(3165), - [anon_sym_packed] = ACTIONS(3165), - [anon_sym_inline] = ACTIONS(3165), - [anon_sym_readonly] = ACTIONS(3165), - [anon_sym_sizeof] = ACTIONS(3165), - [sym__dedent] = ACTIONS(3163), - [sym_string_start] = ACTIONS(3163), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1043] = { - [sym_identifier] = ACTIONS(3181), - [anon_sym_import] = ACTIONS(3181), - [anon_sym_cimport] = ACTIONS(3181), - [anon_sym_from] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3179), - [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(3179), - [anon_sym_AT] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_lambda] = ACTIONS(3181), - [anon_sym_yield] = ACTIONS(3181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), - [anon_sym_None] = ACTIONS(3181), - [sym_integer] = ACTIONS(3181), - [sym_float] = ACTIONS(3179), - [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(3179), - [sym_string_start] = ACTIONS(3179), + [sym_identifier] = ACTIONS(1522), + [anon_sym_import] = ACTIONS(1522), + [anon_sym_cimport] = ACTIONS(1522), + [anon_sym_from] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_print] = ACTIONS(1522), + [anon_sym_assert] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_del] = ACTIONS(1522), + [anon_sym_raise] = ACTIONS(1522), + [anon_sym_pass] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_else] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), + [anon_sym_except_STAR] = ACTIONS(1524), + [anon_sym_finally] = ACTIONS(1522), + [anon_sym_with] = ACTIONS(1522), + [anon_sym_def] = ACTIONS(1522), + [anon_sym_global] = ACTIONS(1522), + [anon_sym_nonlocal] = ACTIONS(1522), + [anon_sym_exec] = ACTIONS(1522), + [anon_sym_type] = ACTIONS(1522), + [anon_sym_class] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_AT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_not] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_lambda] = ACTIONS(1522), + [anon_sym_yield] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), + [anon_sym_None] = ACTIONS(1522), + [sym_integer] = ACTIONS(1522), + [sym_float] = ACTIONS(1524), + [anon_sym_await] = ACTIONS(1522), + [anon_sym_api] = ACTIONS(1522), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1522), + [anon_sym_include] = ACTIONS(1522), + [anon_sym_DEF] = ACTIONS(1522), + [anon_sym_cdef] = ACTIONS(1522), + [anon_sym_cpdef] = ACTIONS(1522), + [anon_sym_new] = ACTIONS(1522), + [anon_sym_ctypedef] = ACTIONS(1522), + [anon_sym_public] = ACTIONS(1522), + [anon_sym_packed] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym_readonly] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1522), + [sym__dedent] = ACTIONS(1524), + [sym_string_start] = ACTIONS(1524), }, [1044] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1045] = { - [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), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1046] = { - [sym_identifier] = ACTIONS(3127), - [anon_sym_import] = ACTIONS(3127), - [anon_sym_cimport] = ACTIONS(3127), - [anon_sym_from] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [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(3125), - [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(3125), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_not] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_lambda] = ACTIONS(3127), - [anon_sym_yield] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3125), - [anon_sym_None] = ACTIONS(3127), - [sym_integer] = ACTIONS(3127), - [sym_float] = ACTIONS(3125), - [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(3125), - [sym_string_start] = ACTIONS(3125), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1047] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1048] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1049] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1050] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1051] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4110), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_COMMA] = ACTIONS(3247), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1052] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), + [sym_identifier] = ACTIONS(1526), + [anon_sym_import] = ACTIONS(1526), + [anon_sym_cimport] = ACTIONS(1526), + [anon_sym_from] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_print] = ACTIONS(1526), + [anon_sym_assert] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_del] = ACTIONS(1526), + [anon_sym_raise] = ACTIONS(1526), + [anon_sym_pass] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_else] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_try] = ACTIONS(1526), + [anon_sym_except_STAR] = ACTIONS(1528), + [anon_sym_finally] = ACTIONS(1526), + [anon_sym_with] = ACTIONS(1526), + [anon_sym_def] = ACTIONS(1526), + [anon_sym_global] = ACTIONS(1526), + [anon_sym_nonlocal] = ACTIONS(1526), + [anon_sym_exec] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_class] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_not] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_lambda] = ACTIONS(1526), + [anon_sym_yield] = ACTIONS(1526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), + [anon_sym_None] = ACTIONS(1526), + [sym_integer] = ACTIONS(1526), + [sym_float] = ACTIONS(1528), + [anon_sym_await] = ACTIONS(1526), + [anon_sym_api] = ACTIONS(1526), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1526), + [anon_sym_include] = ACTIONS(1526), + [anon_sym_DEF] = ACTIONS(1526), + [anon_sym_cdef] = ACTIONS(1526), + [anon_sym_cpdef] = ACTIONS(1526), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_ctypedef] = ACTIONS(1526), + [anon_sym_public] = ACTIONS(1526), + [anon_sym_packed] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym_readonly] = ACTIONS(1526), + [anon_sym_sizeof] = ACTIONS(1526), + [sym__dedent] = ACTIONS(1528), + [sym_string_start] = ACTIONS(1528), }, [1053] = { - [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), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1054] = { - [sym_named_expression] = STATE(3424), - [sym__named_expression_lhs] = STATE(5736), - [sym_expression_list] = STATE(5315), - [sym_list_splat_pattern] = STATE(2110), - [sym_as_pattern] = STATE(3424), - [sym_expression] = STATE(3961), - [sym_primary_expression] = STATE(2032), - [sym_not_operator] = STATE(3424), - [sym_boolean_operator] = STATE(3424), - [sym_binary_operator] = STATE(2096), - [sym_unary_operator] = STATE(2096), - [sym_comparison_operator] = STATE(3424), - [sym_lambda] = STATE(3424), - [sym_attribute] = STATE(2096), - [sym_subscript] = STATE(2096), - [sym_ellipsis] = STATE(2096), - [sym_call] = STATE(2096), - [sym_list] = STATE(2096), - [sym_set] = STATE(2096), - [sym_tuple] = STATE(2096), - [sym_dictionary] = STATE(2096), - [sym_list_comprehension] = STATE(2096), - [sym_dictionary_comprehension] = STATE(2096), - [sym_set_comprehension] = STATE(2096), - [sym_generator_expression] = STATE(2096), - [sym_parenthesized_expression] = STATE(2096), - [sym_conditional_expression] = STATE(3424), - [sym_concatenated_string] = STATE(2096), - [sym_string] = STATE(2043), - [sym_none] = STATE(2096), - [sym_await] = STATE(2096), - [sym_new_expression] = STATE(3424), - [sym_sizeof_expression] = STATE(2096), - [sym_cast_expression] = STATE(2096), - [sym_identifier] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_print] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_exec] = ACTIONS(944), - [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(969), - [anon_sym_api] = ACTIONS(944), - [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(3241), - [sym_string_start] = ACTIONS(107), + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, [1055] = { + [sym_identifier] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_cimport] = ACTIONS(1510), + [anon_sym_from] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_print] = ACTIONS(1510), + [anon_sym_assert] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_del] = ACTIONS(1510), + [anon_sym_raise] = ACTIONS(1510), + [anon_sym_pass] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_except_STAR] = ACTIONS(1512), + [anon_sym_finally] = ACTIONS(1510), + [anon_sym_with] = ACTIONS(1510), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_global] = ACTIONS(1510), + [anon_sym_nonlocal] = ACTIONS(1510), + [anon_sym_exec] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_not] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_lambda] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), + [anon_sym_None] = ACTIONS(1510), + [sym_integer] = ACTIONS(1510), + [sym_float] = ACTIONS(1512), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_api] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1510), + [anon_sym_include] = ACTIONS(1510), + [anon_sym_DEF] = ACTIONS(1510), + [anon_sym_cdef] = ACTIONS(1510), + [anon_sym_cpdef] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_ctypedef] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_packed] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_readonly] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1510), + [sym__dedent] = ACTIONS(1512), + [sym_string_start] = ACTIONS(1512), + }, + [1056] = { + [sym_identifier] = ACTIONS(1518), + [anon_sym_import] = ACTIONS(1518), + [anon_sym_cimport] = ACTIONS(1518), + [anon_sym_from] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_print] = ACTIONS(1518), + [anon_sym_assert] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_del] = ACTIONS(1518), + [anon_sym_raise] = ACTIONS(1518), + [anon_sym_pass] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_except_STAR] = ACTIONS(1520), + [anon_sym_finally] = ACTIONS(1518), + [anon_sym_with] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_global] = ACTIONS(1518), + [anon_sym_nonlocal] = ACTIONS(1518), + [anon_sym_exec] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_class] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_not] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_lambda] = ACTIONS(1518), + [anon_sym_yield] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_None] = ACTIONS(1518), + [sym_integer] = ACTIONS(1518), + [sym_float] = ACTIONS(1520), + [anon_sym_await] = ACTIONS(1518), + [anon_sym_api] = ACTIONS(1518), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1518), + [anon_sym_include] = ACTIONS(1518), + [anon_sym_DEF] = ACTIONS(1518), + [anon_sym_cdef] = ACTIONS(1518), + [anon_sym_cpdef] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_ctypedef] = ACTIONS(1518), + [anon_sym_public] = ACTIONS(1518), + [anon_sym_packed] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym_readonly] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1518), + [sym__dedent] = ACTIONS(1520), + [sym_string_start] = ACTIONS(1520), + }, + [1057] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1058] = { + [ts_builtin_sym_end] = ACTIONS(3189), + [sym_identifier] = ACTIONS(3187), + [anon_sym_import] = ACTIONS(3187), + [anon_sym_cimport] = ACTIONS(3187), + [anon_sym_from] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_print] = ACTIONS(3187), + [anon_sym_assert] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_del] = ACTIONS(3187), + [anon_sym_raise] = ACTIONS(3187), + [anon_sym_pass] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_else] = ACTIONS(3187), + [anon_sym_match] = ACTIONS(3187), + [anon_sym_async] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_except] = ACTIONS(3187), + [anon_sym_finally] = ACTIONS(3187), + [anon_sym_with] = ACTIONS(3187), + [anon_sym_def] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3187), + [anon_sym_nonlocal] = ACTIONS(3187), + [anon_sym_exec] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_lambda] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), + [anon_sym_None] = ACTIONS(3187), + [sym_integer] = ACTIONS(3187), + [sym_float] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3187), + [anon_sym_api] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3187), + [anon_sym_include] = ACTIONS(3187), + [anon_sym_DEF] = ACTIONS(3187), + [anon_sym_cdef] = ACTIONS(3187), + [anon_sym_cpdef] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_ctypedef] = ACTIONS(3187), + [anon_sym_public] = ACTIONS(3187), + [anon_sym_packed] = ACTIONS(3187), + [anon_sym_inline] = ACTIONS(3187), + [anon_sym_readonly] = ACTIONS(3187), + [anon_sym_sizeof] = ACTIONS(3187), + [sym_string_start] = ACTIONS(3189), + }, + [1059] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1060] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1061] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1062] = { + [sym_identifier] = ACTIONS(1514), + [anon_sym_import] = ACTIONS(1514), + [anon_sym_cimport] = ACTIONS(1514), + [anon_sym_from] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_print] = ACTIONS(1514), + [anon_sym_assert] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_del] = ACTIONS(1514), + [anon_sym_raise] = ACTIONS(1514), + [anon_sym_pass] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_else] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_async] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_except_STAR] = ACTIONS(1516), + [anon_sym_finally] = ACTIONS(1514), + [anon_sym_with] = ACTIONS(1514), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_global] = ACTIONS(1514), + [anon_sym_nonlocal] = ACTIONS(1514), + [anon_sym_exec] = ACTIONS(1514), + [anon_sym_type] = ACTIONS(1514), + [anon_sym_class] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_not] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_lambda] = ACTIONS(1514), + [anon_sym_yield] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), + [anon_sym_None] = ACTIONS(1514), + [sym_integer] = ACTIONS(1514), + [sym_float] = ACTIONS(1516), + [anon_sym_await] = ACTIONS(1514), + [anon_sym_api] = ACTIONS(1514), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1514), + [anon_sym_include] = ACTIONS(1514), + [anon_sym_DEF] = ACTIONS(1514), + [anon_sym_cdef] = ACTIONS(1514), + [anon_sym_cpdef] = ACTIONS(1514), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_ctypedef] = ACTIONS(1514), + [anon_sym_public] = ACTIONS(1514), + [anon_sym_packed] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym_readonly] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1514), + [sym__dedent] = ACTIONS(1516), + [sym_string_start] = ACTIONS(1516), + }, + [1063] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1064] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1065] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1066] = { + [ts_builtin_sym_end] = ACTIONS(3193), + [sym_identifier] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3191), + [anon_sym_cimport] = ACTIONS(3191), + [anon_sym_from] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_print] = ACTIONS(3191), + [anon_sym_assert] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_del] = ACTIONS(3191), + [anon_sym_raise] = ACTIONS(3191), + [anon_sym_pass] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_else] = ACTIONS(3191), + [anon_sym_match] = ACTIONS(3191), + [anon_sym_async] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_except] = ACTIONS(3191), + [anon_sym_finally] = ACTIONS(3191), + [anon_sym_with] = ACTIONS(3191), + [anon_sym_def] = ACTIONS(3191), + [anon_sym_global] = ACTIONS(3191), + [anon_sym_nonlocal] = ACTIONS(3191), + [anon_sym_exec] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_not] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_lambda] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), + [anon_sym_None] = ACTIONS(3191), + [sym_integer] = ACTIONS(3191), + [sym_float] = ACTIONS(3193), + [anon_sym_await] = ACTIONS(3191), + [anon_sym_api] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3191), + [anon_sym_include] = ACTIONS(3191), + [anon_sym_DEF] = ACTIONS(3191), + [anon_sym_cdef] = ACTIONS(3191), + [anon_sym_cpdef] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_ctypedef] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_packed] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym_readonly] = ACTIONS(3191), + [anon_sym_sizeof] = ACTIONS(3191), + [sym_string_start] = ACTIONS(3193), + }, + [1067] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1068] = { + [ts_builtin_sym_end] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3177), + [anon_sym_import] = ACTIONS(3177), + [anon_sym_cimport] = ACTIONS(3177), + [anon_sym_from] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(3179), + [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] = ACTIONS(3177), + [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(3179), + [anon_sym_AT] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_not] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_lambda] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), + [anon_sym_None] = ACTIONS(3177), + [sym_integer] = ACTIONS(3177), + [sym_float] = ACTIONS(3179), + [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(3179), + }, + [1069] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), + }, + [1070] = { + [sym_identifier] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_cimport] = ACTIONS(3219), + [anon_sym_from] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_print] = ACTIONS(3219), + [anon_sym_assert] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_del] = ACTIONS(3219), + [anon_sym_raise] = ACTIONS(3219), + [anon_sym_pass] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_match] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_except] = ACTIONS(3219), + [anon_sym_finally] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_def] = ACTIONS(3219), + [anon_sym_global] = ACTIONS(3219), + [anon_sym_nonlocal] = ACTIONS(3219), + [anon_sym_exec] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_not] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_lambda] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), + [anon_sym_None] = ACTIONS(3219), + [sym_integer] = ACTIONS(3219), + [sym_float] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_api] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3219), + [anon_sym_include] = ACTIONS(3219), + [anon_sym_DEF] = ACTIONS(3219), + [anon_sym_cdef] = ACTIONS(3219), + [anon_sym_cpdef] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_ctypedef] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_packed] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_sizeof] = ACTIONS(3219), + [sym__dedent] = ACTIONS(3217), + [sym_string_start] = ACTIONS(3217), + }, + [1071] = { + [sym_identifier] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_cimport] = ACTIONS(3223), + [anon_sym_from] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_print] = ACTIONS(3223), + [anon_sym_assert] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_del] = ACTIONS(3223), + [anon_sym_raise] = ACTIONS(3223), + [anon_sym_pass] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3223), + [anon_sym_match] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_except_STAR] = ACTIONS(3221), + [anon_sym_finally] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_def] = ACTIONS(3223), + [anon_sym_global] = ACTIONS(3223), + [anon_sym_nonlocal] = ACTIONS(3223), + [anon_sym_exec] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_not] = ACTIONS(3223), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_lambda] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), + [anon_sym_None] = ACTIONS(3223), + [sym_integer] = ACTIONS(3223), + [sym_float] = ACTIONS(3221), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_api] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3223), + [anon_sym_include] = ACTIONS(3223), + [anon_sym_DEF] = ACTIONS(3223), + [anon_sym_cdef] = ACTIONS(3223), + [anon_sym_cpdef] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_ctypedef] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_packed] = ACTIONS(3223), + [anon_sym_inline] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_sizeof] = ACTIONS(3223), + [sym__dedent] = ACTIONS(3221), + [sym_string_start] = ACTIONS(3221), + }, + [1072] = { + [ts_builtin_sym_end] = ACTIONS(3197), [sym_identifier] = ACTIONS(3195), [anon_sym_import] = ACTIONS(3195), [anon_sym_cimport] = ACTIONS(3195), [anon_sym_from] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), [anon_sym_print] = ACTIONS(3195), [anon_sym_assert] = ACTIONS(3195), [anon_sym_return] = ACTIONS(3195), @@ -119832,7 +122156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3195), [anon_sym_while] = ACTIONS(3195), [anon_sym_try] = ACTIONS(3195), - [anon_sym_except] = ACTIONS(3195), + [anon_sym_except_STAR] = ACTIONS(3197), [anon_sym_finally] = ACTIONS(3195), [anon_sym_with] = ACTIONS(3195), [anon_sym_def] = ACTIONS(3195), @@ -119841,21 +122165,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3195), [anon_sym_type] = ACTIONS(3195), [anon_sym_class] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), [anon_sym_not] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), [anon_sym_lambda] = ACTIONS(3195), [anon_sym_yield] = ACTIONS(3195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), [anon_sym_None] = ACTIONS(3195), [sym_integer] = ACTIONS(3195), - [sym_float] = ACTIONS(3193), + [sym_float] = ACTIONS(3197), [anon_sym_await] = ACTIONS(3195), [anon_sym_api] = ACTIONS(3195), [sym_true] = ACTIONS(3195), @@ -119874,16 +122198,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3195), [anon_sym_readonly] = ACTIONS(3195), [anon_sym_sizeof] = ACTIONS(3195), - [sym__dedent] = ACTIONS(3193), - [sym_string_start] = ACTIONS(3193), + [sym_string_start] = ACTIONS(3197), }, - [1056] = { + [1073] = { + [ts_builtin_sym_end] = ACTIONS(3207), [sym_identifier] = ACTIONS(3205), [anon_sym_import] = ACTIONS(3205), [anon_sym_cimport] = ACTIONS(3205), [anon_sym_from] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3207), [anon_sym_print] = ACTIONS(3205), [anon_sym_assert] = ACTIONS(3205), [anon_sym_return] = ACTIONS(3205), @@ -119899,7 +122223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3205), [anon_sym_while] = ACTIONS(3205), [anon_sym_try] = ACTIONS(3205), - [anon_sym_except_STAR] = ACTIONS(3203), + [anon_sym_except] = ACTIONS(3205), [anon_sym_finally] = ACTIONS(3205), [anon_sym_with] = ACTIONS(3205), [anon_sym_def] = ACTIONS(3205), @@ -119908,21 +122232,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3205), [anon_sym_type] = ACTIONS(3205), [anon_sym_class] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_AT] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_AT] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), [anon_sym_not] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), + [anon_sym_AMP] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_LT] = ACTIONS(3207), [anon_sym_lambda] = ACTIONS(3205), [anon_sym_yield] = ACTIONS(3205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3207), [anon_sym_None] = ACTIONS(3205), [sym_integer] = ACTIONS(3205), - [sym_float] = ACTIONS(3203), + [sym_float] = ACTIONS(3207), [anon_sym_await] = ACTIONS(3205), [anon_sym_api] = ACTIONS(3205), [sym_true] = ACTIONS(3205), @@ -119941,477 +122265,687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3205), [anon_sym_readonly] = ACTIONS(3205), [anon_sym_sizeof] = ACTIONS(3205), - [sym__dedent] = ACTIONS(3203), - [sym_string_start] = ACTIONS(3203), - }, - [1057] = { - [sym_named_expression] = STATE(2604), - [sym__named_expression_lhs] = STATE(5641), - [sym_list_splat_pattern] = STATE(2608), - [sym_as_pattern] = STATE(2604), - [sym_expression] = STATE(3986), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2604), - [sym_boolean_operator] = STATE(2604), - [sym_binary_operator] = STATE(2603), - [sym_unary_operator] = STATE(2603), - [sym_comparison_operator] = STATE(2604), - [sym_lambda] = STATE(2604), - [sym_attribute] = STATE(2603), - [sym_subscript] = STATE(2603), - [sym_slice] = STATE(5393), - [sym_ellipsis] = STATE(2603), - [sym_call] = STATE(2603), - [sym_list] = STATE(2603), - [sym_set] = STATE(2603), - [sym_tuple] = STATE(2603), - [sym_dictionary] = STATE(2603), - [sym_list_comprehension] = STATE(2603), - [sym_dictionary_comprehension] = STATE(2603), - [sym_set_comprehension] = STATE(2603), - [sym_generator_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_conditional_expression] = STATE(2604), - [sym_concatenated_string] = STATE(2603), - [sym_string] = STATE(2220), - [sym_none] = STATE(2603), - [sym_await] = STATE(2603), - [sym_new_expression] = STATE(2604), - [sym_sizeof_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(3065), - [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(2485), - [anon_sym_RBRACK] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_not] = ACTIONS(2647), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_lambda] = ACTIONS(2651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2493), - [anon_sym_None] = ACTIONS(2495), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2497), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_api] = ACTIONS(2641), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), + [sym_string_start] = ACTIONS(3207), + }, + [1074] = { + [ts_builtin_sym_end] = ACTIONS(3215), + [sym_identifier] = ACTIONS(3213), + [anon_sym_import] = ACTIONS(3213), + [anon_sym_cimport] = ACTIONS(3213), + [anon_sym_from] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_print] = ACTIONS(3213), + [anon_sym_assert] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_del] = ACTIONS(3213), + [anon_sym_raise] = ACTIONS(3213), + [anon_sym_pass] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_match] = ACTIONS(3213), + [anon_sym_async] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_except] = ACTIONS(3213), + [anon_sym_finally] = ACTIONS(3213), + [anon_sym_with] = ACTIONS(3213), + [anon_sym_def] = ACTIONS(3213), + [anon_sym_global] = ACTIONS(3213), + [anon_sym_nonlocal] = ACTIONS(3213), + [anon_sym_exec] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3215), + [anon_sym_AT] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_not] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_LT] = ACTIONS(3215), + [anon_sym_lambda] = ACTIONS(3213), + [anon_sym_yield] = ACTIONS(3213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3215), + [anon_sym_None] = ACTIONS(3213), + [sym_integer] = ACTIONS(3213), + [sym_float] = ACTIONS(3215), + [anon_sym_await] = ACTIONS(3213), + [anon_sym_api] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3213), + [anon_sym_include] = ACTIONS(3213), + [anon_sym_DEF] = ACTIONS(3213), + [anon_sym_cdef] = ACTIONS(3213), + [anon_sym_cpdef] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_ctypedef] = ACTIONS(3213), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_packed] = ACTIONS(3213), + [anon_sym_inline] = ACTIONS(3213), + [anon_sym_readonly] = ACTIONS(3213), + [anon_sym_sizeof] = ACTIONS(3213), + [sym_string_start] = ACTIONS(3215), + }, + [1075] = { + [sym_named_expression] = STATE(3492), + [sym__named_expression_lhs] = STATE(5657), + [sym_expression_list] = STATE(5453), + [sym_list_splat_pattern] = STATE(2166), + [sym_as_pattern] = STATE(3492), + [sym_expression] = STATE(3971), + [sym_primary_expression] = STATE(2091), + [sym_not_operator] = STATE(3492), + [sym_boolean_operator] = STATE(3492), + [sym_binary_operator] = STATE(2194), + [sym_unary_operator] = STATE(2194), + [sym_comparison_operator] = STATE(3492), + [sym_lambda] = STATE(3492), + [sym_attribute] = STATE(2194), + [sym_subscript] = STATE(2194), + [sym_ellipsis] = STATE(2194), + [sym_call] = STATE(2194), + [sym_list] = STATE(2194), + [sym_set] = STATE(2194), + [sym_tuple] = STATE(2194), + [sym_dictionary] = STATE(2194), + [sym_list_comprehension] = STATE(2194), + [sym_dictionary_comprehension] = STATE(2194), + [sym_set_comprehension] = STATE(2194), + [sym_generator_expression] = STATE(2194), + [sym_parenthesized_expression] = STATE(2194), + [sym_conditional_expression] = STATE(3492), + [sym_concatenated_string] = STATE(2194), + [sym_string] = STATE(2100), + [sym_none] = STATE(2194), + [sym_await] = STATE(2194), + [sym_new_expression] = STATE(3492), + [sym_sizeof_expression] = STATE(2194), + [sym_cast_expression] = STATE(2194), + [sym_identifier] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_print] = ACTIONS(824), + [anon_sym_match] = ACTIONS(824), + [anon_sym_async] = ACTIONS(824), + [anon_sym_exec] = ACTIONS(824), + [anon_sym_LBRACK] = ACTIONS(1319), + [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(849), + [anon_sym_api] = ACTIONS(824), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_sizeof] = ACTIONS(2501), - [sym_string_start] = ACTIONS(2503), - }, - [1058] = { - [sym_identifier] = ACTIONS(3169), - [anon_sym_import] = ACTIONS(3169), - [anon_sym_cimport] = ACTIONS(3169), - [anon_sym_from] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_print] = ACTIONS(3169), - [anon_sym_assert] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3169), - [anon_sym_del] = ACTIONS(3169), - [anon_sym_raise] = ACTIONS(3169), - [anon_sym_pass] = ACTIONS(3169), - [anon_sym_break] = ACTIONS(3169), - [anon_sym_continue] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_else] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3169), - [anon_sym_async] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3169), - [anon_sym_while] = ACTIONS(3169), - [anon_sym_try] = ACTIONS(3169), - [anon_sym_except_STAR] = ACTIONS(3167), - [anon_sym_finally] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3169), - [anon_sym_def] = ACTIONS(3169), - [anon_sym_global] = ACTIONS(3169), - [anon_sym_nonlocal] = ACTIONS(3169), - [anon_sym_exec] = ACTIONS(3169), - [anon_sym_type] = ACTIONS(3169), - [anon_sym_class] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_not] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_lambda] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3167), - [anon_sym_None] = ACTIONS(3169), - [sym_integer] = ACTIONS(3169), - [sym_float] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3169), - [anon_sym_api] = ACTIONS(3169), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3169), - [anon_sym_include] = ACTIONS(3169), - [anon_sym_DEF] = ACTIONS(3169), - [anon_sym_cdef] = ACTIONS(3169), - [anon_sym_cpdef] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3169), - [anon_sym_ctypedef] = ACTIONS(3169), - [anon_sym_public] = ACTIONS(3169), - [anon_sym_packed] = ACTIONS(3169), - [anon_sym_inline] = ACTIONS(3169), - [anon_sym_readonly] = ACTIONS(3169), - [anon_sym_sizeof] = ACTIONS(3169), - [sym__dedent] = ACTIONS(3167), - [sym_string_start] = ACTIONS(3167), - }, - [1059] = { - [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), - }, - [1060] = { - [ts_builtin_sym_end] = ACTIONS(1496), - [sym_identifier] = ACTIONS(1494), - [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_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_except] = 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), - }, - [1061] = { - [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] = 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), + [anon_sym_new] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(105), + [sym__newline] = ACTIONS(3273), + [sym_string_start] = ACTIONS(107), }, - [1062] = { - [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(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__dedent] = ACTIONS(1480), - [sym_string_start] = ACTIONS(1480), + [1076] = { + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1518), + [anon_sym_import] = ACTIONS(1518), + [anon_sym_cimport] = ACTIONS(1518), + [anon_sym_from] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_print] = ACTIONS(1518), + [anon_sym_assert] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_del] = ACTIONS(1518), + [anon_sym_raise] = ACTIONS(1518), + [anon_sym_pass] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_else] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1518), + [anon_sym_except] = ACTIONS(1518), + [anon_sym_finally] = ACTIONS(1518), + [anon_sym_with] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1518), + [anon_sym_global] = ACTIONS(1518), + [anon_sym_nonlocal] = ACTIONS(1518), + [anon_sym_exec] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_class] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_not] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_lambda] = ACTIONS(1518), + [anon_sym_yield] = ACTIONS(1518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), + [anon_sym_None] = ACTIONS(1518), + [sym_integer] = ACTIONS(1518), + [sym_float] = ACTIONS(1520), + [anon_sym_await] = ACTIONS(1518), + [anon_sym_api] = ACTIONS(1518), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1518), + [anon_sym_include] = ACTIONS(1518), + [anon_sym_DEF] = ACTIONS(1518), + [anon_sym_cdef] = ACTIONS(1518), + [anon_sym_cpdef] = ACTIONS(1518), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_ctypedef] = ACTIONS(1518), + [anon_sym_public] = ACTIONS(1518), + [anon_sym_packed] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym_readonly] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1518), + [sym_string_start] = ACTIONS(1520), + }, + [1077] = { + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_identifier] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_cimport] = ACTIONS(1510), + [anon_sym_from] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_print] = ACTIONS(1510), + [anon_sym_assert] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_del] = ACTIONS(1510), + [anon_sym_raise] = ACTIONS(1510), + [anon_sym_pass] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_except] = ACTIONS(1510), + [anon_sym_finally] = ACTIONS(1510), + [anon_sym_with] = ACTIONS(1510), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_global] = ACTIONS(1510), + [anon_sym_nonlocal] = ACTIONS(1510), + [anon_sym_exec] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_not] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_lambda] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), + [anon_sym_None] = ACTIONS(1510), + [sym_integer] = ACTIONS(1510), + [sym_float] = ACTIONS(1512), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_api] = ACTIONS(1510), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1510), + [anon_sym_include] = ACTIONS(1510), + [anon_sym_DEF] = ACTIONS(1510), + [anon_sym_cdef] = ACTIONS(1510), + [anon_sym_cpdef] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_ctypedef] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_packed] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_readonly] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1510), + [sym_string_start] = ACTIONS(1512), + }, + [1078] = { + [sym_named_expression] = STATE(2648), + [sym__named_expression_lhs] = STATE(5721), + [sym_list_splat_pattern] = STATE(2642), + [sym_as_pattern] = STATE(2648), + [sym_expression] = STATE(4109), + [sym_primary_expression] = STATE(2177), + [sym_not_operator] = STATE(2648), + [sym_boolean_operator] = STATE(2648), + [sym_binary_operator] = STATE(2647), + [sym_unary_operator] = STATE(2647), + [sym_comparison_operator] = STATE(2648), + [sym_lambda] = STATE(2648), + [sym_attribute] = STATE(2647), + [sym_subscript] = STATE(2647), + [sym_slice] = STATE(5366), + [sym_ellipsis] = STATE(2647), + [sym_call] = STATE(2647), + [sym_list] = STATE(2647), + [sym_set] = STATE(2647), + [sym_tuple] = STATE(2647), + [sym_dictionary] = STATE(2647), + [sym_list_comprehension] = STATE(2647), + [sym_dictionary_comprehension] = STATE(2647), + [sym_set_comprehension] = STATE(2647), + [sym_generator_expression] = STATE(2647), + [sym_parenthesized_expression] = STATE(2647), + [sym_conditional_expression] = STATE(2648), + [sym_concatenated_string] = STATE(2647), + [sym_string] = STATE(2292), + [sym_none] = STATE(2647), + [sym_await] = STATE(2647), + [sym_new_expression] = STATE(2648), + [sym_sizeof_expression] = STATE(2647), + [sym_cast_expression] = STATE(2647), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_print] = ACTIONS(2673), + [anon_sym_COLON] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_exec] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_lambda] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), + [anon_sym_None] = ACTIONS(2527), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_api] = ACTIONS(2673), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_string_start] = ACTIONS(2535), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 27, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + 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(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, + sym_primary_expression, + STATE(2100), 1, + sym_string, + STATE(2166), 1, + sym_list_splat_pattern, + STATE(3964), 1, + sym_expression, + STATE(5657), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3277), 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(824), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3492), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_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] = 27, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2525), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 1, + sym_float, + ACTIONS(2533), 1, + anon_sym_sizeof, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, sym_identifier, - STATE(2168), 1, + ACTIONS(3141), 1, + anon_sym_STAR, + STATE(2177), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2292), 1, sym_string, - STATE(2693), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4166), 1, + STATE(4350), 1, sym_expression, - STATE(5483), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3083), 2, - anon_sym_RPAREN, + ACTIONS(3279), 2, anon_sym_COMMA, - ACTIONS(1398), 3, + anon_sym_RBRACK, + ACTIONS(2509), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2519), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2673), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2648), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2647), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [238] = 28, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2525), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 1, + sym_float, + ACTIONS(2533), 1, + anon_sym_sizeof, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, + anon_sym_STAR, + ACTIONS(3153), 1, + anon_sym_COLON, + STATE(2177), 1, + sym_primary_expression, + STATE(2292), 1, + sym_string, + STATE(2642), 1, + sym_list_splat_pattern, + STATE(4109), 1, + sym_expression, + STATE(5366), 1, + sym_slice, + STATE(5721), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2509), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2519), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2673), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2648), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2647), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_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] = 28, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2525), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 1, + sym_float, + ACTIONS(2533), 1, + anon_sym_sizeof, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, + anon_sym_STAR, + ACTIONS(3153), 1, + anon_sym_COLON, + STATE(2177), 1, + sym_primary_expression, + STATE(2292), 1, + sym_string, + STATE(2642), 1, + sym_list_splat_pattern, + STATE(3960), 1, + sym_expression, + STATE(5066), 1, + sym_slice, + STATE(5721), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -120420,7 +122954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -120441,13 +122975,16 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [119] = 3, + [480] = 4, + ACTIONS(3281), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 14, - sym__dedent, + ACTIONS(1553), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -120460,7 +122997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3245), 48, + ACTIONS(1551), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120473,8 +123010,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, @@ -120509,17 +123044,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [190] = 5, - ACTIONS(2747), 1, + [553] = 27, + ACTIONS(1360), 1, + anon_sym_LBRACE, + ACTIONS(1362), 1, + anon_sym_not, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1372), 1, + anon_sym_None, + ACTIONS(1376), 1, + sym_float, + ACTIONS(1382), 1, + anon_sym_new, + ACTIONS(1392), 1, + anon_sym_sizeof, + ACTIONS(1394), 1, + sym_string_start, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_await, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, + anon_sym_STAR, + ACTIONS(3043), 1, + anon_sym_lambda, + STATE(2122), 1, + sym_primary_expression, + STATE(2202), 1, + sym_string, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(3978), 1, + sym_expression, + STATE(5800), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4433), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1374), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1358), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1502), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2579), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2556), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [672] = 5, + ACTIONS(2789), 1, anon_sym_else, - STATE(1386), 1, + STATE(1544), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3251), 14, - sym__dedent, + ACTIONS(3283), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -120532,7 +123159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3249), 46, + ACTIONS(3285), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120579,16 +123206,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [265] = 4, - ACTIONS(3253), 1, - anon_sym_COLON, + [747] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1549), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1525), 15, + ACTIONS(3287), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -120601,7 +123229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1523), 46, + ACTIONS(3289), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120648,69 +123276,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [338] = 27, - ACTIONS(1328), 1, + [822] = 27, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(2983), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(2985), 1, - anon_sym_lambda, - STATE(2066), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2292), 1, sym_string, - STATE(2403), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3887), 1, + STATE(4226), 1, sym_expression, - STATE(5743), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4175), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1342), 3, + ACTIONS(3247), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -120719,7 +123347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -120740,17 +123368,19 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [457] = 3, + [941] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1556), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1537), 16, + ACTIONS(3291), 14, 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, @@ -120761,7 +123391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1535), 46, + ACTIONS(3293), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -120808,195 +123438,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [528] = 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(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(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - STATE(2127), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(4199), 1, - sym_expression, - STATE(5641), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3255), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - 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(2641), 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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [647] = 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(2533), 1, - anon_sym_not, - ACTIONS(2535), 1, - anon_sym_LT, - ACTIONS(2543), 1, - anon_sym_new, - ACTIONS(2809), 1, - sym_identifier, - ACTIONS(2817), 1, - anon_sym_await, - ACTIONS(2943), 1, - anon_sym_STAR, - ACTIONS(2949), 1, - anon_sym_lambda, - STATE(2072), 1, - sym_primary_expression, - STATE(2166), 1, - sym_string, - STATE(2479), 1, - sym_list_splat_pattern, - STATE(3940), 1, - sym_expression, - STATE(5590), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4220), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - 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(2813), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2527), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2526), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [766] = 3, + [1016] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1557), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3257), 14, + ACTIONS(3295), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -121011,7 +123461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3259), 48, + ACTIONS(3297), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121024,8 +123474,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, @@ -121060,108 +123508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [837] = 27, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(2391), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, - anon_sym_None, - ACTIONS(2395), 1, - sym_float, - ACTIONS(2399), 1, - anon_sym_sizeof, - ACTIONS(2401), 1, - sym_string_start, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2935), 1, - anon_sym_STAR, - ACTIONS(2941), 1, - anon_sym_lambda, - STATE(2047), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2288), 1, - sym_list_splat_pattern, - STATE(3965), 1, - sym_expression, - STATE(5531), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4229), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2375), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2385), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2553), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2388), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2386), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [956] = 4, - ACTIONS(3261), 1, - anon_sym_COLON, + [1091] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1513), 15, + ACTIONS(3301), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -121174,7 +123527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1511), 46, + ACTIONS(3299), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121187,6 +123540,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, @@ -121221,17 +123576,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1029] = 5, - ACTIONS(2693), 1, + [1162] = 5, + ACTIONS(2731), 1, anon_sym_else, - STATE(1395), 1, + STATE(1672), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 14, + ACTIONS(3305), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -121244,7 +123599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3265), 46, + ACTIONS(3303), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121291,17 +123646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1104] = 5, - ACTIONS(2693), 1, + [1237] = 5, + ACTIONS(2731), 1, anon_sym_else, - STATE(1672), 1, + STATE(1673), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 14, + ACTIONS(3309), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -121314,7 +123669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3269), 46, + ACTIONS(3307), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121361,11 +123716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1179] = 3, + [1312] = 5, + ACTIONS(2731), 1, + anon_sym_else, + STATE(1677), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 14, + ACTIONS(3313), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -121380,7 +123739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3271), 48, + ACTIONS(3311), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121393,8 +123752,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, @@ -121429,69 +123786,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1250] = 27, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, + [1387] = 27, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1362), 1, + anon_sym_not, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(1382), 1, + anon_sym_new, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2567), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, anon_sym_await, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2935), 1, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - ACTIONS(2941), 1, + ACTIONS(3043), 1, anon_sym_lambda, - STATE(2047), 1, + STATE(2122), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2202), 1, sym_string, - STATE(2288), 1, + STATE(2604), 1, sym_list_splat_pattern, - STATE(3965), 1, + STATE(4018), 1, sym_expression, - STATE(5531), 1, + STATE(5800), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4177), 2, + STATE(4334), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(2375), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -121500,7 +123857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -121521,74 +123878,171 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1369] = 23, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [1506] = 28, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1302), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(3315), 1, + anon_sym_LPAREN, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4233), 1, + sym_expression, + STATE(5028), 1, + sym_with_item, + STATE(5508), 1, + sym_with_clause, + STATE(5559), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [1627] = 27, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2525), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 1, + sym_float, + ACTIONS(2533), 1, + anon_sym_sizeof, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(1312), 1, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, + anon_sym_STAR, + STATE(2177), 1, + sym_primary_expression, + STATE(2292), 1, sym_string, - STATE(2451), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3236), 1, - sym_primary_expression, + STATE(4328), 1, + sym_expression, + STATE(5721), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1300), 2, - anon_sym_not, - anon_sym_or, - ACTIONS(1295), 3, - anon_sym_RPAREN, + ACTIONS(3317), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1237), 4, + anon_sym_RBRACK, + ACTIONS(2509), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(931), 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(2471), 20, + STATE(2648), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -121609,69 +124063,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1480] = 27, - ACTIONS(2377), 1, + [1746] = 27, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(2559), 1, + ACTIONS(2587), 1, anon_sym_not, - ACTIONS(2561), 1, + ACTIONS(2589), 1, anon_sym_LT, - ACTIONS(2567), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(2569), 1, + ACTIONS(2597), 1, anon_sym_new, - ACTIONS(2935), 1, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(2941), 1, + ACTIONS(3078), 1, anon_sym_lambda, - STATE(2047), 1, + STATE(2119), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2193), 1, sym_string, - STATE(2288), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(3901), 1, + STATE(3956), 1, sym_expression, - STATE(5531), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4300), 2, + STATE(4273), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(2375), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -121680,7 +124134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -121701,13 +124155,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1599] = 4, - ACTIONS(3275), 1, + [1865] = 4, + ACTIONS(3319), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 15, + ACTIONS(1547), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -121723,7 +124177,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1517), 46, + ACTIONS(1545), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [1938] = 27, + ACTIONS(1360), 1, + anon_sym_LBRACE, + ACTIONS(1362), 1, + anon_sym_not, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1372), 1, + anon_sym_None, + ACTIONS(1376), 1, + sym_float, + ACTIONS(1382), 1, + anon_sym_new, + ACTIONS(1392), 1, + anon_sym_sizeof, + ACTIONS(1394), 1, + sym_string_start, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_await, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, + anon_sym_STAR, + ACTIONS(3043), 1, + anon_sym_lambda, + STATE(2122), 1, + sym_primary_expression, + STATE(2202), 1, + sym_string, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(4018), 1, + sym_expression, + STATE(5800), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4256), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1374), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1358), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1502), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2579), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2556), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [2057] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3321), 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(3323), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121736,6 +124348,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, @@ -121770,15 +124384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1672] = 5, - ACTIONS(2693), 1, + [2128] = 5, + ACTIONS(2789), 1, anon_sym_else, - STATE(1402), 1, + STATE(1738), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 14, + ACTIONS(3325), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -121793,7 +124407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3279), 46, + ACTIONS(3327), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121840,73 +124454,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1747] = 22, - ACTIONS(1213), 1, + [2203] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1587), 16, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1219), 1, + anon_sym_STAR, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1223), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1233), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1585), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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(1247), 1, + [2274] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1579), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3329), 14, sym_string_start, - ACTIONS(1302), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(1310), 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(3331), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [2349] = 27, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_LBRACE, + ACTIONS(1420), 1, + anon_sym_not, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(1312), 1, + ACTIONS(1424), 1, + anon_sym_lambda, + ACTIONS(1426), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, + sym_float, + ACTIONS(1436), 1, + anon_sym_new, + ACTIONS(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(1601), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, + sym_primary_expression, + STATE(2410), 1, sym_string, - STATE(2451), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(3236), 1, - sym_primary_expression, + STATE(4258), 1, + sym_expression, + STATE(5581), 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(3085), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1430), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1416), 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(1599), 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(2471), 20, + STATE(2712), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -121927,17 +124684,16 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [1856] = 5, - ACTIONS(2693), 1, - anon_sym_else, - STATE(1687), 1, - sym_else_clause, + [2468] = 4, + ACTIONS(3333), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 14, + ACTIONS(1565), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -121950,7 +124706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3283), 46, + ACTIONS(1563), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -121997,69 +124753,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1931] = 27, - ACTIONS(67), 1, + [2541] = 27, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2449), 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(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2587), 1, + anon_sym_not, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2597), 1, + anon_sym_new, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3078), 1, + anon_sym_lambda, + STATE(2119), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2193), 1, sym_string, - STATE(2110), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(3943), 1, + STATE(3956), 1, sym_expression, - STATE(5736), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, + STATE(4331), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -122068,7 +124824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -122089,17 +124845,85 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2050] = 5, - ACTIONS(2693), 1, + [2660] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3335), 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, + [2731] = 5, + ACTIONS(2731), 1, anon_sym_else, - STATE(1403), 1, + STATE(1692), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3287), 14, + ACTIONS(3341), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -122112,7 +124936,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3289), 46, + 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, + 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, + [2806] = 5, + ACTIONS(2731), 1, + anon_sym_else, + STATE(1694), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3345), 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(3343), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122159,69 +125053,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2125] = 27, - ACTIONS(2377), 1, + [2881] = 27, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2545), 1, - sym_identifier, ACTIONS(2559), 1, anon_sym_not, ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(2567), 1, - anon_sym_await, ACTIONS(2569), 1, anon_sym_new, - ACTIONS(2935), 1, + ACTIONS(2841), 1, + sym_identifier, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, anon_sym_STAR, - ACTIONS(2941), 1, + ACTIONS(3039), 1, anon_sym_lambda, - STATE(2047), 1, + STATE(2127), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2229), 1, sym_string, - STATE(2288), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(3905), 1, + STATE(4015), 1, sym_expression, - STATE(5531), 1, + STATE(5737), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4321), 2, + STATE(4224), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(2375), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -122230,7 +125124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -122251,69 +125145,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2244] = 27, - ACTIONS(67), 1, + [3000] = 28, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3347), 1, + anon_sym_COLON, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4024), 1, + STATE(4233), 1, sym_expression, - STATE(5736), 1, + STATE(5444), 1, + sym_with_item, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3291), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -122322,7 +125217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -122343,69 +125238,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2363] = 27, - ACTIONS(1328), 1, + [3121] = 27, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(2983), 1, + ACTIONS(2587), 1, + anon_sym_not, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(2597), 1, + anon_sym_new, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(2985), 1, + ACTIONS(3078), 1, anon_sym_lambda, - STATE(2066), 1, + STATE(2119), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2193), 1, sym_string, - STATE(2403), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(3925), 1, + STATE(3959), 1, sym_expression, - STATE(5743), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4295), 2, + STATE(4388), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(1342), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -122414,7 +125309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -122435,11 +125330,15 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2482] = 3, + [3240] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1583), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 14, + ACTIONS(3349), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -122454,7 +125353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3245), 48, + ACTIONS(3351), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122467,8 +125366,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, @@ -122503,70 +125400,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2553] = 28, - ACTIONS(1382), 1, + [3315] = 27, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2449), 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(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(3293), 1, - anon_sym_RPAREN, - STATE(2168), 1, + ACTIONS(2587), 1, + anon_sym_not, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(2597), 1, + anon_sym_new, + ACTIONS(3076), 1, + anon_sym_STAR, + ACTIONS(3078), 1, + anon_sym_lambda, + STATE(2119), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2193), 1, sym_string, - STATE(2693), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(4183), 1, + STATE(3985), 1, sym_expression, - STATE(5384), 1, - sym_with_item, - STATE(5483), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + STATE(4443), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -122575,7 +125471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -122596,17 +125492,16 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [2674] = 5, - ACTIONS(2697), 1, - anon_sym_finally, - STATE(1412), 1, - sym_finally_clause, + [3434] = 4, + ACTIONS(3353), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 14, + ACTIONS(1577), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -122619,7 +125514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3297), 46, + ACTIONS(1575), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122666,17 +125561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2749] = 5, - ACTIONS(2693), 1, + [3507] = 5, + ACTIONS(2731), 1, anon_sym_else, - STATE(1623), 1, + STATE(1705), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3251), 14, + ACTIONS(3357), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -122689,7 +125584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3249), 46, + ACTIONS(3355), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -122736,162 +125631,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2824] = 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(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - ACTIONS(3299), 1, - anon_sym_RPAREN, - STATE(2168), 1, - sym_primary_expression, - STATE(2239), 1, - sym_string, - STATE(2693), 1, - sym_list_splat_pattern, - STATE(4183), 1, - sym_expression, - STATE(5384), 1, - sym_with_item, - STATE(5483), 1, - sym__named_expression_lhs, + [3582] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1586), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3359), 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(1567), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3361), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2657), 8, - 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, - [2945] = 27, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 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, + [3657] = 27, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2493), 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(2495), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(107), 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(3033), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2127), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2100), 1, sym_string, - STATE(2608), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4213), 1, + STATE(4079), 1, sym_expression, - STATE(5641), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3071), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2477), 3, + ACTIONS(3363), 2, + sym__newline, + anon_sym_SEMI, + 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(2641), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -122900,7 +125772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -122921,69 +125793,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3064] = 27, - ACTIONS(2377), 1, + [3776] = 27, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(2559), 1, + ACTIONS(2587), 1, anon_sym_not, - ACTIONS(2561), 1, + ACTIONS(2589), 1, anon_sym_LT, - ACTIONS(2567), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(2569), 1, + ACTIONS(2597), 1, anon_sym_new, - ACTIONS(2935), 1, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(2941), 1, + ACTIONS(3078), 1, anon_sym_lambda, - STATE(2047), 1, + STATE(2119), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2193), 1, sym_string, - STATE(2288), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(3965), 1, + STATE(3956), 1, sym_expression, - STATE(5531), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4301), 2, + STATE(4389), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(2375), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -122992,7 +125864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123013,69 +125885,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3183] = 27, - ACTIONS(67), 1, + [3895] = 27, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1362), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1364), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1382), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2405), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3043), 1, + anon_sym_lambda, + STATE(2122), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2202), 1, sym_string, - STATE(2110), 1, + STATE(2604), 1, sym_list_splat_pattern, - STATE(4024), 1, + STATE(4017), 1, sym_expression, - STATE(5736), 1, + STATE(5800), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, + STATE(4514), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -123084,7 +125956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123105,70 +125977,349 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3302] = 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(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(4024), 1, - sym_expression, - STATE(5736), 1, - sym__named_expression_lhs, + [4014] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3303), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3301), 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(944), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3299), 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_api, - STATE(3424), 8, - sym_named_expression, + anon_sym_type, + anon_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, + [4085] = 5, + ACTIONS(2793), 1, + anon_sym_finally, + STATE(1656), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3365), 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(3367), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [4160] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1664), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3305), 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(3303), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [4235] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1665), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3309), 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(3307), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [4310] = 28, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_LBRACE, + ACTIONS(1420), 1, + anon_sym_not, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, + anon_sym_lambda, + ACTIONS(1426), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, + sym_float, + ACTIONS(1436), 1, + anon_sym_new, + ACTIONS(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + ACTIONS(3369), 1, + anon_sym_RPAREN, + STATE(2221), 1, + sym_primary_expression, + STATE(2410), 1, + sym_string, + STATE(2703), 1, + sym_list_splat_pattern, + STATE(4279), 1, + sym_expression, + STATE(5387), 1, + sym_with_item, + STATE(5581), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1430), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1416), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1599), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2712), 8, + sym_named_expression, sym_as_pattern, sym_not_operator, sym_boolean_operator, @@ -123176,7 +126327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123197,73 +126348,148 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3421] = 22, - ACTIONS(1213), 1, + [4431] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1668), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3313), 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, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3311), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [4506] = 27, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 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(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - anon_sym_LT, - ACTIONS(1312), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, + sym_primary_expression, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3236), 1, - sym_primary_expression, + STATE(4079), 1, + sym_expression, + STATE(5657), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1237), 4, + ACTIONS(3371), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(81), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(967), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1304), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(931), 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(2471), 20, + STATE(3492), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123284,7 +126510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3530] = 27, + [4625] = 27, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -123305,30 +126531,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4024), 1, + STATE(4079), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 2, + ACTIONS(3373), 2, sym__newline, anon_sym_SEMI, ACTIONS(81), 3, @@ -123340,13 +126566,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3492), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [4744] = 28, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + ACTIONS(3375), 1, + anon_sym_COLON, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4233), 1, + sym_expression, + STATE(5444), 1, + sym_with_item, + STATE(5559), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -123355,7 +126674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123376,7 +126695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3649] = 27, + [4865] = 27, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -123397,30 +126716,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3943), 1, + STATE(4079), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3307), 2, + ACTIONS(3377), 2, sym__newline, anon_sym_SEMI, ACTIONS(81), 3, @@ -123432,13 +126751,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -123447,7 +126766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123468,69 +126787,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3768] = 27, - ACTIONS(2451), 1, + [4984] = 27, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2533), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2535), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2543), 1, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(2809), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(2817), 1, - anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(2949), 1, - anon_sym_lambda, - STATE(2072), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2292), 1, sym_string, - STATE(2479), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3940), 1, + STATE(4300), 1, sym_expression, - STATE(5590), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4246), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2449), 3, + ACTIONS(3143), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2813), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -123539,7 +126858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123560,204 +126879,64 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3887] = 5, - ACTIONS(2697), 1, - anon_sym_finally, - STATE(1703), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3309), 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(3311), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [3962] = 4, - ACTIONS(3313), 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, - [4035] = 23, - ACTIONS(1213), 1, + [5103] = 22, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1302), 1, + ACTIONS(1334), 1, anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LT, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_await, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3236), 1, + STATE(3290), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, + ACTIONS(813), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(3317), 2, - anon_sym_not, - anon_sym_or, - ACTIONS(3315), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1237), 4, + ACTIONS(1269), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(847), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(931), 8, + ACTIONS(811), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -123766,7 +126945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123787,17 +126966,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4146] = 5, - ACTIONS(2747), 1, + [5212] = 5, + ACTIONS(2789), 1, anon_sym_else, - STATE(1536), 1, + STATE(1752), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3321), 14, - sym__dedent, + ACTIONS(3379), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -123810,7 +126989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3319), 46, + ACTIONS(3381), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123857,225 +127036,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4221] = 5, - ACTIONS(2747), 1, - anon_sym_else, - STATE(1537), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3325), 14, - sym__dedent, - sym_string_start, + [5287] = 27, + ACTIONS(2483), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2489), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2493), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2499), 1, + anon_sym_None, + ACTIONS(2501), 1, sym_float, - ACTIONS(3323), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(2505), 1, + anon_sym_sizeof, + ACTIONS(2507), 1, + sym_string_start, + ACTIONS(2559), 1, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(2569), 1, + anon_sym_new, + ACTIONS(2841), 1, sym_identifier, + ACTIONS(2849), 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, - [4296] = 4, - ACTIONS(3327), 1, - anon_sym_COLON, + ACTIONS(3033), 1, + anon_sym_STAR, + ACTIONS(3039), 1, + anon_sym_lambda, + STATE(2127), 1, + sym_primary_expression, + STATE(2229), 1, + sym_string, + STATE(2546), 1, + sym_list_splat_pattern, + STATE(4015), 1, + sym_expression, + STATE(5737), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1507), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(4263), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2481), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2491), 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(1505), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2845), 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(2536), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2512), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5406] = 27, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2525), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 1, + sym_float, + ACTIONS(2533), 1, + anon_sym_sizeof, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(2679), 1, anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2685), 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(2687), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [4369] = 4, - ACTIONS(3329), 1, - anon_sym_COLON, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, + anon_sym_STAR, + STATE(2177), 1, + sym_primary_expression, + STATE(2292), 1, + sym_string, + STATE(2642), 1, + sym_list_splat_pattern, + STATE(4300), 1, + sym_expression, + STATE(5721), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1531), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3085), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2509), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2519), 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(1529), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2673), 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, - [4442] = 3, + STATE(2648), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2647), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5525] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1754), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 16, + ACTIONS(3383), 14, 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, @@ -124086,7 +127243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1501), 46, + ACTIONS(3385), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124133,70 +127290,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4513] = 28, - ACTIONS(1211), 1, + [5600] = 28, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1219), 1, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3331), 1, - anon_sym_LPAREN, - STATE(2068), 1, + ACTIONS(3143), 1, + anon_sym_COLON, + ACTIONS(3167), 1, + anon_sym_by, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4218), 1, + STATE(4046), 1, sym_expression, - STATE(4696), 1, - sym_with_item, - STATE(5613), 1, - sym_with_clause, - STATE(5741), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -124205,7 +127362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -124226,13 +127383,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [4634] = 3, + [5721] = 5, + ACTIONS(2793), 1, + anon_sym_finally, + STATE(1763), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3257), 14, - sym__dedent, + ACTIONS(3387), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -124245,7 +127406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3259), 48, + ACTIONS(3389), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124258,8 +127419,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, @@ -124294,288 +127453,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4705] = 5, - ACTIONS(2747), 1, - anon_sym_else, - STATE(1562), 1, - sym_else_clause, + [5796] = 27, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_LBRACE, + ACTIONS(1420), 1, + anon_sym_not, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, + anon_sym_lambda, + ACTIONS(1426), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, + sym_float, + ACTIONS(1436), 1, + anon_sym_new, + ACTIONS(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, + sym_primary_expression, + STATE(2410), 1, + sym_string, + STATE(2703), 1, + sym_list_splat_pattern, + STATE(4258), 1, + sym_expression, + STATE(5581), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3263), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3143), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1430), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1416), 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(1599), 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, - [4780] = 5, - ACTIONS(2747), 1, - anon_sym_else, - STATE(1566), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3277), 14, - sym__dedent, - sym_string_start, + STATE(2712), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2710), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [5915] = 23, + ACTIONS(1245), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1251), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1255), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, sym_float, - ACTIONS(3279), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(1334), 1, + anon_sym_STAR, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1344), 1, + anon_sym_await, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3290), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(813), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(3393), 2, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, + anon_sym_or, + ACTIONS(3391), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1269), 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, - [4855] = 5, - ACTIONS(2747), 1, - anon_sym_else, - STATE(1568), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3287), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1340), 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(3289), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1336), 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, - [4930] = 27, - ACTIONS(1382), 1, + ACTIONS(811), 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(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6026] = 23, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1255), 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(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(1334), 1, anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1344), 1, anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - STATE(2168), 1, - sym_primary_expression, - STATE(2239), 1, + STATE(2143), 1, sym_string, - STATE(2693), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4166), 1, - sym_expression, - STATE(5483), 1, - sym__named_expression_lhs, + STATE(3290), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3071), 2, + ACTIONS(813), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1332), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(1327), 3, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1398), 3, + anon_sym_COLON, + ACTIONS(1269), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, - 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, + ACTIONS(811), 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(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -124596,78 +127721,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5049] = 27, - ACTIONS(2451), 1, + [6137] = 22, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2533), 1, - anon_sym_not, - ACTIONS(2535), 1, + ACTIONS(1334), 1, + anon_sym_STAR, + ACTIONS(1342), 1, anon_sym_LT, - ACTIONS(2543), 1, - anon_sym_new, - ACTIONS(2809), 1, - sym_identifier, - ACTIONS(2817), 1, + ACTIONS(1344), 1, anon_sym_await, - ACTIONS(2943), 1, - anon_sym_STAR, - ACTIONS(2949), 1, - anon_sym_lambda, - STATE(2072), 1, - sym_primary_expression, - STATE(2166), 1, + STATE(2143), 1, sym_string, - STATE(2479), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3975), 1, - sym_expression, - STATE(5590), 1, - sym__named_expression_lhs, + STATE(3290), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4465), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2449), 3, + ACTIONS(1329), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1269), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2813), 5, + ACTIONS(1327), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2526), 20, + ACTIONS(1530), 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(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -124688,69 +127808,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5168] = 27, - ACTIONS(2479), 1, + [6246] = 28, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2647), 1, - anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2651), 1, - anon_sym_lambda, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(2655), 1, - anon_sym_new, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2127), 1, + ACTIONS(3085), 1, + anon_sym_COLON, + ACTIONS(3227), 1, + anon_sym_by, + STATE(2108), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2143), 1, sym_string, - STATE(2608), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4213), 1, + STATE(4046), 1, sym_expression, - STATE(5641), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3083), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2477), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -124759,7 +127880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -124780,17 +127901,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5287] = 5, - ACTIONS(2693), 1, + [6367] = 5, + ACTIONS(2731), 1, anon_sym_else, - STATE(1455), 1, + STATE(1510), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3321), 14, + ACTIONS(3397), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -124803,7 +127924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3319), 46, + ACTIONS(3395), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124850,70 +127971,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [5362] = 28, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [6442] = 5, + ACTIONS(2731), 1, + anon_sym_else, + STATE(1512), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3401), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1219), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1223), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3399), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [6517] = 27, + 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3333), 1, - anon_sym_COLON, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4218), 1, + STATE(3964), 1, sym_expression, - STATE(5199), 1, - sym_with_item, - STATE(5741), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(3403), 2, + sym__newline, + anon_sym_SEMI, + 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -124922,7 +128112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -124943,110 +128133,225 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5483] = 27, - ACTIONS(2479), 1, + [6636] = 4, + ACTIONS(3405), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1535), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, 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(2647), 1, + ACTIONS(1533), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + 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(2649), 1, - anon_sym_LT, - ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2653), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2655), 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(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - STATE(2127), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(4242), 1, - sym_expression, - STATE(5641), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [6709] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1756), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3335), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2477), 3, + ACTIONS(3357), 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(3355), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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(2487), 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, + [6784] = 4, + ACTIONS(3407), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1559), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1557), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [5602] = 4, - ACTIONS(3337), 1, - anon_sym_COLON, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [6857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1547), 15, + ACTIONS(1583), 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, @@ -125057,7 +128362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1545), 46, + ACTIONS(1581), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125104,69 +128409,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [5675] = 27, - ACTIONS(2479), 1, + [6928] = 27, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, ACTIONS(2489), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(2497), 1, - sym_float, ACTIONS(2501), 1, + sym_float, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2559), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(2651), 1, - anon_sym_lambda, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2569), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(2841), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, anon_sym_STAR, + ACTIONS(3039), 1, + anon_sym_lambda, STATE(2127), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2229), 1, sym_string, - STATE(2608), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(4214), 1, + STATE(3935), 1, sym_expression, - STATE(5641), 1, + STATE(5737), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3339), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2477), 3, + STATE(4365), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125175,7 +128480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125196,15 +128501,153 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [5794] = 5, - ACTIONS(2747), 1, + [7047] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3321), 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(3323), 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, + [7118] = 5, + ACTIONS(2731), 1, + anon_sym_else, + STATE(1534), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3329), 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(3331), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [7193] = 5, + ACTIONS(2731), 1, anon_sym_else, - STATE(1644), 1, + STATE(1537), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 14, + ACTIONS(3349), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -125219,7 +128662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3269), 46, + ACTIONS(3351), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125266,15 +128709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [5869] = 5, - ACTIONS(2747), 1, + [7268] = 5, + ACTIONS(2731), 1, anon_sym_else, - STATE(1649), 1, + STATE(1540), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 14, + ACTIONS(3359), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -125289,7 +128732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3283), 46, + ACTIONS(3361), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125336,15 +128779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [5944] = 5, - ACTIONS(2751), 1, + [7343] = 5, + ACTIONS(2735), 1, anon_sym_finally, - STATE(1663), 1, + STATE(1543), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3309), 14, + ACTIONS(3365), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -125359,7 +128802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3311), 46, + ACTIONS(3367), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125406,69 +128849,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6019] = 27, - ACTIONS(2451), 1, + [7418] = 27, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2533), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2535), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2543), 1, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(2809), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(2817), 1, - anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(2949), 1, - anon_sym_lambda, - STATE(2072), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2292), 1, sym_string, - STATE(2479), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3960), 1, + STATE(4230), 1, sym_expression, - STATE(5590), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4308), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2449), 3, + ACTIONS(3409), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2813), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125477,7 +128920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125498,69 +128941,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6138] = 27, - ACTIONS(1328), 1, + [7537] = 27, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(2983), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(2985), 1, - anon_sym_lambda, - STATE(2066), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2292), 1, sym_string, - STATE(2403), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3887), 1, + STATE(4293), 1, sym_expression, - STATE(5743), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4392), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1342), 3, + ACTIONS(3411), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125569,7 +129012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125590,13 +129033,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6257] = 3, + [7656] = 5, + ACTIONS(2731), 1, + anon_sym_else, + STATE(1561), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 14, + ACTIONS(3325), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -125609,7 +129056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3271), 48, + ACTIONS(3327), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125622,8 +129069,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, @@ -125658,70 +129103,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6328] = 28, - ACTIONS(2479), 1, + [7731] = 27, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, ACTIONS(2489), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(2497), 1, - sym_float, ACTIONS(2501), 1, + sym_float, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2559), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(2651), 1, - anon_sym_lambda, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2569), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(2841), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, anon_sym_STAR, - ACTIONS(3113), 1, - anon_sym_COLON, + ACTIONS(3039), 1, + anon_sym_lambda, STATE(2127), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2229), 1, sym_string, - STATE(2608), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(3885), 1, + STATE(3943), 1, sym_expression, - STATE(4739), 1, - sym_slice, - STATE(5641), 1, + STATE(5737), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + STATE(4405), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125730,7 +129174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125751,15 +129195,15 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6449] = 5, - ACTIONS(2747), 1, + [7850] = 5, + ACTIONS(2731), 1, anon_sym_else, - STATE(1733), 1, + STATE(1566), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3343), 14, + ACTIONS(3379), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -125774,7 +129218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3341), 46, + ACTIONS(3381), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125821,17 +129265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6524] = 5, - ACTIONS(2747), 1, - anon_sym_else, - STATE(1757), 1, - sym_else_clause, + [7925] = 4, + ACTIONS(3413), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3347), 14, - sym__dedent, + ACTIONS(1571), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -125844,7 +129287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3345), 46, + ACTIONS(1569), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125891,162 +129334,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6599] = 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(2533), 1, - anon_sym_not, - ACTIONS(2535), 1, - anon_sym_LT, - ACTIONS(2543), 1, - anon_sym_new, - ACTIONS(2809), 1, - sym_identifier, - ACTIONS(2817), 1, - anon_sym_await, - ACTIONS(2943), 1, - anon_sym_STAR, - ACTIONS(2949), 1, - anon_sym_lambda, - STATE(2072), 1, - sym_primary_expression, - STATE(2166), 1, - sym_string, - STATE(2479), 1, - sym_list_splat_pattern, - STATE(3940), 1, - sym_expression, - STATE(5590), 1, - sym__named_expression_lhs, + [7998] = 5, + ACTIONS(2731), 1, + anon_sym_else, + STATE(1567), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4467), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + ACTIONS(3383), 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(2813), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3385), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2527), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2526), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [6718] = 28, - ACTIONS(1211), 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, - ACTIONS(1213), 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, + [8073] = 5, + ACTIONS(2735), 1, + anon_sym_finally, + STATE(1570), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3387), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1219), 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(3389), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [8148] = 28, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3349), 1, - anon_sym_COLON, - STATE(2068), 1, + ACTIONS(3315), 1, + anon_sym_LPAREN, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4218), 1, + STATE(4233), 1, sym_expression, - STATE(5199), 1, + STATE(5028), 1, sym_with_item, - STATE(5741), 1, + STATE(5559), 1, sym__named_expression_lhs, + STATE(5682), 1, + sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126055,7 +129546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126076,69 +129567,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6839] = 27, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [8269] = 27, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1362), 1, + anon_sym_not, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1382), 1, + anon_sym_new, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1394), 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, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, anon_sym_await, - ACTIONS(2655), 1, - anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2127), 1, + ACTIONS(3043), 1, + anon_sym_lambda, + STATE(2122), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2202), 1, sym_string, - STATE(2608), 1, + STATE(2604), 1, sym_list_splat_pattern, - STATE(4278), 1, + STATE(4018), 1, sym_expression, - STATE(5641), 1, + STATE(5800), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3351), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2477), 3, + STATE(4493), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126147,7 +129638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126168,108 +129659,83 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [6958] = 28, - 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(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(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - ACTIONS(3113), 1, - anon_sym_COLON, - STATE(2127), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(3986), 1, - sym_expression, - STATE(5393), 1, - sym_slice, - STATE(5641), 1, - sym__named_expression_lhs, + [8388] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, + ACTIONS(3337), 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(2641), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3335), 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, - 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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [7079] = 5, - ACTIONS(2693), 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, + [8459] = 5, + ACTIONS(2789), 1, anon_sym_else, - STATE(1514), 1, + STATE(1703), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3325), 14, + ACTIONS(3341), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -126284,7 +129750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3323), 46, + ACTIONS(3339), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126331,69 +129797,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7154] = 27, - ACTIONS(1328), 1, + [8534] = 28, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(2983), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(2985), 1, - anon_sym_lambda, - STATE(2066), 1, + ACTIONS(3153), 1, + anon_sym_COLON, + STATE(2177), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2292), 1, sym_string, - STATE(2403), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3980), 1, + STATE(3987), 1, sym_expression, - STATE(5743), 1, + STATE(5140), 1, + sym_slice, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4327), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1342), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126402,7 +129869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126423,16 +129890,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7273] = 4, - ACTIONS(3353), 1, - anon_sym_COLON, + [8655] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1747), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1541), 15, + ACTIONS(3397), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -126445,7 +129913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1539), 46, + ACTIONS(3395), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126492,70 +129960,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7346] = 28, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1219), 1, + [8730] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1706), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3345), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + 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(3343), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + 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, + [8805] = 28, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2525), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 1, + sym_float, + ACTIONS(2533), 1, + anon_sym_sizeof, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3331), 1, - anon_sym_LPAREN, - STATE(2068), 1, + ACTIONS(3153), 1, + anon_sym_COLON, + STATE(2177), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2292), 1, sym_string, - STATE(2451), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4218), 1, + STATE(3965), 1, sym_expression, - STATE(4696), 1, - sym_with_item, - STATE(5741), 1, + STATE(5002), 1, + sym_slice, + STATE(5721), 1, sym__named_expression_lhs, - STATE(5742), 1, - sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126564,7 +130102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126585,70 +130123,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7467] = 28, - ACTIONS(2479), 1, + [8926] = 28, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2653), 1, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_COLON, - STATE(2127), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2292), 1, sym_string, - STATE(2608), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3893), 1, + STATE(3966), 1, sym_expression, - STATE(4738), 1, + STATE(4826), 1, sym_slice, - STATE(5641), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126657,7 +130195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126678,70 +130216,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7588] = 28, - ACTIONS(2479), 1, + [9047] = 27, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, ACTIONS(2489), 1, - anon_sym_LBRACE, + anon_sym_LBRACK, ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(2497), 1, - sym_float, ACTIONS(2501), 1, + sym_float, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2559), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(2651), 1, - anon_sym_lambda, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2569), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(2841), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, anon_sym_STAR, - ACTIONS(3113), 1, - anon_sym_COLON, + ACTIONS(3039), 1, + anon_sym_lambda, STATE(2127), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2229), 1, sym_string, - STATE(2608), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(3932), 1, + STATE(4015), 1, sym_expression, - STATE(5031), 1, - sym_slice, - STATE(5641), 1, + STATE(5737), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + STATE(4366), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126750,7 +130287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126771,70 +130308,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7709] = 28, - ACTIONS(2479), 1, + [9166] = 28, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2653), 1, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_COLON, - STATE(2127), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2292), 1, sym_string, - STATE(2608), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3891), 1, + STATE(4042), 1, sym_expression, - STATE(4762), 1, + STATE(4877), 1, sym_slice, - STATE(5641), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126843,7 +130380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126864,70 +130401,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7830] = 28, - ACTIONS(2479), 1, + [9287] = 28, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2653), 1, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_COLON, - STATE(2127), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2292), 1, sym_string, - STATE(2608), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3904), 1, + STATE(3983), 1, sym_expression, - STATE(4820), 1, + STATE(4908), 1, sym_slice, - STATE(5641), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -126936,7 +130473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -126957,70 +130494,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7951] = 28, - ACTIONS(2479), 1, + [9408] = 28, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2653), 1, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_COLON, - STATE(2127), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2292), 1, sym_string, - STATE(2608), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3909), 1, + STATE(3944), 1, sym_expression, - STATE(4853), 1, + STATE(4933), 1, sym_slice, - STATE(5641), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -127029,7 +130566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -127050,70 +130587,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8072] = 28, - ACTIONS(2479), 1, + [9529] = 28, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2653), 1, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_COLON, - STATE(2127), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2292), 1, sym_string, - STATE(2608), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3915), 1, + STATE(3946), 1, sym_expression, - STATE(4885), 1, + STATE(4960), 1, sym_slice, - STATE(5641), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -127122,7 +130659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -127143,70 +130680,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8193] = 28, - ACTIONS(2479), 1, + [9650] = 28, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2653), 1, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_COLON, - STATE(2127), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2292), 1, sym_string, - STATE(2608), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3921), 1, + STATE(3984), 1, sym_expression, - STATE(4913), 1, + STATE(4981), 1, sym_slice, - STATE(5641), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -127215,7 +130752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -127236,70 +130773,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8314] = 28, - ACTIONS(2479), 1, + [9771] = 28, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2653), 1, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_COLON, - STATE(2127), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2292), 1, sym_string, - STATE(2608), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3926), 1, + STATE(4024), 1, sym_expression, - STATE(4928), 1, + STATE(4997), 1, sym_slice, - STATE(5641), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -127308,7 +130845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -127329,70 +130866,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8435] = 28, - ACTIONS(2479), 1, + [9892] = 28, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2653), 1, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_COLON, - STATE(2127), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2292), 1, sym_string, - STATE(2608), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3931), 1, + STATE(4037), 1, sym_expression, - STATE(4947), 1, + STATE(5012), 1, sym_slice, - STATE(5641), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -127401,7 +130938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -127422,70 +130959,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8556] = 28, - ACTIONS(2479), 1, + [10013] = 28, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2653), 1, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3113), 1, + ACTIONS(3153), 1, anon_sym_COLON, - STATE(2127), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2292), 1, sym_string, - STATE(2608), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3936), 1, + STATE(3953), 1, sym_expression, - STATE(4962), 1, + STATE(5022), 1, sym_slice, - STATE(5641), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -127494,7 +131031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -127515,70 +131052,70 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8677] = 28, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, + [10134] = 28, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2647), 1, - anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2651), 1, - anon_sym_lambda, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(2655), 1, - anon_sym_new, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3113), 1, - anon_sym_COLON, - STATE(2127), 1, + ACTIONS(3315), 1, + anon_sym_LPAREN, + STATE(2108), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2143), 1, sym_string, - STATE(2608), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3937), 1, + STATE(4233), 1, sym_expression, - STATE(4974), 1, - sym_slice, - STATE(5641), 1, + STATE(5028), 1, + sym_with_item, + STATE(5559), 1, sym__named_expression_lhs, + STATE(5640), 1, + sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -127587,7 +131124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -127608,17 +131145,17 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8798] = 5, - ACTIONS(2693), 1, + [10255] = 5, + ACTIONS(2731), 1, anon_sym_else, - STATE(1418), 1, + STATE(1589), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3343), 14, + ACTIONS(3283), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -127631,7 +131168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3341), 46, + ACTIONS(3285), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127678,70 +131215,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8873] = 28, - ACTIONS(1211), 1, + [10330] = 28, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3331), 1, + ACTIONS(3315), 1, anon_sym_LPAREN, - STATE(2068), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4218), 1, + STATE(4233), 1, sym_expression, - STATE(4696), 1, + STATE(5028), 1, sym_with_item, - STATE(5569), 1, - sym_with_clause, - STATE(5741), 1, + STATE(5559), 1, sym__named_expression_lhs, + STATE(5679), 1, + sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -127750,7 +131287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -127771,254 +131308,279 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [8994] = 27, - ACTIONS(1328), 1, + [10451] = 5, + ACTIONS(2731), 1, + anon_sym_else, + STATE(1590), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3287), 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(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, 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, + ACTIONS(3289), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, - 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(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, - anon_sym_STAR, - ACTIONS(2985), 1, - anon_sym_lambda, - STATE(2066), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2403), 1, - sym_list_splat_pattern, - STATE(3887), 1, - sym_expression, - STATE(5743), 1, - sym__named_expression_lhs, + [10526] = 5, + ACTIONS(2789), 1, + anon_sym_else, + STATE(1757), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4212), 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(3401), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3399), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_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(2456), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2455), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [9113] = 28, - ACTIONS(1211), 1, - sym_identifier, - 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, + 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - ACTIONS(3331), 1, - anon_sym_LPAREN, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4218), 1, - sym_expression, - STATE(4696), 1, - sym_with_item, - STATE(5602), 1, - sym_with_clause, - STATE(5741), 1, - sym__named_expression_lhs, + [10601] = 5, + ACTIONS(2731), 1, + anon_sym_else, + STATE(1594), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, + ACTIONS(3291), 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(3293), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [9234] = 27, - ACTIONS(2009), 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, + [10676] = 27, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(2963), 1, anon_sym_await, - ACTIONS(3011), 1, + ACTIONS(2995), 1, anon_sym_not, - ACTIONS(3013), 1, + ACTIONS(2997), 1, anon_sym_lambda, - ACTIONS(3015), 1, + ACTIONS(2999), 1, anon_sym_new, - STATE(2046), 1, + STATE(2117), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2153), 1, sym_string, - STATE(2270), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(4289), 1, + STATE(4354), 1, sym_expression, - STATE(5685), 1, + STATE(5757), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3071), 2, + ACTIONS(3143), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2007), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(3906), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -128027,7 +131589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -128048,69 +131610,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [9353] = 27, - ACTIONS(2009), 1, + [10795] = 27, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(2963), 1, anon_sym_await, - ACTIONS(3011), 1, + ACTIONS(2995), 1, anon_sym_not, - ACTIONS(3013), 1, + ACTIONS(2997), 1, anon_sym_lambda, - ACTIONS(3015), 1, + ACTIONS(2999), 1, anon_sym_new, - STATE(2046), 1, + STATE(2117), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2153), 1, sym_string, - STATE(2270), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(4289), 1, + STATE(4354), 1, sym_expression, - STATE(5685), 1, + STATE(5757), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3083), 2, + ACTIONS(3085), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2007), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(3906), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -128119,7 +131681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -128140,69 +131702,140 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [9472] = 27, - ACTIONS(2479), 1, + [10914] = 5, + ACTIONS(2731), 1, + anon_sym_else, + STATE(1595), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3295), 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(3297), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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(2647), 1, + [10989] = 28, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_LBRACE, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(1426), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, + sym_float, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, + ACTIONS(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, anon_sym_STAR, - STATE(2127), 1, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + ACTIONS(3415), 1, + anon_sym_RPAREN, + STATE(2221), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2410), 1, sym_string, - STATE(2608), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4287), 1, + STATE(4279), 1, sym_expression, - STATE(5641), 1, + STATE(5387), 1, + sym_with_item, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3141), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2477), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -128211,7 +131844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -128232,17 +131865,16 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [9591] = 5, - ACTIONS(2693), 1, - anon_sym_else, - STATE(1437), 1, - sym_else_clause, + [11110] = 4, + ACTIONS(3417), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3347), 14, + ACTIONS(1541), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -128255,7 +131887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3345), 46, + ACTIONS(1539), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128302,17 +131934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9666] = 5, - ACTIONS(2751), 1, - anon_sym_finally, - STATE(1578), 1, - sym_finally_clause, + [11183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 14, - sym__dedent, + ACTIONS(1687), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -128325,7 +131954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3297), 46, + ACTIONS(1685), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128372,11 +132001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9741] = 3, + [11253] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1857), 15, + ACTIONS(1811), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128392,7 +132021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1855), 46, + ACTIONS(1809), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128439,15 +132068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9811] = 4, - ACTIONS(3355), 1, - anon_sym_SEMI, + [11323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1589), 14, + ACTIONS(1815), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -128460,7 +132088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1585), 46, + ACTIONS(1813), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128507,11 +132135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9883] = 3, + [11393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1985), 15, + ACTIONS(1819), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128527,7 +132155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1983), 46, + ACTIONS(1817), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128574,11 +132202,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [9953] = 3, + [11463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2093), 15, + ACTIONS(2087), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128594,7 +132222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2091), 46, + ACTIONS(2085), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128641,11 +132269,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10023] = 3, + [11533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1965), 15, + ACTIONS(1939), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128661,7 +132289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1963), 46, + ACTIONS(1937), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128708,11 +132336,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10093] = 3, + [11603] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2097), 15, + ACTIONS(1823), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128728,7 +132356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2095), 46, + ACTIONS(1821), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128775,11 +132403,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10163] = 3, + [11673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 15, + ACTIONS(2091), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128795,7 +132423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1715), 46, + ACTIONS(2089), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128842,68 +132470,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10233] = 27, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [11743] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2095), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1219), 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(2093), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [11813] = 27, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(1597), 1, anon_sym_STAR, - STATE(2068), 1, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2410), 1, sym_string, - STATE(2451), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4218), 1, + STATE(4279), 1, sym_expression, - STATE(5199), 1, + STATE(5387), 1, sym_with_item, - STATE(5741), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -128912,7 +132607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -128933,11 +132628,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [10351] = 3, + [11931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 15, + ACTIONS(1639), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128953,7 +132648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1787), 46, + ACTIONS(1637), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129000,11 +132695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10421] = 3, + [12001] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 15, + ACTIONS(2131), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129020,7 +132715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1791), 46, + ACTIONS(2129), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129067,11 +132762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10491] = 3, + [12071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1721), 15, + ACTIONS(2163), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129087,7 +132782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1719), 46, + ACTIONS(2161), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129134,11 +132829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10561] = 3, + [12141] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2113), 15, + ACTIONS(2099), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129154,7 +132849,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2111), 46, + 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, + [12211] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3419), 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(3421), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129172,6 +132933,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, @@ -129201,11 +132963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10631] = 3, + [12281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 15, + ACTIONS(2135), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129221,7 +132983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1795), 46, + ACTIONS(2133), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129268,11 +133030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10701] = 3, + [12351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1579), 15, + ACTIONS(2139), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129288,7 +133050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1577), 46, + ACTIONS(2137), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129335,11 +133097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10771] = 3, + [12421] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1801), 15, + ACTIONS(2143), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129355,7 +133117,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1799), 46, + ACTIONS(2141), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [12491] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3423), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3425), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129373,6 +133201,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, @@ -129402,11 +133231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10841] = 3, + [12561] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 15, + ACTIONS(2103), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129422,7 +133251,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1595), 46, + ACTIONS(2101), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [12631] = 4, + ACTIONS(3427), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1623), 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(1619), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129469,11 +133366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10911] = 3, + [12703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 15, + ACTIONS(2107), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129489,7 +133386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1603), 46, + ACTIONS(2105), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129536,78 +133433,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10981] = 3, + [12773] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4233), 1, + sym_expression, + STATE(5444), 1, + sym_with_item, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 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(1607), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1249), 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, - [11051] = 3, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [12891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1725), 15, + ACTIONS(1947), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129623,7 +133544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1723), 46, + ACTIONS(1945), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129670,11 +133591,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11121] = 3, + [12961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 15, + ACTIONS(2147), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129690,7 +133611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1803), 46, + ACTIONS(2145), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129737,11 +133658,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11191] = 3, + [13031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2289), 15, + ACTIONS(1963), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129757,7 +133678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2287), 46, + ACTIONS(1961), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129804,11 +133725,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11261] = 3, + [13101] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4077), 1, + sym_expression, + STATE(5478), 1, + sym_expression_list, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2293), 15, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [13219] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2151), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129824,7 +133836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2291), 46, + ACTIONS(2149), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129871,11 +133883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11331] = 3, + [13289] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2253), 15, + ACTIONS(2167), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129891,7 +133903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2251), 46, + ACTIONS(2165), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129938,11 +133950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11401] = 3, + [13359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2297), 15, + ACTIONS(1827), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129958,7 +133970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2295), 46, + ACTIONS(1825), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130005,102 +134017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11471] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_COLON, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4158), 1, - sym_expression, - STATE(5741), 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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [11589] = 3, + [13429] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2301), 15, + ACTIONS(1831), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130116,7 +134037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2299), 46, + ACTIONS(1829), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130163,11 +134084,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11659] = 3, + [13499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2257), 15, + ACTIONS(2395), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130183,7 +134104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2255), 46, + ACTIONS(2393), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130230,11 +134151,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11729] = 3, + [13569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2261), 15, + ACTIONS(2399), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130250,7 +134171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2259), 46, + ACTIONS(2397), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130297,11 +134218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11799] = 3, + [13639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2305), 15, + ACTIONS(1643), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130317,7 +134238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2303), 46, + ACTIONS(1641), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130364,11 +134285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11869] = 3, + [13709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 15, + ACTIONS(1835), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130384,7 +134305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1611), 46, + ACTIONS(1833), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130431,11 +134352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11939] = 3, + [13779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2353), 15, + ACTIONS(1647), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130451,7 +134372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2351), 46, + ACTIONS(1645), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130498,11 +134419,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12009] = 3, + [13849] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 15, + ACTIONS(1839), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130518,7 +134439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1615), 46, + ACTIONS(1837), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130565,11 +134486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12079] = 3, + [13919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2309), 15, + ACTIONS(2051), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130585,7 +134506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2307), 46, + ACTIONS(2049), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130632,11 +134553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12149] = 3, + [13989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 15, + ACTIONS(2155), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130652,7 +134573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1807), 46, + ACTIONS(2153), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130699,11 +134620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12219] = 3, + [14059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2101), 15, + ACTIONS(2159), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130719,7 +134640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2099), 46, + ACTIONS(2157), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130766,11 +134687,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12289] = 3, + [14129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2265), 15, + ACTIONS(2071), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130786,7 +134707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2263), 46, + ACTIONS(2069), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130833,11 +134754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12359] = 3, + [14199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1989), 15, + ACTIONS(2171), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130853,7 +134774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1987), 46, + ACTIONS(2169), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130900,11 +134821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12429] = 3, + [14269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1993), 15, + ACTIONS(1971), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130920,7 +134841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1991), 46, + ACTIONS(1969), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130967,11 +134888,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12499] = 3, + [14339] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 15, + ACTIONS(2003), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -130987,7 +134908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1639), 46, + ACTIONS(2001), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131034,11 +134955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12569] = 3, + [14409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1997), 15, + ACTIONS(2203), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131054,7 +134975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1995), 46, + ACTIONS(2201), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131101,102 +135022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12639] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - ACTIONS(3083), 1, - anon_sym_COLON, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4232), 1, - sym_expression, - STATE(5741), 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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [12757] = 3, + [14479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 15, + ACTIONS(1651), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131212,7 +135042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1811), 46, + ACTIONS(1649), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131259,11 +135089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12827] = 3, + [14549] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 15, + ACTIONS(1671), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131279,7 +135109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1815), 46, + ACTIONS(1669), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131326,11 +135156,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12897] = 3, + [14619] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + ACTIONS(3429), 1, + anon_sym_COLON, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4261), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [14737] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 15, + ACTIONS(2403), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131346,7 +135267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1819), 46, + ACTIONS(2401), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131393,11 +135314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12967] = 3, + [14807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2001), 15, + ACTIONS(2111), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131413,7 +135334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1999), 46, + ACTIONS(2109), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131460,11 +135381,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13037] = 3, + [14877] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2357), 15, + ACTIONS(1627), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131480,7 +135401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2355), 46, + ACTIONS(1625), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131527,11 +135448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13107] = 3, + [14947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 15, + ACTIONS(2055), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131547,7 +135468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1631), 46, + ACTIONS(2053), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131594,102 +135515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13177] = 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(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - STATE(2168), 1, - sym_primary_expression, - STATE(2239), 1, - sym_string, - STATE(2693), 1, - sym_list_splat_pattern, - STATE(4183), 1, - sym_expression, - STATE(5384), 1, - sym_with_item, - STATE(5483), 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(1567), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2657), 8, - 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, - [13295] = 3, + [15017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2005), 15, + ACTIONS(1743), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131705,7 +135535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2003), 46, + ACTIONS(1741), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131752,11 +135582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13365] = 3, + [15087] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2037), 15, + ACTIONS(1735), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131772,7 +135602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2035), 46, + ACTIONS(1733), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131819,11 +135649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13435] = 3, + [15157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2117), 15, + ACTIONS(1843), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131839,7 +135669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2115), 46, + ACTIONS(1841), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131886,11 +135716,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13505] = 3, + [15227] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2121), 15, + ACTIONS(2331), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131906,7 +135736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2119), 46, + ACTIONS(2329), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131953,11 +135783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13575] = 3, + [15297] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 15, + ACTIONS(2335), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131973,7 +135803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1823), 46, + ACTIONS(2333), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132020,11 +135850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13645] = 3, + [15367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1829), 15, + ACTIONS(2023), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132040,7 +135870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1827), 46, + ACTIONS(2021), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132087,11 +135917,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13715] = 3, + [15437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 15, + ACTIONS(1955), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132107,7 +135937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1831), 46, + ACTIONS(1953), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132154,11 +135984,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13785] = 3, + [15507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 15, + ACTIONS(1943), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132174,7 +136004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1643), 46, + ACTIONS(1941), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132221,11 +136051,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13855] = 3, + [15577] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + ACTIONS(3431), 1, + anon_sym_COLON, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4274), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [15695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 15, + ACTIONS(2339), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132241,7 +136162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1647), 46, + ACTIONS(2337), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132288,11 +136209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13925] = 3, + [15765] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2269), 15, + ACTIONS(2007), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132308,7 +136229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2267), 46, + ACTIONS(2005), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132355,11 +136276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13995] = 3, + [15835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1837), 15, + ACTIONS(1727), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132375,7 +136296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1835), 46, + ACTIONS(1725), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132422,11 +136343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14065] = 3, + [15905] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 15, + ACTIONS(2031), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132442,7 +136363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1807), 46, + ACTIONS(2029), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132489,11 +136410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14135] = 3, + [15975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 15, + ACTIONS(1631), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132509,7 +136430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1651), 46, + ACTIONS(1629), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132556,11 +136477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14205] = 3, + [16045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 15, + ACTIONS(1613), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132576,7 +136497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1839), 46, + ACTIONS(1611), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132623,78 +136544,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14275] = 3, + [16115] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4050), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + STATE(5815), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 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(1843), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1249), 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, - [14345] = 3, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [16233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 15, + ACTIONS(2059), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132710,7 +136655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1655), 46, + ACTIONS(2057), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132757,11 +136702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14415] = 3, + [16303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 15, + ACTIONS(1747), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132777,7 +136722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2359), 46, + ACTIONS(1745), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132824,11 +136769,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14485] = 3, + [16373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2041), 15, + ACTIONS(1751), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132844,7 +136789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2039), 46, + ACTIONS(1749), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132891,11 +136836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14555] = 3, + [16443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2045), 15, + ACTIONS(2063), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132911,7 +136856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2043), 46, + ACTIONS(2061), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132958,11 +136903,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14625] = 3, + [16513] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + ACTIONS(3433), 1, + anon_sym_COLON, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4274), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [16631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1961), 15, + ACTIONS(1679), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132978,7 +137014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1959), 46, + ACTIONS(1677), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133025,11 +137061,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14695] = 3, + [16701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1981), 15, + ACTIONS(1655), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133045,7 +137081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1979), 46, + ACTIONS(1653), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133092,11 +137128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14765] = 3, + [16771] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 15, + ACTIONS(2343), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133112,7 +137148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1599), 46, + ACTIONS(2341), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133159,11 +137195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14835] = 3, + [16841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 15, + ACTIONS(2347), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133179,7 +137215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2363), 46, + ACTIONS(2345), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133226,11 +137262,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14905] = 3, + [16911] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4022), 1, + sym_expression, + STATE(5433), 1, + sym_expression_list, + STATE(5559), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [17029] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2273), 15, + ACTIONS(2027), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133246,7 +137373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2271), 46, + ACTIONS(2025), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133293,11 +137420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14975] = 3, + [17099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 15, + ACTIONS(1675), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133313,7 +137440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1815), 46, + ACTIONS(1673), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133360,11 +137487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15045] = 3, + [17169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 15, + ACTIONS(1951), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133380,7 +137507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1847), 46, + ACTIONS(1949), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133427,11 +137554,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15115] = 3, + [17239] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4123), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + STATE(5659), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [17357] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 15, + ACTIONS(2115), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133447,7 +137665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1823), 46, + ACTIONS(2113), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133494,11 +137712,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15185] = 3, + [17427] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3941), 1, + sym_expression, + STATE(5398), 1, + sym_expression_list, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2277), 15, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [17545] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2351), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133514,7 +137823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2275), 46, + ACTIONS(2349), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133561,11 +137870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15255] = 3, + [17615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2049), 15, + ACTIONS(1847), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133581,7 +137890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2047), 46, + ACTIONS(1845), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133628,11 +137937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15325] = 3, + [17685] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 15, + ACTIONS(2067), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133648,7 +137957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1659), 46, + ACTIONS(2065), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133695,11 +138004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15395] = 3, + [17755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1853), 15, + ACTIONS(1755), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133715,7 +138024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1851), 46, + ACTIONS(1753), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133762,102 +138071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15465] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4105), 1, - sym_expression, - STATE(5636), 1, - sym_expression_list, - STATE(5741), 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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [15583] = 3, + [17825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2137), 15, + ACTIONS(1759), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133873,7 +138091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2135), 46, + ACTIONS(1757), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133920,11 +138138,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15653] = 3, + [17895] = 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(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, + sym_primary_expression, + STATE(2100), 1, + sym_string, + STATE(2166), 1, + sym_list_splat_pattern, + STATE(3951), 1, + sym_expression, + STATE(5465), 1, + sym_expression_list, + STATE(5657), 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(824), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3492), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [18013] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2053), 15, + ACTIONS(1591), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133940,7 +138249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2051), 46, + ACTIONS(1589), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133987,11 +138296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15723] = 3, + [18083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2281), 15, + ACTIONS(1683), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134007,7 +138316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2279), 46, + ACTIONS(1681), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134054,11 +138363,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15793] = 3, + [18153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2333), 15, + ACTIONS(2379), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134074,7 +138383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2331), 46, + ACTIONS(2377), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134121,11 +138430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15863] = 3, + [18223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2141), 15, + ACTIONS(2175), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134141,7 +138450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2139), 46, + ACTIONS(2173), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134188,11 +138497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15933] = 3, + [18293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 15, + ACTIONS(1851), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134208,7 +138517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1663), 46, + ACTIONS(1849), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134255,11 +138564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16003] = 3, + [18363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2145), 15, + ACTIONS(1855), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134275,7 +138584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2143), 46, + ACTIONS(1853), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134322,102 +138631,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16073] = 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(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(3962), 1, - sym_expression, - STATE(5319), 1, - sym_expression_list, - STATE(5736), 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(944), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [16191] = 3, + [18433] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2209), 15, + ACTIONS(1691), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134433,7 +138651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2207), 46, + ACTIONS(1689), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134480,11 +138698,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16261] = 3, + [18503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2213), 15, + ACTIONS(1763), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134500,7 +138718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2211), 46, + ACTIONS(1761), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134547,11 +138765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16331] = 3, + [18573] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2217), 15, + ACTIONS(1695), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134567,7 +138785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2215), 46, + ACTIONS(1693), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134614,11 +138832,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16401] = 3, + [18643] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2221), 15, + ACTIONS(1859), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134634,7 +138852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2219), 46, + ACTIONS(1857), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134681,11 +138899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16471] = 3, + [18713] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 15, + ACTIONS(1863), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134701,7 +138919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1859), 46, + ACTIONS(1861), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134748,11 +138966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16541] = 3, + [18783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2225), 15, + ACTIONS(2295), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134768,7 +138986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2223), 46, + ACTIONS(2293), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134815,11 +139033,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16611] = 3, + [18853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2285), 15, + ACTIONS(1867), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134835,7 +139053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2283), 46, + ACTIONS(1865), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134882,11 +139100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16681] = 3, + [18923] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2229), 15, + ACTIONS(1871), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134902,7 +139120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2227), 46, + ACTIONS(1869), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134949,11 +139167,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16751] = 3, + [18993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2057), 15, + ACTIONS(1875), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134969,7 +139187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2055), 46, + ACTIONS(1873), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135016,11 +139234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16821] = 3, + [19063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 15, + ACTIONS(2011), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135036,7 +139254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1863), 46, + ACTIONS(2009), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135083,11 +139301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16891] = 3, + [19133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 15, + ACTIONS(1943), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135103,7 +139321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1867), 46, + ACTIONS(1941), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135150,11 +139368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16961] = 3, + [19203] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 15, + ACTIONS(2299), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135170,7 +139388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1635), 46, + ACTIONS(2297), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135217,11 +139435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17031] = 3, + [19273] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1729), 15, + ACTIONS(2303), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135237,7 +139455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1727), 46, + ACTIONS(2301), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135284,11 +139502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17101] = 3, + [19343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 15, + ACTIONS(1617), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135304,7 +139522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1871), 46, + ACTIONS(1615), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135351,11 +139569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17171] = 3, + [19413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1733), 15, + ACTIONS(1967), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135371,7 +139589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1731), 46, + ACTIONS(1965), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135418,11 +139636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17241] = 3, + [19483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1737), 15, + ACTIONS(2015), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135438,7 +139656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1735), 46, + ACTIONS(2013), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135485,11 +139703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17311] = 3, + [19553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2061), 15, + ACTIONS(1959), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135505,7 +139723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2059), 46, + ACTIONS(1957), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135552,11 +139770,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17381] = 3, + [19623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1741), 15, + ACTIONS(1847), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135572,7 +139790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1739), 46, + ACTIONS(1845), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135619,11 +139837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17451] = 3, + [19693] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2149), 15, + ACTIONS(1879), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135639,7 +139857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2147), 46, + ACTIONS(1877), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135686,11 +139904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17521] = 3, + [19763] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2153), 15, + ACTIONS(1883), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135706,7 +139924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2151), 46, + ACTIONS(1881), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135753,11 +139971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17591] = 3, + [19833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2233), 15, + ACTIONS(1699), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135773,7 +139991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2231), 46, + ACTIONS(1697), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135820,11 +140038,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17661] = 3, + [19903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1745), 15, + ACTIONS(2179), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135840,7 +140058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1743), 46, + ACTIONS(2177), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135887,11 +140105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17731] = 3, + [19973] = 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, @@ -135907,7 +140125,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, @@ -135954,11 +140172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17801] = 3, + [20043] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1749), 15, + ACTIONS(1887), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135974,7 +140192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1747), 46, + ACTIONS(1885), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136021,11 +140239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17871] = 3, + [20113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1729), 15, + ACTIONS(2019), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136041,7 +140259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1727), 46, + ACTIONS(2017), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136088,11 +140306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17941] = 3, + [20183] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 15, + ACTIONS(1863), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136108,7 +140326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2167), 46, + ACTIONS(1861), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136155,11 +140373,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18011] = 3, + [20253] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2237), 15, + ACTIONS(1891), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136175,7 +140393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2235), 46, + ACTIONS(1889), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136222,98 +140440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18081] = 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(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3236), 1, - sym_primary_expression, + [20323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(3315), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3317), 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(931), 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(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [18191] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2173), 15, + ACTIONS(2183), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136329,7 +140460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2171), 46, + ACTIONS(2181), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136376,78 +140507,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18261] = 3, + [20393] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4153), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + STATE(5816), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2177), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 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(2175), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1249), 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, - [18331] = 3, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [20511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2241), 15, + ACTIONS(2187), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136463,7 +140618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2239), 46, + ACTIONS(2185), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136510,11 +140665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18401] = 3, + [20581] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2181), 15, + ACTIONS(1739), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136530,7 +140685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2179), 46, + ACTIONS(1737), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136577,11 +140732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18471] = 3, + [20651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2349), 15, + ACTIONS(2247), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136597,7 +140752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2347), 46, + ACTIONS(2245), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136644,11 +140799,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18541] = 3, + [20721] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2157), 15, + ACTIONS(2251), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136664,7 +140819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2155), 46, + ACTIONS(2249), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136711,11 +140866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18611] = 3, + [20791] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2245), 15, + ACTIONS(2255), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136731,7 +140886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2243), 46, + ACTIONS(2253), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136778,11 +140933,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18681] = 3, + [20861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2249), 15, + ACTIONS(2259), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136798,7 +140953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2247), 46, + ACTIONS(2257), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136845,11 +141000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18751] = 3, + [20931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1753), 15, + ACTIONS(2263), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136865,7 +141020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1751), 46, + ACTIONS(2261), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136912,78 +141067,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18821] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1669), 15, + [21001] = 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, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1319), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, + ACTIONS(3435), 1, + anon_sym_STAR, + ACTIONS(3437), 1, anon_sym_PLUS, + ACTIONS(3439), 1, + anon_sym_QMARK, + STATE(2091), 1, + sym_primary_expression, + STATE(2100), 1, + sym_string, + STATE(2166), 1, + sym_list_splat_pattern, + STATE(4019), 1, + sym_expression, + STATE(5657), 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, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(1667), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(824), 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, - [18891] = 3, + STATE(3492), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [21121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 15, + ACTIONS(2207), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136999,7 +141179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1671), 46, + ACTIONS(2205), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137046,11 +141226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18961] = 3, + [21191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1677), 15, + ACTIONS(1895), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137066,7 +141246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1675), 46, + ACTIONS(1893), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137113,11 +141293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19031] = 3, + [21261] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 15, + ACTIONS(2267), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137133,7 +141313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1679), 46, + ACTIONS(2265), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137180,11 +141360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19101] = 3, + [21331] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 15, + ACTIONS(2035), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137200,7 +141380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1683), 46, + ACTIONS(2033), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137247,11 +141427,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19171] = 3, + [21401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2189), 15, + ACTIONS(2039), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137267,7 +141447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2187), 46, + ACTIONS(2037), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137314,11 +141494,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19241] = 3, + [21471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 15, + ACTIONS(2075), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137334,7 +141514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1679), 46, + ACTIONS(2073), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137381,11 +141561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19311] = 3, + [21541] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 15, + ACTIONS(1899), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137401,7 +141581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1679), 46, + ACTIONS(1897), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137448,11 +141628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19381] = 3, + [21611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2065), 15, + ACTIONS(2079), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137468,7 +141648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2063), 46, + ACTIONS(2077), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137515,11 +141695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19451] = 3, + [21681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2193), 15, + ACTIONS(2387), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137535,7 +141715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2191), 46, + ACTIONS(2385), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137582,104 +141762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19521] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - ACTIONS(3359), 1, - anon_sym_COLON, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4158), 1, - sym_expression, - STATE(5741), 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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [19639] = 3, + [21751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3363), 14, - sym__dedent, + ACTIONS(2211), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -137692,7 +141782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3361), 47, + ACTIONS(2209), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137710,7 +141800,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, @@ -137740,11 +141829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19709] = 3, + [21821] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1737), 15, + ACTIONS(2083), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137760,7 +141849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1735), 46, + ACTIONS(2081), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137807,11 +141896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19779] = 3, + [21891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1757), 15, + ACTIONS(1903), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137827,7 +141916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1755), 46, + ACTIONS(1901), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137874,11 +141963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19849] = 3, + [21961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2069), 15, + ACTIONS(2307), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137894,7 +141983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2067), 46, + ACTIONS(2305), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137941,11 +142030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19919] = 3, + [22031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1877), 15, + ACTIONS(2043), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137961,7 +142050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1875), 46, + ACTIONS(2041), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138008,11 +142097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19989] = 3, + [22101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1881), 15, + ACTIONS(2391), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138028,7 +142117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1879), 46, + ACTIONS(2389), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138075,102 +142164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20059] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - ACTIONS(3365), 1, - anon_sym_COLON, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4158), 1, - sym_expression, - STATE(5741), 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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [20177] = 3, + [22171] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 15, + ACTIONS(2191), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138186,7 +142184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1581), 46, + ACTIONS(2189), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138233,98 +142231,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20247] = 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(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3236), 1, - sym_primary_expression, + [22241] = 4, + ACTIONS(3441), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 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, + ACTIONS(1609), 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(1304), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1605), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(931), 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(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [20357] = 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, + [22313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1729), 15, + ACTIONS(2271), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138340,7 +142319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1727), 46, + ACTIONS(2269), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138387,11 +142366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20427] = 3, + [22383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1761), 15, + ACTIONS(2275), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138407,7 +142386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1759), 46, + ACTIONS(2273), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138454,11 +142433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20497] = 3, + [22453] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 15, + ACTIONS(1907), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138474,7 +142453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1591), 46, + ACTIONS(1905), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138521,11 +142500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20567] = 3, + [22523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 15, + ACTIONS(2215), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138541,7 +142520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1687), 46, + ACTIONS(2213), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138588,11 +142567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20637] = 3, + [22593] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1693), 15, + ACTIONS(2279), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138608,7 +142587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1691), 46, + ACTIONS(2277), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138655,11 +142634,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20707] = 3, + [22663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1885), 15, + ACTIONS(2195), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138675,7 +142654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1883), 46, + ACTIONS(2193), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138722,11 +142701,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20777] = 3, + [22733] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1889), 15, + ACTIONS(2283), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138742,7 +142721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1887), 46, + ACTIONS(2281), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138789,11 +142768,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20847] = 3, + [22803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2125), 15, + ACTIONS(2311), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138809,7 +142788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2123), 46, + ACTIONS(2309), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138856,11 +142835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20917] = 3, + [22873] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2161), 15, + ACTIONS(2287), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138876,7 +142855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2159), 46, + ACTIONS(2285), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138923,11 +142902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20987] = 3, + [22943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 15, + ACTIONS(2291), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138943,7 +142922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1695), 46, + ACTIONS(2289), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138990,11 +142969,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21057] = 3, + [23013] = 23, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(1334), 1, + anon_sym_STAR, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1344), 1, + anon_sym_await, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3290), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2165), 15, + ACTIONS(813), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(3391), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3393), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(1269), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1340), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1336), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(811), 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(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [23123] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1911), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139010,7 +143076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2163), 46, + ACTIONS(1909), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139057,11 +143123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21127] = 3, + [23193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 15, + ACTIONS(1707), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139077,7 +143143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1699), 46, + ACTIONS(1705), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139124,11 +143190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21197] = 3, + [23263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2129), 15, + ACTIONS(1711), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139144,7 +143210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2127), 46, + ACTIONS(1709), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139191,103 +143257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21267] = 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(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, - anon_sym_PLUS, - ACTIONS(3371), 1, - anon_sym_QMARK, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(3910), 1, - sym_expression, - STATE(5736), 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(944), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [21387] = 3, + [23333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1893), 15, + ACTIONS(1715), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139303,7 +143277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1891), 46, + ACTIONS(1713), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139350,11 +143324,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21457] = 3, + [23403] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 15, + ACTIONS(1719), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139370,7 +143344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1703), 46, + ACTIONS(1717), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139417,11 +143391,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21527] = 3, + [23473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2369), 15, + ACTIONS(2315), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139437,7 +143411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2367), 46, + ACTIONS(2313), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139484,11 +143458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21597] = 3, + [23543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 15, + ACTIONS(2319), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139504,7 +143478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1763), 46, + ACTIONS(2317), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139551,11 +143525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21667] = 3, + [23613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2073), 15, + ACTIONS(1723), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139571,7 +143545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2071), 46, + ACTIONS(1721), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139618,11 +143592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21737] = 3, + [23683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2197), 15, + ACTIONS(2219), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139638,7 +143612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2195), 46, + ACTIONS(2217), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139685,11 +143659,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21807] = 3, + [23753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1897), 15, + ACTIONS(2223), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139705,7 +143679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1895), 46, + ACTIONS(2221), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139752,11 +143726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21877] = 3, + [23823] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2201), 15, + ACTIONS(2227), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139772,7 +143746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2199), 46, + ACTIONS(2225), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139819,11 +143793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21947] = 3, + [23893] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2313), 15, + ACTIONS(2231), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139839,7 +143813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2311), 46, + ACTIONS(2229), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139886,11 +143860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22017] = 3, + [23963] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 15, + ACTIONS(1635), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139906,7 +143880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1767), 46, + ACTIONS(1633), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139953,13 +143927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22087] = 3, + [24033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3363), 14, + ACTIONS(1719), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -139972,7 +143947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3361), 47, + ACTIONS(1717), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139990,7 +143965,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, @@ -140020,11 +143994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22157] = 3, + [24103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2317), 15, + ACTIONS(2323), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140040,7 +144014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2315), 46, + ACTIONS(2321), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140087,81 +144061,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22227] = 3, + [24173] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + ACTIONS(3443), 1, + anon_sym_COLON, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4274), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1977), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 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(1975), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1249), 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, - [22297] = 3, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [24291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2321), 15, + ACTIONS(3419), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -140174,7 +144171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2319), 46, + ACTIONS(3421), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140192,6 +144189,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, @@ -140221,11 +144219,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22367] = 3, + [24361] = 23, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(1334), 1, + anon_sym_STAR, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1344), 1, + anon_sym_await, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3290), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(813), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1327), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1332), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(1269), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1340), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1336), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(811), 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(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [24471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 15, + ACTIONS(1719), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140241,7 +144326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1771), 46, + ACTIONS(1717), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140288,68 +144373,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22437] = 27, - ACTIONS(1211), 1, + [24541] = 27, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3445), 1, anon_sym_COLON, - STATE(2068), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4158), 1, + STATE(4319), 1, sym_expression, - STATE(5741), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -140358,7 +144443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -140379,11 +144464,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [22555] = 3, + [24659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2205), 15, + ACTIONS(2235), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140399,7 +144484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2203), 46, + ACTIONS(2233), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140446,11 +144531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22625] = 3, + [24729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 15, + ACTIONS(2327), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140466,7 +144551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2323), 46, + ACTIONS(2325), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140513,11 +144598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22695] = 3, + [24799] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2329), 15, + ACTIONS(2047), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140533,7 +144618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2327), 46, + ACTIONS(2045), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140580,102 +144665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22765] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - ACTIONS(3375), 1, - anon_sym_COLON, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4226), 1, - sym_expression, - STATE(5741), 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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [22883] = 3, + [24869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2133), 15, + ACTIONS(2239), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140691,7 +144685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2131), 46, + ACTIONS(2237), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140738,102 +144732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22953] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - ACTIONS(3377), 1, - anon_sym_COLON, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4190), 1, - sym_expression, - STATE(5741), 1, - sym__named_expression_lhs, + [24939] = 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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [23071] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1629), 15, + ACTIONS(1767), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140849,7 +144752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1627), 46, + ACTIONS(1765), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140896,102 +144799,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23141] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4054), 1, - sym_expression, - STATE(5607), 1, - sym_expression_list, - STATE(5741), 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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [23259] = 3, + [25009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1901), 15, + ACTIONS(1771), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141007,7 +144819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1899), 46, + ACTIONS(1769), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141054,11 +144866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23329] = 3, + [25079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2105), 15, + ACTIONS(1775), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141074,7 +144886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2103), 46, + ACTIONS(1773), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141121,11 +144933,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23399] = 3, + [25149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 15, + ACTIONS(2375), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141141,7 +144953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1903), 46, + ACTIONS(2373), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141188,11 +145000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23469] = 3, + [25219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 15, + ACTIONS(1779), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141208,7 +145020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1775), 46, + ACTIONS(1777), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141255,11 +145067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23539] = 3, + [25289] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1909), 15, + ACTIONS(1915), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141275,7 +145087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1907), 46, + ACTIONS(1913), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141322,11 +145134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23609] = 3, + [25359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 15, + ACTIONS(1783), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141342,7 +145154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1779), 46, + ACTIONS(1781), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141389,11 +145201,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23679] = 3, + [25429] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1913), 15, + ACTIONS(1919), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141409,7 +145221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1911), 46, + ACTIONS(1917), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141456,13 +145268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23749] = 3, + [25499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3381), 14, - sym__dedent, + ACTIONS(1787), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -141475,7 +145288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3379), 47, + ACTIONS(1785), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141493,7 +145306,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, @@ -141523,11 +145335,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23819] = 3, + [25569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1917), 15, + ACTIONS(1767), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141543,7 +145355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1915), 46, + ACTIONS(1765), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141590,15 +145402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23889] = 4, - ACTIONS(3383), 1, - anon_sym_SEMI, + [25639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1575), 14, + ACTIONS(1791), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -141611,7 +145422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1571), 46, + ACTIONS(1789), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141658,11 +145469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23961] = 3, + [25709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 15, + ACTIONS(1775), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141678,7 +145489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1783), 46, + ACTIONS(1773), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141725,11 +145536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24031] = 3, + [25779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1709), 15, + ACTIONS(1795), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141745,7 +145556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1707), 46, + ACTIONS(1793), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141792,81 +145603,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24101] = 3, + [25849] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + ACTIONS(3447), 1, + anon_sym_COLON, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4274), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 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(1711), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1249), 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, - [24171] = 3, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [25967] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 15, + ACTIONS(3423), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -141879,7 +145713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1971), 46, + ACTIONS(3425), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141897,6 +145731,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, @@ -141926,11 +145761,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24241] = 3, + [26037] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1921), 15, + ACTIONS(1767), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141946,7 +145781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1919), 46, + ACTIONS(1765), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141993,11 +145828,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24311] = 3, + [26107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2085), 15, + ACTIONS(1731), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142013,7 +145848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2083), 46, + ACTIONS(1729), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142060,11 +145895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24381] = 3, + [26177] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 15, + ACTIONS(1799), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142080,7 +145915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2335), 46, + ACTIONS(1797), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142127,202 +145962,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24451] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2089), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + [26247] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1251), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1255), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(2087), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(1257), 1, anon_sym_not, + ACTIONS(1263), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 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(1275), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1277), 1, anon_sym_sizeof, - [24521] = 3, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4186), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + STATE(5729), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2109), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 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(2107), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1249), 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, - [24591] = 27, - ACTIONS(1211), 1, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [26365] = 27, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4046), 1, + STATE(3942), 1, sym_expression, - STATE(5663), 1, + STATE(5290), 1, sym_expression_list, - STATE(5741), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -142331,7 +146123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -142352,11 +146144,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [24709] = 3, + [26483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1925), 15, + ACTIONS(1923), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142372,7 +146164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1923), 46, + ACTIONS(1921), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142419,11 +146211,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24779] = 3, + [26553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1929), 15, + ACTIONS(1927), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142439,7 +146231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1927), 46, + ACTIONS(1925), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142486,11 +146278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24849] = 3, + [26623] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1933), 15, + ACTIONS(1931), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142506,7 +146298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1931), 46, + ACTIONS(1929), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142553,68 +146345,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24919] = 27, - ACTIONS(1211), 1, + [26693] = 27, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1275), 1, anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4188), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + STATE(5781), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [26811] = 27, + ACTIONS(1243), 1, + sym_identifier, ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4050), 1, + STATE(3954), 1, sym_expression, - STATE(5727), 1, + STATE(5297), 1, sym_expression_list, - STATE(5741), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -142623,7 +146506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -142644,11 +146527,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [25037] = 3, + [26929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1937), 15, + ACTIONS(2119), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142664,7 +146547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1935), 46, + ACTIONS(2117), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142711,11 +146594,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25107] = 3, + [26999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1941), 15, + ACTIONS(2243), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142731,7 +146614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1939), 46, + ACTIONS(2241), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142778,11 +146661,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25177] = 3, + [27069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1945), 15, + ACTIONS(2199), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142798,7 +146681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1943), 46, + ACTIONS(2197), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142845,11 +146728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25247] = 3, + [27139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2077), 15, + ACTIONS(1935), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142865,7 +146748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2075), 46, + ACTIONS(1933), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142912,78 +146795,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25317] = 3, + [27209] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4189), 1, + sym_expression, + STATE(5472), 1, + sym_expression_list, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 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(1903), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1249), 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, - [25387] = 3, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [27327] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1949), 15, + ACTIONS(2383), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142999,7 +146906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1947), 46, + ACTIONS(2381), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143046,11 +146953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25457] = 3, + [27397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1953), 15, + ACTIONS(2355), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -143066,7 +146973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1951), 46, + ACTIONS(2353), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143113,13 +147020,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25527] = 3, + [27467] = 27, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4190), 1, + sym_expression, + STATE(5483), 1, + sym_expression_list, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3381), 14, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [27585] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2359), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143132,7 +147131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3379), 47, + ACTIONS(2357), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143150,7 +147149,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, @@ -143180,11 +147178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25597] = 3, + [27655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2081), 15, + ACTIONS(2123), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -143200,7 +147198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2079), 46, + ACTIONS(2121), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143247,102 +147245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25667] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - ACTIONS(3071), 1, - anon_sym_COLON, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4232), 1, - sym_expression, - STATE(5741), 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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [25785] = 3, + [27725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 15, + ACTIONS(2127), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -143358,7 +147265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1619), 46, + ACTIONS(2125), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143405,11 +147312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25855] = 3, + [27795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2341), 15, + ACTIONS(1803), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -143425,7 +147332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2339), 46, + ACTIONS(1801), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143472,11 +147379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25925] = 3, + [27865] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 15, + ACTIONS(1659), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -143492,7 +147399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1623), 46, + ACTIONS(1657), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143539,11 +147446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25995] = 3, + [27935] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1969), 15, + ACTIONS(2363), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -143559,7 +147466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1967), 46, + ACTIONS(2361), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143606,11 +147513,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26065] = 3, + [28005] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 15, + ACTIONS(1663), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -143626,7 +147533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2343), 46, + ACTIONS(1661), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143673,11 +147580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26135] = 3, + [28075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1957), 15, + ACTIONS(2367), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -143693,7 +147600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1955), 46, + ACTIONS(2365), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143740,11 +147647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26205] = 3, + [28145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2185), 15, + ACTIONS(2371), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -143760,7 +147667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2183), 46, + ACTIONS(2369), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143807,102 +147714,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26275] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, - anon_sym_LBRACE, - ACTIONS(2023), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, - anon_sym_None, - ACTIONS(2027), 1, - sym_float, - ACTIONS(2031), 1, - anon_sym_sizeof, - ACTIONS(2033), 1, - sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - ACTIONS(3011), 1, - anon_sym_not, - ACTIONS(3013), 1, - anon_sym_lambda, - ACTIONS(3015), 1, - anon_sym_new, - STATE(2046), 1, - sym_primary_expression, - STATE(2135), 1, - sym_string, - STATE(2270), 1, - sym_list_splat_pattern, - STATE(4271), 1, - sym_expression, - STATE(5685), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2007), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2017), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2929), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3805), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2266), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_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] = 3, + [28215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3385), 14, + ACTIONS(1667), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143915,73 +147734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3387), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [26459] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3391), 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(3389), 46, + ACTIONS(1665), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144028,13 +147781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26528] = 3, + [28285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3395), 14, - sym__dedent, + ACTIONS(1807), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144047,7 +147801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3393), 46, + ACTIONS(1805), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144094,13 +147848,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26597] = 3, + [28355] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3399), 14, - sym__dedent, + ACTIONS(1703), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144113,7 +147868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3397), 46, + ACTIONS(1701), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144160,46 +147915,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26666] = 26, + [28425] = 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(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2813), 1, + anon_sym_not, + ACTIONS(2815), 1, + anon_sym_lambda, + ACTIONS(2817), 1, + anon_sym_new, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4154), 1, + STATE(3481), 1, sym_expression, - STATE(5736), 1, + STATE(5822), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -144213,13 +147968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144228,7 +147983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -144249,330 +148004,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [26781] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3403), 14, - sym__dedent, - sym_string_start, + [28540] = 26, + ACTIONS(2483), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2489), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2493), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - 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, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(2499), 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, - anon_sym_sizeof, - [26850] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3405), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, + ACTIONS(2501), 1, sym_float, - ACTIONS(3407), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(2505), 1, anon_sym_sizeof, - [26919] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3409), 14, + ACTIONS(2507), 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(2561), 1, 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, - sym_integer, + ACTIONS(2841), 1, sym_identifier, + ACTIONS(2849), 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, - [26988] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3413), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(3033), 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(3415), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [27057] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(3449), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(3451), 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(3453), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, + STATE(2120), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2229), 1, sym_string, - STATE(2110), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(4073), 1, + STATE(2600), 1, sym_expression, - STATE(5736), 1, + STATE(5512), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144581,7 +148072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -144602,132 +148093,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [27172] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3417), 14, - sym_string_start, - ts_builtin_sym_end, + [28655] = 26, + ACTIONS(2483), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2489), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2493), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2497), 1, 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, + ACTIONS(2499), 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(2501), 1, + sym_float, + ACTIONS(2505), 1, anon_sym_sizeof, - [27241] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2507), 1, + sym_string_start, + ACTIONS(2559), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2563), 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(2569), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(929), 1, + ACTIONS(2841), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2849), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2127), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2229), 1, sym_string, - STATE(2110), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(3994), 1, + STATE(4028), 1, sym_expression, - STATE(5736), 1, + STATE(5737), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144736,7 +148161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -144757,66 +148182,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [27356] = 26, - ACTIONS(67), 1, + [28770] = 26, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2493), 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(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(2841), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2849), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3449), 1, + anon_sym_not, + ACTIONS(3451), 1, + anon_sym_lambda, + ACTIONS(3453), 1, + anon_sym_new, + STATE(2120), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2229), 1, sym_string, - STATE(2110), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(4036), 1, + STATE(2575), 1, sym_expression, - STATE(5736), 1, + STATE(5512), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -144825,7 +148250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -144846,198 +148271,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [27471] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3421), 14, - sym_string_start, - ts_builtin_sym_end, + [28885] = 26, + ACTIONS(2483), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2489), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2493), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3423), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2499), 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, - anon_sym_sizeof, - [27540] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3425), 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, + ACTIONS(2501), 1, sym_float, - ACTIONS(3427), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, + ACTIONS(2505), 1, anon_sym_sizeof, - [27609] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2507), 1, + sym_string_start, + ACTIONS(2559), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2563), 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(2569), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(929), 1, + ACTIONS(2841), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2849), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2127), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2229), 1, sym_string, - STATE(2110), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(4047), 1, + STATE(4001), 1, sym_expression, - STATE(5736), 1, + STATE(5737), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145046,7 +148339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -145067,66 +148360,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [27724] = 26, - ACTIONS(67), 1, + [29000] = 26, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2449), 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(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2587), 1, + anon_sym_not, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_lambda, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2597), 1, + anon_sym_new, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2119), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2193), 1, sym_string, - STATE(2110), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(4087), 1, + STATE(3916), 1, sym_expression, - STATE(5736), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145135,7 +148428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -145156,264 +148449,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [27839] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3429), 14, - sym_string_start, - ts_builtin_sym_end, + [29115] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2445), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2449), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3431), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2455), 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, - anon_sym_sizeof, - [27908] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3433), 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, + ACTIONS(2457), 1, sym_float, - ACTIONS(3435), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, + ACTIONS(2461), 1, anon_sym_sizeof, - [27977] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2425), 14, + ACTIONS(2463), 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(2423), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [28046] = 26, - ACTIONS(1211), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(2587), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2591), 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(2595), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(2597), 1, anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2119), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2193), 1, sym_string, - STATE(2451), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(4393), 1, + STATE(3870), 1, sym_expression, - STATE(5741), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145422,7 +148517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -145443,132 +148538,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [28161] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3439), 14, - sym__dedent, - sym_string_start, + [29230] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2445), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2449), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3437), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(2455), 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(2457), 1, + sym_float, + ACTIONS(2461), 1, anon_sym_sizeof, - [28230] = 26, - ACTIONS(1211), 1, + ACTIONS(2463), 1, + sym_string_start, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, - anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(2587), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2591), 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(2595), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(2597), 1, anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2119), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2193), 1, sym_string, - STATE(2451), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(4291), 1, + STATE(3898), 1, sym_expression, - STATE(5741), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145577,7 +148606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -145598,66 +148627,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [28345] = 26, - ACTIONS(1328), 1, + [29345] = 26, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2449), 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(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(2983), 1, + ACTIONS(2587), 1, + anon_sym_not, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_lambda, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(2597), 1, + anon_sym_new, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2066), 1, + STATE(2119), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2193), 1, sym_string, - STATE(2403), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(4136), 1, + STATE(2466), 1, sym_expression, - STATE(5743), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145666,7 +148695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -145687,66 +148716,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [28460] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [29460] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2573), 1, + sym_identifier, + ACTIONS(2587), 1, + anon_sym_not, + ACTIONS(2589), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2591), 1, + anon_sym_lambda, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(2597), 1, + anon_sym_new, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2119), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2193), 1, sym_string, - STATE(2451), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(4397), 1, + STATE(3899), 1, sym_expression, - STATE(5741), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145755,7 +148784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -145776,132 +148805,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [28575] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3441), 14, - sym_string_start, - ts_builtin_sym_end, + [29575] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2445), 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(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, - [28644] = 26, - ACTIONS(67), 1, + ACTIONS(2449), 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(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3455), 1, + anon_sym_not, + ACTIONS(3457), 1, + anon_sym_lambda, + ACTIONS(3459), 1, + anon_sym_new, + STATE(2114), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2193), 1, sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(4024), 1, + STATE(2321), 1, sym_expression, - STATE(5736), 1, + STATE(2449), 1, + sym_list_splat_pattern, + STATE(5547), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145910,7 +148873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -145931,132 +148894,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [28759] = 3, + [29690] = 26, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, + anon_sym_LBRACE, + ACTIONS(2453), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2455), 1, + anon_sym_None, + ACTIONS(2457), 1, + sym_float, + ACTIONS(2461), 1, + anon_sym_sizeof, + ACTIONS(2463), 1, + sym_string_start, + ACTIONS(2573), 1, + sym_identifier, + ACTIONS(2587), 1, + anon_sym_not, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_lambda, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(2597), 1, + anon_sym_new, + ACTIONS(3076), 1, + anon_sym_STAR, + STATE(2119), 1, + sym_primary_expression, + STATE(2193), 1, + sym_string, + STATE(2449), 1, + sym_list_splat_pattern, + STATE(3886), 1, + sym_expression, + STATE(5491), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3445), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2437), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2447), 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(3447), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2581), 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, - [28828] = 26, - ACTIONS(1211), 1, + STATE(2468), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2328), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [29805] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4387), 1, + STATE(4046), 1, sym_expression, - STATE(5741), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146065,7 +149051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146086,209 +149072,189 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [28943] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3309), 14, - sym_string_start, - ts_builtin_sym_end, + [29920] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2445), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2449), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3311), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2455), 1, anon_sym_None, - sym_integer, + ACTIONS(2457), 1, + sym_float, + ACTIONS(2461), 1, + anon_sym_sizeof, + ACTIONS(2463), 1, + sym_string_start, + ACTIONS(2573), 1, sym_identifier, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2595), 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(3076), 1, + anon_sym_STAR, + ACTIONS(3455), 1, + anon_sym_not, + ACTIONS(3457), 1, + anon_sym_lambda, + ACTIONS(3459), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [29012] = 3, + STATE(2114), 1, + sym_primary_expression, + STATE(2193), 1, + sym_string, + STATE(2378), 1, + sym_expression, + STATE(2449), 1, + sym_list_splat_pattern, + STATE(5547), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3449), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2437), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2447), 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(2581), 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(2468), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2328), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [30035] = 26, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, + anon_sym_LBRACE, + ACTIONS(2453), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2455), 1, anon_sym_None, - sym_integer, + ACTIONS(2457), 1, + sym_float, + ACTIONS(2461), 1, + anon_sym_sizeof, + ACTIONS(2463), 1, + sym_string_start, + ACTIONS(2573), 1, sym_identifier, + ACTIONS(2587), 1, + anon_sym_not, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_lambda, + ACTIONS(2595), 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(2597), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [29081] = 3, + ACTIONS(3076), 1, + anon_sym_STAR, + STATE(2119), 1, + sym_primary_expression, + STATE(2193), 1, + sym_string, + STATE(2449), 1, + sym_list_splat_pattern, + STATE(3904), 1, + sym_expression, + STATE(5491), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3453), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2437), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2447), 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(2581), 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, - [29150] = 3, + STATE(2468), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2328), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [30150] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3457), 14, + ACTIONS(2419), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -146303,7 +149269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3459), 46, + ACTIONS(2417), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -146350,11 +149316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [29219] = 3, + [30219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3461), 14, + ACTIONS(2423), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -146369,7 +149335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3463), 46, + ACTIONS(2421), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -146416,72 +149382,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [29288] = 23, - ACTIONS(1213), 1, + [30288] = 26, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(1295), 1, - anon_sym_COMMA, - ACTIONS(1302), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(2703), 1, + anon_sym_not, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(1312), 1, + ACTIONS(2707), 1, + anon_sym_lambda, + ACTIONS(2713), 1, + anon_sym_new, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2963), 1, anon_sym_await, - STATE(2147), 1, + STATE(2117), 1, + sym_primary_expression, + STATE(2153), 1, sym_string, - STATE(2451), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3236), 1, - sym_primary_expression, + STATE(3903), 1, + sym_expression, + STATE(5700), 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(1973), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(2959), 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(2471), 20, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146502,66 +149471,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [29397] = 26, - ACTIONS(67), 1, + [30403] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 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(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2703), 1, + anon_sym_not, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2707), 1, + anon_sym_lambda, + ACTIONS(2713), 1, + anon_sym_new, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2963), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, + STATE(2117), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2153), 1, sym_string, - STATE(2110), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(4192), 1, + STATE(3860), 1, sym_expression, - STATE(5736), 1, + STATE(5700), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3906), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146570,7 +149539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146591,132 +149560,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [29512] = 3, + [30518] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(1989), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1991), 1, + anon_sym_None, + ACTIONS(1993), 1, + sym_float, + ACTIONS(1997), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + sym_string_start, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2703), 1, + anon_sym_not, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2707), 1, + anon_sym_lambda, + ACTIONS(2713), 1, + anon_sym_new, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2963), 1, + anon_sym_await, + STATE(2117), 1, + sym_primary_expression, + STATE(2153), 1, + sym_string, + STATE(2421), 1, + sym_list_splat_pattern, + STATE(3866), 1, + sym_expression, + STATE(5700), 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(1973), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1983), 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(2959), 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, - [29581] = 26, - ACTIONS(1328), 1, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [30633] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 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(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, + ACTIONS(2697), 1, anon_sym_STAR, - STATE(2066), 1, + ACTIONS(2703), 1, + anon_sym_not, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2707), 1, + anon_sym_lambda, + ACTIONS(2713), 1, + anon_sym_new, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2963), 1, + anon_sym_await, + STATE(2117), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2153), 1, sym_string, - STATE(2403), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3913), 1, + STATE(3867), 1, sym_expression, - STATE(5743), 1, + STATE(5700), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(3906), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146725,7 +149717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146746,66 +149738,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [29696] = 26, - ACTIONS(1382), 1, + [30748] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1985), 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(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(2703), 1, + anon_sym_not, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2707), 1, + anon_sym_lambda, + ACTIONS(2713), 1, + anon_sym_new, + ACTIONS(2955), 1, sym_identifier, - STATE(2168), 1, + ACTIONS(2963), 1, + anon_sym_await, + STATE(2117), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2153), 1, sym_string, - STATE(2693), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(4219), 1, + STATE(3887), 1, sym_expression, - STATE(5483), 1, + STATE(5700), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(3906), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146814,7 +149806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146835,132 +149827,244 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [29811] = 3, + [30863] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(1989), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1991), 1, + anon_sym_None, + ACTIONS(1993), 1, + sym_float, + ACTIONS(1997), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + sym_string_start, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2963), 1, + anon_sym_await, + ACTIONS(3461), 1, + anon_sym_not, + ACTIONS(3463), 1, + anon_sym_lambda, + ACTIONS(3465), 1, + anon_sym_new, + STATE(2116), 1, + sym_primary_expression, + STATE(2153), 1, + sym_string, + STATE(2387), 1, + sym_expression, + STATE(2421), 1, + sym_list_splat_pattern, + STATE(5560), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3471), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1973), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1983), 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(3469), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2959), 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(2331), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [30978] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(1989), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1991), 1, + anon_sym_None, + ACTIONS(1993), 1, + sym_float, + ACTIONS(1997), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + sym_string_start, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2703), 1, anon_sym_not, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2707), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(2713), 1, + anon_sym_new, + ACTIONS(2955), 1, sym_identifier, + ACTIONS(2963), 1, anon_sym_await, - anon_sym_api, + STATE(2117), 1, + sym_primary_expression, + STATE(2153), 1, + sym_string, + STATE(2421), 1, + sym_list_splat_pattern, + STATE(3901), 1, + sym_expression, + STATE(5700), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1973), 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, - [29880] = 26, - ACTIONS(1328), 1, + ACTIONS(1983), 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(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [31093] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, - anon_sym_not, - ACTIONS(1332), 1, + ACTIONS(1364), 1, anon_sym_LT, - ACTIONS(1334), 1, - anon_sym_lambda, - ACTIONS(1338), 1, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(1472), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(1506), 1, anon_sym_await, - ACTIONS(2437), 1, + ACTIONS(2405), 1, anon_sym_LPAREN, - ACTIONS(2797), 1, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2983), 1, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2066), 1, + ACTIONS(3467), 1, + anon_sym_not, + ACTIONS(3469), 1, + anon_sym_lambda, + ACTIONS(3471), 1, + anon_sym_new, + STATE(2128), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2202), 1, sym_string, - STATE(2403), 1, + STATE(2604), 1, sym_list_splat_pattern, - STATE(3934), 1, + STATE(2610), 1, sym_expression, - STATE(5743), 1, + STATE(5689), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146969,7 +150073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146990,66 +150094,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [29995] = 26, - ACTIONS(1328), 1, + [31208] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 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(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, + ACTIONS(2697), 1, anon_sym_STAR, - STATE(2066), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2963), 1, + anon_sym_await, + ACTIONS(3461), 1, + anon_sym_not, + ACTIONS(3463), 1, + anon_sym_lambda, + ACTIONS(3465), 1, + anon_sym_new, + STATE(2116), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2153), 1, sym_string, - STATE(2403), 1, - sym_list_splat_pattern, - STATE(3935), 1, + STATE(2402), 1, sym_expression, - STATE(5743), 1, + STATE(2421), 1, + sym_list_splat_pattern, + STATE(5560), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2331), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147058,7 +150162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147079,66 +150183,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30110] = 26, - ACTIONS(1328), 1, + [31323] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 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(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, + ACTIONS(2697), 1, anon_sym_STAR, - STATE(2066), 1, + ACTIONS(2703), 1, + anon_sym_not, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2707), 1, + anon_sym_lambda, + ACTIONS(2713), 1, + anon_sym_new, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2963), 1, + anon_sym_await, + STATE(2117), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2153), 1, sym_string, - STATE(2403), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(2516), 1, + STATE(3889), 1, sym_expression, - STATE(5743), 1, + STATE(5700), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(3906), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147147,7 +150251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147168,66 +150272,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30225] = 26, - ACTIONS(1328), 1, + [31438] = 26, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(1332), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(1334), 1, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1338), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1350), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(2437), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(2797), 1, + ACTIONS(3065), 1, sym_identifier, - ACTIONS(2983), 1, + ACTIONS(3473), 1, anon_sym_STAR, - STATE(2066), 1, + STATE(2221), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2410), 1, sym_string, - STATE(2403), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(3939), 1, + STATE(4292), 1, sym_expression, - STATE(5743), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147236,7 +150340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147257,66 +150361,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30340] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [31553] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1362), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1366), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1382), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_await, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2122), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2202), 1, sym_string, - STATE(2451), 1, + STATE(2604), 1, sym_list_splat_pattern, - STATE(3837), 1, + STATE(3952), 1, sym_expression, - STATE(5741), 1, + STATE(5800), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147325,7 +150429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147346,264 +150450,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30455] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3473), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, + [31668] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1418), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, + ACTIONS(1420), 1, + anon_sym_not, + ACTIONS(1422), 1, anon_sym_LT, + ACTIONS(1424), 1, + anon_sym_lambda, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, sym_float, - ACTIONS(3475), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, + ACTIONS(1436), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1438), 1, anon_sym_sizeof, - [30524] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3479), 14, - sym__dedent, + ACTIONS(1440), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1597), 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(3477), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_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(1601), 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, - [30593] = 3, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, + sym_primary_expression, + STATE(2410), 1, + sym_string, + STATE(2703), 1, + sym_list_splat_pattern, + STATE(4318), 1, + sym_expression, + STATE(5581), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3481), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1430), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1416), 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(3483), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1599), 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, - [30662] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + STATE(2712), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2710), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [31783] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(1597), 1, anon_sym_STAR, - STATE(2068), 1, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2410), 1, sym_string, - STATE(2451), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(3858), 1, + STATE(4323), 1, sym_expression, - STATE(5741), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147612,7 +150607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147633,66 +150628,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30777] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [31898] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(1597), 1, anon_sym_STAR, - STATE(2068), 1, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2410), 1, sym_string, - STATE(2451), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(3875), 1, + STATE(4324), 1, sym_expression, - STATE(5741), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147701,7 +150696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147722,66 +150717,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30892] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [32013] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(1597), 1, anon_sym_STAR, - STATE(2068), 1, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2410), 1, sym_string, - STATE(2451), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(3091), 1, + STATE(2757), 1, sym_expression, - STATE(5741), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147790,7 +150785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147811,66 +150806,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31007] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [32128] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(1597), 1, anon_sym_STAR, - STATE(2068), 1, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2410), 1, sym_string, - STATE(2451), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(3796), 1, + STATE(4325), 1, sym_expression, - STATE(5741), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -147879,7 +150874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -147900,132 +150895,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31122] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3485), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, + [32243] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1418), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, + ACTIONS(1422), 1, anon_sym_LT, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3487), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [31191] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, - anon_sym_LBRACE, - ACTIONS(2023), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(2675), 1, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + ACTIONS(3475), 1, anon_sym_not, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2679), 1, + ACTIONS(3477), 1, anon_sym_lambda, - ACTIONS(2685), 1, + ACTIONS(3479), 1, anon_sym_new, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - STATE(2046), 1, + STATE(2197), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2410), 1, sym_string, - STATE(2270), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(3871), 1, + STATE(2711), 1, sym_expression, - STATE(5543), 1, + STATE(5575), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148034,7 +150963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148055,66 +150984,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31306] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [32358] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(1597), 1, anon_sym_STAR, - STATE(2068), 1, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2410), 1, sym_string, - STATE(2451), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4232), 1, + STATE(4341), 1, sym_expression, - STATE(5741), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148123,7 +151052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148144,198 +151073,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31421] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3489), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, + [32473] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1418), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, + ACTIONS(1422), 1, anon_sym_LT, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3491), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(1428), 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(1432), 1, + sym_float, + ACTIONS(1438), 1, anon_sym_sizeof, - [31490] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3493), 14, + ACTIONS(1440), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1597), 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(3495), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_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(1601), 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, - [31559] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + ACTIONS(2537), 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - ACTIONS(3497), 1, + ACTIONS(3065), 1, + sym_identifier, + ACTIONS(3475), 1, anon_sym_not, - ACTIONS(3499), 1, + ACTIONS(3477), 1, anon_sym_lambda, - ACTIONS(3501), 1, + ACTIONS(3479), 1, anon_sym_new, - STATE(2147), 1, - sym_string, - STATE(2264), 1, + STATE(2197), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2410), 1, + sym_string, + STATE(2703), 1, sym_list_splat_pattern, - STATE(3143), 1, + STATE(2717), 1, sym_expression, - STATE(5506), 1, + STATE(5575), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148344,7 +151141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148365,72 +151162,75 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31674] = 23, - ACTIONS(967), 1, - anon_sym_COMMA, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [32588] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1420), 1, + anon_sym_not, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, + anon_sym_lambda, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1436), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(1302), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(1310), 1, - anon_sym_LT, - ACTIONS(1312), 1, + ACTIONS(1601), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, + sym_primary_expression, + STATE(2410), 1, sym_string, - STATE(2451), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(3236), 1, - sym_primary_expression, + STATE(4222), 1, + sym_expression, + STATE(5581), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(953), 2, - anon_sym_from, - anon_sym_in, - ACTIONS(1237), 4, + ACTIONS(1430), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(931), 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(2471), 20, + STATE(2712), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148451,66 +151251,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31783] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [32703] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2292), 1, sym_string, - STATE(2451), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3851), 1, + STATE(3909), 1, sym_expression, - STATE(5741), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148519,7 +151319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148540,66 +151340,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31898] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [32818] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2292), 1, sym_string, - STATE(2451), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4158), 1, + STATE(3912), 1, sym_expression, - STATE(5741), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148608,7 +151408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148629,198 +151429,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32013] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3503), 14, - sym_string_start, - ts_builtin_sym_end, + [32933] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2517), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2521), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 1, sym_float, - ACTIONS(3505), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(2533), 1, + anon_sym_sizeof, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(2679), 1, anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2685), 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(2687), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32082] = 3, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, + anon_sym_STAR, + STATE(2177), 1, + sym_primary_expression, + STATE(2292), 1, + sym_string, + STATE(2642), 1, + sym_list_splat_pattern, + STATE(3913), 1, + sym_expression, + STATE(5721), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3507), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2509), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2519), 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(3509), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2673), 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, - [32151] = 26, - ACTIONS(1328), 1, + STATE(2648), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2647), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [33048] = 26, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, - anon_sym_STAR, - ACTIONS(3511), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(3513), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(3515), 1, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, anon_sym_new, - STATE(2067), 1, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, + anon_sym_STAR, + STATE(2177), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2292), 1, sym_string, - STATE(2403), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(2543), 1, + STATE(2693), 1, sym_expression, - STATE(5737), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -148829,7 +151586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148850,264 +151607,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32266] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3479), 14, - sym_string_start, - ts_builtin_sym_end, + [33163] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2517), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2521), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 1, sym_float, - ACTIONS(3477), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(2533), 1, + anon_sym_sizeof, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(2679), 1, anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2685), 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(2687), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [32335] = 3, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, + anon_sym_STAR, + STATE(2177), 1, + sym_primary_expression, + STATE(2292), 1, + sym_string, + STATE(2642), 1, + sym_list_splat_pattern, + STATE(3918), 1, + sym_expression, + STATE(5721), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3517), 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(3519), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - 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(2509), 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, - [32404] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3521), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2519), 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(3523), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2673), 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, - [32473] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + STATE(2648), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2647), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [33278] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3497), 1, + ACTIONS(3481), 1, anon_sym_not, - ACTIONS(3499), 1, + ACTIONS(3483), 1, anon_sym_lambda, - ACTIONS(3501), 1, + ACTIONS(3485), 1, anon_sym_new, - STATE(2147), 1, - sym_string, - STATE(2264), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2292), 1, + sym_string, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3159), 1, + STATE(2677), 1, sym_expression, - STATE(5506), 1, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149116,7 +151764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149137,66 +151785,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32588] = 26, - ACTIONS(1328), 1, + [33393] = 26, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 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(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1350), 1, - anon_sym_new, - ACTIONS(1360), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(2983), 1, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2066), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2292), 1, sym_string, - STATE(2403), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3880), 1, + STATE(3895), 1, sym_expression, - STATE(5743), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149205,7 +151853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149226,198 +151874,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32703] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3525), 14, - sym_string_start, - ts_builtin_sym_end, + [33508] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2517), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2521), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 1, 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, + ACTIONS(2533), 1, anon_sym_sizeof, - [32772] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3529), 14, + ACTIONS(2535), 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(3531), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [32841] = 26, - ACTIONS(1328), 1, - anon_sym_LBRACE, - ACTIONS(1332), 1, + ACTIONS(2681), 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, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(2983), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3511), 1, + ACTIONS(3481), 1, anon_sym_not, - ACTIONS(3513), 1, + ACTIONS(3483), 1, anon_sym_lambda, - ACTIONS(3515), 1, + ACTIONS(3485), 1, anon_sym_new, - STATE(2067), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2292), 1, sym_string, - STATE(2403), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(2457), 1, + STATE(2679), 1, sym_expression, - STATE(5737), 1, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149426,7 +151942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149447,66 +151963,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32956] = 26, - ACTIONS(2479), 1, + [33623] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2647), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2653), 1, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(3033), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2127), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2292), 1, sym_string, - STATE(2608), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4159), 1, + STATE(3921), 1, sym_expression, - STATE(5641), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149515,7 +152031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149536,66 +152052,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33071] = 26, - ACTIONS(1328), 1, + [33738] = 26, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, - anon_sym_STAR, - ACTIONS(3511), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(3513), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(3515), 1, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, anon_sym_new, - STATE(2067), 1, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, + anon_sym_STAR, + STATE(2177), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2292), 1, sym_string, - STATE(2403), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(2459), 1, + STATE(4168), 1, sym_expression, - STATE(5737), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149604,7 +152120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149625,66 +152141,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33186] = 26, - ACTIONS(1328), 1, + [33853] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, + ACTIONS(1362), 1, + anon_sym_not, + ACTIONS(1364), 1, anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1366), 1, + anon_sym_lambda, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1382), 1, + anon_sym_new, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(1472), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(1506), 1, anon_sym_await, - ACTIONS(2437), 1, + ACTIONS(2405), 1, anon_sym_LPAREN, - ACTIONS(2797), 1, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2983), 1, + ACTIONS(3041), 1, anon_sym_STAR, - ACTIONS(3511), 1, - anon_sym_not, - ACTIONS(3513), 1, - anon_sym_lambda, - ACTIONS(3515), 1, - anon_sym_new, - STATE(2067), 1, + STATE(2122), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2202), 1, sym_string, - STATE(2403), 1, - sym_list_splat_pattern, - STATE(2460), 1, + STATE(2543), 1, sym_expression, - STATE(5737), 1, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(5800), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149693,7 +152209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149714,66 +152230,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33301] = 26, - ACTIONS(1328), 1, + [33968] = 27, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, - anon_sym_STAR, - ACTIONS(3511), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(3513), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(3515), 1, + ACTIONS(2687), 1, anon_sym_new, - STATE(2067), 1, + ACTIONS(3141), 1, + anon_sym_STAR, + ACTIONS(3487), 1, + sym_identifier, + ACTIONS(3491), 1, + anon_sym_await, + STATE(2209), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2292), 1, sym_string, - STATE(2403), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(2516), 1, + STATE(4308), 1, sym_expression, - STATE(5737), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + STATE(2602), 2, + sym_attribute, + sym_subscript, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(3489), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149782,11 +152301,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2647), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -149803,155 +152320,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33416] = 26, - ACTIONS(1328), 1, + [34085] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3493), 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(1332), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, 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, + ACTIONS(3495), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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(1362), 1, + [34154] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3497), 14, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, - anon_sym_await, - ACTIONS(2437), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, anon_sym_STAR, - ACTIONS(3511), 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(3499), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + 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(3513), 1, anon_sym_lambda, - ACTIONS(3515), 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(2067), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2403), 1, - sym_list_splat_pattern, - STATE(2461), 1, - sym_expression, - STATE(5737), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [34223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1326), 4, + ACTIONS(3503), 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(3501), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2456), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2455), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [33531] = 26, - ACTIONS(1328), 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, + [34292] = 26, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, + ACTIONS(1420), 1, + anon_sym_not, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1424), 1, + anon_sym_lambda, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1436), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(1474), 1, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(2437), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(2797), 1, + ACTIONS(3065), 1, sym_identifier, - ACTIONS(2983), 1, - anon_sym_STAR, - ACTIONS(3511), 1, - anon_sym_not, - ACTIONS(3513), 1, - anon_sym_lambda, - ACTIONS(3515), 1, - anon_sym_new, - STATE(2067), 1, + STATE(2221), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2410), 1, sym_string, - STATE(2403), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(2462), 1, + STATE(4320), 1, sym_expression, - STATE(5737), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1326), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1470), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149960,7 +152586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149981,66 +152607,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33646] = 26, - ACTIONS(1328), 1, + [34407] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3507), 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(1332), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1338), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + sym_float, + ACTIONS(3505), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + 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(1344), 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, + [34476] = 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(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(809), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2437), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3511), 1, + ACTIONS(3509), 1, anon_sym_not, - ACTIONS(3513), 1, + ACTIONS(3511), 1, anon_sym_lambda, - ACTIONS(3515), 1, + ACTIONS(3513), 1, anon_sym_new, - STATE(2067), 1, + STATE(2093), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2100), 1, sym_string, - STATE(2403), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(2463), 1, + STATE(2168), 1, sym_expression, - STATE(5737), 1, + STATE(5614), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(2196), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150049,7 +152741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150070,66 +152762,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33761] = 26, - ACTIONS(1211), 1, + [34591] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3497), 1, - anon_sym_not, - ACTIONS(3499), 1, - anon_sym_lambda, - ACTIONS(3501), 1, - anon_sym_new, - STATE(2147), 1, - sym_string, - STATE(2264), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2143), 1, + sym_string, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3145), 1, + STATE(4297), 1, sym_expression, - STATE(5506), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150138,7 +152830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150159,66 +152851,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33876] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [34706] = 26, + 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(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3497), 1, + ACTIONS(3509), 1, anon_sym_not, - ACTIONS(3499), 1, + ACTIONS(3511), 1, anon_sym_lambda, - ACTIONS(3501), 1, + ACTIONS(3513), 1, anon_sym_new, - STATE(2147), 1, - sym_string, - STATE(2264), 1, + STATE(2093), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2100), 1, + sym_string, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3151), 1, + STATE(2170), 1, sym_expression, - STATE(5506), 1, + STATE(5614), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2196), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150227,7 +152919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150248,66 +152940,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33991] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [34821] = 26, + 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(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3497), 1, + ACTIONS(3509), 1, anon_sym_not, - ACTIONS(3499), 1, + ACTIONS(3511), 1, anon_sym_lambda, - ACTIONS(3501), 1, + ACTIONS(3513), 1, anon_sym_new, - STATE(2147), 1, - sym_string, - STATE(2264), 1, + STATE(2093), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2100), 1, + sym_string, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3152), 1, + STATE(2171), 1, sym_expression, - STATE(5506), 1, + STATE(5614), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2196), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150316,7 +153008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150337,66 +153029,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34106] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [34936] = 26, + 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(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3497), 1, + ACTIONS(3509), 1, anon_sym_not, - ACTIONS(3499), 1, + ACTIONS(3511), 1, anon_sym_lambda, - ACTIONS(3501), 1, + ACTIONS(3513), 1, anon_sym_new, - STATE(2147), 1, - sym_string, - STATE(2264), 1, + STATE(2093), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2100), 1, + sym_string, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3091), 1, + STATE(2172), 1, sym_expression, - STATE(5506), 1, + STATE(5614), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2196), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150405,7 +153097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150426,66 +153118,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34221] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [35051] = 26, + 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(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3497), 1, + ACTIONS(3509), 1, anon_sym_not, - ACTIONS(3499), 1, + ACTIONS(3511), 1, anon_sym_lambda, - ACTIONS(3501), 1, + ACTIONS(3513), 1, anon_sym_new, - STATE(2147), 1, - sym_string, - STATE(2264), 1, + STATE(2093), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2100), 1, + sym_string, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3153), 1, + STATE(2173), 1, sym_expression, - STATE(5506), 1, + STATE(5614), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2196), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150494,7 +153186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150515,66 +153207,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34336] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [35166] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 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(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3533), 1, - anon_sym_not, - ACTIONS(3535), 1, - anon_sym_lambda, - ACTIONS(3537), 1, - anon_sym_new, - STATE(2070), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(2562), 1, + STATE(4301), 1, sym_expression, - STATE(5749), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2409), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150583,7 +153275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150604,66 +153296,330 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34451] = 26, - ACTIONS(1211), 1, + [35281] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2729), 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(2727), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_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(1213), 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, + [35350] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3515), 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(1233), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + 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, - ACTIONS(1239), 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, + [35419] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1241), 1, + 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, - ACTIONS(1245), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1247), 1, + [35488] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3525), 14, + sym__dedent, sym_string_start, - ACTIONS(2741), 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(3025), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3523), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [35557] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(1989), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1991), 1, + anon_sym_None, + ACTIONS(1993), 1, + sym_float, + ACTIONS(1997), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + sym_string_start, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(3497), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2963), 1, + anon_sym_await, + ACTIONS(2995), 1, anon_sym_not, - ACTIONS(3499), 1, + ACTIONS(2997), 1, anon_sym_lambda, - ACTIONS(3501), 1, + ACTIONS(2999), 1, anon_sym_new, - STATE(2147), 1, - sym_string, - STATE(2264), 1, + STATE(2117), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2153), 1, + sym_string, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3134), 1, + STATE(4307), 1, sym_expression, - STATE(5506), 1, + STATE(5757), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3906), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150672,7 +153628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150693,66 +153649,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34566] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [35672] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1420), 1, + anon_sym_not, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, + anon_sym_lambda, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1436), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(3533), 1, - anon_sym_not, - ACTIONS(3535), 1, - anon_sym_lambda, - ACTIONS(3537), 1, - anon_sym_new, - STATE(2070), 1, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2410), 1, sym_string, - STATE(2451), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(2567), 1, + STATE(4235), 1, sym_expression, - STATE(5749), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2409), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150761,7 +153717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150782,66 +153738,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34681] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [35787] = 26, + 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(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3497), 1, + ACTIONS(3509), 1, anon_sym_not, - ACTIONS(3499), 1, + ACTIONS(3511), 1, anon_sym_lambda, - ACTIONS(3501), 1, + ACTIONS(3513), 1, anon_sym_new, - STATE(2147), 1, - sym_string, - STATE(2264), 1, + STATE(2093), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2100), 1, + sym_string, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3136), 1, + STATE(2174), 1, sym_expression, - STATE(5506), 1, + STATE(5614), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2196), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150850,7 +153806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150871,66 +153827,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34796] = 26, - ACTIONS(2451), 1, + [35902] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3527), 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(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_type, + anon_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, + [35971] = 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(2535), 1, - anon_sym_LT, - ACTIONS(2809), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2817), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3539), 1, - anon_sym_not, - ACTIONS(3541), 1, - anon_sym_lambda, - ACTIONS(3543), 1, - anon_sym_new, - STATE(2065), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2100), 1, sym_string, - STATE(2470), 1, - sym_expression, - STATE(2479), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5449), 1, + STATE(4177), 1, + sym_expression, + STATE(5657), 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(2813), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150939,7 +153961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150960,66 +153982,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34911] = 26, - ACTIONS(2451), 1, + [36086] = 26, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(2559), 1, + anon_sym_not, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(2809), 1, + ACTIONS(2563), 1, + anon_sym_lambda, + ACTIONS(2569), 1, + anon_sym_new, + ACTIONS(2841), 1, sym_identifier, - ACTIONS(2817), 1, + ACTIONS(2849), 1, anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(3033), 1, anon_sym_STAR, - ACTIONS(3539), 1, - anon_sym_not, - ACTIONS(3541), 1, - anon_sym_lambda, - ACTIONS(3543), 1, - anon_sym_new, - STATE(2065), 1, + STATE(2127), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2229), 1, sym_string, - STATE(2472), 1, - sym_expression, - STATE(2479), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(5449), 1, + STATE(4093), 1, + sym_expression, + STATE(5737), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2813), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151028,7 +154050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151049,66 +154071,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35026] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [36201] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2535), 1, - anon_sym_LT, - ACTIONS(2809), 1, - sym_identifier, - ACTIONS(2817), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - ACTIONS(3539), 1, + ACTIONS(3467), 1, anon_sym_not, - ACTIONS(3541), 1, + ACTIONS(3469), 1, anon_sym_lambda, - ACTIONS(3543), 1, + ACTIONS(3471), 1, anon_sym_new, - STATE(2065), 1, + STATE(2128), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2202), 1, sym_string, - STATE(2473), 1, + STATE(2586), 1, sym_expression, - STATE(2479), 1, + STATE(2604), 1, sym_list_splat_pattern, - STATE(5449), 1, + STATE(5689), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2813), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151117,7 +154139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151138,155 +154160,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35141] = 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(2535), 1, - anon_sym_LT, - ACTIONS(2809), 1, - sym_identifier, - ACTIONS(2817), 1, - anon_sym_await, - ACTIONS(2943), 1, - anon_sym_STAR, - ACTIONS(3539), 1, - anon_sym_not, - ACTIONS(3541), 1, - anon_sym_lambda, - ACTIONS(3543), 1, - anon_sym_new, - STATE(2065), 1, - sym_primary_expression, - STATE(2166), 1, - sym_string, - STATE(2479), 1, - sym_list_splat_pattern, - STATE(2548), 1, - sym_expression, - STATE(5449), 1, - sym__named_expression_lhs, + [36316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + ACTIONS(3533), 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(2813), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3531), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2527), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2526), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [35256] = 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, + [36385] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1362), 1, + anon_sym_not, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1366), 1, + anon_sym_lambda, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1382), 1, + anon_sym_new, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2535), 1, - anon_sym_LT, - ACTIONS(2809), 1, - sym_identifier, - ACTIONS(2817), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - ACTIONS(3539), 1, - anon_sym_not, - ACTIONS(3541), 1, - anon_sym_lambda, - ACTIONS(3543), 1, - anon_sym_new, - STATE(2065), 1, + STATE(2122), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2202), 1, sym_string, - STATE(2474), 1, - sym_expression, - STATE(2479), 1, + STATE(2604), 1, sym_list_splat_pattern, - STATE(5449), 1, + STATE(3993), 1, + sym_expression, + STATE(5800), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2813), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151295,7 +154294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151316,66 +154315,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35371] = 26, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, + [36500] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1420), 1, + anon_sym_not, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, + anon_sym_lambda, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1436), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1440), 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, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(2655), 1, - anon_sym_new, - ACTIONS(3033), 1, - sym_identifier, + ACTIONS(2537), 1, + anon_sym_LPAREN, ACTIONS(3065), 1, - anon_sym_STAR, - STATE(2127), 1, + sym_identifier, + STATE(2221), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2410), 1, sym_string, - STATE(2608), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4213), 1, + STATE(4321), 1, sym_expression, - STATE(5641), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151384,7 +154383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151405,66 +154404,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35486] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [36615] = 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(2535), 1, - anon_sym_LT, - ACTIONS(2809), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2817), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3539), 1, - anon_sym_not, - ACTIONS(3541), 1, - anon_sym_lambda, - ACTIONS(3543), 1, - anon_sym_new, - STATE(2065), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2100), 1, sym_string, - STATE(2475), 1, - sym_expression, - STATE(2479), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5449), 1, + STATE(4181), 1, + sym_expression, + STATE(5657), 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(2813), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151473,7 +154472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151494,66 +154493,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35601] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [36730] = 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(2535), 1, - anon_sym_LT, - ACTIONS(2809), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2817), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3539), 1, - anon_sym_not, - ACTIONS(3541), 1, - anon_sym_lambda, - ACTIONS(3543), 1, - anon_sym_new, - STATE(2065), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2100), 1, sym_string, - STATE(2477), 1, - sym_expression, - STATE(2479), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5449), 1, + STATE(4185), 1, + sym_expression, + STATE(5657), 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(2813), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151562,7 +154561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151583,155 +154582,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35716] = 26, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(2391), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, - anon_sym_None, - ACTIONS(2395), 1, - sym_float, - ACTIONS(2399), 1, - anon_sym_sizeof, - ACTIONS(2401), 1, - sym_string_start, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2935), 1, - anon_sym_STAR, - ACTIONS(3545), 1, - anon_sym_not, - ACTIONS(3547), 1, - anon_sym_lambda, - ACTIONS(3549), 1, - anon_sym_new, - STATE(2051), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2276), 1, - sym_expression, - STATE(2288), 1, - sym_list_splat_pattern, - STATE(5479), 1, - sym__named_expression_lhs, + [36845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2385), 4, + ACTIONS(3537), 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(2553), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3535), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2388), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2386), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [35831] = 26, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 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, + [36914] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2391), 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(2393), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2567), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2935), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3545), 1, - anon_sym_not, - ACTIONS(3547), 1, - anon_sym_lambda, - ACTIONS(3549), 1, - anon_sym_new, - STATE(2051), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2100), 1, sym_string, - STATE(2278), 1, - sym_expression, - STATE(2288), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5479), 1, + STATE(3547), 1, + sym_expression, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151740,7 +154716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151761,66 +154737,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35946] = 26, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, + [37029] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2567), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2935), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3545), 1, + ACTIONS(3509), 1, anon_sym_not, - ACTIONS(3547), 1, + ACTIONS(3511), 1, anon_sym_lambda, - ACTIONS(3549), 1, + ACTIONS(3513), 1, anon_sym_new, - STATE(2051), 1, + STATE(2093), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2100), 1, sym_string, - STATE(2279), 1, - sym_expression, - STATE(2288), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5479), 1, + STATE(2175), 1, + sym_expression, + STATE(5614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(2196), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151829,7 +154805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151850,244 +154826,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36061] = 26, - ACTIONS(2377), 1, + [37144] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3541), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2383), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2387), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2391), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, - anon_sym_None, - ACTIONS(2395), 1, sym_float, - ACTIONS(2399), 1, - anon_sym_sizeof, - ACTIONS(2401), 1, - sym_string_start, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2935), 1, - anon_sym_STAR, - ACTIONS(3545), 1, + ACTIONS(3539), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + 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(3547), 1, anon_sym_lambda, - ACTIONS(3549), 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(2288), 1, - sym_list_splat_pattern, - STATE(2325), 1, - sym_expression, - STATE(5479), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [37213] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2385), 4, + ACTIONS(3545), 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(2553), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3543), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_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(2388), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2386), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [36176] = 26, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(2391), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2395), 1, - sym_float, - ACTIONS(2399), 1, - anon_sym_sizeof, - ACTIONS(2401), 1, - sym_string_start, - ACTIONS(2545), 1, + sym_integer, sym_identifier, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2567), 1, anon_sym_await, - ACTIONS(2935), 1, - anon_sym_STAR, - ACTIONS(3545), 1, - anon_sym_not, - ACTIONS(3547), 1, - anon_sym_lambda, - ACTIONS(3549), 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(2280), 1, - sym_expression, - STATE(2288), 1, - sym_list_splat_pattern, - STATE(5479), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [37282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2385), 4, + ACTIONS(3549), 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(2553), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3547), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2388), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2386), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [36291] = 26, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 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, + [37351] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2391), 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(2393), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2567), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2935), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3545), 1, - anon_sym_not, - ACTIONS(3547), 1, - anon_sym_lambda, - ACTIONS(3549), 1, - anon_sym_new, - STATE(2051), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2100), 1, sym_string, - STATE(2281), 1, - sym_expression, - STATE(2288), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5479), 1, + STATE(4187), 1, + sym_expression, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152096,7 +155092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152117,155 +155113,198 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36406] = 26, - ACTIONS(2377), 1, + [37466] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3553), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2383), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2387), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2391), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, - anon_sym_None, - ACTIONS(2395), 1, sym_float, - ACTIONS(2399), 1, - anon_sym_sizeof, - ACTIONS(2401), 1, - sym_string_start, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2935), 1, - anon_sym_STAR, - ACTIONS(3545), 1, + ACTIONS(3551), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + 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(3547), 1, anon_sym_lambda, - ACTIONS(3549), 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(2283), 1, - sym_expression, - STATE(2288), 1, - sym_list_splat_pattern, - STATE(5479), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [37535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2385), 4, + ACTIONS(3557), 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(2553), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3555), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2388), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2386), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [36521] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 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, + [37604] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2023), 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(2025), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(3551), 1, - anon_sym_not, - ACTIONS(3553), 1, - anon_sym_lambda, - ACTIONS(3555), 1, - anon_sym_new, - STATE(2049), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2100), 1, sym_string, - STATE(2270), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(2307), 1, + STATE(4202), 1, sym_expression, - STATE(5495), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2299), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152274,7 +155313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152295,155 +155334,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36636] = 26, - ACTIONS(2009), 1, + [37719] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3561), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2015), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2019), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2023), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, - anon_sym_None, - ACTIONS(2027), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2031), 1, + ACTIONS(3559), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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(2033), 1, + [37788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3365), 14, + sym__dedent, sym_string_start, - ACTIONS(2669), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(2677), 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(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - ACTIONS(3551), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3367), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + 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(3553), 1, anon_sym_lambda, - ACTIONS(3555), 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(2049), 1, - sym_primary_expression, - STATE(2135), 1, - sym_string, - STATE(2270), 1, - sym_list_splat_pattern, - STATE(2309), 1, - sym_expression, - STATE(5495), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [37857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2017), 4, + ACTIONS(2785), 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(2929), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2787), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2299), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2266), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [36751] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 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, + [37926] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1362), 1, + anon_sym_not, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1366), 1, + anon_sym_lambda, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(1382), 1, + anon_sym_new, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, anon_sym_await, - ACTIONS(3551), 1, - anon_sym_not, - ACTIONS(3553), 1, - anon_sym_lambda, - ACTIONS(3555), 1, - anon_sym_new, - STATE(2049), 1, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, + anon_sym_STAR, + STATE(2122), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2202), 1, sym_string, - STATE(2270), 1, + STATE(2604), 1, sym_list_splat_pattern, - STATE(2310), 1, + STATE(4111), 1, sym_expression, - STATE(5495), 1, + STATE(5800), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2299), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152452,7 +155600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152473,66 +155621,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36866] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, + [38041] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2023), 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(2025), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(3551), 1, - anon_sym_not, - ACTIONS(3553), 1, - anon_sym_lambda, - ACTIONS(3555), 1, - anon_sym_new, - STATE(2049), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2100), 1, sym_string, - STATE(2270), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(2311), 1, + STATE(3981), 1, sym_expression, - STATE(5495), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2299), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152541,7 +155689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152562,155 +155710,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36981] = 26, - ACTIONS(2009), 1, + [38156] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3565), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2015), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2019), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2023), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, - anon_sym_None, - ACTIONS(2027), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(3563), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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(2033), 1, + [38225] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3569), 14, + sym__dedent, sym_string_start, - ACTIONS(2669), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(2677), 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(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - ACTIONS(3551), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3567), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + 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(3553), 1, anon_sym_lambda, - ACTIONS(3555), 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(2049), 1, - sym_primary_expression, - STATE(2135), 1, - sym_string, - STATE(2270), 1, - sym_list_splat_pattern, - STATE(2315), 1, - sym_expression, - STATE(5495), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [38294] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2017), 4, + ACTIONS(2467), 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(2929), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2465), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2299), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2266), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [37096] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 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, + [38363] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1420), 1, + anon_sym_not, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, + anon_sym_lambda, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(1436), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(3551), 1, - anon_sym_not, - ACTIONS(3553), 1, - anon_sym_lambda, - ACTIONS(3555), 1, - anon_sym_new, - STATE(2049), 1, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + ACTIONS(3571), 1, + anon_sym_STAR, + STATE(2221), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2410), 1, sym_string, - STATE(2270), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(2324), 1, + STATE(4312), 1, sym_expression, - STATE(5495), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2299), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152719,7 +155976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152740,66 +155997,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37211] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, + [38478] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2023), 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(2025), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(3551), 1, - anon_sym_not, - ACTIONS(3553), 1, - anon_sym_lambda, - ACTIONS(3555), 1, - anon_sym_new, - STATE(2049), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2100), 1, sym_string, - STATE(2270), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(2326), 1, + STATE(4313), 1, sym_expression, - STATE(5495), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2299), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152808,7 +156065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152829,66 +156086,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37326] = 26, - ACTIONS(1382), 1, + [38593] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, + ACTIONS(1420), 1, + anon_sym_not, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(1424), 1, + anon_sym_lambda, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(1436), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(3065), 1, sym_identifier, - ACTIONS(3557), 1, - anon_sym_not, - ACTIONS(3559), 1, - anon_sym_lambda, - ACTIONS(3561), 1, - anon_sym_new, - STATE(2149), 1, + STATE(2221), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2410), 1, sym_string, - STATE(2693), 1, - sym_list_splat_pattern, STATE(2703), 1, + sym_list_splat_pattern, + STATE(4242), 1, sym_expression, - STATE(5507), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152897,7 +156154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152918,155 +156175,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37441] = 26, - ACTIONS(1382), 1, + [38708] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3515), 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, - anon_sym_None, - ACTIONS(1400), 1, sym_float, - ACTIONS(1406), 1, - anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - ACTIONS(3557), 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(3559), 1, anon_sym_lambda, - ACTIONS(3561), 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(2149), 1, - sym_primary_expression, - STATE(2239), 1, - sym_string, - STATE(2693), 1, - sym_list_splat_pattern, - STATE(2704), 1, - sym_expression, - STATE(5507), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [38777] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(3519), 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(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, sym_true, sym_false, - ACTIONS(1384), 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, + [38846] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3527), 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(1567), 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_type, + anon_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(2657), 8, - 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, - [37556] = 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, + [38915] = 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(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_not, - ACTIONS(3559), 1, - anon_sym_lambda, - ACTIONS(3561), 1, - anon_sym_new, - STATE(2149), 1, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2100), 1, sym_string, - STATE(2693), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(2705), 1, + STATE(3554), 1, sym_expression, - STATE(5507), 1, + STATE(5657), 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(1567), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153075,7 +156441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -153096,155 +156462,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37671] = 26, - ACTIONS(1382), 1, + [39030] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3503), 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(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - ACTIONS(3557), 1, + ACTIONS(3501), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + 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(3559), 1, anon_sym_lambda, - ACTIONS(3561), 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(2149), 1, - sym_primary_expression, - STATE(2239), 1, - sym_string, - STATE(2660), 1, - sym_expression, - STATE(2693), 1, - sym_list_splat_pattern, - STATE(5507), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [39099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(3507), 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(3505), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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(1384), 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, + [39168] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3575), 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(1567), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3573), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2657), 8, - 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, - [37786] = 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, + [39237] = 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(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_not, - ACTIONS(3559), 1, - anon_sym_lambda, - ACTIONS(3561), 1, - anon_sym_new, - STATE(2149), 1, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2100), 1, sym_string, - STATE(2693), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(2706), 1, + STATE(3945), 1, sym_expression, - STATE(5507), 1, + STATE(5657), 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(1567), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153253,7 +156728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -153274,812 +156749,407 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37901] = 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(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_not, - ACTIONS(3559), 1, - anon_sym_lambda, - ACTIONS(3561), 1, - anon_sym_new, - STATE(2149), 1, - sym_primary_expression, - STATE(2239), 1, - sym_string, - STATE(2693), 1, - sym_list_splat_pattern, - STATE(2710), 1, - sym_expression, - STATE(5507), 1, - sym__named_expression_lhs, + [39352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 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(1567), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2657), 8, - 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, - [38016] = 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(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_not, - ACTIONS(3559), 1, - anon_sym_lambda, - ACTIONS(3561), 1, - anon_sym_new, - STATE(2149), 1, - sym_primary_expression, - STATE(2239), 1, - sym_string, - STATE(2693), 1, - sym_list_splat_pattern, - STATE(2712), 1, - sym_expression, - STATE(5507), 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(1567), 5, + ACTIONS(3577), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_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(2657), 8, - 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, - [38131] = 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(2649), 1, - anon_sym_LT, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - ACTIONS(3563), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3565), 1, anon_sym_lambda, - ACTIONS(3567), 1, - anon_sym_new, - STATE(2112), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2594), 1, - sym_expression, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(5520), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2477), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2487), 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(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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38246] = 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(2649), 1, - anon_sym_LT, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - ACTIONS(3563), 1, - anon_sym_not, - ACTIONS(3565), 1, - anon_sym_lambda, - ACTIONS(3567), 1, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(2112), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2595), 1, - sym_expression, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(5520), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [39421] = 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(2641), 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_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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38361] = 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(2649), 1, - anon_sym_LT, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - ACTIONS(3563), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3565), 1, anon_sym_lambda, - ACTIONS(3567), 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(2112), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2596), 1, - sym_expression, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(5520), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [39490] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, + 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, - ACTIONS(2641), 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_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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38476] = 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(2649), 1, - anon_sym_LT, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - ACTIONS(3563), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3565), 1, anon_sym_lambda, - ACTIONS(3567), 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(2112), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(2620), 1, - sym_expression, - STATE(5520), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [39559] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, + ACTIONS(3591), 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(2641), 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_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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38591] = 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(2649), 1, - anon_sym_LT, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - ACTIONS(3563), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3565), 1, anon_sym_lambda, - ACTIONS(3567), 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(2112), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2597), 1, - sym_expression, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(5520), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [39628] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, + ACTIONS(3595), 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(2641), 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_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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38706] = 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(2649), 1, - anon_sym_LT, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - ACTIONS(3563), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3565), 1, anon_sym_lambda, - ACTIONS(3567), 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(2112), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2598), 1, - sym_expression, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(5520), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [39697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, + ACTIONS(3599), 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(2641), 5, + 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_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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38821] = 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(2649), 1, - anon_sym_LT, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - ACTIONS(3563), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3565), 1, anon_sym_lambda, - ACTIONS(3567), 1, - anon_sym_new, - STATE(2112), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2599), 1, - sym_expression, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(5520), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2477), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2487), 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(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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [38936] = 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, + [39766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3517), 14, + ACTIONS(3603), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -154094,7 +157164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3519), 46, + ACTIONS(3601), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -154141,66 +157211,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [39005] = 26, - ACTIONS(1211), 1, + [39835] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3817), 1, + STATE(4418), 1, sym_expression, - STATE(5741), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154209,7 +157279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154230,66 +157300,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [39120] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [39950] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3093), 1, + STATE(3481), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154298,7 +157368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154319,69 +157389,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [39235] = 27, - ACTIONS(2009), 1, + [40065] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3607), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2015), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2019), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2023), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, - anon_sym_None, - ACTIONS(2027), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(3605), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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(2033), 1, - sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(3011), 1, + [40134] = 26, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(3013), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(3015), 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(3569), 1, + ACTIONS(105), 1, + anon_sym_sizeof, + ACTIONS(107), 1, + sym_string_start, + ACTIONS(809), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(849), 1, anon_sym_await, - STATE(2135), 1, - sym_string, - STATE(2167), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2270), 1, + STATE(2100), 1, + sym_string, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4244), 1, + STATE(4191), 1, sym_expression, - STATE(5685), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2291), 2, - sym_attribute, - sym_subscript, - ACTIONS(2007), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3571), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154390,9 +157523,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 18, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -154409,11 +157544,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [39352] = 3, + [40249] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3525), 14, + ACTIONS(3611), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -154428,7 +157563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3527), 46, + ACTIONS(3609), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -154475,13 +157610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [39421] = 3, + [40318] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 14, + ACTIONS(3615), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -154494,7 +157629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3577), 46, + ACTIONS(3613), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -154541,13 +157676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [39490] = 3, + [40387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2769), 14, - sym__dedent, + ACTIONS(3617), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -154560,7 +157695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2767), 46, + ACTIONS(3619), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -154607,13 +157742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [39559] = 3, + [40456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3579), 14, + ACTIONS(3387), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -154626,7 +157761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3581), 46, + ACTIONS(3389), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -154673,13 +157808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [39628] = 3, + [40525] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 14, + ACTIONS(3623), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -154692,7 +157827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3585), 46, + ACTIONS(3621), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -154739,11 +157874,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [39697] = 3, + [40594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3589), 14, + ACTIONS(3627), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -154758,7 +157893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3587), 46, + ACTIONS(3625), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -154805,7 +157940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [39766] = 26, + [40663] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -154826,25 +157961,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3943), 1, + STATE(3556), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -154858,13 +157993,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154873,7 +158008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154894,193 +158029,15 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [39881] = 26, - ACTIONS(2377), 1, + [40778] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3629), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(2391), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, - anon_sym_None, - ACTIONS(2395), 1, - sym_float, - ACTIONS(2399), 1, - anon_sym_sizeof, - ACTIONS(2401), 1, - sym_string_start, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2563), 1, - anon_sym_lambda, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2935), 1, - anon_sym_STAR, - STATE(2047), 1, - sym_primary_expression, - STATE(2073), 1, - sym_string, - STATE(2288), 1, - sym_list_splat_pattern, - STATE(4026), 1, - sym_expression, - STATE(5531), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2375), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2385), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2553), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2388), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2386), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [39996] = 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(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, - anon_sym_STAR, - ACTIONS(3511), 1, - anon_sym_not, - ACTIONS(3513), 1, - anon_sym_lambda, - ACTIONS(3515), 1, - anon_sym_new, - STATE(2067), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2403), 1, - sym_list_splat_pattern, - STATE(2407), 1, - sym_expression, - STATE(5737), 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_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(2456), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2455), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [40111] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3593), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -155091,7 +158048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3591), 46, + ACTIONS(3631), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155138,66 +158095,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [40180] = 26, - ACTIONS(1328), 1, + [40847] = 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(809), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2437), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2066), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2100), 1, sym_string, - STATE(2403), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3938), 1, + STATE(4193), 1, sym_expression, - STATE(5743), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155206,7 +158163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -155227,73 +158184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40295] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3295), 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(3297), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [40364] = 26, + [40962] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -155314,25 +158205,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4283), 1, + STATE(4529), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -155346,102 +158237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [40479] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4458), 1, - sym_expression, - STATE(5741), 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, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155450,7 +158252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -155471,11 +158273,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40594] = 3, + [41077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2689), 14, + ACTIONS(3633), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -155490,7 +158292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2691), 46, + ACTIONS(3635), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155537,13 +158339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [40663] = 3, + [41146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3453), 14, - sym__dedent, + ACTIONS(3637), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -155556,7 +158358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3455), 46, + ACTIONS(3639), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155603,13 +158405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [40732] = 3, + [41215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2769), 14, + ACTIONS(3643), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -155622,7 +158424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2767), 46, + ACTIONS(3641), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155669,13 +158471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [40801] = 3, + [41284] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2433), 14, + ACTIONS(3647), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -155688,7 +158490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2431), 46, + ACTIONS(3645), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155735,13 +158537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [40870] = 3, + [41353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3481), 14, - sym__dedent, + ACTIONS(3649), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -155754,7 +158556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3483), 46, + ACTIONS(3651), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155801,13 +158603,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [40939] = 3, + [41422] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3489), 14, - sym__dedent, + ACTIONS(3653), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -155820,7 +158622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3491), 46, + ACTIONS(3655), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155867,13 +158669,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41008] = 3, + [41491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3493), 14, - sym__dedent, + ACTIONS(3657), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -155886,7 +158688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3495), 46, + ACTIONS(3659), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155933,11 +158735,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41077] = 3, + [41560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2373), 14, + ACTIONS(3661), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -155952,7 +158754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2371), 46, + ACTIONS(3663), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -155999,11 +158801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41146] = 3, + [41629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3521), 14, + ACTIONS(3667), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -156018,7 +158820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3523), 46, + ACTIONS(3665), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -156065,11 +158867,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41215] = 3, + [41698] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3529), 14, + ACTIONS(3671), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -156084,7 +158886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3531), 46, + ACTIONS(3669), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -156131,132 +158933,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41284] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3575), 14, - sym__dedent, - sym_string_start, + [41767] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1251), 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(3577), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [41353] = 26, - ACTIONS(67), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4253), 1, + STATE(4446), 1, sym_expression, - STATE(5736), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156265,7 +159001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -156286,13 +159022,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41468] = 3, + [41882] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 14, - sym__dedent, + ACTIONS(2729), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -156305,7 +159041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3297), 46, + ACTIONS(2727), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -156352,13 +159088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41537] = 3, + [41951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3595), 14, + ACTIONS(3675), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -156371,7 +159107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3597), 46, + ACTIONS(3673), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -156418,11 +159154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41606] = 3, + [42020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2689), 14, + ACTIONS(3679), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -156437,7 +159173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2691), 46, + ACTIONS(3677), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -156484,278 +159220,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [41675] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, - anon_sym_LBRACE, - ACTIONS(2023), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, - anon_sym_None, - ACTIONS(2027), 1, - sym_float, - ACTIONS(2031), 1, - anon_sym_sizeof, - ACTIONS(2033), 1, - sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - ACTIONS(3011), 1, - anon_sym_not, - ACTIONS(3013), 1, - anon_sym_lambda, - ACTIONS(3015), 1, - anon_sym_new, - STATE(2046), 1, - sym_primary_expression, - STATE(2135), 1, - sym_string, - STATE(2270), 1, - sym_list_splat_pattern, - STATE(4179), 1, - sym_expression, - STATE(5685), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2007), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2017), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2929), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3805), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2266), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [41790] = 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(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(4002), 1, - sym_expression, - STATE(5736), 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(944), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [41905] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4435), 1, - sym_expression, - STATE(5741), 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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [42020] = 3, + [42089] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3595), 14, + ACTIONS(3683), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -156770,7 +159239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3597), 46, + ACTIONS(3681), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -156817,11 +159286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [42089] = 3, + [42158] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3601), 14, + ACTIONS(3687), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -156836,7 +159305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3599), 46, + ACTIONS(3685), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -156883,11 +159352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [42158] = 3, + [42227] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3601), 14, + ACTIONS(3525), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -156902,7 +159371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3599), 46, + ACTIONS(3523), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -156949,100 +159418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [42227] = 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(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(4039), 1, - sym_expression, - STATE(5736), 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(944), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [42342] = 3, + [42296] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3605), 14, + ACTIONS(3691), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -157057,7 +159437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3603), 46, + ACTIONS(3689), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -157104,11 +159484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [42411] = 3, + [42365] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3609), 14, + ACTIONS(3695), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -157123,7 +159503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3607), 46, + ACTIONS(3693), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -157170,11 +159550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [42480] = 3, + [42434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 14, + ACTIONS(3699), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -157189,7 +159569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3611), 46, + ACTIONS(3697), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -157236,13 +159616,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [42549] = 3, + [42503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3589), 14, + ACTIONS(3703), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -157255,7 +159635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3587), 46, + ACTIONS(3701), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -157302,333 +159682,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [42618] = 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(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(4065), 1, - sym_expression, - STATE(5736), 1, - sym__named_expression_lhs, + [42572] = 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(944), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [42733] = 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(3575), 14, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(4103), 1, - sym_expression, - STATE(5736), 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(944), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3573), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_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(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [42848] = 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(929), 1, + sym_integer, sym_identifier, - ACTIONS(969), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(3479), 1, - sym_expression, - STATE(5736), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(81), 3, - sym_integer, + anon_sym_api, sym_true, sym_false, - ACTIONS(65), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(944), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [42963] = 26, - ACTIONS(67), 1, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [42641] = 27, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(3709), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, + STATE(2208), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2410), 1, sym_string, - STATE(2110), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4153), 1, + STATE(4267), 1, sym_expression, - STATE(5736), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + STATE(2499), 2, + sym_attribute, + sym_subscript, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(3707), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157637,11 +159819,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2710), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -157658,13 +159838,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43078] = 3, + [42758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3385), 14, - sym__dedent, + ACTIONS(3579), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -157677,7 +159857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3387), 46, + ACTIONS(3577), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -157724,11 +159904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [43147] = 3, + [42827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3405), 14, + ACTIONS(3497), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -157743,7 +159923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3407), 46, + ACTIONS(3499), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -157790,102 +159970,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [43216] = 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(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(4245), 1, - sym_expression, - STATE(5736), 1, - sym__named_expression_lhs, + [42896] = 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(944), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [43331] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3409), 14, - sym__dedent, + ACTIONS(3583), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -157898,7 +159989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3411), 46, + ACTIONS(3581), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -157945,13 +160036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [43400] = 3, + [42965] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3413), 14, - sym__dedent, + ACTIONS(3587), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -157964,7 +160055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3415), 46, + ACTIONS(3585), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -158011,13 +160102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [43469] = 3, + [43034] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3417), 14, - sym__dedent, + ACTIONS(3591), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -158030,7 +160121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3419), 46, + ACTIONS(3589), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -158077,102 +160168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [43538] = 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(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(4123), 1, - sym_expression, - STATE(5736), 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(944), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [43653] = 3, + [43103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3421), 14, - sym__dedent, + ACTIONS(3711), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -158185,7 +160187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3423), 46, + ACTIONS(3713), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -158232,13 +160234,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [43722] = 3, + [43172] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3425), 14, - sym__dedent, + ACTIONS(3595), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -158251,7 +160253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3427), 46, + ACTIONS(3593), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -158298,13 +160300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [43791] = 3, + [43241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3429), 14, - sym__dedent, + ACTIONS(3599), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -158317,7 +160319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3431), 46, + ACTIONS(3597), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -158364,102 +160366,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [43860] = 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(2533), 1, - anon_sym_not, - ACTIONS(2535), 1, - anon_sym_LT, - ACTIONS(2537), 1, - anon_sym_lambda, - ACTIONS(2543), 1, - anon_sym_new, - ACTIONS(2809), 1, - sym_identifier, - ACTIONS(2817), 1, - anon_sym_await, - ACTIONS(2943), 1, - anon_sym_STAR, - STATE(2072), 1, - sym_primary_expression, - STATE(2166), 1, - sym_string, - STATE(2479), 1, - sym_list_splat_pattern, - STATE(3879), 1, - sym_expression, - STATE(5590), 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(2813), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2527), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2526), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [43975] = 3, + [43310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3433), 14, - sym__dedent, + ACTIONS(3603), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -158472,7 +160385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3435), 46, + ACTIONS(3601), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -158519,66 +160432,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [44044] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [43379] = 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(2533), 1, - anon_sym_not, - ACTIONS(2535), 1, - anon_sym_LT, - ACTIONS(2537), 1, - anon_sym_lambda, - ACTIONS(2543), 1, - anon_sym_new, - ACTIONS(2809), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2817), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2072), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2100), 1, sym_string, - STATE(2479), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3977), 1, + STATE(4076), 1, sym_expression, - STATE(5590), 1, + STATE(5657), 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(2813), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158587,7 +160500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158608,7 +160521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44159] = 26, + [43494] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -158629,25 +160542,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3902), 1, + STATE(4080), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -158661,13 +160574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158676,7 +160589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158697,244 +160610,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44274] = 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(2533), 1, - anon_sym_not, - ACTIONS(2535), 1, - anon_sym_LT, - ACTIONS(2537), 1, - anon_sym_lambda, - ACTIONS(2543), 1, - anon_sym_new, - ACTIONS(2809), 1, - sym_identifier, - ACTIONS(2817), 1, - anon_sym_await, - ACTIONS(2943), 1, - anon_sym_STAR, - STATE(2072), 1, - sym_primary_expression, - STATE(2166), 1, - sym_string, - STATE(2479), 1, - sym_list_splat_pattern, - STATE(3978), 1, - sym_expression, - STATE(5590), 1, - sym__named_expression_lhs, + [43609] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + ACTIONS(3607), 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(2813), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3605), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_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(2527), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2526), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [44389] = 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(2533), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2535), 1, - anon_sym_LT, - ACTIONS(2537), 1, anon_sym_lambda, - ACTIONS(2543), 1, - anon_sym_new, - ACTIONS(2809), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2817), 1, anon_sym_await, - ACTIONS(2943), 1, - anon_sym_STAR, - STATE(2072), 1, - sym_primary_expression, - STATE(2166), 1, - sym_string, - STATE(2479), 1, - sym_list_splat_pattern, - STATE(2548), 1, - sym_expression, - STATE(5590), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, + anon_sym_api, sym_true, sym_false, - ACTIONS(2459), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2813), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2527), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2526), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [44504] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [43678] = 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(2533), 1, - anon_sym_not, - ACTIONS(2535), 1, - anon_sym_LT, - ACTIONS(2537), 1, - anon_sym_lambda, - ACTIONS(2543), 1, - anon_sym_new, - ACTIONS(2809), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2817), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2072), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2100), 1, sym_string, - STATE(2479), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3979), 1, + STATE(4088), 1, sym_expression, - STATE(5590), 1, + STATE(5657), 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(2813), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158943,7 +160744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158964,66 +160765,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44619] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [43793] = 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(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - STATE(2168), 1, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2100), 1, sym_string, - STATE(2693), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4166), 1, + STATE(4095), 1, sym_expression, - STATE(5483), 1, + STATE(5657), 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(1567), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159032,7 +160833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159053,11 +160854,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44734] = 3, + [43908] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3441), 14, + ACTIONS(3617), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -159072,7 +160873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3443), 46, + ACTIONS(3619), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -159119,155 +160920,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [44803] = 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(2535), 1, - anon_sym_LT, - ACTIONS(2809), 1, - sym_identifier, - ACTIONS(2817), 1, - anon_sym_await, - ACTIONS(2943), 1, - anon_sym_STAR, - ACTIONS(3539), 1, - anon_sym_not, - ACTIONS(3541), 1, - anon_sym_lambda, - ACTIONS(3543), 1, - anon_sym_new, - STATE(2065), 1, - sym_primary_expression, - STATE(2166), 1, - sym_string, - STATE(2404), 1, - sym_expression, - STATE(2479), 1, - sym_list_splat_pattern, - STATE(5449), 1, - sym__named_expression_lhs, + [43977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + 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, - ACTIONS(2813), 5, + 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, + anon_sym_await, anon_sym_api, - STATE(2527), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2526), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [44918] = 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, + [44046] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2533), 1, - anon_sym_not, - ACTIONS(2535), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2537), 1, - anon_sym_lambda, - ACTIONS(2543), 1, - anon_sym_new, - ACTIONS(2809), 1, - sym_identifier, - ACTIONS(2817), 1, - anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2072), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2143), 1, sym_string, - STATE(2479), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3888), 1, + STATE(4402), 1, sym_expression, - STATE(5590), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2813), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159276,7 +161054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159297,11 +161075,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45033] = 3, + [44161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3445), 14, + ACTIONS(3633), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -159316,7 +161094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3447), 46, + ACTIONS(3635), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -159363,13 +161141,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [45102] = 3, + [44230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2405), 14, + ACTIONS(3637), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -159382,7 +161160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2403), 46, + ACTIONS(3639), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -159429,11 +161207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [45171] = 3, + [44299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3309), 14, + ACTIONS(3649), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -159448,7 +161226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3311), 46, + ACTIONS(3651), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -159495,118 +161273,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [45240] = 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(2535), 1, - anon_sym_LT, - ACTIONS(2809), 1, - sym_identifier, - ACTIONS(2817), 1, - anon_sym_await, - ACTIONS(2943), 1, - anon_sym_STAR, - ACTIONS(3539), 1, - anon_sym_not, - ACTIONS(3541), 1, - anon_sym_lambda, - ACTIONS(3543), 1, - anon_sym_new, - STATE(2065), 1, - sym_primary_expression, - STATE(2166), 1, - sym_string, - STATE(2421), 1, - sym_expression, - STATE(2479), 1, - sym_list_splat_pattern, - STATE(5449), 1, - sym__named_expression_lhs, + [44368] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + ACTIONS(3653), 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(2813), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2527), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2526), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [45355] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3449), 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(3451), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3655), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, anon_sym_assert, anon_sym_return, @@ -159650,66 +161339,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [45424] = 26, - ACTIONS(2451), 1, + [44437] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2533), 1, - anon_sym_not, - ACTIONS(2535), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2537), 1, - anon_sym_lambda, - ACTIONS(2543), 1, - anon_sym_new, - ACTIONS(2809), 1, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4255), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [44552] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(2817), 1, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2072), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2143), 1, sym_string, - STATE(2479), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3896), 1, + STATE(4398), 1, sym_expression, - STATE(5590), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2813), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159718,7 +161496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159739,11 +161517,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45539] = 3, + [44667] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3457), 14, + ACTIONS(3657), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -159758,7 +161536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3459), 46, + ACTIONS(3659), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -159805,66 +161583,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [45608] = 26, - ACTIONS(67), 1, + [44736] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1364), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2405), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3467), 1, + anon_sym_not, + ACTIONS(3469), 1, + anon_sym_lambda, + ACTIONS(3471), 1, + anon_sym_new, + STATE(2128), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2202), 1, sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(4124), 1, + STATE(2493), 1, sym_expression, - STATE(5736), 1, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(5689), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159873,7 +161651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159894,66 +161672,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45723] = 26, - ACTIONS(67), 1, + [44851] = 26, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 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(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2292), 1, sym_string, - STATE(2110), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4126), 1, + STATE(4348), 1, sym_expression, - STATE(5736), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159962,7 +161740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159983,132 +161761,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45838] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3471), 14, + [44966] = 26, + ACTIONS(1360), 1, + anon_sym_LBRACE, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1372), 1, + anon_sym_None, + ACTIONS(1376), 1, + sym_float, + ACTIONS(1392), 1, + anon_sym_sizeof, + ACTIONS(1394), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_await, + ACTIONS(2405), 1, anon_sym_LPAREN, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3467), 1, + anon_sym_not, + ACTIONS(3469), 1, + anon_sym_lambda, + ACTIONS(3471), 1, + anon_sym_new, + STATE(2128), 1, + sym_primary_expression, + STATE(2202), 1, + sym_string, + STATE(2595), 1, + sym_expression, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(5689), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1374), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1358), 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(3469), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1502), 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, - [45907] = 26, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, + STATE(2579), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2556), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [45081] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_await, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2559), 1, + ACTIONS(3041), 1, + anon_sym_STAR, + ACTIONS(3467), 1, anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(3469), 1, anon_sym_lambda, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2569), 1, + ACTIONS(3471), 1, anon_sym_new, - ACTIONS(2935), 1, - anon_sym_STAR, - STATE(2047), 1, + STATE(2128), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2202), 1, sym_string, - STATE(2288), 1, - sym_list_splat_pattern, - STATE(3857), 1, + STATE(2576), 1, sym_expression, - STATE(5531), 1, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(5689), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160117,7 +161918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160138,66 +161939,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46022] = 26, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, + [45196] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_await, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2559), 1, + ACTIONS(3041), 1, + anon_sym_STAR, + ACTIONS(3467), 1, anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(3469), 1, anon_sym_lambda, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2569), 1, + ACTIONS(3471), 1, anon_sym_new, - ACTIONS(2935), 1, - anon_sym_STAR, - STATE(2047), 1, + STATE(2128), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2202), 1, sym_string, - STATE(2288), 1, - sym_list_splat_pattern, - STATE(3859), 1, + STATE(2513), 1, sym_expression, - STATE(5531), 1, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(5689), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160206,7 +162007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160227,66 +162028,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46137] = 26, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, + [45311] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_await, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2559), 1, + ACTIONS(3041), 1, + anon_sym_STAR, + ACTIONS(3467), 1, anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(3469), 1, anon_sym_lambda, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2569), 1, + ACTIONS(3471), 1, anon_sym_new, - ACTIONS(2935), 1, - anon_sym_STAR, - STATE(2047), 1, + STATE(2128), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2202), 1, sym_string, - STATE(2288), 1, - sym_list_splat_pattern, - STATE(3860), 1, + STATE(2549), 1, sym_expression, - STATE(5531), 1, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(5689), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160295,7 +162096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160316,66 +162117,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46252] = 26, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, + [45426] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_await, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2559), 1, + ACTIONS(3041), 1, + anon_sym_STAR, + ACTIONS(3467), 1, anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(3469), 1, anon_sym_lambda, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2569), 1, + ACTIONS(3471), 1, anon_sym_new, - ACTIONS(2935), 1, - anon_sym_STAR, - STATE(2047), 1, + STATE(2128), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2202), 1, sym_string, - STATE(2288), 1, - sym_list_splat_pattern, - STATE(2325), 1, + STATE(2509), 1, sym_expression, - STATE(5531), 1, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(5689), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160384,7 +162185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160405,66 +162206,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46367] = 26, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, + [45541] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_await, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2559), 1, + ACTIONS(3041), 1, + anon_sym_STAR, + ACTIONS(3467), 1, anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(3469), 1, anon_sym_lambda, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2569), 1, + ACTIONS(3471), 1, anon_sym_new, - ACTIONS(2935), 1, - anon_sym_STAR, - STATE(2047), 1, + STATE(2128), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2202), 1, sym_string, - STATE(2288), 1, - sym_list_splat_pattern, - STATE(3863), 1, + STATE(2560), 1, sym_expression, - STATE(5531), 1, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(5689), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160473,7 +162274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160494,13 +162295,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46482] = 3, + [45656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2409), 14, + ACTIONS(3661), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -160513,7 +162314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2407), 46, + ACTIONS(3663), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -160560,66 +162361,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [46551] = 26, - ACTIONS(2377), 1, + [45725] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(2561), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2935), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3545), 1, + ACTIONS(3715), 1, anon_sym_not, - ACTIONS(3547), 1, + ACTIONS(3717), 1, anon_sym_lambda, - ACTIONS(3549), 1, + ACTIONS(3719), 1, anon_sym_new, - STATE(2051), 1, - sym_primary_expression, - STATE(2073), 1, + STATE(2143), 1, sym_string, - STATE(2288), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(2362), 1, + STATE(2413), 1, + sym_primary_expression, + STATE(3216), 1, sym_expression, - STATE(5479), 1, + STATE(5593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160628,7 +162429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160649,66 +162450,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46666] = 26, - ACTIONS(67), 1, + [45840] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 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(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, + ACTIONS(3715), 1, + anon_sym_not, + ACTIONS(3717), 1, + anon_sym_lambda, + ACTIONS(3719), 1, + anon_sym_new, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4318), 1, + STATE(2413), 1, + sym_primary_expression, + STATE(3190), 1, sym_expression, - STATE(5736), 1, + STATE(5593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160717,7 +162518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160738,66 +162539,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46781] = 26, - ACTIONS(2377), 1, + [45955] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(2977), 1, + anon_sym_STAR, + ACTIONS(3715), 1, + anon_sym_not, + ACTIONS(3717), 1, anon_sym_lambda, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2569), 1, + ACTIONS(3719), 1, anon_sym_new, - ACTIONS(2935), 1, - anon_sym_STAR, - STATE(2047), 1, - sym_primary_expression, - STATE(2073), 1, + STATE(2143), 1, sym_string, - STATE(2288), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3874), 1, + STATE(2413), 1, + sym_primary_expression, + STATE(3191), 1, sym_expression, - STATE(5531), 1, + STATE(5593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160806,7 +162607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160827,66 +162628,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46896] = 26, - ACTIONS(2377), 1, + [46070] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(2561), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2935), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3545), 1, + ACTIONS(3715), 1, anon_sym_not, - ACTIONS(3547), 1, + ACTIONS(3717), 1, anon_sym_lambda, - ACTIONS(3549), 1, + ACTIONS(3719), 1, anon_sym_new, - STATE(2051), 1, - sym_primary_expression, - STATE(2073), 1, + STATE(2143), 1, sym_string, - STATE(2288), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(2371), 1, + STATE(2413), 1, + sym_primary_expression, + STATE(3143), 1, sym_expression, - STATE(5479), 1, + STATE(5593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160895,7 +162696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160916,66 +162717,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47011] = 26, - ACTIONS(2377), 1, + [46185] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2545), 1, - sym_identifier, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(2977), 1, + anon_sym_STAR, + ACTIONS(3715), 1, + anon_sym_not, + ACTIONS(3717), 1, anon_sym_lambda, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2569), 1, + ACTIONS(3719), 1, anon_sym_new, - ACTIONS(2935), 1, - anon_sym_STAR, - STATE(2047), 1, - sym_primary_expression, - STATE(2073), 1, + STATE(2143), 1, sym_string, - STATE(2288), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3798), 1, + STATE(2413), 1, + sym_primary_expression, + STATE(3192), 1, sym_expression, - STATE(5531), 1, + STATE(5593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160984,7 +162785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161005,66 +162806,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47126] = 26, - ACTIONS(2009), 1, + [46300] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - ACTIONS(3011), 1, + ACTIONS(2977), 1, + anon_sym_STAR, + ACTIONS(3721), 1, anon_sym_not, - ACTIONS(3013), 1, + ACTIONS(3723), 1, anon_sym_lambda, - ACTIONS(3015), 1, + ACTIONS(3725), 1, anon_sym_new, - STATE(2046), 1, + STATE(2111), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2143), 1, sym_string, - STATE(2270), 1, - sym_list_splat_pattern, - STATE(4163), 1, + STATE(2327), 1, sym_expression, - STATE(5685), 1, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(5771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(2422), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161073,7 +162874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161094,66 +162895,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47241] = 26, - ACTIONS(1211), 1, + [46415] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3533), 1, + ACTIONS(3715), 1, anon_sym_not, - ACTIONS(3535), 1, + ACTIONS(3717), 1, anon_sym_lambda, - ACTIONS(3537), 1, + ACTIONS(3719), 1, anon_sym_new, - STATE(2070), 1, - sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2415), 1, - sym_expression, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(5749), 1, + STATE(2413), 1, + sym_primary_expression, + STATE(3193), 1, + sym_expression, + STATE(5593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2409), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161162,7 +162963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161183,66 +162984,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47356] = 26, - ACTIONS(1211), 1, + [46530] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3533), 1, + ACTIONS(3721), 1, anon_sym_not, - ACTIONS(3535), 1, + ACTIONS(3723), 1, anon_sym_lambda, - ACTIONS(3537), 1, + ACTIONS(3725), 1, anon_sym_new, - STATE(2070), 1, + STATE(2111), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2417), 1, + STATE(2338), 1, sym_expression, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(5749), 1, + STATE(5771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2409), 8, + STATE(2422), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161251,7 +163052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161272,66 +163073,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47471] = 26, - ACTIONS(1211), 1, + [46645] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3533), 1, + ACTIONS(3715), 1, anon_sym_not, - ACTIONS(3535), 1, + ACTIONS(3717), 1, anon_sym_lambda, - ACTIONS(3537), 1, + ACTIONS(3719), 1, anon_sym_new, - STATE(2070), 1, - sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2418), 1, - sym_expression, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(5749), 1, + STATE(2413), 1, + sym_primary_expression, + STATE(3194), 1, + sym_expression, + STATE(5593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2409), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161340,7 +163141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161361,66 +163162,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47586] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [46760] = 26, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2841), 1, + sym_identifier, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, anon_sym_STAR, - ACTIONS(3533), 1, + ACTIONS(3449), 1, anon_sym_not, - ACTIONS(3535), 1, + ACTIONS(3451), 1, anon_sym_lambda, - ACTIONS(3537), 1, + ACTIONS(3453), 1, anon_sym_new, - STATE(2070), 1, + STATE(2120), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2229), 1, sym_string, - STATE(2419), 1, + STATE(2540), 1, sym_expression, - STATE(2451), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(5749), 1, + STATE(5512), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2409), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161429,7 +163230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161450,66 +163251,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47701] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [46875] = 26, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2841), 1, + sym_identifier, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, anon_sym_STAR, - ACTIONS(3533), 1, + ACTIONS(3449), 1, anon_sym_not, - ACTIONS(3535), 1, + ACTIONS(3451), 1, anon_sym_lambda, - ACTIONS(3537), 1, + ACTIONS(3453), 1, anon_sym_new, - STATE(2070), 1, + STATE(2120), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2229), 1, sym_string, - STATE(2420), 1, - sym_expression, - STATE(2451), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(5749), 1, + STATE(2561), 1, + sym_expression, + STATE(5512), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2409), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161518,7 +163319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161539,66 +163340,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47816] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [46990] = 26, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2841), 1, + sym_identifier, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, anon_sym_STAR, - ACTIONS(3533), 1, + ACTIONS(3449), 1, anon_sym_not, - ACTIONS(3535), 1, + ACTIONS(3451), 1, anon_sym_lambda, - ACTIONS(3537), 1, + ACTIONS(3453), 1, anon_sym_new, - STATE(2070), 1, + STATE(2120), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2229), 1, sym_string, - STATE(2422), 1, - sym_expression, - STATE(2451), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(5749), 1, + STATE(2571), 1, + sym_expression, + STATE(5512), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2409), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161607,7 +163408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161628,66 +163429,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47931] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [47105] = 26, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2841), 1, + sym_identifier, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, anon_sym_STAR, - ACTIONS(3533), 1, + ACTIONS(3449), 1, anon_sym_not, - ACTIONS(3535), 1, + ACTIONS(3451), 1, anon_sym_lambda, - ACTIONS(3537), 1, + ACTIONS(3453), 1, anon_sym_new, - STATE(2070), 1, + STATE(2120), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2229), 1, sym_string, - STATE(2424), 1, - sym_expression, - STATE(2451), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(5749), 1, + STATE(2627), 1, + sym_expression, + STATE(5512), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2409), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161696,7 +163497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161717,132 +163518,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48046] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3579), 14, - sym__dedent, - sym_string_start, + [47220] = 26, + ACTIONS(2483), 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(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, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [48115] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(2473), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2533), 1, - anon_sym_not, - ACTIONS(2535), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(2537), 1, - anon_sym_lambda, - ACTIONS(2543), 1, - anon_sym_new, - ACTIONS(2809), 1, + ACTIONS(2841), 1, sym_identifier, - ACTIONS(2817), 1, + ACTIONS(2849), 1, anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2072), 1, + ACTIONS(3449), 1, + anon_sym_not, + ACTIONS(3451), 1, + anon_sym_lambda, + ACTIONS(3453), 1, + anon_sym_new, + STATE(2120), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2229), 1, sym_string, - STATE(2479), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(2535), 1, + STATE(2581), 1, sym_expression, - STATE(5590), 1, + STATE(5512), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2813), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161851,7 +163586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161872,69 +163607,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48230] = 27, - ACTIONS(1382), 1, + [47335] = 26, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2521), 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(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1565), 1, - anon_sym_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(3615), 1, - sym_identifier, - ACTIONS(3619), 1, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, anon_sym_await, - STATE(2168), 1, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, + anon_sym_STAR, + STATE(2177), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2292), 1, sym_string, - STATE(2693), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4209), 1, + STATE(4300), 1, sym_expression, - STATE(5483), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2639), 2, - sym_attribute, - sym_subscript, - ACTIONS(1398), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3617), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161943,9 +163675,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 18, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -161962,135 +163696,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48347] = 3, + [47450] = 26, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(2497), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2499), 1, + anon_sym_None, + ACTIONS(2501), 1, + sym_float, + ACTIONS(2505), 1, + anon_sym_sizeof, + ACTIONS(2507), 1, + sym_string_start, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(2841), 1, + sym_identifier, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, + anon_sym_STAR, + ACTIONS(3449), 1, + anon_sym_not, + ACTIONS(3451), 1, + anon_sym_lambda, + ACTIONS(3453), 1, + anon_sym_new, + STATE(2120), 1, + sym_primary_expression, + STATE(2229), 1, + sym_string, + STATE(2546), 1, + sym_list_splat_pattern, + STATE(2583), 1, + sym_expression, + STATE(5512), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3583), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2481), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2491), 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(2845), 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, - [48416] = 27, - ACTIONS(1382), 1, + STATE(2536), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2512), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [47565] = 26, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2493), 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(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(1565), 1, - anon_sym_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(3619), 1, - anon_sym_await, - ACTIONS(3621), 1, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(2841), 1, sym_identifier, - STATE(2155), 1, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, + anon_sym_STAR, + ACTIONS(3449), 1, + anon_sym_not, + ACTIONS(3451), 1, + anon_sym_lambda, + ACTIONS(3453), 1, + anon_sym_new, + STATE(2120), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2229), 1, sym_string, - STATE(2693), 1, - sym_list_splat_pattern, - STATE(4209), 1, + STATE(2498), 1, sym_expression, - STATE(5483), 1, + STATE(2546), 1, + sym_list_splat_pattern, + STATE(5512), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2467), 2, - sym_attribute, - sym_subscript, - ACTIONS(1398), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3623), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162099,9 +163853,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 18, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -162118,66 +163874,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48533] = 26, - ACTIONS(2009), 1, + [47680] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(2573), 1, + sym_identifier, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(2675), 1, + ACTIONS(3455), 1, anon_sym_not, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2679), 1, + ACTIONS(3457), 1, anon_sym_lambda, - ACTIONS(2685), 1, + ACTIONS(3459), 1, anon_sym_new, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - STATE(2046), 1, + STATE(2114), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2193), 1, sym_string, - STATE(2270), 1, - sym_list_splat_pattern, - STATE(3826), 1, + STATE(2337), 1, sym_expression, - STATE(5543), 1, + STATE(2449), 1, + sym_list_splat_pattern, + STATE(5547), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162186,7 +163942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162207,66 +163963,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48648] = 26, - ACTIONS(2009), 1, + [47795] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(2573), 1, + sym_identifier, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(2675), 1, + ACTIONS(3455), 1, anon_sym_not, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2679), 1, + ACTIONS(3457), 1, anon_sym_lambda, - ACTIONS(2685), 1, + ACTIONS(3459), 1, anon_sym_new, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - STATE(2046), 1, + STATE(2114), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2193), 1, sym_string, - STATE(2270), 1, - sym_list_splat_pattern, - STATE(3828), 1, + STATE(2350), 1, sym_expression, - STATE(5543), 1, + STATE(2449), 1, + sym_list_splat_pattern, + STATE(5547), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162275,7 +164031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162296,66 +164052,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48763] = 26, - ACTIONS(2009), 1, + [47910] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(2573), 1, + sym_identifier, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(2675), 1, + ACTIONS(3455), 1, anon_sym_not, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2679), 1, + ACTIONS(3457), 1, anon_sym_lambda, - ACTIONS(2685), 1, + ACTIONS(3459), 1, anon_sym_new, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - STATE(2046), 1, + STATE(2114), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2193), 1, sym_string, - STATE(2270), 1, - sym_list_splat_pattern, - STATE(3829), 1, + STATE(2351), 1, sym_expression, - STATE(5543), 1, + STATE(2449), 1, + sym_list_splat_pattern, + STATE(5547), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162364,7 +164120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162385,66 +164141,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48878] = 26, - ACTIONS(2009), 1, + [48025] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(2573), 1, + sym_identifier, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(2675), 1, + ACTIONS(3455), 1, anon_sym_not, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2679), 1, + ACTIONS(3457), 1, anon_sym_lambda, - ACTIONS(2685), 1, + ACTIONS(3459), 1, anon_sym_new, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - STATE(2046), 1, + STATE(2114), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2193), 1, sym_string, - STATE(2270), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(3830), 1, + STATE(2466), 1, sym_expression, - STATE(5543), 1, + STATE(5547), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162453,7 +164209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162474,66 +164230,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48993] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [48140] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2573), 1, + sym_identifier, + ACTIONS(2589), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2068), 1, + ACTIONS(3455), 1, + anon_sym_not, + ACTIONS(3457), 1, + anon_sym_lambda, + ACTIONS(3459), 1, + anon_sym_new, + STATE(2114), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2193), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4402), 1, + STATE(2352), 1, sym_expression, - STATE(5741), 1, + STATE(2449), 1, + sym_list_splat_pattern, + STATE(5547), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162542,7 +164298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162563,66 +164319,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49108] = 26, - ACTIONS(2009), 1, + [48255] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(2573), 1, + sym_identifier, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(2675), 1, + ACTIONS(3455), 1, anon_sym_not, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2679), 1, + ACTIONS(3457), 1, anon_sym_lambda, - ACTIONS(2685), 1, + ACTIONS(3459), 1, anon_sym_new, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - STATE(2046), 1, + STATE(2114), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2193), 1, sym_string, - STATE(2270), 1, - sym_list_splat_pattern, - STATE(3831), 1, + STATE(2353), 1, sym_expression, - STATE(5543), 1, + STATE(2449), 1, + sym_list_splat_pattern, + STATE(5547), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162631,7 +164387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162652,66 +164408,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49223] = 26, - ACTIONS(2009), 1, + [48370] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(3551), 1, + ACTIONS(3076), 1, + anon_sym_STAR, + ACTIONS(3455), 1, anon_sym_not, - ACTIONS(3553), 1, + ACTIONS(3457), 1, anon_sym_lambda, - ACTIONS(3555), 1, + ACTIONS(3459), 1, anon_sym_new, - STATE(2049), 1, + STATE(2114), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2193), 1, sym_string, - STATE(2254), 1, + STATE(2365), 1, sym_expression, - STATE(2270), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(5495), 1, + STATE(5547), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2299), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162720,7 +164476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162741,66 +164497,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49338] = 26, - ACTIONS(2479), 1, + [48485] = 26, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2647), 1, - anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2651), 1, - anon_sym_lambda, - ACTIONS(2653), 1, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2963), 1, anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(3461), 1, + anon_sym_not, + ACTIONS(3463), 1, + anon_sym_lambda, + ACTIONS(3465), 1, anon_sym_new, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - STATE(2127), 1, + STATE(2116), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2153), 1, sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(4106), 1, + STATE(2356), 1, sym_expression, - STATE(5641), 1, + STATE(2421), 1, + sym_list_splat_pattern, + STATE(5560), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2331), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162809,7 +164565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162830,66 +164586,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49453] = 26, - ACTIONS(2377), 1, + [48600] = 26, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2559), 1, + ACTIONS(2963), 1, + anon_sym_await, + ACTIONS(3461), 1, anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(3463), 1, anon_sym_lambda, - ACTIONS(2567), 1, - anon_sym_await, - ACTIONS(2569), 1, + ACTIONS(3465), 1, anon_sym_new, - ACTIONS(2935), 1, - anon_sym_STAR, - STATE(2047), 1, + STATE(2116), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2153), 1, sym_string, - STATE(2288), 1, - sym_list_splat_pattern, - STATE(2341), 1, + STATE(2360), 1, sym_expression, - STATE(5531), 1, + STATE(2421), 1, + sym_list_splat_pattern, + STATE(5560), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(2331), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162898,7 +164654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162919,69 +164675,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49568] = 27, - ACTIONS(2479), 1, + [48715] = 26, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1999), 1, sym_string_start, - 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(3065), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(3625), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(2963), 1, anon_sym_await, - STATE(2127), 1, + ACTIONS(3461), 1, + anon_sym_not, + ACTIONS(3463), 1, + anon_sym_lambda, + ACTIONS(3465), 1, + anon_sym_new, + STATE(2116), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2153), 1, sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(4198), 1, + STATE(2362), 1, sym_expression, - STATE(5641), 1, + STATE(2421), 1, + sym_list_splat_pattern, + STATE(5560), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2650), 2, - sym_attribute, - sym_subscript, - ACTIONS(2477), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3627), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2331), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162990,9 +164743,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 18, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -163009,66 +164764,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49685] = 26, - ACTIONS(2009), 1, + [48830] = 26, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(2675), 1, - anon_sym_not, - ACTIONS(2677), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2679), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_new, - ACTIONS(2925), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(2963), 1, anon_sym_await, - STATE(2046), 1, + ACTIONS(3461), 1, + anon_sym_not, + ACTIONS(3463), 1, + anon_sym_lambda, + ACTIONS(3465), 1, + anon_sym_new, + STATE(2116), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2153), 1, sym_string, - STATE(2270), 1, - sym_list_splat_pattern, - STATE(3847), 1, + STATE(2363), 1, sym_expression, - STATE(5543), 1, + STATE(2421), 1, + sym_list_splat_pattern, + STATE(5560), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(2331), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163077,7 +164832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163098,198 +164853,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49800] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3391), 14, - sym_string_start, - ts_builtin_sym_end, + [48945] = 26, + ACTIONS(1975), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1981), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1985), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1989), 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(1991), 1, anon_sym_None, - sym_integer, + ACTIONS(1993), 1, + sym_float, + ACTIONS(1997), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + sym_string_start, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, sym_identifier, + ACTIONS(2963), 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(3461), 1, + anon_sym_not, + ACTIONS(3463), 1, + anon_sym_lambda, + ACTIONS(3465), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [49869] = 3, + STATE(2116), 1, + sym_primary_expression, + STATE(2153), 1, + sym_string, + STATE(2364), 1, + sym_expression, + STATE(2421), 1, + sym_list_splat_pattern, + STATE(5560), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3395), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1973), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1983), 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(3393), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2959), 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, - [49938] = 26, - ACTIONS(2009), 1, + STATE(2331), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [49060] = 26, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(2963), 1, anon_sym_await, - ACTIONS(3551), 1, + ACTIONS(3461), 1, anon_sym_not, - ACTIONS(3553), 1, + ACTIONS(3463), 1, anon_sym_lambda, - ACTIONS(3555), 1, + ACTIONS(3465), 1, anon_sym_new, - STATE(2049), 1, + STATE(2116), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2153), 1, sym_string, - STATE(2257), 1, + STATE(2385), 1, sym_expression, - STATE(2270), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(5495), 1, + STATE(5560), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2299), 8, + STATE(2331), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163298,7 +165010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163319,132 +165031,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50053] = 3, - 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, - 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, - [50122] = 26, - ACTIONS(2009), 1, + [49175] = 26, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(2675), 1, - anon_sym_not, - ACTIONS(2677), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2679), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_new, - ACTIONS(2925), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(2963), 1, anon_sym_await, - STATE(2046), 1, + ACTIONS(3461), 1, + anon_sym_not, + ACTIONS(3463), 1, + anon_sym_lambda, + ACTIONS(3465), 1, + anon_sym_new, + STATE(2116), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2153), 1, sym_string, - STATE(2270), 1, - sym_list_splat_pattern, - STATE(3856), 1, + STATE(2398), 1, sym_expression, - STATE(5543), 1, + STATE(2421), 1, + sym_list_splat_pattern, + STATE(5560), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(2331), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163453,7 +165099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163474,66 +165120,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50237] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [49290] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(1597), 1, anon_sym_STAR, - STATE(2068), 1, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + ACTIONS(3475), 1, + anon_sym_not, + ACTIONS(3477), 1, + anon_sym_lambda, + ACTIONS(3479), 1, + anon_sym_new, + STATE(2197), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2410), 1, sym_string, - STATE(2451), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4234), 1, + STATE(2751), 1, sym_expression, - STATE(5741), 1, + STATE(5575), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163542,7 +165188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163563,198 +165209,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50352] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3605), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, + [49405] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1418), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, + ACTIONS(1422), 1, anon_sym_LT, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, sym_float, - ACTIONS(3603), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + ACTIONS(3475), 1, anon_sym_not, + ACTIONS(3477), 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(3479), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [50421] = 3, + STATE(2197), 1, + sym_primary_expression, + STATE(2410), 1, + sym_string, + STATE(2703), 1, + sym_list_splat_pattern, + STATE(2752), 1, + sym_expression, + STATE(5575), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3609), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1430), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1416), 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(3607), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1599), 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, - [50490] = 26, - ACTIONS(1382), 1, + STATE(2712), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2710), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [49520] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(3065), 1, sym_identifier, - STATE(2168), 1, + ACTIONS(3475), 1, + anon_sym_not, + ACTIONS(3477), 1, + anon_sym_lambda, + ACTIONS(3479), 1, + anon_sym_new, + STATE(2197), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2410), 1, sym_string, - STATE(2693), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4264), 1, + STATE(2753), 1, sym_expression, - STATE(5483), 1, + STATE(5575), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163763,7 +165366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163784,132 +165387,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50605] = 3, + [49635] = 26, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_LBRACE, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1426), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, + sym_float, + ACTIONS(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(1601), 1, + anon_sym_await, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + ACTIONS(3475), 1, + anon_sym_not, + ACTIONS(3477), 1, + anon_sym_lambda, + ACTIONS(3479), 1, + anon_sym_new, + STATE(2197), 1, + sym_primary_expression, + STATE(2410), 1, + sym_string, + STATE(2703), 1, + sym_list_splat_pattern, + STATE(2757), 1, + sym_expression, + STATE(5575), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1430), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1416), 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(3611), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1599), 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, - [50674] = 26, - ACTIONS(1382), 1, + STATE(2712), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2710), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [49750] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(3065), 1, sym_identifier, - STATE(2168), 1, + ACTIONS(3475), 1, + anon_sym_not, + ACTIONS(3477), 1, + anon_sym_lambda, + ACTIONS(3479), 1, + anon_sym_new, + STATE(2197), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2410), 1, sym_string, - STATE(2693), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4268), 1, + STATE(2754), 1, sym_expression, - STATE(5483), 1, + STATE(5575), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163918,7 +165544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163939,66 +165565,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50789] = 26, - ACTIONS(1382), 1, + [49865] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(3065), 1, sym_identifier, - STATE(2168), 1, + ACTIONS(3475), 1, + anon_sym_not, + ACTIONS(3477), 1, + anon_sym_lambda, + ACTIONS(3479), 1, + anon_sym_new, + STATE(2197), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2410), 1, sym_string, - STATE(2693), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4273), 1, + STATE(2755), 1, sym_expression, - STATE(5483), 1, + STATE(5575), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164007,7 +165633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164028,66 +165654,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50904] = 26, - ACTIONS(1382), 1, + [49980] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(3065), 1, sym_identifier, - STATE(2168), 1, + ACTIONS(3475), 1, + anon_sym_not, + ACTIONS(3477), 1, + anon_sym_lambda, + ACTIONS(3479), 1, + anon_sym_new, + STATE(2197), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2410), 1, sym_string, - STATE(2660), 1, - sym_expression, - STATE(2693), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(5483), 1, + STATE(2756), 1, + sym_expression, + STATE(5575), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164096,7 +165722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164117,66 +165743,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51019] = 26, - ACTIONS(1382), 1, + [50095] = 26, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2521), 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(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(3001), 1, sym_identifier, - STATE(2168), 1, + ACTIONS(3141), 1, + anon_sym_STAR, + ACTIONS(3481), 1, + anon_sym_not, + ACTIONS(3483), 1, + anon_sym_lambda, + ACTIONS(3485), 1, + anon_sym_new, + STATE(2195), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2292), 1, sym_string, - STATE(2693), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4276), 1, + STATE(2687), 1, sym_expression, - STATE(5483), 1, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164185,7 +165811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164206,66 +165832,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51134] = 26, - ACTIONS(2009), 1, + [50210] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(2675), 1, + ACTIONS(3481), 1, anon_sym_not, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2679), 1, + ACTIONS(3483), 1, anon_sym_lambda, - ACTIONS(2685), 1, + ACTIONS(3485), 1, anon_sym_new, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - STATE(2046), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2292), 1, sym_string, - STATE(2270), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(3808), 1, + STATE(2688), 1, sym_expression, - STATE(5543), 1, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164274,7 +165900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164295,69 +165921,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51249] = 27, - ACTIONS(2009), 1, + [50325] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(3011), 1, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, + anon_sym_STAR, + ACTIONS(3481), 1, anon_sym_not, - ACTIONS(3013), 1, + ACTIONS(3483), 1, anon_sym_lambda, - ACTIONS(3015), 1, + ACTIONS(3485), 1, anon_sym_new, - ACTIONS(3573), 1, - anon_sym_await, - ACTIONS(3631), 1, - sym_identifier, - STATE(2046), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2292), 1, sym_string, - STATE(2270), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4244), 1, + STATE(2689), 1, sym_expression, - STATE(5685), 1, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2654), 2, - sym_attribute, - sym_subscript, - ACTIONS(2007), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3633), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164366,9 +165989,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 18, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -164385,66 +166010,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51366] = 26, - ACTIONS(1382), 1, + [50440] = 26, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3557), 1, + ACTIONS(3141), 1, + anon_sym_STAR, + ACTIONS(3481), 1, anon_sym_not, - ACTIONS(3559), 1, + ACTIONS(3483), 1, anon_sym_lambda, - ACTIONS(3561), 1, + ACTIONS(3485), 1, anon_sym_new, - STATE(2149), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2292), 1, sym_string, - STATE(2693), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(2725), 1, + STATE(2693), 1, sym_expression, - STATE(5507), 1, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164453,7 +166078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164474,66 +166099,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51481] = 26, - ACTIONS(1382), 1, + [50555] = 26, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2521), 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(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(3001), 1, sym_identifier, - STATE(2168), 1, + ACTIONS(3141), 1, + anon_sym_STAR, + ACTIONS(3481), 1, + anon_sym_not, + ACTIONS(3483), 1, + anon_sym_lambda, + ACTIONS(3485), 1, + anon_sym_new, + STATE(2195), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2292), 1, sym_string, - STATE(2693), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4282), 1, + STATE(2690), 1, sym_expression, - STATE(5483), 1, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164542,7 +166167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164563,198 +166188,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51596] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3403), 14, - sym_string_start, - ts_builtin_sym_end, + [50670] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2517), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2521), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 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(2533), 1, + anon_sym_sizeof, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, + anon_sym_STAR, + ACTIONS(3481), 1, anon_sym_not, + ACTIONS(3483), 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(3485), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [51665] = 3, + STATE(2195), 1, + sym_primary_expression, + STATE(2292), 1, + sym_string, + STATE(2642), 1, + sym_list_splat_pattern, + STATE(2691), 1, + sym_expression, + STATE(5588), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3637), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2509), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2519), 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(3635), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2673), 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, - [51734] = 26, - ACTIONS(1382), 1, + STATE(2648), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2647), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [50785] = 26, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3557), 1, + ACTIONS(3141), 1, + anon_sym_STAR, + ACTIONS(3481), 1, anon_sym_not, - ACTIONS(3559), 1, + ACTIONS(3483), 1, anon_sym_lambda, - ACTIONS(3561), 1, + ACTIONS(3485), 1, anon_sym_new, - STATE(2149), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2292), 1, sym_string, - STATE(2674), 1, - sym_expression, - STATE(2693), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(5507), 1, + STATE(2692), 1, + sym_expression, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164763,7 +166345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164784,13 +166366,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51849] = 3, + [50900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3641), 14, - sym__dedent, + ACTIONS(3611), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -164803,7 +166385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3639), 46, + ACTIONS(3609), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -164850,66 +166432,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [51918] = 26, - ACTIONS(1382), 1, + [50969] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1404), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - STATE(2168), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2143), 1, sym_string, - STATE(2693), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4260), 1, + STATE(3139), 1, sym_expression, - STATE(5483), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164918,7 +166500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164939,34 +166521,124 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52033] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3645), 14, - sym__dedent, - sym_string_start, + [51084] = 27, + ACTIONS(1975), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1981), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1985), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(1991), 1, + anon_sym_None, + ACTIONS(1993), 1, sym_float, - ACTIONS(3643), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, + ACTIONS(1997), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + sym_string_start, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + ACTIONS(3727), 1, + sym_identifier, + ACTIONS(3731), 1, + anon_sym_await, + STATE(2153), 1, + sym_string, + STATE(2220), 1, + sym_primary_expression, + STATE(2421), 1, + sym_list_splat_pattern, + STATE(4335), 1, + sym_expression, + STATE(5757), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2381), 2, + sym_attribute, + sym_subscript, + ACTIONS(1973), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1983), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(3729), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 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, + [51201] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3615), 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(3613), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, anon_sym_pass, anon_sym_break, anon_sym_continue, @@ -165005,13 +166677,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [52102] = 3, + [51270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3649), 14, - sym__dedent, + ACTIONS(3387), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -165024,7 +166696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3647), 46, + ACTIONS(3389), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -165071,66 +166743,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [52171] = 26, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [51339] = 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(2647), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + ACTIONS(3509), 1, anon_sym_not, - ACTIONS(2649), 1, - anon_sym_LT, - ACTIONS(2651), 1, + ACTIONS(3511), 1, anon_sym_lambda, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(3513), 1, anon_sym_new, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - STATE(2127), 1, + STATE(2093), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2100), 1, sym_string, - STATE(2608), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3864), 1, + STATE(2187), 1, sym_expression, - STATE(5641), 1, + STATE(5614), 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(2641), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2196), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165139,7 +166811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165160,13 +166832,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52286] = 3, + [51454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3653), 14, - sym__dedent, + ACTIONS(3623), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -165179,7 +166851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3651), 46, + ACTIONS(3621), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -165226,422 +166898,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [52355] = 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(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(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - STATE(2127), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(3838), 1, - sym_expression, - STATE(5641), 1, - sym__named_expression_lhs, + [51523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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(2641), 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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [52470] = 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, + ACTIONS(3627), 14, 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(3033), 1, - sym_identifier, - ACTIONS(3065), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - STATE(2127), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(3842), 1, - sym_expression, - STATE(5641), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, 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(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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [52585] = 26, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, - anon_sym_LBRACE, - ACTIONS(2493), 1, + 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(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(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - STATE(2127), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(2620), 1, - sym_expression, - STATE(5641), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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(2641), 5, + ACTIONS(3625), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [52700] = 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(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - STATE(2168), 1, - sym_primary_expression, - STATE(2239), 1, - sym_string, - STATE(2693), 1, - sym_list_splat_pattern, - STATE(2702), 1, - sym_expression, - STATE(5483), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1398), 3, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1384), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1567), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2657), 8, - 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, - [52815] = 26, - ACTIONS(2479), 1, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [51592] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2647), 1, - anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2651), 1, - anon_sym_lambda, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(2655), 1, - anon_sym_new, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2127), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2143), 1, sym_string, - STATE(2608), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3845), 1, + STATE(4309), 1, sym_expression, - STATE(5641), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165650,7 +167032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165671,244 +167053,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52930] = 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(2649), 1, - anon_sym_LT, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - ACTIONS(3563), 1, - anon_sym_not, - ACTIONS(3565), 1, - anon_sym_lambda, - ACTIONS(3567), 1, - anon_sym_new, - STATE(2112), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2577), 1, - sym_expression, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(5520), 1, - sym__named_expression_lhs, + [51707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, + ACTIONS(3533), 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(2641), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3531), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [53045] = 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(2647), 1, + anon_sym_type, + anon_sym_class, 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(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - STATE(2127), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(3825), 1, - sym_expression, - STATE(5641), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2477), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2487), 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(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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [53160] = 26, - ACTIONS(2377), 1, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [51776] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(2559), 1, + ACTIONS(2587), 1, anon_sym_not, - ACTIONS(2561), 1, + ACTIONS(2589), 1, anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(2591), 1, anon_sym_lambda, - ACTIONS(2567), 1, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(2569), 1, + ACTIONS(2597), 1, anon_sym_new, - ACTIONS(2935), 1, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2047), 1, + STATE(2119), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2193), 1, sym_string, - STATE(2288), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(3914), 1, + STATE(4159), 1, sym_expression, - STATE(5531), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165917,7 +167187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165938,369 +167208,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53275] = 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(2649), 1, - anon_sym_LT, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - ACTIONS(3563), 1, - anon_sym_not, - ACTIONS(3565), 1, - anon_sym_lambda, - ACTIONS(3567), 1, - anon_sym_new, - STATE(2112), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2582), 1, - sym_expression, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(5520), 1, - sym__named_expression_lhs, + [51891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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(2641), 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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [53390] = 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, + ACTIONS(3733), 14, 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(3033), 1, - sym_identifier, - ACTIONS(3065), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - STATE(2127), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(3850), 1, - sym_expression, - STATE(5641), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, 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(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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [53505] = 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(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - ACTIONS(3655), 1, - anon_sym_not, - ACTIONS(3657), 1, - anon_sym_lambda, - ACTIONS(3659), 1, - anon_sym_new, - STATE(2031), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2102), 1, - sym_expression, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(5548), 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(944), 5, + ACTIONS(3735), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_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(2077), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [53620] = 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(2647), 1, + anon_sym_type, + anon_sym_class, 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(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - STATE(2127), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(2610), 1, - sym_expression, - STATE(5641), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2477), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2487), 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(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(2603), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [53735] = 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, + [51960] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3663), 14, - sym__dedent, + ACTIONS(3737), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -166313,7 +167293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3661), 46, + ACTIONS(3739), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -166360,13 +167340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [53804] = 3, + [52029] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3667), 14, - sym__dedent, + ACTIONS(3741), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -166379,7 +167359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3665), 46, + ACTIONS(3743), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -166426,13 +167406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [53873] = 3, + [52098] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3671), 14, - sym__dedent, + ACTIONS(3745), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -166445,7 +167425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3669), 46, + ACTIONS(3747), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -166492,13 +167472,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [53942] = 3, + [52167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3675), 14, - sym__dedent, + ACTIONS(3749), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -166511,7 +167491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3673), 46, + ACTIONS(3751), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -166558,46 +167538,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [54011] = 26, + [52236] = 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(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3655), 1, - anon_sym_not, - ACTIONS(3657), 1, - anon_sym_lambda, - ACTIONS(3659), 1, - anon_sym_new, - STATE(2031), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2109), 1, - sym_expression, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5548), 1, + STATE(3964), 1, + sym_expression, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -166611,13 +167591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2077), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166626,7 +167606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166647,66 +167627,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54126] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [52351] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4336), 1, + STATE(3485), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166715,7 +167695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166736,46 +167716,46 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54241] = 26, + [52466] = 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(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3655), 1, - anon_sym_not, - ACTIONS(3657), 1, - anon_sym_lambda, - ACTIONS(3659), 1, - anon_sym_new, - STATE(2031), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2078), 1, - sym_expression, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5548), 1, + STATE(4236), 1, + sym_expression, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -166789,13 +167769,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2077), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166804,7 +167784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166825,13 +167805,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54356] = 3, + [52581] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3637), 14, + ACTIONS(3733), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -166844,7 +167824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3635), 46, + ACTIONS(3735), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -166891,191 +167871,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [54425] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4186), 1, - sym_expression, - STATE(5741), 1, - sym__named_expression_lhs, + [52650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, + ACTIONS(3737), 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(3739), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [54540] = 26, - 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(1334), 1, anon_sym_lambda, - ACTIONS(1338), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + 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(2437), 1, - anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, - anon_sym_STAR, - STATE(2066), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2403), 1, - sym_list_splat_pattern, - STATE(2485), 1, - sym_expression, - STATE(5743), 1, - sym__named_expression_lhs, + [52719] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1342), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1326), 4, + ACTIONS(3753), 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(1470), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3755), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2456), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2455), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [54655] = 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, + [52788] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3641), 14, + ACTIONS(3741), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -167088,7 +168022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3639), 46, + ACTIONS(3743), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -167135,103 +168069,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [54724] = 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(2647), 1, - anon_sym_not, - ACTIONS(2649), 1, - anon_sym_LT, - ACTIONS(2651), 1, - anon_sym_lambda, - ACTIONS(2655), 1, - anon_sym_new, - ACTIONS(3065), 1, - anon_sym_STAR, - ACTIONS(3629), 1, - anon_sym_await, - ACTIONS(3677), 1, - sym_identifier, - STATE(2173), 1, - sym_primary_expression, - STATE(2220), 1, - sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(4198), 1, - sym_expression, - STATE(5641), 1, - sym__named_expression_lhs, + [52857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2395), 2, - sym_attribute, - sym_subscript, - ACTIONS(2477), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2487), 4, + ACTIONS(3745), 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(3679), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3747), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2603), 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, - [54841] = 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, + [52926] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3593), 14, + ACTIONS(3749), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -167244,7 +168154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3591), 46, + ACTIONS(3751), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -167291,66 +168201,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [54910] = 26, - ACTIONS(1328), 1, + [52995] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, + ACTIONS(69), 1, + anon_sym_not, + 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(809), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2437), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(2797), 1, - sym_identifier, - ACTIONS(2983), 1, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3511), 1, - anon_sym_not, - ACTIONS(3513), 1, - anon_sym_lambda, - ACTIONS(3515), 1, - anon_sym_new, - STATE(2067), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2100), 1, sym_string, - STATE(2403), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(2485), 1, + STATE(4105), 1, sym_expression, - STATE(5737), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2456), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167359,7 +168269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2455), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167380,11 +168290,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55025] = 3, + [53110] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3683), 14, + ACTIONS(3753), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -167399,7 +168309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3681), 46, + ACTIONS(3755), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -167446,102 +168356,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [55094] = 26, - ACTIONS(1382), 1, + [53179] = 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, - 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_lambda, - ACTIONS(1394), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, - anon_sym_None, - ACTIONS(1400), 1, sym_float, - ACTIONS(1404), 1, + 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, - ACTIONS(1406), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - STATE(2168), 1, - sym_primary_expression, - STATE(2239), 1, - sym_string, - STATE(2693), 1, - sym_list_splat_pattern, - STATE(4204), 1, - sym_expression, - STATE(5483), 1, - sym__named_expression_lhs, + [53248] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1384), 4, + ACTIONS(3647), 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(1567), 5, + 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, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, anon_sym_api, - STATE(2657), 8, - 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, - [55209] = 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, + [53317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3687), 14, - sym__dedent, + ACTIONS(2479), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -167554,7 +168507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3685), 46, + ACTIONS(2477), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -167601,46 +168554,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [55278] = 26, + [53386] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4483), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [53501] = 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(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3655), 1, - anon_sym_not, - ACTIONS(3657), 1, - anon_sym_lambda, - ACTIONS(3659), 1, - anon_sym_new, - STATE(2031), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2079), 1, - sym_expression, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5548), 1, + STATE(4232), 1, + sym_expression, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -167654,13 +168696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2077), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167669,7 +168711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167690,112 +168732,46 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55393] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3645), 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(3643), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [55462] = 26, + [53616] = 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(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3655), 1, - anon_sym_not, - ACTIONS(3657), 1, - anon_sym_lambda, - ACTIONS(3659), 1, - anon_sym_new, - STATE(2031), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2081), 1, - sym_expression, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5548), 1, + STATE(4097), 1, + sym_expression, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -167809,13 +168785,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2077), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167824,7 +168800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167845,66 +168821,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55577] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [53731] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 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(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3497), 1, - anon_sym_not, - ACTIONS(3499), 1, - anon_sym_lambda, - ACTIONS(3501), 1, - anon_sym_new, - STATE(2147), 1, - sym_string, - STATE(2264), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2100), 1, + sym_string, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3093), 1, + STATE(4098), 1, sym_expression, - STATE(5506), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167913,7 +168889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167934,46 +168910,178 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55692] = 26, + [53846] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2431), 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(2429), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2435), 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(2433), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [53984] = 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(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3655), 1, - anon_sym_not, - ACTIONS(3657), 1, - anon_sym_lambda, - ACTIONS(3659), 1, - anon_sym_new, - STATE(2031), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2082), 1, - sym_expression, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5548), 1, + STATE(4259), 1, + sym_expression, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -167987,13 +169095,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2077), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168002,7 +169110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168023,46 +169131,46 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55807] = 26, + [54099] = 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(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3655), 1, - anon_sym_not, - ACTIONS(3657), 1, - anon_sym_lambda, - ACTIONS(3659), 1, - anon_sym_new, - STATE(2031), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2083), 1, - sym_expression, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5548), 1, + STATE(4003), 1, + sym_expression, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -168076,13 +169184,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2077), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168091,7 +169199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168112,46 +169220,46 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55922] = 26, + [54214] = 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(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3655), 1, - anon_sym_not, - ACTIONS(3657), 1, - anon_sym_lambda, - ACTIONS(3659), 1, - anon_sym_new, - STATE(2031), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2084), 1, - sym_expression, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5548), 1, + STATE(3515), 1, + sym_expression, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -168165,13 +169273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2077), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168180,7 +169288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168201,13 +169309,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56037] = 3, + [54329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3649), 14, + ACTIONS(3759), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -168220,7 +169328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3647), 46, + ACTIONS(3757), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -168267,13 +169375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [56106] = 3, + [54398] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3653), 14, + ACTIONS(3763), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -168286,7 +169394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3651), 46, + ACTIONS(3761), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -168333,13 +169441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [56175] = 3, + [54467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2429), 14, + ACTIONS(3767), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -168352,7 +169460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2427), 46, + ACTIONS(3765), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -168399,66 +169507,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [56244] = 26, - ACTIONS(1382), 1, + [54536] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(1392), 1, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1404), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(1569), 1, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(3065), 1, sym_identifier, - ACTIONS(3689), 1, - anon_sym_STAR, - STATE(2168), 1, + STATE(2221), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2410), 1, sym_string, - STATE(2693), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4164), 1, + STATE(4349), 1, sym_expression, - STATE(5483), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168467,7 +169575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168488,66 +169596,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56359] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [54651] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 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(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3533), 1, - anon_sym_not, - ACTIONS(3535), 1, - anon_sym_lambda, - ACTIONS(3537), 1, - anon_sym_new, - STATE(2070), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2414), 1, - sym_expression, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5749), 1, + STATE(4113), 1, + sym_expression, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2409), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168556,7 +169664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168577,66 +169685,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56474] = 26, - ACTIONS(67), 1, + [54766] = 26, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2410), 1, sym_string, - STATE(2110), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4170), 1, + STATE(4351), 1, sym_expression, - STATE(5736), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168645,7 +169753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168666,66 +169774,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56589] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, + [54881] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2023), 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(2025), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(3011), 1, - anon_sym_not, - ACTIONS(3013), 1, - anon_sym_lambda, - ACTIONS(3015), 1, - anon_sym_new, - STATE(2046), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2100), 1, sym_string, - STATE(2270), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4284), 1, + STATE(4299), 1, sym_expression, - STATE(5685), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168734,7 +169842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168755,66 +169863,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56704] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [54996] = 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(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - STATE(2168), 1, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2100), 1, sym_string, - STATE(2693), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4168), 1, + STATE(4173), 1, sym_expression, - STATE(5483), 1, + STATE(5657), 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(1567), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168823,7 +169931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168844,66 +169952,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56819] = 26, - ACTIONS(67), 1, + [55111] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3655), 1, - anon_sym_not, - ACTIONS(3657), 1, - anon_sym_lambda, - ACTIONS(3659), 1, - anon_sym_new, - STATE(2031), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2085), 1, - sym_expression, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(5548), 1, + STATE(4421), 1, + sym_expression, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2077), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168912,7 +170020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168933,66 +170041,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56934] = 26, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [55226] = 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(2535), 1, - anon_sym_LT, - ACTIONS(2809), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2817), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2943), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3539), 1, - anon_sym_not, - ACTIONS(3541), 1, - anon_sym_lambda, - ACTIONS(3543), 1, - anon_sym_new, - STATE(2065), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2100), 1, sym_string, - STATE(2479), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(2535), 1, + STATE(4045), 1, sym_expression, - STATE(5449), 1, + STATE(5657), 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(2813), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2527), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169001,7 +170109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2526), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169022,66 +170130,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57049] = 26, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, + [55341] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2391), 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(2393), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2399), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2545), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2567), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2935), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3545), 1, - anon_sym_not, - ACTIONS(3547), 1, - anon_sym_lambda, - ACTIONS(3549), 1, - anon_sym_new, - STATE(2051), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2073), 1, + STATE(2100), 1, sym_string, - STATE(2288), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(2341), 1, + STATE(4192), 1, sym_expression, - STATE(5479), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2553), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2388), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169090,7 +170198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2386), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169111,66 +170219,330 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57164] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [55456] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3759), 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(3757), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + 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, + [55525] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3763), 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, - ACTIONS(1235), 1, + sym_float, + ACTIONS(3761), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + 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(1239), 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, + [55594] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3771), 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(1241), 1, + ACTIONS(3769), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_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(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, + [55663] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3767), 14, sym_string_start, - ACTIONS(2741), 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(3025), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3765), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [55732] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(1989), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1991), 1, + anon_sym_None, + ACTIONS(1993), 1, + sym_float, + ACTIONS(1997), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + sym_string_start, + ACTIONS(2697), 1, anon_sym_STAR, - STATE(2068), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2963), 1, + anon_sym_await, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + STATE(2117), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2153), 1, sym_string, - STATE(2451), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(4285), 1, + STATE(4306), 1, sym_expression, - STATE(5741), 1, + STATE(5757), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3906), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169179,7 +170551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169200,66 +170572,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57279] = 26, - ACTIONS(2009), 1, + [55847] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2427), 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(2425), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [55916] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - ACTIONS(3551), 1, + ACTIONS(2587), 1, anon_sym_not, - ACTIONS(3553), 1, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2591), 1, anon_sym_lambda, - ACTIONS(3555), 1, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(2597), 1, anon_sym_new, - STATE(2049), 1, + ACTIONS(3076), 1, + anon_sym_STAR, + STATE(2119), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2193), 1, sym_string, - STATE(2270), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(2300), 1, + STATE(3967), 1, sym_expression, - STATE(5495), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2299), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169268,7 +170706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169289,7 +170727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57394] = 26, + [56031] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -169310,25 +170748,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3470), 1, + STATE(4079), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -169342,13 +170780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169357,7 +170795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169378,66 +170816,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57509] = 26, - ACTIONS(1382), 1, + [56146] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_not, - ACTIONS(3559), 1, - anon_sym_lambda, - ACTIONS(3561), 1, - anon_sym_new, - STATE(2149), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2143), 1, sym_string, - STATE(2693), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(2702), 1, + STATE(4417), 1, sym_expression, - STATE(5507), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169446,7 +170884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169467,132 +170905,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57624] = 3, - 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, - anon_sym_DASH, + [56261] = 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(3661), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [57693] = 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, + 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(2649), 1, - anon_sym_LT, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3563), 1, + ACTIONS(3509), 1, anon_sym_not, - ACTIONS(3565), 1, + ACTIONS(3511), 1, anon_sym_lambda, - ACTIONS(3567), 1, + ACTIONS(3513), 1, anon_sym_new, - STATE(2112), 1, + STATE(2093), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2100), 1, sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(2610), 1, + STATE(2146), 1, sym_expression, - STATE(5520), 1, + STATE(2166), 1, + sym_list_splat_pattern, + STATE(5614), 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(2641), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2196), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169601,7 +170973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169622,11 +170994,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57808] = 3, + [56376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3667), 14, + ACTIONS(3537), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -169641,7 +171013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3665), 46, + ACTIONS(3535), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -169688,100 +171060,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [57877] = 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(2533), 1, - anon_sym_not, - ACTIONS(2535), 1, - anon_sym_LT, - ACTIONS(2537), 1, - anon_sym_lambda, - ACTIONS(2543), 1, - anon_sym_new, - ACTIONS(2809), 1, - sym_identifier, - ACTIONS(2817), 1, - anon_sym_await, - ACTIONS(2943), 1, - anon_sym_STAR, - STATE(2072), 1, - sym_primary_expression, - STATE(2166), 1, - sym_string, - STATE(2479), 1, - sym_list_splat_pattern, - STATE(4035), 1, - sym_expression, - STATE(5590), 1, - sym__named_expression_lhs, + [56445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2459), 4, + ACTIONS(3541), 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(2813), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3539), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2527), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2526), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [57992] = 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, + [56514] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3691), 14, + ACTIONS(3545), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -169796,7 +171145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3693), 46, + ACTIONS(3543), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -169843,11 +171192,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [58061] = 3, + [56583] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3671), 14, + ACTIONS(3549), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -169862,7 +171211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3669), 46, + ACTIONS(3547), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -169909,66 +171258,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [58130] = 26, - ACTIONS(67), 1, + [56652] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 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(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2963), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + STATE(2117), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2153), 1, sym_string, - STATE(2110), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3443), 1, + STATE(4252), 1, sym_expression, - STATE(5736), 1, + STATE(5757), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3906), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169977,7 +171326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169998,66 +171347,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58245] = 26, - ACTIONS(1211), 1, + [56767] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2068), 1, + ACTIONS(3721), 1, + anon_sym_not, + ACTIONS(3723), 1, + anon_sym_lambda, + ACTIONS(3725), 1, + anon_sym_new, + STATE(2111), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4473), 1, + STATE(2427), 1, sym_expression, - STATE(5741), 1, + STATE(5771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2422), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170066,7 +171415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170087,132 +171436,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58360] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3675), 14, - sym_string_start, - ts_builtin_sym_end, + [56882] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1251), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1255), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1265), 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, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(1267), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 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(1277), 1, anon_sym_sizeof, - [58429] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2977), 1, + anon_sym_STAR, + ACTIONS(3721), 1, + anon_sym_not, + ACTIONS(3723), 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(3725), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, + STATE(2111), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4040), 1, + STATE(2429), 1, sym_expression, - STATE(5736), 1, + STATE(5771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2422), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170221,7 +171504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170242,66 +171525,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58544] = 26, - ACTIONS(67), 1, + [56997] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 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(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3721), 1, + anon_sym_not, + ACTIONS(3723), 1, + anon_sym_lambda, + ACTIONS(3725), 1, + anon_sym_new, + STATE(2111), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4362), 1, + STATE(2430), 1, sym_expression, - STATE(5736), 1, + STATE(5771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2422), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170310,7 +171593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170331,66 +171614,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58659] = 26, - ACTIONS(67), 1, + [57112] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 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(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3721), 1, + anon_sym_not, + ACTIONS(3723), 1, + anon_sym_lambda, + ACTIONS(3725), 1, + anon_sym_new, + STATE(2111), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3987), 1, + STATE(2431), 1, sym_expression, - STATE(5736), 1, + STATE(5771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2422), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170399,7 +171682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170420,66 +171703,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58774] = 26, - ACTIONS(67), 1, + [57227] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 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(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3721), 1, + anon_sym_not, + ACTIONS(3723), 1, + anon_sym_lambda, + ACTIONS(3725), 1, + anon_sym_new, + STATE(2111), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3889), 1, + STATE(2432), 1, sym_expression, - STATE(5736), 1, + STATE(5771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2422), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170488,7 +171771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170509,66 +171792,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58889] = 26, - ACTIONS(67), 1, + [57342] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 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(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3721), 1, + anon_sym_not, + ACTIONS(3723), 1, + anon_sym_lambda, + ACTIONS(3725), 1, + anon_sym_new, + STATE(2111), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4355), 1, + STATE(2433), 1, sym_expression, - STATE(5736), 1, + STATE(5771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2422), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170577,7 +171860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170598,66 +171881,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59004] = 26, - ACTIONS(67), 1, + [57457] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 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(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3721), 1, + anon_sym_not, + ACTIONS(3723), 1, + anon_sym_lambda, + ACTIONS(3725), 1, + anon_sym_new, + STATE(2111), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4068), 1, + STATE(2434), 1, sym_expression, - STATE(5736), 1, + STATE(5771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2422), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170666,7 +171949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170687,66 +171970,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59119] = 26, - ACTIONS(67), 1, + [57572] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4069), 1, + STATE(3840), 1, sym_expression, - STATE(5736), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170755,7 +172038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170776,66 +172059,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59234] = 26, - ACTIONS(2479), 1, + [57687] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2647), 1, - anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2651), 1, - anon_sym_lambda, - ACTIONS(2653), 1, - anon_sym_await, - ACTIONS(2655), 1, - anon_sym_new, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2127), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2143), 1, sym_string, - STATE(2608), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4107), 1, + STATE(4274), 1, sym_expression, - STATE(5641), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170844,7 +172127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170865,66 +172148,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59349] = 26, - ACTIONS(67), 1, + [57802] = 26, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2493), 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(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2559), 1, + anon_sym_not, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(2563), 1, + anon_sym_lambda, + ACTIONS(2569), 1, + anon_sym_new, + ACTIONS(2841), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2849), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2127), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2229), 1, sym_string, - STATE(2110), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(4114), 1, + STATE(2632), 1, sym_expression, - STATE(5736), 1, + STATE(5737), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170933,7 +172216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170954,66 +172237,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59464] = 26, - ACTIONS(67), 1, + [57917] = 27, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(1597), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, + anon_sym_await, + ACTIONS(3773), 1, + sym_identifier, + STATE(2221), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2410), 1, sym_string, - STATE(2110), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4115), 1, + STATE(4267), 1, sym_expression, - STATE(5736), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + STATE(2746), 2, + sym_attribute, + sym_subscript, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(3775), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171022,11 +172308,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2710), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -171043,66 +172327,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59579] = 26, - ACTIONS(67), 1, + [58034] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3667), 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, + 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, - ACTIONS(105), 1, + 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(929), 1, + [58103] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3999), 1, + STATE(3845), 1, sym_expression, - STATE(5736), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171111,7 +172461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171132,66 +172482,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59694] = 26, - ACTIONS(67), 1, + [58218] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4003), 1, + STATE(3848), 1, sym_expression, - STATE(5736), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171200,7 +172550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171221,66 +172571,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59809] = 26, - ACTIONS(67), 1, + [58333] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4010), 1, + STATE(3143), 1, sym_expression, - STATE(5736), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171289,7 +172639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171310,66 +172660,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59924] = 26, - ACTIONS(67), 1, + [58448] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4091), 1, + STATE(3854), 1, sym_expression, - STATE(5736), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171378,7 +172728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171399,66 +172749,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60039] = 26, - ACTIONS(67), 1, + [58563] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4101), 1, + STATE(4444), 1, sym_expression, - STATE(5736), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171467,7 +172817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171488,66 +172838,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60154] = 26, - ACTIONS(67), 1, + [58678] = 26, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2449), 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(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2573), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2587), 1, + anon_sym_not, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(2591), 1, + anon_sym_lambda, + ACTIONS(2595), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2597), 1, + anon_sym_new, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2119), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2193), 1, sym_string, - STATE(2110), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(4111), 1, + STATE(2487), 1, sym_expression, - STATE(5736), 1, + STATE(5491), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171556,7 +172906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171577,66 +172927,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60269] = 26, - ACTIONS(67), 1, + [58793] = 27, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 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(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3491), 1, + anon_sym_await, + ACTIONS(3777), 1, + sym_identifier, + STATE(2177), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2292), 1, sym_string, - STATE(2110), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4143), 1, + STATE(4308), 1, sym_expression, - STATE(5736), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + STATE(2747), 2, + sym_attribute, + sym_subscript, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(3779), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171645,11 +172998,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2647), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -171666,66 +173017,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60384] = 26, - ACTIONS(67), 1, + [58910] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4147), 1, + STATE(4283), 1, sym_expression, - STATE(5736), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171734,7 +173085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171755,66 +173106,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60499] = 26, - ACTIONS(67), 1, + [59025] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3671), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(73), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(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, - 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, + [59094] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2703), 1, + anon_sym_not, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2707), 1, + anon_sym_lambda, + ACTIONS(2713), 1, + anon_sym_new, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2963), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, + STATE(2117), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2153), 1, sym_string, - STATE(2110), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3995), 1, + STATE(3924), 1, sym_expression, - STATE(5736), 1, + STATE(5700), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3906), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171823,7 +173240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171844,7 +173261,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60614] = 26, + [59209] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3553), 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(3551), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [59278] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -171865,25 +173348,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3998), 1, + STATE(3537), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -171897,13 +173380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171912,7 +173395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171933,66 +173416,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60729] = 26, - ACTIONS(67), 1, + [59393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3781), 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, + ACTIONS(3783), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, - ACTIONS(105), 1, + 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(929), 1, + [59462] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, + ACTIONS(3715), 1, + anon_sym_not, + ACTIONS(3717), 1, + anon_sym_lambda, + ACTIONS(3719), 1, + anon_sym_new, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4006), 1, + STATE(2413), 1, + sym_primary_expression, + STATE(3207), 1, sym_expression, - STATE(5736), 1, + STATE(5593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172001,7 +173550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172022,75 +173571,72 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60844] = 26, - ACTIONS(67), 1, + [59577] = 23, + ACTIONS(847), 1, + anon_sym_COMMA, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 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(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(1334), 1, anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1344), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4007), 1, - sym_expression, - STATE(5736), 1, - sym__named_expression_lhs, + STATE(3290), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(813), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(833), 2, + anon_sym_from, + anon_sym_in, + ACTIONS(1269), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, + ACTIONS(811), 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(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172111,66 +173657,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60959] = 26, - ACTIONS(67), 1, + [59686] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4011), 1, + STATE(3835), 1, sym_expression, - STATE(5736), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172179,7 +173725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172200,13 +173746,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61074] = 3, + [59801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3461), 14, - sym__dedent, + ACTIONS(3675), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -172219,7 +173765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3463), 46, + ACTIONS(3673), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -172266,102 +173812,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [61143] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(4386), 1, - sym_expression, - STATE(5741), 1, - sym__named_expression_lhs, + [59870] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1227), 4, + ACTIONS(3557), 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(1217), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3555), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [61258] = 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, + [59939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3465), 14, - sym__dedent, + ACTIONS(3679), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -172374,7 +173897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3467), 46, + ACTIONS(3677), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -172421,66 +173944,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [61327] = 26, - ACTIONS(67), 1, + [60008] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 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(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2703), 1, + anon_sym_not, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2707), 1, + anon_sym_lambda, + ACTIONS(2713), 1, + anon_sym_new, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2963), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, + STATE(2117), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2153), 1, sym_string, - STATE(2110), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(4027), 1, + STATE(3926), 1, sym_expression, - STATE(5736), 1, + STATE(5700), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3906), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172489,7 +174012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172510,66 +174033,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61442] = 26, - ACTIONS(67), 1, + [60123] = 27, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 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(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2697), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + ACTIONS(3731), 1, + anon_sym_await, + ACTIONS(3785), 1, + sym_identifier, + STATE(2117), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2153), 1, sym_string, - STATE(2110), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(4059), 1, + STATE(4335), 1, sym_expression, - STATE(5736), 1, + STATE(5757), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + STATE(2748), 2, + sym_attribute, + sym_subscript, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(3787), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3906), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172578,11 +174104,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2347), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -172599,7 +174123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61557] = 26, + [60240] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172620,25 +174144,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4060), 1, + STATE(4375), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -172652,13 +174176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172667,7 +174191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172688,66 +174212,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61672] = 26, - ACTIONS(2479), 1, + [60355] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3683), 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(2647), 1, + 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, - ACTIONS(2649), 1, - anon_sym_LT, - ACTIONS(2651), 1, anon_sym_lambda, - ACTIONS(2653), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2655), 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(3033), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [60424] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2127), 1, - sym_primary_expression, - STATE(2220), 1, + ACTIONS(3715), 1, + anon_sym_not, + ACTIONS(3717), 1, + anon_sym_lambda, + ACTIONS(3719), 1, + anon_sym_new, + STATE(2143), 1, sym_string, - STATE(2608), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4152), 1, + STATE(2413), 1, + sym_primary_expression, + STATE(3204), 1, sym_expression, - STATE(5641), 1, + STATE(5593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172756,7 +174346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172777,7 +174367,73 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61787] = 26, + [60539] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3687), 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(3685), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [60608] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172798,25 +174454,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4077), 1, + STATE(3543), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -172830,13 +174486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172845,7 +174501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172866,96 +174522,139 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61902] = 26, - ACTIONS(67), 1, + [60723] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3771), 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(929), 1, + ACTIONS(3769), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_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(969), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(4078), 1, - sym_expression, - STATE(5736), 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, + [60792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3561), 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(944), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3559), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_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, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [60861] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -172976,25 +174675,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4093), 1, + STATE(4225), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -173008,13 +174707,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173023,7 +174722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173044,66 +174743,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62132] = 26, - ACTIONS(67), 1, + [60976] = 26, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2410), 1, sym_string, - STATE(2110), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4094), 1, + STATE(2727), 1, sym_expression, - STATE(5736), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173112,7 +174811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173133,7 +174832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62247] = 26, + [61091] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -173154,25 +174853,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4095), 1, + STATE(4049), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -173186,13 +174885,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173201,7 +174900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173222,66 +174921,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62362] = 26, - ACTIONS(67), 1, + [61206] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3691), 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(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, - sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(4120), 1, - sym_expression, - STATE(5736), 1, - sym__named_expression_lhs, + 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, + anon_sym_None, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [61275] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3806), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173290,7 +175055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173311,66 +175076,594 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62477] = 26, - ACTIONS(67), 1, + [61390] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3695), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3693), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + 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, + [61459] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3365), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(73), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3367), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + 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, + [61528] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3699), 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, - ACTIONS(79), 1, + sym_float, + ACTIONS(3697), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + 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, + [61597] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1623), 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(99), 1, + ACTIONS(1619), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, - ACTIONS(105), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(107), 1, + [61666] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3703), 14, sym_string_start, - ACTIONS(929), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3701), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_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(969), 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, + [61735] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2471), 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(2469), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [61804] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2785), 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(2787), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [61873] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3789), 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(3791), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [61942] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2525), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 1, + sym_float, + ACTIONS(2533), 1, + anon_sym_sizeof, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2292), 1, sym_string, - STATE(2110), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4121), 1, + STATE(2652), 1, sym_expression, - STATE(5736), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173379,7 +175672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173400,46 +175693,244 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62592] = 26, - ACTIONS(67), 1, + [62057] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2475), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(69), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2473), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + 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, + [62126] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3565), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(73), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3563), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [62195] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3569), 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(3567), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [62264] = 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(99), 1, - anon_sym_new, ACTIONS(105), 1, anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3509), 1, + anon_sym_not, + ACTIONS(3511), 1, + anon_sym_lambda, + ACTIONS(3513), 1, + anon_sym_new, + STATE(2093), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4122), 1, + STATE(2167), 1, sym_expression, - STATE(5736), 1, + STATE(5614), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -173453,13 +175944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2196), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173468,7 +175959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173489,66 +175980,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62707] = 26, - ACTIONS(67), 1, + [62379] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1364), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2405), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3467), 1, + anon_sym_not, + ACTIONS(3469), 1, + anon_sym_lambda, + ACTIONS(3471), 1, + anon_sym_new, + STATE(2128), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2202), 1, sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(4132), 1, + STATE(2543), 1, sym_expression, - STATE(5736), 1, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(5689), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173557,7 +176048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173578,75 +176069,72 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62822] = 26, - ACTIONS(67), 1, + [62494] = 23, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 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(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(1327), 1, + anon_sym_COMMA, + ACTIONS(1334), 1, anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1344), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4135), 1, - sym_expression, - STATE(5736), 1, - sym__named_expression_lhs, + STATE(3290), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1329), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1332), 2, + anon_sym_from, + anon_sym_in, + ACTIONS(1269), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2096), 20, + ACTIONS(1530), 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(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173667,66 +176155,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62937] = 26, - ACTIONS(67), 1, + [62603] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 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(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, - sym_primary_expression, - STATE(2043), 1, + ACTIONS(3715), 1, + anon_sym_not, + ACTIONS(3717), 1, + anon_sym_lambda, + ACTIONS(3719), 1, + anon_sym_new, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4151), 1, + STATE(2413), 1, + sym_primary_expression, + STATE(3139), 1, sym_expression, - STATE(5736), 1, + STATE(5593), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173735,7 +176223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173756,66 +176244,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63052] = 26, - ACTIONS(67), 1, + [62718] = 26, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 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(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2292), 1, sym_string, - STATE(2110), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4072), 1, + STATE(4287), 1, sym_expression, - STATE(5736), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173824,7 +176312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173845,66 +176333,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63167] = 26, - ACTIONS(67), 1, + [62833] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 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(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3721), 1, + anon_sym_not, + ACTIONS(3723), 1, + anon_sym_lambda, + ACTIONS(3725), 1, + anon_sym_new, + STATE(2111), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4067), 1, + STATE(2426), 1, sym_expression, - STATE(5736), 1, + STATE(5771), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2422), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173913,7 +176401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173934,66 +176422,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63282] = 26, - ACTIONS(67), 1, + [62948] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1362), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1364), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1366), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1382), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2405), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2122), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2202), 1, sym_string, - STATE(2110), 1, + STATE(2604), 1, sym_list_splat_pattern, - STATE(4100), 1, + STATE(4009), 1, sym_expression, - STATE(5736), 1, + STATE(5800), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174002,7 +176490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174023,66 +176511,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63397] = 26, - ACTIONS(67), 1, + [63063] = 26, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1420), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1436), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2410), 1, sym_string, - STATE(2110), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(3993), 1, + STATE(4336), 1, sym_expression, - STATE(5736), 1, + STATE(5581), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174091,7 +176579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174112,132 +176600,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63512] = 3, + [63178] = 26, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(2497), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2499), 1, + anon_sym_None, + ACTIONS(2501), 1, + sym_float, + ACTIONS(2505), 1, + anon_sym_sizeof, + ACTIONS(2507), 1, + sym_string_start, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(2841), 1, + sym_identifier, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, + anon_sym_STAR, + ACTIONS(3449), 1, + anon_sym_not, + ACTIONS(3451), 1, + anon_sym_lambda, + ACTIONS(3453), 1, + anon_sym_new, + STATE(2120), 1, + sym_primary_expression, + STATE(2229), 1, + sym_string, + STATE(2546), 1, + sym_list_splat_pattern, + STATE(2632), 1, + sym_expression, + STATE(5512), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3473), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2481), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2491), 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(3475), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2845), 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, - [63581] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + STATE(2536), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2512), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [63293] = 26, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2573), 1, + sym_identifier, + ACTIONS(2589), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2595), 1, + anon_sym_await, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2068), 1, + ACTIONS(3455), 1, + anon_sym_not, + ACTIONS(3457), 1, + anon_sym_lambda, + ACTIONS(3459), 1, + anon_sym_new, + STATE(2114), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2193), 1, sym_string, - STATE(2451), 1, + STATE(2449), 1, sym_list_splat_pattern, - STATE(4408), 1, + STATE(2487), 1, sym_expression, - STATE(5741), 1, + STATE(5547), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2437), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2581), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2468), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174246,7 +176757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174267,11 +176778,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63696] = 3, + [63408] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3485), 14, + ACTIONS(3789), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -174286,7 +176797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3487), 46, + ACTIONS(3791), 46, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -174333,66 +176844,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [63765] = 26, - ACTIONS(2479), 1, + [63477] = 26, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2647), 1, - anon_sym_not, - ACTIONS(2649), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2651), 1, - anon_sym_lambda, - ACTIONS(2653), 1, + ACTIONS(2955), 1, + sym_identifier, + ACTIONS(2963), 1, anon_sym_await, - ACTIONS(2655), 1, + ACTIONS(3461), 1, + anon_sym_not, + ACTIONS(3463), 1, + anon_sym_lambda, + ACTIONS(3465), 1, anon_sym_new, - ACTIONS(3033), 1, - sym_identifier, - ACTIONS(3065), 1, - anon_sym_STAR, - STATE(2127), 1, + STATE(2116), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2153), 1, sym_string, - STATE(2608), 1, - sym_list_splat_pattern, - STATE(4001), 1, + STATE(2339), 1, sym_expression, - STATE(5641), 1, + STATE(2421), 1, + sym_list_splat_pattern, + STATE(5560), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2641), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(2331), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174401,7 +176912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174422,66 +176933,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63880] = 26, - ACTIONS(1382), 1, + [63592] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, - anon_sym_not, - ACTIONS(1390), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(1392), 1, - anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1404), 1, - anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(1601), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, + ACTIONS(3065), 1, sym_identifier, - STATE(2168), 1, + ACTIONS(3475), 1, + anon_sym_not, + ACTIONS(3477), 1, + anon_sym_lambda, + ACTIONS(3479), 1, + anon_sym_new, + STATE(2197), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2410), 1, sym_string, - STATE(2693), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(4200), 1, + STATE(2727), 1, sym_expression, - STATE(5483), 1, + STATE(5575), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(2712), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174490,7 +177001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174511,66 +177022,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63995] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [63707] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1362), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1366), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1382), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_await, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2122), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2202), 1, sym_string, - STATE(2451), 1, + STATE(2604), 1, sym_list_splat_pattern, - STATE(4472), 1, + STATE(3938), 1, sym_expression, - STATE(5741), 1, + STATE(5800), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174579,7 +177090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174600,66 +177111,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64110] = 26, - ACTIONS(67), 1, + [63822] = 26, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 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(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2685), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2032), 1, + ACTIONS(3481), 1, + anon_sym_not, + ACTIONS(3483), 1, + anon_sym_lambda, + ACTIONS(3485), 1, + anon_sym_new, + STATE(2195), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2292), 1, sym_string, - STATE(2110), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4084), 1, + STATE(2652), 1, sym_expression, - STATE(5736), 1, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174668,7 +177179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174689,66 +177200,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64225] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [63937] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1362), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1366), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1382), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_await, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2122), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2202), 1, sym_string, - STATE(2451), 1, + STATE(2604), 1, sym_list_splat_pattern, - STATE(4303), 1, + STATE(3955), 1, sym_expression, - STATE(5741), 1, + STATE(5800), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174757,7 +177268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174778,66 +177289,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64340] = 26, - ACTIONS(67), 1, + [64052] = 26, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1362), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1364), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1366), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1382), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(2405), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2122), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2202), 1, sym_string, - STATE(2110), 1, - sym_list_splat_pattern, - STATE(3957), 1, + STATE(2513), 1, sym_expression, - STATE(5736), 1, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(5800), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1374), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1502), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2579), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174846,7 +177357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174867,132 +177378,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64455] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3503), 14, - sym__dedent, + [64167] = 26, + ACTIONS(1360), 1, + anon_sym_LBRACE, + ACTIONS(1362), 1, + anon_sym_not, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1366), 1, + anon_sym_lambda, + ACTIONS(1370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1372), 1, + anon_sym_None, + ACTIONS(1376), 1, + sym_float, + ACTIONS(1382), 1, + anon_sym_new, + ACTIONS(1392), 1, + anon_sym_sizeof, + ACTIONS(1394), 1, sym_string_start, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_await, + ACTIONS(2405), 1, anon_sym_LPAREN, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(3041), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(2122), 1, + sym_primary_expression, + STATE(2202), 1, + sym_string, + STATE(2604), 1, + sym_list_splat_pattern, + STATE(3957), 1, + sym_expression, + STATE(5800), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1374), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1358), 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(3505), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1502), 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, - [64524] = 26, - ACTIONS(1211), 1, + STATE(2579), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2556), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [64282] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4311), 1, + STATE(4486), 1, sym_expression, - STATE(5741), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175001,7 +177535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175022,73 +177556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64639] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3507), 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(3509), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [64708] = 26, + [64397] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -175109,25 +177577,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4092), 1, + STATE(4513), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -175141,13 +177609,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175156,7 +177624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175177,66 +177645,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64823] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [64512] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4325), 1, + STATE(4214), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175245,7 +177713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175266,66 +177734,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64938] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [64627] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4333), 1, + STATE(4051), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175334,7 +177802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175355,46 +177823,46 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65053] = 26, + [64742] = 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(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3655), 1, - anon_sym_not, - ACTIONS(3657), 1, - anon_sym_lambda, - ACTIONS(3659), 1, - anon_sym_new, - STATE(2031), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2086), 1, - sym_expression, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(5548), 1, + STATE(4052), 1, + sym_expression, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -175408,13 +177876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2077), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175423,7 +177891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175444,66 +177912,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65168] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, + [64857] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, - anon_sym_not, - ACTIONS(1231), 1, - anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1243), 1, - anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2679), 1, + anon_sym_not, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2683), 1, + anon_sym_lambda, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, + anon_sym_new, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2292), 1, sym_string, - STATE(2451), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4339), 1, + STATE(4058), 1, sym_expression, - STATE(5741), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175512,7 +177980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175533,7 +178001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65283] = 26, + [64972] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -175554,25 +178022,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3493), 1, + STATE(4059), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -175586,13 +178054,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175601,7 +178069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175622,66 +178090,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65398] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [65087] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4346), 1, + STATE(4060), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175690,7 +178158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175711,132 +178179,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65513] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2421), 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(2419), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [65582] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [65202] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4353), 1, + STATE(4069), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175845,7 +178247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175866,66 +178268,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65697] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [65317] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4326), 1, + STATE(4070), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175934,7 +178336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175955,66 +178357,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65812] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [65432] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4357), 1, + STATE(4071), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176023,7 +178425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176044,66 +178446,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65927] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [65547] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4360), 1, + STATE(4082), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176112,7 +178514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176133,66 +178535,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66042] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [65662] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4363), 1, + STATE(4083), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176201,7 +178603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176222,66 +178624,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66157] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [65777] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4364), 1, + STATE(4084), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176290,7 +178692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176311,66 +178713,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66272] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [65892] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4369), 1, + STATE(4085), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176379,7 +178781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176400,7 +178802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66387] = 26, + [66007] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -176421,25 +178823,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4045), 1, + STATE(4086), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -176453,13 +178855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176468,7 +178870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176489,66 +178891,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66502] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [66122] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4372), 1, + STATE(4089), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176557,7 +178959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176578,7 +178980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66617] = 26, + [66237] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -176599,25 +179001,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3446), 1, + STATE(4090), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -176631,13 +179033,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176646,7 +179048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176667,66 +179069,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66732] = 26, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [66352] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2493), 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(2495), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2501), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(107), 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(3033), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(3065), 1, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2127), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2220), 1, + STATE(2100), 1, sym_string, - STATE(2608), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4237), 1, + STATE(4091), 1, sym_expression, - STATE(5641), 1, + STATE(5657), 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(2641), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2604), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176735,7 +179137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2603), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176756,66 +179158,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66847] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [66467] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4384), 1, + STATE(4092), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176824,7 +179226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176845,139 +179247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66962] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3439), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3437), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [67031] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1589), 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(1585), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, + [66582] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -176998,25 +179268,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4004), 1, + STATE(4096), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177030,13 +179300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177045,7 +179315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177066,66 +179336,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67215] = 26, - ACTIONS(67), 1, + [66697] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3480), 1, + STATE(4519), 1, sym_expression, - STATE(5736), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177134,7 +179404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177155,66 +179425,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67330] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [66812] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4389), 1, + STATE(4115), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177223,7 +179493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177244,7 +179514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67445] = 26, + [66927] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -177265,25 +179535,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4020), 1, + STATE(4118), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177297,13 +179567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177312,7 +179582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177333,7 +179603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67560] = 26, + [67042] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -177354,25 +179624,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3992), 1, + STATE(4119), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177386,13 +179656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177401,7 +179671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177422,132 +179692,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67675] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2413), 14, - sym_string_start, - ts_builtin_sym_end, + [67157] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2517), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2521), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(2411), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2527), 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(2529), 1, + sym_float, + ACTIONS(2533), 1, anon_sym_sizeof, - [67744] = 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, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 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(2685), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(2687), 1, anon_sym_new, - ACTIONS(1245), 1, - anon_sym_sizeof, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2177), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2292), 1, sym_string, - STATE(2451), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4394), 1, + STATE(4125), 1, sym_expression, - STATE(5741), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177556,7 +179760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177577,132 +179781,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67859] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2417), 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(2415), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [67928] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [67272] = 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(1569), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - ACTIONS(3695), 1, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2168), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2100), 1, sym_string, - STATE(2693), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4288), 1, + STATE(4126), 1, sym_expression, - STATE(5483), 1, + STATE(5657), 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(1567), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177711,7 +179849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177732,66 +179870,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68043] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [67387] = 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(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4396), 1, + STATE(4127), 1, sym_expression, - STATE(5741), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177800,7 +179938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177821,155 +179959,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68158] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [67502] = 26, + ACTIONS(67), 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(2739), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(2741), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(2743), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(2745), 1, - anon_sym_new, - ACTIONS(3025), 1, - anon_sym_STAR, - STATE(2068), 1, - sym_primary_expression, - STATE(2147), 1, - sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3969), 1, - sym_expression, - STATE(5679), 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(3089), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2471), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [68273] = 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, + 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(1245), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2739), 1, - anon_sym_not, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(2743), 1, - anon_sym_lambda, - ACTIONS(2745), 1, - anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3970), 1, + STATE(4133), 1, sym_expression, - STATE(5679), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177978,7 +180027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177999,66 +180048,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68388] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [67617] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 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(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2739), 1, - anon_sym_not, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(2743), 1, - anon_sym_lambda, - ACTIONS(2745), 1, - anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3971), 1, + STATE(4134), 1, sym_expression, - STATE(5679), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178067,7 +180116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178088,66 +180137,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, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [67732] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 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(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2739), 1, - anon_sym_not, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(2743), 1, - anon_sym_lambda, - ACTIONS(2745), 1, - anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3091), 1, + STATE(4135), 1, sym_expression, - STATE(5679), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178156,7 +180205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178177,66 +180226,66 @@ 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, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [67847] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 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(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2739), 1, - anon_sym_not, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(2743), 1, - anon_sym_lambda, - ACTIONS(2745), 1, - anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3972), 1, + STATE(4141), 1, sym_expression, - STATE(5679), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178245,7 +180294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178266,66 +180315,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68733] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, + [67962] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2023), 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(2025), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(3011), 1, - anon_sym_not, - ACTIONS(3013), 1, - anon_sym_lambda, - ACTIONS(3015), 1, - anon_sym_new, - STATE(2046), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2100), 1, sym_string, - STATE(2270), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4289), 1, + STATE(4142), 1, sym_expression, - STATE(5685), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178334,7 +180383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178355,66 +180404,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68848] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [68077] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 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(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2739), 1, - anon_sym_not, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(2743), 1, - anon_sym_lambda, - ACTIONS(2745), 1, - anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3973), 1, + STATE(4143), 1, sym_expression, - STATE(5679), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178423,7 +180472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178444,7 +180493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68963] = 26, + [68192] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -178465,25 +180514,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3481), 1, + STATE(4144), 1, sym_expression, - STATE(5736), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178497,13 +180546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178512,7 +180561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178533,66 +180582,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69078] = 26, - ACTIONS(1211), 1, - sym_identifier, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [68307] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1233), 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(1235), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1241), 1, - anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2739), 1, - anon_sym_not, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(2743), 1, - anon_sym_lambda, - ACTIONS(2745), 1, - anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2091), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2451), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3974), 1, + STATE(4145), 1, sym_expression, - STATE(5679), 1, + STATE(5657), 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(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178601,7 +180650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178622,66 +180671,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69193] = 26, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [68422] = 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(1565), 1, - anon_sym_STAR, - ACTIONS(1569), 1, + ACTIONS(809), 1, + sym_identifier, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - STATE(2168), 1, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2100), 1, sym_string, - STATE(2693), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4235), 1, + STATE(4147), 1, sym_expression, - STATE(5483), 1, + STATE(5657), 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(1567), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178690,7 +180739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178711,66 +180760,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69308] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, + [68537] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2023), 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(2025), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(3011), 1, - anon_sym_not, - ACTIONS(3013), 1, - anon_sym_lambda, - ACTIONS(3015), 1, - anon_sym_new, - STATE(2046), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2100), 1, sym_string, - STATE(2270), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4267), 1, + STATE(4148), 1, sym_expression, - STATE(5685), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178779,7 +180828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178800,66 +180849,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69423] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, + [68652] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2023), 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(2025), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(3011), 1, - anon_sym_not, - ACTIONS(3013), 1, - anon_sym_lambda, - ACTIONS(3015), 1, - anon_sym_new, - STATE(2046), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2100), 1, sym_string, - STATE(2270), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4269), 1, + STATE(4149), 1, sym_expression, - STATE(5685), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178868,7 +180917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178889,66 +180938,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69538] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, + [68767] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2023), 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(2025), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(3011), 1, - anon_sym_not, - ACTIONS(3013), 1, - anon_sym_lambda, - ACTIONS(3015), 1, - anon_sym_new, - STATE(2046), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2100), 1, sym_string, - STATE(2270), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(4270), 1, + STATE(4150), 1, sym_expression, - STATE(5685), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178957,7 +181006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178978,66 +181027,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69653] = 26, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, + [68882] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2023), 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(2025), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(99), 1, + anon_sym_new, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2933), 1, + ACTIONS(849), 1, anon_sym_await, - ACTIONS(3011), 1, - anon_sym_not, - ACTIONS(3013), 1, - anon_sym_lambda, - ACTIONS(3015), 1, - anon_sym_new, - STATE(2046), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2100), 1, sym_string, - STATE(2270), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3830), 1, + STATE(4151), 1, sym_expression, - STATE(5685), 1, + STATE(5657), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(3492), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179046,7 +181095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179067,66 +181116,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69768] = 26, - ACTIONS(2009), 1, + [68997] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - ACTIONS(3011), 1, - anon_sym_not, - ACTIONS(3013), 1, - anon_sym_lambda, - ACTIONS(3015), 1, - anon_sym_new, - STATE(2046), 1, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2143), 1, sym_string, - STATE(2270), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4272), 1, + STATE(4518), 1, sym_expression, - STATE(5685), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179135,7 +181184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179156,66 +181205,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69883] = 26, - ACTIONS(2009), 1, + [69112] = 26, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - ACTIONS(3011), 1, + ACTIONS(2679), 1, anon_sym_not, - ACTIONS(3013), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(3015), 1, + ACTIONS(2685), 1, + anon_sym_await, + ACTIONS(2687), 1, anon_sym_new, - STATE(2046), 1, + ACTIONS(3001), 1, + sym_identifier, + ACTIONS(3141), 1, + anon_sym_STAR, + STATE(2177), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2292), 1, sym_string, - STATE(2270), 1, + STATE(2642), 1, sym_list_splat_pattern, - STATE(4274), 1, + STATE(4157), 1, sym_expression, - STATE(5685), 1, + STATE(5721), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(2509), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(2673), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(2648), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179224,7 +181273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179245,66 +181294,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69998] = 26, - ACTIONS(1211), 1, + [69227] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1245), 1, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2739), 1, - anon_sym_not, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2743), 1, - anon_sym_lambda, - ACTIONS(2745), 1, - anon_sym_new, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3093), 1, + STATE(4368), 1, sym_expression, - STATE(5679), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179313,7 +181362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179334,66 +181383,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70113] = 26, - ACTIONS(2009), 1, + [69342] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2675), 1, - anon_sym_not, - ACTIONS(2677), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2679), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_new, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - STATE(2046), 1, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2143), 1, sym_string, - STATE(2270), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3976), 1, + STATE(4379), 1, sym_expression, - STATE(5543), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179402,7 +181451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179423,66 +181472,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70228] = 26, - ACTIONS(2009), 1, + [69457] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2031), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2925), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_await, - ACTIONS(3011), 1, - anon_sym_not, - ACTIONS(3013), 1, - anon_sym_lambda, - ACTIONS(3015), 1, - anon_sym_new, - STATE(2046), 1, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, sym_primary_expression, - STATE(2135), 1, + STATE(2143), 1, sym_string, - STATE(2270), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3808), 1, + STATE(4395), 1, sym_expression, - STATE(5685), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2929), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3805), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179491,7 +181540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2266), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179512,66 +181561,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70343] = 26, - ACTIONS(1211), 1, + [69572] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4460), 1, + STATE(4407), 1, sym_expression, - STATE(5741), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179580,7 +181629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179601,66 +181650,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70458] = 26, - ACTIONS(1211), 1, + [69687] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4462), 1, + STATE(4415), 1, sym_expression, - STATE(5741), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179669,7 +181718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179690,66 +181739,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70573] = 26, - ACTIONS(1382), 1, + [69802] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1404), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - STATE(2168), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2143), 1, sym_string, - STATE(2693), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4262), 1, + STATE(4424), 1, sym_expression, - STATE(5483), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179758,7 +181807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179779,66 +181828,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70688] = 26, - ACTIONS(1382), 1, + [69917] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1388), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1392), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1394), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1404), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1406), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(1569), 1, - anon_sym_await, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2965), 1, - sym_identifier, - STATE(2168), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2239), 1, + STATE(2143), 1, sym_string, - STATE(2693), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4263), 1, + STATE(4427), 1, sym_expression, - STATE(5483), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1398), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1384), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1567), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2657), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179847,7 +181896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2651), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179868,66 +181917,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70803] = 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(929), 1, + [70032] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2773), 1, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(2775), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(2777), 1, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(3055), 1, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3788), 1, + STATE(4430), 1, sym_expression, - STATE(5750), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179936,7 +181985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179957,66 +182006,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70918] = 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(929), 1, + [70147] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2773), 1, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(2775), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(2777), 1, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(3055), 1, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3789), 1, + STATE(4432), 1, sym_expression, - STATE(5750), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180025,7 +182074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180046,66 +182095,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71033] = 26, - ACTIONS(67), 1, + [70262] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4434), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [70377] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2773), 1, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(2775), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(2777), 1, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(3055), 1, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3790), 1, + STATE(4437), 1, sym_expression, - STATE(5750), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180114,7 +182252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180135,66 +182273,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71148] = 26, - ACTIONS(67), 1, + [70492] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4438), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [70607] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2773), 1, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(2775), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(2777), 1, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(3055), 1, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3446), 1, + STATE(4442), 1, sym_expression, - STATE(5750), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180203,7 +182430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180224,66 +182451,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71263] = 26, - ACTIONS(67), 1, + [70722] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(4445), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1249), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [70837] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2773), 1, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(2775), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(2777), 1, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(3055), 1, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3791), 1, + STATE(4451), 1, sym_expression, - STATE(5750), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180292,7 +182608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180313,66 +182629,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71378] = 26, - ACTIONS(67), 1, + [70952] = 26, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(2773), 1, + ACTIONS(2559), 1, anon_sym_not, - ACTIONS(2775), 1, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(2563), 1, anon_sym_lambda, - ACTIONS(2777), 1, + ACTIONS(2569), 1, anon_sym_new, - ACTIONS(3055), 1, + ACTIONS(2841), 1, + sym_identifier, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2127), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2229), 1, sym_string, - STATE(2110), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(3792), 1, + STATE(3962), 1, sym_expression, - STATE(5750), 1, + STATE(5737), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180381,7 +182697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180402,66 +182718,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71493] = 26, - ACTIONS(67), 1, + [71067] = 26, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(2773), 1, + ACTIONS(2559), 1, anon_sym_not, - ACTIONS(2775), 1, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(2563), 1, anon_sym_lambda, - ACTIONS(2777), 1, + ACTIONS(2569), 1, anon_sym_new, - ACTIONS(3055), 1, + ACTIONS(2841), 1, + sym_identifier, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2127), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2229), 1, sym_string, - STATE(2110), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(3793), 1, + STATE(3969), 1, sym_expression, - STATE(5750), 1, + STATE(5737), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180470,7 +182786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180491,198 +182807,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71608] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3683), 14, - sym_string_start, - ts_builtin_sym_end, + [71182] = 26, + ACTIONS(2483), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2489), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2493), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2499), 1, + anon_sym_None, + ACTIONS(2501), 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, + ACTIONS(2505), 1, + anon_sym_sizeof, + ACTIONS(2507), 1, + sym_string_start, + ACTIONS(2559), 1, anon_sym_not, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(2563), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(2569), 1, + anon_sym_new, + ACTIONS(2841), 1, sym_identifier, + ACTIONS(2849), 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, - [71677] = 3, + ACTIONS(3033), 1, + anon_sym_STAR, + STATE(2127), 1, + sym_primary_expression, + STATE(2229), 1, + sym_string, + STATE(2546), 1, + sym_list_splat_pattern, + STATE(3970), 1, + sym_expression, + STATE(5737), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3687), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2481), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2491), 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(3685), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2845), 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, - [71746] = 26, - ACTIONS(67), 1, + STATE(2536), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2512), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [71297] = 26, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(969), 1, - anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(2773), 1, + ACTIONS(2559), 1, anon_sym_not, - ACTIONS(2775), 1, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(2563), 1, anon_sym_lambda, - ACTIONS(2777), 1, + ACTIONS(2569), 1, anon_sym_new, - ACTIONS(3055), 1, + ACTIONS(2841), 1, + sym_identifier, + ACTIONS(2849), 1, + anon_sym_await, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2127), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2229), 1, sym_string, - STATE(2110), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(3443), 1, + STATE(2627), 1, sym_expression, - STATE(5750), 1, + STATE(5737), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180691,7 +182964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180712,66 +182985,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71861] = 26, - ACTIONS(1211), 1, + [71412] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(1213), 1, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1225), 1, + ACTIONS(1257), 1, anon_sym_not, - ACTIONS(1231), 1, + ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1241), 1, + ACTIONS(1273), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1275), 1, anon_sym_new, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2068), 1, + STATE(2108), 1, sym_primary_expression, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(4441), 1, + STATE(4457), 1, sym_expression, - STATE(5741), 1, + STATE(5559), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1217), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3089), 8, + STATE(3138), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180780,7 +183053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180801,66 +183074,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71976] = 26, - ACTIONS(67), 1, + [71527] = 26, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2493), 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(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(929), 1, + ACTIONS(2559), 1, + anon_sym_not, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(2563), 1, + anon_sym_lambda, + ACTIONS(2569), 1, + anon_sym_new, + ACTIONS(2841), 1, sym_identifier, - ACTIONS(969), 1, + ACTIONS(2849), 1, anon_sym_await, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(3055), 1, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2032), 1, + STATE(2127), 1, sym_primary_expression, - STATE(2043), 1, + STATE(2229), 1, sym_string, - STATE(2110), 1, + STATE(2546), 1, sym_list_splat_pattern, - STATE(3460), 1, + STATE(3976), 1, sym_expression, - STATE(5736), 1, + STATE(5737), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2481), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(944), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3424), 8, + STATE(2536), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180869,7 +183142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2096), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180890,70 +183163,75 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72091] = 22, - ACTIONS(1213), 1, + [71642] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(1312), 1, - anon_sym_await, - STATE(2147), 1, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3236), 1, - sym_primary_expression, + STATE(4461), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(967), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1237), 4, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(931), 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(2471), 20, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180974,70 +183252,75 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72197] = 22, - ACTIONS(1213), 1, + [71757] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(1312), 1, - anon_sym_await, - STATE(2147), 1, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3236), 1, - sym_primary_expression, + STATE(4464), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(967), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1237), 4, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(931), 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(2471), 20, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181058,70 +183341,75 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72303] = 22, - ACTIONS(1213), 1, + [71872] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(1312), 1, - anon_sym_await, - STATE(2147), 1, + ACTIONS(2755), 1, + anon_sym_not, + ACTIONS(2757), 1, + anon_sym_lambda, + ACTIONS(2759), 1, + anon_sym_new, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3236), 1, - sym_primary_expression, + STATE(3996), 1, + sym_expression, + STATE(5751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1297), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1237), 4, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(1249), 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(2471), 20, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181142,70 +183430,75 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72409] = 22, - ACTIONS(1213), 1, + [71987] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(1312), 1, - anon_sym_await, - STATE(2147), 1, + ACTIONS(2755), 1, + anon_sym_not, + ACTIONS(2757), 1, + anon_sym_lambda, + ACTIONS(2759), 1, + anon_sym_new, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3236), 1, - sym_primary_expression, + STATE(3998), 1, + sym_expression, + STATE(5751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1297), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1237), 4, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(1249), 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(2471), 20, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181226,67 +183519,75 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72515] = 21, - ACTIONS(1213), 1, + [72102] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1302), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(1312), 1, - anon_sym_await, - STATE(2147), 1, + ACTIONS(2755), 1, + anon_sym_not, + ACTIONS(2757), 1, + anon_sym_lambda, + ACTIONS(2759), 1, + anon_sym_new, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3236), 1, - sym_primary_expression, + STATE(3999), 1, + sym_expression, + STATE(5751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1237), 4, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(931), 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(2471), 20, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181307,275 +183608,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72617] = 8, - ACTIONS(938), 1, - anon_sym_COMMA, - ACTIONS(948), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(953), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3697), 7, - anon_sym_class, - anon_sym_api, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - ACTIONS(967), 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(931), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [72217] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - 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, - ACTIONS(933), 16, - anon_sym_STAR, - anon_sym_GT_GT, - 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, - anon_sym_LT, - anon_sym_GT, - [72692] = 17, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(3705), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(3714), 1, - anon_sym_COLON, - ACTIONS(3716), 1, - anon_sym_EQ, - ACTIONS(3718), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(3722), 1, - anon_sym_complex, - ACTIONS(3724), 1, - anon_sym___stdcall, - STATE(3420), 1, - aux_sym_class_definition_repeat2, - STATE(3447), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3703), 2, - sym__newline, - anon_sym_LPAREN, - STATE(3696), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3708), 3, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(3710), 12, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3699), 13, - anon_sym_SEMI, - 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(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, - [72784] = 5, - ACTIONS(3732), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3730), 2, - anon_sym_new, - anon_sym_delete, - ACTIONS(3728), 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(3726), 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, - [72851] = 24, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3734), 1, - sym_identifier, - ACTIONS(3736), 1, - anon_sym_LPAREN, - ACTIONS(3738), 1, + ACTIONS(2755), 1, + anon_sym_not, + ACTIONS(2757), 1, + anon_sym_lambda, + ACTIONS(2759), 1, + anon_sym_new, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3742), 1, - anon_sym_LBRACK, - ACTIONS(3744), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(3129), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3228), 1, - sym_primary_expression, - STATE(4469), 1, - sym_pattern, + STATE(3143), 1, + sym_expression, + STATE(5751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3131), 2, - sym_attribute, - sym_subscript, - STATE(4421), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2707), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3740), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -181592,71 +183697,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72956] = 24, - ACTIONS(1223), 1, + [72332] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3734), 1, - sym_identifier, - ACTIONS(3736), 1, - anon_sym_LPAREN, - ACTIONS(3738), 1, + ACTIONS(2755), 1, + anon_sym_not, + ACTIONS(2757), 1, + anon_sym_lambda, + ACTIONS(2759), 1, + anon_sym_new, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3742), 1, - anon_sym_LBRACK, - ACTIONS(3744), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(3129), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3228), 1, - sym_primary_expression, - STATE(4469), 1, - sym_pattern, + STATE(4000), 1, + sym_expression, + STATE(5751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3131), 2, - sym_attribute, - sym_subscript, - STATE(4421), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2801), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3740), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -181673,196 +183786,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73061] = 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, - [73128] = 10, - ACTIONS(938), 1, - anon_sym_COMMA, - ACTIONS(948), 1, - anon_sym_COLON_EQ, - ACTIONS(3754), 1, - sym_identifier, - ACTIONS(3756), 1, - sym_string_start, - STATE(5047), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(953), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(931), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [72447] = 26, + ACTIONS(1975), 1, anon_sym_LPAREN, + ACTIONS(1981), 1, anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(967), 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(933), 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, - [73203] = 24, - ACTIONS(1223), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3758), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(3762), 1, - anon_sym_LPAREN, - ACTIONS(3764), 1, - anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_LBRACK, - ACTIONS(3770), 1, + ACTIONS(2963), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + STATE(2117), 1, + sym_primary_expression, + STATE(2153), 1, sym_string, - STATE(3170), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3208), 1, - sym_primary_expression, - STATE(3218), 1, - sym_pattern, + STATE(4354), 1, + sym_expression, + STATE(5757), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3760), 2, - anon_sym_from, - anon_sym_in, - STATE(3165), 2, - sym_attribute, - sym_subscript, - STATE(3209), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3766), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -181879,135 +183875,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73306] = 11, - ACTIONS(938), 1, - anon_sym_COMMA, - ACTIONS(948), 1, - anon_sym_COLON_EQ, - ACTIONS(950), 1, - anon_sym_COLON, - ACTIONS(953), 1, - anon_sym_EQ, - ACTIONS(3754), 1, + [72562] = 26, + ACTIONS(1243), 1, sym_identifier, - ACTIONS(3756), 1, - sym_string_start, - STATE(5047), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(931), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(1245), 1, anon_sym_LPAREN, + ACTIONS(1251), 1, anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(967), 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(933), 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, - [73383] = 24, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3758), 1, - sym_identifier, - ACTIONS(3762), 1, - anon_sym_LPAREN, - ACTIONS(3764), 1, + ACTIONS(2755), 1, + anon_sym_not, + ACTIONS(2757), 1, + anon_sym_lambda, + ACTIONS(2759), 1, + anon_sym_new, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_LBRACK, - ACTIONS(3770), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(3170), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3208), 1, - sym_primary_expression, - STATE(3218), 1, - sym_pattern, + STATE(4002), 1, + sym_expression, + STATE(5751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3772), 2, - anon_sym_from, - anon_sym_in, - STATE(3165), 2, - sym_attribute, - sym_subscript, - STATE(3209), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3766), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -182024,198 +183964,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73486] = 10, - ACTIONS(938), 1, - anon_sym_COMMA, - ACTIONS(948), 1, - anon_sym_COLON_EQ, - ACTIONS(3774), 1, - anon_sym_for, - ACTIONS(3776), 1, - anon_sym_with, - ACTIONS(3778), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(953), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(967), 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(933), 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(931), 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, - [73561] = 10, - ACTIONS(938), 1, - anon_sym_COMMA, - ACTIONS(948), 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(953), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(967), 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(933), 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(931), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [72677] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, + ACTIONS(1251), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [73636] = 24, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3758), 1, - sym_identifier, - ACTIONS(3762), 1, - anon_sym_LPAREN, - ACTIONS(3764), 1, + ACTIONS(2755), 1, + anon_sym_not, + ACTIONS(2757), 1, + anon_sym_lambda, + ACTIONS(2759), 1, + anon_sym_new, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_LBRACK, - ACTIONS(3770), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(3170), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3208), 1, - sym_primary_expression, - STATE(4859), 1, - sym_pattern, - STATE(5633), 1, - sym_pattern_list, + STATE(4004), 1, + sym_expression, + STATE(5751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3165), 2, - sym_attribute, - sym_subscript, - STATE(3209), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3766), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -182232,68 +184053,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73738] = 24, - ACTIONS(1223), 1, + [72792] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3758), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(3762), 1, - anon_sym_LPAREN, - ACTIONS(3764), 1, - anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_LBRACK, - ACTIONS(3770), 1, + ACTIONS(2963), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + STATE(2117), 1, + sym_primary_expression, + STATE(2153), 1, sym_string, - STATE(3170), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3208), 1, - sym_primary_expression, - STATE(5012), 1, - sym_pattern, - STATE(5659), 1, - sym_pattern_list, + STATE(4342), 1, + sym_expression, + STATE(5757), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3165), 2, - sym_attribute, - sym_subscript, - STATE(3209), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3766), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -182310,67 +184142,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73840] = 23, - ACTIONS(1213), 1, + [72907] = 26, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2731), 1, - anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(3786), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(3794), 1, + ACTIONS(2963), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + STATE(2117), 1, + sym_primary_expression, + STATE(2153), 1, sym_string, - STATE(2451), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3215), 1, - sym_primary_expression, + STATE(4343), 1, + sym_expression, + STATE(5757), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 2, - sym__newline, - anon_sym_COLON, - ACTIONS(3792), 2, - anon_sym_with, - anon_sym_nogil, - STATE(2128), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3788), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -182387,68 +184231,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73940] = 24, - ACTIONS(1223), 1, + [73022] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(2729), 1, - anon_sym_LBRACK, - ACTIONS(2731), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2733), 1, - anon_sym_await, - ACTIONS(3796), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(3798), 1, - anon_sym_LPAREN, - ACTIONS(3800), 1, - anon_sym_RPAREN, - STATE(2147), 1, + ACTIONS(2963), 1, + anon_sym_await, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + STATE(2117), 1, + sym_primary_expression, + STATE(2153), 1, sym_string, - STATE(3204), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3219), 1, - sym_primary_expression, - STATE(5251), 1, - sym_pattern, + STATE(4344), 1, + sym_expression, + STATE(5757), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3214), 2, - sym_attribute, - sym_subscript, - STATE(5246), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2727), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -182465,68 +184320,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74042] = 24, - ACTIONS(1223), 1, + [73137] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3758), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(3762), 1, - anon_sym_LPAREN, - ACTIONS(3764), 1, - anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_LBRACK, - ACTIONS(3770), 1, + ACTIONS(2963), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + STATE(2117), 1, + sym_primary_expression, + STATE(2153), 1, sym_string, - STATE(3170), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3208), 1, - sym_primary_expression, - STATE(5020), 1, - sym_pattern, - STATE(5721), 1, - sym_pattern_list, + STATE(3867), 1, + sym_expression, + STATE(5757), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3165), 2, - sym_attribute, - sym_subscript, - STATE(3209), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3766), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -182543,62 +184409,75 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74144] = 22, - ACTIONS(67), 1, + [73252] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(3802), 1, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(2955), 1, sym_identifier, - STATE(2043), 1, - sym_string, - STATE(2052), 1, + ACTIONS(2963), 1, + anon_sym_await, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + STATE(2117), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2153), 1, + sym_string, + STATE(2421), 1, sym_list_splat_pattern, + STATE(4345), 1, + sym_expression, + STATE(5757), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 2, - sym__newline, - anon_sym_COLON, - ACTIONS(3792), 2, - anon_sym_with, - anon_sym_nogil, - ACTIONS(81), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1285), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2096), 20, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182619,68 +184498,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74242] = 24, - ACTIONS(1223), 1, + [73367] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3804), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3808), 1, - anon_sym_STAR, - ACTIONS(3812), 1, - anon_sym_LBRACK, - ACTIONS(3814), 1, - anon_sym_RBRACK, - ACTIONS(3816), 1, + ACTIONS(2963), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + STATE(2117), 1, + sym_primary_expression, + STATE(2153), 1, sym_string, - STATE(3206), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3225), 1, - sym_primary_expression, - STATE(5252), 1, - sym_pattern, + STATE(4346), 1, + sym_expression, + STATE(5757), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3201), 2, - sym_attribute, - sym_subscript, - STATE(5353), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3810), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -182697,68 +184587,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74344] = 24, - ACTIONS(1223), 1, + [73482] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(2729), 1, - anon_sym_LBRACK, - ACTIONS(2731), 1, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(2733), 1, - anon_sym_await, - ACTIONS(3796), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(3798), 1, - anon_sym_LPAREN, - ACTIONS(3814), 1, - anon_sym_RPAREN, - STATE(2147), 1, + ACTIONS(2963), 1, + anon_sym_await, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + STATE(2117), 1, + sym_primary_expression, + STATE(2153), 1, sym_string, - STATE(3204), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3219), 1, - sym_primary_expression, - STATE(5251), 1, - sym_pattern, + STATE(4347), 1, + sym_expression, + STATE(5757), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3214), 2, - sym_attribute, - sym_subscript, - STATE(5246), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2727), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -182775,68 +184676,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74446] = 24, - ACTIONS(1223), 1, + [73597] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3800), 1, - anon_sym_RBRACK, - ACTIONS(3804), 1, - sym_identifier, - ACTIONS(3806), 1, - anon_sym_LPAREN, - ACTIONS(3808), 1, + ACTIONS(2755), 1, + anon_sym_not, + ACTIONS(2757), 1, + anon_sym_lambda, + ACTIONS(2759), 1, + anon_sym_new, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3812), 1, - anon_sym_LBRACK, - ACTIONS(3816), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(3206), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3225), 1, - sym_primary_expression, - STATE(5252), 1, - sym_pattern, + STATE(3139), 1, + sym_expression, + STATE(5751), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3201), 2, - sym_attribute, - sym_subscript, - STATE(5353), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3810), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -182853,68 +184765,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74548] = 24, - ACTIONS(1223), 1, + [73712] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2703), 1, + anon_sym_not, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3758), 1, + ACTIONS(2707), 1, + anon_sym_lambda, + ACTIONS(2713), 1, + anon_sym_new, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(3762), 1, - anon_sym_LPAREN, - ACTIONS(3764), 1, - anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_LBRACK, - ACTIONS(3770), 1, + ACTIONS(2963), 1, anon_sym_await, - STATE(2147), 1, + STATE(2117), 1, + sym_primary_expression, + STATE(2153), 1, sym_string, - STATE(3170), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3208), 1, - sym_primary_expression, - STATE(5051), 1, - sym_pattern, - STATE(5473), 1, - sym_pattern_list, + STATE(4041), 1, + sym_expression, + STATE(5700), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3165), 2, - sym_attribute, - sym_subscript, - STATE(3209), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3766), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -182931,68 +184854,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74650] = 24, - ACTIONS(1223), 1, + [73827] = 26, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, anon_sym_LT, - ACTIONS(3758), 1, + ACTIONS(2955), 1, sym_identifier, - ACTIONS(3762), 1, - anon_sym_LPAREN, - ACTIONS(3764), 1, - anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_LBRACK, - ACTIONS(3770), 1, + ACTIONS(2963), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(2995), 1, + anon_sym_not, + ACTIONS(2997), 1, + anon_sym_lambda, + ACTIONS(2999), 1, + anon_sym_new, + STATE(2117), 1, + sym_primary_expression, + STATE(2153), 1, sym_string, - STATE(3170), 1, + STATE(2421), 1, sym_list_splat_pattern, - STATE(3208), 1, - sym_primary_expression, - STATE(5056), 1, - sym_pattern, - STATE(5485), 1, - sym_pattern_list, + STATE(3926), 1, + sym_expression, + STATE(5757), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3165), 2, - sym_attribute, - sym_subscript, - STATE(3209), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1973), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3766), 5, + ACTIONS(2959), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3906), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -183009,68 +184943,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74752] = 24, - ACTIONS(1223), 1, + [73942] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3758), 1, - sym_identifier, - ACTIONS(3762), 1, - anon_sym_LPAREN, - ACTIONS(3764), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_LBRACK, - ACTIONS(3770), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(3170), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3208), 1, - sym_primary_expression, - STATE(5124), 1, - sym_pattern, - STATE(5658), 1, - sym_pattern_list, + STATE(4523), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3165), 2, - sym_attribute, - sym_subscript, - STATE(3209), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3766), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -183087,66 +185032,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74854] = 23, - ACTIONS(1223), 1, + [74057] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2705), 1, - sym_identifier, - ACTIONS(2709), 1, - anon_sym_LPAREN, - ACTIONS(2715), 1, - anon_sym_LBRACK, - ACTIONS(2717), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3818), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2147), 1, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(2410), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3220), 1, - sym_pattern, - STATE(3230), 1, - sym_primary_expression, + STATE(4525), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2411), 2, - sym_attribute, - sym_subscript, - STATE(3212), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2713), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -183163,129 +185121,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74953] = 10, - ACTIONS(3705), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(3716), 1, - anon_sym_EQ, - ACTIONS(3820), 1, - anon_sym_COLON, - ACTIONS(3823), 1, + [74172] = 26, + ACTIONS(1414), 1, anon_sym_LBRACK, - STATE(4566), 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, - 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, - [75026] = 23, - ACTIONS(1223), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1420), 1, + anon_sym_not, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1424), 1, + anon_sym_lambda, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1436), 1, + anon_sym_new, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2731), 1, - anon_sym_LT, - ACTIONS(3734), 1, - sym_identifier, - ACTIONS(3736), 1, - anon_sym_LPAREN, - ACTIONS(3738), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(3742), 1, - anon_sym_LBRACK, - ACTIONS(3744), 1, + ACTIONS(1601), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + sym_identifier, + STATE(2221), 1, + sym_primary_expression, + STATE(2410), 1, sym_string, - STATE(3129), 1, + STATE(2703), 1, sym_list_splat_pattern, - STATE(3228), 1, - sym_primary_expression, - STATE(4469), 1, - sym_pattern, + STATE(4258), 1, + sym_expression, + STATE(5581), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3131), 2, - sym_attribute, - sym_subscript, - STATE(4421), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + ACTIONS(1430), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3740), 5, + ACTIONS(1599), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2712), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -183302,70 +185210,149 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75125] = 23, - 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, + [74287] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3711), 14, + sym__dedent, sym_string_start, - ACTIONS(2731), 1, - anon_sym_LT, - ACTIONS(3758), 1, - sym_identifier, - ACTIONS(3762), 1, anon_sym_LPAREN, - ACTIONS(3764), 1, anon_sym_STAR, - ACTIONS(3768), 1, anon_sym_LBRACK, - ACTIONS(3770), 1, - anon_sym_await, - STATE(2147), 1, - sym_string, - STATE(3170), 1, - sym_list_splat_pattern, - STATE(3208), 1, - sym_primary_expression, - STATE(3218), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3165), 2, - sym_attribute, - sym_subscript, - STATE(3209), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1308), 4, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3766), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3713), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2471), 18, - sym_binary_operator, - sym_unary_operator, - sym_ellipsis, - sym_call, - sym_list, - sym_set, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [74356] = 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(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(2813), 1, + anon_sym_not, + ACTIONS(2815), 1, + anon_sym_lambda, + ACTIONS(2817), 1, + anon_sym_new, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, + sym_primary_expression, + STATE(2100), 1, + sym_string, + STATE(2166), 1, + sym_list_splat_pattern, + STATE(3847), 1, + sym_expression, + STATE(5822), 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(824), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3492), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, sym_tuple, sym_dictionary, sym_list_comprehension, @@ -183378,66 +185365,168 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75224] = 23, - ACTIONS(1223), 1, + [74471] = 26, + 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(2725), 1, - anon_sym_STAR, - ACTIONS(2729), 1, - anon_sym_LBRACK, - ACTIONS(2731), 1, - anon_sym_LT, - ACTIONS(2733), 1, - anon_sym_await, - ACTIONS(3796), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(3798), 1, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, anon_sym_LPAREN, - STATE(2147), 1, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(2813), 1, + anon_sym_not, + ACTIONS(2815), 1, + anon_sym_lambda, + ACTIONS(2817), 1, + anon_sym_new, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, + sym_primary_expression, + STATE(2100), 1, sym_string, - STATE(3204), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3219), 1, - sym_primary_expression, - STATE(5251), 1, - sym_pattern, + STATE(3849), 1, + sym_expression, + STATE(5822), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3214), 2, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(824), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3492), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, sym_attribute, sym_subscript, - STATE(5246), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [74586] = 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(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(2813), 1, + anon_sym_not, + ACTIONS(2815), 1, + anon_sym_lambda, + ACTIONS(2817), 1, + anon_sym_new, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, + sym_primary_expression, + STATE(2100), 1, + sym_string, + STATE(2166), 1, + sym_list_splat_pattern, + STATE(3850), 1, + sym_expression, + STATE(5822), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(2727), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3492), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -183454,66 +185543,168 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75323] = 23, - ACTIONS(1223), 1, + [74701] = 26, + 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(2731), 1, - anon_sym_LT, - ACTIONS(3804), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(3806), 1, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(3808), 1, - anon_sym_STAR, - ACTIONS(3812), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3816), 1, - anon_sym_await, - STATE(2147), 1, + ACTIONS(2813), 1, + anon_sym_not, + ACTIONS(2815), 1, + anon_sym_lambda, + ACTIONS(2817), 1, + anon_sym_new, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, + sym_primary_expression, + STATE(2100), 1, sym_string, - STATE(3206), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3225), 1, - sym_primary_expression, - STATE(5252), 1, - sym_pattern, + STATE(3851), 1, + sym_expression, + STATE(5822), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3201), 2, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(824), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3492), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, sym_attribute, sym_subscript, - STATE(5353), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [74816] = 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(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(2813), 1, + anon_sym_not, + ACTIONS(2815), 1, + anon_sym_lambda, + ACTIONS(2817), 1, + anon_sym_new, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, + sym_primary_expression, + STATE(2100), 1, + sym_string, + STATE(2166), 1, + sym_list_splat_pattern, + STATE(3773), 1, + sym_expression, + STATE(5822), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(3810), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3492), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -183530,66 +185721,168 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75422] = 23, - ACTIONS(1223), 1, + [74931] = 26, + 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(2731), 1, - anon_sym_LT, - ACTIONS(2971), 1, + ACTIONS(809), 1, sym_identifier, - ACTIONS(2973), 1, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(2979), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(2981), 1, - anon_sym_await, - ACTIONS(3825), 1, + ACTIONS(2813), 1, + anon_sym_not, + ACTIONS(2815), 1, + anon_sym_lambda, + ACTIONS(2817), 1, + anon_sym_new, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2147), 1, + STATE(2091), 1, + sym_primary_expression, + STATE(2100), 1, sym_string, - STATE(2658), 1, + STATE(2166), 1, sym_list_splat_pattern, - STATE(3218), 1, - sym_pattern, - STATE(3221), 1, - sym_primary_expression, + STATE(3853), 1, + sym_expression, + STATE(5822), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2663), 2, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(824), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3492), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, sym_attribute, sym_subscript, - STATE(3209), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1237), 3, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [75046] = 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(809), 1, + sym_identifier, + ACTIONS(849), 1, + anon_sym_await, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(2813), 1, + anon_sym_not, + ACTIONS(2815), 1, + anon_sym_lambda, + ACTIONS(2817), 1, + anon_sym_new, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2091), 1, + sym_primary_expression, + STATE(2100), 1, + sym_string, + STATE(2166), 1, + sym_list_splat_pattern, + STATE(3485), 1, + sym_expression, + STATE(5822), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(2977), 5, + ACTIONS(824), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3492), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -183606,64 +185899,79 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75521] = 22, - ACTIONS(1213), 1, + [75161] = 26, + ACTIONS(1243), 1, + sym_identifier, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1257), 1, + anon_sym_not, + ACTIONS(1263), 1, + anon_sym_lambda, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1273), 1, + anon_sym_await, + ACTIONS(1275), 1, + anon_sym_new, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(3827), 1, - sym_identifier, - ACTIONS(3833), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2108), 1, + sym_primary_expression, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3223), 1, - sym_primary_expression, + STATE(4541), 1, + sym_expression, + STATE(5559), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3829), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2638), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3831), 5, + ACTIONS(1249), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(3138), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -183680,64 +185988,140 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75617] = 22, - ACTIONS(1213), 1, + [75276] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3493), 14, + sym__dedent, + sym_string_start, 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(1233), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1239), 1, sym_float, + ACTIONS(3495), 46, + anon_sym_import, + anon_sym_cimport, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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, + [75345] = 22, ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, - anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(1334), 1, anon_sym_STAR, - ACTIONS(3835), 1, - sym_identifier, - ACTIONS(3841), 1, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1344), 1, anon_sym_await, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3208), 1, + STATE(3290), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3837), 2, + ACTIONS(813), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(847), 2, anon_sym_COMMA, - anon_sym_COLON, - STATE(3150), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + anon_sym_RBRACK, + ACTIONS(1269), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3839), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + ACTIONS(811), 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(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -183754,64 +186138,74 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75713] = 22, - ACTIONS(1213), 1, + [75451] = 22, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, - anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(1334), 1, anon_sym_STAR, - ACTIONS(3827), 1, - sym_identifier, - ACTIONS(3833), 1, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1344), 1, anon_sym_await, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3223), 1, + STATE(3290), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3843), 2, + ACTIONS(1327), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2638), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(1329), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1269), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3831), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + ACTIONS(1530), 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(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -183828,183 +186222,239 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75809] = 8, - ACTIONS(938), 1, - anon_sym_COMMA, - ACTIONS(948), 1, - anon_sym_COLON_EQ, - ACTIONS(950), 1, - anon_sym_COLON, - ACTIONS(953), 1, - anon_sym_EQ, + [75557] = 22, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(1334), 1, + anon_sym_STAR, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1344), 1, + anon_sym_await, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3290), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(967), 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(933), 15, - anon_sym_STAR, + ACTIONS(813), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(847), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1269), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1340), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1336), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(811), 8, 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(931), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [75663] = 22, + ACTIONS(1245), 1, anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, + ACTIONS(1251), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [75877] = 7, - ACTIONS(3705), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(1334), 1, + anon_sym_STAR, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1344), 1, + anon_sym_await, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3290), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3716), 2, - anon_sym_COLON, - anon_sym_EQ, - 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, + ACTIONS(1327), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1329), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1269), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1340), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1336), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(1530), 8, 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), 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, - [75943] = 22, - ACTIONS(1213), 1, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [75769] = 21, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, - anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(1334), 1, anon_sym_STAR, - ACTIONS(3845), 1, - sym_identifier, - ACTIONS(3849), 1, + ACTIONS(1342), 1, + anon_sym_LT, + ACTIONS(1344), 1, anon_sym_await, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3219), 1, + STATE(3290), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3837), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3108), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(813), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1269), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3847), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + ACTIONS(811), 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(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -184021,18 +186471,26 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76039] = 7, - ACTIONS(938), 1, + [75871] = 8, + ACTIONS(818), 1, anon_sym_COMMA, - ACTIONS(948), 1, + ACTIONS(828), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(953), 2, + ACTIONS(833), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(967), 13, + ACTIONS(3793), 7, + anon_sym_class, + anon_sym_api, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(847), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184046,30 +186504,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(933), 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(931), 17, + ACTIONS(811), 16, 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, @@ -184080,32 +186521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76105] = 6, - ACTIONS(3858), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3853), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3860), 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(3856), 15, + ACTIONS(813), 16, anon_sym_STAR, anon_sym_GT_GT, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, @@ -184119,33 +186538,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 17, - sym__newline, - anon_sym_SEMI, + [75946] = 17, + ACTIONS(3797), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, + ACTIONS(3801), 1, + anon_sym_COMMA, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, + ACTIONS(3810), 1, + anon_sym_COLON, + ACTIONS(3812), 1, + anon_sym_EQ, + ACTIONS(3814), 1, anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [76168] = 3, + ACTIONS(3818), 1, + anon_sym_complex, + ACTIONS(3820), 1, + anon_sym___stdcall, + STATE(3483), 1, + aux_sym_class_definition_repeat2, + STATE(3494), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 16, + ACTIONS(3799), 2, + sym__newline, + anon_sym_LPAREN, + STATE(3744), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3804), 3, anon_sym_STAR, - anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, + anon_sym_AMP, + ACTIONS(3806), 12, + anon_sym_GT_GT, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -184153,22 +186581,15 @@ static const uint16_t ts_small_parse_table[] = { 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(3862), 32, - sym__newline, + ACTIONS(3795), 13, 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, @@ -184178,6 +186599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + ACTIONS(3816), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -184191,338 +186613,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [76225] = 3, + [76038] = 5, + ACTIONS(3828), 1, + anon_sym_DQUOTE_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 16, + ACTIONS(3826), 2, + anon_sym_new, + anon_sym_delete, + ACTIONS(3824), 20, anon_sym_STAR, anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_EQ, - 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_LT, + anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(3866), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_xor, + ACTIONS(3822), 31, 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_TILDE, 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, - [76282] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1300), 3, - anon_sym_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, + [76105] = 24, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2809), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(1498), 3, - anon_sym_DOT, + ACTIONS(3830), 1, + sym_identifier, + ACTIONS(3832), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1297), 13, + ACTIONS(3834), 1, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + ACTIONS(3838), 1, + anon_sym_LBRACK, + ACTIONS(3840), 1, + anon_sym_await, + STATE(2143), 1, + sym_string, + STATE(3170), 1, + sym_list_splat_pattern, + STATE(3294), 1, + sym_primary_expression, + STATE(4393), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3174), 2, + sym_attribute, + sym_subscript, + STATE(4410), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 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, - ACTIONS(1295), 29, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + anon_sym_TILDE, + ACTIONS(2821), 4, 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, - [76343] = 6, - ACTIONS(3872), 1, - anon_sym_COMMA, - ACTIONS(3879), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3877), 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(3875), 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(3870), 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, - [76406] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3883), 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(3881), 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, - [76463] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3887), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3893), 3, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3890), 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), 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, - [76524] = 20, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(2391), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, - anon_sym_None, - ACTIONS(2395), 1, - sym_float, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2399), 1, - anon_sym_sizeof, - ACTIONS(2401), 1, - sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2935), 1, - anon_sym_STAR, - ACTIONS(3895), 1, - anon_sym_not, - STATE(2073), 1, - sym_string, - STATE(2171), 1, - sym_primary_expression, - STATE(2288), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2375), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2385), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2381), 5, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(3836), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2386), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -184539,317 +186756,71 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76615] = 6, - ACTIONS(3716), 1, - anon_sym_EQ, - ACTIONS(3899), 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(3902), 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(3897), 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, - [76678] = 6, - ACTIONS(3705), 1, - anon_sym_COMMA, - ACTIONS(3716), 1, - anon_sym_EQ, - 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(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), 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, - [76741] = 20, - ACTIONS(1382), 1, - anon_sym_LBRACK, - ACTIONS(1386), 1, + [76210] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1565), 1, - anon_sym_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, - anon_sym_await, - ACTIONS(3895), 1, - anon_sym_not, - STATE(2239), 1, - sym_string, - STATE(2478), 1, - sym_primary_expression, - STATE(2693), 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, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2509), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [76832] = 20, - ACTIONS(1328), 1, - anon_sym_LBRACE, - ACTIONS(1332), 1, + ACTIONS(2809), 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(2437), 1, + ACTIONS(3830), 1, + sym_identifier, + ACTIONS(3832), 1, anon_sym_LPAREN, - ACTIONS(2447), 1, - anon_sym_await, - ACTIONS(2983), 1, + ACTIONS(3834), 1, anon_sym_STAR, - ACTIONS(3895), 1, - anon_sym_not, + ACTIONS(3838), 1, + anon_sym_LBRACK, + ACTIONS(3840), 1, + anon_sym_await, STATE(2143), 1, sym_string, - STATE(2178), 1, - sym_primary_expression, - STATE(2403), 1, + STATE(3170), 1, sym_list_splat_pattern, + STATE(3294), 1, + sym_primary_expression, + STATE(4393), 1, + sym_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(2441), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2455), 20, - sym_binary_operator, - sym_unary_operator, + STATE(3174), 2, sym_attribute, sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [76923] = 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(2535), 1, - anon_sym_LT, - ACTIONS(2943), 1, - anon_sym_STAR, - ACTIONS(3895), 1, - anon_sym_not, - STATE(2166), 1, - sym_string, - STATE(2227), 1, - sym_primary_expression, - STATE(2479), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2449), 4, + STATE(4410), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(2773), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(3836), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2526), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -184866,130 +186837,86 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77014] = 6, - ACTIONS(3716), 1, - anon_sym_EQ, + [76315] = 5, + ACTIONS(3848), 1, + anon_sym_DQUOTE_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3899), 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(3902), 15, + ACTIONS(3846), 2, + anon_sym_new, + anon_sym_delete, + ACTIONS(3844), 20, anon_sym_STAR, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, + 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_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, - anon_sym_GT, - ACTIONS(3897), 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_GT, + anon_sym_BANG, + anon_sym_xor, + ACTIONS(3842), 31, + anon_sym_COMMA, + anon_sym_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_GT, - [77077] = 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, - 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), 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, - [77140] = 6, - ACTIONS(3879), 1, - anon_sym_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, + [76382] = 10, + ACTIONS(818), 1, + anon_sym_COMMA, + ACTIONS(828), 1, + anon_sym_COLON_EQ, + ACTIONS(3850), 1, + anon_sym_for, + ACTIONS(3852), 1, + anon_sym_with, + ACTIONS(3854), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3872), 2, - anon_sym_COMMA, + ACTIONS(833), 2, anon_sym_COLON, - ACTIONS(3877), 13, + anon_sym_EQ, + ACTIONS(847), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185003,7 +186930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3875), 15, + ACTIONS(813), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -185019,7 +186946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3870), 17, + ACTIONS(811), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185037,16 +186964,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77203] = 6, - ACTIONS(3853), 1, + [76457] = 10, + ACTIONS(818), 1, anon_sym_COMMA, + ACTIONS(828), 1, + anon_sym_COLON_EQ, + ACTIONS(3856), 1, + anon_sym_for, ACTIONS(3858), 1, - anon_sym_EQ, + anon_sym_with, + ACTIONS(3860), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3860), 14, + ACTIONS(833), 2, anon_sym_COLON, + anon_sym_EQ, + ACTIONS(847), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185060,7 +186995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3856), 15, + ACTIONS(813), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -185076,7 +187011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 17, + ACTIONS(811), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -185094,61 +187029,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77266] = 20, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [76532] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2435), 1, - anon_sym_await, - ACTIONS(2741), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(3862), 1, + sym_identifier, + ACTIONS(3866), 1, + anon_sym_LPAREN, + ACTIONS(3868), 1, anon_sym_STAR, - ACTIONS(3895), 1, - anon_sym_not, - STATE(2147), 1, + ACTIONS(3872), 1, + anon_sym_LBRACK, + ACTIONS(3874), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2218), 1, - sym_primary_expression, - STATE(2451), 1, + STATE(3225), 1, sym_list_splat_pattern, + STATE(3248), 1, + sym_primary_expression, + STATE(3278), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, + ACTIONS(3864), 2, + anon_sym_from, + anon_sym_in, + STATE(3227), 2, + sym_attribute, + sym_subscript, + STATE(3274), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 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, + ACTIONS(3870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -185165,51 +187108,35 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77357] = 7, - ACTIONS(3906), 1, - anon_sym_PIPE, + [76635] = 10, + ACTIONS(818), 1, + anon_sym_COMMA, + ACTIONS(828), 1, + anon_sym_COLON_EQ, + ACTIONS(3876), 1, + sym_identifier, + ACTIONS(3878), 1, + sym_string_start, + STATE(5191), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3904), 2, - anon_sym_DOT, + ACTIONS(833), 2, anon_sym_COLON, - ACTIONS(3893), 3, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3890), 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(3885), 28, + ACTIONS(811), 10, 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_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(847), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185223,47 +187150,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [77422] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3910), 16, + ACTIONS(813), 22, + anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + anon_sym_is, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 32, + [76710] = 11, + ACTIONS(818), 1, + anon_sym_COMMA, + ACTIONS(828), 1, + anon_sym_COLON_EQ, + ACTIONS(830), 1, + anon_sym_COLON, + ACTIONS(833), 1, + anon_sym_EQ, + ACTIONS(3876), 1, + sym_identifier, + ACTIONS(3878), 1, + sym_string_start, + STATE(5191), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(811), 10, 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, + ACTIONS(847), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185277,61 +187216,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [77479] = 20, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(813), 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, + [76787] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2029), 1, - anon_sym_await, - ACTIONS(2031), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3895), 1, - anon_sym_not, - STATE(2135), 1, + ACTIONS(3862), 1, + sym_identifier, + ACTIONS(3866), 1, + anon_sym_LPAREN, + ACTIONS(3868), 1, + anon_sym_STAR, + ACTIONS(3872), 1, + anon_sym_LBRACK, + ACTIONS(3874), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2141), 1, - sym_primary_expression, - STATE(2270), 1, + STATE(3225), 1, sym_list_splat_pattern, + STATE(3248), 1, + sym_primary_expression, + STATE(3278), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 4, + ACTIONS(3880), 2, + anon_sym_from, + anon_sym_in, + STATE(3227), 2, + sym_attribute, + sym_subscript, + STATE(3274), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2013), 5, + ACTIONS(3870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2266), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -185348,223 +187318,68 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77570] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3914), 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(3912), 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, - [77627] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3868), 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(3866), 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, - [77684] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3910), 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(3908), 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, - [77741] = 20, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [76890] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2649), 1, - anon_sym_LT, - ACTIONS(3065), 1, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3895), 1, - anon_sym_not, - STATE(2220), 1, + ACTIONS(2807), 1, + anon_sym_LBRACK, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(2811), 1, + anon_sym_await, + ACTIONS(3882), 1, + sym_identifier, + ACTIONS(3884), 1, + anon_sym_LPAREN, + ACTIONS(3886), 1, + anon_sym_RPAREN, + STATE(2143), 1, sym_string, - STATE(2296), 1, - sym_primary_expression, - STATE(2608), 1, + STATE(3257), 1, sym_list_splat_pattern, + STATE(3286), 1, + sym_primary_expression, + STATE(5318), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + STATE(3259), 2, + sym_attribute, + sym_subscript, + STATE(5233), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(2805), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2603), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -185581,61 +187396,68 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77832] = 20, - ACTIONS(67), 1, + [76992] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1281), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3862), 1, + sym_identifier, + ACTIONS(3866), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(3868), 1, + anon_sym_STAR, + ACTIONS(3872), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(3874), 1, anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - ACTIONS(3895), 1, - anon_sym_not, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2053), 1, - sym_primary_expression, - STATE(2110), 1, + STATE(3225), 1, sym_list_splat_pattern, + STATE(3248), 1, + sym_primary_expression, + STATE(4813), 1, + sym_pattern, + STATE(5784), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + STATE(3227), 2, + sym_attribute, + sym_subscript, + STATE(3274), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 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(1285), 5, + ACTIONS(3870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2096), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -185652,59 +187474,68 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77923] = 19, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [77094] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2471), 1, - anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(2943), 1, + ACTIONS(3862), 1, + sym_identifier, + ACTIONS(3866), 1, + anon_sym_LPAREN, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2166), 1, + ACTIONS(3872), 1, + anon_sym_LBRACK, + ACTIONS(3874), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2227), 1, - sym_primary_expression, - STATE(2479), 1, + STATE(3225), 1, sym_list_splat_pattern, + STATE(3248), 1, + sym_primary_expression, + STATE(4955), 1, + sym_pattern, + STATE(5786), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + STATE(3227), 2, + sym_attribute, + sym_subscript, + STATE(3274), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(3870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2526), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -185721,59 +187552,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78011] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [77196] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, - anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3916), 1, - sym_identifier, - ACTIONS(3920), 1, + ACTIONS(2807), 1, + anon_sym_LBRACK, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(2811), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(3882), 1, + sym_identifier, + ACTIONS(3884), 1, + anon_sym_LPAREN, + ACTIONS(3888), 1, + anon_sym_RPAREN, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(3257), 1, sym_list_splat_pattern, - STATE(3219), 1, + STATE(3286), 1, sym_primary_expression, + STATE(5318), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3118), 2, + STATE(3259), 2, sym_attribute, sym_subscript, - ACTIONS(1237), 3, + STATE(5233), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3918), 5, + ACTIONS(2805), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -185792,59 +187630,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78103] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [77298] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, - anon_sym_STAR, - ACTIONS(3922), 1, + ACTIONS(3862), 1, sym_identifier, - ACTIONS(3926), 1, + ACTIONS(3866), 1, + anon_sym_LPAREN, + ACTIONS(3868), 1, + anon_sym_STAR, + ACTIONS(3872), 1, + anon_sym_LBRACK, + ACTIONS(3874), 1, anon_sym_await, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(3225), 1, sym_list_splat_pattern, - STATE(3208), 1, + STATE(3248), 1, sym_primary_expression, + STATE(5062), 1, + sym_pattern, + STATE(5773), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3149), 2, + STATE(3227), 2, sym_attribute, sym_subscript, - ACTIONS(1237), 3, + STATE(3274), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3924), 5, + ACTIONS(3870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -185863,59 +187708,67 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78195] = 19, - ACTIONS(1213), 1, + [77400] = 23, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2147), 1, + ACTIONS(3890), 1, + sym_identifier, + ACTIONS(3898), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3233), 1, + STATE(3284), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, + ACTIONS(3894), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(3896), 2, + anon_sym_with, + anon_sym_nogil, + STATE(2183), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(3892), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -185932,205 +187785,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78283] = 27, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(133), 1, - anon_sym_ctypedef, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3932), 1, - anon_sym_pass, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(3948), 1, - anon_sym_enum, - ACTIONS(3950), 1, - anon_sym_cppclass, - ACTIONS(3952), 1, - anon_sym_fused, - ACTIONS(3954), 1, - sym_string_start, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3492), 1, - sym_c_type, - STATE(5616), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3934), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3946), 2, - anon_sym_struct, - anon_sym_union, - STATE(2789), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(717), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(718), 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(2012), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [78387] = 19, - ACTIONS(67), 1, + [77500] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_await, - ACTIONS(3055), 1, - anon_sym_STAR, - STATE(2043), 1, - sym_string, - STATE(2060), 1, - sym_primary_expression, - STATE(2110), 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, - sym_integer, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3888), 1, + anon_sym_RBRACK, + ACTIONS(3900), 1, 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(2096), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [78475] = 21, - ACTIONS(1213), 1, + ACTIONS(3902), 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(2731), 1, - anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3904), 1, anon_sym_STAR, - ACTIONS(3956), 1, - sym_identifier, - ACTIONS(3960), 1, + ACTIONS(3908), 1, + anon_sym_LBRACK, + ACTIONS(3910), 1, anon_sym_await, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(3279), 1, sym_list_splat_pattern, - STATE(3225), 1, + STATE(3292), 1, sym_primary_expression, + STATE(5451), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2627), 2, + STATE(3280), 2, sym_attribute, sym_subscript, - ACTIONS(1237), 3, + STATE(5319), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3958), 5, + ACTIONS(3906), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -186149,59 +187863,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78567] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [77602] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, - anon_sym_STAR, - ACTIONS(3962), 1, + ACTIONS(3862), 1, sym_identifier, - ACTIONS(3966), 1, + ACTIONS(3866), 1, + anon_sym_LPAREN, + ACTIONS(3868), 1, + anon_sym_STAR, + ACTIONS(3872), 1, + anon_sym_LBRACK, + ACTIONS(3874), 1, anon_sym_await, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(3225), 1, sym_list_splat_pattern, - STATE(3194), 1, + STATE(3248), 1, sym_primary_expression, + STATE(5056), 1, + sym_pattern, + STATE(5722), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1883), 2, + STATE(3227), 2, sym_attribute, sym_subscript, - ACTIONS(1237), 3, + STATE(3274), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3964), 5, + ACTIONS(3870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -186220,55 +187941,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78659] = 19, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [77704] = 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(1312), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1325), 1, anon_sym_await, - ACTIONS(2731), 1, - anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2147), 1, + ACTIONS(3912), 1, + sym_identifier, + STATE(2100), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3195), 1, + STATE(2110), 1, sym_primary_expression, + STATE(2166), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, + ACTIONS(3894), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(3896), 2, + anon_sym_with, + anon_sym_nogil, + ACTIONS(81), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(1317), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186289,136 +188017,68 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78747] = 27, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(133), 1, - anon_sym_ctypedef, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3932), 1, - anon_sym_pass, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(3948), 1, - anon_sym_enum, - ACTIONS(3950), 1, - anon_sym_cppclass, - ACTIONS(3952), 1, - anon_sym_fused, - ACTIONS(3954), 1, - sym_string_start, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3492), 1, - sym_c_type, - STATE(5581), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3934), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3946), 2, - anon_sym_struct, - anon_sym_union, - STATE(2789), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(717), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(718), 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(2014), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [78851] = 19, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [77802] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3886), 1, + anon_sym_RBRACK, + ACTIONS(3900), 1, + sym_identifier, + ACTIONS(3902), 1, + anon_sym_LPAREN, + ACTIONS(3904), 1, anon_sym_STAR, - STATE(2147), 1, + ACTIONS(3908), 1, + anon_sym_LBRACK, + ACTIONS(3910), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(3279), 1, sym_list_splat_pattern, - STATE(3196), 1, + STATE(3292), 1, sym_primary_expression, + STATE(5451), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, + STATE(3280), 2, + sym_attribute, + sym_subscript, + STATE(5319), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(3906), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -186435,59 +188095,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78939] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [77904] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, - anon_sym_STAR, - ACTIONS(3968), 1, + ACTIONS(3862), 1, sym_identifier, - ACTIONS(3970), 1, + ACTIONS(3866), 1, + anon_sym_LPAREN, + ACTIONS(3868), 1, + anon_sym_STAR, + ACTIONS(3872), 1, + anon_sym_LBRACK, + ACTIONS(3874), 1, anon_sym_await, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(3225), 1, sym_list_splat_pattern, - STATE(3224), 1, + STATE(3248), 1, sym_primary_expression, + STATE(5099), 1, + sym_pattern, + STATE(5541), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2627), 2, + STATE(3227), 2, sym_attribute, sym_subscript, - ACTIONS(1237), 3, + STATE(3274), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3958), 5, + ACTIONS(3870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -186506,205 +188173,68 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79031] = 27, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3972), 1, - sym_identifier, - ACTIONS(3976), 1, - anon_sym_COLON, - ACTIONS(3978), 1, - anon_sym_api, - ACTIONS(3980), 1, - anon_sym_extern, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(3988), 1, - anon_sym_enum, - ACTIONS(3990), 1, - anon_sym_cppclass, - ACTIONS(3992), 1, - anon_sym_fused, - STATE(3133), 1, - sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3821), 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(3984), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3986), 2, - anon_sym_struct, - anon_sym_union, - STATE(2452), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(365), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(1579), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(1593), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(103), 4, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1587), 4, - sym_cdef_definition_block, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - ACTIONS(3974), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [79135] = 19, - ACTIONS(1328), 1, + [78006] = 24, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3862), 1, + sym_identifier, + ACTIONS(3866), 1, anon_sym_LPAREN, - ACTIONS(2447), 1, - anon_sym_await, - ACTIONS(2983), 1, + ACTIONS(3868), 1, anon_sym_STAR, + ACTIONS(3872), 1, + anon_sym_LBRACK, + ACTIONS(3874), 1, + anon_sym_await, STATE(2143), 1, sym_string, - STATE(2178), 1, - sym_primary_expression, - STATE(2403), 1, + STATE(3225), 1, sym_list_splat_pattern, + STATE(3248), 1, + sym_primary_expression, + STATE(5103), 1, + sym_pattern, + STATE(5553), 1, + sym_pattern_list, 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, + STATE(3227), 2, + sym_attribute, + sym_subscript, + STATE(3274), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2441), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2455), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [79223] = 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(2435), 1, - anon_sym_await, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, - anon_sym_STAR, - STATE(2147), 1, - sym_string, - STATE(2218), 1, - sym_primary_expression, - STATE(2451), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1227), 4, + ACTIONS(1340), 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, + ACTIONS(3870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -186721,59 +188251,64 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79311] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [78108] = 23, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, - anon_sym_STAR, - ACTIONS(3994), 1, + ACTIONS(3049), 1, sym_identifier, - ACTIONS(3998), 1, + ACTIONS(3051), 1, + anon_sym_LPAREN, + ACTIONS(3057), 1, + anon_sym_LBRACK, + ACTIONS(3059), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(3914), 1, + anon_sym_STAR, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2713), 1, sym_list_splat_pattern, - STATE(3228), 1, + STATE(3278), 1, + sym_pattern, + STATE(3287), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3130), 2, + STATE(2714), 2, sym_attribute, sym_subscript, - ACTIONS(1237), 3, + STATE(3274), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3996), 5, + ACTIONS(3055), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -186792,59 +188327,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79403] = 19, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [78207] = 23, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3900), 1, + sym_identifier, + ACTIONS(3902), 1, + anon_sym_LPAREN, + ACTIONS(3904), 1, anon_sym_STAR, - STATE(2147), 1, + ACTIONS(3908), 1, + anon_sym_LBRACK, + ACTIONS(3910), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(3279), 1, sym_list_splat_pattern, - STATE(3197), 1, + STATE(3292), 1, sym_primary_expression, + STATE(5451), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, + STATE(3280), 2, + sym_attribute, + sym_subscript, + STATE(5319), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(3906), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -186861,59 +188403,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79491] = 19, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [78306] = 23, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3862), 1, + sym_identifier, + ACTIONS(3866), 1, + anon_sym_LPAREN, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2147), 1, + ACTIONS(3872), 1, + anon_sym_LBRACK, + ACTIONS(3874), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(3225), 1, sym_list_splat_pattern, - STATE(3198), 1, + STATE(3248), 1, sym_primary_expression, + STATE(3278), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, + STATE(3227), 2, + sym_attribute, + sym_subscript, + STATE(3274), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(3870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -186930,59 +188479,64 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79579] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [78405] = 23, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, - anon_sym_STAR, - ACTIONS(4000), 1, + ACTIONS(3830), 1, sym_identifier, - ACTIONS(4004), 1, + ACTIONS(3832), 1, + anon_sym_LPAREN, + ACTIONS(3834), 1, + anon_sym_STAR, + ACTIONS(3838), 1, + anon_sym_LBRACK, + ACTIONS(3840), 1, anon_sym_await, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(3170), 1, sym_list_splat_pattern, - STATE(3208), 1, + STATE(3294), 1, sym_primary_expression, + STATE(4393), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2287), 2, + STATE(3174), 2, sym_attribute, sym_subscript, - ACTIONS(1237), 3, + STATE(4410), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4002), 5, + ACTIONS(3836), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -187001,128 +188555,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79671] = 19, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, + [78504] = 23, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2029), 1, - anon_sym_await, - ACTIONS(2031), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - STATE(2135), 1, - sym_string, - STATE(2159), 1, - sym_primary_expression, - STATE(2270), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2007), 4, - sym_integer, + ACTIONS(2771), 1, sym_identifier, - sym_true, - sym_false, - ACTIONS(2017), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2013), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2266), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [79759] = 19, - ACTIONS(2009), 1, + ACTIONS(2775), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(2781), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, - anon_sym_LBRACE, - ACTIONS(2023), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, - anon_sym_None, - ACTIONS(2027), 1, - sym_float, - ACTIONS(2029), 1, + ACTIONS(2783), 1, anon_sym_await, - ACTIONS(2031), 1, - anon_sym_sizeof, - ACTIONS(2033), 1, - sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2809), 1, anon_sym_LT, - STATE(2135), 1, + ACTIONS(3916), 1, + anon_sym_STAR, + STATE(2143), 1, sym_string, - STATE(2160), 1, - sym_primary_expression, - STATE(2270), 1, + STATE(2601), 1, sym_list_splat_pattern, + STATE(3255), 1, + sym_pattern, + STATE(3268), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 4, + STATE(2618), 2, + sym_attribute, + sym_subscript, + STATE(3249), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2013), 5, + ACTIONS(2779), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2266), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -187139,59 +188631,64 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79847] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [78603] = 23, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, - anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(2803), 1, anon_sym_STAR, - ACTIONS(3827), 1, - sym_identifier, - ACTIONS(3833), 1, + ACTIONS(2807), 1, + anon_sym_LBRACK, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(2811), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(3882), 1, + sym_identifier, + ACTIONS(3884), 1, + anon_sym_LPAREN, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(3257), 1, sym_list_splat_pattern, - STATE(3223), 1, + STATE(3286), 1, sym_primary_expression, + STATE(5318), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2638), 2, + STATE(3259), 2, sym_attribute, sym_subscript, - ACTIONS(1237), 3, + STATE(5233), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3831), 5, + ACTIONS(2805), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -187210,266 +188707,186 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79939] = 19, - ACTIONS(1382), 1, + [78702] = 10, + ACTIONS(3801), 1, + anon_sym_COMMA, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, + ACTIONS(3812), 1, + anon_sym_EQ, + ACTIONS(3918), 1, + anon_sym_COLON, + ACTIONS(3921), 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(1565), 1, - anon_sym_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, - anon_sym_await, - STATE(2239), 1, - sym_string, - STATE(2478), 1, - sym_primary_expression, - STATE(2693), 1, - sym_list_splat_pattern, + STATE(4705), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, + ACTIONS(3816), 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(3806), 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(1398), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2509), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - 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, - [80027] = 19, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, - anon_sym_LBRACE, - ACTIONS(2391), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, - anon_sym_None, - ACTIONS(2395), 1, - sym_float, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2399), 1, - anon_sym_sizeof, - ACTIONS(2401), 1, - sym_string_start, - ACTIONS(2561), 1, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT, - ACTIONS(2935), 1, - anon_sym_STAR, - STATE(2073), 1, - sym_string, - STATE(2136), 1, - sym_primary_expression, - STATE(2288), 1, - sym_list_splat_pattern, + anon_sym_GT, + ACTIONS(3795), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [78775] = 7, + ACTIONS(3801), 1, + anon_sym_COMMA, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2385), 4, + ACTIONS(3812), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3816), 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(3806), 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(2381), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2386), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [80115] = 19, - ACTIONS(2009), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3795), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2015), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(2019), 1, - anon_sym_LBRACE, - ACTIONS(2023), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, - anon_sym_None, - ACTIONS(2027), 1, - sym_float, - ACTIONS(2029), 1, - anon_sym_await, - ACTIONS(2031), 1, - anon_sym_sizeof, - ACTIONS(2033), 1, - sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - STATE(2135), 1, - sym_string, - STATE(2161), 1, - sym_primary_expression, - STATE(2270), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2007), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2017), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2013), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2266), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [80203] = 19, - ACTIONS(1213), 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, + [78841] = 22, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2147), 1, + ACTIONS(3923), 1, + sym_identifier, + ACTIONS(3929), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3192), 1, + STATE(3289), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, + ACTIONS(3925), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2726), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(3927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -187486,59 +188903,64 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80291] = 19, - ACTIONS(1213), 1, + [78937] = 22, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2147), 1, + ACTIONS(3923), 1, + sym_identifier, + ACTIONS(3929), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3199), 1, + STATE(3289), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, + ACTIONS(3931), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2726), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(3927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -187555,128 +188977,124 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80379] = 19, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, - anon_sym_LBRACE, - ACTIONS(2023), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, - anon_sym_None, - ACTIONS(2027), 1, - sym_float, - ACTIONS(2029), 1, - anon_sym_await, - ACTIONS(2031), 1, - anon_sym_sizeof, - ACTIONS(2033), 1, - sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - STATE(2135), 1, - sym_string, - STATE(2162), 1, - sym_primary_expression, - STATE(2270), 1, - sym_list_splat_pattern, + [79033] = 8, + ACTIONS(818), 1, + anon_sym_COMMA, + ACTIONS(828), 1, + anon_sym_COLON_EQ, + ACTIONS(830), 1, + anon_sym_COLON, + ACTIONS(833), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2017), 4, + ACTIONS(847), 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(813), 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(2013), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2266), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [80467] = 19, - ACTIONS(2009), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(811), 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, + [79101] = 22, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2029), 1, - anon_sym_await, - ACTIONS(2031), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2809), 1, anon_sym_LT, - STATE(2135), 1, + ACTIONS(3868), 1, + anon_sym_STAR, + ACTIONS(3933), 1, + sym_identifier, + ACTIONS(3939), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2163), 1, - sym_primary_expression, - STATE(2270), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3248), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 4, + ACTIONS(3935), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3200), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2013), 5, + ACTIONS(3937), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2266), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -187693,59 +189111,64 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80555] = 19, - ACTIONS(2009), 1, + [79197] = 22, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2029), 1, - anon_sym_await, - ACTIONS(2031), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2809), 1, anon_sym_LT, - STATE(2135), 1, + ACTIONS(3868), 1, + anon_sym_STAR, + ACTIONS(3941), 1, + sym_identifier, + ACTIONS(3945), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2164), 1, - sym_primary_expression, - STATE(2270), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3286), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 4, + ACTIONS(3935), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3176), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2013), 5, + ACTIONS(3943), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2266), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -187762,55 +189185,2447 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80643] = 19, - ACTIONS(2009), 1, - anon_sym_LPAREN, - ACTIONS(2015), 1, - anon_sym_LBRACK, - ACTIONS(2019), 1, - anon_sym_LBRACE, - ACTIONS(2023), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, - anon_sym_None, - ACTIONS(2027), 1, - sym_float, - ACTIONS(2029), 1, - anon_sym_await, - ACTIONS(2031), 1, - anon_sym_sizeof, - ACTIONS(2033), 1, - sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, - anon_sym_LT, - STATE(2135), 1, - sym_string, - STATE(2165), 1, - sym_primary_expression, - STATE(2270), 1, - sym_list_splat_pattern, + [79293] = 7, + ACTIONS(818), 1, + anon_sym_COMMA, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 4, - sym_integer, + ACTIONS(833), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(847), 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(813), 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(811), 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, + [79359] = 7, + ACTIONS(3959), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3949), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(3951), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3957), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3954), 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(3947), 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, + [79424] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3963), 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(3961), 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, + [79481] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3967), 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(3965), 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, + [79538] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1332), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1530), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1329), 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(1327), 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, + [79599] = 6, + ACTIONS(3812), 1, + anon_sym_EQ, + ACTIONS(3971), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3816), 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(3974), 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(3969), 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, + [79662] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3978), 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(3976), 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, + [79719] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3982), 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(3980), 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, + [79776] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3982), 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(3980), 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, + [79833] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3951), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3957), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3954), 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(3947), 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, + [79894] = 6, + ACTIONS(3812), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3971), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3816), 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(3974), 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(3969), 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, + [79957] = 6, + ACTIONS(3812), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3801), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3816), 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(3806), 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(3795), 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, + [80020] = 6, + ACTIONS(3991), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3986), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3993), 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(3989), 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(3984), 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, + [80083] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3963), 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(3961), 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, + [80140] = 6, + ACTIONS(4002), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3997), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4004), 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(4000), 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(3995), 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, + [80203] = 20, + ACTIONS(1360), 1, + anon_sym_LBRACE, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1372), 1, + anon_sym_None, + ACTIONS(1376), 1, + sym_float, + ACTIONS(1392), 1, + anon_sym_sizeof, + ACTIONS(1394), 1, + sym_string_start, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_await, + ACTIONS(3041), 1, + anon_sym_STAR, + ACTIONS(4006), 1, + anon_sym_not, + STATE(2202), 1, + sym_string, + STATE(2263), 1, + sym_primary_expression, + STATE(2604), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1358), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1374), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2409), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2556), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [80294] = 20, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_LBRACE, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1426), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, + sym_float, + ACTIONS(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(2545), 1, + anon_sym_await, + ACTIONS(4006), 1, + anon_sym_not, + STATE(2410), 1, + sym_string, + STATE(2527), 1, + sym_primary_expression, + STATE(2703), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1416), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1430), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2541), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2710), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [80385] = 20, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2525), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 1, + sym_float, + ACTIONS(2531), 1, + anon_sym_await, + ACTIONS(2533), 1, + anon_sym_sizeof, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(3141), 1, + anon_sym_STAR, + ACTIONS(4006), 1, + anon_sym_not, + STATE(2292), 1, + sym_string, + STATE(2490), 1, + sym_primary_expression, + STATE(2642), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2509), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2519), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2515), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2647), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [80476] = 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(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1325), 1, + anon_sym_await, + ACTIONS(3110), 1, + anon_sym_STAR, + ACTIONS(4006), 1, + anon_sym_not, + STATE(2100), 1, + sym_string, + STATE(2101), 1, + sym_primary_expression, + STATE(2166), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1317), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [80567] = 6, + ACTIONS(3801), 1, + anon_sym_COMMA, + ACTIONS(3812), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3816), 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(3806), 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(3795), 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, + [80630] = 6, + ACTIONS(3986), 1, + anon_sym_COMMA, + ACTIONS(3991), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3993), 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(3989), 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(3984), 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, + [80693] = 20, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(2497), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2499), 1, + anon_sym_None, + ACTIONS(2501), 1, + sym_float, + ACTIONS(2503), 1, + anon_sym_await, + ACTIONS(2505), 1, + anon_sym_sizeof, + ACTIONS(2507), 1, + sym_string_start, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(3033), 1, + anon_sym_STAR, + ACTIONS(4006), 1, + anon_sym_not, + STATE(2229), 1, + sym_string, + STATE(2249), 1, + sym_primary_expression, + STATE(2546), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2481), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2491), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2487), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2512), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [80784] = 20, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(1603), 1, + anon_sym_await, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + ACTIONS(4006), 1, + anon_sym_not, + STATE(2143), 1, + sym_string, + STATE(2230), 1, + sym_primary_expression, + STATE(2349), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1269), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1336), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [80875] = 20, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(1989), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1991), 1, + anon_sym_None, + ACTIONS(1993), 1, + sym_float, + ACTIONS(1995), 1, + anon_sym_await, + ACTIONS(1997), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + sym_string_start, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, + anon_sym_LT, + ACTIONS(4006), 1, + anon_sym_not, + STATE(2153), 1, + sym_string, + STATE(2216), 1, + sym_primary_expression, + STATE(2421), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1973), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1983), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1979), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2347), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [80966] = 20, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, + anon_sym_LBRACE, + ACTIONS(2453), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2455), 1, + anon_sym_None, + ACTIONS(2457), 1, + sym_float, + ACTIONS(2459), 1, + anon_sym_await, + ACTIONS(2461), 1, + anon_sym_sizeof, + ACTIONS(2463), 1, + sym_string_start, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(3076), 1, + anon_sym_STAR, + ACTIONS(4006), 1, + anon_sym_not, + STATE(2193), 1, + sym_string, + STATE(2240), 1, + sym_primary_expression, + STATE(2449), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2437), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2447), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2443), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2328), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [81057] = 6, + ACTIONS(3997), 1, + anon_sym_COMMA, + ACTIONS(4002), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4004), 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(4000), 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(3995), 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, + [81120] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4010), 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(4008), 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, + [81177] = 19, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(1603), 1, + anon_sym_await, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, + anon_sym_STAR, + STATE(2143), 1, + sym_string, + STATE(2201), 1, + sym_primary_expression, + STATE(2349), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1259), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1269), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1336), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [81265] = 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(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1325), 1, + anon_sym_await, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2100), 1, + sym_string, + STATE(2102), 1, + sym_primary_expression, + STATE(2166), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1317), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [81353] = 21, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, + anon_sym_STAR, + ACTIONS(4012), 1, + sym_identifier, + ACTIONS(4016), 1, + anon_sym_await, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3248), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2255), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4014), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2443), 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, + [81445] = 19, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(2497), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2499), 1, + anon_sym_None, + ACTIONS(2501), 1, + sym_float, + ACTIONS(2503), 1, + anon_sym_await, + ACTIONS(2505), 1, + anon_sym_sizeof, + ACTIONS(2507), 1, + sym_string_start, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(3033), 1, + anon_sym_STAR, + STATE(2229), 1, + sym_string, + STATE(2281), 1, + sym_primary_expression, + STATE(2546), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2481), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2491), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2487), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2512), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [81533] = 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(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1325), 1, + anon_sym_await, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2100), 1, + sym_string, + STATE(2113), 1, + sym_primary_expression, + STATE(2166), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1317), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [81621] = 19, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(2497), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2499), 1, + anon_sym_None, + ACTIONS(2501), 1, + sym_float, + ACTIONS(2503), 1, + anon_sym_await, + ACTIONS(2505), 1, + anon_sym_sizeof, + ACTIONS(2507), 1, + sym_string_start, + ACTIONS(2561), 1, + anon_sym_LT, + ACTIONS(3033), 1, + anon_sym_STAR, + STATE(2229), 1, + sym_string, + STATE(2247), 1, + sym_primary_expression, + STATE(2546), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2481), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2491), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2487), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2512), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [81709] = 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(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1325), 1, + anon_sym_await, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2100), 1, + sym_string, + STATE(2106), 1, + sym_primary_expression, + STATE(2166), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1317), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [81797] = 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(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1325), 1, + anon_sym_await, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2100), 1, + sym_string, + STATE(2112), 1, + sym_primary_expression, + STATE(2166), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1317), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [81885] = 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(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1325), 1, + anon_sym_await, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2100), 1, + sym_string, + STATE(2110), 1, + sym_primary_expression, + STATE(2166), 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, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1317), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2194), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [81973] = 19, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_LBRACE, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1426), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, + sym_float, + ACTIONS(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(2545), 1, + anon_sym_await, + STATE(2410), 1, + sym_string, + STATE(2606), 1, + sym_primary_expression, + STATE(2703), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1416), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1430), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2541), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2710), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [82061] = 19, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_LBRACE, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1426), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, + sym_float, + ACTIONS(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(2545), 1, + anon_sym_await, + STATE(2410), 1, + sym_string, + STATE(2611), 1, + sym_primary_expression, + STATE(2703), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1416), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1430), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2541), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2710), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [82149] = 19, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_LBRACE, + ACTIONS(2525), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2529), 1, + sym_float, + ACTIONS(2531), 1, + anon_sym_await, + ACTIONS(2533), 1, + anon_sym_sizeof, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(3141), 1, + anon_sym_STAR, + STATE(2292), 1, + sym_string, + STATE(2490), 1, + sym_primary_expression, + STATE(2642), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2509), 4, + sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2013), 5, + ACTIONS(2515), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2266), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -187831,61 +191646,335 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80731] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, + [82237] = 19, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2731), 1, - anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(4004), 1, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(2545), 1, anon_sym_await, - ACTIONS(4006), 1, + STATE(2410), 1, + sym_string, + STATE(2587), 1, + sym_primary_expression, + STATE(2703), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1416), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1430), 4, + sym_integer, sym_identifier, - STATE(2147), 1, + sym_true, + sym_false, + ACTIONS(2541), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2710), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [82325] = 19, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_LBRACE, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1426), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, + sym_float, + ACTIONS(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(2545), 1, + anon_sym_await, + STATE(2410), 1, sym_string, - STATE(2451), 1, + STATE(2589), 1, + sym_primary_expression, + STATE(2703), 1, sym_list_splat_pattern, - STATE(3208), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1416), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1430), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2541), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2710), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [82413] = 19, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_LBRACE, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1426), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, + sym_float, + ACTIONS(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(2545), 1, + anon_sym_await, + STATE(2410), 1, + sym_string, + STATE(2591), 1, sym_primary_expression, + STATE(2703), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2287), 2, + ACTIONS(1416), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1430), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2541), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2710), 20, + sym_binary_operator, + sym_unary_operator, sym_attribute, sym_subscript, - ACTIONS(1237), 3, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [82501] = 19, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_LBRACE, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1426), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, + sym_float, + ACTIONS(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(2545), 1, + anon_sym_await, + STATE(2410), 1, + sym_string, + STATE(2596), 1, + sym_primary_expression, + STATE(2703), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1416), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1430), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2541), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2710), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [82589] = 19, + ACTIONS(1414), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_LBRACE, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1426), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1432), 1, + sym_float, + ACTIONS(1438), 1, + anon_sym_sizeof, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(1597), 1, + anon_sym_STAR, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(2545), 1, + anon_sym_await, + STATE(2410), 1, + sym_string, + STATE(2506), 1, + sym_primary_expression, + STATE(2703), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4002), 5, + ACTIONS(1430), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2541), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -187902,55 +191991,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80823] = 19, - ACTIONS(1213), 1, + [82677] = 19, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2503), 1, + anon_sym_await, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(1312), 1, - anon_sym_await, - ACTIONS(2731), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2147), 1, + STATE(2229), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3200), 1, + STATE(2277), 1, sym_primary_expression, + STATE(2546), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1237), 4, + ACTIONS(2481), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1304), 5, + ACTIONS(2487), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -187971,55 +192060,126 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80911] = 19, - ACTIONS(1213), 1, + [82765] = 21, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, + anon_sym_STAR, + ACTIONS(4016), 1, + anon_sym_await, + ACTIONS(4018), 1, + sym_identifier, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3248), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2255), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4014), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2443), 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, + [82857] = 19, ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2435), 1, + ACTIONS(1603), 1, anon_sym_await, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2225), 1, + STATE(2203), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(1269), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188040,55 +192200,201 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80999] = 19, - ACTIONS(1213), 1, + [82945] = 27, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4020), 1, + sym_identifier, + ACTIONS(4024), 1, + anon_sym_COLON, + ACTIONS(4026), 1, + anon_sym_api, + ACTIONS(4028), 1, + anon_sym_extern, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4036), 1, + anon_sym_enum, + ACTIONS(4038), 1, + anon_sym_cppclass, + ACTIONS(4040), 1, + anon_sym_fused, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3929), 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(4032), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4034), 2, + anon_sym_struct, + anon_sym_union, + STATE(2514), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(1768), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(1772), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(103), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1770), 4, + sym_cdef_definition_block, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + ACTIONS(4022), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [83049] = 19, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2503), 1, + anon_sym_await, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2435), 1, - anon_sym_await, - ACTIONS(2741), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2147), 1, + STATE(2229), 1, sym_string, - STATE(2226), 1, + STATE(2303), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2546), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, + ACTIONS(2481), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(2487), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2512), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [83137] = 19, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(1344), 1, + anon_sym_await, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, + anon_sym_STAR, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3271), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(1340), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188109,61 +192415,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81087] = 21, - ACTIONS(1213), 1, + [83225] = 19, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(1344), 1, + anon_sym_await, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3868), 1, anon_sym_STAR, - ACTIONS(3794), 1, - anon_sym_await, - ACTIONS(4008), 1, - sym_identifier, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3215), 1, + STATE(3283), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2128), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(1269), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3788), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -188180,55 +192484,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81179] = 19, - ACTIONS(1213), 1, + [83313] = 19, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2435), 1, + ACTIONS(1603), 1, anon_sym_await, - ACTIONS(2741), 1, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2228), 1, + STATE(2230), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(1269), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188249,55 +192553,124 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81267] = 19, - ACTIONS(1213), 1, + [83401] = 19, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2435), 1, + ACTIONS(1344), 1, anon_sym_await, - ACTIONS(2741), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2229), 1, - sym_primary_expression, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3269), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, + ACTIONS(1269), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(1336), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [83489] = 19, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, + anon_sym_LBRACE, + ACTIONS(2453), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2455), 1, + anon_sym_None, + ACTIONS(2457), 1, + sym_float, + ACTIONS(2459), 1, + anon_sym_await, + ACTIONS(2461), 1, + anon_sym_sizeof, + ACTIONS(2463), 1, + sym_string_start, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(3076), 1, + anon_sym_STAR, + STATE(2193), 1, + sym_string, + STATE(2213), 1, + sym_primary_expression, + STATE(2449), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2437), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(2447), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2443), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188318,55 +192691,124 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81355] = 19, - ACTIONS(1213), 1, + [83577] = 19, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2435), 1, + ACTIONS(1344), 1, anon_sym_await, - ACTIONS(2741), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2230), 1, - sym_primary_expression, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3261), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, + ACTIONS(1269), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(1336), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [83665] = 19, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(1344), 1, + anon_sym_await, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, + anon_sym_STAR, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3266), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(1340), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188387,55 +192829,124 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81443] = 19, - ACTIONS(1328), 1, + [83753] = 19, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(1344), 1, anon_sym_await, - ACTIONS(2983), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, anon_sym_STAR, STATE(2143), 1, sym_string, - STATE(2196), 1, - sym_primary_expression, - STATE(2403), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3267), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + ACTIONS(1269), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1342), 4, + ACTIONS(1336), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2443), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [83841] = 19, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(1344), 1, + anon_sym_await, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, + anon_sym_STAR, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3295), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1269), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2441), 5, + ACTIONS(1340), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2455), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188456,55 +192967,264 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81531] = 19, - ACTIONS(1213), 1, + [83929] = 19, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2457), 1, sym_float, + ACTIONS(2459), 1, + anon_sym_await, + ACTIONS(2461), 1, + anon_sym_sizeof, + ACTIONS(2463), 1, + sym_string_start, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(3076), 1, + anon_sym_STAR, + STATE(2193), 1, + sym_string, + STATE(2214), 1, + sym_primary_expression, + STATE(2449), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2437), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2447), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2443), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2328), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [84017] = 21, ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2435), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, + anon_sym_STAR, + ACTIONS(4042), 1, + sym_identifier, + ACTIONS(4046), 1, + anon_sym_await, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3288), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2414), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4044), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2443), 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, + [84109] = 19, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(2493), 1, + anon_sym_LBRACE, + ACTIONS(2497), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2499), 1, + anon_sym_None, + ACTIONS(2501), 1, + sym_float, + ACTIONS(2503), 1, anon_sym_await, - ACTIONS(2741), 1, + ACTIONS(2505), 1, + anon_sym_sizeof, + ACTIONS(2507), 1, + sym_string_start, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2147), 1, + STATE(2229), 1, sym_string, - STATE(2231), 1, + STATE(2284), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2546), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, + ACTIONS(2481), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(2487), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2512), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [84197] = 19, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(1989), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1991), 1, + anon_sym_None, + ACTIONS(1993), 1, + sym_float, + ACTIONS(1995), 1, + anon_sym_await, + ACTIONS(1997), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + sym_string_start, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, + anon_sym_LT, + STATE(2153), 1, + sym_string, + STATE(2216), 1, + sym_primary_expression, + STATE(2421), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1973), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(1983), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1979), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188525,55 +193245,195 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81619] = 19, - ACTIONS(1213), 1, + [84285] = 19, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2459), 1, + anon_sym_await, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2435), 1, - anon_sym_await, - ACTIONS(2741), 1, + ACTIONS(2589), 1, anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2147), 1, + STATE(2193), 1, sym_string, - STATE(2232), 1, + STATE(2244), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2449), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2437), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2447), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2443), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2328), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [84373] = 21, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, + anon_sym_LBRACE, + ACTIONS(1265), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1271), 1, + sym_float, + ACTIONS(1277), 1, + anon_sym_sizeof, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, + anon_sym_STAR, + ACTIONS(3923), 1, + sym_identifier, + ACTIONS(3929), 1, + anon_sym_await, + STATE(2143), 1, + sym_string, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3289), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1227), 4, + STATE(2726), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1237), 4, + ACTIONS(3927), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2443), 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, + [84465] = 19, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2449), 1, + anon_sym_LBRACE, + ACTIONS(2453), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2455), 1, + anon_sym_None, + ACTIONS(2457), 1, + sym_float, + ACTIONS(2459), 1, + anon_sym_await, + ACTIONS(2461), 1, + anon_sym_sizeof, + ACTIONS(2463), 1, + sym_string_start, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(3076), 1, + anon_sym_STAR, + STATE(2193), 1, + sym_string, + STATE(2243), 1, + sym_primary_expression, + STATE(2449), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2437), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1304), 5, + ACTIONS(2447), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2443), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188594,61 +193454,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81707] = 21, - ACTIONS(1213), 1, + [84553] = 19, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2459), 1, + anon_sym_await, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2589), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(3845), 1, - sym_identifier, - ACTIONS(3849), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2193), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3219), 1, + STATE(2231), 1, sym_primary_expression, + STATE(2449), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3108), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(2437), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3847), 5, + ACTIONS(2443), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -188665,55 +193523,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81799] = 19, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [84641] = 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(2435), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1325), 1, anon_sym_await, - ACTIONS(2741), 1, - anon_sym_LT, - ACTIONS(3025), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2147), 1, + STATE(2100), 1, sym_string, - STATE(2233), 1, + STATE(2118), 1, sym_primary_expression, - STATE(2451), 1, + STATE(2166), 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(1317), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188734,61 +193592,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81887] = 21, - ACTIONS(1213), 1, + [84729] = 19, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2531), 1, + anon_sym_await, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(3833), 1, - anon_sym_await, - ACTIONS(4010), 1, - sym_identifier, - STATE(2147), 1, + STATE(2292), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3219), 1, + STATE(2306), 1, sym_primary_expression, + STATE(2642), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2405), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(2509), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4012), 5, + ACTIONS(2515), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -188805,55 +193661,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81979] = 19, - ACTIONS(67), 1, + [84817] = 19, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2531), 1, + anon_sym_await, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(2292), 1, sym_string, - STATE(2052), 1, + STATE(2366), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2642), 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(2509), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(2519), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2515), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2096), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188874,55 +193730,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82067] = 19, - ACTIONS(2009), 1, + [84905] = 19, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2029), 1, + ACTIONS(2531), 1, anon_sym_await, - ACTIONS(2031), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2669), 1, - anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2681), 1, anon_sym_LT, - STATE(2135), 1, + ACTIONS(3141), 1, + anon_sym_STAR, + STATE(2292), 1, sym_string, - STATE(2172), 1, + STATE(2368), 1, sym_primary_expression, - STATE(2270), 1, + STATE(2642), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 4, + ACTIONS(2509), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2013), 5, + ACTIONS(2515), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2266), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -188943,61 +193799,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82155] = 21, - ACTIONS(1213), 1, + [84993] = 19, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2531), 1, + anon_sym_await, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(4014), 1, - sym_identifier, - ACTIONS(4018), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2292), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3230), 1, + STATE(2370), 1, sym_primary_expression, + STATE(2642), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2440), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(2509), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4016), 5, + ACTIONS(2515), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189014,59 +193868,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82247] = 19, - ACTIONS(2451), 1, + [85081] = 21, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2471), 1, - anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(2943), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2166), 1, + ACTIONS(4048), 1, + sym_identifier, + ACTIONS(4052), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2223), 1, - sym_primary_expression, - STATE(2479), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3248), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + STATE(3214), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(4050), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2526), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189083,55 +193939,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82335] = 19, - ACTIONS(1382), 1, + [85173] = 19, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(2531), 1, + anon_sym_await, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, - anon_sym_await, - STATE(2239), 1, + STATE(2292), 1, sym_string, - STATE(2549), 1, + STATE(2371), 1, sym_primary_expression, - STATE(2693), 1, + STATE(2642), 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(2509), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2509), 5, + ACTIONS(2519), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2515), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2651), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189152,59 +194008,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82423] = 19, - ACTIONS(1382), 1, + [85261] = 21, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, anon_sym_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, + ACTIONS(3929), 1, anon_sym_await, - STATE(2239), 1, + ACTIONS(4054), 1, + sym_identifier, + STATE(2143), 1, sym_string, - STATE(2551), 1, - sym_primary_expression, - STATE(2693), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3286), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, + STATE(2537), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1398), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2509), 5, + ACTIONS(4056), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2651), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189221,55 +194079,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82511] = 19, - ACTIONS(2479), 1, + [85353] = 19, + ACTIONS(2511), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(2499), 1, + ACTIONS(2531), 1, anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(2649), 1, + ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(3065), 1, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2220), 1, + STATE(2292), 1, sym_string, - STATE(2296), 1, + STATE(2373), 1, sym_primary_expression, - STATE(2608), 1, + STATE(2642), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(2509), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2519), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(2515), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2603), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189290,55 +194148,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82599] = 19, - ACTIONS(1382), 1, + [85441] = 19, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(1995), 1, + anon_sym_await, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, - anon_sym_await, - STATE(2239), 1, + ACTIONS(2705), 1, + anon_sym_LT, + STATE(2153), 1, sym_string, - STATE(2552), 1, + STATE(2207), 1, sym_primary_expression, - STATE(2693), 1, + STATE(2421), 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(1973), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2509), 5, + ACTIONS(1983), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1979), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2651), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189359,55 +194217,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82687] = 19, - ACTIONS(1382), 1, + [85529] = 19, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(2531), 1, + anon_sym_await, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(3141), 1, anon_sym_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, - anon_sym_await, - STATE(2239), 1, + STATE(2292), 1, sym_string, - STATE(2553), 1, + STATE(2374), 1, sym_primary_expression, - STATE(2693), 1, + STATE(2642), 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(2509), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2509), 5, + ACTIONS(2519), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2515), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2651), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189428,55 +194286,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82775] = 19, - ACTIONS(2451), 1, + [85617] = 19, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(2471), 1, + ACTIONS(2459), 1, anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(2589), 1, anon_sym_LT, - ACTIONS(2943), 1, + ACTIONS(3076), 1, anon_sym_STAR, - STATE(2166), 1, + STATE(2193), 1, sym_string, - STATE(2200), 1, + STATE(2232), 1, sym_primary_expression, - STATE(2479), 1, + STATE(2449), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + ACTIONS(2437), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(2443), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2526), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189497,55 +194355,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82863] = 19, - ACTIONS(1382), 1, + [85705] = 19, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(2459), 1, + anon_sym_await, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, - anon_sym_await, - STATE(2239), 1, + STATE(2193), 1, sym_string, - STATE(2555), 1, + STATE(2199), 1, sym_primary_expression, - STATE(2693), 1, + STATE(2449), 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(2437), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2509), 5, + ACTIONS(2447), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2443), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2651), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189566,59 +194424,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82951] = 19, - ACTIONS(2451), 1, + [85793] = 21, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2471), 1, - anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(2943), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2166), 1, + ACTIONS(4058), 1, + sym_identifier, + ACTIONS(4062), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2183), 1, - sym_primary_expression, - STATE(2479), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3291), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + STATE(2685), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(4060), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2526), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189635,55 +194495,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83039] = 19, - ACTIONS(1382), 1, + [85885] = 19, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, + ACTIONS(1422), 1, anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(1597), 1, anon_sym_STAR, - ACTIONS(2505), 1, + ACTIONS(2537), 1, anon_sym_LPAREN, - ACTIONS(2513), 1, + ACTIONS(2545), 1, anon_sym_await, - STATE(2239), 1, + STATE(2410), 1, sym_string, - STATE(2556), 1, + STATE(2502), 1, sym_primary_expression, - STATE(2693), 1, + STATE(2703), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1398), 4, + ACTIONS(1430), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2509), 5, + ACTIONS(2541), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2651), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189704,61 +194564,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83127] = 21, - ACTIONS(1213), 1, + [85973] = 19, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2459), 1, + anon_sym_await, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2589), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(3827), 1, - sym_identifier, - ACTIONS(4020), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2193), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3219), 1, + STATE(2240), 1, sym_primary_expression, + STATE(2449), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2638), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(2437), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2447), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3831), 5, + ACTIONS(2443), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189775,61 +194633,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83219] = 21, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1219), 1, - anon_sym_LBRACK, - ACTIONS(1223), 1, + [86061] = 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(2731), 1, - anon_sym_LT, - ACTIONS(3764), 1, - anon_sym_STAR, - ACTIONS(3966), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1325), 1, anon_sym_await, - ACTIONS(4022), 1, - sym_identifier, - STATE(2147), 1, + ACTIONS(3110), 1, + anon_sym_STAR, + STATE(2100), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3194), 1, + STATE(2105), 1, sym_primary_expression, + STATE(2166), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1883), 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(3964), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1317), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -189846,7 +194702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83311] = 19, + [86149] = 19, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -189861,19 +194717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sizeof, ACTIONS(107), 1, sym_string_start, - ACTIONS(1281), 1, + ACTIONS(1313), 1, anon_sym_LPAREN, - ACTIONS(1287), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1325), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(2100), 1, sym_string, - STATE(2055), 1, + STATE(2101), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2166), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -189888,13 +194744,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(1317), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2096), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -189915,59 +194771,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83399] = 21, - ACTIONS(1213), 1, + [86237] = 21, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3868), 1, anon_sym_STAR, - ACTIONS(3835), 1, - sym_identifier, - ACTIONS(3841), 1, + ACTIONS(4062), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(4064), 1, + sym_identifier, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3208), 1, + STATE(3292), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3150), 2, + STATE(2511), 2, sym_attribute, sym_subscript, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3839), 5, + ACTIONS(4066), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -189986,55 +194842,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83491] = 19, - ACTIONS(1328), 1, + [86329] = 19, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2517), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(2529), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(2531), 1, + anon_sym_await, + ACTIONS(2533), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, - anon_sym_await, - ACTIONS(2983), 1, + ACTIONS(2681), 1, + anon_sym_LT, + ACTIONS(3141), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2292), 1, sym_string, - STATE(2192), 1, + STATE(2423), 1, sym_primary_expression, - STATE(2403), 1, + STATE(2642), 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(2509), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2441), 5, + ACTIONS(2519), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2515), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2455), 20, + STATE(2647), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190055,59 +194911,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83579] = 21, - ACTIONS(1213), 1, + [86417] = 21, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3868), 1, anon_sym_STAR, - ACTIONS(3956), 1, - sym_identifier, - ACTIONS(3970), 1, + ACTIONS(4046), 1, anon_sym_await, - STATE(2147), 1, + ACTIONS(4068), 1, + sym_identifier, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3224), 1, + STATE(3293), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2627), 2, + STATE(2445), 2, sym_attribute, sym_subscript, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3958), 5, + ACTIONS(4070), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -190126,59 +194982,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83671] = 19, - ACTIONS(67), 1, + [86509] = 21, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2043), 1, + ACTIONS(3923), 1, + sym_identifier, + ACTIONS(4072), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2045), 1, - sym_primary_expression, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3286), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + STATE(2726), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 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(1285), 5, + ACTIONS(3927), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2096), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -190195,59 +195053,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83759] = 19, - ACTIONS(67), 1, + [86601] = 21, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2043), 1, + ACTIONS(4074), 1, + sym_identifier, + ACTIONS(4078), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2056), 1, - sym_primary_expression, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3272), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + STATE(1941), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 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(1285), 5, + ACTIONS(4076), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2096), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -190264,59 +195124,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83847] = 19, - ACTIONS(1382), 1, + [86693] = 21, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, anon_sym_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, + ACTIONS(3933), 1, + sym_identifier, + ACTIONS(3939), 1, anon_sym_await, - STATE(2239), 1, + STATE(2143), 1, sym_string, - STATE(2447), 1, - sym_primary_expression, - STATE(2693), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3248), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 4, + STATE(3200), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1398), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2509), 5, + ACTIONS(3937), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2651), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -190333,59 +195195,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83935] = 19, - ACTIONS(67), 1, + [86785] = 21, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2043), 1, + ACTIONS(3890), 1, + sym_identifier, + ACTIONS(3898), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2057), 1, - sym_primary_expression, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3284), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + STATE(2183), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 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(1285), 5, + ACTIONS(3892), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2096), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -190402,59 +195266,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84023] = 19, - ACTIONS(1328), 1, + [86877] = 21, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, - anon_sym_await, - ACTIONS(2983), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, anon_sym_STAR, + ACTIONS(4080), 1, + sym_identifier, + ACTIONS(4084), 1, + anon_sym_await, STATE(2143), 1, sym_string, - STATE(2193), 1, - sym_primary_expression, - STATE(2403), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3287), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + STATE(2745), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 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(2441), 5, + ACTIONS(4082), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2455), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -190471,59 +195337,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84111] = 19, - ACTIONS(67), 1, + [86969] = 21, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2043), 1, + ACTIONS(4058), 1, + sym_identifier, + ACTIONS(4086), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2058), 1, - sym_primary_expression, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3292), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + STATE(2685), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 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(1285), 5, + ACTIONS(4060), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2096), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -190540,59 +195408,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84199] = 19, - ACTIONS(2451), 1, + [87061] = 21, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2471), 1, - anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(2943), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2166), 1, + ACTIONS(4088), 1, + sym_identifier, + ACTIONS(4092), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2209), 1, - sym_primary_expression, - STATE(2479), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3294), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + STATE(3180), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(4090), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2526), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -190609,59 +195479,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84287] = 19, - ACTIONS(2479), 1, + [87153] = 21, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2649), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3065), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2220), 1, + ACTIONS(3941), 1, + sym_identifier, + ACTIONS(3945), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2316), 1, - sym_primary_expression, - STATE(2608), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3286), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + STATE(3176), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(3943), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2603), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -190678,59 +195550,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84375] = 19, - ACTIONS(2479), 1, + [87245] = 21, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2649), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3065), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2220), 1, + ACTIONS(4094), 1, + sym_identifier, + ACTIONS(4098), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2317), 1, - sym_primary_expression, - STATE(2608), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3268), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + STATE(2558), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(4096), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2603), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -190747,55 +195621,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84463] = 19, - ACTIONS(2479), 1, + [87337] = 19, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2649), 1, + ACTIONS(1344), 1, + anon_sym_await, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3065), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2220), 1, + STATE(2143), 1, sym_string, - STATE(2318), 1, - sym_primary_expression, - STATE(2608), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3285), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(1269), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2603), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190816,55 +195690,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84551] = 19, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [87425] = 19, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2649), 1, - anon_sym_LT, - ACTIONS(3065), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_await, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2220), 1, + STATE(2202), 1, sym_string, - STATE(2319), 1, + STATE(2274), 1, sym_primary_expression, - STATE(2608), 1, + STATE(2604), 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(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(1374), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2409), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2603), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190885,55 +195759,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84639] = 19, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, + [87513] = 19, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2399), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2935), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_await, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2073), 1, + STATE(2202), 1, sym_string, - STATE(2139), 1, + STATE(2258), 1, sym_primary_expression, - STATE(2288), 1, + STATE(2604), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2385), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2381), 5, + ACTIONS(1374), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2409), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2386), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190954,55 +195828,124 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84727] = 19, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [87601] = 19, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2649), 1, - anon_sym_LT, - ACTIONS(3065), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_await, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2220), 1, + STATE(2202), 1, sym_string, - STATE(2320), 1, + STATE(2263), 1, sym_primary_expression, - STATE(2608), 1, + STATE(2604), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(1358), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1374), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(2409), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2556), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [87689] = 19, + ACTIONS(1360), 1, + anon_sym_LBRACE, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1372), 1, + anon_sym_None, + ACTIONS(1376), 1, + sym_float, + ACTIONS(1392), 1, + anon_sym_sizeof, + ACTIONS(1394), 1, + sym_string_start, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_await, + ACTIONS(3041), 1, + anon_sym_STAR, + STATE(2202), 1, + sym_string, + STATE(2267), 1, + sym_primary_expression, + STATE(2604), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(1374), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2409), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2603), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191023,55 +195966,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84815] = 19, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [87777] = 19, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2497), 1, - sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1372), 1, + anon_sym_None, + ACTIONS(1376), 1, + sym_float, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2649), 1, - anon_sym_LT, - ACTIONS(3065), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_await, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2220), 1, + STATE(2202), 1, sym_string, - STATE(2393), 1, + STATE(2268), 1, sym_primary_expression, - STATE(2608), 1, + STATE(2604), 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(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(1374), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2409), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2603), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191092,55 +196035,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84903] = 19, - ACTIONS(2479), 1, - anon_sym_LPAREN, - ACTIONS(2485), 1, - anon_sym_LBRACK, - ACTIONS(2489), 1, + [87865] = 19, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2649), 1, - anon_sym_LT, - ACTIONS(3065), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_await, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2220), 1, + STATE(2202), 1, sym_string, - STATE(2322), 1, + STATE(2264), 1, sym_primary_expression, - STATE(2608), 1, + STATE(2604), 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(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(1374), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2409), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2603), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191161,68 +196104,68 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84991] = 27, + [87953] = 27, ACTIONS(125), 1, anon_sym_class, ACTIONS(133), 1, anon_sym_ctypedef, - ACTIONS(3928), 1, + ACTIONS(4100), 1, sym_identifier, - ACTIONS(3930), 1, + ACTIONS(4102), 1, anon_sym_LPAREN, - ACTIONS(3932), 1, + ACTIONS(4104), 1, anon_sym_pass, - ACTIONS(3942), 1, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(3948), 1, + ACTIONS(4120), 1, anon_sym_enum, - ACTIONS(3950), 1, + ACTIONS(4122), 1, anon_sym_cppclass, - ACTIONS(3952), 1, + ACTIONS(4124), 1, anon_sym_fused, - ACTIONS(3954), 1, + ACTIONS(4126), 1, sym_string_start, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(3492), 1, + STATE(3568), 1, sym_c_type, - STATE(5583), 1, + STATE(5626), 1, sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 2, + ACTIONS(4106), 2, anon_sym_cdef, anon_sym_cpdef, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(3944), 2, + ACTIONS(4116), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3946), 2, + ACTIONS(4118), 2, anon_sym_struct, anon_sym_union, - STATE(2789), 2, + STATE(2851), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3716), 2, + STATE(3698), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(717), 3, + STATE(746), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(718), 3, + STATE(747), 3, sym_struct, sym_enum, sym_cppclass, @@ -191232,65 +196175,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2011), 5, + STATE(2070), 5, sym_string, sym_cdef_type_declaration, sym_cvar_decl, sym_ctypedef_statement, aux_sym_extern_suite_repeat1, - [85095] = 19, - ACTIONS(1328), 1, + [88057] = 21, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, - anon_sym_await, - ACTIONS(2983), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, anon_sym_STAR, + ACTIONS(4062), 1, + anon_sym_await, + ACTIONS(4128), 1, + sym_identifier, STATE(2143), 1, sym_string, - STATE(2194), 1, - sym_primary_expression, - STATE(2403), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3291), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + STATE(2685), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 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(2441), 5, + ACTIONS(4060), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2455), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -191307,55 +196252,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85183] = 19, - ACTIONS(2377), 1, + [88149] = 19, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2397), 1, + ACTIONS(1995), 1, anon_sym_await, - ACTIONS(2399), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2935), 1, + ACTIONS(2697), 1, anon_sym_STAR, - STATE(2073), 1, + ACTIONS(2705), 1, + anon_sym_LT, + STATE(2153), 1, sym_string, - STATE(2140), 1, + STATE(2217), 1, sym_primary_expression, - STATE(2288), 1, + STATE(2421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 4, + ACTIONS(1973), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2381), 5, + ACTIONS(1979), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2386), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191376,55 +196321,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85271] = 19, - ACTIONS(2009), 1, + [88237] = 19, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2015), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2019), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2025), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2027), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2029), 1, + ACTIONS(1995), 1, anon_sym_await, - ACTIONS(2031), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2033), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2669), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(2677), 1, + ACTIONS(2705), 1, anon_sym_LT, - STATE(2135), 1, + STATE(2153), 1, sym_string, - STATE(2141), 1, + STATE(2218), 1, sym_primary_expression, - STATE(2270), 1, + STATE(2421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 4, + ACTIONS(1973), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2017), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2013), 5, + ACTIONS(1979), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2266), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191445,55 +196390,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85359] = 19, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, + [88325] = 19, + ACTIONS(1414), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(1418), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1422), 1, + anon_sym_LT, + ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1432), 1, sym_float, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2399), 1, + ACTIONS(1438), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2935), 1, + ACTIONS(1597), 1, anon_sym_STAR, - STATE(2073), 1, + ACTIONS(2537), 1, + anon_sym_LPAREN, + ACTIONS(2545), 1, + anon_sym_await, + STATE(2410), 1, sym_string, - STATE(2142), 1, + STATE(2527), 1, sym_primary_expression, - STATE(2288), 1, + STATE(2703), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2385), 4, + ACTIONS(1416), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2381), 5, + ACTIONS(1430), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2541), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2386), 20, + STATE(2710), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191514,55 +196459,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85447] = 19, - ACTIONS(2377), 1, + [88413] = 27, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(133), 1, + anon_sym_ctypedef, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4104), 1, + anon_sym_pass, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4120), 1, + anon_sym_enum, + ACTIONS(4122), 1, + anon_sym_cppclass, + ACTIONS(4124), 1, + anon_sym_fused, + ACTIONS(4126), 1, + sym_string_start, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3568), 1, + sym_c_type, + STATE(5592), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4106), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4118), 2, + anon_sym_struct, + anon_sym_union, + STATE(2851), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(746), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(747), 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(2068), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [88517] = 19, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2397), 1, + ACTIONS(1995), 1, anon_sym_await, - ACTIONS(2399), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2935), 1, + ACTIONS(2697), 1, anon_sym_STAR, - STATE(2073), 1, + ACTIONS(2705), 1, + anon_sym_LT, + STATE(2153), 1, sym_string, - STATE(2144), 1, + STATE(2228), 1, sym_primary_expression, - STATE(2288), 1, + STATE(2421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 4, + ACTIONS(1973), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2381), 5, + ACTIONS(1979), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2386), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191583,55 +196605,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85535] = 19, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, + [88605] = 19, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2399), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2935), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_await, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2073), 1, + STATE(2202), 1, sym_string, - STATE(2145), 1, + STATE(2250), 1, sym_primary_expression, - STATE(2288), 1, + STATE(2604), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2385), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2381), 5, + ACTIONS(1374), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2409), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2386), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191652,55 +196674,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85623] = 19, - ACTIONS(2377), 1, - anon_sym_LPAREN, - ACTIONS(2383), 1, - anon_sym_LBRACK, - ACTIONS(2387), 1, + [88693] = 19, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1364), 1, + anon_sym_LT, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(2397), 1, - anon_sym_await, - ACTIONS(2399), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2935), 1, + ACTIONS(1504), 1, + anon_sym_LBRACK, + ACTIONS(2405), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_await, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2073), 1, + STATE(2202), 1, sym_string, - STATE(2146), 1, + STATE(2261), 1, sym_primary_expression, - STATE(2288), 1, + STATE(2604), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2385), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2381), 5, + ACTIONS(1374), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2409), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2386), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191721,55 +196743,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85711] = 19, - ACTIONS(2377), 1, + [88781] = 19, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2397), 1, + ACTIONS(1995), 1, anon_sym_await, - ACTIONS(2399), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2935), 1, + ACTIONS(2697), 1, anon_sym_STAR, - STATE(2073), 1, + ACTIONS(2705), 1, + anon_sym_LT, + STATE(2153), 1, sym_string, - STATE(2148), 1, + STATE(2234), 1, sym_primary_expression, - STATE(2288), 1, + STATE(2421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 4, + ACTIONS(1973), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2381), 5, + ACTIONS(1979), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2386), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191790,59 +196812,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85799] = 21, - ACTIONS(1213), 1, + [88869] = 21, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3868), 1, anon_sym_STAR, - ACTIONS(3970), 1, - anon_sym_await, - ACTIONS(4024), 1, + ACTIONS(4018), 1, sym_identifier, - STATE(2147), 1, + ACTIONS(4130), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2451), 1, + STATE(2349), 1, sym_list_splat_pattern, - STATE(3225), 1, + STATE(3248), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2425), 2, + STATE(2255), 2, sym_attribute, sym_subscript, - ACTIONS(1237), 3, + ACTIONS(1269), 3, sym_integer, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4026), 5, + ACTIONS(4014), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -191861,55 +196883,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85891] = 19, - ACTIONS(1328), 1, + [88961] = 19, + ACTIONS(1360), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, + ACTIONS(1364), 1, anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1372), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1376), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1392), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1394), 1, sym_string_start, - ACTIONS(1472), 1, + ACTIONS(1504), 1, anon_sym_LBRACK, - ACTIONS(2437), 1, + ACTIONS(2405), 1, anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(2415), 1, anon_sym_await, - ACTIONS(2983), 1, + ACTIONS(3041), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2202), 1, sym_string, - STATE(2195), 1, + STATE(2259), 1, sym_primary_expression, - STATE(2403), 1, + STATE(2604), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + ACTIONS(1358), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1342), 4, + ACTIONS(1374), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2441), 5, + ACTIONS(2409), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2455), 20, + STATE(2556), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191930,55 +196952,126 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85979] = 19, - ACTIONS(2479), 1, + [89049] = 21, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2485), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2489), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2493), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2495), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2497), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2499), 1, - anon_sym_await, - ACTIONS(2501), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2503), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2649), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(3065), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2220), 1, + ACTIONS(4078), 1, + anon_sym_await, + ACTIONS(4132), 1, + sym_identifier, + STATE(2143), 1, + sym_string, + STATE(2349), 1, + sym_list_splat_pattern, + STATE(3272), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1941), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(4076), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2443), 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, + [89141] = 19, + ACTIONS(1975), 1, + anon_sym_LPAREN, + ACTIONS(1981), 1, + anon_sym_LBRACK, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(1989), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1991), 1, + anon_sym_None, + ACTIONS(1993), 1, + sym_float, + ACTIONS(1995), 1, + anon_sym_await, + ACTIONS(1997), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + sym_string_start, + ACTIONS(2697), 1, + anon_sym_STAR, + ACTIONS(2705), 1, + anon_sym_LT, + STATE(2153), 1, sym_string, - STATE(2275), 1, + STATE(2235), 1, sym_primary_expression, - STATE(2608), 1, + STATE(2421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(1973), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2487), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2483), 5, + ACTIONS(1979), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2603), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191999,61 +197092,136 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86067] = 21, - ACTIONS(1213), 1, + [89229] = 27, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4026), 1, + anon_sym_api, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4120), 1, + anon_sym_enum, + ACTIONS(4122), 1, + anon_sym_cppclass, + ACTIONS(4124), 1, + anon_sym_fused, + ACTIONS(4134), 1, + sym_identifier, + ACTIONS(4138), 1, + anon_sym_COLON, + ACTIONS(4140), 1, + anon_sym_extern, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3873), 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(4032), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4118), 2, + anon_sym_struct, + anon_sym_union, + STATE(2588), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(746), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(747), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(103), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1785), 4, + sym_cdef_definition_block, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + ACTIONS(4136), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [89333] = 19, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2503), 1, + anon_sym_await, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3033), 1, anon_sym_STAR, - ACTIONS(4028), 1, - sym_identifier, - ACTIONS(4032), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2229), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3222), 1, + STATE(2294), 1, sym_primary_expression, + STATE(2546), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2267), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(2481), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4030), 5, + ACTIONS(2487), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -192070,55 +197238,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86159] = 19, - ACTIONS(67), 1, + [89421] = 19, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1603), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2059), 1, + STATE(2226), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1269), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192139,55 +197307,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86247] = 19, - ACTIONS(2451), 1, + [89509] = 19, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2471), 1, - anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(1603), 1, + anon_sym_await, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(2943), 1, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2166), 1, + STATE(2143), 1, sym_string, - STATE(2215), 1, + STATE(2233), 1, sym_primary_expression, - STATE(2479), 1, + STATE(2349), 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, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(1269), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2526), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192208,61 +197376,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86335] = 21, - ACTIONS(1213), 1, + [89597] = 19, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2503), 1, + anon_sym_await, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3033), 1, anon_sym_STAR, - ACTIONS(4006), 1, - sym_identifier, - ACTIONS(4034), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2229), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3208), 1, + STATE(2249), 1, sym_primary_expression, + STATE(2546), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2287), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(2481), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4002), 5, + ACTIONS(2487), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -192279,55 +197445,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86427] = 19, - ACTIONS(1328), 1, + [89685] = 19, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(1603), 1, anon_sym_await, - ACTIONS(2983), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, STATE(2143), 1, sym_string, - STATE(2190), 1, + STATE(2241), 1, sym_primary_expression, - STATE(2403), 1, + STATE(2349), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1342), 4, + ACTIONS(1269), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2441), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2455), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192348,55 +197514,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86515] = 19, - ACTIONS(67), 1, + [89773] = 27, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(133), 1, + anon_sym_ctypedef, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4104), 1, + anon_sym_pass, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4120), 1, + anon_sym_enum, + ACTIONS(4122), 1, + anon_sym_cppclass, + ACTIONS(4124), 1, + anon_sym_fused, + ACTIONS(4126), 1, + sym_string_start, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3568), 1, + sym_c_type, + STATE(5660), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4106), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4118), 2, + anon_sym_struct, + anon_sym_union, + STATE(2851), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(746), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(747), 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(2067), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [89877] = 19, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1281), 1, - anon_sym_LPAREN, - ACTIONS(1287), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1603), 1, anon_sym_await, - ACTIONS(3055), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, - STATE(2043), 1, + STATE(2143), 1, sym_string, - STATE(2053), 1, + STATE(2204), 1, sym_primary_expression, - STATE(2110), 1, + STATE(2349), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1269), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1285), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2096), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192417,55 +197660,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86603] = 19, - ACTIONS(1328), 1, + [89965] = 19, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(1603), 1, anon_sym_await, - ACTIONS(2983), 1, + ACTIONS(2725), 1, + anon_sym_LT, + ACTIONS(2977), 1, anon_sym_STAR, STATE(2143), 1, sym_string, - STATE(2202), 1, + STATE(2205), 1, sym_primary_expression, - STATE(2403), 1, + STATE(2349), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1342), 4, + ACTIONS(1269), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2441), 5, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2455), 20, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192486,61 +197729,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86691] = 21, - ACTIONS(1213), 1, + [90053] = 19, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(1603), 1, + anon_sym_await, + ACTIONS(2725), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(2977), 1, anon_sym_STAR, - ACTIONS(4036), 1, - sym_identifier, - ACTIONS(4040), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2143), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3221), 1, + STATE(2210), 1, sym_primary_expression, + STATE(2349), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2726), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1308), 4, + ACTIONS(1259), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4038), 5, + ACTIONS(1269), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1336), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2443), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -192557,59 +197798,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86783] = 19, - ACTIONS(1328), 1, + [90141] = 21, + ACTIONS(1245), 1, + anon_sym_LPAREN, + ACTIONS(1251), 1, + anon_sym_LBRACK, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, - anon_sym_LT, - ACTIONS(1338), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1340), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1344), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(1360), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(1362), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(1472), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, - anon_sym_await, - ACTIONS(2983), 1, + ACTIONS(2809), 1, + anon_sym_LT, + ACTIONS(3868), 1, anon_sym_STAR, + ACTIONS(3898), 1, + anon_sym_await, + ACTIONS(4142), 1, + sym_identifier, STATE(2143), 1, sym_string, - STATE(2189), 1, - sym_primary_expression, - STATE(2403), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3284), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1326), 4, + STATE(2183), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1340), 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(2441), 5, + ACTIONS(3892), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2455), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -192626,136 +197869,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86871] = 27, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3948), 1, - anon_sym_enum, - ACTIONS(3950), 1, - anon_sym_cppclass, - ACTIONS(3952), 1, - anon_sym_fused, - ACTIONS(3978), 1, - anon_sym_api, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4042), 1, - sym_identifier, - ACTIONS(4046), 1, - anon_sym_COLON, - ACTIONS(4048), 1, - anon_sym_extern, - STATE(3133), 1, - sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3806), 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(3946), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(3984), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2522), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(365), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(717), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(718), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(103), 4, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1424), 4, - sym_cdef_definition_block, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - ACTIONS(4044), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [86975] = 19, - ACTIONS(2451), 1, + [90233] = 21, + ACTIONS(1245), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(1251), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(1255), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(1265), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(1271), 1, sym_float, - ACTIONS(2471), 1, - anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(1277), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(2809), 1, anon_sym_LT, - ACTIONS(2943), 1, + ACTIONS(3868), 1, anon_sym_STAR, - STATE(2166), 1, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4148), 1, + anon_sym_await, + STATE(2143), 1, sym_string, - STATE(2212), 1, - sym_primary_expression, - STATE(2479), 1, + STATE(2349), 1, sym_list_splat_pattern, + STATE(3286), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + STATE(3186), 2, + sym_attribute, + sym_subscript, + ACTIONS(1269), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(1340), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(4146), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2526), 20, + STATE(2443), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -192772,55 +197940,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87063] = 19, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2461), 1, + [90325] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(71), 1, + anon_sym_LT, + 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(2471), 1, - anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(105), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(107), 1, sym_string_start, - ACTIONS(2535), 1, - anon_sym_LT, - ACTIONS(2943), 1, + ACTIONS(1313), 1, + anon_sym_LPAREN, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1325), 1, + anon_sym_await, + ACTIONS(3110), 1, anon_sym_STAR, - STATE(2166), 1, + STATE(2100), 1, sym_string, - STATE(2222), 1, + STATE(2104), 1, sym_primary_expression, - STATE(2479), 1, + STATE(2166), 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, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1317), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2526), 20, + STATE(2194), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192841,55 +198009,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87151] = 19, - ACTIONS(2377), 1, + [90413] = 19, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(2383), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(2391), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2393), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2395), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(2397), 1, + ACTIONS(1995), 1, anon_sym_await, - ACTIONS(2399), 1, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(2401), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2935), 1, + ACTIONS(2697), 1, anon_sym_STAR, - STATE(2073), 1, + ACTIONS(2705), 1, + anon_sym_LT, + STATE(2153), 1, sym_string, - STATE(2171), 1, + STATE(2237), 1, sym_primary_expression, - STATE(2288), 1, + STATE(2421), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 4, + ACTIONS(1973), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2385), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2381), 5, + ACTIONS(1979), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2386), 20, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192910,61 +198078,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87239] = 21, - ACTIONS(1213), 1, + [90501] = 19, + ACTIONS(1975), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(1989), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(1993), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(1995), 1, + anon_sym_await, + ACTIONS(1997), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(2731), 1, - anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(2697), 1, anon_sym_STAR, - ACTIONS(4032), 1, - anon_sym_await, - ACTIONS(4050), 1, - sym_identifier, - STATE(2147), 1, + ACTIONS(2705), 1, + anon_sym_LT, + STATE(2153), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3227), 1, + STATE(2238), 1, sym_primary_expression, + STATE(2421), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2348), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(1973), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(1983), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4052), 5, + ACTIONS(1979), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2347), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -192981,61 +198147,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87331] = 21, - ACTIONS(1213), 1, + [90589] = 19, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(1219), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(1223), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(1233), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1235), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(1239), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(1245), 1, + ACTIONS(2503), 1, + anon_sym_await, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(1247), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2731), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(3764), 1, + ACTIONS(3033), 1, anon_sym_STAR, - ACTIONS(3786), 1, - sym_identifier, - ACTIONS(3794), 1, - anon_sym_await, - STATE(2147), 1, + STATE(2229), 1, sym_string, - STATE(2451), 1, - sym_list_splat_pattern, - STATE(3215), 1, + STATE(2290), 1, sym_primary_expression, + STATE(2546), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2128), 2, - sym_attribute, - sym_subscript, - ACTIONS(1237), 3, + ACTIONS(2481), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1308), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3788), 5, + ACTIONS(2487), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2471), 18, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -193052,55 +198216,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87423] = 19, - ACTIONS(2451), 1, + [90677] = 19, + ACTIONS(2483), 1, anon_sym_LPAREN, - ACTIONS(2457), 1, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(2461), 1, + ACTIONS(2493), 1, anon_sym_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2497), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2467), 1, + ACTIONS(2499), 1, anon_sym_None, - ACTIONS(2469), 1, + ACTIONS(2501), 1, sym_float, - ACTIONS(2471), 1, + ACTIONS(2503), 1, anon_sym_await, - ACTIONS(2473), 1, + ACTIONS(2505), 1, anon_sym_sizeof, - ACTIONS(2475), 1, + ACTIONS(2507), 1, sym_string_start, - ACTIONS(2535), 1, + ACTIONS(2561), 1, anon_sym_LT, - ACTIONS(2943), 1, + ACTIONS(3033), 1, anon_sym_STAR, - STATE(2166), 1, + STATE(2229), 1, sym_string, - STATE(2207), 1, + STATE(2295), 1, sym_primary_expression, - STATE(2479), 1, + STATE(2546), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2449), 4, + ACTIONS(2481), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2459), 4, + ACTIONS(2491), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2455), 5, + ACTIONS(2487), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2526), 20, + STATE(2512), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -193121,55 +198285,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87511] = 19, - ACTIONS(1382), 1, + [90765] = 19, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(1386), 1, + ACTIONS(2449), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - anon_sym_LT, - ACTIONS(1394), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1396), 1, + ACTIONS(2455), 1, anon_sym_None, - ACTIONS(1400), 1, + ACTIONS(2457), 1, sym_float, - ACTIONS(1406), 1, + ACTIONS(2459), 1, + anon_sym_await, + ACTIONS(2461), 1, anon_sym_sizeof, - ACTIONS(1408), 1, + ACTIONS(2463), 1, sym_string_start, - ACTIONS(1565), 1, + ACTIONS(2589), 1, + anon_sym_LT, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(2513), 1, - anon_sym_await, - STATE(2239), 1, + STATE(2193), 1, sym_string, - STATE(2554), 1, + STATE(2200), 1, sym_primary_expression, - STATE(2693), 1, + STATE(2449), 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(2437), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2509), 5, + ACTIONS(2447), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2443), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2651), 20, + STATE(2328), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -193190,66 +198354,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87599] = 26, + [90853] = 26, ACTIONS(125), 1, anon_sym_class, ACTIONS(133), 1, anon_sym_ctypedef, - ACTIONS(3928), 1, + ACTIONS(4100), 1, sym_identifier, - ACTIONS(3930), 1, + ACTIONS(4102), 1, anon_sym_LPAREN, - ACTIONS(3942), 1, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(3948), 1, + ACTIONS(4120), 1, anon_sym_enum, - ACTIONS(3950), 1, + ACTIONS(4122), 1, anon_sym_cppclass, - ACTIONS(3952), 1, + ACTIONS(4124), 1, anon_sym_fused, - ACTIONS(3954), 1, + ACTIONS(4126), 1, sym_string_start, - ACTIONS(4054), 1, + ACTIONS(4150), 1, sym__dedent, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(3492), 1, + STATE(3568), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 2, + ACTIONS(4106), 2, anon_sym_cdef, anon_sym_cpdef, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(3944), 2, + ACTIONS(4116), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3946), 2, + ACTIONS(4118), 2, anon_sym_struct, anon_sym_union, - STATE(2789), 2, + STATE(2851), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3716), 2, + STATE(3698), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(717), 3, + STATE(746), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(718), 3, + STATE(747), 3, sym_struct, sym_enum, sym_cppclass, @@ -193259,222 +198423,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2013), 5, + STATE(2069), 5, sym_string, sym_cdef_type_declaration, sym_cvar_decl, sym_ctypedef_statement, aux_sym_extern_suite_repeat1, - [87700] = 26, + [90954] = 26, ACTIONS(125), 1, anon_sym_class, ACTIONS(133), 1, anon_sym_ctypedef, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(3948), 1, - anon_sym_enum, - ACTIONS(3950), 1, - anon_sym_cppclass, - ACTIONS(3952), 1, - anon_sym_fused, - ACTIONS(3954), 1, - sym_string_start, - ACTIONS(4056), 1, - sym__dedent, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3492), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3934), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3946), 2, - anon_sym_struct, - anon_sym_union, - STATE(2789), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(717), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(718), 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(2013), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [87801] = 26, - ACTIONS(4058), 1, - sym_identifier, - ACTIONS(4061), 1, - anon_sym_LPAREN, - ACTIONS(4064), 1, - anon_sym_class, - ACTIONS(4082), 1, - anon_sym_long, - ACTIONS(4088), 1, - anon_sym_ctypedef, - ACTIONS(4094), 1, - anon_sym_enum, - ACTIONS(4097), 1, - anon_sym_cppclass, ACTIONS(4100), 1, - anon_sym_fused, - ACTIONS(4103), 1, - sym__dedent, - ACTIONS(4105), 1, - sym_string_start, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3492), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4070), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(4076), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4079), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4085), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4091), 2, - anon_sym_struct, - anon_sym_union, - STATE(2789), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4073), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(717), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(718), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(4067), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(2013), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [87902] = 26, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(133), 1, - anon_sym_ctypedef, - ACTIONS(3928), 1, sym_identifier, - ACTIONS(3930), 1, + ACTIONS(4102), 1, anon_sym_LPAREN, - ACTIONS(3942), 1, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(3948), 1, + ACTIONS(4120), 1, anon_sym_enum, - ACTIONS(3950), 1, + ACTIONS(4122), 1, anon_sym_cppclass, - ACTIONS(3952), 1, + ACTIONS(4124), 1, anon_sym_fused, - ACTIONS(3954), 1, + ACTIONS(4126), 1, sym_string_start, - ACTIONS(4108), 1, + ACTIONS(4152), 1, sym__dedent, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(3492), 1, + STATE(3568), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3934), 2, + ACTIONS(4106), 2, anon_sym_cdef, anon_sym_cpdef, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(3944), 2, + ACTIONS(4116), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(3946), 2, + ACTIONS(4118), 2, anon_sym_struct, anon_sym_union, - STATE(2789), 2, + STATE(2851), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3716), 2, + STATE(3698), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(717), 3, + STATE(746), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(718), 3, + STATE(747), 3, sym_struct, sym_enum, sym_cppclass, @@ -193484,25 +198498,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2013), 5, + STATE(2069), 5, sym_string, sym_cdef_type_declaration, sym_cvar_decl, sym_ctypedef_statement, aux_sym_extern_suite_repeat1, - [88003] = 26, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4110), 1, + [91055] = 26, + ACTIONS(4154), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4157), 1, + anon_sym_LPAREN, + ACTIONS(4160), 1, anon_sym_class, - ACTIONS(4114), 1, - anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4178), 1, + anon_sym_long, + ACTIONS(4184), 1, anon_sym_ctypedef, + ACTIONS(4190), 1, + anon_sym_enum, + ACTIONS(4193), 1, + anon_sym_cppclass, + ACTIONS(4196), 1, + anon_sym_fused, + ACTIONS(4199), 1, + sym__dedent, + ACTIONS(4201), 1, + sym_string_start, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3568), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4166), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4172), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4175), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4181), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4187), 2, + anon_sym_struct, + anon_sym_union, + STATE(2851), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4169), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(746), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(747), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4163), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2069), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [91156] = 26, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(133), 1, + anon_sym_ctypedef, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, ACTIONS(4120), 1, anon_sym_enum, ACTIONS(4122), 1, @@ -193510,44 +198597,48 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4124), 1, anon_sym_fused, ACTIONS(4126), 1, + sym_string_start, + ACTIONS(4204), 1, sym__dedent, - STATE(3133), 1, + STATE(3273), 1, sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, + STATE(3482), 1, sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3803), 1, - sym_maybe_typed_name, + STATE(3568), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(4106), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4116), 2, anon_sym_const, anon_sym_volatile, ACTIONS(4118), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2851), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(746), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + STATE(747), 3, sym_struct, sym_enum, sym_cppclass, @@ -193557,42 +198648,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2025), 5, - sym_cvar_def, + STATE(2069), 5, + sym_string, sym_cdef_type_declaration, - sym_extern_block, + sym_cvar_decl, sym_ctypedef_statement, - aux_sym_cdef_definition_block_repeat1, - [88102] = 26, + aux_sym_extern_suite_repeat1, + [91257] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - ACTIONS(4128), 1, + ACTIONS(4222), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193603,69 +198694,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2025), 5, + STATE(2078), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [88201] = 26, + [91356] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - ACTIONS(4130), 1, + ACTIONS(4224), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193676,69 +198767,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2025), 5, + STATE(2078), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [88300] = 26, + [91455] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - ACTIONS(4132), 1, + ACTIONS(4226), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193749,69 +198840,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2025), 5, + STATE(2078), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [88399] = 26, + [91554] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - ACTIONS(4134), 1, + ACTIONS(4228), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193822,69 +198913,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2025), 5, + STATE(2078), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [88498] = 26, + [91653] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - ACTIONS(4136), 1, + ACTIONS(4230), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193895,69 +198986,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2025), 5, + STATE(2078), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [88597] = 26, + [91752] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - ACTIONS(4138), 1, + ACTIONS(4232), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -193968,69 +199059,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2025), 5, + STATE(2078), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [88696] = 26, + [91851] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - ACTIONS(4140), 1, + ACTIONS(4234), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194041,69 +199132,142 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, + STATE(3122), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(3123), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - STATE(3071), 3, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2078), 5, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + sym_ctypedef_statement, + aux_sym_cdef_definition_block_repeat1, + [91950] = 26, + ACTIONS(4236), 1, + sym_identifier, + ACTIONS(4239), 1, + anon_sym_class, + ACTIONS(4245), 1, + anon_sym_extern, + ACTIONS(4251), 1, + anon_sym_operator, + ACTIONS(4260), 1, + anon_sym_long, + ACTIONS(4266), 1, + anon_sym_ctypedef, + ACTIONS(4272), 1, + anon_sym_enum, + ACTIONS(4275), 1, + anon_sym_cppclass, + ACTIONS(4278), 1, + anon_sym_fused, + ACTIONS(4281), 1, + sym__dedent, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3905), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4254), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4257), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4263), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4269), 2, + anon_sym_struct, + anon_sym_union, + STATE(2854), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(4248), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, - ACTIONS(103), 5, + STATE(3123), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4242), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2025), 5, + STATE(2078), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [88795] = 26, + [92049] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - ACTIONS(4142), 1, + ACTIONS(4283), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194114,69 +199278,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2025), 5, + STATE(2078), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [88894] = 26, + [92148] = 26, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - ACTIONS(4144), 1, + ACTIONS(4285), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194187,140 +199351,140 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2025), 5, + STATE(2078), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [88993] = 26, - ACTIONS(4146), 1, + [92247] = 26, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4149), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4155), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4161), 1, - anon_sym_operator, - ACTIONS(4170), 1, - anon_sym_long, - ACTIONS(4176), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4182), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4185), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4188), 1, + ACTIONS(4220), 1, anon_sym_fused, - ACTIONS(4191), 1, + ACTIONS(4287), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4164), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4167), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4173), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4179), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(4158), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, - ACTIONS(4152), 5, + STATE(3123), 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(2025), 5, + STATE(2078), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [89092] = 25, + [92346] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194331,67 +199495,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2015), 5, + STATE(2080), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [89188] = 25, + [92442] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194402,67 +199566,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2021), 5, + STATE(2074), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [89284] = 25, + [92538] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194473,67 +199637,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2022), 5, + STATE(2071), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [89380] = 25, + [92634] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194544,67 +199708,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2023), 5, + STATE(2073), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [89476] = 25, + [92730] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194615,201 +199779,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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, + STATE(2075), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [89572] = 21, - ACTIONS(4195), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_LPAREN, - ACTIONS(4205), 1, - anon_sym_STAR_STAR, - ACTIONS(4207), 1, - anon_sym_EQ, - ACTIONS(4209), 1, - anon_sym_LBRACK, - ACTIONS(4215), 1, - anon_sym_PIPE, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4219), 1, - anon_sym_AMP, - ACTIONS(4221), 1, - anon_sym_CARET, - ACTIONS(4223), 1, - anon_sym_is, - STATE(2038), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4199), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4213), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4225), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1999), 2, - sym__not_in, - sym__is_not, - STATE(2094), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4211), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4203), 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(4193), 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, - [89660] = 21, - ACTIONS(4195), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_LPAREN, - ACTIONS(4205), 1, - anon_sym_STAR_STAR, - ACTIONS(4207), 1, - anon_sym_EQ, - ACTIONS(4209), 1, - anon_sym_LBRACK, - ACTIONS(4215), 1, - anon_sym_PIPE, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4219), 1, - anon_sym_AMP, - ACTIONS(4221), 1, - anon_sym_CARET, - ACTIONS(4223), 1, - anon_sym_is, - STATE(2934), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4199), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4213), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4225), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1999), 2, - sym__not_in, - sym__is_not, - STATE(2094), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4211), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4203), 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(4193), 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, - [89748] = 25, + [92826] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194820,67 +199850,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2018), 5, + STATE(2081), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [89844] = 25, + [92922] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194891,67 +199921,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2024), 5, + STATE(2076), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [89940] = 25, + [93018] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -194962,67 +199992,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2020), 5, + STATE(2077), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [90036] = 25, + [93114] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -195033,67 +200063,134 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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(2019), 5, + STATE(2079), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [90132] = 25, + [93210] = 21, + ACTIONS(4291), 1, + anon_sym_DOT, + ACTIONS(4293), 1, + anon_sym_LPAREN, + ACTIONS(4301), 1, + anon_sym_STAR_STAR, + ACTIONS(4303), 1, + anon_sym_EQ, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4315), 1, + anon_sym_AMP, + ACTIONS(4317), 1, + anon_sym_CARET, + ACTIONS(4319), 1, + anon_sym_is, + STATE(3027), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4295), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4309), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4321), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2015), 2, + sym__not_in, + sym__is_not, + STATE(2164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4307), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4299), 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(4289), 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, + [93298] = 25, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4114), 1, + ACTIONS(4210), 1, anon_sym_extern, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4120), 1, + ACTIONS(4216), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4220), 1, anon_sym_fused, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -195104,177 +200201,199 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4214), 2, anon_sym_struct, anon_sym_union, - STATE(2799), 2, + STATE(2854), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3067), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(3071), 3, + STATE(3122), 3, sym_struct, sym_enum, sym_cppclass, + STATE(3123), 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, + STATE(2072), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [90228] = 5, - STATE(2039), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1999), 2, - sym__not_in, - sym__is_not, - ACTIONS(4229), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4227), 33, - sym__newline, - anon_sym_SEMI, + [93394] = 21, + ACTIONS(4291), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(4293), 1, 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, + ACTIONS(4301), 1, anon_sym_STAR_STAR, + ACTIONS(4303), 1, + anon_sym_EQ, + ACTIONS(4305), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(4311), 1, anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(4313), 1, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4315), 1, anon_sym_AMP, + ACTIONS(4317), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_nogil, - [90282] = 9, - ACTIONS(4238), 1, - anon_sym_not, - ACTIONS(4241), 1, + ACTIONS(4319), 1, anon_sym_is, - STATE(2039), 1, + STATE(2097), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4244), 2, + ACTIONS(4295), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4309), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4321), 2, anon_sym_LT, anon_sym_GT, - STATE(1999), 2, + STATE(2015), 2, sym__not_in, sym__is_not, - ACTIONS(4233), 3, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - ACTIONS(4235), 6, + STATE(2164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4307), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4299), 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(4231), 25, + ACTIONS(4289), 11, 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_and, + anon_sym_or, + anon_sym_nogil, + [93482] = 13, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, + ACTIONS(4323), 1, + anon_sym_DOT, + ACTIONS(4325), 1, + anon_sym_STAR, + ACTIONS(4329), 1, anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_complex, + STATE(3441), 1, + aux_sym_class_definition_repeat2, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3799), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(3597), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4327), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3806), 4, + anon_sym_as, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3795), 23, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_nogil, - [90344] = 14, - ACTIONS(3705), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93552] = 14, + ACTIONS(3801), 1, anon_sym_COMMA, - ACTIONS(3712), 1, + ACTIONS(3808), 1, anon_sym_COLON_EQ, - ACTIONS(4247), 1, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4249), 1, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4255), 1, + ACTIONS(4331), 1, anon_sym_complex, - STATE(3412), 1, + STATE(3441), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3799), 2, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(3554), 2, + STATE(3597), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3710), 4, + ACTIONS(3806), 4, anon_sym_as, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 22, + ACTIONS(3795), 22, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -195297,22 +200416,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90416] = 5, - ACTIONS(107), 1, + [93624] = 5, + ACTIONS(4337), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2044), 2, + STATE(2096), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4259), 5, + ACTIONS(4335), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4257), 33, + ACTIONS(4333), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -195346,46 +200465,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [90470] = 13, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(4247), 1, - anon_sym_DOT, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4255), 1, - anon_sym_complex, - STATE(3412), 1, - aux_sym_class_definition_repeat2, - STATE(3413), 1, - sym_type_index, + [93678] = 5, + STATE(2099), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3554), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4251), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3710), 4, - anon_sym_as, + STATE(2015), 2, + sym__not_in, + sym__is_not, + ACTIONS(4342), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 23, + ACTIONS(4340), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -195395,6 +200504,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, @@ -195403,22 +200513,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90540] = 5, + anon_sym_nogil, + [93732] = 5, ACTIONS(107), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2041), 2, + STATE(2096), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 5, + ACTIONS(4346), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 33, + ACTIONS(4344), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -195452,22 +200563,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [90594] = 5, - ACTIONS(4265), 1, - sym_string_start, + [93786] = 9, + ACTIONS(4355), 1, + anon_sym_not, + ACTIONS(4358), 1, + anon_sym_is, + STATE(2099), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2044), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4263), 5, + ACTIONS(4361), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2015), 2, + sym__not_in, + sym__is_not, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4261), 33, + ACTIONS(4352), 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(4348), 25, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -195478,7 +200601,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, @@ -195486,7 +200608,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, @@ -195494,61 +200615,49 @@ 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, - [90648] = 12, - ACTIONS(4195), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_LPAREN, - ACTIONS(4205), 1, - anon_sym_STAR_STAR, - ACTIONS(4209), 1, - anon_sym_LBRACK, + [93848] = 5, + ACTIONS(107), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4199), 2, + STATE(2098), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3806), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4213), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2094), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4211), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4270), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 22, + ACTIONS(3795), 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, @@ -195556,157 +200665,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [90715] = 21, - ACTIONS(4207), 1, - anon_sym_EQ, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4272), 1, + [93902] = 15, + ACTIONS(4291), 1, anon_sym_DOT, - ACTIONS(4274), 1, + ACTIONS(4293), 1, anon_sym_LPAREN, - ACTIONS(4282), 1, + ACTIONS(4301), 1, anon_sym_STAR_STAR, - ACTIONS(4284), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(4290), 1, + ACTIONS(4311), 1, anon_sym_PIPE, - ACTIONS(4292), 1, + ACTIONS(4315), 1, anon_sym_AMP, - ACTIONS(4294), 1, + ACTIONS(4317), 1, anon_sym_CARET, - ACTIONS(4296), 1, - anon_sym_is, - STATE(3101), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4276), 2, + ACTIONS(4295), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4278), 2, + ACTIONS(4297), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4288), 2, + ACTIONS(4309), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4298), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1985), 2, - sym__not_in, - sym__is_not, - STATE(2331), 2, + STATE(2164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4286), 3, + ACTIONS(4307), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4280), 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(4193), 8, + ACTIONS(4366), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4364), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_with, + anon_sym_not, anon_sym_and, anon_sym_or, - sym_type_conversion, - [90800] = 21, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4300), 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, + [93975] = 10, + ACTIONS(4291), 1, anon_sym_DOT, - ACTIONS(4302), 1, + ACTIONS(4293), 1, anon_sym_LPAREN, - ACTIONS(4310), 1, + ACTIONS(4301), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(4318), 1, - anon_sym_PIPE, - ACTIONS(4320), 1, - anon_sym_AMP, - ACTIONS(4322), 1, - anon_sym_CARET, - ACTIONS(4324), 1, - anon_sym_is, - STATE(3098), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4304), 2, + ACTIONS(4295), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4306), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4316), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4326), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2006), 2, - sym__not_in, - sym__is_not, - STATE(2342), 2, + STATE(2164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4314), 3, + ACTIONS(4307), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4308), 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(4193), 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, - [90885] = 6, - ACTIONS(4333), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4338), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4330), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4336), 4, + ACTIONS(4370), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 29, + ACTIONS(4368), 26, sym__newline, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, anon_sym_COMMA, anon_sym_as, @@ -195715,15 +200760,13 @@ 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, anon_sym_is, @@ -195733,92 +200776,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [90940] = 21, - ACTIONS(4207), 1, - anon_sym_EQ, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4272), 1, + [94038] = 8, + ACTIONS(4291), 1, anon_sym_DOT, - ACTIONS(4274), 1, + ACTIONS(4293), 1, anon_sym_LPAREN, - ACTIONS(4282), 1, + ACTIONS(4301), 1, anon_sym_STAR_STAR, - ACTIONS(4284), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(4290), 1, - anon_sym_PIPE, - ACTIONS(4292), 1, - anon_sym_AMP, - ACTIONS(4294), 1, - anon_sym_CARET, - ACTIONS(4296), 1, - anon_sym_is, - STATE(2090), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4276), 2, + STATE(2164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4374), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4278), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4288), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4298), 2, anon_sym_LT, anon_sym_GT, - STATE(1985), 2, - sym__not_in, - sym__is_not, - STATE(2331), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4286), 3, + ACTIONS(4372), 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, - ACTIONS(4280), 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(4193), 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, - [91025] = 8, - ACTIONS(4195), 1, + anon_sym_nogil, + [94097] = 8, + ACTIONS(4291), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4293), 1, anon_sym_LPAREN, - ACTIONS(4205), 1, + ACTIONS(4301), 1, anon_sym_STAR_STAR, - ACTIONS(4209), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2094), 2, + STATE(2164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4342), 5, + ACTIONS(4370), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 29, + ACTIONS(4368), 29, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -195848,92 +200878,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91084] = 21, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4300), 1, + [94156] = 11, + ACTIONS(4291), 1, anon_sym_DOT, - ACTIONS(4302), 1, + ACTIONS(4293), 1, anon_sym_LPAREN, - ACTIONS(4310), 1, + ACTIONS(4301), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(4318), 1, - anon_sym_PIPE, - ACTIONS(4320), 1, - anon_sym_AMP, - ACTIONS(4322), 1, - anon_sym_CARET, - ACTIONS(4324), 1, - anon_sym_is, - STATE(2088), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4304), 2, + ACTIONS(4295), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4306), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4316), 2, + ACTIONS(4309), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4326), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2006), 2, - sym__not_in, - sym__is_not, - STATE(2342), 2, + STATE(2164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4314), 3, + ACTIONS(4307), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4308), 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(4193), 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, - [91169] = 8, - ACTIONS(4195), 1, - anon_sym_DOT, - ACTIONS(4197), 1, - anon_sym_LPAREN, - ACTIONS(4205), 1, - anon_sym_STAR_STAR, - ACTIONS(4209), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2094), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4346), 5, - anon_sym_STAR, + ACTIONS(4370), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 29, + ACTIONS(4368), 24, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -195944,15 +200918,10 @@ 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, @@ -195963,45 +200932,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91228] = 15, - ACTIONS(4195), 1, + [94221] = 13, + ACTIONS(4291), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4293), 1, anon_sym_LPAREN, - ACTIONS(4205), 1, + ACTIONS(4301), 1, anon_sym_STAR_STAR, - ACTIONS(4209), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(4215), 1, - anon_sym_PIPE, - ACTIONS(4219), 1, - anon_sym_AMP, - ACTIONS(4221), 1, + ACTIONS(4317), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4199), 2, + ACTIONS(4295), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4201), 2, + ACTIONS(4297), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4213), 2, + ACTIONS(4309), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2094), 2, + STATE(2164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4211), 3, + ACTIONS(4307), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4350), 3, + ACTIONS(4370), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4348), 19, + ACTIONS(4368), 21, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -196011,9 +200976,11 @@ static const uint16_t ts_small_parse_table[] = { 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -196021,41 +200988,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91301] = 14, - ACTIONS(3712), 1, + [94290] = 14, + ACTIONS(3808), 1, anon_sym_COLON_EQ, - ACTIONS(4247), 1, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4249), 1, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4255), 1, + ACTIONS(4331), 1, anon_sym_complex, - ACTIONS(4352), 1, + ACTIONS(4376), 1, anon_sym_EQ, - STATE(3412), 1, + STATE(3441), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3799), 2, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(3554), 2, + STATE(3597), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3710), 3, + ACTIONS(3806), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3699), 22, + ACTIONS(3795), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -196078,30 +201045,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91372] = 8, - ACTIONS(4195), 1, + [94361] = 21, + ACTIONS(4303), 1, + anon_sym_EQ, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4205), 1, + ACTIONS(4388), 1, anon_sym_STAR_STAR, - ACTIONS(4209), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, + ACTIONS(4396), 1, + anon_sym_PIPE, + ACTIONS(4398), 1, + anon_sym_AMP, + ACTIONS(4400), 1, + anon_sym_CARET, + ACTIONS(4402), 1, + anon_sym_is, + STATE(3148), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2094), 2, + ACTIONS(4382), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4384), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4404), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1983), 2, + sym__not_in, + sym__is_not, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 5, + ACTIONS(4392), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4386), 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(4289), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_and, + anon_sym_or, + [94446] = 6, + ACTIONS(4411), 1, anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4416), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4408), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4414), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 29, + ACTIONS(4406), 29, sym__newline, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, anon_sym_COMMA, anon_sym_as, @@ -196119,7 +201149,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, @@ -196129,28 +201158,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91431] = 8, - ACTIONS(4195), 1, + [94501] = 8, + ACTIONS(4291), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4293), 1, anon_sym_LPAREN, - ACTIONS(4205), 1, + ACTIONS(4301), 1, anon_sym_STAR_STAR, - ACTIONS(4209), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2094), 2, + STATE(2164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 5, + ACTIONS(4420), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 29, + ACTIONS(4418), 29, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -196180,95 +201209,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91490] = 11, - ACTIONS(4195), 1, + [94560] = 21, + ACTIONS(4303), 1, + anon_sym_EQ, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4205), 1, + ACTIONS(4388), 1, anon_sym_STAR_STAR, - ACTIONS(4209), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, + ACTIONS(4396), 1, + anon_sym_PIPE, + ACTIONS(4398), 1, + anon_sym_AMP, + ACTIONS(4400), 1, + anon_sym_CARET, + ACTIONS(4402), 1, + anon_sym_is, + STATE(2178), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4199), 2, + ACTIONS(4382), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4213), 2, + ACTIONS(4384), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4394), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2094), 2, + ACTIONS(4404), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1983), 2, + sym__not_in, + sym__is_not, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4211), 3, + ACTIONS(4392), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4270), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4268), 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, + ACTIONS(4386), 6, 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, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91555] = 13, - ACTIONS(4195), 1, + ACTIONS(4289), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_and, + anon_sym_or, + [94645] = 12, + ACTIONS(4291), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4293), 1, anon_sym_LPAREN, - ACTIONS(4205), 1, + ACTIONS(4301), 1, anon_sym_STAR_STAR, - ACTIONS(4209), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(4221), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4199), 2, + ACTIONS(4295), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4201), 2, + ACTIONS(4297), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4213), 2, + ACTIONS(4309), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2094), 2, + STATE(2164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4211), 3, + ACTIONS(4307), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4270), 3, + ACTIONS(4370), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 21, + ACTIONS(4368), 22, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -196283,6 +201320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -196290,52 +201328,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91624] = 10, - ACTIONS(4195), 1, + [94712] = 14, + ACTIONS(4291), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4293), 1, anon_sym_LPAREN, - ACTIONS(4205), 1, + ACTIONS(4301), 1, anon_sym_STAR_STAR, - ACTIONS(4209), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, + ACTIONS(4315), 1, + anon_sym_AMP, + ACTIONS(4317), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4199), 2, + ACTIONS(4295), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2094), 2, + ACTIONS(4297), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4309), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4211), 3, + ACTIONS(4307), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4270), 3, + ACTIONS(4370), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 26, + ACTIONS(4368), 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_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, @@ -196343,99 +201385,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [91687] = 14, - ACTIONS(4195), 1, + [94783] = 21, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4422), 1, anon_sym_DOT, - ACTIONS(4197), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4205), 1, + ACTIONS(4432), 1, anon_sym_STAR_STAR, - ACTIONS(4209), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(4219), 1, + ACTIONS(4440), 1, + anon_sym_PIPE, + ACTIONS(4442), 1, anon_sym_AMP, - ACTIONS(4221), 1, + ACTIONS(4444), 1, anon_sym_CARET, + ACTIONS(4446), 1, + anon_sym_is, + STATE(2180), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4199), 2, + ACTIONS(4426), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4201), 2, + ACTIONS(4428), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4213), 2, + ACTIONS(4438), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2094), 2, + ACTIONS(4448), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2013), 2, + sym__not_in, + sym__is_not, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4211), 3, + ACTIONS(4436), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4270), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4268), 20, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(4430), 6, anon_sym_in, - anon_sym_with, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [91758] = 14, - ACTIONS(3712), 1, + ACTIONS(4289), 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, + [94868] = 14, + ACTIONS(3808), 1, anon_sym_COLON_EQ, - ACTIONS(4247), 1, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4249), 1, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4255), 1, + ACTIONS(4331), 1, anon_sym_complex, - ACTIONS(4352), 1, + ACTIONS(4376), 1, anon_sym_EQ, - STATE(3412), 1, + STATE(3441), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3554), 2, + STATE(3597), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3703), 3, + ACTIONS(3799), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3710), 3, + ACTIONS(3806), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3699), 21, + ACTIONS(3795), 21, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -196457,423 +201506,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [91829] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3710), 6, - anon_sym_STAR, - anon_sym_COLON, + [94939] = 21, + ACTIONS(4303), 1, 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, - 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_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(4313), 1, anon_sym_not, - anon_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, - [91879] = 4, - ACTIONS(948), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(933), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(931), 32, - sym__newline, - anon_sym_SEMI, + ACTIONS(4450), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(4452), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_with, + ACTIONS(4460), 1, anon_sym_STAR_STAR, + ACTIONS(4462), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_nogil, - [91929] = 20, - ACTIONS(4197), 1, - anon_sym_LPAREN, - ACTIONS(4205), 1, - anon_sym_STAR_STAR, - ACTIONS(4215), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4219), 1, + ACTIONS(4470), 1, anon_sym_AMP, - ACTIONS(4221), 1, + ACTIONS(4472), 1, anon_sym_CARET, - ACTIONS(4223), 1, + ACTIONS(4474), 1, anon_sym_is, - ACTIONS(4354), 1, - anon_sym_DOT, - ACTIONS(4356), 1, - anon_sym_LBRACK, - STATE(2934), 1, + STATE(2182), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4199), 2, + ACTIONS(4454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4201), 2, + ACTIONS(4456), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4213), 2, + ACTIONS(4466), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4225), 2, + ACTIONS(4476), 2, anon_sym_LT, anon_sym_GT, - STATE(1999), 2, + STATE(1993), 2, sym__not_in, sym__is_not, - STATE(2094), 2, + STATE(2471), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4211), 3, + ACTIONS(4464), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4203), 6, + ACTIONS(4458), 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(4193), 8, - sym__newline, - anon_sym_SEMI, + ACTIONS(4289), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [92011] = 21, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4217), 1, + sym_type_conversion, + [95024] = 21, + ACTIONS(4303), 1, + anon_sym_EQ, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4358), 1, + ACTIONS(4450), 1, anon_sym_DOT, - ACTIONS(4360), 1, + ACTIONS(4452), 1, anon_sym_LPAREN, - ACTIONS(4368), 1, + ACTIONS(4460), 1, anon_sym_STAR_STAR, - ACTIONS(4370), 1, + ACTIONS(4462), 1, anon_sym_LBRACK, - ACTIONS(4376), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4378), 1, + ACTIONS(4470), 1, anon_sym_AMP, - ACTIONS(4380), 1, + ACTIONS(4472), 1, anon_sym_CARET, - ACTIONS(4382), 1, + ACTIONS(4474), 1, anon_sym_is, - STATE(2169), 1, + STATE(3159), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4362), 2, + ACTIONS(4454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4364), 2, + ACTIONS(4456), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4374), 2, + ACTIONS(4466), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4384), 2, + ACTIONS(4476), 2, anon_sym_LT, anon_sym_GT, - STATE(1903), 2, + STATE(1993), 2, sym__not_in, sym__is_not, - STATE(2540), 2, + STATE(2471), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4372), 3, + ACTIONS(4464), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4366), 6, + ACTIONS(4458), 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(4193), 7, + ACTIONS(4289), 8, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [92095] = 21, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4386), 1, + sym_type_conversion, + [95109] = 8, + ACTIONS(4291), 1, anon_sym_DOT, - ACTIONS(4388), 1, + ACTIONS(4293), 1, anon_sym_LPAREN, - ACTIONS(4396), 1, + ACTIONS(4301), 1, anon_sym_STAR_STAR, - ACTIONS(4398), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(4404), 1, - anon_sym_PIPE, - ACTIONS(4406), 1, - anon_sym_AMP, - ACTIONS(4408), 1, - anon_sym_CARET, - ACTIONS(4410), 1, - anon_sym_is, - STATE(3111), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4390), 2, + STATE(2164), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4392), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4402), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4412), 2, anon_sym_LT, anon_sym_GT, - STATE(1916), 2, - sym__not_in, - sym__is_not, - STATE(2498), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4400), 3, + ACTIONS(4368), 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, - ACTIONS(4394), 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(4193), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [92179] = 21, - ACTIONS(4207), 1, + anon_sym_nogil, + [95168] = 21, + ACTIONS(4303), 1, anon_sym_as, - ACTIONS(4217), 1, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4386), 1, + ACTIONS(4422), 1, anon_sym_DOT, - ACTIONS(4388), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4396), 1, + ACTIONS(4432), 1, anon_sym_STAR_STAR, - ACTIONS(4398), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(4404), 1, + ACTIONS(4440), 1, anon_sym_PIPE, - ACTIONS(4406), 1, + ACTIONS(4442), 1, anon_sym_AMP, - ACTIONS(4408), 1, + ACTIONS(4444), 1, anon_sym_CARET, - ACTIONS(4410), 1, + ACTIONS(4446), 1, anon_sym_is, - STATE(2138), 1, + STATE(3155), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4390), 2, + ACTIONS(4426), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4392), 2, + ACTIONS(4428), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4402), 2, + ACTIONS(4438), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4412), 2, + ACTIONS(4448), 2, anon_sym_LT, anon_sym_GT, - STATE(1916), 2, + STATE(2013), 2, sym__not_in, sym__is_not, - STATE(2498), 2, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4400), 3, + ACTIONS(4436), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4394), 6, + ACTIONS(4430), 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(4193), 7, - anon_sym_RPAREN, + ACTIONS(4289), 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, - [92263] = 21, - ACTIONS(4207), 1, - anon_sym_EQ, - ACTIONS(4217), 1, + [95253] = 21, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4414), 1, + ACTIONS(4478), 1, anon_sym_DOT, - ACTIONS(4416), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4424), 1, + ACTIONS(4488), 1, anon_sym_STAR_STAR, - ACTIONS(4426), 1, + ACTIONS(4490), 1, anon_sym_LBRACK, - ACTIONS(4432), 1, + ACTIONS(4496), 1, anon_sym_PIPE, - ACTIONS(4434), 1, + ACTIONS(4498), 1, anon_sym_AMP, - ACTIONS(4436), 1, + ACTIONS(4500), 1, anon_sym_CARET, - ACTIONS(4438), 1, + ACTIONS(4502), 1, anon_sym_is, - STATE(3096), 1, + STATE(2223), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4418), 2, + ACTIONS(4482), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4420), 2, + ACTIONS(4484), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4494), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4504), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2053), 2, + sym__not_in, + sym__is_not, + STATE(2599), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4492), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4486), 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(4289), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [95337] = 20, + ACTIONS(4293), 1, + anon_sym_LPAREN, + ACTIONS(4301), 1, + anon_sym_STAR_STAR, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4315), 1, + anon_sym_AMP, + ACTIONS(4317), 1, + anon_sym_CARET, + ACTIONS(4319), 1, + anon_sym_is, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK, + STATE(3027), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4295), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4297), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4430), 2, + ACTIONS(4309), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4440), 2, + ACTIONS(4321), 2, anon_sym_LT, anon_sym_GT, - STATE(1917), 2, + STATE(2015), 2, sym__not_in, sym__is_not, - STATE(2486), 2, + STATE(2164), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4428), 3, + ACTIONS(4307), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4422), 6, + ACTIONS(4299), 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(4193), 7, + ACTIONS(4289), 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, - [92347] = 3, + [95419] = 21, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4510), 1, + anon_sym_DOT, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4520), 1, + anon_sym_STAR_STAR, + ACTIONS(4522), 1, + anon_sym_LBRACK, + ACTIONS(4528), 1, + anon_sym_PIPE, + ACTIONS(4530), 1, + anon_sym_AMP, + ACTIONS(4532), 1, + anon_sym_CARET, + ACTIONS(4534), 1, + anon_sym_is, + STATE(3175), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4444), 5, + ACTIONS(4514), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4516), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4526), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4536), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2031), 2, + sym__not_in, + sym__is_not, + STATE(2564), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4524), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4518), 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(4289), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [95503] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4540), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4442), 34, + ACTIONS(4538), 34, sym__newline, sym_string_start, anon_sym_SEMI, @@ -196908,80 +201982,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92395] = 21, - ACTIONS(4207), 1, + [95551] = 4, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3806), 6, + anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4414), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3795), 32, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4416), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(4424), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, - ACTIONS(4426), 1, anon_sym_LBRACK, - ACTIONS(4432), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4434), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4436), 1, anon_sym_CARET, - ACTIONS(4438), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2177), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [95601] = 4, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4418), 2, + ACTIONS(813), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4420), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4430), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4440), 2, anon_sym_LT, anon_sym_GT, - STATE(1917), 2, - sym__not_in, - sym__is_not, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4428), 3, + ACTIONS(811), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_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(4422), 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(4193), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - [92479] = 3, + anon_sym_nogil, + [95651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4448), 5, + ACTIONS(4544), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4446), 34, + ACTIONS(4542), 34, sym__newline, sym_string_start, anon_sym_SEMI, @@ -197016,62 +202119,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92527] = 21, - ACTIONS(4207), 1, + [95699] = 21, + ACTIONS(4303), 1, anon_sym_as, - ACTIONS(4217), 1, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4358), 1, + ACTIONS(4478), 1, anon_sym_DOT, - ACTIONS(4360), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4368), 1, + ACTIONS(4488), 1, anon_sym_STAR_STAR, - ACTIONS(4370), 1, + ACTIONS(4490), 1, anon_sym_LBRACK, - ACTIONS(4376), 1, + ACTIONS(4496), 1, anon_sym_PIPE, - ACTIONS(4378), 1, + ACTIONS(4498), 1, anon_sym_AMP, - ACTIONS(4380), 1, + ACTIONS(4500), 1, anon_sym_CARET, - ACTIONS(4382), 1, + ACTIONS(4502), 1, anon_sym_is, - STATE(3120), 1, + STATE(3173), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4362), 2, + ACTIONS(4482), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4364), 2, + ACTIONS(4484), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4374), 2, + ACTIONS(4494), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4384), 2, + ACTIONS(4504), 2, anon_sym_LT, anon_sym_GT, - STATE(1903), 2, + STATE(2053), 2, sym__not_in, sym__is_not, - STATE(2540), 2, + STATE(2599), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4372), 3, + ACTIONS(4492), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4366), 6, + ACTIONS(4486), 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(4193), 7, + ACTIONS(4289), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -197079,37 +202182,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [92611] = 5, - ACTIONS(2401), 1, - sym_string_start, + [95783] = 21, + ACTIONS(4303), 1, + anon_sym_as, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4510), 1, + anon_sym_DOT, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4520), 1, + anon_sym_STAR_STAR, + ACTIONS(4522), 1, + anon_sym_LBRACK, + ACTIONS(4528), 1, + anon_sym_PIPE, + ACTIONS(4530), 1, + anon_sym_AMP, + ACTIONS(4532), 1, + anon_sym_CARET, + ACTIONS(4534), 1, + anon_sym_is, + STATE(2206), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2075), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 5, - anon_sym_as, + ACTIONS(4514), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4516), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4526), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4536), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2031), 2, + sym__not_in, + sym__is_not, + STATE(2564), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4524), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4518), 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(4289), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [95867] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3982), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 30, + ACTIONS(3980), 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, @@ -197125,17 +202288,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92662] = 3, + anon_sym_nogil, + [95914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4452), 5, + ACTIONS(4548), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4450), 33, + ACTIONS(4546), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197169,22 +202333,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92709] = 5, - ACTIONS(2401), 1, + [95961] = 5, + ACTIONS(4550), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2100), 2, + STATE(2131), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4259), 5, + ACTIONS(4335), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4257), 30, + ACTIONS(4333), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -197215,17 +202379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92760] = 3, + [96012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 5, + ACTIONS(4555), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 33, + ACTIONS(4553), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197259,17 +202423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92807] = 3, + [96059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 5, + ACTIONS(4559), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4193), 33, + ACTIONS(4557), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197303,17 +202467,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92854] = 3, + [96106] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 5, + ACTIONS(4563), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 33, + ACTIONS(4561), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197347,32 +202511,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92901] = 7, - ACTIONS(4464), 1, - anon_sym_as, - ACTIONS(4468), 1, - anon_sym_if, - ACTIONS(4470), 1, - anon_sym_and, - ACTIONS(4472), 1, - anon_sym_or, + [96153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4466), 5, + ACTIONS(4567), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4462), 29, + ACTIONS(4565), 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, @@ -197383,6 +202541,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, @@ -197395,17 +202555,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [92956] = 3, + [96200] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4476), 5, + ACTIONS(813), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4474), 33, + ACTIONS(811), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197439,29 +202599,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93003] = 6, - ACTIONS(4470), 1, - anon_sym_and, - ACTIONS(4472), 1, - anon_sym_or, - ACTIONS(4480), 1, - anon_sym_as, + [96247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4483), 5, + ACTIONS(4571), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4478), 30, + ACTIONS(4569), 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, @@ -197474,6 +202629,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, @@ -197486,21 +202643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93056] = 5, - ACTIONS(4470), 1, - anon_sym_and, - ACTIONS(4472), 1, - anon_sym_or, + [96294] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4487), 5, + ACTIONS(4575), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 31, + ACTIONS(4573), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197520,6 +202673,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, @@ -197532,17 +202687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93107] = 3, + [96341] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 5, + ACTIONS(4579), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 33, + ACTIONS(4577), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197576,19 +202731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93154] = 4, - ACTIONS(4470), 1, - anon_sym_and, + [96388] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 5, + ACTIONS(4583), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 32, + ACTIONS(4581), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197608,6 +202761,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, @@ -197621,32 +202775,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93203] = 7, - ACTIONS(4464), 1, - anon_sym_as, - ACTIONS(4468), 1, - anon_sym_if, - ACTIONS(4470), 1, - anon_sym_and, - ACTIONS(4472), 1, - anon_sym_or, + [96435] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4495), 5, + ACTIONS(4587), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4493), 29, + ACTIONS(4585), 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, @@ -197657,6 +202805,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, @@ -197669,32 +202819,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93258] = 7, - ACTIONS(4464), 1, - anon_sym_as, - ACTIONS(4468), 1, - anon_sym_if, - ACTIONS(4470), 1, - anon_sym_and, - ACTIONS(4472), 1, - anon_sym_or, + [96482] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4499), 5, + ACTIONS(4591), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4497), 29, + ACTIONS(4589), 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, @@ -197705,6 +202849,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, @@ -197717,49 +202863,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93313] = 9, - ACTIONS(4238), 1, - anon_sym_not, - ACTIONS(4504), 1, - anon_sym_is, - STATE(2087), 1, - aux_sym_comparison_operator_repeat1, + [96529] = 5, + ACTIONS(1279), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4507), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2006), 2, - sym__not_in, - sym__is_not, - ACTIONS(4233), 3, - anon_sym_as, + STATE(2150), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3806), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4501), 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(4231), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3795), 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_else, + anon_sym_in, + anon_sym_by, 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, @@ -197767,94 +202903,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [93372] = 5, - STATE(2087), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [96580] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2006), 2, - sym__not_in, - sym__is_not, - ACTIONS(4229), 5, - anon_sym_as, + ACTIONS(1329), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1332), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4227), 30, + ACTIONS(1530), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1327), 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, - [93423] = 9, - ACTIONS(4238), 1, - anon_sym_not, - ACTIONS(4513), 1, - anon_sym_is, - STATE(2089), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_nogil, + [96631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4516), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1985), 2, - sym__not_in, - sym__is_not, - ACTIONS(4233), 3, + ACTIONS(4595), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4510), 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(4231), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4593), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -197862,24 +202992,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - sym_type_conversion, - [93482] = 5, - STATE(2089), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [96678] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1985), 2, - sym__not_in, - sym__is_not, - ACTIONS(4229), 5, + ACTIONS(4599), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4227), 30, + ACTIONS(4597), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -197887,12 +203021,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, @@ -197908,18 +203042,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [93533] = 3, + anon_sym_nogil, + [96725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4521), 5, + ACTIONS(4603), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4519), 33, + ACTIONS(4601), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197953,17 +203087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93580] = 3, + [96772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4525), 5, + ACTIONS(4607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4523), 33, + ACTIONS(4605), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -197997,34 +203131,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93627] = 3, + [96819] = 5, + ACTIONS(2463), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4529), 5, + STATE(2131), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4346), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4527), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4344), 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, @@ -198040,30 +203177,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [93674] = 3, + [96870] = 5, + ACTIONS(1279), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4533), 5, + STATE(2152), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4346), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4531), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4344), 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_with, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -198084,44 +203223,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [93721] = 13, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(4247), 1, - anon_sym_DOT, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4255), 1, - anon_sym_complex, - STATE(3412), 1, - aux_sym_class_definition_repeat2, - STATE(3413), 1, - sym_type_index, + [96921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3554), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3710), 3, + ACTIONS(3978), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4251), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3699), 21, + ACTIONS(3976), 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, @@ -198131,6 +203257,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, @@ -198139,29 +203266,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [93788] = 3, + anon_sym_nogil, + [96968] = 5, + ACTIONS(4609), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + STATE(2152), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4335), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4333), 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_with, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -198182,22 +203313,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [93835] = 3, + [97019] = 5, + ACTIONS(1999), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4336), 5, + STATE(2191), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3806), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(3795), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -198205,12 +203337,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, @@ -198226,18 +203358,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [93882] = 3, + sym_type_conversion, + [97070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4537), 5, + ACTIONS(4010), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4535), 33, + ACTIONS(4008), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198271,17 +203403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93929] = 3, + [97117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4541), 5, + ACTIONS(4614), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4539), 33, + ACTIONS(4612), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198315,37 +203447,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93976] = 5, - ACTIONS(4543), 1, - sym_string_start, + [97164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2100), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4263), 5, - anon_sym_as, + ACTIONS(3989), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4261), 30, + ACTIONS(3984), 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, @@ -198361,31 +203490,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [94027] = 3, + anon_sym_nogil, + [97211] = 13, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, + ACTIONS(4323), 1, + anon_sym_DOT, + ACTIONS(4325), 1, + anon_sym_STAR, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, + anon_sym_complex, + STATE(3441), 1, + aux_sym_class_definition_repeat2, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3799), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(3597), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3806), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4327), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3795), 21, 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, @@ -198395,7 +203537,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, @@ -198404,18 +203545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94074] = 3, + [97278] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 5, + ACTIONS(3967), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4550), 33, + ACTIONS(3965), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198449,17 +203589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94121] = 3, + [97325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + ACTIONS(3963), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 33, + ACTIONS(3961), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198493,23 +203633,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94168] = 5, - ACTIONS(2033), 1, - sym_string_start, + [97372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2114), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4259), 5, + ACTIONS(3963), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4257), 30, + ACTIONS(3961), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -198517,12 +203655,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, @@ -198538,18 +203676,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [94219] = 3, + anon_sym_nogil, + [97419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(4414), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 33, + ACTIONS(4406), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198583,21 +203721,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94266] = 3, + [97466] = 5, + ACTIONS(4616), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4564), 5, + STATE(2162), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4335), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4562), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4333), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -198605,12 +203745,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, @@ -198626,18 +203766,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94313] = 3, + sym_type_conversion, + [97517] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 5, + ACTIONS(3982), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 33, + ACTIONS(3980), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198671,17 +203811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94360] = 3, + [97564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4572), 5, + ACTIONS(4621), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 33, + ACTIONS(4619), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198715,17 +203855,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94407] = 3, + [97611] = 22, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4120), 1, + anon_sym_enum, + ACTIONS(4122), 1, + anon_sym_cppclass, + ACTIONS(4124), 1, + anon_sym_fused, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3568), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4118), 2, + anon_sym_struct, + anon_sym_union, + STATE(2863), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(2969), 2, + sym_cdef_type_declaration, + sym_cvar_decl, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(746), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(747), 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, + [97696] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 5, + ACTIONS(3974), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4574), 33, + ACTIONS(3969), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198759,17 +203962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94454] = 3, + [97743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 5, + ACTIONS(4625), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 33, + ACTIONS(4623), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -198803,45 +204006,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94501] = 5, + [97790] = 7, + ACTIONS(4629), 1, + anon_sym_as, + ACTIONS(4633), 1, + anon_sym_if, + ACTIONS(4635), 1, + anon_sym_and, + ACTIONS(4637), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, + ACTIONS(4631), 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(4627), 29, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, 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, @@ -198849,147 +204054,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94552] = 20, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4578), 1, - anon_sym_DOT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4596), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_AMP, - ACTIONS(4600), 1, - anon_sym_CARET, - ACTIONS(4602), 1, - anon_sym_is, - STATE(2219), 1, - aux_sym_comparison_operator_repeat1, + [97845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4582), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4584), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4594), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4604), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1954), 2, - sym__not_in, - sym__is_not, - STATE(2611), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4592), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4586), 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(4193), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [94633] = 22, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(3948), 1, - anon_sym_enum, - ACTIONS(3950), 1, - anon_sym_cppclass, - ACTIONS(3952), 1, - anon_sym_fused, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3492), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3946), 2, - anon_sym_struct, - anon_sym_union, - STATE(2827), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(2851), 2, - sym_cdef_type_declaration, - sym_cvar_decl, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(717), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(718), 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, - [94718] = 5, - ACTIONS(4606), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2114), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4263), 5, + ACTIONS(4641), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4261), 30, + ACTIONS(4639), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -198997,12 +204076,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, @@ -199018,25 +204097,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [94769] = 3, + anon_sym_nogil, + [97892] = 6, + ACTIONS(4635), 1, + anon_sym_and, + ACTIONS(4637), 1, + anon_sym_or, + ACTIONS(4645), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 5, + ACTIONS(4648), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3862), 33, + ACTIONS(4643), 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, @@ -199049,8 +204133,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, @@ -199063,17 +204145,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94816] = 3, + [97945] = 5, + ACTIONS(4635), 1, + anon_sym_and, + ACTIONS(4637), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 5, + ACTIONS(4652), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 33, + ACTIONS(4650), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199093,8 +204179,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, @@ -199107,17 +204191,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94863] = 3, + [97996] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3883), 5, + ACTIONS(4656), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3881), 33, + ACTIONS(4654), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199151,17 +204235,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94910] = 3, + [98043] = 4, + ACTIONS(4635), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 5, + ACTIONS(4656), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3870), 33, + ACTIONS(4654), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199181,7 +204267,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, @@ -199195,26 +204280,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94957] = 3, + [98092] = 7, + ACTIONS(4629), 1, + anon_sym_as, + ACTIONS(4633), 1, + anon_sym_if, + ACTIONS(4635), 1, + anon_sym_and, + ACTIONS(4637), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 5, + ACTIONS(4660), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 33, + ACTIONS(4658), 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, @@ -199225,8 +204316,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, @@ -199239,26 +204328,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95004] = 3, + [98147] = 7, + ACTIONS(4629), 1, + anon_sym_as, + ACTIONS(4633), 1, + anon_sym_if, + ACTIONS(4635), 1, + anon_sym_and, + ACTIONS(4637), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 5, + ACTIONS(4664), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 33, + ACTIONS(4662), 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, @@ -199269,8 +204364,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, @@ -199283,36 +204376,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95051] = 3, + [98202] = 9, + ACTIONS(4355), 1, + anon_sym_not, + ACTIONS(4669), 1, + anon_sym_is, + STATE(2176), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, + ACTIONS(4672), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1983), 2, + sym__not_in, + sym__is_not, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3912), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4666), 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(4348), 22, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_with, + anon_sym_else, + anon_sym_by, 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, @@ -199320,36 +204426,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + [98261] = 20, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4675), 1, + anon_sym_DOT, + ACTIONS(4677), 1, + anon_sym_LPAREN, + ACTIONS(4685), 1, + anon_sym_STAR_STAR, + ACTIONS(4687), 1, + anon_sym_LBRACK, + ACTIONS(4693), 1, + anon_sym_PIPE, + ACTIONS(4695), 1, + anon_sym_AMP, + ACTIONS(4697), 1, + anon_sym_CARET, + ACTIONS(4699), 1, anon_sym_is, + STATE(3156), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4679), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4691), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4701), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1970), 2, + sym__not_in, + sym__is_not, + STATE(2653), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4689), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4683), 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, - [95098] = 3, + ACTIONS(4289), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [98342] = 5, + STATE(2176), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 5, + STATE(1983), 2, + sym__not_in, + sym__is_not, + ACTIONS(4342), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4340), 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_with, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -199370,37 +204533,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95145] = 3, + [98393] = 9, + ACTIONS(4355), 1, + anon_sym_not, + ACTIONS(4706), 1, + anon_sym_is, + STATE(2179), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4709), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 33, - sym__newline, - anon_sym_SEMI, + STATE(2013), 2, + sym__not_in, + sym__is_not, + ACTIONS(4350), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4703), 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(4348), 22, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_with, + anon_sym_async, + anon_sym_for, 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, @@ -199408,41 +204583,37 @@ 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, - [95192] = 3, + [98452] = 5, + STATE(2179), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + STATE(2013), 2, + sym__not_in, + sym__is_not, + ACTIONS(4342), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4340), 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, @@ -199458,37 +204629,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95239] = 3, + [98503] = 9, + ACTIONS(4355), 1, + anon_sym_not, + ACTIONS(4715), 1, + anon_sym_is, + STATE(2181), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(4718), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1993), 2, + sym__not_in, + sym__is_not, + ACTIONS(4350), 3, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3908), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4712), 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(4348), 22, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -199496,28 +204678,24 @@ 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, - [95286] = 3, + sym_type_conversion, + [98562] = 5, + STATE(2181), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 5, + STATE(1993), 2, + sym__not_in, + sym__is_not, + ACTIONS(4342), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4340), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -199525,12 +204703,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, @@ -199546,80 +204724,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95333] = 20, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4578), 1, - anon_sym_DOT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4596), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_AMP, - ACTIONS(4600), 1, - anon_sym_CARET, - ACTIONS(4602), 1, - anon_sym_is, - STATE(3099), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4582), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4584), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4594), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4604), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1954), 2, - sym__not_in, - sym__is_not, - STATE(2611), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4592), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4586), 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(4193), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [95414] = 5, + sym_type_conversion, + [98613] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 2, + ACTIONS(3954), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3893), 3, + ACTIONS(3957), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 14, + ACTIONS(3951), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -199634,7 +204751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3885), 19, + ACTIONS(3947), 19, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -199654,17 +204771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95465] = 3, + [98664] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 5, + ACTIONS(4723), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4621), 33, + ACTIONS(4721), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199698,17 +204815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95512] = 3, + [98711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 5, + ACTIONS(4000), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 33, + ACTIONS(3995), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199742,17 +204859,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95559] = 3, + [98758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 5, + ACTIONS(4727), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4625), 33, + ACTIONS(4725), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199786,17 +204903,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95606] = 3, + [98805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 5, + ACTIONS(4731), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4629), 33, + ACTIONS(4729), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199830,17 +204947,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95653] = 3, + [98852] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 5, + ACTIONS(4735), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4633), 33, + ACTIONS(4733), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199874,17 +204991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95700] = 3, + [98899] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4639), 5, + ACTIONS(4739), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4637), 33, + ACTIONS(4737), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -199918,23 +205035,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95747] = 5, - ACTIONS(2033), 1, - sym_string_start, + [98946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2104), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 5, + ACTIONS(4743), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 30, + ACTIONS(4741), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -199942,12 +205057,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, @@ -199963,36 +205078,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [95798] = 8, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4302), 1, - anon_sym_LPAREN, - ACTIONS(4310), 1, - anon_sym_STAR_STAR, - ACTIONS(4312), 1, - anon_sym_LBRACK, + anon_sym_nogil, + [98993] = 5, + ACTIONS(1999), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2342), 2, - sym_argument_list, - sym_generator_expression, + STATE(2162), 2, + sym_string, + aux_sym_concatenated_string_repeat1, ACTIONS(4346), 5, - anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 26, + ACTIONS(4344), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -200012,43 +205124,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [95854] = 6, - ACTIONS(4333), 1, - anon_sym_STAR, + sym_type_conversion, + [99044] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4330), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4336), 4, + ACTIONS(4747), 5, + anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 26, + ACTIONS(4745), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -200057,29 +205168,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [95906] = 5, - STATE(2150), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_nogil, + [99091] = 5, + ACTIONS(2463), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1916), 2, - sym__not_in, - sym__is_not, - ACTIONS(4229), 5, + STATE(2149), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3806), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4227), 29, + ACTIONS(3795), 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, @@ -200088,6 +205199,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, @@ -200103,39 +205215,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [95956] = 8, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4302), 1, - anon_sym_LPAREN, - ACTIONS(4310), 1, - anon_sym_STAR_STAR, - ACTIONS(4312), 1, - anon_sym_LBRACK, + [99142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 5, - anon_sym_as, + ACTIONS(3806), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 26, + ACTIONS(3795), 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, @@ -200151,48 +205258,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96012] = 11, - ACTIONS(4300), 1, + anon_sym_nogil, + [99189] = 20, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4675), 1, anon_sym_DOT, - ACTIONS(4302), 1, + ACTIONS(4677), 1, anon_sym_LPAREN, - ACTIONS(4310), 1, + ACTIONS(4685), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4687), 1, anon_sym_LBRACK, + ACTIONS(4693), 1, + anon_sym_PIPE, + ACTIONS(4695), 1, + anon_sym_AMP, + ACTIONS(4697), 1, + anon_sym_CARET, + ACTIONS(4699), 1, + anon_sym_is, + STATE(2278), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4304), 2, + ACTIONS(4679), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4316), 2, + ACTIONS(4681), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4691), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 3, - anon_sym_as, + ACTIONS(4701), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4314), 3, + STATE(1970), 2, + sym__not_in, + sym__is_not, + STATE(2653), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4689), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 21, + ACTIONS(4683), 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(4289), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [99270] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4303), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4289), 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, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -200202,83 +205363,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96074] = 15, - ACTIONS(4272), 1, + anon_sym_nogil, + [99317] = 20, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4749), 1, anon_sym_DOT, - ACTIONS(4274), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(4282), 1, + ACTIONS(4759), 1, anon_sym_STAR_STAR, - ACTIONS(4284), 1, + ACTIONS(4761), 1, anon_sym_LBRACK, - ACTIONS(4290), 1, + ACTIONS(4767), 1, anon_sym_PIPE, - ACTIONS(4292), 1, + ACTIONS(4769), 1, anon_sym_AMP, - ACTIONS(4294), 1, + ACTIONS(4771), 1, anon_sym_CARET, + ACTIONS(4773), 1, + anon_sym_is, + STATE(2453), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4276), 2, + ACTIONS(4753), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4278), 2, + ACTIONS(4755), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4288), 2, + ACTIONS(4765), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2331), 2, + ACTIONS(4775), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2039), 2, + sym__not_in, + sym__is_not, + STATE(2729), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4286), 3, + ACTIONS(4763), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4350), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4348), 16, + ACTIONS(4289), 6, + anon_sym_RPAREN, 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, + ACTIONS(4757), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [96144] = 8, - ACTIONS(4300), 1, + [99397] = 8, + ACTIONS(4422), 1, anon_sym_DOT, - ACTIONS(4302), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4310), 1, + ACTIONS(4432), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2342), 2, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 5, + ACTIONS(4374), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 26, + ACTIONS(4372), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -200305,138 +205472,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96200] = 5, - ACTIONS(1362), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2153), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3699), 29, + [99453] = 13, + ACTIONS(4422), 1, anon_sym_DOT, + ACTIONS(4424), 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_in, + ACTIONS(4432), 1, anon_sym_STAR_STAR, + ACTIONS(4434), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, + ACTIONS(4444), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [96250] = 10, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4302), 1, - anon_sym_LPAREN, - ACTIONS(4310), 1, - anon_sym_STAR_STAR, - ACTIONS(4312), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4304), 2, + ACTIONS(4426), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2342), 2, + ACTIONS(4428), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4438), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, + ACTIONS(4370), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4314), 3, + ACTIONS(4436), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 23, + ACTIONS(4368), 18, anon_sym_COMMA, - 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, - [96310] = 14, - ACTIONS(4300), 1, + [99519] = 12, + ACTIONS(4422), 1, anon_sym_DOT, - ACTIONS(4302), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4310), 1, + ACTIONS(4432), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(4320), 1, - anon_sym_AMP, - ACTIONS(4322), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4304), 2, + ACTIONS(4426), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4306), 2, + ACTIONS(4428), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4316), 2, + ACTIONS(4438), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2342), 2, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, + ACTIONS(4370), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4314), 3, + ACTIONS(4436), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 17, + ACTIONS(4368), 19, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -200448,89 +205569,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96378] = 13, - ACTIONS(4300), 1, + [99583] = 10, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4302), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4310), 1, + ACTIONS(4388), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4322), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4304), 2, + ACTIONS(4382), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4306), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4316), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2342), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, - anon_sym_as, + ACTIONS(4370), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4314), 3, + ACTIONS(4392), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 18, + ACTIONS(4368), 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_else, anon_sym_in, + anon_sym_by, + 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, - [96444] = 5, - ACTIONS(1247), 1, + [99643] = 5, + ACTIONS(1394), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2151), 2, + STATE(2236), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 5, + ACTIONS(3806), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(3795), 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, @@ -200552,236 +205672,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96494] = 12, - ACTIONS(4300), 1, + [99693] = 8, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4302), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4310), 1, + ACTIONS(4388), 1, anon_sym_STAR_STAR, - ACTIONS(4312), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4306), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4316), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2342), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, - anon_sym_as, + ACTIONS(4420), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4314), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 19, + ACTIONS(4418), 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_else, anon_sym_in, + anon_sym_by, + 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, - [96558] = 20, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4641), 1, + [99749] = 14, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4643), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4651), 1, + ACTIONS(4388), 1, anon_sym_STAR_STAR, - ACTIONS(4653), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4659), 1, - anon_sym_PIPE, - ACTIONS(4661), 1, + ACTIONS(4398), 1, anon_sym_AMP, - ACTIONS(4663), 1, + ACTIONS(4400), 1, anon_sym_CARET, - ACTIONS(4665), 1, - anon_sym_is, - STATE(2359), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4645), 2, + ACTIONS(4382), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4647), 2, + ACTIONS(4384), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4657), 2, + ACTIONS(4394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4667), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1925), 2, - sym__not_in, - sym__is_not, - STATE(2714), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4655), 3, + ACTIONS(4370), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4392), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4193), 6, - anon_sym_RPAREN, + ACTIONS(4368), 17, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4649), 6, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [96638] = 9, - ACTIONS(4238), 1, + anon_sym_by, + anon_sym_PIPE, anon_sym_not, - ACTIONS(4672), 1, + anon_sym_and, + anon_sym_or, anon_sym_is, - STATE(2150), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4675), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1916), 2, - sym__not_in, - sym__is_not, - ACTIONS(4233), 3, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4669), 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(4231), 21, + [99817] = 13, + ACTIONS(4378), 1, anon_sym_DOT, + ACTIONS(4380), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(4388), 1, anon_sym_STAR_STAR, + ACTIONS(4390), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, + ACTIONS(4400), 1, anon_sym_CARET, - anon_sym_LT_LT, - [96696] = 5, - ACTIONS(1247), 1, - sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2152), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4259), 5, + ACTIONS(4382), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4384), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4394), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4257), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4392), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 18, 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_by, anon_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, - [96746] = 5, - ACTIONS(4678), 1, - sym_string_start, + [99883] = 5, + STATE(2211), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2152), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4263), 5, + STATE(2031), 2, + sym__not_in, + sym__is_not, + ACTIONS(4342), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4261), 29, + ACTIONS(4340), 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, @@ -200803,36 +205872,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96796] = 5, - ACTIONS(1362), 1, - sym_string_start, + [99933] = 8, + ACTIONS(4450), 1, + anon_sym_DOT, + ACTIONS(4452), 1, + anon_sym_LPAREN, + ACTIONS(4460), 1, + anon_sym_STAR_STAR, + ACTIONS(4462), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2158), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4259), 5, - anon_sym_as, + STATE(2471), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4420), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4257), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4418), 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_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -200848,190 +205919,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96846] = 9, - ACTIONS(4238), 1, + sym_type_conversion, + [99989] = 20, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4684), 1, + ACTIONS(4510), 1, + anon_sym_DOT, + ACTIONS(4522), 1, + anon_sym_LBRACK, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4759), 1, + anon_sym_STAR_STAR, + ACTIONS(4767), 1, + anon_sym_PIPE, + ACTIONS(4769), 1, + anon_sym_AMP, + ACTIONS(4771), 1, + anon_sym_CARET, + ACTIONS(4773), 1, anon_sym_is, - STATE(2154), 1, + STATE(3246), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4687), 2, + ACTIONS(4753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4755), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4765), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4775), 2, anon_sym_LT, anon_sym_GT, - STATE(1917), 2, + STATE(2039), 2, sym__not_in, sym__is_not, - ACTIONS(4233), 3, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - ACTIONS(4681), 6, + STATE(2729), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4763), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4289), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4757), 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(4231), 21, - 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_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, - [96904] = 20, - ACTIONS(4217), 1, + [100069] = 20, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4386), 1, + ACTIONS(4478), 1, anon_sym_DOT, - ACTIONS(4398), 1, + ACTIONS(4490), 1, anon_sym_LBRACK, - ACTIONS(4643), 1, + ACTIONS(4677), 1, anon_sym_LPAREN, - ACTIONS(4651), 1, + ACTIONS(4685), 1, anon_sym_STAR_STAR, - ACTIONS(4659), 1, + ACTIONS(4693), 1, anon_sym_PIPE, - ACTIONS(4661), 1, + ACTIONS(4695), 1, anon_sym_AMP, - ACTIONS(4663), 1, + ACTIONS(4697), 1, anon_sym_CARET, - ACTIONS(4665), 1, + ACTIONS(4699), 1, anon_sym_is, - STATE(3191), 1, + STATE(3156), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4645), 2, + ACTIONS(4679), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4647), 2, + ACTIONS(4681), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4657), 2, + ACTIONS(4691), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4667), 2, + ACTIONS(4701), 2, anon_sym_LT, anon_sym_GT, - STATE(1925), 2, + STATE(1970), 2, sym__not_in, sym__is_not, - STATE(2714), 2, + STATE(2653), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4655), 3, + ACTIONS(4689), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4193), 6, - anon_sym_RPAREN, + ACTIONS(4289), 6, anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - ACTIONS(4649), 6, + ACTIONS(4683), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96984] = 5, - ACTIONS(4690), 1, - sym_string_start, + [100149] = 12, + ACTIONS(4378), 1, + anon_sym_DOT, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4388), 1, + anon_sym_STAR_STAR, + ACTIONS(4390), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2156), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4263), 5, - anon_sym_as, + ACTIONS(4382), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4384), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4394), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4261), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4392), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 19, 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_by, anon_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, - [97034] = 9, - ACTIONS(4238), 1, + [100213] = 9, + ACTIONS(4355), 1, anon_sym_not, - ACTIONS(4696), 1, + ACTIONS(4780), 1, anon_sym_is, - STATE(2157), 1, + STATE(2211), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4699), 2, + ACTIONS(4783), 2, anon_sym_LT, anon_sym_GT, - STATE(1903), 2, + STATE(2031), 2, sym__not_in, sym__is_not, - ACTIONS(4233), 3, + ACTIONS(4350), 3, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4693), 6, + ACTIONS(4777), 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(4231), 21, + ACTIONS(4348), 21, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -201039,7 +206130,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -201051,36 +206141,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97092] = 5, - ACTIONS(4702), 1, - sym_string_start, + [100271] = 8, + ACTIONS(4450), 1, + anon_sym_DOT, + ACTIONS(4452), 1, + anon_sym_LPAREN, + ACTIONS(4460), 1, + anon_sym_STAR_STAR, + ACTIONS(4462), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2158), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4263), 5, - anon_sym_as, + STATE(2471), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4374), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4261), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4372), 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_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -201096,33 +206188,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97142] = 8, - ACTIONS(4272), 1, + sym_type_conversion, + [100327] = 8, + ACTIONS(4422), 1, anon_sym_DOT, - ACTIONS(4274), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4282), 1, + ACTIONS(4432), 1, anon_sym_STAR_STAR, - ACTIONS(4284), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2331), 2, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 5, + ACTIONS(4370), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 26, + ACTIONS(4368), 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, @@ -201143,42 +206237,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [97198] = 11, - ACTIONS(4272), 1, + [100383] = 11, + ACTIONS(4422), 1, anon_sym_DOT, - ACTIONS(4274), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4282), 1, + ACTIONS(4432), 1, anon_sym_STAR_STAR, - ACTIONS(4284), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4276), 2, + ACTIONS(4426), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4288), 2, + ACTIONS(4438), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2331), 2, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, - anon_sym_EQ, + ACTIONS(4370), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4286), 3, + ACTIONS(4436), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 21, + ACTIONS(4368), 21, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_RBRACE, @@ -201194,39 +206288,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [97260] = 8, - ACTIONS(4272), 1, - anon_sym_DOT, - ACTIONS(4274), 1, - anon_sym_LPAREN, - ACTIONS(4282), 1, - anon_sym_STAR_STAR, - ACTIONS(4284), 1, - anon_sym_LBRACK, + [100445] = 5, + ACTIONS(4786), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2331), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 5, + STATE(2215), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4335), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 26, + ACTIONS(4333), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -201242,100 +206333,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [97316] = 10, - ACTIONS(4272), 1, + [100495] = 15, + ACTIONS(4450), 1, anon_sym_DOT, - ACTIONS(4274), 1, + ACTIONS(4452), 1, anon_sym_LPAREN, - ACTIONS(4282), 1, + ACTIONS(4460), 1, anon_sym_STAR_STAR, - ACTIONS(4284), 1, + ACTIONS(4462), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4276), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2331), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4286), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 23, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_DASH, + ACTIONS(4468), 1, 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, - [97376] = 14, - ACTIONS(4272), 1, - anon_sym_DOT, - ACTIONS(4274), 1, - anon_sym_LPAREN, - ACTIONS(4282), 1, - anon_sym_STAR_STAR, - ACTIONS(4284), 1, - anon_sym_LBRACK, - ACTIONS(4292), 1, + ACTIONS(4470), 1, anon_sym_AMP, - ACTIONS(4294), 1, + ACTIONS(4472), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4276), 2, + ACTIONS(4454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4278), 2, + ACTIONS(4456), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4288), 2, + ACTIONS(4466), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2331), 2, + STATE(2471), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, + ACTIONS(4366), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4286), 3, + ACTIONS(4464), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 17, + ACTIONS(4364), 16, 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, @@ -201347,52 +206388,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [97444] = 13, - ACTIONS(4272), 1, + [100565] = 8, + ACTIONS(4450), 1, anon_sym_DOT, - ACTIONS(4274), 1, + ACTIONS(4452), 1, anon_sym_LPAREN, - ACTIONS(4282), 1, + ACTIONS(4460), 1, anon_sym_STAR_STAR, - ACTIONS(4284), 1, + ACTIONS(4462), 1, anon_sym_LBRACK, - ACTIONS(4294), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4276), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4278), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4288), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2331), 2, + STATE(2471), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, + ACTIONS(4370), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4286), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 18, + ACTIONS(4368), 26, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -201400,41 +206436,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [97510] = 12, - ACTIONS(4272), 1, + [100621] = 11, + ACTIONS(4450), 1, anon_sym_DOT, - ACTIONS(4274), 1, + ACTIONS(4452), 1, anon_sym_LPAREN, - ACTIONS(4282), 1, + ACTIONS(4460), 1, anon_sym_STAR_STAR, - ACTIONS(4284), 1, + ACTIONS(4462), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4276), 2, + ACTIONS(4454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4278), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4288), 2, + ACTIONS(4466), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2331), 2, + STATE(2471), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, + ACTIONS(4370), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4286), 3, + ACTIONS(4464), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 19, + ACTIONS(4368), 21, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -201445,6 +206479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -201452,33 +206487,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [97574] = 5, - ACTIONS(2475), 1, - sym_string_start, + [100683] = 6, + ACTIONS(4411), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2175), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 5, - anon_sym_as, - anon_sym_STAR, + ACTIONS(4416), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4408), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4414), 4, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(4406), 26, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_by, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -201488,7 +206525,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, @@ -201497,416 +206533,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97624] = 20, - ACTIONS(4217), 1, + [100735] = 20, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4274), 1, + ACTIONS(4422), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(4452), 1, anon_sym_LPAREN, - ACTIONS(4282), 1, + ACTIONS(4460), 1, anon_sym_STAR_STAR, - ACTIONS(4290), 1, + ACTIONS(4468), 1, anon_sym_PIPE, - ACTIONS(4292), 1, + ACTIONS(4470), 1, anon_sym_AMP, - ACTIONS(4294), 1, + ACTIONS(4472), 1, anon_sym_CARET, - ACTIONS(4296), 1, + ACTIONS(4474), 1, anon_sym_is, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4312), 1, - anon_sym_LBRACK, - STATE(3101), 1, + STATE(3159), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4276), 2, + ACTIONS(4454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4278), 2, + ACTIONS(4456), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4288), 2, + ACTIONS(4466), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4298), 2, + ACTIONS(4476), 2, anon_sym_LT, anon_sym_GT, - STATE(1985), 2, + STATE(1993), 2, sym__not_in, sym__is_not, - STATE(2331), 2, + STATE(2471), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4286), 3, + ACTIONS(4464), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4193), 6, + ACTIONS(4289), 6, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - ACTIONS(4280), 6, + ACTIONS(4458), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97704] = 20, - ACTIONS(4217), 1, + [100815] = 20, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4641), 1, + ACTIONS(4749), 1, anon_sym_DOT, - ACTIONS(4643), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(4651), 1, + ACTIONS(4759), 1, anon_sym_STAR_STAR, - ACTIONS(4653), 1, + ACTIONS(4761), 1, anon_sym_LBRACK, - ACTIONS(4659), 1, + ACTIONS(4767), 1, anon_sym_PIPE, - ACTIONS(4661), 1, + ACTIONS(4769), 1, anon_sym_AMP, - ACTIONS(4663), 1, + ACTIONS(4771), 1, anon_sym_CARET, - ACTIONS(4665), 1, + ACTIONS(4773), 1, anon_sym_is, - STATE(3191), 1, + STATE(3246), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4645), 2, + ACTIONS(4753), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4647), 2, + ACTIONS(4755), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4657), 2, + ACTIONS(4765), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4667), 2, + ACTIONS(4775), 2, anon_sym_LT, anon_sym_GT, - STATE(1925), 2, + STATE(2039), 2, sym__not_in, sym__is_not, - STATE(2714), 2, + STATE(2729), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4655), 3, + ACTIONS(4763), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4193), 6, + ACTIONS(4289), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(4649), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [97784] = 5, - STATE(2157), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1903), 2, - sym__not_in, - sym__is_not, - ACTIONS(4229), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4227), 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, - [97834] = 8, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4302), 1, - anon_sym_LPAREN, - ACTIONS(4310), 1, - anon_sym_STAR_STAR, - ACTIONS(4312), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4342), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4340), 26, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [97890] = 15, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4302), 1, - anon_sym_LPAREN, - ACTIONS(4310), 1, - anon_sym_STAR_STAR, - ACTIONS(4312), 1, - anon_sym_LBRACK, - ACTIONS(4318), 1, - anon_sym_PIPE, - ACTIONS(4320), 1, - anon_sym_AMP, - ACTIONS(4322), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4304), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4306), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4316), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2342), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4314), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4350), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4348), 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, - [97960] = 8, - ACTIONS(4272), 1, - anon_sym_DOT, - ACTIONS(4274), 1, - anon_sym_LPAREN, - ACTIONS(4282), 1, - anon_sym_STAR_STAR, - ACTIONS(4284), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2331), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4346), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4344), 26, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, + ACTIONS(4757), 6, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98016] = 20, - ACTIONS(4217), 1, + [100895] = 9, + ACTIONS(4355), 1, anon_sym_not, - ACTIONS(4358), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_LBRACK, - ACTIONS(4580), 1, - anon_sym_LPAREN, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4596), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_AMP, - ACTIONS(4600), 1, - anon_sym_CARET, - ACTIONS(4602), 1, + ACTIONS(4792), 1, anon_sym_is, - STATE(3099), 1, + STATE(2222), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4582), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4584), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4594), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4604), 2, + ACTIONS(4795), 2, anon_sym_LT, anon_sym_GT, - STATE(1954), 2, + STATE(2053), 2, sym__not_in, sym__is_not, - STATE(2611), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4592), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4193), 6, - anon_sym_COMMA, + ACTIONS(4350), 3, anon_sym_as, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - ACTIONS(4586), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4789), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98096] = 8, - ACTIONS(4272), 1, + ACTIONS(4348), 21, anon_sym_DOT, - ACTIONS(4274), 1, anon_sym_LPAREN, - ACTIONS(4282), 1, - anon_sym_STAR_STAR, - ACTIONS(4284), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2331), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4342), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4340), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -201914,29 +206702,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [98152] = 5, - ACTIONS(2475), 1, - sym_string_start, + [100953] = 5, + STATE(2222), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2156), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4259), 5, + STATE(2053), 2, + sym__not_in, + sym__is_not, + ACTIONS(4342), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4257), 29, + ACTIONS(4340), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -201966,26 +206747,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98202] = 6, - ACTIONS(4333), 1, + [101003] = 6, + ACTIONS(4411), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 2, + ACTIONS(4416), 2, anon_sym_complex, anon_sym___stdcall, - ACTIONS(4330), 4, + ACTIONS(4408), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(4336), 4, + ACTIONS(4414), 4, anon_sym_as, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 26, + ACTIONS(4406), 26, anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_GT, @@ -202012,30 +206793,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98254] = 5, - STATE(2154), 1, - aux_sym_comparison_operator_repeat1, + [101055] = 5, + ACTIONS(4798), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1917), 2, - sym__not_in, - sym__is_not, - ACTIONS(4229), 5, + STATE(2225), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4335), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4227), 29, + ACTIONS(4333), 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, @@ -202057,142 +206838,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98304] = 15, - ACTIONS(4386), 1, + [101105] = 8, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4388), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4396), 1, + ACTIONS(4388), 1, anon_sym_STAR_STAR, - ACTIONS(4398), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4404), 1, - anon_sym_PIPE, - ACTIONS(4406), 1, - anon_sym_AMP, - ACTIONS(4408), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4390), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4392), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4402), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2498), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4350), 3, - anon_sym_as, + ACTIONS(4370), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4400), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4348), 15, - anon_sym_RPAREN, + ACTIONS(4368), 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_else, anon_sym_in, + anon_sym_by, + 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, - [98373] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(3980), 1, - anon_sym_extern, - ACTIONS(3988), 1, - anon_sym_enum, - ACTIONS(3992), 1, - anon_sym_fused, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3509), 1, - sym_c_type, + [101161] = 6, + ACTIONS(4411), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3986), 2, - anon_sym_struct, - anon_sym_union, - STATE(2905), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(4416), 2, anon_sym_complex, - ACTIONS(103), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1161), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [98452] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4448), 5, - anon_sym_as, - anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4408), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4414), 4, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4446), 31, - sym_string_start, + ACTIONS(4406), 26, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202203,7 +206923,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, @@ -202212,43 +206931,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98497] = 6, - ACTIONS(4333), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4338), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4330), 4, + sym_type_conversion, + [101213] = 8, + ACTIONS(4450), 1, + anon_sym_DOT, + ACTIONS(4452), 1, anon_sym_LPAREN, + ACTIONS(4460), 1, anon_sym_STAR_STAR, + ACTIONS(4462), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4336), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2471), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 5, + anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 25, - anon_sym_DOT, + ACTIONS(4368), 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_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, @@ -202257,32 +206979,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98548] = 3, + sym_type_conversion, + [101269] = 5, + ACTIONS(2507), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4444), 5, + STATE(2242), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3806), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4442), 31, - sym_string_start, + ACTIONS(3795), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -202298,153 +207025,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [98593] = 13, - ACTIONS(4358), 1, + [101319] = 15, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4360), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4368), 1, + ACTIONS(4388), 1, anon_sym_STAR_STAR, - ACTIONS(4370), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4380), 1, + ACTIONS(4396), 1, + anon_sym_PIPE, + ACTIONS(4398), 1, + anon_sym_AMP, + ACTIONS(4400), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4362), 2, + ACTIONS(4382), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4364), 2, + ACTIONS(4384), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4374), 2, + ACTIONS(4394), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2540), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, - anon_sym_as, + ACTIONS(4366), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 3, + ACTIONS(4392), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 17, + ACTIONS(4364), 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_by, 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, - [98658] = 20, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, + [101389] = 10, + ACTIONS(4422), 1, + anon_sym_DOT, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(3948), 1, - anon_sym_enum, - ACTIONS(3952), 1, - anon_sym_fused, - ACTIONS(4048), 1, - anon_sym_extern, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3492), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3946), 2, - anon_sym_struct, - anon_sym_union, - STATE(2827), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 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(508), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [98737] = 5, - ACTIONS(948), 1, - anon_sym_COLON_EQ, - ACTIONS(2443), 1, - anon_sym_EQ, + ACTIONS(4432), 1, + anon_sym_STAR_STAR, + ACTIONS(4434), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 5, - anon_sym_as, + ACTIONS(4426), 2, anon_sym_STAR, anon_sym_SLASH, + STATE(2310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4436), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 23, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_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, @@ -202454,84 +207130,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98786] = 4, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + [101449] = 14, + ACTIONS(4422), 1, + anon_sym_DOT, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4432), 1, + anon_sym_STAR_STAR, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(4442), 1, + anon_sym_AMP, + ACTIONS(4444), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 6, - anon_sym_as, + ACTIONS(4426), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(4428), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4438), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4436), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 17, 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, - [98833] = 5, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(4352), 1, - anon_sym_EQ, + [101517] = 11, + ACTIONS(4378), 1, + anon_sym_DOT, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4388), 1, + anon_sym_STAR_STAR, + ACTIONS(4390), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, - anon_sym_as, + ACTIONS(4382), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4394), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4392), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 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_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_by, anon_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, @@ -202541,29 +207235,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98882] = 3, + [101579] = 10, + ACTIONS(4450), 1, + anon_sym_DOT, + ACTIONS(4452), 1, + anon_sym_LPAREN, + ACTIONS(4460), 1, + anon_sym_STAR_STAR, + ACTIONS(4462), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4448), 5, + ACTIONS(4454), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(2471), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4446), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4464), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 23, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, @@ -202571,8 +207275,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -202583,28 +207285,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [98927] = 8, - ACTIONS(4386), 1, + [101639] = 14, + ACTIONS(4450), 1, anon_sym_DOT, - ACTIONS(4388), 1, + ACTIONS(4452), 1, anon_sym_LPAREN, - ACTIONS(4396), 1, + ACTIONS(4460), 1, anon_sym_STAR_STAR, - ACTIONS(4398), 1, + ACTIONS(4462), 1, anon_sym_LBRACK, + ACTIONS(4470), 1, + anon_sym_AMP, + ACTIONS(4472), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2498), 2, + ACTIONS(4454), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4456), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4466), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2471), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 5, + ACTIONS(4370), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4464), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 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, + [101707] = 5, + ACTIONS(1394), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2225), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4346), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 25, + ACTIONS(4344), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -202612,6 +207364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202630,92 +207384,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98982] = 11, - ACTIONS(4386), 1, + [101757] = 13, + ACTIONS(4450), 1, anon_sym_DOT, - ACTIONS(4388), 1, + ACTIONS(4452), 1, anon_sym_LPAREN, - ACTIONS(4396), 1, + ACTIONS(4460), 1, anon_sym_STAR_STAR, - ACTIONS(4398), 1, + ACTIONS(4462), 1, anon_sym_LBRACK, + ACTIONS(4472), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4390), 2, + ACTIONS(4454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4402), 2, + ACTIONS(4456), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4466), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2498), 2, + STATE(2471), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, - anon_sym_as, + ACTIONS(4370), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4400), 3, + ACTIONS(4464), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 20, - anon_sym_RPAREN, + ACTIONS(4368), 18, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_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, - [99043] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [101823] = 12, + ACTIONS(4450), 1, + anon_sym_DOT, + ACTIONS(4452), 1, + anon_sym_LPAREN, + ACTIONS(4460), 1, + anon_sym_STAR_STAR, + ACTIONS(4462), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, + ACTIONS(4454), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4456), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4466), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2471), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4464), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 19, 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, @@ -202723,35 +207489,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [99090] = 8, - ACTIONS(4386), 1, + [101887] = 8, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4388), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4396), 1, + ACTIONS(4388), 1, anon_sym_STAR_STAR, - ACTIONS(4398), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2498), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 5, - anon_sym_as, + ACTIONS(4374), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 25, - anon_sym_RPAREN, + ACTIONS(4372), 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_else, anon_sym_in, + anon_sym_by, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -202770,243 +207537,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99145] = 10, - ACTIONS(4386), 1, + [101943] = 15, + ACTIONS(4422), 1, anon_sym_DOT, - ACTIONS(4388), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4396), 1, + ACTIONS(4432), 1, anon_sym_STAR_STAR, - ACTIONS(4398), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, + ACTIONS(4440), 1, + anon_sym_PIPE, + ACTIONS(4442), 1, + anon_sym_AMP, + ACTIONS(4444), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4390), 2, + ACTIONS(4426), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2498), 2, + ACTIONS(4428), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4438), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, + ACTIONS(4366), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4400), 3, + ACTIONS(4436), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 22, - anon_sym_RPAREN, + ACTIONS(4364), 16, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + 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, - [99204] = 14, - ACTIONS(4386), 1, + [102013] = 8, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4388), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4396), 1, + ACTIONS(4388), 1, anon_sym_STAR_STAR, - ACTIONS(4398), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4406), 1, - anon_sym_AMP, - ACTIONS(4408), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4390), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4392), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4402), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2498), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, - anon_sym_as, + ACTIONS(4370), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4400), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 16, - anon_sym_RPAREN, + ACTIONS(4368), 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_else, anon_sym_in, + anon_sym_by, + 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, - [99271] = 13, - ACTIONS(4386), 1, - anon_sym_DOT, - ACTIONS(4388), 1, - anon_sym_LPAREN, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - ACTIONS(4398), 1, - anon_sym_LBRACK, - ACTIONS(4408), 1, - anon_sym_CARET, + [102069] = 5, + ACTIONS(2507), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4390), 2, + STATE(2215), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4346), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4392), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4402), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2498), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4400), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 17, - anon_sym_RPAREN, + ACTIONS(4344), 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, - [99336] = 12, - ACTIONS(4386), 1, + [102119] = 8, + ACTIONS(4422), 1, anon_sym_DOT, - ACTIONS(4388), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4396), 1, + ACTIONS(4432), 1, anon_sym_STAR_STAR, - ACTIONS(4398), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4390), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4392), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4402), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2498), 2, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, + ACTIONS(4420), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4400), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 18, - anon_sym_RPAREN, + ACTIONS(4418), 26, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99399] = 8, - ACTIONS(4414), 1, + [102175] = 8, + ACTIONS(4422), 1, anon_sym_DOT, - ACTIONS(4416), 1, - anon_sym_LPAREN, ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4432), 1, anon_sym_STAR_STAR, - ACTIONS(4426), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2486), 2, + STATE(2310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4342), 5, + ACTIONS(4370), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 25, + ACTIONS(4368), 26, 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, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -203022,34 +207781,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99454] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [102231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, - anon_sym_as, + ACTIONS(3982), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(3980), 31, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, 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, @@ -203065,33 +207823,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99501] = 6, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(4705), 1, - anon_sym_LBRACK, - STATE(4203), 1, - sym_type_parameter, + [102276] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, + ACTIONS(3967), 5, 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(3965), 31, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203110,33 +207865,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99552] = 10, - ACTIONS(4358), 1, + [102321] = 10, + ACTIONS(4478), 1, anon_sym_DOT, - ACTIONS(4360), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4368), 1, + ACTIONS(4488), 1, anon_sym_STAR_STAR, - ACTIONS(4370), 1, + ACTIONS(4490), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4362), 2, + ACTIONS(4482), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2540), 2, + STATE(2599), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, + ACTIONS(4370), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 3, + ACTIONS(4492), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 22, + ACTIONS(4368), 22, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -203159,94 +207914,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99611] = 20, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4112), 1, - anon_sym_class, - ACTIONS(4114), 1, - anon_sym_extern, - ACTIONS(4120), 1, - anon_sym_enum, - ACTIONS(4124), 1, - anon_sym_fused, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3491), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4118), 2, - anon_sym_struct, - anon_sym_union, - STATE(2807), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 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(3058), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [99690] = 8, - ACTIONS(4386), 1, - anon_sym_DOT, - ACTIONS(4388), 1, - anon_sym_LPAREN, - ACTIONS(4396), 1, - anon_sym_STAR_STAR, - ACTIONS(4398), 1, - anon_sym_LBRACK, + [102380] = 4, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2498), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4346), 5, - anon_sym_as, + ACTIONS(813), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 25, - anon_sym_RPAREN, + ACTIONS(811), 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_else, anon_sym_in, + anon_sym_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203265,151 +207957,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99745] = 20, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, + [102427] = 15, + ACTIONS(4478), 1, + anon_sym_DOT, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4112), 1, - anon_sym_class, - ACTIONS(4114), 1, - anon_sym_extern, - ACTIONS(4120), 1, - anon_sym_enum, - ACTIONS(4124), 1, - anon_sym_fused, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3491), 1, - sym_c_type, + ACTIONS(4488), 1, + anon_sym_STAR_STAR, + ACTIONS(4490), 1, + anon_sym_LBRACK, + ACTIONS(4496), 1, + anon_sym_PIPE, + ACTIONS(4498), 1, + anon_sym_AMP, + ACTIONS(4500), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4118), 2, - anon_sym_struct, - anon_sym_union, - STATE(2807), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 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(2936), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [99824] = 6, - ACTIONS(4333), 1, + ACTIONS(4482), 2, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4338), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4330), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4336), 4, - anon_sym_as, anon_sym_SLASH, + ACTIONS(4484), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4494), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2599), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4366), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 25, - anon_sym_DOT, + ACTIONS(4492), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 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_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99875] = 9, - ACTIONS(4238), 1, - anon_sym_not, - ACTIONS(4710), 1, - anon_sym_is, - STATE(2205), 1, - aux_sym_comparison_operator_repeat1, + [102496] = 13, + ACTIONS(4510), 1, + anon_sym_DOT, + ACTIONS(4512), 1, + anon_sym_LPAREN, + ACTIONS(4520), 1, + anon_sym_STAR_STAR, + ACTIONS(4522), 1, + anon_sym_LBRACK, + ACTIONS(4532), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4233), 2, + ACTIONS(4514), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4713), 2, + ACTIONS(4516), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4526), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2564), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - STATE(1954), 2, - sym__not_in, - sym__is_not, - ACTIONS(4707), 6, + ACTIONS(4524), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(4231), 21, + [102561] = 4, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3806), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3795), 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_by, 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, @@ -203417,32 +208100,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99932] = 5, - ACTIONS(2503), 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, + [102608] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2224), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4259), 4, + ACTIONS(3978), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4257), 29, + ACTIONS(3976), 31, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -203461,38 +208148,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99981] = 8, - ACTIONS(4358), 1, - anon_sym_DOT, - ACTIONS(4360), 1, - anon_sym_LPAREN, - ACTIONS(4368), 1, - anon_sym_STAR_STAR, - ACTIONS(4370), 1, - anon_sym_LBRACK, + [102653] = 6, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, + ACTIONS(3957), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2540), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 5, + ACTIONS(3947), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3954), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 25, + ACTIONS(3951), 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, @@ -203508,36 +208193,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100036] = 6, - ACTIONS(948), 1, + [102704] = 5, + ACTIONS(3808), 1, anon_sym_COLON_EQ, - ACTIONS(1300), 1, - anon_sym_COLON, + ACTIONS(4376), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1297), 5, + ACTIONS(3806), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 27, + ACTIONS(3795), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -203553,73 +208237,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100087] = 12, - ACTIONS(4358), 1, - anon_sym_DOT, - ACTIONS(4360), 1, - anon_sym_LPAREN, - ACTIONS(4368), 1, - anon_sym_STAR_STAR, - ACTIONS(4370), 1, - anon_sym_LBRACK, + [102753] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4362), 2, + ACTIONS(3954), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4364), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4374), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2540), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 3, - anon_sym_as, + ACTIONS(3957), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 3, + ACTIONS(3951), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 18, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3947), 17, + anon_sym_from, 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_by, 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, - [100150] = 5, - ACTIONS(938), 1, - anon_sym_COMMA, - ACTIONS(948), 1, + [102802] = 6, + ACTIONS(3808), 1, anon_sym_COLON_EQ, + ACTIONS(4801), 1, + anon_sym_LBRACK, + STATE(4315), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 6, + ACTIONS(3806), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 28, + ACTIONS(3795), 27, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, @@ -203627,11 +208308,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, @@ -203647,37 +208326,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [100199] = 6, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(3893), 1, - anon_sym_COLON, + [102853] = 5, + ACTIONS(4803), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3885), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3890), 5, - anon_sym_as, + STATE(2257), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4335), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 27, + ACTIONS(4333), 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, @@ -203693,44 +208370,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100250] = 8, - ACTIONS(4358), 1, + [102902] = 11, + ACTIONS(4510), 1, anon_sym_DOT, - ACTIONS(4360), 1, + ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4368), 1, + ACTIONS(4520), 1, anon_sym_STAR_STAR, - ACTIONS(4370), 1, + ACTIONS(4522), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2540), 2, + ACTIONS(4514), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4526), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2564), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 5, + ACTIONS(4370), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 25, + ACTIONS(4524), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 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, @@ -203740,27 +208420,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100305] = 6, - ACTIONS(4333), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4338), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4330), 4, + [102963] = 8, + ACTIONS(4510), 1, + anon_sym_DOT, + ACTIONS(4512), 1, anon_sym_LPAREN, + ACTIONS(4520), 1, anon_sym_STAR_STAR, + ACTIONS(4522), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4336), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2564), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4420), 5, anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 25, - anon_sym_DOT, + ACTIONS(4418), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -203777,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, @@ -203785,130 +208467,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100356] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(3980), 1, - anon_sym_extern, - ACTIONS(3988), 1, - anon_sym_enum, - ACTIONS(3992), 1, - anon_sym_fused, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3509), 1, - sym_c_type, + [103018] = 6, + ACTIONS(4411), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3986), 2, - anon_sym_struct, - anon_sym_union, - STATE(2905), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(4416), 2, anon_sym_complex, - ACTIONS(103), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1352), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [100435] = 8, - ACTIONS(4358), 1, + anon_sym___stdcall, + ACTIONS(4408), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4414), 4, + anon_sym_as, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4406), 25, + anon_sym_DOT, + 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, + [103069] = 12, + ACTIONS(4510), 1, anon_sym_DOT, - ACTIONS(4360), 1, + ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4368), 1, + ACTIONS(4520), 1, anon_sym_STAR_STAR, - ACTIONS(4370), 1, + ACTIONS(4522), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2540), 2, + ACTIONS(4514), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4516), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4526), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2564), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4346), 5, + ACTIONS(4370), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 25, + ACTIONS(4524), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 18, + 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, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100490] = 3, + [103132] = 4, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4444), 5, + ACTIONS(3806), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4442), 31, - sym_string_start, + ACTIONS(3795), 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, @@ -203933,98 +208606,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100535] = 8, - ACTIONS(4358), 1, + [103179] = 15, + ACTIONS(4510), 1, anon_sym_DOT, - ACTIONS(4360), 1, + ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4368), 1, + ACTIONS(4520), 1, anon_sym_STAR_STAR, - ACTIONS(4370), 1, + ACTIONS(4522), 1, anon_sym_LBRACK, + ACTIONS(4528), 1, + anon_sym_PIPE, + ACTIONS(4530), 1, + anon_sym_AMP, + ACTIONS(4532), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2540), 2, + ACTIONS(4514), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4516), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4526), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2564), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4342), 5, + ACTIONS(4366), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 25, + ACTIONS(4524), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_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, - [100590] = 15, - ACTIONS(4414), 1, + [103248] = 14, + ACTIONS(4510), 1, anon_sym_DOT, - ACTIONS(4416), 1, + ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4424), 1, + ACTIONS(4520), 1, anon_sym_STAR_STAR, - ACTIONS(4426), 1, + ACTIONS(4522), 1, anon_sym_LBRACK, - ACTIONS(4432), 1, - anon_sym_PIPE, - ACTIONS(4434), 1, + ACTIONS(4530), 1, anon_sym_AMP, - ACTIONS(4436), 1, + ACTIONS(4532), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4418), 2, + ACTIONS(4514), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4420), 2, + ACTIONS(4516), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4430), 2, + ACTIONS(4526), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2486), 2, + STATE(2564), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4350), 3, - anon_sym_EQ, + ACTIONS(4370), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4428), 3, + ACTIONS(4524), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4348), 15, + ACTIONS(4368), 16, + 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_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -204034,21 +208713,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100659] = 5, - STATE(2205), 1, - aux_sym_comparison_operator_repeat1, + [103315] = 5, + ACTIONS(2535), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1954), 2, - sym__not_in, - sym__is_not, - ACTIONS(4229), 4, + STATE(2257), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4346), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4227), 29, + ACTIONS(4344), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -204078,32 +208757,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100708] = 5, - ACTIONS(2503), 1, - sym_string_start, + [103364] = 5, + ACTIONS(828), 1, + anon_sym_COLON_EQ, + ACTIONS(2411), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2206), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 4, + ACTIONS(813), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(811), 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, @@ -204122,103 +208801,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100757] = 20, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, + [103413] = 8, + ACTIONS(4510), 1, + anon_sym_DOT, + ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(3948), 1, - anon_sym_enum, - ACTIONS(3952), 1, - anon_sym_fused, - ACTIONS(4048), 1, - anon_sym_extern, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3492), 1, - sym_c_type, + ACTIONS(4520), 1, + anon_sym_STAR_STAR, + ACTIONS(4522), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(3946), 2, - anon_sym_struct, - anon_sym_union, - STATE(2827), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 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(504), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [100836] = 11, - ACTIONS(4358), 1, + STATE(2564), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4368), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [103468] = 10, + ACTIONS(4510), 1, anon_sym_DOT, - ACTIONS(4360), 1, + ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4368), 1, + ACTIONS(4520), 1, anon_sym_STAR_STAR, - ACTIONS(4370), 1, + ACTIONS(4522), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4362), 2, + ACTIONS(4514), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4374), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2540), 2, + STATE(2564), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, + ACTIONS(4370), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 3, + ACTIONS(4524), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 20, + ACTIONS(4368), 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, anon_sym_not, anon_sym_and, anon_sym_or, @@ -204231,88 +208897,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100897] = 14, - ACTIONS(4358), 1, + [103527] = 8, + ACTIONS(4510), 1, anon_sym_DOT, - ACTIONS(4360), 1, + ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4368), 1, + ACTIONS(4520), 1, anon_sym_STAR_STAR, - ACTIONS(4370), 1, + ACTIONS(4522), 1, anon_sym_LBRACK, - ACTIONS(4378), 1, - anon_sym_AMP, - ACTIONS(4380), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4362), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4364), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4374), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2540), 2, + STATE(2564), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, + ACTIONS(4374), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 16, + ACTIONS(4372), 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, + anon_sym_PLUS, anon_sym_not, anon_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, - [100964] = 5, - ACTIONS(4716), 1, - sym_string_start, + [103582] = 4, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2224), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4263), 4, + ACTIONS(813), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4261), 29, + ACTIONS(811), 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, @@ -204328,28 +208986,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101013] = 8, - ACTIONS(4414), 1, - anon_sym_DOT, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(4424), 1, - anon_sym_STAR_STAR, - ACTIONS(4426), 1, - anon_sym_LBRACK, + sym_type_conversion, + [103629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 5, + ACTIONS(3963), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 25, + ACTIONS(3961), 31, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -204357,6 +209008,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204375,36 +209029,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101068] = 11, - ACTIONS(4414), 1, - anon_sym_DOT, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(4424), 1, - anon_sym_STAR_STAR, - ACTIONS(4426), 1, - anon_sym_LBRACK, + [103674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4418), 2, + ACTIONS(4544), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4430), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4428), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 20, + ACTIONS(4542), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -204412,10 +209050,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_by, + 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, @@ -204425,51 +209071,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101129] = 15, - ACTIONS(4358), 1, - anon_sym_DOT, - ACTIONS(4360), 1, - anon_sym_LPAREN, - ACTIONS(4368), 1, - anon_sym_STAR_STAR, - ACTIONS(4370), 1, - anon_sym_LBRACK, - ACTIONS(4376), 1, - anon_sym_PIPE, - ACTIONS(4378), 1, - anon_sym_AMP, - ACTIONS(4380), 1, - anon_sym_CARET, + [103719] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4362), 2, + ACTIONS(1329), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4364), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4374), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2540), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4350), 3, - anon_sym_as, + ACTIONS(1332), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 3, + ACTIONS(1530), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4348), 15, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1327), 17, + anon_sym_from, 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_by, anon_sym_not, anon_sym_and, anon_sym_or, @@ -204479,34 +209115,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101198] = 8, - ACTIONS(4414), 1, + [103768] = 8, + ACTIONS(4510), 1, anon_sym_DOT, - ACTIONS(4416), 1, + ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4424), 1, + ACTIONS(4520), 1, anon_sym_STAR_STAR, - ACTIONS(4426), 1, + ACTIONS(4522), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2486), 2, + STATE(2564), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 5, + ACTIONS(4370), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 25, + ACTIONS(4368), 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, @@ -204526,33 +209162,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101253] = 10, - ACTIONS(4414), 1, - anon_sym_DOT, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(4424), 1, - anon_sym_STAR_STAR, - ACTIONS(4426), 1, - anon_sym_LBRACK, + [103823] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4418), 2, + ACTIONS(3963), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4428), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 22, + ACTIONS(3961), 31, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -204560,12 +209183,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_by, + 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, @@ -204575,49 +209204,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101312] = 14, - ACTIONS(4414), 1, + [103868] = 9, + ACTIONS(4355), 1, + anon_sym_not, + ACTIONS(4809), 1, + anon_sym_is, + STATE(2276), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4350), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4812), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1970), 2, + sym__not_in, + sym__is_not, + ACTIONS(4806), 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(4348), 21, anon_sym_DOT, - ACTIONS(4416), 1, anon_sym_LPAREN, - ACTIONS(4424), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_STAR_STAR, - ACTIONS(4426), 1, anon_sym_LBRACK, - ACTIONS(4434), 1, + 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, + [103925] = 14, + ACTIONS(4478), 1, + anon_sym_DOT, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4488), 1, + anon_sym_STAR_STAR, + ACTIONS(4490), 1, + anon_sym_LBRACK, + ACTIONS(4498), 1, anon_sym_AMP, - ACTIONS(4436), 1, + ACTIONS(4500), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4418), 2, + ACTIONS(4482), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4420), 2, + ACTIONS(4484), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4430), 2, + ACTIONS(4494), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2486), 2, + STATE(2599), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4270), 3, - anon_sym_EQ, + ACTIONS(4370), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4428), 3, + ACTIONS(4492), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 16, + ACTIONS(4368), 16, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_not, anon_sym_and, @@ -204628,138 +209305,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101379] = 13, - ACTIONS(4414), 1, - anon_sym_DOT, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(4424), 1, - anon_sym_STAR_STAR, - ACTIONS(4426), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_CARET, + [103992] = 5, + STATE(2276), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4418), 2, + STATE(1970), 2, + sym__not_in, + sym__is_not, + ACTIONS(4342), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4420), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4430), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4428), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 17, + ACTIONS(4340), 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, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101444] = 12, - ACTIONS(4414), 1, - anon_sym_DOT, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(4424), 1, - anon_sym_STAR_STAR, - ACTIONS(4426), 1, - anon_sym_LBRACK, + [104041] = 5, + ACTIONS(3801), 1, + anon_sym_COMMA, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4418), 2, + ACTIONS(3806), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4420), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4430), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4428), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 18, - anon_sym_COMMA, + ACTIONS(3795), 28, + anon_sym_DOT, + anon_sym_LPAREN, 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, - [101507] = 8, - ACTIONS(4414), 1, + sym_type_conversion, + [104090] = 20, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4208), 1, + anon_sym_class, + ACTIONS(4210), 1, + anon_sym_extern, + ACTIONS(4216), 1, + anon_sym_enum, + ACTIONS(4220), 1, + anon_sym_fused, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3517), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4214), 2, + anon_sym_struct, + anon_sym_union, + STATE(2979), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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(2991), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [104169] = 8, + ACTIONS(4478), 1, anon_sym_DOT, - ACTIONS(4416), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4424), 1, + ACTIONS(4488), 1, anon_sym_STAR_STAR, - ACTIONS(4426), 1, + ACTIONS(4490), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2486), 2, + STATE(2599), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4346), 5, + ACTIONS(4370), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 25, + ACTIONS(4368), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -204778,24 +209499,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101562] = 5, - ACTIONS(3705), 1, - anon_sym_COMMA, - ACTIONS(3712), 1, + [104224] = 4, + ACTIONS(3808), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, + ACTIONS(3806), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 28, + ACTIONS(3795), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -204822,33 +209542,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [101611] = 4, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + [104271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 6, + ACTIONS(4010), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 29, + ACTIONS(4008), 31, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, 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, @@ -204864,36 +209584,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [101658] = 8, - ACTIONS(4386), 1, + [104316] = 8, + ACTIONS(4478), 1, anon_sym_DOT, - ACTIONS(4388), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4396), 1, + ACTIONS(4488), 1, anon_sym_STAR_STAR, - ACTIONS(4398), 1, + ACTIONS(4490), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2498), 2, + STATE(2599), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4342), 5, + ACTIONS(4420), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 25, - anon_sym_RPAREN, + ACTIONS(4418), 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, @@ -204912,29 +209631,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101713] = 5, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + [104371] = 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(3982), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 27, + ACTIONS(3980), 31, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -204955,23 +209673,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101761] = 3, + [104416] = 4, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, + ACTIONS(813), 6, anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 30, + ACTIONS(811), 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, @@ -204996,31 +209716,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101805] = 5, - ACTIONS(1408), 1, - sym_string_start, + [104463] = 8, + ACTIONS(4478), 1, + anon_sym_DOT, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4488), 1, + anon_sym_STAR_STAR, + ACTIONS(4490), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2242), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3710), 4, + STATE(2599), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4374), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4372), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -205039,25 +209763,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101853] = 3, + [104518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 5, - anon_sym_as, + ACTIONS(4544), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4629), 30, + ACTIONS(4542), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -205080,73 +209804,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101897] = 4, - ACTIONS(3872), 1, - anon_sym_COMMA, + sym_type_conversion, + [104563] = 20, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4120), 1, + anon_sym_enum, + ACTIONS(4124), 1, + anon_sym_fused, + ACTIONS(4140), 1, + anon_sym_extern, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3568), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4118), 2, + anon_sym_struct, + anon_sym_union, + STATE(2863), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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(523), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [104642] = 12, + ACTIONS(4478), 1, + anon_sym_DOT, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4488), 1, + anon_sym_STAR_STAR, + ACTIONS(4490), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 5, + ACTIONS(4482), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4484), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4494), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2599), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3870), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, + ACTIONS(4492), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 18, + anon_sym_COMMA, 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, - sym_type_conversion, - [101943] = 5, - ACTIONS(1408), 1, + [104705] = 20, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4208), 1, + anon_sym_class, + ACTIONS(4210), 1, + anon_sym_extern, + ACTIONS(4216), 1, + anon_sym_enum, + ACTIONS(4220), 1, + anon_sym_fused, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3517), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4214), 2, + anon_sym_struct, + anon_sym_union, + STATE(2979), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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(3107), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [104784] = 5, + ACTIONS(2535), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2253), 2, + STATE(2265), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4259), 4, + ACTIONS(3806), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4257), 28, + ACTIONS(3795), 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, @@ -205165,17 +210018,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101991] = 3, + [104833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4521), 5, + ACTIONS(4544), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4519), 30, + ACTIONS(4542), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -205206,37 +210060,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102035] = 3, + [104878] = 13, + ACTIONS(4478), 1, + anon_sym_DOT, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4488), 1, + anon_sym_STAR_STAR, + ACTIONS(4490), 1, + anon_sym_LBRACK, + ACTIONS(4500), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 5, + ACTIONS(4482), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4484), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4494), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2599), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3862), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4492), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 17, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_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, + [104943] = 11, + ACTIONS(4478), 1, + anon_sym_DOT, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4488), 1, anon_sym_STAR_STAR, + ACTIONS(4490), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4482), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4494), 2, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, + STATE(2599), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4492), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 20, + anon_sym_COMMA, + anon_sym_GT_GT, + 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_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -205246,18 +210162,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [102079] = 3, + [105004] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4525), 5, + ACTIONS(4540), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4523), 30, + ACTIONS(4538), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -205288,29 +210204,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102123] = 5, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [105049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3885), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3890), 5, - anon_sym_as, + ACTIONS(4540), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 27, + ACTIONS(4538), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -205331,39 +210246,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102171] = 3, + [105094] = 6, + ACTIONS(4411), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4529), 5, + ACTIONS(4416), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4408), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4414), 4, anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4527), 30, + ACTIONS(4406), 25, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -205372,25 +210291,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102215] = 3, + [105145] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(4028), 1, + anon_sym_extern, + ACTIONS(4036), 1, + anon_sym_enum, + ACTIONS(4040), 1, + anon_sym_fused, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3567), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4034), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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(1343), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [105224] = 6, + ACTIONS(828), 1, + anon_sym_COLON_EQ, + ACTIONS(1332), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4572), 5, + ACTIONS(1327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1329), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 30, + ACTIONS(1530), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -205413,32 +210395,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102259] = 3, + [105275] = 20, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4120), 1, + anon_sym_enum, + ACTIONS(4124), 1, + anon_sym_fused, + ACTIONS(4140), 1, + anon_sym_extern, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3568), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4118), 2, + anon_sym_struct, + anon_sym_union, + STATE(2863), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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(526), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [105354] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(4028), 1, + anon_sym_extern, + ACTIONS(4036), 1, + anon_sym_enum, + ACTIONS(4040), 1, + anon_sym_fused, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3567), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4034), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2949), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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(1214), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [105433] = 8, + ACTIONS(4478), 1, + anon_sym_DOT, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4488), 1, + anon_sym_STAR_STAR, + ACTIONS(4490), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + STATE(2599), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4368), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_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, @@ -205454,25 +210560,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102303] = 3, + [105488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4452), 5, - anon_sym_as, + ACTIONS(4540), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4450), 30, + ACTIONS(4538), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -205495,25 +210601,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102347] = 3, + sym_type_conversion, + [105533] = 5, + ACTIONS(818), 1, + anon_sym_COMMA, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4537), 5, - anon_sym_as, + ACTIONS(813), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4535), 30, + ACTIONS(811), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -205536,32 +210645,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102391] = 3, + sym_type_conversion, + [105582] = 8, + ACTIONS(4675), 1, + anon_sym_DOT, + ACTIONS(4677), 1, + anon_sym_LPAREN, + ACTIONS(4685), 1, + anon_sym_STAR_STAR, + ACTIONS(4687), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4541), 5, - anon_sym_as, + STATE(2653), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4539), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4368), 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, @@ -205577,31 +210692,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102435] = 5, - ACTIONS(4719), 1, - sym_string_start, + [105636] = 5, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2253), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4263), 4, + ACTIONS(1327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1329), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4261), 28, + ACTIONS(1530), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -205620,65 +210735,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102483] = 3, + [105684] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4550), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4571), 5, 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, - [102527] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3883), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3881), 30, + ACTIONS(4569), 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, @@ -205701,25 +210776,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [102571] = 3, + [105728] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 5, + ACTIONS(4575), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 30, + ACTIONS(4573), 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, @@ -205742,25 +210817,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [102615] = 3, + [105772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 5, + ACTIONS(4621), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4574), 30, + ACTIONS(4619), 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, @@ -205783,32 +210858,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [102659] = 3, + [105816] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, + ACTIONS(4540), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3912), 30, + ACTIONS(4538), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -205824,18 +210899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [102703] = 3, + [105860] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 5, + ACTIONS(4621), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 30, + ACTIONS(4619), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -205843,13 +210917,14 @@ 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_by, 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, @@ -205865,32 +210940,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [102747] = 3, + [105904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 5, + ACTIONS(3967), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 30, + ACTIONS(3965), 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, @@ -205906,32 +210981,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [102791] = 3, + [105948] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(3963), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 30, + ACTIONS(3961), 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, @@ -205947,27 +211022,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [102835] = 5, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [105992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3710), 5, + ACTIONS(3963), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 27, + ACTIONS(3961), 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, @@ -205991,24 +211063,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102883] = 3, + [106036] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(3978), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 30, + ACTIONS(3976), 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, @@ -206031,76 +211104,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [102927] = 20, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4414), 1, - anon_sym_DOT, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(4424), 1, - anon_sym_STAR_STAR, - ACTIONS(4426), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, - anon_sym_PIPE, - ACTIONS(4434), 1, - anon_sym_AMP, - ACTIONS(4436), 1, - anon_sym_CARET, - ACTIONS(4438), 1, - anon_sym_is, - STATE(2635), 1, - aux_sym_comparison_operator_repeat1, + [106080] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4418), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4420), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4430), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4440), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1917), 2, - sym__not_in, - sym__is_not, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4428), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4193), 4, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4422), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [103005] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4615), 5, + ACTIONS(4595), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 30, + ACTIONS(4593), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206108,13 +211122,14 @@ 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_by, 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, @@ -206130,25 +211145,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103049] = 3, + [106124] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(3989), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 30, + ACTIONS(3984), 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, @@ -206171,68 +211186,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [103093] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3890), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3893), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3887), 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(3885), 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, - [103141] = 3, + [106168] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4444), 5, + ACTIONS(4000), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4442), 30, - sym_string_start, + ACTIONS(3995), 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, @@ -206241,6 +211211,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, @@ -206256,60 +211227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103185] = 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), 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, - [103233] = 3, + [106212] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 5, + ACTIONS(4559), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 30, + ACTIONS(4557), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206340,17 +211268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [103277] = 3, + [106256] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 5, + ACTIONS(4599), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 30, + ACTIONS(4597), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206381,59 +211309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103321] = 4, - ACTIONS(948), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(933), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(931), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_else, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_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, - [103367] = 3, + [106300] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 5, + ACTIONS(4743), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4621), 30, + ACTIONS(4741), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206464,27 +211350,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103411] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [106344] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, + ACTIONS(3982), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 28, + ACTIONS(3980), 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_else, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -206506,34 +211391,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103457] = 8, - ACTIONS(4578), 1, - anon_sym_DOT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_LBRACK, + [106388] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2611), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4346), 4, + ACTIONS(4579), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 25, + ACTIONS(4577), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -206552,40 +211432,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103511] = 7, - ACTIONS(4722), 1, - anon_sym_as, - ACTIONS(4724), 1, - anon_sym_if, - ACTIONS(4726), 1, - anon_sym_and, - ACTIONS(4728), 1, - anon_sym_or, + [106432] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4466), 4, + ACTIONS(4583), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4462), 27, + ACTIONS(4581), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -206597,34 +211473,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103563] = 8, - ACTIONS(4578), 1, - anon_sym_DOT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_LBRACK, + [106476] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2611), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4342), 4, + ACTIONS(4587), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 25, + ACTIONS(4585), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -206643,39 +211514,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103617] = 6, - ACTIONS(4726), 1, - anon_sym_and, - ACTIONS(4728), 1, - anon_sym_or, - ACTIONS(4730), 1, - anon_sym_as, + [106520] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4483), 4, + ACTIONS(4599), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4478), 28, + ACTIONS(4597), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -206687,21 +211555,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103667] = 5, - ACTIONS(4726), 1, - anon_sym_and, - ACTIONS(4728), 1, - anon_sym_or, + [106564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4487), 5, + ACTIONS(3806), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 28, + ACTIONS(3795), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206719,6 +211583,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, @@ -206730,27 +211596,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103715] = 4, - ACTIONS(4726), 1, - anon_sym_and, + [106608] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 5, - anon_sym_as, + ACTIONS(4548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 29, + ACTIONS(4546), 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, @@ -206760,6 +211623,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, @@ -206772,28 +211636,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103761] = 7, - ACTIONS(4722), 1, - anon_sym_as, - ACTIONS(4724), 1, - anon_sym_if, - ACTIONS(4726), 1, - anon_sym_and, - ACTIONS(4728), 1, - anon_sym_or, + sym_type_conversion, + [106652] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4495), 4, + ACTIONS(3982), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4493), 27, + ACTIONS(3980), 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, @@ -206803,9 +211663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -206817,18 +211678,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103813] = 3, + [106696] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4444), 5, + ACTIONS(4303), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4442), 30, - sym_string_start, + ACTIONS(4289), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -206836,13 +211696,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, @@ -206858,28 +211718,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103857] = 7, - ACTIONS(4722), 1, - anon_sym_as, - ACTIONS(4724), 1, - anon_sym_if, - ACTIONS(4726), 1, - anon_sym_and, - ACTIONS(4728), 1, - anon_sym_or, + sym_type_conversion, + [106740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4499), 4, + ACTIONS(4723), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4497), 27, + ACTIONS(4721), 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, @@ -206892,6 +211747,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, @@ -206903,32 +211760,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103909] = 3, + [106784] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, - anon_sym_as, + ACTIONS(4414), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3912), 30, + ACTIONS(4406), 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, @@ -206944,26 +211800,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103953] = 5, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [106828] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(933), 5, + ACTIONS(4595), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 27, + ACTIONS(4593), 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, @@ -206972,6 +211826,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, @@ -206987,26 +211842,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104001] = 3, + [106872] = 5, + ACTIONS(1440), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 5, - anon_sym_as, + STATE(2382), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4346), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 30, + ACTIONS(4344), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -207028,65 +211885,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104045] = 5, + [106920] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 2, + ACTIONS(4414), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3893), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 14, + ACTIONS(4406), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_by, 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(3885), 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, - [104093] = 3, + [106964] = 7, + ACTIONS(4815), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_if, + ACTIONS(4819), 1, + anon_sym_and, + ACTIONS(4821), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 5, - anon_sym_as, + ACTIONS(4631), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 30, + ACTIONS(4627), 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, @@ -207099,8 +211960,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, @@ -207112,27 +211971,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104137] = 3, + [107016] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 5, - anon_sym_as, + ACTIONS(4731), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 30, + ACTIONS(4729), 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_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -207153,25 +212012,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104181] = 3, + [107060] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 5, - anon_sym_as, + ACTIONS(4625), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4625), 30, + ACTIONS(4623), 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, @@ -207194,33 +212052,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104225] = 4, + sym_type_conversion, + [107104] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3885), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(3890), 5, - anon_sym_as, + ACTIONS(4614), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 27, + ACTIONS(4612), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, 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, @@ -207236,32 +212094,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104271] = 6, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(4733), 1, - anon_sym_LBRACK, - STATE(4430), 1, - sym_type_parameter, + [107148] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(4727), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 27, + ACTIONS(4725), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207280,30 +212135,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104321] = 4, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + [107192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 5, - anon_sym_as, + ACTIONS(4735), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 29, + ACTIONS(4733), 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_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207322,17 +212176,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104367] = 3, + [107236] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 5, + ACTIONS(4747), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3870), 30, + ACTIONS(4745), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207340,13 +212194,14 @@ 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_by, 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, @@ -207362,18 +212217,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [104411] = 3, + [107280] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 5, + ACTIONS(4559), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 30, + ACTIONS(4557), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207381,13 +212235,14 @@ 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_by, 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, @@ -207403,87 +212258,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [104455] = 15, - ACTIONS(4578), 1, - anon_sym_DOT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4596), 1, - anon_sym_PIPE, - ACTIONS(4598), 1, - anon_sym_AMP, - ACTIONS(4600), 1, - anon_sym_CARET, + [107324] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4582), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4584), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4594), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2611), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4592), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4348), 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, - [104523] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3710), 5, - anon_sym_as, + ACTIONS(4739), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(4737), 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, @@ -207499,34 +212298,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104569] = 5, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [107368] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(933), 5, - anon_sym_as, + ACTIONS(4743), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 27, + ACTIONS(4741), 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, @@ -207542,17 +212339,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104617] = 3, + sym_type_conversion, + [107412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 5, + ACTIONS(3806), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4193), 30, + ACTIONS(3795), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207583,17 +212381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [104661] = 3, + [107456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 5, + ACTIONS(3978), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 30, + ACTIONS(3976), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207624,18 +212422,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [104705] = 3, + [107500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4448), 5, + ACTIONS(3974), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4446), 30, - sym_string_start, + ACTIONS(3969), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207645,6 +212442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -207665,24 +212463,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104749] = 3, + [107544] = 6, + ACTIONS(4819), 1, + anon_sym_and, + ACTIONS(4821), 1, + anon_sym_or, + ACTIONS(4823), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 5, + ACTIONS(4648), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 30, + ACTIONS(4643), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -207692,8 +212496,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, @@ -207705,18 +212507,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [104793] = 3, + [107594] = 5, + ACTIONS(4819), 1, + anon_sym_and, + ACTIONS(4821), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4476), 5, + ACTIONS(4652), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4474), 30, + ACTIONS(4650), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207734,8 +212539,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, @@ -207747,35 +212550,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104837] = 3, + [107642] = 4, + ACTIONS(4819), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4444), 5, + ACTIONS(4656), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4442), 30, - sym_string_start, + ACTIONS(4654), 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, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -207788,22 +212592,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104881] = 3, + [107688] = 7, + ACTIONS(4815), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_if, + ACTIONS(4819), 1, + anon_sym_and, + ACTIONS(4821), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 5, - anon_sym_as, + ACTIONS(4660), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3870), 30, + ACTIONS(4658), 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, @@ -207816,6 +212626,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, 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, + [107740] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4563), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4561), 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, @@ -207829,32 +212677,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104925] = 3, + sym_type_conversion, + [107784] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 5, - anon_sym_as, + ACTIONS(4548), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 30, + ACTIONS(4546), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -207870,25 +212719,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104969] = 7, - ACTIONS(4735), 1, + [107828] = 7, + ACTIONS(4826), 1, anon_sym_as, - ACTIONS(4737), 1, + ACTIONS(4828), 1, anon_sym_if, - ACTIONS(4739), 1, + ACTIONS(4830), 1, anon_sym_and, - ACTIONS(4741), 1, + ACTIONS(4832), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4466), 5, + ACTIONS(4631), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4462), 26, + ACTIONS(4627), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207915,17 +212764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [105021] = 3, + [107880] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4476), 5, + ACTIONS(4641), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4474), 30, + ACTIONS(4639), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207956,38 +212805,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [105065] = 6, - ACTIONS(4739), 1, - anon_sym_and, - ACTIONS(4741), 1, - anon_sym_or, - ACTIONS(4743), 1, - anon_sym_as, + [107924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4483), 5, + ACTIONS(4563), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4478), 27, + ACTIONS(4561), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, 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, @@ -207999,22 +212846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105115] = 5, - ACTIONS(4739), 1, - anon_sym_and, - ACTIONS(4741), 1, - anon_sym_or, + [107968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4487), 5, + ACTIONS(4567), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 28, + ACTIONS(4565), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208022,15 +212864,18 @@ 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_by, 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, @@ -208042,22 +212887,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105163] = 3, + [108012] = 6, + ACTIONS(4830), 1, + anon_sym_and, + ACTIONS(4832), 1, + anon_sym_or, + ACTIONS(4834), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 5, + ACTIONS(4648), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 30, + ACTIONS(4643), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -208070,8 +212919,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, @@ -208084,27 +212931,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [105207] = 3, + [108062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4448), 5, - anon_sym_as, + ACTIONS(4555), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4446), 30, - sym_string_start, + ACTIONS(4553), 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_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -208125,38 +212972,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105251] = 5, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + [108106] = 5, + ACTIONS(4830), 1, + anon_sym_and, + ACTIONS(4832), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1295), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1297), 5, - anon_sym_as, + ACTIONS(4652), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 27, + ACTIONS(4650), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -208168,34 +213014,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105299] = 5, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [108154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3885), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3890), 5, - anon_sym_as, + ACTIONS(4656), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 27, + ACTIONS(4654), 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, @@ -208211,19 +213055,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105347] = 4, - ACTIONS(4739), 1, + sym_type_conversion, + [108198] = 4, + ACTIONS(4830), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 5, + ACTIONS(4656), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 29, + ACTIONS(4654), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208253,41 +213098,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [105393] = 8, - ACTIONS(4578), 1, - anon_sym_DOT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_LBRACK, + [108244] = 7, + ACTIONS(4815), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_if, + ACTIONS(4819), 1, + anon_sym_and, + ACTIONS(4821), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2611), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 4, + ACTIONS(4664), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 25, + ACTIONS(4662), 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_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, @@ -208299,35 +213143,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105447] = 11, - ACTIONS(4578), 1, + [108296] = 11, + ACTIONS(4675), 1, anon_sym_DOT, - ACTIONS(4580), 1, + ACTIONS(4677), 1, anon_sym_LPAREN, - ACTIONS(4588), 1, + ACTIONS(4685), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4687), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4270), 2, + ACTIONS(4370), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4679), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4594), 2, + ACTIONS(4691), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2611), 2, + STATE(2653), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4592), 3, + ACTIONS(4689), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 20, + ACTIONS(4368), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -208348,37 +213192,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105507] = 8, - ACTIONS(4578), 1, - anon_sym_DOT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_LBRACK, + [108356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2611), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 4, + ACTIONS(4567), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 25, + ACTIONS(4565), 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, @@ -208394,32 +213232,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105561] = 10, - ACTIONS(4578), 1, + sym_type_conversion, + [108400] = 8, + ACTIONS(4675), 1, anon_sym_DOT, - ACTIONS(4580), 1, + ACTIONS(4677), 1, anon_sym_LPAREN, - ACTIONS(4588), 1, + ACTIONS(4685), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4687), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4582), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2611), 2, + STATE(2653), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4592), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 22, + ACTIONS(4370), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4368), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -208427,12 +213261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_in, anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -208442,133 +213279,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105619] = 14, - ACTIONS(4578), 1, - anon_sym_DOT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4598), 1, - anon_sym_AMP, - ACTIONS(4600), 1, - anon_sym_CARET, + [108454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4579), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4584), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4594), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2611), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4592), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4577), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105685] = 5, + [108498] = 10, + ACTIONS(4675), 1, + anon_sym_DOT, + ACTIONS(4677), 1, + anon_sym_LPAREN, + ACTIONS(4685), 1, + anon_sym_STAR_STAR, + ACTIONS(4687), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1300), 3, - anon_sym_EQ, + ACTIONS(4370), 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, + ACTIONS(4679), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2653), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4689), 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, - ACTIONS(1295), 16, + ACTIONS(4368), 22, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105733] = 12, - ACTIONS(4578), 1, + [108556] = 14, + ACTIONS(4675), 1, anon_sym_DOT, - ACTIONS(4580), 1, + ACTIONS(4677), 1, anon_sym_LPAREN, - ACTIONS(4588), 1, + ACTIONS(4685), 1, anon_sym_STAR_STAR, - ACTIONS(4590), 1, + ACTIONS(4687), 1, anon_sym_LBRACK, + ACTIONS(4695), 1, + anon_sym_AMP, + ACTIONS(4697), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4270), 2, + ACTIONS(4370), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4679), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4584), 2, + ACTIONS(4681), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4594), 2, + ACTIONS(4691), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2611), 2, + STATE(2653), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4592), 3, + ACTIONS(4689), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 18, + ACTIONS(4368), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -208579,32 +213414,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105795] = 3, + [108622] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 5, + ACTIONS(4010), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 30, + ACTIONS(4008), 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, @@ -208627,126 +213461,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105839] = 7, - ACTIONS(4735), 1, - anon_sym_as, - ACTIONS(4737), 1, - anon_sym_if, - ACTIONS(4739), 1, - anon_sym_and, - ACTIONS(4741), 1, - anon_sym_or, + [108666] = 13, + ACTIONS(4675), 1, + anon_sym_DOT, + ACTIONS(4677), 1, + anon_sym_LPAREN, + ACTIONS(4685), 1, + anon_sym_STAR_STAR, + ACTIONS(4687), 1, + anon_sym_LBRACK, + ACTIONS(4697), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4495), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4370), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4493), 26, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4679), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(4691), 2, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, + STATE(2653), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4689), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(4368), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_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, - [105891] = 3, + [108730] = 12, + ACTIONS(4675), 1, + anon_sym_DOT, + ACTIONS(4677), 1, + anon_sym_LPAREN, + ACTIONS(4685), 1, + anon_sym_STAR_STAR, + ACTIONS(4687), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4370), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4679), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4691), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2653), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4689), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 18, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105935] = 7, - ACTIONS(4735), 1, - anon_sym_as, - ACTIONS(4737), 1, - anon_sym_if, - ACTIONS(4739), 1, - anon_sym_and, - ACTIONS(4741), 1, - anon_sym_or, + [108792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4499), 5, + ACTIONS(4603), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4497), 26, + 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_else, anon_sym_in, + anon_sym_by, 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, @@ -208758,33 +213603,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105987] = 3, + [108836] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4336), 5, - anon_sym_as, + ACTIONS(4607), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 30, + ACTIONS(4605), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -208800,32 +213644,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106031] = 3, + [108880] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 5, - anon_sym_as, + ACTIONS(4555), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3862), 30, + ACTIONS(4553), 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, @@ -208841,64 +213684,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106075] = 5, + sym_type_conversion, + [108924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, + ACTIONS(4731), 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(4729), 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(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, - [106123] = 4, - ACTIONS(3853), 1, - anon_sym_COMMA, + [108968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 5, + ACTIONS(4603), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 29, + ACTIONS(4601), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -208926,17 +213767,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [106169] = 3, + [109012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4533), 5, + ACTIONS(4607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4531), 30, + ACTIONS(4605), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208967,25 +213808,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [106213] = 3, + [109056] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 5, + ACTIONS(3947), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(3954), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 30, + ACTIONS(3951), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -209008,26 +213850,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106257] = 3, + [109102] = 5, + ACTIONS(4837), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3883), 5, - anon_sym_as, + STATE(2382), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4335), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3881), 30, + ACTIONS(4333), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -209049,31 +213893,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106301] = 3, + [109150] = 4, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4564), 5, + ACTIONS(813), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4562), 30, + ACTIONS(811), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -209089,32 +213935,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106345] = 3, + [109196] = 4, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 5, + ACTIONS(3806), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 30, + ACTIONS(3795), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -209130,24 +213977,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106389] = 3, + [109242] = 7, + ACTIONS(4826), 1, + anon_sym_as, + ACTIONS(4828), 1, + anon_sym_if, + ACTIONS(4830), 1, + anon_sym_and, + ACTIONS(4832), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 5, + ACTIONS(4660), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 30, + ACTIONS(4658), 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, @@ -209158,8 +214010,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, @@ -209172,31 +214022,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [106433] = 3, + [109294] = 5, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 5, + ACTIONS(3801), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3806), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4621), 30, + ACTIONS(3795), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -209212,18 +214065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106477] = 3, + [109342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 5, + ACTIONS(4599), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4625), 30, + ACTIONS(4597), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209254,17 +214106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [106521] = 3, + [109386] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 5, + ACTIONS(3967), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3862), 30, + ACTIONS(3965), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209295,17 +214147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106565] = 3, + [109430] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4336), 5, + ACTIONS(4571), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 30, + ACTIONS(4569), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209313,13 +214165,14 @@ 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_by, 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, @@ -209335,33 +214188,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106609] = 3, + [109474] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 5, - anon_sym_as, + ACTIONS(4575), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 30, + ACTIONS(4573), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -209377,17 +214229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106653] = 3, + [109518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4533), 5, + ACTIONS(3963), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4531), 30, + ACTIONS(3961), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209418,17 +214270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106697] = 3, + [109562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 5, + ACTIONS(4614), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 30, + ACTIONS(4612), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209459,32 +214311,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106741] = 3, + [109606] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4448), 5, + ACTIONS(3963), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4446), 30, - sym_string_start, + ACTIONS(3961), 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, @@ -209500,34 +214352,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106785] = 5, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [109650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3710), 5, - anon_sym_as, + ACTIONS(4571), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 27, + ACTIONS(4569), 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, @@ -209543,23 +214392,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106833] = 3, + sym_type_conversion, + [109694] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4564), 5, + ACTIONS(4544), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4562), 30, + ACTIONS(4542), 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, @@ -209568,7 +214419,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, @@ -209584,32 +214434,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106877] = 3, + [109738] = 6, + ACTIONS(828), 1, + anon_sym_COLON_EQ, + ACTIONS(847), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 5, - anon_sym_as, + ACTIONS(818), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(813), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 30, + ACTIONS(811), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_by, 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, @@ -209625,68 +214478,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106921] = 5, + [109788] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 2, + ACTIONS(4575), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(3893), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 14, + ACTIONS(4573), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3885), 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, - [106969] = 3, + sym_type_conversion, + [109832] = 7, + ACTIONS(4826), 1, + anon_sym_as, + ACTIONS(4828), 1, + anon_sym_if, + ACTIONS(4830), 1, + anon_sym_and, + ACTIONS(4832), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, - anon_sym_as, + ACTIONS(4664), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 30, + ACTIONS(4662), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -209696,8 +214552,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, @@ -209709,17 +214563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107013] = 3, + sym_type_conversion, + [109884] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 5, + ACTIONS(3982), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4633), 30, + ACTIONS(3980), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209750,17 +214605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107057] = 3, + [109928] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4639), 5, + ACTIONS(3982), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4637), 30, + ACTIONS(3980), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209791,17 +214646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107101] = 3, + [109972] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(4010), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 30, + ACTIONS(4008), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209832,17 +214687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107145] = 3, + [110016] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 5, + ACTIONS(4731), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4633), 30, + ACTIONS(4729), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209873,33 +214728,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107189] = 4, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + [110060] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 5, - anon_sym_as, + ACTIONS(1329), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1332), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 29, + ACTIONS(1530), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1327), 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, + [110108] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3967), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3965), 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, @@ -209915,33 +214811,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107235] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [110152] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, - anon_sym_as, + ACTIONS(813), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(811), 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, @@ -209957,17 +214852,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107281] = 3, + sym_type_conversion, + [110196] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4639), 5, + ACTIONS(3963), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4637), 30, + ACTIONS(3961), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -209998,17 +214894,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107325] = 3, + [110240] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, + ACTIONS(3963), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 30, + ACTIONS(3961), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -210039,46 +214935,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107369] = 9, - ACTIONS(4238), 1, - anon_sym_not, - ACTIONS(4749), 1, - anon_sym_is, - STATE(2358), 1, - aux_sym_comparison_operator_repeat1, + [110284] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4233), 2, + ACTIONS(3982), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4752), 2, anon_sym_LT, anon_sym_GT, - STATE(1925), 2, - sym__not_in, - sym__is_not, - ACTIONS(4746), 6, + ACTIONS(3980), 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(4231), 20, - anon_sym_DOT, - anon_sym_LPAREN, + sym_type_conversion, + [110328] = 5, + ACTIONS(828), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(818), 2, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(813), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(811), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -210086,21 +215013,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [107425] = 5, - STATE(2358), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [110376] = 5, + ACTIONS(1440), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1925), 2, - sym__not_in, - sym__is_not, - ACTIONS(4229), 4, + STATE(2335), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3806), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4227), 28, + ACTIONS(3795), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -210129,17 +215062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107473] = 3, + [110424] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 5, + ACTIONS(3982), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4629), 30, + ACTIONS(3980), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -210170,42 +215103,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107517] = 6, - ACTIONS(4333), 1, - anon_sym_STAR, + [110468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4336), 3, + ACTIONS(4727), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4330), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4328), 25, + ACTIONS(4725), 30, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_is, @@ -210214,25 +215144,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107567] = 3, + [110512] = 20, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4378), 1, + anon_sym_DOT, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4388), 1, + anon_sym_STAR_STAR, + ACTIONS(4390), 1, + anon_sym_LBRACK, + ACTIONS(4396), 1, + anon_sym_PIPE, + ACTIONS(4398), 1, + anon_sym_AMP, + ACTIONS(4400), 1, + anon_sym_CARET, + ACTIONS(4402), 1, + anon_sym_is, + STATE(2686), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 5, + ACTIONS(4382), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4384), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4404), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1983), 2, + sym__not_in, + sym__is_not, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4392), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4289), 4, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4386), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [110590] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3954), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3957), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3951), 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(3947), 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, + [110638] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4591), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4550), 30, + ACTIONS(4589), 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, @@ -210255,24 +215285,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107611] = 3, + sym_type_conversion, + [110682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4521), 5, + ACTIONS(4735), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4519), 30, + ACTIONS(4733), 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, @@ -210295,25 +215327,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107655] = 3, + [110726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4525), 5, + ACTIONS(4747), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4523), 30, + ACTIONS(4745), 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, @@ -210336,25 +215368,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107699] = 3, + [110770] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4529), 5, + ACTIONS(4414), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4527), 30, + ACTIONS(4406), 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, @@ -210377,20 +215409,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107743] = 3, + [110814] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3883), 5, + ACTIONS(3978), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3881), 30, + ACTIONS(3976), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -210403,7 +215435,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, @@ -210419,24 +215450,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107787] = 3, + [110858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4572), 5, + ACTIONS(4559), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 30, + ACTIONS(4557), 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, @@ -210459,33 +215491,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107831] = 3, + [110902] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 5, + ACTIONS(3974), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3862), 30, + ACTIONS(3969), 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, @@ -210501,27 +215531,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107875] = 3, + sym_type_conversion, + [110946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, - anon_sym_as, + ACTIONS(4303), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 30, + ACTIONS(4289), 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_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -210542,29 +215573,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107919] = 3, + [110990] = 8, + ACTIONS(4675), 1, + anon_sym_DOT, + ACTIONS(4677), 1, + anon_sym_LPAREN, + ACTIONS(4685), 1, + anon_sym_STAR_STAR, + ACTIONS(4687), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, - anon_sym_as, + STATE(2653), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4420), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4418), 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, @@ -210583,25 +215619,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107963] = 3, + [111044] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 5, - anon_sym_as, + ACTIONS(4614), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4574), 30, + ACTIONS(4612), 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, @@ -210624,31 +215659,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108007] = 3, + sym_type_conversion, + [111088] = 8, + ACTIONS(4675), 1, + anon_sym_DOT, + ACTIONS(4677), 1, + anon_sym_LPAREN, + ACTIONS(4685), 1, + anon_sym_STAR_STAR, + ACTIONS(4687), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + STATE(2653), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4374), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4372), 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, @@ -210664,18 +215706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108051] = 3, + [111142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4452), 5, + ACTIONS(4625), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4450), 30, + ACTIONS(4623), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -210683,13 +215724,14 @@ 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_by, 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, @@ -210705,37 +215747,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108095] = 3, + [111186] = 7, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4842), 1, + anon_sym_if, + ACTIONS(4844), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, - anon_sym_as, + ACTIONS(4631), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3912), 30, + ACTIONS(4627), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, + anon_sym_by, 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, @@ -210747,32 +215792,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108139] = 3, + [111238] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 5, - anon_sym_as, + ACTIONS(4641), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 30, + ACTIONS(4639), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -210788,36 +215833,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108183] = 3, + [111282] = 6, + ACTIONS(4844), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_or, + ACTIONS(4848), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 5, - anon_sym_as, + ACTIONS(4648), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 30, + ACTIONS(4643), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -210829,17 +215877,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108227] = 3, + [111332] = 5, + ACTIONS(4844), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4537), 5, + ACTIONS(4652), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4535), 30, + ACTIONS(4650), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -210847,17 +215899,16 @@ 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_by, 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, @@ -210869,20 +215920,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108271] = 3, + [111380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3883), 5, + ACTIONS(4656), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3881), 30, + ACTIONS(4654), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -210891,6 +215940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -210911,19 +215961,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108315] = 3, + [111424] = 4, + ACTIONS(4844), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, + ACTIONS(4656), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3912), 30, + ACTIONS(4654), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -210932,6 +215983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -210939,7 +215991,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, @@ -210952,27 +216003,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108359] = 3, + [111470] = 7, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4842), 1, + anon_sym_if, + ACTIONS(4844), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 5, + ACTIONS(4660), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 30, + ACTIONS(4658), 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -210980,8 +216037,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, @@ -210993,27 +216048,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108403] = 3, + [111522] = 7, + ACTIONS(4840), 1, + anon_sym_as, + ACTIONS(4842), 1, + anon_sym_if, + ACTIONS(4844), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 5, + ACTIONS(4664), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 30, + ACTIONS(4662), 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -211021,8 +216082,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, @@ -211034,26 +216093,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108447] = 3, + [111574] = 5, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(1327), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1329), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 30, + ACTIONS(1530), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -211075,26 +216136,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108491] = 3, + [111622] = 5, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(3947), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3954), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 30, + ACTIONS(3951), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -211116,17 +216179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108535] = 3, + [111670] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 5, + ACTIONS(4583), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 30, + ACTIONS(4581), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -211157,32 +216220,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108579] = 3, + [111714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 5, - anon_sym_as, + ACTIONS(4739), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 30, + ACTIONS(4737), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -211198,23 +216261,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108623] = 3, + [111758] = 5, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(3801), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3806), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 30, + ACTIONS(3795), 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, @@ -211223,7 +216289,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, @@ -211239,31 +216304,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108667] = 3, + [111806] = 5, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4541), 5, + ACTIONS(3947), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3954), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4539), 30, + ACTIONS(3951), 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, @@ -211279,18 +216347,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108711] = 3, + [111854] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 5, + ACTIONS(4587), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4193), 30, + ACTIONS(4585), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -211321,32 +216388,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108755] = 4, - ACTIONS(3899), 1, - anon_sym_COMMA, + [111898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 5, + ACTIONS(4743), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 29, + ACTIONS(4741), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, 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, @@ -211362,33 +216429,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108801] = 3, + [111942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, - anon_sym_as, + ACTIONS(3806), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 30, + ACTIONS(3795), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -211404,32 +216470,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108845] = 4, - ACTIONS(3705), 1, - anon_sym_COMMA, + [111986] = 6, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, + ACTIONS(3816), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(3801), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3806), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(3795), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_by, 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, @@ -211445,20 +216514,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108891] = 3, + [112036] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3954), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3957), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3951), 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(3947), 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, + [112084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(4010), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 30, + ACTIONS(4008), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -211471,7 +216583,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, @@ -211487,76 +216598,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108935] = 13, - ACTIONS(4578), 1, - anon_sym_DOT, - ACTIONS(4580), 1, - anon_sym_LPAREN, - ACTIONS(4588), 1, - anon_sym_STAR_STAR, - ACTIONS(4590), 1, - anon_sym_LBRACK, - ACTIONS(4600), 1, - anon_sym_CARET, + [112128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4582), 2, + ACTIONS(4727), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4584), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4594), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2611), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4592), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 17, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4725), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108999] = 3, + sym_type_conversion, + [112172] = 5, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4564), 5, + ACTIONS(818), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(813), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4562), 29, + ACTIONS(811), 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, @@ -211578,32 +216682,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109042] = 4, + [112220] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3885), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3890), 5, + ACTIONS(3974), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 27, + ACTIONS(3969), 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, @@ -211619,17 +216723,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109087] = 3, + [112264] = 9, + ACTIONS(4355), 1, + anon_sym_not, + ACTIONS(4854), 1, + anon_sym_is, + STATE(2450), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4444), 4, + ACTIONS(4350), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4857), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4442), 30, - sym_string_start, + STATE(2039), 2, + sym__not_in, + sym__is_not, + ACTIONS(4851), 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(4348), 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_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, + [112320] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3989), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3984), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -211637,10 +216788,11 @@ 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -211659,70 +216811,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109130] = 5, + [112364] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, + ACTIONS(4735), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1300), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 14, + ACTIONS(4733), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(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, - [109177] = 3, + sym_type_conversion, + [112408] = 5, + STATE(2450), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 5, - anon_sym_as, + STATE(2039), 2, + sym__not_in, + sym__is_not, + ACTIONS(4342), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3870), 29, + ACTIONS(4340), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -211741,19 +216895,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109220] = 3, + [112456] = 4, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 5, + ACTIONS(813), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 29, + ACTIONS(811), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -211762,7 +216919,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, @@ -211781,27 +216937,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109263] = 3, + [112502] = 6, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, + ACTIONS(4860), 1, + anon_sym_LBRACK, + STATE(4507), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4448), 4, + ACTIONS(3806), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4446), 30, - sym_string_start, + ACTIONS(3795), 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, @@ -211821,17 +216981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109306] = 3, + [112552] = 4, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4572), 5, + ACTIONS(3806), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 29, + ACTIONS(3795), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -211861,67 +217023,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109349] = 4, + [112598] = 6, + ACTIONS(4411), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(931), 3, - anon_sym_DOT, + ACTIONS(4416), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4414), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4408), 4, anon_sym_LPAREN, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(933), 13, - anon_sym_STAR, + anon_sym_AMP, + ACTIONS(4406), 25, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_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(967), 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, - [109394] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [112648] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 5, - anon_sym_as, + ACTIONS(813), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 29, + ACTIONS(811), 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_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -211942,31 +217108,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109437] = 3, + [112692] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 5, + ACTIONS(4548), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4550), 29, + ACTIONS(4546), 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, @@ -211982,73 +217149,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109480] = 5, + [112736] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 2, + ACTIONS(4591), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(3893), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 14, + ACTIONS(4589), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_by, 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(3885), 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, - [109527] = 3, + [112780] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3883), 5, + ACTIONS(4563), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3881), 29, + ACTIONS(4561), 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, @@ -212064,23 +217231,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109570] = 3, + [112824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 5, + ACTIONS(4567), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4574), 29, + ACTIONS(4565), 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, @@ -212089,6 +217256,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, @@ -212104,23 +217272,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109613] = 3, + [112868] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 5, + ACTIONS(4641), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3870), 29, + ACTIONS(4639), 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, @@ -212129,6 +217297,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, @@ -212144,17 +217313,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109656] = 3, + [112912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 5, + ACTIONS(4000), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4193), 29, + ACTIONS(3995), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212164,6 +217333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -212184,195 +217354,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109699] = 4, + [112956] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3897), 3, + ACTIONS(4555), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4553), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3902), 13, - anon_sym_STAR, + 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_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(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, - [109744] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [113000] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3699), 3, + ACTIONS(4656), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4654), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3710), 13, - anon_sym_STAR, + 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_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(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, - [109789] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [113044] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 3, + ACTIONS(4603), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4601), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3875), 13, - anon_sym_STAR, + 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_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(3877), 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, - [109834] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [113088] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3851), 3, + ACTIONS(4303), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4289), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3856), 13, - anon_sym_STAR, + 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_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(3860), 18, - sym__newline, - anon_sym_SEMI, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [113132] = 4, + ACTIONS(3971), 1, 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, - [109879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 5, + ACTIONS(3974), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 29, + ACTIONS(3969), 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, @@ -212388,39 +217559,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109922] = 7, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_if, - ACTIONS(4759), 1, - anon_sym_and, - ACTIONS(4761), 1, - anon_sym_or, + sym_type_conversion, + [113178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4466), 5, + ACTIONS(4607), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4462), 25, + ACTIONS(4605), 30, 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, 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, @@ -212432,17 +217601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109973] = 3, + [113222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4476), 5, + ACTIONS(4621), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4474), 29, + ACTIONS(4619), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212450,13 +217619,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, @@ -212472,38 +217641,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110016] = 6, - ACTIONS(4759), 1, - anon_sym_and, - ACTIONS(4761), 1, - anon_sym_or, - ACTIONS(4763), 1, - anon_sym_as, + sym_type_conversion, + [113266] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4483), 5, + ACTIONS(3989), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4478), 26, + ACTIONS(3984), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -212515,21 +217682,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110065] = 5, - ACTIONS(4759), 1, - anon_sym_and, - ACTIONS(4761), 1, - anon_sym_or, + sym_type_conversion, + [113310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4487), 5, + ACTIONS(4000), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 27, + ACTIONS(3995), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212537,15 +217701,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, @@ -212557,31 +217723,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110112] = 3, + sym_type_conversion, + [113354] = 4, + ACTIONS(3801), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 5, + ACTIONS(3806), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 29, + ACTIONS(3795), 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, @@ -212597,35 +217765,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110155] = 4, - ACTIONS(4759), 1, - anon_sym_and, + sym_type_conversion, + [113400] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 5, + ACTIONS(4739), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 28, + ACTIONS(4737), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -212638,17 +217807,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110200] = 3, + [113444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 5, + ACTIONS(4544), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4574), 29, + ACTIONS(4542), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212678,39 +217848,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110243] = 7, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_if, - ACTIONS(4759), 1, - anon_sym_and, - ACTIONS(4761), 1, - anon_sym_or, + [113488] = 4, + ACTIONS(3986), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4495), 5, + ACTIONS(3989), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4493), 25, + ACTIONS(3984), 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, @@ -212722,31 +217889,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110294] = 3, + sym_type_conversion, + [113534] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 5, - anon_sym_as, + ACTIONS(4723), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 29, + ACTIONS(4721), 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, @@ -212762,39 +217930,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110337] = 7, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_if, - ACTIONS(4759), 1, - anon_sym_and, - ACTIONS(4761), 1, - anon_sym_or, + sym_type_conversion, + [113578] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4499), 5, + ACTIONS(4595), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4497), 25, + ACTIONS(4593), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -212806,18 +217971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110388] = 5, + sym_type_conversion, + [113622] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 2, + ACTIONS(1329), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3893), 3, - anon_sym_as, + ACTIONS(1332), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 14, + ACTIONS(1530), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -212832,13 +217998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3885), 15, + ACTIONS(1327), 16, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -212848,71 +218014,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110435] = 3, + sym_type_conversion, + [113670] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 13, + ACTIONS(4747), 5, anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4745), 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_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(3862), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + 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, + [113714] = 4, + ACTIONS(3997), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [110478] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 5, - anon_sym_as, + ACTIONS(4000), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3912), 29, + ACTIONS(3995), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -212928,271 +218097,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110521] = 3, + sym_type_conversion, + [113760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3883), 13, + ACTIONS(813), 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(3881), 21, - sym__newline, - anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + ACTIONS(811), 30, 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, - [110564] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3914), 13, - anon_sym_STAR, 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_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(3912), 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, - [110607] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [113804] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 13, + ACTIONS(4591), 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(3866), 21, - sym__newline, - anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4589), 30, 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, - [110650] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3868), 13, - anon_sym_STAR, 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_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(3866), 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, - [110693] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [113848] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 13, + ACTIONS(4579), 5, anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4577), 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_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(3908), 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, - [110736] = 3, + 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, + [113892] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 13, + ACTIONS(4583), 5, anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4581), 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_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(3908), 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, - [110779] = 3, + 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, + [113936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 5, + ACTIONS(4625), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 29, + ACTIONS(4623), 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, @@ -213208,19 +218303,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110822] = 3, + [113980] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 5, + ACTIONS(4540), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 29, + ACTIONS(4538), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -213229,7 +218326,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, @@ -213248,69 +218344,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110865] = 4, + [114024] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1498), 3, + ACTIONS(4587), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4585), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1297), 13, - anon_sym_STAR, + 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_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(1295), 18, - sym__newline, - anon_sym_SEMI, + 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, + [114068] = 15, + ACTIONS(4675), 1, + anon_sym_DOT, + ACTIONS(4677), 1, + anon_sym_LPAREN, + ACTIONS(4685), 1, + anon_sym_STAR_STAR, + ACTIONS(4687), 1, + anon_sym_LBRACK, + ACTIONS(4693), 1, + anon_sym_PIPE, + ACTIONS(4695), 1, + anon_sym_AMP, + ACTIONS(4697), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4366), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4679), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4691), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2653), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4689), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 15, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, 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, - [110910] = 3, + 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, + [114136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, - anon_sym_as, + ACTIONS(4723), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 29, + ACTIONS(4721), 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_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -213329,17 +218479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110953] = 3, + [114180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 5, + ACTIONS(4591), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 29, + ACTIONS(4589), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213369,41 +218519,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110996] = 6, - ACTIONS(4333), 1, - anon_sym_STAR, + [114223] = 7, + ACTIONS(4862), 1, + anon_sym_as, + ACTIONS(4864), 1, + anon_sym_if, + ACTIONS(4866), 1, + anon_sym_and, + ACTIONS(4868), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4336), 3, + ACTIONS(4631), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4330), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4328), 24, + ACTIONS(4627), 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_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, @@ -213412,61 +218563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111045] = 4, + [114274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3890), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [111090] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4537), 5, + ACTIONS(4414), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4535), 29, + ACTIONS(4406), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -213475,6 +218584,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, @@ -213493,28 +218603,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111133] = 3, + [114317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4541), 5, - anon_sym_as, + ACTIONS(4540), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4539), 29, + ACTIONS(4538), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -213533,68 +218643,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111176] = 5, + [114360] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, + ACTIONS(3986), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3989), 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(3984), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(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, - [111223] = 4, + [114405] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 4, + ACTIONS(4571), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4766), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - ACTIONS(3699), 26, + ACTIONS(4569), 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, @@ -213616,25 +218724,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111268] = 4, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + [114448] = 7, + ACTIONS(4870), 1, + anon_sym_as, + ACTIONS(4872), 1, + anon_sym_if, + ACTIONS(4874), 1, + anon_sym_and, + ACTIONS(4876), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 5, + ACTIONS(4664), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 28, + ACTIONS(4662), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -213644,8 +218757,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, @@ -213657,29 +218768,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111313] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [114499] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(3947), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3954), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 28, + ACTIONS(3951), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -213698,33 +218809,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111358] = 8, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(4643), 1, - anon_sym_LPAREN, - ACTIONS(4651), 1, - anon_sym_STAR_STAR, - ACTIONS(4653), 1, - anon_sym_LBRACK, + [114544] = 5, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, + ACTIONS(4376), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2714), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4346), 4, + ACTIONS(3806), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 24, + ACTIONS(3795), 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, @@ -213743,33 +218851,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111411] = 8, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(4643), 1, - anon_sym_LPAREN, - ACTIONS(4651), 1, - anon_sym_STAR_STAR, - ACTIONS(4653), 1, - anon_sym_LBRACK, + [114591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2714), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4342), 4, + ACTIONS(3989), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 24, + ACTIONS(3984), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -213788,28 +218891,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111464] = 3, + [114634] = 8, + ACTIONS(4749), 1, + anon_sym_DOT, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4759), 1, + anon_sym_STAR_STAR, + ACTIONS(4761), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 5, + STATE(2729), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4420), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3870), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4418), 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, @@ -213828,28 +218936,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111507] = 3, + [114687] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 5, + ACTIONS(4548), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 29, + 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_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, @@ -213868,25 +218976,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111550] = 3, + [114730] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 5, + ACTIONS(3806), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 29, + ACTIONS(4878), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + ACTIONS(3795), 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, @@ -213908,78 +219017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111593] = 21, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4768), 1, - sym_identifier, - ACTIONS(4772), 1, - anon_sym_COLON, - ACTIONS(4774), 1, - anon_sym_class, - ACTIONS(4776), 1, - anon_sym_api, - ACTIONS(4780), 1, - anon_sym_enum, - STATE(3133), 1, - sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3877), 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(3984), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4778), 2, - anon_sym_struct, - anon_sym_union, - STATE(2736), 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(4770), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [111672] = 3, + [114775] = 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_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -213988,6 +219038,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, @@ -214006,60 +219057,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111715] = 3, + [114818] = 12, + ACTIONS(4749), 1, + anon_sym_DOT, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4759), 1, + anon_sym_STAR_STAR, + ACTIONS(4761), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4370), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4755), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4765), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2729), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4763), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 17, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111758] = 3, + [114879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(4641), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(4639), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -214068,6 +219127,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, @@ -214086,20 +219146,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111801] = 3, + [114922] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 5, + ACTIONS(4559), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4193), 29, + ACTIONS(4557), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -214108,6 +219167,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, @@ -214126,24 +219186,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111844] = 7, - ACTIONS(4782), 1, + [114965] = 7, + ACTIONS(4862), 1, anon_sym_as, - ACTIONS(4784), 1, + ACTIONS(4864), 1, anon_sym_if, - ACTIONS(4786), 1, + ACTIONS(4866), 1, anon_sym_and, - ACTIONS(4788), 1, + ACTIONS(4868), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4466), 4, + ACTIONS(4660), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4462), 26, + ACTIONS(4658), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -214170,22 +219230,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111895] = 4, + [115016] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3899), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3902), 5, + ACTIONS(4743), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 27, + ACTIONS(4741), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -214193,6 +219251,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, @@ -214211,67 +219270,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111940] = 6, - ACTIONS(4786), 1, - anon_sym_and, - ACTIONS(4788), 1, - anon_sym_or, - ACTIONS(4790), 1, - anon_sym_as, + [115059] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4483), 4, + ACTIONS(3954), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3957), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4478), 27, + ACTIONS(3951), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(3947), 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, - [111989] = 5, - ACTIONS(4786), 1, - anon_sym_and, - ACTIONS(4788), 1, - anon_sym_or, + [115106] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4487), 5, + ACTIONS(3806), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 27, + ACTIONS(3795), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -214280,11 +219333,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, @@ -214296,19 +219352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112036] = 4, - ACTIONS(4786), 1, - anon_sym_and, + [115149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 5, + ACTIONS(4656), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 28, + ACTIONS(4654), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -214325,6 +219379,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, @@ -214337,39 +219392,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112081] = 7, - ACTIONS(4782), 1, - anon_sym_as, - ACTIONS(4784), 1, - anon_sym_if, - ACTIONS(4786), 1, - anon_sym_and, - ACTIONS(4788), 1, - anon_sym_or, + [115192] = 21, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4880), 1, + sym_identifier, + ACTIONS(4884), 1, + anon_sym_COLON, + ACTIONS(4886), 1, + anon_sym_class, + ACTIONS(4888), 1, + anon_sym_api, + ACTIONS(4892), 1, + anon_sym_enum, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3900), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4495), 4, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4032), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4890), 2, + anon_sym_struct, + anon_sym_union, + STATE(2789), 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(4882), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [115271] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4727), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4493), 26, + ACTIONS(4725), 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, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -214381,29 +219490,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112132] = 7, - ACTIONS(4782), 1, - anon_sym_as, - ACTIONS(4784), 1, - anon_sym_if, - ACTIONS(4786), 1, - anon_sym_and, - ACTIONS(4788), 1, - anon_sym_or, + [115314] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4499), 4, + ACTIONS(4583), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4497), 26, + 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, @@ -214414,6 +219517,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, @@ -214425,20 +219530,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112183] = 4, + [115357] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 2, + ACTIONS(3997), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3710), 5, + ACTIONS(4000), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 27, + ACTIONS(3995), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -214466,70 +219571,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112228] = 4, + [115402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3872), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3875), 5, - anon_sym_as, + ACTIONS(3978), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3870), 27, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_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, - [112273] = 6, - ACTIONS(948), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_from, + ACTIONS(3976), 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, + [115445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(938), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(933), 5, + ACTIONS(813), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 25, + ACTIONS(811), 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, anon_sym_AT, @@ -214550,26 +219651,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112322] = 4, + [115488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3885), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3890), 5, + ACTIONS(4575), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 27, + ACTIONS(4573), 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, @@ -214591,228 +219691,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112367] = 3, + [115531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 5, + ACTIONS(4010), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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_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, - [112410] = 3, + ACTIONS(4008), 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, + [115574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 5, + ACTIONS(3967), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4613), 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, - [112453] = 7, - ACTIONS(4793), 1, - anon_sym_as, - ACTIONS(4795), 1, - anon_sym_if, - ACTIONS(4797), 1, - anon_sym_and, - ACTIONS(4799), 1, - anon_sym_or, + ACTIONS(3965), 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, + [115617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4466), 4, + ACTIONS(3963), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4462), 26, - anon_sym_DOT, - anon_sym_LPAREN, - 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [112504] = 3, + ACTIONS(3961), 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, + [115660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(3963), 13, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3699), 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, - [112547] = 6, - ACTIONS(4797), 1, - anon_sym_and, - ACTIONS(4799), 1, - anon_sym_or, - ACTIONS(4801), 1, - anon_sym_as, + ACTIONS(3961), 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, + [115703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4483), 4, + ACTIONS(3982), 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(4478), 27, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3980), 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, + [115746] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3982), 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_not, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(3980), 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, + [115789] = 15, + ACTIONS(4749), 1, + anon_sym_DOT, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4759), 1, + anon_sym_STAR_STAR, + ACTIONS(4761), 1, + anon_sym_LBRACK, + ACTIONS(4767), 1, + anon_sym_PIPE, + ACTIONS(4769), 1, + anon_sym_AMP, + ACTIONS(4771), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4366), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4755), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4765), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2729), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4763), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 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, - [112596] = 5, - ACTIONS(4797), 1, - anon_sym_and, - ACTIONS(4799), 1, - anon_sym_or, + [115856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4487), 5, + ACTIONS(4571), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 27, + ACTIONS(4569), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214829,6 +220010,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, @@ -214840,35 +220023,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112643] = 4, - ACTIONS(4797), 1, - anon_sym_and, + [115899] = 5, + ACTIONS(3816), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 5, - anon_sym_as, + ACTIONS(3971), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3974), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 28, + ACTIONS(3969), 27, 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_COLON, + anon_sym_by, 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, @@ -214881,28 +220065,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112688] = 7, - ACTIONS(4793), 1, - anon_sym_as, - ACTIONS(4795), 1, - anon_sym_if, - ACTIONS(4797), 1, - anon_sym_and, - ACTIONS(4799), 1, - anon_sym_or, + [115946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4495), 4, + ACTIONS(3982), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4493), 26, + ACTIONS(3980), 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, @@ -214914,6 +220092,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, @@ -214925,29 +220105,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112739] = 6, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(3720), 1, + [115989] = 5, + ACTIONS(3816), 1, anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 2, + ACTIONS(3801), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(3710), 5, + ACTIONS(3806), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 25, + ACTIONS(3795), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -214968,124 +220147,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112788] = 7, - ACTIONS(4793), 1, - anon_sym_as, - ACTIONS(4795), 1, - anon_sym_if, - ACTIONS(4797), 1, - anon_sym_and, - ACTIONS(4799), 1, - anon_sym_or, + [116036] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4499), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4497), 26, + ACTIONS(1530), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1329), 13, + anon_sym_STAR, anon_sym_GT_GT, - 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_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, - [112839] = 15, - ACTIONS(4641), 1, + ACTIONS(1327), 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, + [116081] = 8, + ACTIONS(4749), 1, anon_sym_DOT, - ACTIONS(4643), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(4651), 1, + ACTIONS(4759), 1, anon_sym_STAR_STAR, - ACTIONS(4653), 1, + ACTIONS(4761), 1, anon_sym_LBRACK, - ACTIONS(4659), 1, - anon_sym_PIPE, - ACTIONS(4661), 1, - anon_sym_AMP, - ACTIONS(4663), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4647), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4657), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2714), 2, + STATE(2729), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4655), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4348), 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, - [112906] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3902), 5, - anon_sym_as, + ACTIONS(4374), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4372), 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, @@ -215104,25 +220233,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112949] = 3, + [116134] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 5, + ACTIONS(4591), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 29, + ACTIONS(4589), 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, @@ -215144,26 +220273,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112992] = 3, + [116177] = 5, + ACTIONS(3993), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 5, + ACTIONS(3986), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3989), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 29, + ACTIONS(3984), 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -215184,22 +220315,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113035] = 4, + [116224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3853), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3856), 5, + ACTIONS(4303), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 27, + ACTIONS(4289), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -215207,6 +220336,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, @@ -215225,101 +220355,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113080] = 3, + [116267] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 5, - anon_sym_as, + ACTIONS(3954), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3957), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 29, + ACTIONS(3951), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [113123] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4456), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4454), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3947), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_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, - [113166] = 3, + [116314] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 5, + ACTIONS(3971), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3974), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 29, + ACTIONS(3969), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -215345,28 +220438,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113209] = 3, + [116359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4533), 5, + ACTIONS(4563), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4531), 29, + ACTIONS(4561), 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, @@ -215385,35 +220478,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113252] = 3, + [116402] = 7, + ACTIONS(4870), 1, + anon_sym_as, + ACTIONS(4872), 1, + anon_sym_if, + ACTIONS(4874), 1, + anon_sym_and, + ACTIONS(4876), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 5, + ACTIONS(4631), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 29, + ACTIONS(4627), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -215425,20 +220522,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113295] = 3, + [116453] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 5, + ACTIONS(3801), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3806), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3862), 29, + ACTIONS(3795), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -215446,7 +220545,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, @@ -215465,28 +220563,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113338] = 3, + [116498] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 5, + ACTIONS(4575), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 29, + ACTIONS(4573), 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, @@ -215505,17 +220603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113381] = 3, + [116541] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4529), 5, + ACTIONS(4625), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4527), 29, + ACTIONS(4623), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -215545,25 +220643,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113424] = 3, + [116584] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 5, + ACTIONS(3986), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3989), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4625), 29, + ACTIONS(3984), 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, @@ -215585,17 +220684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113467] = 3, + [116629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4336), 5, + ACTIONS(4544), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 29, + ACTIONS(4542), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215603,10 +220702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -215625,28 +220724,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113510] = 3, + [116672] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(3974), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 29, + ACTIONS(3969), 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, @@ -215665,28 +220764,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113553] = 3, + [116715] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 5, + ACTIONS(4567), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4633), 29, + ACTIONS(4565), 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, @@ -215705,25 +220804,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113596] = 3, + [116758] = 6, + ACTIONS(4411), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4639), 5, + ACTIONS(4416), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4414), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4408), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4406), 24, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [116807] = 4, + ACTIONS(4866), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4656), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4637), 29, + ACTIONS(4654), 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_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -215732,7 +220876,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, @@ -215745,25 +220888,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113639] = 3, + [116852] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, + ACTIONS(4739), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 29, + ACTIONS(4737), 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, @@ -215785,28 +220928,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113682] = 3, + [116895] = 6, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, + ACTIONS(3921), 1, + anon_sym_LBRACK, + STATE(4705), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 5, + ACTIONS(3806), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4629), 29, + ACTIONS(3795), 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_else, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -215825,17 +220971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113725] = 3, + [116944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4533), 5, + ACTIONS(4743), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4531), 29, + ACTIONS(4741), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -215865,25 +221011,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113768] = 3, + [116987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4521), 5, + ACTIONS(4563), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4519), 29, + ACTIONS(4561), 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, @@ -215905,20 +221051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113811] = 3, + [117030] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4564), 5, + ACTIONS(3978), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4562), 29, + ACTIONS(3976), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -215927,6 +221072,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, @@ -215945,26 +221091,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113854] = 3, + [117073] = 5, + ACTIONS(4004), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4525), 5, + ACTIONS(3997), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4000), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4523), 29, + ACTIONS(3995), 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -215985,25 +221133,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113897] = 3, + [117120] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4529), 5, + ACTIONS(3806), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4527), 29, + ACTIONS(3795), 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, @@ -216025,21 +221173,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113940] = 3, + [117163] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 5, + ACTIONS(3997), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4000), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 29, + ACTIONS(3995), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -216065,28 +221214,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113983] = 3, + [117208] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4572), 5, + ACTIONS(3951), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3954), 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(3947), 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, + [117253] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4587), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 29, + ACTIONS(4585), 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, @@ -216105,75 +221295,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114026] = 7, - ACTIONS(3906), 1, - anon_sym_EQ, + [117296] = 7, + ACTIONS(4862), 1, + anon_sym_as, + ACTIONS(4864), 1, + anon_sym_if, + ACTIONS(4866), 1, + anon_sym_and, + ACTIONS(4868), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 2, + ACTIONS(4664), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3904), 5, - sym__newline, - anon_sym_SEMI, + ACTIONS(4662), 26, anon_sym_DOT, - anon_sym_COLON, + 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, - ACTIONS(3885), 12, + 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, + [117347] = 6, + ACTIONS(4874), 1, + anon_sym_and, + ACTIONS(4876), 1, + anon_sym_or, + ACTIONS(4894), 1, anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4648), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4643), 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, + anon_sym_CARET, + anon_sym_LT_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(3887), 12, + [117396] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4555), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4553), 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, - [114077] = 6, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(3823), 1, - anon_sym_LBRACK, - STATE(4566), 1, - sym_type_parameter, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [117439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 6, + ACTIONS(813), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 25, + ACTIONS(811), 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, @@ -216192,17 +221462,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114126] = 3, + [117482] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 5, + ACTIONS(4621), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 29, + ACTIONS(4619), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -216232,108 +221502,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114169] = 3, + [117525] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 5, - anon_sym_as, + ACTIONS(1329), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1332), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4621), 29, + ACTIONS(1530), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [114212] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4556), 5, - 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(1327), 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, - [114255] = 3, + [117572] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4452), 5, + ACTIONS(3982), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4450), 29, + ACTIONS(3980), 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, @@ -216352,20 +221584,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114298] = 3, + [117615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 5, + ACTIONS(3963), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4625), 29, + ACTIONS(3961), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -216374,6 +221605,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, @@ -216392,68 +221624,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114341] = 3, + [117658] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4537), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4535), 29, + ACTIONS(3995), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(4000), 13, + anon_sym_STAR, 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, - [114384] = 3, + ACTIONS(4004), 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, + [117703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4541), 5, + ACTIONS(4010), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4539), 29, + ACTIONS(4008), 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, @@ -216472,100 +221705,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114427] = 3, + [117746] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4521), 5, - anon_sym_as, + ACTIONS(1329), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1332), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4519), 29, + ACTIONS(1530), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [114470] = 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(4474), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1327), 15, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_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, - [114513] = 3, + [117793] = 5, + ACTIONS(4874), 1, + anon_sym_and, + ACTIONS(4876), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 5, + ACTIONS(4652), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 29, + ACTIONS(4650), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -216574,13 +221772,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -216592,28 +221789,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114556] = 3, + [117840] = 4, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4336), 5, - anon_sym_as, + ACTIONS(813), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 29, + ACTIONS(811), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -216632,101 +221830,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114599] = 5, - ACTIONS(948), 1, - anon_sym_COLON_EQ, - ACTIONS(2443), 1, + [117885] = 7, + ACTIONS(3959), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 4, + ACTIONS(3954), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3957), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 28, + ACTIONS(3949), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3947), 12, 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, - [114646] = 5, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(4352), 1, - anon_sym_EQ, - 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, + ACTIONS(3951), 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_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, - [114693] = 3, + [117936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + ACTIONS(4607), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 29, + ACTIONS(4605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -216756,20 +221914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114736] = 3, + [117979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4452), 5, + ACTIONS(4731), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4450), 29, + ACTIONS(4729), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -216778,6 +221935,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, @@ -216796,75 +221954,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114779] = 21, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4776), 1, - anon_sym_api, - ACTIONS(4804), 1, - sym_identifier, - ACTIONS(4808), 1, - anon_sym_COLON, - ACTIONS(4810), 1, - anon_sym_class, - ACTIONS(4814), 1, - anon_sym_enum, - STATE(3133), 1, - sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3876), 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(3984), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4812), 2, - anon_sym_struct, - anon_sym_union, - STATE(2736), 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(4806), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [114858] = 3, + [118022] = 5, + ACTIONS(4866), 1, + anon_sym_and, + ACTIONS(4868), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(4652), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 29, + ACTIONS(4650), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -216881,8 +221985,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, @@ -216894,24 +221996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114901] = 3, + [118069] = 4, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 5, - anon_sym_as, + ACTIONS(3806), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 29, + ACTIONS(3795), 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, @@ -216934,19 +222037,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114944] = 3, + [118114] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 5, + ACTIONS(4614), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 29, + ACTIONS(4612), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -216955,7 +222059,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, @@ -216974,19 +222077,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114987] = 3, + [118157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 5, + ACTIONS(4303), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(4289), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -216995,7 +222099,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, @@ -217014,17 +222117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115030] = 3, + [118200] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 5, + ACTIONS(4747), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4193), 29, + ACTIONS(4745), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217054,22 +222157,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115073] = 4, + [118243] = 4, + ACTIONS(4874), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3899), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3902), 5, + ACTIONS(4656), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 27, + ACTIONS(4654), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -217077,12 +222180,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, @@ -217095,20 +222198,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115118] = 4, + [118288] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 2, + ACTIONS(3971), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3710), 5, + ACTIONS(3974), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 27, + ACTIONS(3969), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -217136,36 +222239,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115163] = 4, + [118333] = 7, + ACTIONS(4870), 1, + anon_sym_as, + ACTIONS(4872), 1, + anon_sym_if, + ACTIONS(4874), 1, + anon_sym_and, + ACTIONS(4876), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3872), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3875), 5, - anon_sym_as, + ACTIONS(4660), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3870), 27, + ACTIONS(4658), 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, @@ -217177,22 +222283,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115208] = 4, + [118384] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3853), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3856), 5, + ACTIONS(4567), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 27, + ACTIONS(4565), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -217218,19 +222323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115253] = 3, + [118427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 5, + ACTIONS(4555), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 29, + ACTIONS(4553), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -217239,7 +222345,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, @@ -217258,17 +222363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115296] = 3, + [118470] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4525), 5, + ACTIONS(4731), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4523), 29, + ACTIONS(4729), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -217298,28 +222403,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115339] = 3, + [118513] = 8, + ACTIONS(4749), 1, + anon_sym_DOT, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4759), 1, + anon_sym_STAR_STAR, + ACTIONS(4761), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 5, - anon_sym_as, + STATE(2729), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4370), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4368), 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, @@ -217338,77 +222448,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115382] = 3, + [118566] = 21, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4888), 1, + anon_sym_api, + ACTIONS(4897), 1, + sym_identifier, + ACTIONS(4901), 1, + anon_sym_COLON, + ACTIONS(4903), 1, + anon_sym_class, + ACTIONS(4907), 1, + anon_sym_enum, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3931), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4458), 29, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4032), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4905), 2, + anon_sym_struct, + anon_sym_union, + STATE(2789), 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(4899), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [118645] = 10, + ACTIONS(4749), 1, anon_sym_DOT, + ACTIONS(4751), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(4759), 1, anon_sym_STAR_STAR, + ACTIONS(4761), 1, 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, - [115425] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4370), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4633), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4753), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2729), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4763), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 21, 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, @@ -217418,17 +222553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115468] = 3, + [118702] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4639), 5, + ACTIONS(4603), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4637), 29, + ACTIONS(4601), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -217458,139 +222593,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115511] = 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), 29, + [118745] = 14, + ACTIONS(4749), 1, anon_sym_DOT, + ACTIONS(4751), 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_in, + ACTIONS(4759), 1, anon_sym_STAR_STAR, + ACTIONS(4761), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4769), 1, anon_sym_AMP, + ACTIONS(4771), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [115554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4370), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4629), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4755), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4765), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2729), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4763), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115597] = 3, + [118810] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4533), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4531), 29, + ACTIONS(811), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(813), 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_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, - [115640] = 3, + ACTIONS(847), 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, + [118855] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4564), 5, + ACTIONS(4587), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4562), 29, + ACTIONS(4585), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -217599,7 +222707,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, @@ -217618,19 +222725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115683] = 3, + [118898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 5, + ACTIONS(4579), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 29, + ACTIONS(4577), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -217639,7 +222747,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, @@ -217658,17 +222765,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115726] = 3, + [118941] = 6, + ACTIONS(4866), 1, + anon_sym_and, + ACTIONS(4868), 1, + anon_sym_or, + ACTIONS(4909), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 5, - anon_sym_as, + ACTIONS(4648), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4550), 29, + ACTIONS(4643), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -217685,8 +222797,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, @@ -217698,57 +222808,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115769] = 3, + [118990] = 13, + ACTIONS(4749), 1, + anon_sym_DOT, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4759), 1, + anon_sym_STAR_STAR, + ACTIONS(4761), 1, + anon_sym_LBRACK, + ACTIONS(4771), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4370), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4755), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4765), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2729), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4763), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115812] = 3, + [119053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 5, + ACTIONS(3967), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4621), 29, + ACTIONS(3965), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217778,17 +222898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115855] = 3, + [119096] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 5, + ACTIONS(3989), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4625), 29, + ACTIONS(3984), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217818,17 +222938,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115898] = 3, + [119139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4476), 5, + ACTIONS(4621), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4474), 29, + ACTIONS(4619), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217858,17 +222978,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115941] = 3, + [119182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 5, + ACTIONS(4599), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 29, + ACTIONS(4597), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217898,33 +223018,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115984] = 8, - ACTIONS(4641), 1, + [119225] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3969), 3, anon_sym_DOT, - ACTIONS(4643), 1, anon_sym_LPAREN, - ACTIONS(4651), 1, - anon_sym_STAR_STAR, - ACTIONS(4653), 1, anon_sym_LBRACK, + ACTIONS(3974), 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(3816), 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, + [119270] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2714), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 4, + ACTIONS(3947), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(3954), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 24, - anon_sym_RPAREN, + ACTIONS(3951), 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_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -217943,17 +223100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116037] = 3, + [119315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4336), 5, + ACTIONS(4000), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 29, + ACTIONS(3995), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217983,45 +223140,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116080] = 11, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(4643), 1, - anon_sym_LPAREN, - ACTIONS(4651), 1, - anon_sym_STAR_STAR, - ACTIONS(4653), 1, - anon_sym_LBRACK, + [119358] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4645), 2, + ACTIONS(3974), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4657), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2714), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4655), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3969), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -218031,33 +223180,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116139] = 8, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(4643), 1, - anon_sym_LPAREN, - ACTIONS(4651), 1, - anon_sym_STAR_STAR, - ACTIONS(4653), 1, - anon_sym_LBRACK, + [119401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2714), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4270), 4, + ACTIONS(4723), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4268), 24, + ACTIONS(4721), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -218076,44 +223220,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116192] = 10, - ACTIONS(4641), 1, + [119444] = 8, + ACTIONS(4749), 1, anon_sym_DOT, - ACTIONS(4643), 1, + ACTIONS(4751), 1, anon_sym_LPAREN, - ACTIONS(4651), 1, + ACTIONS(4759), 1, anon_sym_STAR_STAR, - ACTIONS(4653), 1, + ACTIONS(4761), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4645), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2714), 2, + STATE(2729), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4655), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 21, + ACTIONS(4370), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4368), 24, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -218123,169 +223265,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116249] = 14, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(4643), 1, - anon_sym_LPAREN, - ACTIONS(4651), 1, - anon_sym_STAR_STAR, - ACTIONS(4653), 1, - anon_sym_LBRACK, - ACTIONS(4661), 1, - anon_sym_AMP, - ACTIONS(4663), 1, - anon_sym_CARET, + [119497] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4645), 2, + ACTIONS(4414), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4647), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4657), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2714), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4655), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4406), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_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, - [116314] = 13, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(4643), 1, - anon_sym_LPAREN, - ACTIONS(4651), 1, anon_sym_STAR_STAR, - ACTIONS(4653), 1, anon_sym_LBRACK, - ACTIONS(4663), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4647), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4657), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2714), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4655), 3, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 16, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_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, - [116377] = 12, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(4643), 1, - anon_sym_LPAREN, - ACTIONS(4651), 1, - anon_sym_STAR_STAR, - ACTIONS(4653), 1, - anon_sym_LBRACK, + [119540] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4645), 2, + ACTIONS(4739), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4647), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4657), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2714), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4655), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4268), 17, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4737), 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, anon_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, - [116438] = 3, + [119583] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 5, + ACTIONS(4595), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 29, + ACTIONS(4593), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -218294,7 +223367,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, @@ -218313,19 +223385,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116481] = 3, + [119626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 5, + ACTIONS(4599), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4633), 29, + ACTIONS(4597), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -218334,7 +223407,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, @@ -218353,37 +223425,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116524] = 3, + [119669] = 11, + ACTIONS(4749), 1, + anon_sym_DOT, + ACTIONS(4751), 1, + anon_sym_LPAREN, + ACTIONS(4759), 1, + anon_sym_STAR_STAR, + ACTIONS(4761), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4639), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4370), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4637), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4753), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4765), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2729), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4763), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4368), 19, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -218393,7 +223473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116567] = 3, + [119728] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -218406,6 +223486,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4546), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -218414,7 +223495,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, @@ -218433,17 +223513,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116610] = 3, + [119771] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 5, + ACTIONS(4607), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4629), 29, + ACTIONS(4605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218473,25 +223553,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116653] = 3, + [119814] = 5, + ACTIONS(828), 1, + anon_sym_COLON_EQ, + ACTIONS(2411), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 5, + ACTIONS(813), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4550), 29, + ACTIONS(811), 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, @@ -218513,17 +223595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116696] = 3, + [119861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4521), 5, + ACTIONS(4723), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4519), 29, + ACTIONS(4721), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218553,17 +223635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116739] = 3, + [119904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4525), 5, + ACTIONS(4614), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4523), 29, + ACTIONS(4612), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218593,17 +223675,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116782] = 3, + [119947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4529), 5, + ACTIONS(4595), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4527), 29, + ACTIONS(4593), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218633,99 +223715,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116825] = 3, + [119990] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4572), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4570), 29, + ACTIONS(3795), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3806), 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_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, - [116868] = 3, + ACTIONS(3816), 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, + [120035] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4574), 29, + ACTIONS(3984), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(3989), 13, + anon_sym_STAR, 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, - [116911] = 3, + ACTIONS(3993), 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, + [120080] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 5, + ACTIONS(4641), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 29, + ACTIONS(4639), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -218734,7 +223819,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, @@ -218753,17 +223837,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116954] = 3, + [120123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4452), 5, + ACTIONS(3963), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4450), 29, + ACTIONS(3961), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218793,19 +223877,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116997] = 3, + [120166] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4537), 5, + ACTIONS(4000), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4535), 29, + ACTIONS(3995), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -218814,7 +223899,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, @@ -218833,20 +223917,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117040] = 3, + [120209] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4541), 5, + ACTIONS(3801), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3806), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4539), 29, + ACTIONS(3795), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -218854,7 +223940,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, @@ -218873,63 +223958,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117083] = 3, + [120254] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4621), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4735), 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, - [117126] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4572), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 29, + ACTIONS(4733), 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, @@ -218952,25 +223998,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117168] = 4, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + [120297] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 4, + ACTIONS(4727), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 28, + ACTIONS(4725), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -218992,68 +224038,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117212] = 4, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + [120340] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1498), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4735), 5, 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, - [117256] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3890), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 28, + ACTIONS(4733), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -219072,62 +224078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117300] = 3, + [120383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4550), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4656), 5, 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, - [117342] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3875), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3870), 29, + ACTIONS(4654), 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, @@ -219150,23 +224118,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117384] = 3, + [120426] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 4, + ACTIONS(4579), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 29, + ACTIONS(4577), 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, @@ -219189,23 +224158,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117426] = 3, + [120469] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 4, + ACTIONS(4583), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 29, + ACTIONS(4581), 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, @@ -219228,27 +224198,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117468] = 3, + [120512] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3883), 4, + ACTIONS(4747), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3881), 29, + ACTIONS(4745), 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, @@ -219267,27 +224238,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117510] = 3, + [120555] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 4, + ACTIONS(4559), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4574), 29, + ACTIONS(4557), 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, @@ -219306,23 +224278,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117552] = 3, + [120598] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 4, + ACTIONS(4625), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3912), 29, + ACTIONS(4623), 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, @@ -219345,16 +224318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117594] = 3, + [120641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 4, + ACTIONS(4591), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 29, + ACTIONS(4589), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219384,27 +224357,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117636] = 3, + [120683] = 4, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 4, + ACTIONS(1329), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 29, + ACTIONS(1530), 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, @@ -219423,27 +224397,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117678] = 3, + [120727] = 4, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 4, + ACTIONS(3954), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 29, + ACTIONS(3951), 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, @@ -219462,27 +224437,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117720] = 3, + [120771] = 4, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 4, + ACTIONS(813), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 29, + ACTIONS(811), 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, @@ -219501,27 +224477,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117762] = 3, + [120815] = 4, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4452), 4, + ACTIONS(3806), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4450), 29, + ACTIONS(3795), 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, @@ -219540,21 +224517,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117804] = 4, - ACTIONS(3712), 1, + [120859] = 4, + ACTIONS(828), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 4, + ACTIONS(1329), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 28, + ACTIONS(1530), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -219562,6 +224538,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, @@ -219580,29 +224557,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117848] = 5, - ACTIONS(3720), 1, - anon_sym_from, + [120903] = 4, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3899), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3902), 4, + ACTIONS(3954), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 26, + ACTIONS(3951), 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, @@ -219621,32 +224597,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117894] = 5, - ACTIONS(3720), 1, - anon_sym_from, + [120947] = 4, + ACTIONS(828), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3710), 4, + ACTIONS(1329), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 26, + ACTIONS(1530), 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_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -219662,32 +224637,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117940] = 5, - ACTIONS(3877), 1, - anon_sym_from, + [120991] = 4, + ACTIONS(3808), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3872), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3875), 4, + ACTIONS(3954), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3870), 26, + ACTIONS(3951), 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_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -219703,29 +224677,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117986] = 5, - ACTIONS(3860), 1, - anon_sym_from, + [121035] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3853), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3856), 4, + ACTIONS(3974), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 26, + ACTIONS(3969), 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, @@ -219744,28 +224716,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118032] = 7, - ACTIONS(4816), 1, - anon_sym_as, - ACTIONS(4818), 1, - anon_sym_if, - ACTIONS(4820), 1, - anon_sym_and, - ACTIONS(4822), 1, - anon_sym_or, + [121077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4466), 4, + ACTIONS(3989), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4462), 25, + ACTIONS(3984), 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, @@ -219776,6 +224742,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, @@ -219787,25 +224755,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118082] = 6, - ACTIONS(4820), 1, - anon_sym_and, - ACTIONS(4822), 1, - anon_sym_or, - ACTIONS(4824), 1, - anon_sym_as, + [121119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4483), 4, + ACTIONS(4000), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4478), 26, + ACTIONS(3995), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -219818,6 +224781,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, @@ -219829,20 +224794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118130] = 5, - ACTIONS(4820), 1, - anon_sym_and, - ACTIONS(4822), 1, - anon_sym_or, + [121161] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4487), 4, + ACTIONS(4739), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 27, + ACTIONS(4737), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219859,6 +224820,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, @@ -219870,18 +224833,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118176] = 4, - ACTIONS(4820), 1, - anon_sym_and, + [121203] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 4, + ACTIONS(4743), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 28, + ACTIONS(4741), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219898,6 +224859,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, @@ -219910,28 +224872,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118220] = 7, - ACTIONS(4816), 1, - anon_sym_as, - ACTIONS(4818), 1, - anon_sym_if, - ACTIONS(4820), 1, - anon_sym_and, - ACTIONS(4822), 1, - anon_sym_or, + [121245] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4495), 4, + ACTIONS(3806), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4493), 25, + ACTIONS(3795), 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, @@ -219942,6 +224898,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, @@ -219953,28 +224911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118270] = 7, - ACTIONS(4816), 1, - anon_sym_as, - ACTIONS(4818), 1, - anon_sym_if, - ACTIONS(4820), 1, - anon_sym_and, - ACTIONS(4822), 1, - anon_sym_or, + [121287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4499), 4, + ACTIONS(4303), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4497), 25, + ACTIONS(4289), 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, @@ -219985,6 +224937,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, @@ -219996,58 +224950,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118320] = 6, + [121329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 2, + ACTIONS(4544), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3904), 5, + ACTIONS(4542), 29, + sym_string_start, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(3885), 12, 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(3887), 12, + [121371] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1329), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1332), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1530), 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, - [118368] = 3, + ACTIONS(1327), 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, + [121417] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4611), 4, + ACTIONS(813), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4609), 29, + ACTIONS(811), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220077,16 +225069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118410] = 3, + [121459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 4, + ACTIONS(4625), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 29, + ACTIONS(4623), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220116,16 +225108,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118452] = 3, + [121501] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 4, + ACTIONS(4621), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 29, + ACTIONS(4619), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220155,27 +225147,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118494] = 3, + [121543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 4, + ACTIONS(4540), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4193), 29, + ACTIONS(4538), 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, @@ -220194,27 +225186,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118536] = 3, + [121585] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4444), 4, + ACTIONS(4723), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4442), 29, - sym_string_start, + ACTIONS(4721), 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, @@ -220233,57 +225225,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118578] = 5, + [121627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, + ACTIONS(4595), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1300), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 14, + ACTIONS(4593), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(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, - [118624] = 3, + [121669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 4, + ACTIONS(4579), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 29, + ACTIONS(4577), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220313,16 +225303,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118666] = 3, + [121711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 4, + ACTIONS(4583), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 29, + ACTIONS(4581), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220352,16 +225342,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118708] = 3, + [121753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4529), 4, + ACTIONS(4587), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4527), 29, + ACTIONS(4585), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220391,16 +225381,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118750] = 3, + [121795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 4, + ACTIONS(4641), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 29, + ACTIONS(4639), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220430,16 +225420,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118792] = 3, + [121837] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4533), 4, + ACTIONS(3954), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3957), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4531), 29, + ACTIONS(3949), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(3947), 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(3951), 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, + [121885] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4414), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4406), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220469,27 +225501,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118834] = 3, + [121927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4448), 4, + ACTIONS(4614), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4446), 29, - sym_string_start, + ACTIONS(4612), 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, @@ -220508,16 +225540,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118876] = 3, + [121969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4564), 4, + ACTIONS(4727), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4562), 29, + ACTIONS(4725), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220547,16 +225579,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118918] = 3, + [122011] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 4, + ACTIONS(4735), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4566), 29, + ACTIONS(4733), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220586,16 +225618,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118960] = 3, + [122053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 4, + ACTIONS(4747), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4617), 29, + ACTIONS(4745), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220625,16 +225657,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119002] = 3, + [122095] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 4, + ACTIONS(4559), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4621), 29, + ACTIONS(4557), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220664,16 +225696,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119044] = 3, + [122137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 4, + ACTIONS(4548), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4625), 29, + ACTIONS(4546), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220703,16 +225735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119086] = 3, + [122179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4476), 4, + ACTIONS(4563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4474), 29, + ACTIONS(4561), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220742,16 +225774,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119128] = 3, + [122221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4537), 4, + ACTIONS(4567), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4535), 29, + ACTIONS(4565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220781,16 +225813,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119170] = 3, + [122263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 4, + ACTIONS(4555), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 29, + ACTIONS(4553), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220820,28 +225852,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119212] = 4, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + [122305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 4, + ACTIONS(4603), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 28, + ACTIONS(4601), 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, @@ -220860,28 +225891,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119256] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [122347] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 4, + ACTIONS(4607), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 28, + 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_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -220900,16 +225930,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119300] = 3, + [122389] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4541), 4, + ACTIONS(4571), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4539), 29, + ACTIONS(4569), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220939,16 +225969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119342] = 3, + [122431] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4336), 4, + ACTIONS(4575), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 29, + ACTIONS(4573), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220978,31 +226008,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119384] = 4, - ACTIONS(948), 1, - anon_sym_COLON_EQ, + [122473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 4, + ACTIONS(3978), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1498), 28, + ACTIONS(3976), 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, @@ -221018,31 +226047,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119428] = 4, - ACTIONS(3712), 1, - anon_sym_COLON_EQ, + [122515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 4, + ACTIONS(4599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 28, + ACTIONS(4597), 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, @@ -221058,57 +226086,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119472] = 5, + [122557] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 2, + ACTIONS(4010), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 14, + ACTIONS(4008), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3885), 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, - [119518] = 3, + [122599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 4, + ACTIONS(4731), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 29, + ACTIONS(4729), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221138,16 +226164,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119560] = 3, + [122641] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 4, + ACTIONS(3967), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3862), 29, + ACTIONS(3965), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221177,16 +226203,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119602] = 3, + [122683] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 4, + ACTIONS(3963), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4633), 29, + ACTIONS(3961), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221216,16 +226242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119644] = 3, + [122725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4639), 4, + ACTIONS(3963), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4637), 29, + ACTIONS(3961), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221255,16 +226281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119686] = 3, + [122767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 4, + ACTIONS(3982), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 29, + ACTIONS(3980), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221294,16 +226320,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119728] = 3, + [122809] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 4, + ACTIONS(3982), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4629), 29, + ACTIONS(3980), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221333,72 +226359,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119770] = 3, + [122851] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4521), 4, + ACTIONS(3954), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3957), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4519), 29, + ACTIONS(3951), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(3947), 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, - [119812] = 9, - ACTIONS(4217), 1, + [122897] = 9, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4438), 1, + ACTIONS(4402), 1, anon_sym_is, - STATE(2154), 1, + STATE(2176), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4229), 2, + ACTIONS(4342), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4440), 2, + ACTIONS(4404), 2, anon_sym_LT, anon_sym_GT, - STATE(1917), 2, + STATE(1983), 2, sym__not_in, sym__is_not, - ACTIONS(4422), 6, + ACTIONS(4386), 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(4227), 18, + ACTIONS(4340), 18, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, @@ -221417,22 +226445,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [119866] = 3, + [122951] = 7, + ACTIONS(4912), 1, + anon_sym_as, + ACTIONS(4914), 1, + anon_sym_if, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4918), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4525), 4, + ACTIONS(4631), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4523), 29, + ACTIONS(4627), 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, @@ -221443,8 +226477,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, @@ -221456,20 +226488,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119908] = 3, + [123001] = 6, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4918), 1, + anon_sym_or, + ACTIONS(4920), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 4, + ACTIONS(4648), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 29, + ACTIONS(4643), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -221482,8 +226519,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, @@ -221495,73 +226530,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119950] = 5, + [123049] = 5, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4918), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 2, + ACTIONS(4652), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3893), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3885), 14, - anon_sym_RPAREN, + ACTIONS(4650), 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, + anon_sym_CARET, + anon_sym_LT_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(3887), 14, + [123095] = 4, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4656), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4654), 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_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [119995] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [123139] = 7, + ACTIONS(4912), 1, + anon_sym_as, + ACTIONS(4914), 1, + anon_sym_if, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4918), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 4, + ACTIONS(4660), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 28, + ACTIONS(4658), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -221573,33 +226654,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120036] = 3, + [123189] = 7, + ACTIONS(4912), 1, + anon_sym_as, + ACTIONS(4914), 1, + anon_sym_if, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4918), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4525), 4, + ACTIONS(4664), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4523), 28, + ACTIONS(4662), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -221611,26 +226697,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120077] = 3, + [123239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4529), 4, + ACTIONS(4656), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4527), 28, + ACTIONS(4654), 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, @@ -221649,11 +226736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120118] = 3, + [123281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3883), 13, + ACTIONS(4010), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -221667,7 +226754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3881), 19, + ACTIONS(4008), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221687,72 +226774,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [120159] = 21, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4827), 1, - sym_identifier, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + [123322] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4563), 4, anon_sym_STAR, - ACTIONS(4833), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4561), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - ACTIONS(4835), 1, - anon_sym_COLON, - ACTIONS(4837), 1, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4839), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + anon_sym_AT, anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4552), 1, - sym_case_pattern, - STATE(5571), 1, - sym_if_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4611), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4843), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4189), 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, - [120236] = 3, + anon_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, + [123363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4572), 4, + ACTIONS(4567), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4570), 28, + ACTIONS(4565), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221781,16 +226850,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120277] = 3, + [123404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4556), 4, + ACTIONS(4555), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4554), 28, + ACTIONS(4553), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221819,16 +226888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120318] = 3, + [123445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4452), 4, + ACTIONS(4603), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4450), 28, + ACTIONS(4601), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221857,16 +226926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120359] = 3, + [123486] = 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), 28, + ACTIONS(4605), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221895,16 +226964,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120400] = 3, + [123527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 4, + ACTIONS(4571), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3912), 28, + ACTIONS(4569), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221933,16 +227002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120441] = 3, + [123568] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 4, + ACTIONS(4575), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4613), 28, + ACTIONS(4573), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221971,18 +227040,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120482] = 3, + [123609] = 21, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4923), 1, + sym_identifier, + ACTIONS(4925), 1, + anon_sym_LPAREN, + ACTIONS(4927), 1, + anon_sym_STAR, + ACTIONS(4929), 1, + anon_sym_if, + ACTIONS(4931), 1, + anon_sym_COLON, + ACTIONS(4933), 1, + anon_sym_STAR_STAR, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4636), 1, + sym_case_pattern, + STATE(5750), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 4, + STATE(4651), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4939), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4270), 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, + [123686] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3974), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 28, + ACTIONS(3969), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -221990,7 +227116,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, @@ -222009,16 +227134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120523] = 3, + [123727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 4, + ACTIONS(3989), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3699), 28, + ACTIONS(3984), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222047,23 +227172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120564] = 7, - ACTIONS(3906), 1, - anon_sym_EQ, + [123768] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 2, + ACTIONS(1329), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3893), 2, + ACTIONS(1332), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3904), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3885), 12, + ACTIONS(1327), 14, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_in, @@ -222076,29 +227197,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3887), 12, + ACTIONS(1530), 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, - [120613] = 3, + [123813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4537), 4, + ACTIONS(3978), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4535), 28, + ACTIONS(3976), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222127,18 +227250,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120654] = 3, + [123854] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 4, + ACTIONS(4000), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3887), 28, + ACTIONS(3995), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -222149,7 +227273,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, @@ -222165,16 +227288,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120695] = 3, + [123895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4541), 4, + ACTIONS(4739), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4539), 28, + ACTIONS(4737), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222203,73 +227326,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120736] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4857), 1, - anon_sym_COLON, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5518), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [120815] = 3, + [123936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4207), 4, + ACTIONS(4743), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4193), 28, + ACTIONS(4741), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222298,55 +227364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120856] = 4, + [123977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3897), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3902), 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, - [120899] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4336), 4, + ACTIONS(3806), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4328), 28, + ACTIONS(3795), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222375,16 +227402,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120940] = 3, + [124018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 4, + ACTIONS(4599), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 28, + ACTIONS(4597), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222413,16 +227440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120981] = 3, + [124059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 4, + ACTIONS(4303), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4621), 28, + ACTIONS(4289), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222451,55 +227478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121022] = 5, + [124100] = 4, 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(1295), 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(1498), 14, + ACTIONS(3969), 3, 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, - [121067] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3699), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3710), 13, + ACTIONS(3974), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -222513,7 +227500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3720), 16, + ACTIONS(3816), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -222530,49 +227517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [121110] = 3, + [124143] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3914), 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(3912), 19, + ACTIONS(3795), 3, 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, - [121151] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3868), 13, + ACTIONS(3806), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -222586,13 +227539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3866), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3816), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222606,417 +227556,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [121192] = 4, + [124186] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3875), 13, + ACTIONS(4010), 4, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3877), 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, - [121235] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - 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_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3866), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4008), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [121276] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5474), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121355] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(931), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(933), 13, - anon_sym_STAR, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(967), 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, - [121398] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(4867), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5515), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121477] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(4869), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5627), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121556] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(4871), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5694), 1, - sym__parameters, - STATE(5701), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121635] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(4873), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5521), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [124227] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121714] = 3, + ACTIONS(3984), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3989), 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(3993), 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, + [124270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 4, + ACTIONS(4731), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4574), 28, + ACTIONS(4729), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -223045,73 +227671,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121755] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, + [124311] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3995), 3, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4855), 1, + anon_sym_LBRACK, + ACTIONS(4000), 13, anon_sym_STAR, - ACTIONS(4859), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4861), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(4875), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(4004), 16, + anon_sym_COMMA, anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5667), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121834] = 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [124354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 4, + ACTIONS(3967), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4625), 28, + ACTIONS(3965), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -223140,73 +227748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121875] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(4877), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5464), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [121954] = 3, + [124395] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4560), 4, + ACTIONS(3963), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4558), 28, + ACTIONS(3961), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -223235,244 +227786,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121995] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(4879), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5525), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, + [124436] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122074] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, + ACTIONS(3963), 4, anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, anon_sym_SLASH, - ACTIONS(4881), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5397), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122153] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3961), 28, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4859), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(4883), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5450), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, + 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, + [124477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122232] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, + ACTIONS(813), 4, anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, anon_sym_SLASH, - ACTIONS(4885), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5482), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122311] = 3, + anon_sym_LT, + anon_sym_GT, + ACTIONS(811), 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, + [124518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3883), 4, + ACTIONS(4591), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3881), 28, + ACTIONS(4589), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -223501,380 +227900,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122352] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(4887), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5508), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, + [124559] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122431] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, + ACTIONS(3982), 4, anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, anon_sym_SLASH, - ACTIONS(4889), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5523), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122510] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3980), 28, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4859), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(4891), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5576), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, + 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, + [124600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122589] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, - sym_identifier, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, + ACTIONS(3982), 4, anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, anon_sym_SLASH, - ACTIONS(4893), 1, - anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5416), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [122668] = 25, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(4895), 1, - sym_identifier, - ACTIONS(4897), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3980), 28, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4899), 1, anon_sym_RPAREN, - ACTIONS(4905), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(4907), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4909), 1, - anon_sym_operator, - STATE(3156), 1, - sym__signedness, - STATE(3157), 1, - sym_int_type, - STATE(3364), 1, - sym__longness, - STATE(3515), 1, - sym_function_pointer_type, - STATE(3535), 1, - sym_operator_name, - STATE(4506), 1, - sym_c_type, - STATE(4514), 1, - sym_maybe_typed_name, - STATE(5003), 1, - sym_type_index, - STATE(5481), 1, - sym_type_qualifier, - STATE(5510), 1, - sym__typedargslist, + 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, + [124641] = 5, 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(4901), 2, + ACTIONS(3954), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, + anon_sym_SLASH, + ACTIONS(3957), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3947), 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(3951), 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(4911), 2, - anon_sym_const, - anon_sym_volatile, - STATE(4968), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [122753] = 3, + anon_sym_CARET, + anon_sym_LT_LT, + [124686] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 13, + ACTIONS(4625), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4623), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3908), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [124727] = 7, + ACTIONS(3959), 1, 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, - [122794] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 13, + ACTIONS(3954), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3957), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3949), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3947), 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(3951), 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, - ACTIONS(3908), 19, + [124776] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4621), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4619), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, 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, - [122835] = 3, + 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, + [124817] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 4, + ACTIONS(4723), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 28, + ACTIONS(4721), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -223903,16 +228172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122876] = 3, + [124858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 4, + ACTIONS(4595), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4633), 28, + ACTIONS(4593), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -223941,16 +228210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122917] = 3, + [124899] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 4, + ACTIONS(4579), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3897), 28, + ACTIONS(4577), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -223979,16 +228248,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122958] = 3, + [124940] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4639), 4, + ACTIONS(4583), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4637), 28, + ACTIONS(4581), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -224017,16 +228286,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122999] = 3, + [124981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 4, + ACTIONS(4587), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 28, + ACTIONS(4585), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -224055,110 +228324,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123040] = 22, - ACTIONS(3942), 1, + [125022] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3978), 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(3976), 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, + [125063] = 22, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4851), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4853), 1, + ACTIONS(4949), 1, anon_sym_LPAREN, - ACTIONS(4855), 1, + ACTIONS(4951), 1, anon_sym_STAR, - ACTIONS(4859), 1, + ACTIONS(4953), 1, + anon_sym_COLON, + ACTIONS(4955), 1, anon_sym_STAR_STAR, - ACTIONS(4861), 1, + ACTIONS(4957), 1, anon_sym_SLASH, - ACTIONS(4913), 1, - anon_sym_COLON, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4157), 1, + STATE(4311), 1, sym_c_type, - STATE(5144), 1, + STATE(5005), 1, sym_parameter, - STATE(5162), 1, + STATE(5007), 1, sym_tuple_pattern, - STATE(5504), 1, - sym_lambda_parameters, - STATE(5694), 1, + STATE(5733), 1, sym__parameters, + STATE(5823), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4863), 2, + ACTIONS(4959), 2, anon_sym_const, anon_sym_volatile, - STATE(3649), 2, + STATE(3743), 2, sym_int_type, sym_function_pointer_type, - STATE(5391), 2, + STATE(5257), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5335), 5, + STATE(5250), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [123119] = 3, + [125142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 4, + ACTIONS(3967), 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(4629), 28, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3965), 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, + [125183] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3963), 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(3961), 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, + [125224] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3963), 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, - [123160] = 4, + ACTIONS(3961), 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, + [125265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3851), 3, + ACTIONS(3982), 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(3980), 19, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(3856), 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, + [125306] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3982), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -224172,10 +228589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3860), 16, + ACTIONS(3980), 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, @@ -224189,16 +228609,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [123203] = 3, + [125347] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4548), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4546), 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, + [125388] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 4, + ACTIONS(4641), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(931), 28, + ACTIONS(4639), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -224227,73 +228685,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123244] = 22, - ACTIONS(3942), 1, + [125429] = 22, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4851), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4853), 1, + ACTIONS(4949), 1, anon_sym_LPAREN, - ACTIONS(4855), 1, + ACTIONS(4951), 1, anon_sym_STAR, - ACTIONS(4859), 1, + ACTIONS(4955), 1, anon_sym_STAR_STAR, - ACTIONS(4861), 1, + ACTIONS(4957), 1, anon_sym_SLASH, - ACTIONS(4915), 1, + ACTIONS(4961), 1, anon_sym_COLON, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4157), 1, + STATE(4311), 1, sym_c_type, - STATE(5144), 1, + STATE(5005), 1, sym_parameter, - STATE(5162), 1, + STATE(5007), 1, sym_tuple_pattern, - STATE(5687), 1, + STATE(5520), 1, sym_lambda_parameters, - STATE(5694), 1, + STATE(5733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4863), 2, + ACTIONS(4959), 2, anon_sym_const, anon_sym_volatile, - STATE(3649), 2, + STATE(3743), 2, sym_int_type, sym_function_pointer_type, - STATE(5391), 2, + STATE(5257), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5335), 5, + STATE(5250), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [123323] = 3, + [125508] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3951), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(3954), 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(3947), 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, + [125551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4456), 4, + ACTIONS(3954), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4454), 28, + ACTIONS(3951), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -224322,19 +228819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123364] = 3, + [125592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 4, + ACTIONS(3954), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4458), 28, + ACTIONS(3951), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -224342,6 +228838,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, @@ -224360,37 +228857,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123405] = 7, - ACTIONS(4917), 1, - anon_sym_as, - ACTIONS(4919), 1, - anon_sym_if, - ACTIONS(4921), 1, - anon_sym_and, - ACTIONS(4923), 1, - anon_sym_or, + [125633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4466), 4, + ACTIONS(3954), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4462), 24, + ACTIONS(3951), 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_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -224402,68 +228895,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123454] = 6, - ACTIONS(4921), 1, - anon_sym_and, - ACTIONS(4923), 1, - anon_sym_or, - ACTIONS(4925), 1, - anon_sym_as, + [125674] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(4963), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5642), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4483), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4478), 25, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [125753] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(811), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(813), 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_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, - [123501] = 5, - ACTIONS(4921), 1, + ACTIONS(847), 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, + [125796] = 7, + ACTIONS(4965), 1, + anon_sym_as, + ACTIONS(4967), 1, + anon_sym_if, + ACTIONS(4969), 1, anon_sym_and, - ACTIONS(4923), 1, + ACTIONS(4971), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4487), 4, + ACTIONS(4631), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4485), 26, + ACTIONS(4627), 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, @@ -224483,23 +229033,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123546] = 4, - ACTIONS(4921), 1, + [125845] = 6, + ACTIONS(4969), 1, anon_sym_and, + ACTIONS(4971), 1, + anon_sym_or, + ACTIONS(4973), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 4, + ACTIONS(4648), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 27, + ACTIONS(4643), 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, @@ -224510,7 +229063,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -224522,16 +229074,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123589] = 3, + [125892] = 5, + ACTIONS(4969), 1, + anon_sym_and, + ACTIONS(4971), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 4, + ACTIONS(4652), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3870), 28, + ACTIONS(4650), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -224547,8 +229103,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, @@ -224560,16 +229114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123630] = 3, + [125937] = 4, + ACTIONS(4969), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 4, + ACTIONS(4656), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3851), 28, + ACTIONS(4654), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -224585,7 +229141,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, @@ -224598,23 +229153,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123671] = 3, + [125980] = 7, + ACTIONS(4965), 1, + anon_sym_as, + ACTIONS(4967), 1, + anon_sym_if, + ACTIONS(4969), 1, + anon_sym_and, + ACTIONS(4971), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 4, + ACTIONS(4660), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3862), 28, + ACTIONS(4658), 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, @@ -224623,8 +229184,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, @@ -224636,24 +229195,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123712] = 7, - ACTIONS(4917), 1, + [126029] = 7, + ACTIONS(4965), 1, anon_sym_as, - ACTIONS(4919), 1, + ACTIONS(4967), 1, anon_sym_if, - ACTIONS(4921), 1, + ACTIONS(4969), 1, anon_sym_and, - ACTIONS(4923), 1, + ACTIONS(4971), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4495), 4, + ACTIONS(4664), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4493), 24, + ACTIONS(4662), 24, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -224678,85 +229237,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123761] = 21, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4827), 1, - sym_identifier, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_STAR, - ACTIONS(4833), 1, - anon_sym_if, - ACTIONS(4837), 1, - anon_sym_STAR_STAR, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(4928), 1, - anon_sym_COLON, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4552), 1, - sym_case_pattern, - STATE(5536), 1, - sym_if_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4611), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4843), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4189), 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, - [123838] = 7, - ACTIONS(4917), 1, - anon_sym_as, - ACTIONS(4919), 1, - anon_sym_if, - ACTIONS(4921), 1, - anon_sym_and, - ACTIONS(4923), 1, - anon_sym_or, + [126078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4499), 4, + ACTIONS(4656), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4497), 24, + ACTIONS(4654), 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, @@ -224765,6 +229262,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, @@ -224776,16 +229275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123887] = 3, + [126119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 4, + ACTIONS(4414), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 28, + ACTIONS(4406), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -224814,16 +229313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123928] = 3, + [126160] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4533), 4, + ACTIONS(4614), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4531), 28, + ACTIONS(4612), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -224852,55 +229351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123969] = 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, - [124012] = 3, + [126201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4521), 4, + ACTIONS(4727), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4519), 28, + ACTIONS(4725), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -224929,54 +229389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124053] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3864), 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(3862), 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, - [124094] = 3, + [126242] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 4, + ACTIONS(4735), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3908), 28, + ACTIONS(4733), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -225005,16 +229427,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124135] = 3, + [126283] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4564), 4, + ACTIONS(4747), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4562), 28, + ACTIONS(4745), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -225043,321 +229465,1102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124176] = 22, - ACTIONS(3942), 1, + [126324] = 22, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4851), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4853), 1, + ACTIONS(4949), 1, anon_sym_LPAREN, - ACTIONS(4855), 1, + ACTIONS(4951), 1, anon_sym_STAR, - ACTIONS(4859), 1, + ACTIONS(4955), 1, anon_sym_STAR_STAR, - ACTIONS(4861), 1, + ACTIONS(4957), 1, anon_sym_SLASH, - ACTIONS(4930), 1, + ACTIONS(4976), 1, anon_sym_COLON, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4157), 1, + STATE(4311), 1, sym_c_type, - STATE(5144), 1, + STATE(5005), 1, sym_parameter, - STATE(5162), 1, + STATE(5007), 1, sym_tuple_pattern, - STATE(5680), 1, + STATE(5551), 1, sym_lambda_parameters, - STATE(5694), 1, + STATE(5733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4863), 2, + ACTIONS(4959), 2, anon_sym_const, anon_sym_volatile, - STATE(3649), 2, + STATE(3743), 2, sym_int_type, sym_function_pointer_type, - STATE(5391), 2, + STATE(5257), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5335), 5, + STATE(5250), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [124255] = 3, + [126403] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(4978), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5687), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 4, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [126482] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4617), 28, - anon_sym_DOT, + ACTIONS(4980), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5647), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [126561] = 25, + ACTIONS(1388), 1, + anon_sym_long, + ACTIONS(4982), 1, + sym_identifier, + ACTIONS(4984), 1, anon_sym_LPAREN, + ACTIONS(4986), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(4992), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(4994), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4996), 1, + anon_sym_operator, + STATE(3206), 1, + sym_int_type, + STATE(3209), 1, + sym__signedness, + STATE(3417), 1, + sym__longness, + STATE(3530), 1, + sym_function_pointer_type, + STATE(3583), 1, + sym_operator_name, + STATE(4665), 1, + sym_c_type, + STATE(4681), 1, + sym_maybe_typed_name, + STATE(5050), 1, + sym_type_index, + STATE(5645), 1, + sym_type_qualifier, + STATE(5670), 1, + sym__typedargslist, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1384), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1386), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [124296] = 22, - ACTIONS(3942), 1, + ACTIONS(4998), 2, + anon_sym_const, + anon_sym_volatile, + STATE(5186), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1380), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [126646] = 22, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4851), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4853), 1, + ACTIONS(4949), 1, anon_sym_LPAREN, - ACTIONS(4855), 1, + ACTIONS(4951), 1, anon_sym_STAR, - ACTIONS(4859), 1, + ACTIONS(4955), 1, anon_sym_STAR_STAR, - ACTIONS(4861), 1, + ACTIONS(4957), 1, anon_sym_SLASH, - ACTIONS(4932), 1, + ACTIONS(5000), 1, anon_sym_COLON, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4157), 1, + STATE(4311), 1, sym_c_type, - STATE(5144), 1, + STATE(5005), 1, sym_parameter, - STATE(5162), 1, + STATE(5007), 1, sym_tuple_pattern, - STATE(5686), 1, + STATE(5696), 1, sym_lambda_parameters, - STATE(5694), 1, + STATE(5733), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4863), 2, + ACTIONS(4959), 2, anon_sym_const, anon_sym_volatile, - STATE(3649), 2, + STATE(3743), 2, sym_int_type, sym_function_pointer_type, - STATE(5391), 2, + STATE(5257), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5335), 5, + STATE(5250), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [124375] = 3, + [126725] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(5002), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5733), 1, + sym__parameters, + STATE(5813), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4568), 4, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [126804] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4566), 28, - anon_sym_DOT, + ACTIONS(5004), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5607), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [126883] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 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, - [124416] = 3, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(5006), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5733), 1, + sym__parameters, + STATE(5742), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4476), 4, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [126962] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4474), 28, - anon_sym_DOT, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5493), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127041] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 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, - [124457] = 3, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(5010), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5609), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 4, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127120] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4550), 28, - anon_sym_DOT, + ACTIONS(5012), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5733), 1, + sym__parameters, + STATE(5793), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127199] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 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, - [124498] = 4, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(5014), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5513), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 3, - anon_sym_DOT, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127278] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3890), 13, + ACTIONS(4951), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(4955), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(4957), 1, 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, + ACTIONS(5016), 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, - [124541] = 3, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5549), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127357] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(5018), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5561), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127436] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(5020), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5576), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127515] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(5022), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5589), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127594] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(5024), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5649), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127673] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(5026), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5482), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127752] = 22, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4947), 1, + sym_identifier, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(5028), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5005), 1, + sym_parameter, + STATE(5007), 1, + sym_tuple_pattern, + STATE(5572), 1, + sym_lambda_parameters, + STATE(5733), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [127831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 4, + ACTIONS(4559), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3866), 28, + ACTIONS(4557), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -225386,252 +230589,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124582] = 22, - ACTIONS(3942), 1, + [127872] = 22, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4851), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4853), 1, + ACTIONS(4949), 1, anon_sym_LPAREN, - ACTIONS(4855), 1, + ACTIONS(4951), 1, anon_sym_STAR, - ACTIONS(4859), 1, + ACTIONS(4955), 1, anon_sym_STAR_STAR, - ACTIONS(4861), 1, + ACTIONS(4957), 1, anon_sym_SLASH, - ACTIONS(4934), 1, + ACTIONS(5030), 1, anon_sym_COLON, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4157), 1, + STATE(4311), 1, sym_c_type, - STATE(5144), 1, + STATE(5005), 1, sym_parameter, - STATE(5162), 1, + STATE(5007), 1, sym_tuple_pattern, - STATE(5486), 1, - sym_lambda_parameters, - STATE(5694), 1, + STATE(5733), 1, sym__parameters, + STATE(5752), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4863), 2, + ACTIONS(4959), 2, anon_sym_const, anon_sym_volatile, - STATE(3649), 2, + STATE(3743), 2, sym_int_type, sym_function_pointer_type, - STATE(5391), 2, + STATE(5257), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5335), 5, + STATE(5250), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [124661] = 22, - ACTIONS(3942), 1, + [127951] = 22, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4851), 1, + ACTIONS(4947), 1, sym_identifier, - ACTIONS(4853), 1, + ACTIONS(4949), 1, anon_sym_LPAREN, - ACTIONS(4855), 1, + ACTIONS(4951), 1, anon_sym_STAR, - ACTIONS(4859), 1, + ACTIONS(4955), 1, anon_sym_STAR_STAR, - ACTIONS(4861), 1, + ACTIONS(4957), 1, anon_sym_SLASH, - ACTIONS(4936), 1, + ACTIONS(5032), 1, anon_sym_COLON, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4157), 1, + STATE(4311), 1, sym_c_type, - STATE(5144), 1, + STATE(5005), 1, sym_parameter, - STATE(5162), 1, + STATE(5007), 1, sym_tuple_pattern, - STATE(5694), 1, + STATE(5733), 1, sym__parameters, - STATE(5751), 1, + STATE(5758), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4863), 2, + ACTIONS(4959), 2, anon_sym_const, anon_sym_volatile, - STATE(3649), 2, + STATE(3743), 2, sym_int_type, sym_function_pointer_type, - STATE(5391), 2, + STATE(5257), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5335), 5, + STATE(5250), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [124740] = 22, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4851), 1, + [128030] = 21, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4923), 1, sym_identifier, - ACTIONS(4853), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(4855), 1, + ACTIONS(4927), 1, anon_sym_STAR, - ACTIONS(4859), 1, + ACTIONS(4929), 1, + anon_sym_if, + ACTIONS(4933), 1, anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(4938), 1, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5034), 1, anon_sym_COLON, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(5144), 1, - sym_parameter, - STATE(5162), 1, - sym_tuple_pattern, - STATE(5496), 1, - sym_lambda_parameters, - STATE(5694), 1, - sym__parameters, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4636), 1, + sym_case_pattern, + STATE(5568), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4651), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(4939), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4270), 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, + [128107] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [124819] = 19, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(1530), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1329), 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(1327), 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, + [128150] = 19, + ACTIONS(5036), 1, sym_identifier, - ACTIONS(4116), 1, + ACTIONS(5045), 1, + anon_sym_operator, + ACTIONS(5054), 1, + anon_sym_long, + ACTIONS(5060), 1, anon_sym_ctypedef, - ACTIONS(4122), 1, + ACTIONS(5063), 1, anon_sym_cppclass, - ACTIONS(4940), 1, + ACTIONS(5066), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(5048), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(5051), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(5057), 2, anon_sym_const, anon_sym_volatile, - STATE(3081), 2, + STATE(3134), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(5042), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2733), 4, + STATE(2787), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, aux_sym__cppclass_suite_repeat1, - ACTIONS(103), 5, + ACTIONS(5039), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [124891] = 19, + [128222] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4942), 1, + ACTIONS(5068), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -225642,17 +230883,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(3081), 2, + STATE(3134), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2733), 4, + STATE(2787), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, @@ -225663,81 +230904,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [124963] = 19, - ACTIONS(4944), 1, + [128294] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5072), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(2789), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(5074), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(5070), 22, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_class, sym_identifier, - ACTIONS(4953), 1, + anon_sym_await, + anon_sym_int, + anon_sym_double, + anon_sym_complex, anon_sym_operator, - ACTIONS(4962), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, anon_sym_long, - ACTIONS(4968), 1, + anon_sym_const, + anon_sym_volatile, anon_sym_ctypedef, - ACTIONS(4971), 1, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + [128338] = 19, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(4212), 1, + anon_sym_ctypedef, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4974), 1, + ACTIONS(5077), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4956), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4959), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4965), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(3081), 2, + STATE(3134), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(4950), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2733), 4, + STATE(2791), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, aux_sym__cppclass_suite_repeat1, - ACTIONS(4947), 5, + ACTIONS(103), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [125035] = 19, + [128410] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4976), 1, + ACTIONS(5079), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -225748,17 +231028,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(3081), 2, + STATE(3134), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2738), 4, + STATE(2787), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, @@ -225769,122 +231049,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [125107] = 21, - ACTIONS(3942), 1, + [128482] = 21, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4978), 1, + ACTIONS(5081), 1, sym_identifier, - ACTIONS(4980), 1, + ACTIONS(5083), 1, anon_sym_LPAREN, - ACTIONS(4982), 1, + ACTIONS(5085), 1, anon_sym_RPAREN, - ACTIONS(4984), 1, + ACTIONS(5087), 1, anon_sym_STAR, - ACTIONS(4986), 1, + ACTIONS(5089), 1, anon_sym_STAR_STAR, - ACTIONS(4988), 1, + ACTIONS(5091), 1, anon_sym_SLASH, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4167), 1, + STATE(4316), 1, sym_c_type, - STATE(4799), 1, + STATE(4894), 1, sym_parameter, - STATE(4850), 1, + STATE(4934), 1, sym_tuple_pattern, - STATE(5404), 1, + STATE(5597), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4863), 2, + ACTIONS(4959), 2, anon_sym_const, anon_sym_volatile, - STATE(3649), 2, + STATE(3743), 2, sym_int_type, sym_function_pointer_type, - STATE(4800), 2, + STATE(4907), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5383), 5, + STATE(5327), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [125183] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4992), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(2736), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(4994), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - ACTIONS(4990), 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, - [125227] = 19, + [128558] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4997), 1, + ACTIONS(5093), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -225895,17 +231136,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(3081), 2, + STATE(3134), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2731), 4, + STATE(2787), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, @@ -225916,28 +231157,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [125299] = 19, + [128630] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(4999), 1, + ACTIONS(5095), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -225948,17 +231189,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(3081), 2, + STATE(3134), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2733), 4, + STATE(2788), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, @@ -225969,28 +231210,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [125371] = 19, + [128702] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4116), 1, + ACTIONS(4212), 1, anon_sym_ctypedef, - ACTIONS(4122), 1, + ACTIONS(4218), 1, anon_sym_cppclass, - ACTIONS(5001), 1, + ACTIONS(5097), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -226001,17 +231242,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(3081), 2, + STATE(3134), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2732), 4, + STATE(2793), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, @@ -226022,48 +231263,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [125443] = 19, - ACTIONS(2495), 1, + [128774] = 19, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5003), 1, + ACTIONS(5099), 1, sym_identifier, - ACTIONS(5005), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5007), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5011), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5013), 1, + ACTIONS(5109), 1, anon_sym_RBRACK, - ACTIONS(5015), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5019), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5023), 1, + ACTIONS(5119), 1, sym_float, - STATE(4112), 1, + STATE(4156), 1, sym_string, - STATE(4388), 1, + STATE(4504), 1, sym_dotted_name, - STATE(4621), 1, + STATE(5120), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, + STATE(4841), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5017), 3, + ACTIONS(5113), 3, anon_sym__, sym_true, sym_false, - STATE(4351), 10, + STATE(4526), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226074,48 +231315,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [125514] = 19, - ACTIONS(2495), 1, + [128845] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(2503), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5003), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5005), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5007), 1, + ACTIONS(5125), 1, + anon_sym_RPAREN, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5011), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5019), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5023), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5025), 1, - anon_sym_RBRACK, - STATE(4112), 1, + STATE(4107), 1, sym_string, - STATE(4388), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4535), 1, + STATE(4695), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5017), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4351), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226126,154 +231367,100 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [125585] = 20, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4978), 1, + [128916] = 19, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(4980), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(4986), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(4988), 1, - anon_sym_SLASH, - ACTIONS(5027), 1, + ACTIONS(5131), 1, + anon_sym_LBRACK, + ACTIONS(5133), 1, + anon_sym_DASH, + ACTIONS(5137), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + sym_integer, + ACTIONS(5141), 1, + sym_float, + ACTIONS(5143), 1, anon_sym_RPAREN, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4167), 1, - sym_c_type, - STATE(4850), 1, - sym_tuple_pattern, - STATE(5232), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(4800), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5383), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [125658] = 20, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4110), 1, - sym_identifier, - ACTIONS(5029), 1, - anon_sym_COLON, - ACTIONS(5031), 1, - anon_sym_namespace, - ACTIONS(5033), 1, - anon_sym_nogil, - STATE(3133), 1, - sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3806), 1, - sym_maybe_typed_name, + STATE(4107), 1, + sym_string, + STATE(4538), 1, + sym_dotted_name, + STATE(4889), 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(3984), 2, - anon_sym_const, - anon_sym_volatile, - STATE(656), 2, - sym_class_definition, - sym_cvar_def, - STATE(3079), 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, - [125731] = 19, - ACTIONS(1396), 1, + STATE(4892), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5135), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4381), 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, + [128987] = 19, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5099), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5039), 1, - anon_sym_RPAREN, - ACTIONS(5041), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5119), 1, sym_float, - STATE(4043), 1, + ACTIONS(5145), 1, + anon_sym_RBRACK, + STATE(4156), 1, sym_string, - STATE(4375), 1, + STATE(4504), 1, sym_dotted_name, - STATE(5161), 1, + STATE(5120), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4841), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5113), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4526), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226284,48 +231471,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [125802] = 19, - ACTIONS(2495), 1, + [129058] = 19, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5003), 1, + ACTIONS(5099), 1, sym_identifier, - ACTIONS(5005), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5007), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5011), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5019), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5023), 1, + ACTIONS(5119), 1, sym_float, - ACTIONS(5057), 1, + ACTIONS(5147), 1, anon_sym_RBRACK, - STATE(4112), 1, + STATE(4156), 1, sym_string, - STATE(4388), 1, + STATE(4504), 1, sym_dotted_name, - STATE(4841), 1, + STATE(5120), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, + STATE(4841), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5017), 3, + ACTIONS(5113), 3, anon_sym__, sym_true, sym_false, - STATE(4351), 10, + STATE(4526), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226336,48 +231523,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [125873] = 19, - ACTIONS(1396), 1, + [129129] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5059), 1, + ACTIONS(5149), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4553), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226388,101 +231575,101 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [125944] = 20, - ACTIONS(3942), 1, + [129200] = 20, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4853), 1, + ACTIONS(4949), 1, anon_sym_LPAREN, - ACTIONS(4855), 1, + ACTIONS(4951), 1, anon_sym_STAR, - ACTIONS(4859), 1, + ACTIONS(4955), 1, anon_sym_STAR_STAR, - ACTIONS(4861), 1, + ACTIONS(4957), 1, anon_sym_SLASH, - ACTIONS(5061), 1, + ACTIONS(5151), 1, sym_identifier, - ACTIONS(5063), 1, + ACTIONS(5153), 1, anon_sym_COLON, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4157), 1, + STATE(4311), 1, sym_c_type, - STATE(4942), 1, + STATE(5204), 1, sym_tuple_pattern, - STATE(5394), 1, + STATE(5230), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4863), 2, + ACTIONS(4959), 2, anon_sym_const, anon_sym_volatile, - STATE(3649), 2, + STATE(3743), 2, sym_int_type, sym_function_pointer_type, - STATE(5391), 2, + STATE(5257), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5335), 5, + STATE(5250), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [126017] = 19, - ACTIONS(1396), 1, + [129273] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5065), 1, + ACTIONS(5155), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4619), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226493,48 +231680,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126088] = 19, - ACTIONS(1396), 1, + [129344] = 19, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5099), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5119), 1, sym_float, - ACTIONS(5067), 1, - anon_sym_RPAREN, - STATE(4043), 1, + ACTIONS(5157), 1, + anon_sym_RBRACK, + STATE(4156), 1, sym_string, - STATE(4375), 1, + STATE(4504), 1, sym_dotted_name, - STATE(5161), 1, + STATE(5120), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4841), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5113), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4526), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226545,100 +231732,101 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126159] = 19, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2503), 1, - sym_string_start, - ACTIONS(5003), 1, + [129415] = 20, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(5005), 1, - anon_sym_LPAREN, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5011), 1, - anon_sym_LBRACK, - ACTIONS(5015), 1, - anon_sym_DASH, - ACTIONS(5019), 1, - anon_sym_LBRACE, - ACTIONS(5021), 1, - sym_integer, - ACTIONS(5023), 1, - sym_float, - ACTIONS(5069), 1, - anon_sym_RBRACK, - STATE(4112), 1, - sym_string, - STATE(4388), 1, - sym_dotted_name, - STATE(4841), 1, - sym_case_pattern, + ACTIONS(5159), 1, + anon_sym_COLON, + ACTIONS(5161), 1, + anon_sym_namespace, + ACTIONS(5163), 1, + anon_sym_nogil, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3873), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5017), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4351), 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, - [126230] = 19, - ACTIONS(2495), 1, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4032), 2, + anon_sym_const, + anon_sym_volatile, + STATE(675), 2, + sym_class_definition, + sym_cvar_def, + STATE(3140), 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, + [129488] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(2503), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5003), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5005), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5007), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5011), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5019), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5023), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5071), 1, - anon_sym_RBRACK, - STATE(4112), 1, + ACTIONS(5165), 1, + anon_sym_RPAREN, + STATE(4107), 1, sym_string, - STATE(4388), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4572), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5017), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4351), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226649,48 +231837,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126301] = 19, - ACTIONS(1396), 1, + [129559] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5073), 1, + ACTIONS(5167), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4517), 1, + STATE(4546), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226701,48 +231889,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126372] = 19, - ACTIONS(1396), 1, + [129630] = 19, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5099), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5119), 1, sym_float, - ACTIONS(5075), 1, - anon_sym_RPAREN, - STATE(4043), 1, + ACTIONS(5169), 1, + anon_sym_RBRACK, + STATE(4156), 1, sym_string, - STATE(4375), 1, + STATE(4504), 1, sym_dotted_name, - STATE(5161), 1, + STATE(4548), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4841), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5113), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4526), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226753,101 +231941,101 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126443] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(371), 1, + [129701] = 20, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4110), 1, - sym_identifier, - ACTIONS(5077), 1, - anon_sym_COLON, - ACTIONS(5079), 1, - anon_sym_namespace, ACTIONS(5081), 1, - anon_sym_nogil, - STATE(3133), 1, + sym_identifier, + ACTIONS(5083), 1, + anon_sym_LPAREN, + ACTIONS(5087), 1, + anon_sym_STAR, + ACTIONS(5089), 1, + anon_sym_STAR_STAR, + ACTIONS(5091), 1, + anon_sym_SLASH, + ACTIONS(5153), 1, + anon_sym_RPAREN, + STATE(3273), 1, sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, + STATE(3482), 1, sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3821), 1, - sym_maybe_typed_name, + STATE(4316), 1, + sym_c_type, + STATE(4934), 1, + sym_tuple_pattern, + STATE(5357), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4959), 2, anon_sym_const, anon_sym_volatile, - STATE(1273), 2, - sym_class_definition, - sym_cvar_def, - STATE(3078), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(4907), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 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, - [126516] = 19, - ACTIONS(1396), 1, + STATE(5327), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [129774] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5083), 1, + ACTIONS(5171), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(5161), 1, + STATE(4600), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226858,100 +232046,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126587] = 19, - ACTIONS(1396), 1, + [129845] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5085), 1, + ACTIONS(5173), 1, anon_sym_RPAREN, - STATE(4043), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(5161), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5000), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5049), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4378), 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, - [126658] = 19, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2503), 1, - sym_string_start, - ACTIONS(5003), 1, - sym_identifier, - ACTIONS(5005), 1, - anon_sym_LPAREN, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5011), 1, - anon_sym_LBRACK, - ACTIONS(5015), 1, - anon_sym_DASH, - ACTIONS(5019), 1, - anon_sym_LBRACE, - ACTIONS(5021), 1, - sym_integer, - ACTIONS(5023), 1, - sym_float, - ACTIONS(5087), 1, - anon_sym_RBRACK, - STATE(4112), 1, + STATE(4107), 1, sym_string, - STATE(4388), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4841), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5017), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4351), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -226962,48 +232098,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126729] = 19, - ACTIONS(1396), 1, + [129916] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5089), 1, + ACTIONS(5175), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(5161), 1, + STATE(4671), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227014,48 +232150,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126800] = 19, - ACTIONS(1396), 1, + [129987] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5091), 1, + ACTIONS(5177), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4579), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227066,101 +232202,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [126871] = 20, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4110), 1, - sym_identifier, - ACTIONS(4112), 1, - anon_sym_class, - ACTIONS(5093), 1, - anon_sym_COLON, - ACTIONS(5095), 1, - anon_sym_namespace, - ACTIONS(5097), 1, - anon_sym_nogil, - STATE(3133), 1, - sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3803), 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(3984), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2957), 2, - sym_class_definition, - sym_cvar_def, - STATE(3080), 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, - [126944] = 19, - ACTIONS(1396), 1, + [130058] = 19, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5099), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5119), 1, sym_float, - ACTIONS(5099), 1, - anon_sym_RPAREN, - STATE(4043), 1, + ACTIONS(5179), 1, + anon_sym_RBRACK, + STATE(4156), 1, sym_string, - STATE(4375), 1, + STATE(4504), 1, sym_dotted_name, - STATE(5161), 1, + STATE(5120), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4841), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5113), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4526), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227171,48 +232254,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127015] = 19, - ACTIONS(2495), 1, + [130129] = 19, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5003), 1, + ACTIONS(5099), 1, sym_identifier, - ACTIONS(5005), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5007), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5011), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5019), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5023), 1, + ACTIONS(5119), 1, sym_float, - ACTIONS(5101), 1, + ACTIONS(5181), 1, anon_sym_RBRACK, - STATE(4112), 1, + STATE(4156), 1, sym_string, - STATE(4388), 1, + STATE(4504), 1, sym_dotted_name, - STATE(4841), 1, + STATE(4674), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, + STATE(4841), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5017), 3, + ACTIONS(5113), 3, anon_sym__, sym_true, sym_false, - STATE(4351), 10, + STATE(4526), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227223,101 +232306,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127086] = 20, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4978), 1, - sym_identifier, - ACTIONS(4980), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_STAR, - ACTIONS(4986), 1, - anon_sym_STAR_STAR, - ACTIONS(4988), 1, - anon_sym_SLASH, - ACTIONS(5063), 1, - anon_sym_RPAREN, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4167), 1, - sym_c_type, - STATE(4850), 1, - sym_tuple_pattern, - STATE(5232), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(4800), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5383), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127159] = 19, - ACTIONS(1396), 1, + [130200] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5103), 1, + ACTIONS(5183), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4486), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227328,48 +232358,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127230] = 19, - ACTIONS(1396), 1, + [130271] = 19, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5099), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5119), 1, sym_float, - ACTIONS(5105), 1, - anon_sym_RPAREN, - STATE(4043), 1, + ACTIONS(5185), 1, + anon_sym_RBRACK, + STATE(4156), 1, sym_string, - STATE(4375), 1, + STATE(4504), 1, sym_dotted_name, - STATE(4589), 1, + STATE(5120), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4841), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5113), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4526), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227380,48 +232410,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127301] = 19, - ACTIONS(2495), 1, + [130342] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(2503), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5003), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5005), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5007), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5011), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5019), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5023), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5107), 1, - anon_sym_RBRACK, - STATE(4112), 1, + ACTIONS(5187), 1, + anon_sym_RPAREN, + STATE(4107), 1, sym_string, - STATE(4388), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4593), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5017), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4351), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227432,48 +232462,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127372] = 19, - ACTIONS(1396), 1, + [130413] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5109), 1, + ACTIONS(5189), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4602), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227484,48 +232514,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127443] = 19, - ACTIONS(1396), 1, + [130484] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5111), 1, + ACTIONS(5191), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(5161), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227536,48 +232566,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127514] = 19, - ACTIONS(2495), 1, + [130555] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(2503), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5003), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5005), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5007), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5011), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5019), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5023), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5113), 1, - anon_sym_RBRACK, - STATE(4112), 1, + ACTIONS(5193), 1, + anon_sym_RPAREN, + STATE(4107), 1, sym_string, - STATE(4388), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4841), 1, + STATE(4573), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5017), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4351), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227588,48 +232618,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127585] = 19, - ACTIONS(1396), 1, + [130626] = 19, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5099), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5119), 1, sym_float, - ACTIONS(5115), 1, - anon_sym_RPAREN, - STATE(4043), 1, + ACTIONS(5195), 1, + anon_sym_RBRACK, + STATE(4156), 1, sym_string, - STATE(4375), 1, + STATE(4504), 1, sym_dotted_name, - STATE(5161), 1, + STATE(4574), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4841), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5113), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4526), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227640,48 +232670,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127656] = 19, - ACTIONS(1396), 1, + [130697] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5117), 1, + ACTIONS(5197), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(5161), 1, + STATE(4580), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227692,48 +232722,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127727] = 19, - ACTIONS(1396), 1, + [130768] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5119), 1, + ACTIONS(5199), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(5161), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227744,48 +232774,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127798] = 19, - ACTIONS(2495), 1, + [130839] = 19, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2503), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5003), 1, + ACTIONS(5099), 1, sym_identifier, - ACTIONS(5005), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5007), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5011), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5019), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5023), 1, + ACTIONS(5119), 1, sym_float, - ACTIONS(5121), 1, + ACTIONS(5201), 1, anon_sym_RBRACK, - STATE(4112), 1, + STATE(4156), 1, sym_string, - STATE(4388), 1, + STATE(4504), 1, sym_dotted_name, - STATE(4841), 1, + STATE(5120), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, + STATE(4841), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5017), 3, + ACTIONS(5113), 3, anon_sym__, sym_true, sym_false, - STATE(4351), 10, + STATE(4526), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227796,101 +232826,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [127869] = 20, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(5027), 1, - anon_sym_COLON, - ACTIONS(5061), 1, - sym_identifier, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(4942), 1, - sym_tuple_pattern, - STATE(5394), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127942] = 19, - ACTIONS(2495), 1, + [130910] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(2503), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5003), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5005), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5007), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5011), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5019), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5023), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5123), 1, - anon_sym_RBRACK, - STATE(4112), 1, + ACTIONS(5203), 1, + anon_sym_RPAREN, + STATE(4107), 1, sym_string, - STATE(4388), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4841), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5017), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4351), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227901,48 +232878,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128013] = 19, - ACTIONS(1396), 1, + [130981] = 19, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5099), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5119), 1, sym_float, - ACTIONS(5125), 1, - anon_sym_RPAREN, - STATE(4043), 1, + ACTIONS(5205), 1, + anon_sym_RBRACK, + STATE(4156), 1, sym_string, - STATE(4375), 1, + STATE(4504), 1, sym_dotted_name, - STATE(5161), 1, + STATE(5120), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4841), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5113), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4526), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -227953,48 +232930,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128084] = 19, - ACTIONS(2495), 1, + [131052] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(2503), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5003), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5005), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5007), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5011), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5019), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5023), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5127), 1, - anon_sym_RBRACK, - STATE(4112), 1, + ACTIONS(5207), 1, + anon_sym_RPAREN, + STATE(4107), 1, sym_string, - STATE(4388), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4841), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5017), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4351), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -228005,48 +232982,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128155] = 19, - ACTIONS(1396), 1, + [131123] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5129), 1, + ACTIONS(5209), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(5161), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -228057,48 +233034,101 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128226] = 19, - ACTIONS(1396), 1, + [131194] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5213), 1, + anon_sym_namespace, + ACTIONS(5215), 1, + anon_sym_nogil, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3929), 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(4032), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1327), 2, + sym_class_definition, + sym_cvar_def, + STATE(3142), 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, + [131267] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5131), 1, + ACTIONS(5217), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(4625), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -228109,48 +233139,207 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128297] = 19, - ACTIONS(1396), 1, + [131338] = 20, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5081), 1, + sym_identifier, + ACTIONS(5083), 1, + anon_sym_LPAREN, + ACTIONS(5087), 1, + anon_sym_STAR, + ACTIONS(5089), 1, + anon_sym_STAR_STAR, + ACTIONS(5091), 1, + anon_sym_SLASH, + ACTIONS(5219), 1, + anon_sym_RPAREN, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4316), 1, + sym_c_type, + STATE(4934), 1, + sym_tuple_pattern, + STATE(5357), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(4907), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5327), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [131411] = 20, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(4208), 1, + anon_sym_class, + ACTIONS(5221), 1, + anon_sym_COLON, + ACTIONS(5223), 1, + anon_sym_namespace, + ACTIONS(5225), 1, + anon_sym_nogil, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3905), 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(4032), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3005), 2, + sym_class_definition, + sym_cvar_def, + STATE(3135), 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, + [131484] = 20, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4949), 1, + anon_sym_LPAREN, + ACTIONS(4951), 1, + anon_sym_STAR, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(4957), 1, + anon_sym_SLASH, + ACTIONS(5151), 1, + sym_identifier, + ACTIONS(5219), 1, + anon_sym_COLON, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4311), 1, + sym_c_type, + STATE(5204), 1, + sym_tuple_pattern, + STATE(5230), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4959), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5257), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5250), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [131557] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5133), 1, + ACTIONS(5227), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(5161), 1, + STATE(4708), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -228161,48 +233350,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128368] = 19, - ACTIONS(1396), 1, + [131628] = 19, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5099), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5119), 1, sym_float, - ACTIONS(5135), 1, - anon_sym_RPAREN, - STATE(4043), 1, + ACTIONS(5229), 1, + anon_sym_RBRACK, + STATE(4156), 1, sym_string, - STATE(4375), 1, + STATE(4504), 1, sym_dotted_name, - STATE(5161), 1, + STATE(4710), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4841), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5113), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4526), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -228213,48 +233402,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128439] = 19, - ACTIONS(1396), 1, + [131699] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5035), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5141), 1, sym_float, - ACTIONS(5137), 1, + ACTIONS(5231), 1, anon_sym_RPAREN, - STATE(4043), 1, + STATE(4107), 1, sym_string, - STATE(4375), 1, + STATE(4538), 1, sym_dotted_name, - STATE(5161), 1, + STATE(4572), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5000), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5049), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4378), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -228265,46 +233454,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128510] = 18, - ACTIONS(2025), 1, + [131770] = 19, + ACTIONS(1428), 1, anon_sym_None, - ACTIONS(2033), 1, + ACTIONS(1440), 1, sym_string_start, - ACTIONS(5139), 1, + ACTIONS(5121), 1, sym_identifier, - ACTIONS(5141), 1, + ACTIONS(5123), 1, anon_sym_LPAREN, - ACTIONS(5143), 1, + ACTIONS(5127), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5129), 1, anon_sym_STAR_STAR, - ACTIONS(5147), 1, + ACTIONS(5131), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(5153), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(5155), 1, + ACTIONS(5139), 1, sym_integer, - ACTIONS(5157), 1, + ACTIONS(5141), 1, sym_float, - STATE(4005), 1, + ACTIONS(5233), 1, + anon_sym_RPAREN, + STATE(4107), 1, sym_string, - STATE(4453), 1, + STATE(4538), 1, sym_dotted_name, - STATE(5153), 1, + STATE(4889), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4794), 2, + STATE(4892), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5151), 3, + ACTIONS(5135), 3, anon_sym__, sym_true, sym_false, - STATE(4454), 10, + STATE(4381), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -228315,28 +233506,63 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128578] = 19, - ACTIONS(59), 1, + [131841] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1516), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1514), 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, + [131879] = 19, + ACTIONS(125), 1, anon_sym_class, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(5159), 1, + ACTIONS(5235), 1, + anon_sym_from, + ACTIONS(5237), 1, anon_sym_COLON, - ACTIONS(5161), 1, - anon_sym_nogil, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3821), 1, + STATE(3873), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -228347,13 +233573,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(1182), 2, + STATE(664), 2, sym_class_definition, sym_cvar_def, - STATE(3078), 2, + STATE(3140), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -228366,79 +233592,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [128648] = 19, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4978), 1, + [131949] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1528), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1526), 26, + anon_sym_case, + anon_sym_class, sym_identifier, - ACTIONS(4980), 1, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + 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, + [131987] = 19, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4949), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(4951), 1, anon_sym_STAR, - ACTIONS(4986), 1, + ACTIONS(4955), 1, anon_sym_STAR_STAR, - ACTIONS(4988), 1, + ACTIONS(4957), 1, anon_sym_SLASH, - STATE(3235), 1, + ACTIONS(5151), 1, + sym_identifier, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4167), 1, + STATE(4311), 1, sym_c_type, - STATE(4850), 1, + STATE(5204), 1, sym_tuple_pattern, - STATE(5232), 1, + STATE(5230), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4863), 2, + ACTIONS(4959), 2, anon_sym_const, anon_sym_volatile, - STATE(3649), 2, + STATE(3743), 2, sym_int_type, sym_function_pointer_type, - STATE(4800), 2, + STATE(5257), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5383), 5, + STATE(5250), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [128718] = 19, + [132057] = 18, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(5121), 1, + sym_identifier, + ACTIONS(5123), 1, + anon_sym_LPAREN, + ACTIONS(5127), 1, + anon_sym_STAR, + ACTIONS(5129), 1, + anon_sym_STAR_STAR, + ACTIONS(5131), 1, + anon_sym_LBRACK, + ACTIONS(5133), 1, + anon_sym_DASH, + ACTIONS(5137), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + sym_integer, + ACTIONS(5141), 1, + sym_float, + STATE(4107), 1, + sym_string, + STATE(4538), 1, + sym_dotted_name, + STATE(4889), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4892), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5135), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4381), 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, + [132125] = 19, ACTIONS(59), 1, anon_sym_class, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(5163), 1, - anon_sym_from, - ACTIONS(5165), 1, + ACTIONS(5239), 1, anon_sym_COLON, - STATE(3133), 1, + ACTIONS(5241), 1, + anon_sym_nogil, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3821), 1, + STATE(3929), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -228449,13 +233760,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(1312), 2, + STATE(1295), 2, sym_class_definition, sym_cvar_def, - STATE(3078), 2, + STATE(3142), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -228468,15 +233779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [128788] = 3, + [132195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1484), 3, + ACTIONS(1520), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1482), 26, + ACTIONS(1518), 26, anon_sym_case, anon_sym_class, sym_identifier, @@ -228503,97 +233814,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [128826] = 18, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3932), 1, - anon_sym_pass, - ACTIONS(3942), 1, + [132233] = 19, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(5167), 1, - sym__dedent, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3491), 1, - sym_c_type, - STATE(5608), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2941), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3092), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 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, - [128894] = 18, - ACTIONS(3928), 1, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4810), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(4814), 1, - anon_sym_enum, - ACTIONS(5169), 1, - anon_sym_ctypedef, - STATE(3235), 1, + ACTIONS(5243), 1, + anon_sym_from, + ACTIONS(5245), 1, + anon_sym_COLON, + STATE(3210), 1, sym__signedness, - STATE(3423), 1, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, sym__longness, - STATE(3456), 1, - sym_c_type, + STATE(3623), 1, + sym_operator_name, + STATE(3905), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3944), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4812), 2, - anon_sym_struct, - anon_sym_union, - STATE(2736), 2, + STATE(3080), 2, + sym_class_definition, + sym_cvar_def, + STATE(3135), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -228603,15 +233865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [128962] = 3, + [132303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1480), 3, + ACTIONS(1512), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1478), 26, + ACTIONS(1510), 26, anon_sym_case, anon_sym_class, sym_identifier, @@ -228638,81 +233900,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129000] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3697), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(5171), 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_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, - [129038] = 18, - ACTIONS(2495), 1, + [132341] = 18, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(2503), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(5003), 1, + ACTIONS(4923), 1, sym_identifier, - ACTIONS(5005), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(5007), 1, + ACTIONS(4927), 1, anon_sym_STAR, - ACTIONS(5009), 1, + ACTIONS(4933), 1, anon_sym_STAR_STAR, - ACTIONS(5011), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, + ACTIONS(4937), 1, anon_sym_DASH, - ACTIONS(5019), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(5021), 1, + ACTIONS(4943), 1, sym_integer, - ACTIONS(5023), 1, + ACTIONS(4945), 1, sym_float, - STATE(4112), 1, + STATE(3940), 1, sym_string, - STATE(4388), 1, + STATE(4265), 1, sym_dotted_name, - STATE(4841), 1, + STATE(4636), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5127), 2, + STATE(4651), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5017), 3, + ACTIONS(4939), 3, anon_sym__, sym_true, sym_false, - STATE(4351), 10, + STATE(4270), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -228723,47 +233950,47 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129106] = 18, - ACTIONS(3928), 1, + [132409] = 18, + ACTIONS(4100), 1, sym_identifier, - ACTIONS(3930), 1, + ACTIONS(4102), 1, anon_sym_LPAREN, - ACTIONS(3932), 1, + ACTIONS(4104), 1, anon_sym_pass, - ACTIONS(3942), 1, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5173), 1, + ACTIONS(5247), 1, sym__dedent, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(3491), 1, + STATE(3517), 1, sym_c_type, - STATE(5660), 1, + STATE(5732), 1, sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(3944), 2, + ACTIONS(4116), 2, anon_sym_const, anon_sym_volatile, - STATE(2929), 2, + STATE(3034), 2, sym_cvar_decl, aux_sym_struct_suite_repeat1, - STATE(3092), 2, + STATE(3151), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3716), 2, + STATE(3698), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -228773,66 +234000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129174] = 19, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4853), 1, - anon_sym_LPAREN, - ACTIONS(4855), 1, - anon_sym_STAR, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(4861), 1, - anon_sym_SLASH, - ACTIONS(5061), 1, - sym_identifier, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(4157), 1, - sym_c_type, - STATE(4942), 1, - sym_tuple_pattern, - STATE(5394), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4863), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3649), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5391), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5335), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [129244] = 3, + [132477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1496), 3, + ACTIONS(1524), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1494), 26, + ACTIONS(1522), 26, anon_sym_case, anon_sym_class, sym_identifier, @@ -228859,48 +234035,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129282] = 19, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4110), 1, + [132515] = 18, + ACTIONS(4100), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4903), 1, anon_sym_class, - ACTIONS(5175), 1, - anon_sym_from, - ACTIONS(5177), 1, - anon_sym_COLON, - STATE(3133), 1, + ACTIONS(4907), 1, + anon_sym_enum, + ACTIONS(5249), 1, + anon_sym_ctypedef, + STATE(3273), 1, sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, + STATE(3482), 1, sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3803), 1, - sym_maybe_typed_name, + STATE(3516), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4116), 2, anon_sym_const, anon_sym_volatile, - STATE(2984), 2, - sym_class_definition, - sym_cvar_def, - STATE(3080), 2, + ACTIONS(4905), 2, + anon_sym_struct, + anon_sym_union, + STATE(2789), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -228910,113 +234085,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129352] = 3, + [132583] = 18, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4104), 1, + anon_sym_pass, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5251), 1, + sym__dedent, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3517), 1, + sym_c_type, + STATE(5527), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - 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, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4116), 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(3082), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3151), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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, - [129390] = 18, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4827), 1, + [132651] = 18, + ACTIONS(4100), 1, sym_identifier, - ACTIONS(4829), 1, + ACTIONS(4102), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_STAR, - ACTIONS(4837), 1, - anon_sym_STAR_STAR, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4552), 1, - sym_case_pattern, + ACTIONS(4104), 1, + anon_sym_pass, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5253), 1, + sym__dedent, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3517), 1, + sym_c_type, + STATE(5714), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4611), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4843), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4189), 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, - [129458] = 19, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3112), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3151), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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, + [132719] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(5179), 1, + ACTIONS(5255), 1, anon_sym_class, - ACTIONS(5181), 1, + ACTIONS(5257), 1, anon_sym_ctypedef, - ACTIONS(5185), 1, + ACTIONS(5261), 1, anon_sym_enum, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3841), 1, + STATE(3868), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -229027,13 +234217,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(5183), 2, + ACTIONS(5259), 2, anon_sym_struct, anon_sym_union, - STATE(2736), 2, + STATE(2789), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -229046,78 +234236,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129528] = 18, - ACTIONS(1396), 1, - anon_sym_None, - ACTIONS(1408), 1, - sym_string_start, - ACTIONS(5035), 1, - sym_identifier, - ACTIONS(5037), 1, - anon_sym_LPAREN, - ACTIONS(5041), 1, - anon_sym_STAR, - ACTIONS(5043), 1, - anon_sym_STAR_STAR, - ACTIONS(5045), 1, - anon_sym_LBRACK, - ACTIONS(5047), 1, - anon_sym_DASH, - ACTIONS(5051), 1, - anon_sym_LBRACE, - ACTIONS(5053), 1, - sym_integer, - ACTIONS(5055), 1, - sym_float, - STATE(4043), 1, - sym_string, - STATE(4375), 1, - sym_dotted_name, - STATE(5161), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5000), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5049), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4378), 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, - [129596] = 19, - ACTIONS(125), 1, + [132789] = 19, + ACTIONS(59), 1, anon_sym_class, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(5187), 1, + ACTIONS(5263), 1, anon_sym_from, - ACTIONS(5189), 1, + ACTIONS(5265), 1, anon_sym_COLON, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3806), 1, + STATE(3929), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -229128,13 +234268,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(645), 2, + STATE(1206), 2, sym_class_definition, sym_cvar_def, - STATE(3079), 2, + STATE(3142), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -229147,81 +234287,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129666] = 3, + [132859] = 19, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5081), 1, + sym_identifier, + ACTIONS(5083), 1, + anon_sym_LPAREN, + ACTIONS(5087), 1, + anon_sym_STAR, + ACTIONS(5089), 1, + anon_sym_STAR_STAR, + ACTIONS(5091), 1, + anon_sym_SLASH, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4316), 1, + sym_c_type, + STATE(4934), 1, + sym_tuple_pattern, + STATE(5357), 1, + sym_parameter, 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, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4959), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [129704] = 18, - ACTIONS(1235), 1, + STATE(3743), 2, + sym_int_type, + sym_function_pointer_type, + STATE(4907), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5327), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [132929] = 18, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(4827), 1, + ACTIONS(4923), 1, sym_identifier, - ACTIONS(4829), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4927), 1, anon_sym_STAR, - ACTIONS(4837), 1, + ACTIONS(4933), 1, anon_sym_STAR_STAR, - ACTIONS(4839), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + ACTIONS(4937), 1, anon_sym_DASH, - ACTIONS(4845), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, + ACTIONS(4943), 1, sym_integer, - ACTIONS(4849), 1, + ACTIONS(4945), 1, sym_float, - STATE(3895), 1, + STATE(3940), 1, sym_string, - STATE(4187), 1, + STATE(4265), 1, sym_dotted_name, - STATE(4188), 1, + STATE(4266), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4611), 2, + STATE(4651), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4843), 3, + ACTIONS(4939), 3, anon_sym__, sym_true, sym_false, - STATE(4189), 10, + STATE(4270), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -229232,47 +234388,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129772] = 18, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3932), 1, - anon_sym_pass, - ACTIONS(3942), 1, + [132997] = 19, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(5191), 1, - sym__dedent, - STATE(3235), 1, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(5267), 1, + anon_sym_COLON, + ACTIONS(5269), 1, + anon_sym_nogil, + STATE(3210), 1, sym__signedness, - STATE(3423), 1, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, sym__longness, - STATE(3491), 1, - sym_c_type, - STATE(5692), 1, - sym_pass_statement, + STATE(3623), 1, + sym_operator_name, + STATE(3873), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(367), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3944), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(2935), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3092), 2, + STATE(697), 2, + sym_class_definition, + sym_cvar_def, + STATE(3140), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -229282,28 +234439,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129840] = 19, + [133067] = 19, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4112), 1, + ACTIONS(4208), 1, anon_sym_class, - ACTIONS(5193), 1, + ACTIONS(5271), 1, anon_sym_COLON, - ACTIONS(5195), 1, + ACTIONS(5273), 1, anon_sym_nogil, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3803), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -229314,13 +234471,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(3052), 2, + STATE(3051), 2, sym_class_definition, sym_cvar_def, - STATE(3080), 2, + STATE(3135), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -229333,96 +234490,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129910] = 19, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4110), 1, + [133137] = 18, + ACTIONS(1991), 1, + anon_sym_None, + ACTIONS(1999), 1, + sym_string_start, + ACTIONS(5275), 1, sym_identifier, - ACTIONS(5197), 1, - anon_sym_COLON, - ACTIONS(5199), 1, - anon_sym_nogil, - STATE(3133), 1, - sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3806), 1, - sym_maybe_typed_name, + ACTIONS(5277), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5283), 1, + anon_sym_LBRACK, + ACTIONS(5285), 1, + anon_sym_DASH, + ACTIONS(5289), 1, + anon_sym_LBRACE, + ACTIONS(5291), 1, + sym_integer, + ACTIONS(5293), 1, + sym_float, + STATE(4124), 1, + sym_string, + STATE(4500), 1, + sym_dotted_name, + STATE(5216), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + STATE(5141), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5287), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4501), 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, + [133205] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3793), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(5295), 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_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(3984), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(677), 2, - sym_class_definition, - sym_cvar_def, - STATE(3079), 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_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129980] = 17, - ACTIONS(3928), 1, + [133243] = 18, + ACTIONS(2527), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(5099), 1, + sym_identifier, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_STAR, + ACTIONS(5105), 1, + anon_sym_STAR_STAR, + ACTIONS(5107), 1, + anon_sym_LBRACK, + ACTIONS(5111), 1, + anon_sym_DASH, + ACTIONS(5115), 1, + anon_sym_LBRACE, + ACTIONS(5117), 1, + sym_integer, + ACTIONS(5119), 1, + sym_float, + STATE(4156), 1, + sym_string, + STATE(4504), 1, + sym_dotted_name, + STATE(5120), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4841), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5113), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4526), 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, + [133311] = 17, + ACTIONS(4100), 1, sym_identifier, - ACTIONS(3930), 1, + ACTIONS(4102), 1, anon_sym_LPAREN, - ACTIONS(3942), 1, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5179), 1, + ACTIONS(4903), 1, anon_sym_class, - ACTIONS(5185), 1, + ACTIONS(4907), 1, anon_sym_enum, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(3472), 1, + STATE(3516), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(3944), 2, + ACTIONS(4116), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(5183), 2, + ACTIONS(4905), 2, anon_sym_struct, anon_sym_union, - STATE(2736), 2, + STATE(2789), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3716), 2, + STATE(3698), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -229432,15 +234673,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130045] = 3, + [133376] = 4, + ACTIONS(5297), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1945), 3, + ACTIONS(1565), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1943), 25, + ACTIONS(1563), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229466,15 +234708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130082] = 3, + [133415] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, + ACTIONS(1767), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1903), 25, + ACTIONS(1765), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229500,15 +234742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130119] = 3, + [133452] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1737), 3, + ACTIONS(1771), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1735), 25, + ACTIONS(1769), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229534,23 +234776,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130156] = 3, + [133489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4446), 3, + ACTIONS(1775), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4448), 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, @@ -229568,15 +234810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130193] = 3, + [133526] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1985), 3, + ACTIONS(1779), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1983), 25, + ACTIONS(1777), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229602,15 +234844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130230] = 3, + [133563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1989), 3, + ACTIONS(1783), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1987), 25, + ACTIONS(1781), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229636,15 +234878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130267] = 3, + [133600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1993), 3, + ACTIONS(1787), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1991), 25, + ACTIONS(1785), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229670,65 +234912,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130304] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, + [133637] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1767), 3, + sym__dedent, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5143), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - anon_sym_STAR_STAR, - ACTIONS(5201), 1, + ACTIONS(1765), 25, + anon_sym_class, sym_identifier, - ACTIONS(5205), 1, - anon_sym_RBRACE, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4466), 1, - sym_splat_pattern, - STATE(4652), 1, - sym__key_value_pattern, + 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, + [133674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4980), 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, - [130373] = 3, + ACTIONS(1791), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1789), 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, + [133711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1997), 3, + ACTIONS(1775), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1995), 25, + ACTIONS(1773), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229754,15 +235014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130410] = 3, + [133748] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2001), 3, + ACTIONS(1795), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1999), 25, + ACTIONS(1793), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229788,15 +235048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130447] = 3, + [133785] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2005), 3, + ACTIONS(1767), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2003), 25, + ACTIONS(1765), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229822,15 +235082,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130484] = 3, + [133822] = 4, + ACTIONS(5299), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1741), 3, + ACTIONS(1577), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1739), 25, + ACTIONS(1575), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229856,15 +235117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130521] = 3, + [133861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2037), 3, + ACTIONS(1847), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2035), 25, + ACTIONS(1845), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229890,15 +235151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130558] = 3, + [133898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2041), 3, + ACTIONS(1851), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2039), 25, + ACTIONS(1849), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229924,15 +235185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130595] = 3, + [133935] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2045), 3, + ACTIONS(1855), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2043), 25, + ACTIONS(1853), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229958,15 +235219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130632] = 3, + [133972] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1745), 3, + ACTIONS(1859), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1743), 25, + ACTIONS(1857), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -229992,15 +235253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130669] = 3, + [134009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2049), 3, + ACTIONS(1863), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2047), 25, + ACTIONS(1861), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230026,65 +235287,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130706] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, + [134046] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1867), 3, + sym__dedent, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5143), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - anon_sym_STAR_STAR, - ACTIONS(5201), 1, + ACTIONS(1865), 25, + anon_sym_class, sym_identifier, - ACTIONS(5207), 1, - anon_sym_RBRACE, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4583), 1, - sym_splat_pattern, - STATE(5219), 1, - sym__key_value_pattern, + 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, + [134083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4980), 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, - [130775] = 3, + ACTIONS(1871), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1869), 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, + [134120] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1749), 3, + ACTIONS(1875), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1747), 25, + ACTIONS(1873), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230110,63 +235389,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130812] = 17, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, + [134157] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1847), 3, + sym__dedent, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4810), 1, + ACTIONS(1845), 25, anon_sym_class, - ACTIONS(4814), 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, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3456), 1, - sym_c_type, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [134194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(1879), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1877), 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(3940), 2, anon_sym_char, anon_sym_short, - ACTIONS(3944), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - ACTIONS(4812), 2, + anon_sym_ctypedef, anon_sym_struct, anon_sym_union, - STATE(2736), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 3, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [134231] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1883), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1881), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, - anon_sym_api, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130877] = 3, + [134268] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2081), 3, + ACTIONS(1855), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2079), 25, + ACTIONS(1853), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230192,15 +235525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130914] = 3, + [134305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2085), 3, + ACTIONS(1887), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2083), 25, + ACTIONS(1885), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230226,15 +235559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130951] = 3, + [134342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2089), 3, + ACTIONS(1863), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2087), 25, + ACTIONS(1861), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230260,15 +235593,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [130988] = 3, + [134379] = 4, + ACTIONS(5301), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2093), 3, + ACTIONS(1571), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2091), 25, + ACTIONS(1569), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230294,15 +235628,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131025] = 3, + [134418] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2097), 3, + ACTIONS(1939), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2095), 25, + ACTIONS(1937), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230328,15 +235662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131062] = 3, + [134455] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1729), 3, + ACTIONS(1943), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1727), 25, + ACTIONS(1941), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230362,65 +235696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131099] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5143), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - anon_sym_STAR_STAR, - ACTIONS(5201), 1, - sym_identifier, - ACTIONS(5209), 1, - anon_sym_RBRACE, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4452), 1, - sym_splat_pattern, - STATE(4654), 1, - sym__key_value_pattern, + [134492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4980), 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] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2117), 3, + ACTIONS(1947), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2115), 25, + ACTIONS(1945), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230446,65 +235730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131205] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5143), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - anon_sym_STAR_STAR, - ACTIONS(5201), 1, - sym_identifier, - ACTIONS(5211), 1, - anon_sym_RBRACE, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4583), 1, - sym_splat_pattern, - STATE(5219), 1, - sym__key_value_pattern, + [134529] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4980), 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, - [131274] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1753), 3, + ACTIONS(1951), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1751), 25, + ACTIONS(1949), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230530,15 +235764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131311] = 3, + [134566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2369), 3, + ACTIONS(1955), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2367), 25, + ACTIONS(1953), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230564,15 +235798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131348] = 3, + [134603] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2241), 3, + ACTIONS(1959), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2239), 25, + ACTIONS(1957), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230598,15 +235832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131385] = 3, + [134640] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1737), 3, + ACTIONS(1963), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1735), 25, + ACTIONS(1961), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230632,15 +235866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131422] = 3, + [134677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 3, + ACTIONS(1967), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1581), 25, + ACTIONS(1965), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230666,16 +235900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131459] = 4, - ACTIONS(5213), 1, - anon_sym_COLON, + [134714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1507), 2, + ACTIONS(1971), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1505), 25, + anon_sym_LPAREN, + ACTIONS(1969), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230701,15 +235934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131498] = 3, + [134751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 3, + ACTIONS(2003), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1679), 25, + ACTIONS(2001), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230735,15 +235968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131535] = 3, + [134788] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1757), 3, + ACTIONS(2007), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1755), 25, + ACTIONS(2005), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230769,15 +236002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131572] = 3, + [134825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1729), 3, + ACTIONS(2011), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1727), 25, + ACTIONS(2009), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230803,16 +236036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131609] = 4, - ACTIONS(5215), 1, - anon_sym_COLON, + [134862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1519), 2, + ACTIONS(1943), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1517), 25, + anon_sym_LPAREN, + ACTIONS(1941), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230838,65 +236070,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131648] = 18, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4110), 1, - sym_identifier, - ACTIONS(5217), 1, - anon_sym_COLON, - STATE(3133), 1, - sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3821), 1, - sym_maybe_typed_name, + [134899] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(4542), 3, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(4544), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_int, + anon_sym_double, + anon_sym_complex, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(1248), 2, - sym_class_definition, - sym_cvar_def, - STATE(3078), 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, - [131715] = 4, - ACTIONS(5219), 1, - anon_sym_COLON, + [134936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1525), 2, + ACTIONS(2051), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1523), 25, + anon_sym_LPAREN, + ACTIONS(2049), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -230922,65 +236138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131754] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5143), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - anon_sym_STAR_STAR, - ACTIONS(5201), 1, - sym_identifier, - ACTIONS(5221), 1, - anon_sym_RBRACE, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4583), 1, - sym_splat_pattern, - STATE(5219), 1, - sym__key_value_pattern, + [134973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4980), 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, - [131823] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1681), 3, + ACTIONS(2055), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1679), 25, + ACTIONS(2053), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231006,15 +236172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131860] = 3, + [135010] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4103), 3, + ACTIONS(4538), 3, sym__dedent, sym_string_start, anon_sym_LPAREN, - ACTIONS(5223), 25, + ACTIONS(4540), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231040,15 +236206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131897] = 3, + [135047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2301), 3, + ACTIONS(2059), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2299), 25, + ACTIONS(2057), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231074,15 +236240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131934] = 3, + [135084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2305), 3, + ACTIONS(2063), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2303), 25, + ACTIONS(2061), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231108,65 +236274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131971] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5143), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - anon_sym_STAR_STAR, - ACTIONS(5201), 1, - sym_identifier, - ACTIONS(5225), 1, - anon_sym_RBRACE, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4583), 1, - sym_splat_pattern, - STATE(5219), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5203), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4980), 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, - [132040] = 3, + [135121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2277), 3, + ACTIONS(2067), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2275), 25, + ACTIONS(2065), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231192,164 +236308,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132077] = 18, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4110), 1, - sym_identifier, - ACTIONS(5227), 1, - anon_sym_COLON, - STATE(3133), 1, - sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3806), 1, - sym_maybe_typed_name, + [135158] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(1591), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1589), 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(3984), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(666), 2, - sym_class_definition, - sym_cvar_def, - STATE(3079), 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, - [132144] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5143), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - anon_sym_STAR_STAR, - ACTIONS(5201), 1, - sym_identifier, - ACTIONS(5229), 1, - anon_sym_RBRACE, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4583), 1, - sym_splat_pattern, - STATE(5219), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5203), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4980), 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, - [132213] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5143), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - anon_sym_STAR_STAR, - ACTIONS(5201), 1, - sym_identifier, - ACTIONS(5231), 1, - anon_sym_RBRACE, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4583), 1, - sym_splat_pattern, - STATE(5219), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5203), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4980), 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, - [132282] = 3, + [135195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2201), 3, + ACTIONS(2075), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2199), 25, + ACTIONS(2073), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231375,16 +236376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132319] = 4, - ACTIONS(5233), 1, - anon_sym_COLON, + [135232] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1513), 2, + ACTIONS(2079), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1511), 25, + anon_sym_LPAREN, + ACTIONS(2077), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231410,65 +236410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132358] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5143), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - anon_sym_STAR_STAR, - ACTIONS(5201), 1, - sym_identifier, - ACTIONS(5235), 1, - anon_sym_RBRACE, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4361), 1, - sym_splat_pattern, - STATE(4983), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5203), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4980), 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, - [132427] = 3, + [135269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1685), 3, + ACTIONS(2083), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1683), 25, + ACTIONS(2081), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231494,15 +236444,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132464] = 3, + [135306] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 3, + ACTIONS(2087), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1679), 25, + ACTIONS(2085), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231528,15 +236478,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132501] = 3, + [135343] = 18, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(5303), 1, + anon_sym_COLON, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3929), 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(4032), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1321), 2, + sym_class_definition, + sym_cvar_def, + STATE(3142), 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, + [135410] = 18, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(4208), 1, + anon_sym_class, + ACTIONS(5305), 1, + anon_sym_COLON, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3905), 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(4032), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3025), 2, + sym_class_definition, + sym_cvar_def, + STATE(3135), 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, + [135477] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2281), 3, + ACTIONS(2119), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2279), 25, + ACTIONS(2117), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231562,15 +236610,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132538] = 3, + [135514] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 3, + ACTIONS(2123), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1807), 25, + ACTIONS(2121), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231596,15 +236644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132575] = 3, + [135551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1621), 3, + ACTIONS(2127), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1619), 25, + ACTIONS(2125), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231630,15 +236678,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132612] = 3, + [135588] = 19, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5307), 1, + sym_identifier, + ACTIONS(5311), 1, + anon_sym_RBRACE, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4414), 1, + sym_splat_pattern, + STATE(4801), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5309), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5198), 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, + [135657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1677), 3, + ACTIONS(1617), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1675), 25, + ACTIONS(1615), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231664,15 +236762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132649] = 3, + [135694] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 3, + ACTIONS(2135), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1627), 25, + ACTIONS(2133), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231698,26 +236796,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132686] = 18, - ACTIONS(59), 1, - anon_sym_class, + [135731] = 18, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(5237), 1, + ACTIONS(4208), 1, + anon_sym_class, + ACTIONS(5313), 1, anon_sym_COLON, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3821), 1, + STATE(3905), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -231728,13 +236826,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(1180), 2, + STATE(3072), 2, sym_class_definition, sym_cvar_def, - STATE(3078), 2, + STATE(3135), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -231747,15 +236845,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132753] = 3, + [135798] = 19, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5307), 1, + sym_identifier, + ACTIONS(5315), 1, + anon_sym_RBRACE, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4709), 1, + sym_splat_pattern, + STATE(5459), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5309), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5198), 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, + [135867] = 19, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5307), 1, + sym_identifier, + ACTIONS(5317), 1, + anon_sym_RBRACE, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4709), 1, + sym_splat_pattern, + STATE(5459), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5309), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5198), 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, + [135936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1813), 3, + ACTIONS(2203), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1811), 25, + ACTIONS(2201), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231781,64 +236979,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132790] = 18, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, + [135973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2155), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(2153), 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(4110), 1, + 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, + [136010] = 19, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5307), 1, sym_identifier, - ACTIONS(4112), 1, - anon_sym_class, - ACTIONS(5239), 1, - anon_sym_COLON, - STATE(3133), 1, - sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3803), 1, - sym_maybe_typed_name, + ACTIONS(5319), 1, + anon_sym_RBRACE, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4709), 1, + sym_splat_pattern, + STATE(5459), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5309), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5198), 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, + [136079] = 19, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5307), 1, + sym_identifier, + ACTIONS(5321), 1, + anon_sym_RBRACE, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4709), 1, + sym_splat_pattern, + STATE(5459), 1, + sym__key_value_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(3984), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2942), 2, - sym_class_definition, - sym_cvar_def, - STATE(3080), 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, - [132857] = 3, + ACTIONS(5309), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5198), 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, + [136148] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2165), 3, + ACTIONS(2239), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2163), 25, + ACTIONS(2237), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231864,15 +237147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132894] = 3, + [136185] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 3, + ACTIONS(2243), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1815), 25, + ACTIONS(2241), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231898,15 +237181,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132931] = 3, + [136222] = 4, + ACTIONS(5323), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 3, + ACTIONS(1541), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1819), 25, + ACTIONS(1539), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231932,15 +237216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132968] = 3, + [136261] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 3, + ACTIONS(1635), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1823), 25, + ACTIONS(1633), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -231966,15 +237250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133005] = 3, + [136298] = 4, + ACTIONS(5325), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1829), 3, + ACTIONS(1547), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1827), 25, + ACTIONS(1545), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232000,47 +237285,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133042] = 19, - ACTIONS(1235), 1, + [136337] = 19, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(4829), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + ACTIONS(4937), 1, anon_sym_DASH, - ACTIONS(4845), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, + ACTIONS(4943), 1, sym_integer, - ACTIONS(4849), 1, + ACTIONS(4945), 1, sym_float, - ACTIONS(5143), 1, + ACTIONS(5279), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5281), 1, anon_sym_STAR_STAR, - ACTIONS(5201), 1, + ACTIONS(5307), 1, sym_identifier, - ACTIONS(5241), 1, + ACTIONS(5327), 1, anon_sym_RBRACE, - STATE(3895), 1, + STATE(3940), 1, sym_string, - STATE(4187), 1, + STATE(4265), 1, sym_dotted_name, - STATE(4583), 1, + STATE(4709), 1, sym_splat_pattern, - STATE(5219), 1, + STATE(5459), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, + ACTIONS(5309), 3, anon_sym__, sym_true, sym_false, - STATE(4980), 9, + STATE(5198), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232050,115 +237335,47 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [133111] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1833), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1831), 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, - [133148] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1837), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1835), 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, - [133185] = 19, - ACTIONS(1235), 1, + [136406] = 19, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(4829), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + ACTIONS(4937), 1, anon_sym_DASH, - ACTIONS(4845), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, + ACTIONS(4943), 1, sym_integer, - ACTIONS(4849), 1, + ACTIONS(4945), 1, sym_float, - ACTIONS(5143), 1, + ACTIONS(5279), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5281), 1, anon_sym_STAR_STAR, - ACTIONS(5201), 1, + ACTIONS(5307), 1, sym_identifier, - ACTIONS(5243), 1, + ACTIONS(5329), 1, anon_sym_RBRACE, - STATE(3895), 1, + STATE(3940), 1, sym_string, - STATE(4187), 1, + STATE(4265), 1, sym_dotted_name, - STATE(4583), 1, + STATE(4709), 1, sym_splat_pattern, - STATE(5219), 1, + STATE(5459), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, + ACTIONS(5309), 3, anon_sym__, sym_true, sym_false, - STATE(4980), 9, + STATE(5198), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232168,16 +237385,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [133254] = 4, - ACTIONS(5245), 1, - anon_sym_COLON, + [136475] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1541), 2, + ACTIONS(1583), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1539), 25, + anon_sym_COLON, + ACTIONS(1581), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232203,49 +237419,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133293] = 3, + [136512] = 18, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(5331), 1, + anon_sym_COLON, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3873), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1809), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1807), 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(4032), 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(685), 2, + sym_class_definition, + sym_cvar_def, + STATE(3140), 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, - [133330] = 3, + [136579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2325), 3, + ACTIONS(1587), 3, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2323), 25, + anon_sym_COLON, + ACTIONS(1585), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232271,15 +237502,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133367] = 3, + [136616] = 19, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5307), 1, + sym_identifier, + ACTIONS(5333), 1, + anon_sym_RBRACE, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4409), 1, + sym_splat_pattern, + STATE(4718), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5309), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5198), 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, + [136685] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2329), 3, + ACTIONS(1659), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2327), 25, + ACTIONS(1657), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232305,16 +237586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133404] = 4, - ACTIONS(5247), 1, - anon_sym_COLON, + [136722] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1531), 2, + ACTIONS(1663), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1529), 25, + anon_sym_LPAREN, + ACTIONS(1661), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232340,15 +237620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133443] = 3, + [136759] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1841), 3, + ACTIONS(2279), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1839), 25, + ACTIONS(2277), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232374,23 +237654,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133480] = 3, + [136796] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4442), 3, + ACTIONS(2283), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4444), 25, + ACTIONS(2281), 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, @@ -232408,49 +237688,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133517] = 3, + [136833] = 18, + ACTIONS(125), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(5335), 1, + anon_sym_COLON, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3873), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1845), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1843), 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(4032), 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(706), 2, + sym_class_definition, + sym_cvar_def, + STATE(3140), 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, - [133554] = 3, + [136900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 3, + ACTIONS(1667), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1815), 25, + ACTIONS(1665), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232476,81 +237771,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133591] = 3, + [136937] = 17, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(4886), 1, + anon_sym_class, + ACTIONS(4892), 1, + anon_sym_enum, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3546), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1849), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1847), 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(4110), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4116), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, + ACTIONS(4890), 2, anon_sym_struct, anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, + STATE(2789), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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, - [133628] = 19, - ACTIONS(1235), 1, + [137002] = 19, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(4829), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + ACTIONS(4937), 1, anon_sym_DASH, - ACTIONS(4845), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, + ACTIONS(4943), 1, sym_integer, - ACTIONS(4849), 1, + ACTIONS(4945), 1, sym_float, - ACTIONS(5143), 1, + ACTIONS(5279), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5281), 1, anon_sym_STAR_STAR, - ACTIONS(5201), 1, + ACTIONS(5307), 1, sym_identifier, - ACTIONS(5249), 1, + ACTIONS(5337), 1, anon_sym_RBRACE, - STATE(3895), 1, + STATE(3940), 1, sym_string, - STATE(4187), 1, + STATE(4265), 1, sym_dotted_name, - STATE(4446), 1, + STATE(4709), 1, sym_splat_pattern, - STATE(4782), 1, + STATE(5459), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, + ACTIONS(5309), 3, anon_sym__, sym_true, sym_false, - STATE(4980), 9, + STATE(5198), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232560,116 +237869,47 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [133697] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1825), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1823), 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, - [133734] = 4, - ACTIONS(5251), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1547), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1545), 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, - [133773] = 19, - ACTIONS(1235), 1, + [137071] = 19, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(4829), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + ACTIONS(4937), 1, anon_sym_DASH, - ACTIONS(4845), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, + ACTIONS(4943), 1, sym_integer, - ACTIONS(4849), 1, + ACTIONS(4945), 1, sym_float, - ACTIONS(5143), 1, + ACTIONS(5279), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5281), 1, anon_sym_STAR_STAR, - ACTIONS(5201), 1, + ACTIONS(5307), 1, sym_identifier, - ACTIONS(5253), 1, + ACTIONS(5339), 1, anon_sym_RBRACE, - STATE(3895), 1, + STATE(3940), 1, sym_string, - STATE(4187), 1, + STATE(4265), 1, sym_dotted_name, - STATE(4583), 1, + STATE(4709), 1, sym_splat_pattern, - STATE(5219), 1, + STATE(5459), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, + ACTIONS(5309), 3, anon_sym__, sym_true, sym_false, - STATE(4980), 9, + STATE(5198), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232679,47 +237919,47 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [133842] = 19, - ACTIONS(1235), 1, + [137140] = 19, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(4829), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + ACTIONS(4937), 1, anon_sym_DASH, - ACTIONS(4845), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, + ACTIONS(4943), 1, sym_integer, - ACTIONS(4849), 1, + ACTIONS(4945), 1, sym_float, - ACTIONS(5143), 1, + ACTIONS(5279), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5281), 1, anon_sym_STAR_STAR, - ACTIONS(5201), 1, + ACTIONS(5307), 1, sym_identifier, - ACTIONS(5255), 1, + ACTIONS(5341), 1, anon_sym_RBRACE, - STATE(3895), 1, + STATE(3940), 1, sym_string, - STATE(4187), 1, + STATE(4265), 1, sym_dotted_name, - STATE(4583), 1, + STATE(4527), 1, sym_splat_pattern, - STATE(5219), 1, + STATE(5200), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, + ACTIONS(5309), 3, anon_sym__, sym_true, sym_false, - STATE(4980), 9, + STATE(5198), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232729,47 +237969,82 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [133911] = 19, - ACTIONS(1235), 1, + [137209] = 4, + ACTIONS(5343), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1553), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1551), 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, + [137248] = 19, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(4829), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + ACTIONS(4937), 1, anon_sym_DASH, - ACTIONS(4845), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, + ACTIONS(4943), 1, sym_integer, - ACTIONS(4849), 1, + ACTIONS(4945), 1, sym_float, - ACTIONS(5143), 1, + ACTIONS(5279), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5281), 1, anon_sym_STAR_STAR, - ACTIONS(5201), 1, + ACTIONS(5307), 1, sym_identifier, - ACTIONS(5257), 1, + ACTIONS(5345), 1, anon_sym_RBRACE, - STATE(3895), 1, + STATE(3940), 1, sym_string, - STATE(4187), 1, + STATE(4265), 1, sym_dotted_name, - STATE(4583), 1, + STATE(4709), 1, sym_splat_pattern, - STATE(5219), 1, + STATE(5459), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, + ACTIONS(5309), 3, anon_sym__, sym_true, sym_false, - STATE(4980), 9, + STATE(5198), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232779,47 +238054,47 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [133980] = 19, - ACTIONS(1235), 1, + [137317] = 19, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(4829), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + ACTIONS(4937), 1, anon_sym_DASH, - ACTIONS(4845), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, + ACTIONS(4943), 1, sym_integer, - ACTIONS(4849), 1, + ACTIONS(4945), 1, sym_float, - ACTIONS(5143), 1, + ACTIONS(5279), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5281), 1, anon_sym_STAR_STAR, - ACTIONS(5201), 1, + ACTIONS(5307), 1, sym_identifier, - ACTIONS(5259), 1, + ACTIONS(5347), 1, anon_sym_RBRACE, - STATE(3895), 1, + STATE(3940), 1, sym_string, - STATE(4187), 1, + STATE(4265), 1, sym_dotted_name, - STATE(4583), 1, + STATE(4709), 1, sym_splat_pattern, - STATE(5219), 1, + STATE(5459), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, + ACTIONS(5309), 3, anon_sym__, sym_true, sym_false, - STATE(4980), 9, + STATE(5198), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232829,16 +238104,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [134049] = 4, - ACTIONS(5261), 1, - anon_sym_COLON, + [137386] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1553), 2, + ACTIONS(2319), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1551), 25, + anon_sym_LPAREN, + ACTIONS(2317), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232864,15 +238138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134088] = 3, + [137423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2341), 3, + ACTIONS(2323), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2339), 25, + ACTIONS(2321), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232898,64 +238172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134125] = 18, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4110), 1, - sym_identifier, - ACTIONS(4112), 1, - anon_sym_class, - ACTIONS(5263), 1, + [137460] = 4, + ACTIONS(5349), 1, anon_sym_COLON, - STATE(3133), 1, - sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3803), 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(3984), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2950), 2, - sym_class_definition, - sym_cvar_def, - STATE(3080), 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, - [134192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2237), 3, + ACTIONS(1559), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2235), 25, + ACTIONS(1557), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -232981,265 +238207,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134229] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1729), 3, - sym__dedent, - anon_sym_SEMI, + [137499] = 19, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(1727), 25, - anon_sym_class, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5307), 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, - [134266] = 3, + ACTIONS(5351), 1, + anon_sym_RBRACE, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4540), 1, + sym_splat_pattern, + STATE(4845), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1901), 3, - sym__dedent, - anon_sym_SEMI, + ACTIONS(5309), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5198), 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, + [137568] = 19, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(1899), 25, - anon_sym_class, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5307), 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, - [134303] = 3, + ACTIONS(5353), 1, + anon_sym_RBRACE, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4709), 1, + sym_splat_pattern, + STATE(5459), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 3, - sym__dedent, - anon_sym_SEMI, + ACTIONS(5309), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5198), 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, + [137637] = 19, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(1903), 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, - [134340] = 17, - ACTIONS(3928), 1, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5307), 1, sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(4774), 1, - anon_sym_class, - ACTIONS(4780), 1, - anon_sym_enum, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3490), 1, - sym_c_type, + ACTIONS(5355), 1, + anon_sym_RBRACE, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4709), 1, + sym_splat_pattern, + STATE(5459), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4778), 2, - anon_sym_struct, - anon_sym_union, - STATE(2736), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 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, - [134405] = 3, + ACTIONS(5309), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5198), 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, + [137706] = 19, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5307), 1, + sym_identifier, + ACTIONS(5357), 1, + anon_sym_RBRACE, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4709), 1, + sym_splat_pattern, + STATE(5459), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1909), 3, - sym__dedent, - anon_sym_SEMI, + ACTIONS(5309), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5198), 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, + [137775] = 19, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(1907), 25, - anon_sym_class, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5307), 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, - [134442] = 3, + ACTIONS(5359), 1, + anon_sym_RBRACE, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4709), 1, + sym_splat_pattern, + STATE(5459), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1913), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1911), 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, - [134479] = 19, - ACTIONS(1235), 1, + ACTIONS(5309), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5198), 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, + [137844] = 19, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(4829), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + ACTIONS(4937), 1, anon_sym_DASH, - ACTIONS(4845), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, + ACTIONS(4943), 1, sym_integer, - ACTIONS(4849), 1, + ACTIONS(4945), 1, sym_float, - ACTIONS(5143), 1, + ACTIONS(5279), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5281), 1, anon_sym_STAR_STAR, - ACTIONS(5201), 1, + ACTIONS(5307), 1, sym_identifier, - ACTIONS(5265), 1, + ACTIONS(5361), 1, anon_sym_RBRACE, - STATE(3895), 1, + STATE(3940), 1, sym_string, - STATE(4187), 1, + STATE(4265), 1, sym_dotted_name, - STATE(4583), 1, + STATE(4709), 1, sym_splat_pattern, - STATE(5219), 1, + STATE(5459), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, + ACTIONS(5309), 3, anon_sym__, sym_true, sym_false, - STATE(4980), 9, + STATE(5198), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -233249,47 +238507,47 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [134548] = 19, - ACTIONS(1235), 1, + [137913] = 19, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1247), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(4829), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(4839), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + ACTIONS(4937), 1, anon_sym_DASH, - ACTIONS(4845), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, + ACTIONS(4943), 1, sym_integer, - ACTIONS(4849), 1, + ACTIONS(4945), 1, sym_float, - ACTIONS(5143), 1, + ACTIONS(5279), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5281), 1, anon_sym_STAR_STAR, - ACTIONS(5201), 1, + ACTIONS(5307), 1, sym_identifier, - ACTIONS(5267), 1, + ACTIONS(5363), 1, anon_sym_RBRACE, - STATE(3895), 1, + STATE(3940), 1, sym_string, - STATE(4187), 1, + STATE(4265), 1, sym_dotted_name, - STATE(4583), 1, + STATE(4709), 1, sym_splat_pattern, - STATE(5219), 1, + STATE(5459), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, + ACTIONS(5309), 3, anon_sym__, sym_true, sym_false, - STATE(4980), 9, + STATE(5198), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -233299,15 +238557,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [134617] = 3, + [137982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1917), 3, + ACTIONS(2343), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1915), 25, + ACTIONS(2341), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233333,15 +238591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134654] = 3, + [138019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1921), 3, + ACTIONS(2347), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1919), 25, + ACTIONS(2345), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233367,15 +238625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134691] = 3, + [138056] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1925), 3, + ACTIONS(1707), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1923), 25, + ACTIONS(1705), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233401,23 +238659,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134728] = 3, + [138093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1503), 3, + ACTIONS(4199), 3, sym__dedent, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1501), 25, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(5365), 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, @@ -233435,15 +238693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134765] = 3, + [138130] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1929), 3, + ACTIONS(2367), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1927), 25, + ACTIONS(2365), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233469,65 +238727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134802] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5143), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - anon_sym_STAR_STAR, - ACTIONS(5201), 1, - sym_identifier, - ACTIONS(5269), 1, - anon_sym_RBRACE, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4583), 1, - sym_splat_pattern, - STATE(5219), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5203), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4980), 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, - [134871] = 3, + [138167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1733), 3, + ACTIONS(2371), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1731), 25, + ACTIONS(2369), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233553,65 +238761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134908] = 19, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5143), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - anon_sym_STAR_STAR, - ACTIONS(5201), 1, - sym_identifier, - ACTIONS(5271), 1, - anon_sym_RBRACE, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4583), 1, - sym_splat_pattern, - STATE(5219), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5203), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4980), 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, - [134977] = 3, + [138204] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1537), 3, + ACTIONS(1711), 3, sym__dedent, anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1535), 25, + anon_sym_LPAREN, + ACTIONS(1709), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233637,15 +238795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135014] = 3, + [138241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1933), 3, + ACTIONS(1715), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1931), 25, + ACTIONS(1713), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233671,15 +238829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135051] = 3, + [138278] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1937), 3, + ACTIONS(1719), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1935), 25, + ACTIONS(1717), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233705,15 +238863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135088] = 3, + [138315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1941), 3, + ACTIONS(1723), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1939), 25, + ACTIONS(1721), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233739,64 +238897,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135125] = 18, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(4110), 1, - sym_identifier, - ACTIONS(5273), 1, - anon_sym_COLON, - STATE(3133), 1, - sym__signedness, - STATE(3190), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3609), 1, - sym_operator_name, - STATE(3806), 1, - sym_maybe_typed_name, + [138352] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(1719), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1717), 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(3984), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(686), 2, - sym_class_definition, - sym_cvar_def, - STATE(3079), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [138389] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1719), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1717), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, - anon_sym_api, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135192] = 3, + [138426] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2205), 3, + ACTIONS(2383), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2203), 25, + ACTIONS(2381), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233822,49 +238999,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135229] = 3, + [138463] = 17, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5255), 1, + anon_sym_class, + ACTIONS(5261), 1, + anon_sym_enum, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3520), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1667), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(5259), 2, + anon_sym_struct, + anon_sym_union, + STATE(2789), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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, + [138528] = 18, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, anon_sym_operator, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(5367), 1, + anon_sym_COLON, + STATE(3210), 1, + sym__signedness, + STATE(3228), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3623), 1, + sym_operator_name, + STATE(3929), 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(4032), 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(1249), 2, + sym_class_definition, + sym_cvar_def, + STATE(3142), 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, - [135266] = 3, + [138595] = 4, + ACTIONS(5369), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 3, + ACTIONS(1535), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1671), 25, + ACTIONS(1533), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233890,15 +239131,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135303] = 3, + [138634] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 3, + ACTIONS(2131), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1623), 25, + ACTIONS(2129), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233924,14 +239165,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135340] = 3, + [138671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2145), 2, + ACTIONS(1613), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2143), 25, + ACTIONS(1611), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233957,14 +239198,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135376] = 3, + [138707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2273), 2, + ACTIONS(1935), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2271), 25, + ACTIONS(1933), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -233990,60 +239231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135412] = 16, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(5275), 1, - sym__dedent, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3491), 1, - sym_c_type, + [138743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2931), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3092), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 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, - [135474] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2285), 2, + ACTIONS(2139), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2283), 25, + ACTIONS(2137), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234069,60 +239264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135510] = 16, - ACTIONS(5277), 1, - sym_identifier, - ACTIONS(5280), 1, - anon_sym_LPAREN, - ACTIONS(5295), 1, - anon_sym_long, - ACTIONS(5301), 1, - sym__dedent, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3491), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5289), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5292), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5298), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2931), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3092), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5286), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(5283), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [135572] = 3, + [138779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1579), 2, + ACTIONS(1839), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1577), 25, + ACTIONS(1837), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234148,21 +239297,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135608] = 3, - ACTIONS(3697), 1, - anon_sym_COLON, + [138815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5171), 26, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(2143), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2141), 25, anon_sym_class, sym_identifier, - anon_sym_await, anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -234174,107 +239320,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, - [135644] = 9, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4223), 1, - anon_sym_is, - ACTIONS(4229), 1, - anon_sym_EQ, - STATE(2969), 1, - aux_sym_comparison_operator_repeat1, + [138851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4225), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1999), 2, - sym__not_in, - sym__is_not, - ACTIONS(4203), 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(4227), 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, - [135692] = 16, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(5303), 1, - sym__dedent, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3491), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(3944), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2931), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3092), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 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, - [135754] = 4, - ACTIONS(1589), 1, + ACTIONS(2147), 2, sym__dedent, - ACTIONS(5305), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1585), 25, + ACTIONS(2145), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234300,14 +239363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135792] = 3, + [138887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1593), 2, + ACTIONS(2151), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1591), 25, + ACTIONS(2149), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234333,14 +239396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135828] = 3, + [138923] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1597), 2, + ACTIONS(1843), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1595), 25, + ACTIONS(1841), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234366,14 +239429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135864] = 3, + [138959] = 4, + ACTIONS(1623), 1, + sym__dedent, + ACTIONS(5371), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2157), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2155), 25, + ACTIONS(1619), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234399,14 +239463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135900] = 3, + [138997] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2149), 2, + ACTIONS(2175), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2147), 25, + ACTIONS(2173), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234432,60 +239496,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135936] = 16, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(5307), 1, - sym__dedent, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(3491), 1, - sym_c_type, + [139033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(2179), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2177), 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(3940), 2, anon_sym_char, anon_sym_short, - ACTIONS(3944), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(2931), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3092), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3716), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 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, - [135998] = 3, + [139069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2289), 2, + ACTIONS(2183), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2287), 25, + ACTIONS(2181), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234511,14 +239562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136034] = 3, + [139105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2293), 2, + ACTIONS(2187), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2291), 25, + ACTIONS(2185), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234544,14 +239595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136070] = 3, + [139141] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 2, + ACTIONS(2191), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1599), 25, + ACTIONS(2189), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234577,14 +239628,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136106] = 3, + [139177] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2297), 2, + ACTIONS(2195), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2295), 25, + ACTIONS(2193), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234610,14 +239661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136142] = 3, + [139213] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, + ACTIONS(2199), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1603), 25, + ACTIONS(2197), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234643,14 +239694,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136178] = 3, + [139249] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 2, + ACTIONS(1759), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1607), 25, + ACTIONS(1757), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234676,14 +239727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136214] = 3, + [139285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 2, + ACTIONS(2159), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1611), 25, + ACTIONS(2157), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234709,14 +239760,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136250] = 3, + [139321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 2, + ACTIONS(1763), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1615), 25, + ACTIONS(1761), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234742,47 +239793,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136286] = 3, + [139357] = 16, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5376), 1, + anon_sym_LPAREN, + ACTIONS(5391), 1, + anon_sym_long, + ACTIONS(5397), 1, + sym__dedent, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3517), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2209), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2207), 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(5385), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(5388), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(5394), 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(3002), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3151), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5382), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(5379), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136322] = 3, + [139419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2309), 2, + ACTIONS(1627), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2307), 25, + ACTIONS(1625), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234808,62 +239872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136358] = 18, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5143), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - anon_sym_STAR_STAR, - ACTIONS(5201), 1, - sym_identifier, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - STATE(4583), 1, - sym_splat_pattern, - STATE(5219), 1, - sym__key_value_pattern, + [139455] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5203), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4980), 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, - [136424] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2161), 2, + ACTIONS(1631), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2159), 25, + ACTIONS(1629), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234889,14 +239905,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136460] = 3, + [139491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1633), 2, + ACTIONS(2207), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1631), 25, + ACTIONS(2205), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234922,14 +239938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136496] = 3, + [139527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 2, + ACTIONS(2211), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1635), 25, + ACTIONS(2209), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234955,14 +239971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136532] = 3, + [139563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1641), 2, + ACTIONS(2215), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1639), 25, + ACTIONS(2213), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234988,14 +240004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136568] = 3, + [139599] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2169), 2, + ACTIONS(2219), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2167), 25, + ACTIONS(2217), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235021,14 +240037,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136604] = 3, + [139635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 2, + ACTIONS(2223), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1643), 25, + ACTIONS(2221), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235054,14 +240070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136640] = 3, + [139671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 2, + ACTIONS(2227), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1647), 25, + ACTIONS(2225), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235087,14 +240103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136676] = 3, + [139707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 2, + ACTIONS(2231), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1651), 25, + ACTIONS(2229), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235120,14 +240136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136712] = 3, + [139743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(2235), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1655), 25, + ACTIONS(2233), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235153,14 +240169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136748] = 3, + [139779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 2, + ACTIONS(1751), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1659), 25, + ACTIONS(1749), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235186,14 +240202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136784] = 3, + [139815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 2, + ACTIONS(1799), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1663), 25, + ACTIONS(1797), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235219,14 +240235,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136820] = 3, + [139851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2173), 2, + ACTIONS(1755), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2171), 25, + ACTIONS(1753), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235252,14 +240268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136856] = 3, + [139887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2177), 2, + ACTIONS(1803), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2175), 25, + ACTIONS(1801), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235285,14 +240301,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136892] = 3, + [139923] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2181), 2, + ACTIONS(1639), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2179), 25, + ACTIONS(1637), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235318,14 +240334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136928] = 3, + [139959] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2185), 2, + ACTIONS(1807), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2183), 25, + ACTIONS(1805), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235351,14 +240367,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136964] = 3, + [139995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2189), 2, + ACTIONS(1643), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2187), 25, + ACTIONS(1641), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235384,53 +240400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137000] = 9, - ACTIONS(4233), 1, - anon_sym_EQ, - ACTIONS(4238), 1, - anon_sym_not, - ACTIONS(4241), 1, - anon_sym_is, - STATE(2969), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4244), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1999), 2, - sym__not_in, - sym__is_not, - ACTIONS(4235), 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(4231), 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, - [137048] = 3, + [140031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2193), 2, + ACTIONS(1811), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2191), 25, + ACTIONS(1809), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235456,14 +240433,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137084] = 3, + [140067] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 2, + ACTIONS(2015), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1687), 25, + ACTIONS(2013), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235489,14 +240466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137120] = 3, + [140103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1693), 2, + ACTIONS(1647), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1691), 25, + ACTIONS(1645), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235522,14 +240499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137156] = 3, + [140139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1697), 2, + ACTIONS(2019), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1695), 25, + ACTIONS(2017), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235555,14 +240532,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137192] = 3, + [140175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 2, + ACTIONS(1651), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1699), 25, + ACTIONS(1649), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235588,14 +240565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137228] = 3, + [140211] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 2, + ACTIONS(2247), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1703), 25, + ACTIONS(2245), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235621,14 +240598,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137264] = 3, + [140247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1709), 2, + ACTIONS(2251), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1707), 25, + ACTIONS(2249), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235654,14 +240631,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137300] = 3, + [140283] = 9, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4319), 1, + anon_sym_is, + ACTIONS(4342), 1, + anon_sym_EQ, + STATE(3105), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 2, + ACTIONS(4321), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2015), 2, + sym__not_in, + sym__is_not, + ACTIONS(4299), 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(4340), 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, + [140331] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1655), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1711), 25, + ACTIONS(1653), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235687,14 +240703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137336] = 3, + [140367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2313), 2, + ACTIONS(2023), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2311), 25, + ACTIONS(2021), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235720,14 +240736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137372] = 3, + [140403] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2317), 2, + ACTIONS(2255), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2315), 25, + ACTIONS(2253), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235753,14 +240769,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137408] = 3, + [140439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1717), 2, + ACTIONS(2259), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1715), 25, + ACTIONS(2257), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235786,14 +240802,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137444] = 3, + [140475] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1721), 2, + ACTIONS(2263), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1719), 25, + ACTIONS(2261), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235819,14 +240835,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137480] = 3, + [140511] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1725), 2, + ACTIONS(2267), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1723), 25, + ACTIONS(2265), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235852,14 +240868,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137516] = 3, + [140547] = 16, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5399), 1, + sym__dedent, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3517), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3002), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3151), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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, + [140609] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2321), 2, + ACTIONS(2271), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2319), 25, + ACTIONS(2269), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235885,14 +240947,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137552] = 3, + [140645] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2125), 2, + ACTIONS(2027), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2123), 25, + ACTIONS(2025), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235918,14 +240980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137588] = 3, + [140681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2129), 2, + ACTIONS(2275), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2127), 25, + ACTIONS(2273), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235951,14 +241013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137624] = 3, + [140717] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2133), 2, + ACTIONS(2031), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2131), 25, + ACTIONS(2029), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235984,14 +241046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137660] = 3, + [140753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2213), 2, + ACTIONS(2035), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2211), 25, + ACTIONS(2033), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236017,14 +241079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137696] = 3, + [140789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2217), 2, + ACTIONS(2039), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2215), 25, + ACTIONS(2037), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236050,21 +241112,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137732] = 3, - ACTIONS(3697), 1, - anon_sym_COLON, + [140825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5171), 26, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(2287), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2285), 25, anon_sym_class, sym_identifier, - anon_sym_await, anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -236076,21 +241135,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, - [137768] = 3, + [140861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2221), 2, + ACTIONS(2291), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2219), 25, + ACTIONS(2289), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236116,14 +241178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137804] = 3, + [140897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2225), 2, + ACTIONS(2043), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2223), 25, + ACTIONS(2041), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236149,14 +241211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137840] = 3, + [140933] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1761), 2, + ACTIONS(2047), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1759), 25, + ACTIONS(2045), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236182,14 +241244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137876] = 3, + [140969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2229), 2, + ACTIONS(1815), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2227), 25, + ACTIONS(1813), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236215,14 +241277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137912] = 3, + [141005] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1765), 2, + ACTIONS(1671), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1763), 25, + ACTIONS(1669), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236248,14 +241310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137948] = 3, + [141041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1769), 2, + ACTIONS(1675), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1767), 25, + ACTIONS(1673), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236281,14 +241343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137984] = 3, + [141077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 2, + ACTIONS(1819), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1771), 25, + ACTIONS(1817), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236314,14 +241376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138020] = 3, + [141113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1777), 2, + ACTIONS(1823), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1775), 25, + ACTIONS(1821), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236347,14 +241409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138056] = 3, + [141149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 2, + ACTIONS(1679), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1779), 25, + ACTIONS(1677), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236380,14 +241442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138092] = 3, + [141185] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2269), 2, + ACTIONS(2295), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2267), 25, + ACTIONS(2293), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236413,14 +241475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138128] = 3, + [141221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 2, + ACTIONS(2299), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1787), 25, + ACTIONS(2297), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236446,14 +241508,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138164] = 3, + [141257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1793), 2, + ACTIONS(2303), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1791), 25, + ACTIONS(2301), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236479,14 +241541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138200] = 3, + [141293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1797), 2, + ACTIONS(2307), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1795), 25, + ACTIONS(2305), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236512,14 +241574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138236] = 3, + [141329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1801), 2, + ACTIONS(1747), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1799), 25, + ACTIONS(1745), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236545,14 +241607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138272] = 3, + [141365] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1805), 2, + ACTIONS(2315), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1803), 25, + ACTIONS(2313), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236578,14 +241640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138308] = 3, + [141401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2333), 2, + ACTIONS(1827), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2331), 25, + ACTIONS(1825), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236611,14 +241673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138344] = 3, + [141437] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(1831), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2335), 25, + ACTIONS(1829), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236644,14 +241706,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138380] = 3, + [141473] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1853), 2, + ACTIONS(2327), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1851), 25, + ACTIONS(2325), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236677,18 +241739,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138416] = 3, + [141509] = 3, + ACTIONS(3793), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1857), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1855), 25, + ACTIONS(5295), 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, @@ -236700,24 +241765,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, - [138452] = 3, + [141545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 2, + ACTIONS(1891), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1859), 25, + ACTIONS(1889), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236743,14 +241805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138488] = 3, + [141581] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 2, + ACTIONS(1895), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1863), 25, + ACTIONS(1893), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236776,14 +241838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138524] = 3, + [141617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2233), 2, + ACTIONS(1899), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2231), 25, + ACTIONS(1897), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236809,14 +241871,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138560] = 3, + [141653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 2, + ACTIONS(1835), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1867), 25, + ACTIONS(1833), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236842,14 +241904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138596] = 3, + [141689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1873), 2, + ACTIONS(1683), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1871), 25, + ACTIONS(1681), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236875,14 +241937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138632] = 3, + [141725] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1877), 2, + ACTIONS(1687), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1875), 25, + ACTIONS(1685), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236908,14 +241970,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138668] = 3, + [141761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1881), 2, + ACTIONS(1903), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1879), 25, + ACTIONS(1901), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236941,14 +242003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138704] = 3, + [141797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1885), 2, + ACTIONS(1907), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1883), 25, + ACTIONS(1905), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236974,14 +242036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138740] = 3, + [141833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1889), 2, + ACTIONS(1691), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1887), 25, + ACTIONS(1689), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237007,14 +242069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138776] = 3, + [141869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1893), 2, + ACTIONS(1911), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1891), 25, + ACTIONS(1909), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237040,14 +242102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138812] = 3, + [141905] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1897), 2, + ACTIONS(1695), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1895), 25, + ACTIONS(1693), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237073,14 +242135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138848] = 3, + [141941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2345), 2, + ACTIONS(2331), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2343), 25, + ACTIONS(2329), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237106,14 +242168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138884] = 3, + [141977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2349), 2, + ACTIONS(2335), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2347), 25, + ACTIONS(2333), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237139,14 +242201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138920] = 3, + [142013] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1949), 2, + ACTIONS(2339), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1947), 25, + ACTIONS(2337), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237172,14 +242234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138956] = 3, + [142049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1953), 2, + ACTIONS(1699), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1951), 25, + ACTIONS(1697), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237205,14 +242267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138992] = 3, + [142085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1957), 2, + ACTIONS(2091), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1955), 25, + ACTIONS(2089), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237238,14 +242300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139028] = 3, + [142121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1961), 2, + ACTIONS(2095), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1959), 25, + ACTIONS(2093), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237271,14 +242333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139064] = 3, + [142157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1965), 2, + ACTIONS(2351), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1963), 25, + ACTIONS(2349), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237304,14 +242366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139100] = 3, + [142193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1969), 2, + ACTIONS(1703), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1967), 25, + ACTIONS(1701), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237337,14 +242399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139136] = 3, + [142229] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 2, + ACTIONS(2163), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1971), 25, + ACTIONS(2161), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237370,14 +242432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139172] = 3, + [142265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1977), 2, + ACTIONS(2099), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1975), 25, + ACTIONS(2097), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237403,14 +242465,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139208] = 3, + [142301] = 16, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5401), 1, + sym__dedent, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3517), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3002), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3151), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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, + [142363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1981), 2, + ACTIONS(2355), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1979), 25, + ACTIONS(2353), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237436,14 +242544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139244] = 3, + [142399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 2, + ACTIONS(2359), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1557), 25, + ACTIONS(2357), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237469,14 +242577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139280] = 3, + [142435] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2245), 2, + ACTIONS(2363), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2243), 25, + ACTIONS(2361), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237502,14 +242610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139316] = 3, + [142471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2249), 2, + ACTIONS(2167), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2247), 25, + ACTIONS(2165), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237535,14 +242643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139352] = 3, + [142507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2053), 2, + ACTIONS(2171), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2051), 25, + ACTIONS(2169), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237568,14 +242676,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139388] = 3, + [142543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2057), 2, + ACTIONS(2103), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2055), 25, + ACTIONS(2101), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237601,14 +242709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139424] = 3, + [142579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2061), 2, + ACTIONS(2107), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2059), 25, + ACTIONS(2105), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237634,14 +242742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139460] = 3, + [142615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2065), 2, + ACTIONS(2111), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2063), 25, + ACTIONS(2109), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237667,14 +242775,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139496] = 3, + [142651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2069), 2, + ACTIONS(2115), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2067), 25, + ACTIONS(2113), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237700,14 +242808,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139532] = 3, + [142687] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2073), 2, + ACTIONS(2375), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2071), 25, + ACTIONS(2373), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237733,14 +242841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139568] = 3, + [142723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2077), 2, + ACTIONS(1915), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2075), 25, + ACTIONS(1913), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237766,14 +242874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139604] = 3, + [142759] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2353), 2, + ACTIONS(2379), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2351), 25, + ACTIONS(2377), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237799,14 +242907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139640] = 3, + [142795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2357), 2, + ACTIONS(1919), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2355), 25, + ACTIONS(1917), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237832,14 +242940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139676] = 3, + [142831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2101), 2, + ACTIONS(1727), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2099), 25, + ACTIONS(1725), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237865,14 +242973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139712] = 3, + [142867] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2105), 2, + ACTIONS(2387), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2103), 25, + ACTIONS(2385), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237898,14 +243006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139748] = 3, + [142903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2109), 2, + ACTIONS(2391), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2107), 25, + ACTIONS(2389), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237931,14 +243039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139784] = 3, + [142939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2113), 2, + ACTIONS(1731), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2111), 25, + ACTIONS(1729), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237964,14 +243072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139820] = 3, + [142975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2121), 2, + ACTIONS(2395), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2119), 25, + ACTIONS(2393), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237997,14 +243105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139856] = 3, + [143011] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2399), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2359), 25, + ACTIONS(2397), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238030,14 +243138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139892] = 3, + [143047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 2, + ACTIONS(2071), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2363), 25, + ACTIONS(2069), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238063,14 +243171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139928] = 3, + [143083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2153), 2, + ACTIONS(2403), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2151), 25, + ACTIONS(2401), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238096,14 +243204,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139964] = 3, + [143119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2197), 2, + ACTIONS(1923), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2195), 25, + ACTIONS(1921), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238129,14 +243237,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140000] = 3, + [143155] = 9, + ACTIONS(4350), 1, + anon_sym_EQ, + ACTIONS(4355), 1, + anon_sym_not, + ACTIONS(4358), 1, + anon_sym_is, + STATE(3105), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4361), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2015), 2, + sym__not_in, + sym__is_not, + ACTIONS(4352), 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(4348), 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, + [143203] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2253), 2, + ACTIONS(1735), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2251), 25, + ACTIONS(1733), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238162,14 +243309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140036] = 3, + [143239] = 4, + ACTIONS(1609), 1, + sym__dedent, + ACTIONS(5403), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2137), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2135), 25, + ACTIONS(1605), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238195,18 +243343,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140072] = 3, + [143277] = 3, + ACTIONS(3793), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2141), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2139), 25, + ACTIONS(5295), 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, @@ -238218,24 +243369,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, - [140108] = 3, + [143313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2257), 2, + ACTIONS(1739), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2255), 25, + ACTIONS(1737), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238261,14 +243409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140144] = 3, + [143349] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2261), 2, + ACTIONS(1927), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2259), 25, + ACTIONS(1925), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238294,14 +243442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140180] = 3, + [143385] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2265), 2, + ACTIONS(1931), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2263), 25, + ACTIONS(1929), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238327,15 +243475,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140216] = 4, - ACTIONS(1575), 1, + [143421] = 16, + ACTIONS(4100), 1, + sym_identifier, + ACTIONS(4102), 1, + anon_sym_LPAREN, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5405), 1, sym__dedent, - ACTIONS(5309), 1, - anon_sym_SEMI, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3517), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4116), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3002), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3151), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3698), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 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, + [143483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 25, + ACTIONS(1743), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1741), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238361,14 +243554,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140254] = 3, + [143519] = 18, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, + anon_sym_LPAREN, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5279), 1, + anon_sym_STAR, + ACTIONS(5281), 1, + anon_sym_STAR_STAR, + ACTIONS(5307), 1, + sym_identifier, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + STATE(4709), 1, + sym_splat_pattern, + STATE(5459), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5309), 3, + anon_sym__, + sym_true, + sym_false, + STATE(5198), 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, + [143585] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 2, + ACTIONS(2311), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1783), 25, + ACTIONS(2309), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238394,41 +243635,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140290] = 16, - ACTIONS(2025), 1, + [143621] = 16, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(2033), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(5141), 1, + ACTIONS(5277), 1, anon_sym_LPAREN, - ACTIONS(5143), 1, + ACTIONS(5279), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5281), 1, anon_sym_STAR_STAR, - ACTIONS(5147), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5285), 1, anon_sym_DASH, - ACTIONS(5153), 1, + ACTIONS(5289), 1, anon_sym_LBRACE, - ACTIONS(5155), 1, + ACTIONS(5291), 1, sym_integer, - ACTIONS(5157), 1, + ACTIONS(5293), 1, sym_float, - ACTIONS(5311), 1, + ACTIONS(5407), 1, sym_identifier, - STATE(4005), 1, + STATE(4124), 1, sym_string, - STATE(4453), 1, + STATE(4500), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5313), 3, + ACTIONS(5409), 3, anon_sym__, sym_true, sym_false, - STATE(4297), 10, + STATE(4416), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -238439,13 +243680,13 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [140351] = 3, - ACTIONS(2417), 1, + [143682] = 3, + ACTIONS(2427), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2415), 25, + ACTIONS(2425), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238471,13 +243712,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140386] = 3, - ACTIONS(2421), 1, + [143717] = 3, + ACTIONS(2435), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2419), 25, + ACTIONS(2433), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238503,13 +243744,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140421] = 3, - ACTIONS(2433), 1, + [143752] = 16, + ACTIONS(1267), 1, + anon_sym_None, + ACTIONS(1279), 1, + sym_string_start, + ACTIONS(4925), 1, + anon_sym_LPAREN, + ACTIONS(4927), 1, + anon_sym_STAR, + ACTIONS(4933), 1, + anon_sym_STAR_STAR, + ACTIONS(4935), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_DASH, + ACTIONS(4941), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, + sym_integer, + ACTIONS(4945), 1, + sym_float, + ACTIONS(5307), 1, + sym_identifier, + STATE(3940), 1, + sym_string, + STATE(4265), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5411), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4250), 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, + [143813] = 16, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(5123), 1, + anon_sym_LPAREN, + ACTIONS(5127), 1, + anon_sym_STAR, + ACTIONS(5129), 1, + anon_sym_STAR_STAR, + ACTIONS(5131), 1, + anon_sym_LBRACK, + ACTIONS(5133), 1, + anon_sym_DASH, + ACTIONS(5137), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + sym_integer, + ACTIONS(5141), 1, + sym_float, + ACTIONS(5413), 1, + sym_identifier, + STATE(4107), 1, + sym_string, + STATE(4538), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5415), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4370), 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, + [143874] = 16, + ACTIONS(1428), 1, + anon_sym_None, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(5123), 1, + anon_sym_LPAREN, + ACTIONS(5127), 1, + anon_sym_STAR, + ACTIONS(5129), 1, + anon_sym_STAR_STAR, + ACTIONS(5131), 1, + anon_sym_LBRACK, + ACTIONS(5133), 1, + anon_sym_DASH, + ACTIONS(5137), 1, + anon_sym_LBRACE, + ACTIONS(5139), 1, + sym_integer, + ACTIONS(5141), 1, + sym_float, + ACTIONS(5413), 1, + sym_identifier, + STATE(4107), 1, + sym_string, + STATE(4538), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5417), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4372), 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, + [143935] = 3, + ACTIONS(2475), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2431), 25, + ACTIONS(2473), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238535,13 +243911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140456] = 3, - ACTIONS(2373), 1, + [143970] = 3, + ACTIONS(2471), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 25, + ACTIONS(2469), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238567,13 +243943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140491] = 3, - ACTIONS(2429), 1, + [144005] = 3, + ACTIONS(2467), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2427), 25, + ACTIONS(2465), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238599,58 +243975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140526] = 16, - ACTIONS(1235), 1, - anon_sym_None, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_STAR, - ACTIONS(4837), 1, - anon_sym_STAR_STAR, - ACTIONS(4839), 1, - anon_sym_LBRACK, - ACTIONS(4841), 1, - anon_sym_DASH, - ACTIONS(4845), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_integer, - ACTIONS(4849), 1, - sym_float, - ACTIONS(5201), 1, - sym_identifier, - STATE(3895), 1, - sym_string, - STATE(4187), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5315), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4161), 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, - [140587] = 3, - ACTIONS(2405), 1, + [144040] = 3, + ACTIONS(2479), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2403), 25, + ACTIONS(2477), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238676,103 +244007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140622] = 16, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2503), 1, - sym_string_start, - ACTIONS(5005), 1, - anon_sym_LPAREN, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5011), 1, - anon_sym_LBRACK, - ACTIONS(5015), 1, - anon_sym_DASH, - ACTIONS(5019), 1, - anon_sym_LBRACE, - ACTIONS(5021), 1, - sym_integer, - ACTIONS(5023), 1, - sym_float, - ACTIONS(5317), 1, - sym_identifier, - STATE(4112), 1, - sym_string, - STATE(4388), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5319), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4305), 10, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - sym_none, - [140683] = 16, - ACTIONS(2495), 1, - anon_sym_None, - ACTIONS(2503), 1, - sym_string_start, - ACTIONS(5005), 1, - anon_sym_LPAREN, - ACTIONS(5007), 1, - anon_sym_STAR, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5011), 1, - anon_sym_LBRACK, - ACTIONS(5015), 1, - anon_sym_DASH, - ACTIONS(5019), 1, - anon_sym_LBRACE, - ACTIONS(5021), 1, - sym_integer, - ACTIONS(5023), 1, - sym_float, - ACTIONS(5317), 1, - sym_identifier, - STATE(4112), 1, - sym_string, - STATE(4388), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5321), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4306), 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, - [140744] = 3, - ACTIONS(2425), 1, + [144075] = 3, + ACTIONS(2419), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2423), 25, + ACTIONS(2417), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238798,13 +244039,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140779] = 3, - ACTIONS(2409), 1, + [144110] = 3, + ACTIONS(1623), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2407), 25, + ACTIONS(1619), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238830,13 +244071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140814] = 3, - ACTIONS(1589), 1, + [144145] = 3, + ACTIONS(2423), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1585), 25, + ACTIONS(2421), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238862,41 +244103,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140849] = 16, - ACTIONS(1235), 1, + [144180] = 16, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(1247), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(4829), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(4837), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(4839), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(4845), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(4849), 1, + ACTIONS(5119), 1, sym_float, - ACTIONS(5201), 1, + ACTIONS(5419), 1, sym_identifier, - STATE(3895), 1, + STATE(4156), 1, sym_string, - STATE(4187), 1, + STATE(4504), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5323), 3, + ACTIONS(5421), 3, anon_sym__, sym_true, sym_false, - STATE(4207), 10, + STATE(4476), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -238907,41 +244148,41 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [140910] = 16, - ACTIONS(1396), 1, + [144241] = 16, + ACTIONS(1991), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1999), 1, sym_string_start, - ACTIONS(5037), 1, + ACTIONS(5277), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(5279), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(5281), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(5285), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(5289), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5291), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(5293), 1, sym_float, - ACTIONS(5325), 1, + ACTIONS(5407), 1, sym_identifier, - STATE(4043), 1, + STATE(4124), 1, sym_string, - STATE(4375), 1, + STATE(4500), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5327), 3, + ACTIONS(5423), 3, anon_sym__, sym_true, sym_false, - STATE(4474), 10, + STATE(4412), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -238952,41 +244193,41 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [140971] = 16, - ACTIONS(1396), 1, + [144302] = 16, + ACTIONS(1267), 1, anon_sym_None, - ACTIONS(1408), 1, + ACTIONS(1279), 1, sym_string_start, - ACTIONS(5037), 1, + ACTIONS(4925), 1, anon_sym_LPAREN, - ACTIONS(5041), 1, + ACTIONS(4927), 1, anon_sym_STAR, - ACTIONS(5043), 1, + ACTIONS(4933), 1, anon_sym_STAR_STAR, - ACTIONS(5045), 1, + ACTIONS(4935), 1, anon_sym_LBRACK, - ACTIONS(5047), 1, + ACTIONS(4937), 1, anon_sym_DASH, - ACTIONS(5051), 1, + ACTIONS(4941), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(4943), 1, sym_integer, - ACTIONS(5055), 1, + ACTIONS(4945), 1, sym_float, - ACTIONS(5325), 1, + ACTIONS(5307), 1, sym_identifier, - STATE(4043), 1, + STATE(3940), 1, sym_string, - STATE(4375), 1, + STATE(4265), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5329), 3, + ACTIONS(5425), 3, anon_sym__, sym_true, sym_false, - STATE(4400), 10, + STATE(4228), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -238997,41 +244238,41 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [141032] = 16, - ACTIONS(2025), 1, + [144363] = 16, + ACTIONS(2527), 1, anon_sym_None, - ACTIONS(2033), 1, + ACTIONS(2535), 1, sym_string_start, - ACTIONS(5141), 1, + ACTIONS(5101), 1, anon_sym_LPAREN, - ACTIONS(5143), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5105), 1, anon_sym_STAR_STAR, - ACTIONS(5147), 1, + ACTIONS(5107), 1, anon_sym_LBRACK, - ACTIONS(5149), 1, + ACTIONS(5111), 1, anon_sym_DASH, - ACTIONS(5153), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(5155), 1, + ACTIONS(5117), 1, sym_integer, - ACTIONS(5157), 1, + ACTIONS(5119), 1, sym_float, - ACTIONS(5311), 1, + ACTIONS(5419), 1, sym_identifier, - STATE(4005), 1, + STATE(4156), 1, sym_string, - STATE(4453), 1, + STATE(4504), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5331), 3, + ACTIONS(5427), 3, anon_sym__, sym_true, sym_false, - STATE(4298), 10, + STATE(4478), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -239042,13 +244283,13 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [141093] = 3, - ACTIONS(2413), 1, + [144424] = 3, + ACTIONS(2431), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 25, + ACTIONS(2429), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239074,24 +244315,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141128] = 16, + [144459] = 16, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4774), 1, - anon_sym_class, - STATE(3133), 1, + ACTIONS(5257), 1, + anon_sym_ctypedef, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3877), 1, + STATE(3868), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -239102,10 +244343,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(2736), 2, + STATE(2789), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -239118,24 +244359,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141188] = 16, + [144519] = 16, ACTIONS(371), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4810), 1, + ACTIONS(5255), 1, anon_sym_class, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3190), 1, + STATE(3228), 1, sym_int_type, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(3609), 1, + STATE(3623), 1, sym_operator_name, - STATE(3876), 1, + STATE(3868), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, @@ -239146,10 +244387,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(2736), 2, + STATE(2789), 2, sym_storageclass, aux_sym_class_definition_repeat1, ACTIONS(365), 3, @@ -239162,228 +244403,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141248] = 16, - ACTIONS(371), 1, + [144579] = 20, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(5429), 1, sym_identifier, - ACTIONS(5179), 1, - anon_sym_class, - STATE(3133), 1, + ACTIONS(5431), 1, + anon_sym_LPAREN, + ACTIONS(5433), 1, + anon_sym_RPAREN, + ACTIONS(5435), 1, + anon_sym_DOT_DOT_DOT, + STATE(3209), 1, sym__signedness, - STATE(3190), 1, + STATE(3220), 1, sym_int_type, - STATE(3376), 1, + STATE(3417), 1, sym__longness, - STATE(3609), 1, + STATE(3474), 1, + sym_function_pointer_type, + STATE(3583), 1, sym_operator_name, - STATE(3841), 1, + STATE(4681), 1, sym_maybe_typed_name, + STATE(5731), 1, + sym_c_type, + STATE(5756), 1, + sym__typedargslist, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(5437), 2, anon_sym_const, anon_sym_volatile, - STATE(2736), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + STATE(5186), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1380), 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, - [141308] = 16, - ACTIONS(371), 1, + [144647] = 20, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(3982), 1, + ACTIONS(4994), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(4110), 1, + ACTIONS(5429), 1, sym_identifier, - ACTIONS(5181), 1, - anon_sym_ctypedef, - STATE(3133), 1, + ACTIONS(5431), 1, + anon_sym_LPAREN, + ACTIONS(5439), 1, + anon_sym_RPAREN, + STATE(3209), 1, sym__signedness, - STATE(3190), 1, + STATE(3220), 1, sym_int_type, - STATE(3376), 1, + STATE(3417), 1, sym__longness, - STATE(3609), 1, + STATE(3474), 1, + sym_function_pointer_type, + STATE(3583), 1, sym_operator_name, - STATE(3841), 1, + STATE(4681), 1, sym_maybe_typed_name, + STATE(5670), 1, + sym__typedargslist, + STATE(5731), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(3984), 2, + ACTIONS(5437), 2, anon_sym_const, anon_sym_volatile, - STATE(2736), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + STATE(5186), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1380), 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, - [141368] = 20, - ACTIONS(1356), 1, + [144715] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4303), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4289), 23, + 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_by, + 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, + [144749] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4623), 23, + 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_by, + 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, + [144783] = 16, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(4907), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4909), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5333), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(5335), 1, - anon_sym_LPAREN, - ACTIONS(5337), 1, - anon_sym_RPAREN, - STATE(3156), 1, + ACTIONS(4903), 1, + anon_sym_class, + STATE(3210), 1, sym__signedness, - STATE(3161), 1, + STATE(3228), 1, sym_int_type, - STATE(3364), 1, + STATE(3416), 1, sym__longness, - STATE(3434), 1, - sym_function_pointer_type, - STATE(3535), 1, + STATE(3623), 1, sym_operator_name, - STATE(4514), 1, + STATE(3931), 1, sym_maybe_typed_name, - STATE(5423), 1, - sym_c_type, - STATE(5510), 1, - sym__typedargslist, 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(5339), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(4968), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1348), 3, + STATE(2789), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [141436] = 20, - ACTIONS(1356), 1, + ACTIONS(103), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [144843] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4641), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4639), 23, + 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_by, + 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, + [144877] = 16, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(4909), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5333), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(5335), 1, - anon_sym_LPAREN, - ACTIONS(5341), 1, - anon_sym_RPAREN, - ACTIONS(5343), 1, - anon_sym_DOT_DOT_DOT, - STATE(3156), 1, + ACTIONS(4886), 1, + anon_sym_class, + STATE(3210), 1, sym__signedness, - STATE(3161), 1, + STATE(3228), 1, sym_int_type, - STATE(3364), 1, + STATE(3416), 1, sym__longness, - STATE(3434), 1, - sym_function_pointer_type, - STATE(3535), 1, + STATE(3623), 1, sym_operator_name, - STATE(4514), 1, + STATE(3900), 1, sym_maybe_typed_name, - STATE(5409), 1, - sym__typedargslist, - STATE(5423), 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(5339), 2, + ACTIONS(4032), 2, anon_sym_const, anon_sym_volatile, - STATE(4968), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1348), 3, + STATE(2789), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [141504] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5345), 12, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, + ACTIONS(103), 5, anon_sym_api, - sym_true, - sym_false, - anon_sym_sizeof, - ACTIONS(5347), 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, - [141537] = 3, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [144937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4476), 2, + ACTIONS(4656), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4474), 22, + ACTIONS(4654), 23, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -239392,6 +244696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_else, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, @@ -239406,16 +244711,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [141570] = 3, + [144971] = 19, + ACTIONS(1388), 1, + anon_sym_long, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5429), 1, + sym_identifier, + ACTIONS(5431), 1, + anon_sym_LPAREN, + ACTIONS(5441), 1, + anon_sym_RPAREN, + ACTIONS(5443), 1, + anon_sym_DOT_DOT_DOT, + STATE(3209), 1, + sym__signedness, + STATE(3220), 1, + sym_int_type, + STATE(3417), 1, + sym__longness, + STATE(3474), 1, + sym_function_pointer_type, + STATE(3583), 1, + sym_operator_name, + STATE(4681), 1, + sym_maybe_typed_name, + STATE(5731), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1384), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1386), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5437), 2, + anon_sym_const, + anon_sym_volatile, + STATE(5266), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1380), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [145036] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4442), 4, + ACTIONS(4542), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, - ACTIONS(4444), 20, + ACTIONS(4544), 20, anon_sym_class, sym_identifier, anon_sym_api, @@ -239436,11 +244787,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141603] = 3, + [145069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5349), 12, + ACTIONS(5445), 12, anon_sym_print, anon_sym_match, anon_sym_async, @@ -239453,7 +244804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, anon_sym_sizeof, - ACTIONS(5351), 12, + ACTIONS(5447), 12, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, @@ -239466,92 +244817,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - [141636] = 19, - ACTIONS(1356), 1, + [145102] = 9, + ACTIONS(4350), 1, + anon_sym_EQ, + ACTIONS(4355), 1, + anon_sym_not, + ACTIONS(4669), 1, + anon_sym_is, + STATE(3147), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4672), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1983), 2, + sym__not_in, + sym__is_not, + ACTIONS(4666), 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(4348), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [145147] = 9, + ACTIONS(4313), 1, + anon_sym_not, + ACTIONS(4342), 1, + anon_sym_EQ, + ACTIONS(4402), 1, + anon_sym_is, + STATE(3147), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4404), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1983), 2, + sym__not_in, + sym__is_not, + ACTIONS(4386), 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(4340), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [145192] = 19, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5333), 1, + ACTIONS(5429), 1, sym_identifier, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5353), 1, + ACTIONS(5449), 1, anon_sym_RPAREN, - ACTIONS(5355), 1, + ACTIONS(5451), 1, anon_sym_DOT_DOT_DOT, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3161), 1, + STATE(3220), 1, sym_int_type, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(3434), 1, + STATE(3474), 1, sym_function_pointer_type, - STATE(3535), 1, + STATE(3583), 1, sym_operator_name, - STATE(4514), 1, + STATE(4681), 1, sym_maybe_typed_name, - STATE(5423), 1, + STATE(5731), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5339), 2, + ACTIONS(5437), 2, anon_sym_const, anon_sym_volatile, - STATE(5286), 2, + STATE(5266), 2, sym_c_function_argument_type, sym__typedargument, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [141701] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4207), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4193), 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_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, - [141734] = 3, + [145257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4446), 4, + ACTIONS(4538), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, - ACTIONS(4448), 20, + ACTIONS(4540), 20, anon_sym_class, sym_identifier, anon_sym_api, @@ -239572,68 +244965,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141767] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4491), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4489), 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_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, - [141800] = 14, - ACTIONS(3928), 1, + [145290] = 14, + ACTIONS(4100), 1, sym_identifier, - ACTIONS(3930), 1, + ACTIONS(4102), 1, anon_sym_LPAREN, - ACTIONS(3942), 1, + ACTIONS(4114), 1, anon_sym_long, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(3472), 1, + STATE(3520), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(3944), 2, + ACTIONS(4116), 2, anon_sym_const, anon_sym_volatile, - STATE(2736), 2, + STATE(2789), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3716), 2, + STATE(3698), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -239643,113 +245006,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141855] = 3, + [145345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4460), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4458), 22, - anon_sym_DOT, + ACTIONS(5453), 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(5455), 12, + sym_string_start, anon_sym_LPAREN, - 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_STAR, anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, 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, - [141888] = 19, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5333), 1, - sym_identifier, - ACTIONS(5335), 1, - anon_sym_LPAREN, - ACTIONS(5357), 1, - anon_sym_RPAREN, - ACTIONS(5359), 1, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - STATE(3156), 1, - sym__signedness, - STATE(3161), 1, - sym_int_type, - STATE(3364), 1, - sym__longness, - STATE(3434), 1, - sym_function_pointer_type, - STATE(3535), 1, - sym_operator_name, - STATE(4514), 1, - sym_maybe_typed_name, - STATE(5423), 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(5339), 2, - anon_sym_const, - anon_sym_volatile, - STATE(5286), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [141953] = 13, - ACTIONS(3710), 1, + sym_float, + [145378] = 13, + ACTIONS(3806), 1, anon_sym_SLASH, - ACTIONS(3720), 1, + ACTIONS(3816), 1, anon_sym_COMMA, - ACTIONS(4247), 1, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4249), 1, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4255), 1, + ACTIONS(4331), 1, anon_sym_complex, - STATE(3412), 1, + STATE(3441), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, + ACTIONS(3799), 2, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(3554), 2, + STATE(3597), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3699), 9, + ACTIONS(3795), 9, anon_sym_GT_GT, anon_sym_AT, anon_sym_DASH, @@ -239759,134 +245076,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - [142006] = 9, - ACTIONS(4217), 1, + [145431] = 9, + ACTIONS(4350), 1, + anon_sym_as, + ACTIONS(4355), 1, anon_sym_not, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(4438), 1, + ACTIONS(4706), 1, anon_sym_is, - STATE(3097), 1, + STATE(3154), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4440), 2, + ACTIONS(4709), 2, anon_sym_LT, anon_sym_GT, - STATE(1917), 2, + STATE(2013), 2, sym__not_in, sym__is_not, - ACTIONS(4422), 6, + ACTIONS(4703), 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(4227), 9, - anon_sym_DOT, + ACTIONS(4348), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [142050] = 9, - ACTIONS(4233), 1, - anon_sym_EQ, - ACTIONS(4238), 1, + [145474] = 9, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4684), 1, + ACTIONS(4342), 1, + anon_sym_as, + ACTIONS(4446), 1, anon_sym_is, - STATE(3097), 1, + STATE(3154), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4687), 2, + ACTIONS(4448), 2, anon_sym_LT, anon_sym_GT, - STATE(1917), 2, + STATE(2013), 2, sym__not_in, sym__is_not, - ACTIONS(4681), 6, + ACTIONS(4430), 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(4231), 9, - anon_sym_DOT, + ACTIONS(4340), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [142094] = 9, - ACTIONS(4217), 1, + [145517] = 8, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4229), 1, - anon_sym_as, - ACTIONS(4324), 1, + ACTIONS(4699), 1, anon_sym_is, - STATE(3100), 1, + STATE(3157), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4326), 2, + ACTIONS(4701), 2, anon_sym_LT, anon_sym_GT, - STATE(2006), 2, + STATE(1970), 2, sym__not_in, sym__is_not, - ACTIONS(4308), 6, + ACTIONS(4683), 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(4227), 8, + ACTIONS(4340), 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, - [142137] = 8, - ACTIONS(4217), 1, + [145558] = 8, + ACTIONS(4355), 1, anon_sym_not, - ACTIONS(4602), 1, + ACTIONS(4809), 1, anon_sym_is, - STATE(3103), 1, + STATE(3157), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4604), 2, + ACTIONS(4812), 2, anon_sym_LT, anon_sym_GT, - STATE(1954), 2, + STATE(1970), 2, sym__not_in, sym__is_not, - ACTIONS(4586), 6, + ACTIONS(4806), 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(4227), 9, + ACTIONS(4348), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -239896,66 +245210,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [142178] = 9, - ACTIONS(4233), 1, - anon_sym_as, - ACTIONS(4238), 1, + [145599] = 9, + ACTIONS(4350), 1, + anon_sym_EQ, + ACTIONS(4355), 1, anon_sym_not, - ACTIONS(4504), 1, + ACTIONS(4715), 1, anon_sym_is, - STATE(3100), 1, + STATE(3158), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4507), 2, + ACTIONS(4718), 2, anon_sym_LT, anon_sym_GT, - STATE(2006), 2, + STATE(1993), 2, sym__not_in, sym__is_not, - ACTIONS(4501), 6, + ACTIONS(4712), 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(4231), 8, + ACTIONS(4348), 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, - [142221] = 9, - ACTIONS(4217), 1, + sym_type_conversion, + [145642] = 9, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4229), 1, + ACTIONS(4342), 1, anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4474), 1, anon_sym_is, - STATE(3104), 1, + STATE(3158), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4298), 2, + ACTIONS(4476), 2, anon_sym_LT, anon_sym_GT, - STATE(1985), 2, + STATE(1993), 2, sym__not_in, sym__is_not, - ACTIONS(4280), 6, + ACTIONS(4458), 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(4227), 8, + ACTIONS(4340), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -239964,165 +245278,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [142264] = 17, - ACTIONS(1356), 1, + [145685] = 17, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5333), 1, + ACTIONS(5429), 1, sym_identifier, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3161), 1, + STATE(3220), 1, sym_int_type, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(3434), 1, + STATE(3474), 1, sym_function_pointer_type, - STATE(3535), 1, + STATE(3583), 1, sym_operator_name, - STATE(4514), 1, + STATE(4681), 1, sym_maybe_typed_name, - STATE(5423), 1, + STATE(5731), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5339), 2, + ACTIONS(5437), 2, anon_sym_const, anon_sym_volatile, - STATE(5286), 2, + STATE(5266), 2, sym_c_function_argument_type, sym__typedargument, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [142323] = 8, - ACTIONS(4238), 1, - anon_sym_not, - ACTIONS(4710), 1, - anon_sym_is, - STATE(3103), 1, - aux_sym_comparison_operator_repeat1, + [145744] = 17, + ACTIONS(5457), 1, + sym_identifier, + ACTIONS(5459), 1, + anon_sym_LPAREN, + ACTIONS(5461), 1, + anon_sym_COLON, + ACTIONS(5463), 1, + anon_sym_RBRACK, + ACTIONS(5465), 1, + sym_integer, + ACTIONS(5473), 1, + anon_sym_long, + STATE(3438), 1, + sym__signedness, + STATE(3589), 1, + sym__longness, + STATE(4496), 1, + sym_c_type, + STATE(5119), 1, + sym_memory_view_index, + STATE(5127), 1, + sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4713), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1954), 2, - sym__not_in, - sym__is_not, - ACTIONS(4707), 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(4231), 9, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(5469), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5471), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5475), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3565), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5467), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [145803] = 9, + ACTIONS(4350), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [142364] = 9, - ACTIONS(4233), 1, - anon_sym_EQ, - ACTIONS(4238), 1, + ACTIONS(4355), 1, anon_sym_not, - ACTIONS(4513), 1, + ACTIONS(4792), 1, anon_sym_is, - STATE(3104), 1, + STATE(3162), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4516), 2, + ACTIONS(4795), 2, anon_sym_LT, anon_sym_GT, - STATE(1985), 2, + STATE(2053), 2, sym__not_in, sym__is_not, - ACTIONS(4510), 6, + ACTIONS(4789), 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(4231), 8, + ACTIONS(4348), 7, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - sym_type_conversion, - [142407] = 17, - ACTIONS(5361), 1, - sym_identifier, - ACTIONS(5363), 1, + [145845] = 16, + ACTIONS(5459), 1, anon_sym_LPAREN, - ACTIONS(5365), 1, + ACTIONS(5461), 1, anon_sym_COLON, - ACTIONS(5367), 1, + ACTIONS(5473), 1, + anon_sym_long, + ACTIONS(5477), 1, + sym_identifier, + ACTIONS(5479), 1, anon_sym_RBRACK, - ACTIONS(5369), 1, + ACTIONS(5481), 1, sym_integer, - ACTIONS(5377), 1, - anon_sym_long, - STATE(3359), 1, + STATE(3438), 1, sym__signedness, - STATE(3550), 1, + STATE(3589), 1, sym__longness, - STATE(4415), 1, + STATE(4387), 1, sym_c_type, - STATE(5010), 1, - sym_template_param, - STATE(5079), 1, + STATE(5025), 1, sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5373), 2, + ACTIONS(5469), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5375), 2, + ACTIONS(5471), 2, anon_sym_char, anon_sym_short, - ACTIONS(5379), 2, + ACTIONS(5475), 2, anon_sym_const, anon_sym_volatile, - STATE(3469), 2, + STATE(3565), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5371), 3, + ACTIONS(5467), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [142466] = 3, + [145901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3883), 2, + ACTIONS(3963), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3881), 19, + ACTIONS(3961), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -240142,116 +245462,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [142496] = 16, - ACTIONS(5363), 1, - anon_sym_LPAREN, - ACTIONS(5365), 1, - anon_sym_COLON, - ACTIONS(5377), 1, - anon_sym_long, - ACTIONS(5381), 1, - sym_identifier, - ACTIONS(5383), 1, - anon_sym_RBRACK, - ACTIONS(5385), 1, - sym_integer, - STATE(3359), 1, - sym__signedness, - STATE(3550), 1, - sym__longness, - STATE(4401), 1, - sym_c_type, - STATE(5044), 1, - sym_memory_view_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5373), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5375), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5379), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3469), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5371), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [142552] = 4, + [145931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(3963), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3885), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(3699), 14, + ACTIONS(3961), 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, - [142584] = 4, + sym_type_conversion, + [145961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 2, + ACTIONS(3982), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3877), 5, + ACTIONS(3980), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, sym_type_conversion, - ACTIONS(3870), 14, + [145991] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3982), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3980), 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, - [142616] = 4, + sym_type_conversion, + [146021] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, + ACTIONS(813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(967), 5, + ACTIONS(1327), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(931), 14, + anon_sym_not, + anon_sym_or, + ACTIONS(811), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240266,32 +245571,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [142648] = 9, - ACTIONS(4217), 1, - anon_sym_not, - ACTIONS(4229), 1, + [146053] = 9, + ACTIONS(4350), 1, anon_sym_as, - ACTIONS(4410), 1, + ACTIONS(4355), 1, + anon_sym_not, + ACTIONS(4780), 1, anon_sym_is, - STATE(3117), 1, + STATE(3169), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4412), 2, + ACTIONS(4783), 2, anon_sym_LT, anon_sym_GT, - STATE(1916), 2, + STATE(2031), 2, sym__not_in, sym__is_not, - ACTIONS(4394), 6, + ACTIONS(4777), 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(4227), 7, + ACTIONS(4348), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -240299,155 +245604,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [142690] = 4, - ACTIONS(5387), 1, - anon_sym_STAR, + [146095] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4328), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(3974), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3816), 5, 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, - [142722] = 16, - ACTIONS(5363), 1, - anon_sym_LPAREN, - ACTIONS(5365), 1, - anon_sym_COLON, - ACTIONS(5377), 1, - anon_sym_long, - ACTIONS(5381), 1, - sym_identifier, - ACTIONS(5389), 1, - anon_sym_RBRACK, - ACTIONS(5391), 1, - sym_integer, - STATE(3359), 1, - sym__signedness, - STATE(3550), 1, - sym__longness, - STATE(4424), 1, - sym_c_type, - STATE(4764), 1, - sym_memory_view_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5373), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5375), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5379), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3469), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5371), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [142778] = 16, - ACTIONS(5363), 1, - anon_sym_LPAREN, - ACTIONS(5365), 1, - anon_sym_COLON, - ACTIONS(5377), 1, - anon_sym_long, - ACTIONS(5381), 1, - sym_identifier, - ACTIONS(5393), 1, - anon_sym_RBRACK, - ACTIONS(5395), 1, - sym_integer, - STATE(3359), 1, - sym__signedness, - STATE(3550), 1, - sym__longness, - STATE(4345), 1, - sym_c_type, - STATE(4797), 1, - sym_memory_view_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5373), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5375), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5379), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3469), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5371), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [142834] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3914), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3912), 19, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(3969), 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, - [142864] = 4, + [146127] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, + ACTIONS(1329), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3315), 5, - anon_sym_RPAREN, + ACTIONS(1327), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(931), 14, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1530), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240462,53 +245660,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [142896] = 9, - ACTIONS(4233), 1, + [146159] = 4, + ACTIONS(5483), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4416), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4406), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, anon_sym_as, - ACTIONS(4238), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [146191] = 9, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4672), 1, + ACTIONS(4342), 1, + anon_sym_as, + ACTIONS(4502), 1, anon_sym_is, - STATE(3117), 1, + STATE(3162), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4675), 2, + ACTIONS(4504), 2, anon_sym_LT, anon_sym_GT, - STATE(1916), 2, + STATE(2053), 2, sym__not_in, sym__is_not, - ACTIONS(4669), 6, + ACTIONS(4486), 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(4231), 7, - anon_sym_RPAREN, + ACTIONS(4340), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [142938] = 4, + [146233] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(3806), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5397), 5, - anon_sym_RPAREN, + ACTIONS(3816), 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(3795), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240523,201 +245749,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [142970] = 16, - ACTIONS(5363), 1, - anon_sym_LPAREN, - ACTIONS(5365), 1, - anon_sym_COLON, - ACTIONS(5367), 1, - anon_sym_RBRACK, - ACTIONS(5369), 1, - sym_integer, - ACTIONS(5377), 1, - anon_sym_long, - ACTIONS(5381), 1, - sym_identifier, - STATE(3359), 1, - sym__signedness, - STATE(3550), 1, - sym__longness, - STATE(4415), 1, - sym_c_type, - STATE(5079), 1, - sym_memory_view_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5373), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5375), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5379), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3469), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5371), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [143026] = 9, - ACTIONS(4217), 1, + [146265] = 9, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4229), 1, + ACTIONS(4342), 1, anon_sym_as, - ACTIONS(4382), 1, + ACTIONS(4534), 1, anon_sym_is, - STATE(3128), 1, + STATE(3169), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4384), 2, + ACTIONS(4536), 2, anon_sym_LT, anon_sym_GT, - STATE(1903), 2, + STATE(2031), 2, sym__not_in, sym__is_not, - ACTIONS(4366), 6, + ACTIONS(4518), 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(4227), 7, + ACTIONS(4340), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [143068] = 3, + [146307] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 2, + ACTIONS(3806), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3866), 19, + ACTIONS(3947), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(3795), 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, - [143098] = 3, + [146339] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3868), 2, + ACTIONS(813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3866), 19, + ACTIONS(847), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(811), 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, - [143128] = 3, + [146371] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 2, + ACTIONS(3989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3908), 19, + ACTIONS(3993), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(3984), 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, - [143158] = 3, + [146403] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3910), 2, + ACTIONS(4000), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3908), 19, + ACTIONS(4004), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(3995), 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, - [143188] = 4, + [146435] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, + ACTIONS(3954), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1295), 5, - anon_sym_RPAREN, + ACTIONS(3947), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(931), 14, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(3951), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240732,14 +245922,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143220] = 3, + [146467] = 16, + ACTIONS(5459), 1, + anon_sym_LPAREN, + ACTIONS(5461), 1, + anon_sym_COLON, + ACTIONS(5473), 1, + anon_sym_long, + ACTIONS(5477), 1, + sym_identifier, + ACTIONS(5485), 1, + anon_sym_RBRACK, + ACTIONS(5487), 1, + sym_integer, + STATE(3438), 1, + sym__signedness, + STATE(3589), 1, + sym__longness, + STATE(4506), 1, + sym_c_type, + STATE(5173), 1, + sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 2, + ACTIONS(5469), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5471), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5475), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3565), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5467), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [146523] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3978), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3862), 19, + ACTIONS(3976), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -240759,20 +245989,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [143250] = 4, + [146553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 2, + ACTIONS(4010), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3860), 5, + ACTIONS(4008), 19, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, sym_type_conversion, - ACTIONS(3851), 14, + [146583] = 16, + ACTIONS(5459), 1, + anon_sym_LPAREN, + ACTIONS(5461), 1, + anon_sym_COLON, + ACTIONS(5473), 1, + anon_sym_long, + ACTIONS(5477), 1, + sym_identifier, + ACTIONS(5489), 1, + anon_sym_RBRACK, + ACTIONS(5491), 1, + sym_integer, + STATE(3438), 1, + sym__signedness, + STATE(3589), 1, + sym__longness, + STATE(4521), 1, + sym_c_type, + STATE(4829), 1, + sym_memory_view_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5469), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5471), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5475), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3565), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5467), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [146639] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(813), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3391), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(811), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240787,84 +246084,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143282] = 9, - ACTIONS(4233), 1, - anon_sym_as, - ACTIONS(4238), 1, - anon_sym_not, - ACTIONS(4696), 1, - anon_sym_is, - STATE(3128), 1, - aux_sym_comparison_operator_repeat1, + [146671] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4699), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1903), 2, - sym__not_in, - sym__is_not, - ACTIONS(4693), 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(4231), 7, + ACTIONS(3806), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5493), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, + anon_sym_COLON, + anon_sym_not, anon_sym_or, - [143324] = 4, + ACTIONS(3795), 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, + [146703] = 16, + ACTIONS(5459), 1, + anon_sym_LPAREN, + ACTIONS(5461), 1, + anon_sym_COLON, + ACTIONS(5463), 1, + anon_sym_RBRACK, + ACTIONS(5465), 1, + sym_integer, + ACTIONS(5473), 1, + anon_sym_long, + ACTIONS(5477), 1, + sym_identifier, + STATE(3438), 1, + sym__signedness, + STATE(3589), 1, + sym__longness, + STATE(4496), 1, + sym_c_type, + STATE(5119), 1, + sym_memory_view_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5469), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5471), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5475), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3565), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5467), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [146759] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 2, + ACTIONS(3967), 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(3897), 14, + ACTIONS(3965), 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, - [143356] = 4, + sym_type_conversion, + [146789] = 14, + ACTIONS(4323), 1, + anon_sym_DOT, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5495), 1, + sym_identifier, + ACTIONS(5500), 1, + anon_sym_complex, + STATE(3199), 1, + aux_sym_class_definition_repeat2, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3890), 2, + ACTIONS(4325), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3885), 5, - anon_sym_COMMA, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5497), 2, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3887), 14, + STATE(3315), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3578), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(3799), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [146840] = 6, + ACTIONS(5502), 1, + anon_sym_as, + ACTIONS(5505), 1, + anon_sym_and, + ACTIONS(5507), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4648), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4643), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_if, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -240876,23 +246245,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143388] = 4, + [146875] = 5, + ACTIONS(5505), 1, + anon_sym_and, + ACTIONS(5507), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(4652), 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(3699), 14, + ACTIONS(4650), 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, @@ -240904,80 +246273,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143420] = 4, + [146908] = 4, + ACTIONS(5505), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1297), 2, + ACTIONS(4656), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1295), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1498), 14, + ACTIONS(4654), 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, - [143452] = 7, - ACTIONS(371), 1, - anon_sym_long, - STATE(3357), 1, - sym__longness, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5403), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5405), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5399), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5401), 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, - [143489] = 7, - ACTIONS(5407), 1, - anon_sym_as, - ACTIONS(5409), 1, - anon_sym_if, - ACTIONS(5411), 1, + [146939] = 7, + ACTIONS(5505), 1, anon_sym_and, - ACTIONS(5413), 1, + ACTIONS(5507), 1, anon_sym_or, + ACTIONS(5509), 1, + anon_sym_as, + ACTIONS(5511), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4495), 2, + ACTIONS(4660), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4493), 14, + ACTIONS(4658), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -240992,59 +246330,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143526] = 14, - ACTIONS(4247), 1, - anon_sym_DOT, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5415), 1, - sym_identifier, - ACTIONS(5417), 1, - anon_sym_LPAREN, - ACTIONS(5422), 1, - anon_sym_complex, - STATE(3141), 1, - aux_sym_class_definition_repeat2, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3240), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3562), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5420), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [143577] = 7, - ACTIONS(5407), 1, - anon_sym_as, - ACTIONS(5409), 1, - anon_sym_if, - ACTIONS(5411), 1, + [146976] = 7, + ACTIONS(5505), 1, anon_sym_and, - ACTIONS(5413), 1, + ACTIONS(5507), 1, anon_sym_or, + ACTIONS(5509), 1, + anon_sym_as, + ACTIONS(5511), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4499), 2, + ACTIONS(4664), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4497), 14, + ACTIONS(4662), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -241059,236 +246360,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143614] = 14, - ACTIONS(4247), 1, + [147013] = 14, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5424), 1, + ACTIONS(5513), 1, sym_identifier, - ACTIONS(5430), 1, + ACTIONS(5515), 1, + anon_sym_LPAREN, + ACTIONS(5520), 1, anon_sym_complex, - STATE(3305), 1, + STATE(3323), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5428), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3280), 2, + STATE(3340), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3561), 2, + STATE(3626), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5426), 3, - anon_sym_LPAREN, + ACTIONS(5518), 4, anon_sym_RPAREN, anon_sym_COMMA, - [143665] = 15, - ACTIONS(3701), 1, + anon_sym_COLON, + anon_sym_EQ, + [147064] = 14, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(3982), 1, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(4772), 1, - anon_sym_COLON, - ACTIONS(5432), 1, + ACTIONS(5522), 1, sym_identifier, - ACTIONS(5434), 1, + ACTIONS(5524), 1, anon_sym_LPAREN, - ACTIONS(5441), 1, - anon_sym_LBRACK, - ACTIONS(5445), 1, + ACTIONS(5528), 1, anon_sym_complex, - STATE(3168), 1, + STATE(3323), 1, aux_sym_class_definition_repeat2, - STATE(3447), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3354), 2, + STATE(3303), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3620), 2, + STATE(3654), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5438), 3, - sym__newline, + ACTIONS(5526), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [143718] = 14, - ACTIONS(4247), 1, + [147115] = 14, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5424), 1, + ACTIONS(5522), 1, sym_identifier, - ACTIONS(5426), 1, + ACTIONS(5530), 1, anon_sym_LPAREN, - ACTIONS(5447), 1, + ACTIONS(5532), 1, anon_sym_complex, - STATE(3305), 1, + STATE(3323), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3326), 2, + STATE(3344), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3561), 2, + STATE(3654), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5428), 4, + ACTIONS(5526), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [143769] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(933), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1295), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(931), 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, - [143800] = 14, - ACTIONS(4247), 1, + [147166] = 14, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5449), 1, + ACTIONS(5534), 1, sym_identifier, - ACTIONS(5451), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5455), 1, + ACTIONS(5542), 1, anon_sym_complex, - STATE(3305), 1, + STATE(3195), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3318), 2, + STATE(3347), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3588), 2, + STATE(3660), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5453), 4, + ACTIONS(5539), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [143851] = 15, - ACTIONS(4247), 1, + [147217] = 14, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5449), 1, + ACTIONS(5522), 1, sym_identifier, - ACTIONS(5457), 1, - anon_sym_LPAREN, - ACTIONS(5462), 1, + ACTIONS(5544), 1, anon_sym_complex, - STATE(3305), 1, + STATE(3323), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5453), 2, + ACTIONS(5526), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(5460), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3346), 2, + STATE(3326), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3588), 2, + STATE(3654), 2, sym_operator_name, sym_c_function_pointer_name, - [143904] = 7, - ACTIONS(5407), 1, - anon_sym_as, - ACTIONS(5409), 1, - anon_sym_if, - ACTIONS(5411), 1, - anon_sym_and, - ACTIONS(5413), 1, - anon_sym_or, + ACTIONS(5530), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [147268] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4552), 2, + ACTIONS(3806), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4550), 14, + ACTIONS(3947), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(3795), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -241303,199 +246572,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [143941] = 15, - ACTIONS(4247), 1, + [147299] = 15, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5415), 1, + ACTIONS(5534), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5472), 1, + ACTIONS(5548), 1, anon_sym_complex, - STATE(3142), 1, + STATE(3212), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5467), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5469), 2, + ACTIONS(5539), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3296), 2, + ACTIONS(5546), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3329), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3562), 2, + STATE(3660), 2, sym_operator_name, sym_c_function_pointer_name, - [143994] = 7, - ACTIONS(5407), 1, - anon_sym_as, - ACTIONS(5409), 1, - anon_sym_if, - ACTIONS(5411), 1, - anon_sym_and, - ACTIONS(5413), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4466), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4462), 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, - [144031] = 14, - ACTIONS(4247), 1, + [147352] = 15, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5415), 1, + ACTIONS(5534), 1, sym_identifier, - ACTIONS(5464), 1, + ACTIONS(5550), 1, anon_sym_LPAREN, - ACTIONS(5474), 1, + ACTIONS(5557), 1, anon_sym_complex, - STATE(3163), 1, + STATE(3215), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3340), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3562), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5469), 4, + ACTIONS(5553), 2, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(5555), 2, anon_sym_COLON, anon_sym_EQ, - [144082] = 14, - ACTIONS(4247), 1, - anon_sym_DOT, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5476), 1, - sym_identifier, - ACTIONS(5478), 1, - anon_sym_complex, - STATE(3137), 1, - aux_sym_class_definition_repeat2, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5438), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3327), 2, + STATE(3331), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3540), 2, + STATE(3660), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(3703), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [144133] = 15, - ACTIONS(3701), 1, + [147405] = 14, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(3982), 1, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5432), 1, + ACTIONS(5534), 1, sym_identifier, - ACTIONS(5434), 1, + ACTIONS(5550), 1, anon_sym_LPAREN, - ACTIONS(5441), 1, - anon_sym_LBRACK, - ACTIONS(5445), 1, + ACTIONS(5559), 1, anon_sym_complex, - ACTIONS(5480), 1, - anon_sym_COLON, - STATE(3168), 1, + STATE(3215), 1, aux_sym_class_definition_repeat2, - STATE(3447), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3354), 2, + STATE(3349), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3620), 2, + STATE(3660), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5438), 3, - sym__newline, + ACTIONS(5555), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [144186] = 4, + [147456] = 7, + ACTIONS(5505), 1, + anon_sym_and, + ACTIONS(5507), 1, + anon_sym_or, + ACTIONS(5509), 1, + anon_sym_as, + ACTIONS(5511), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(4731), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5397), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(3699), 14, + ACTIONS(4729), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -241510,19 +246715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144217] = 4, + [147493] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3885), 4, + ACTIONS(1327), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_not, anon_sym_or, - ACTIONS(3699), 14, + ACTIONS(811), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -241537,24 +246742,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144248] = 6, - ACTIONS(5411), 1, + [147524] = 14, + ACTIONS(4323), 1, + anon_sym_DOT, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5495), 1, + sym_identifier, + ACTIONS(5565), 1, + anon_sym_complex, + STATE(3196), 1, + aux_sym_class_definition_repeat2, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5563), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3317), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3578), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5561), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [147575] = 7, + ACTIONS(5505), 1, anon_sym_and, - ACTIONS(5413), 1, + ACTIONS(5507), 1, anon_sym_or, - ACTIONS(5482), 1, + ACTIONS(5509), 1, anon_sym_as, + ACTIONS(5511), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4483), 2, + ACTIONS(4599), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4478), 15, + ACTIONS(4597), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -241566,74 +246809,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144283] = 5, - ACTIONS(5411), 1, - anon_sym_and, - ACTIONS(5413), 1, - anon_sym_or, + [147612] = 15, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(4884), 1, + anon_sym_COLON, + ACTIONS(5567), 1, + sym_identifier, + ACTIONS(5569), 1, + anon_sym_LPAREN, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5577), 1, + anon_sym_complex, + STATE(3247), 1, + aux_sym_class_definition_repeat2, + STATE(3494), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4487), 2, + ACTIONS(3804), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4485), 16, + anon_sym___stdcall, + ACTIONS(3820), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3418), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3622), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5497), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [147665] = 7, + ACTIONS(1388), 1, + anon_sym_long, + STATE(3435), 1, + sym__longness, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5583), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5585), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5579), 5, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5581), 9, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, 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, - [144316] = 4, - ACTIONS(5411), 1, - anon_sym_and, + [147702] = 7, + ACTIONS(371), 1, + anon_sym_long, + STATE(3421), 1, + sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4491), 2, + ACTIONS(5587), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5589), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5579), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4489), 17, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5581), 9, + sym__newline, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, 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, - [144347] = 4, + [147739] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, + ACTIONS(813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3315), 4, + ACTIONS(3391), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_not, anon_sym_or, - ACTIONS(931), 14, + ACTIONS(811), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -241648,164 +246934,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144378] = 15, - ACTIONS(4247), 1, + [147770] = 15, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5415), 1, + ACTIONS(5513), 1, sym_identifier, - ACTIONS(5417), 1, + ACTIONS(5515), 1, anon_sym_LPAREN, - ACTIONS(5487), 1, + ACTIONS(5593), 1, anon_sym_complex, - STATE(3141), 1, + STATE(3323), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5420), 2, + ACTIONS(5518), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(5485), 2, + ACTIONS(5591), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3302), 2, + STATE(3296), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3562), 2, + STATE(3626), 2, sym_operator_name, sym_c_function_pointer_name, - [144431] = 7, - ACTIONS(1356), 1, - anon_sym_long, - STATE(3375), 1, - sym__longness, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5489), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5491), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5399), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5401), 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, - [144468] = 14, - ACTIONS(4247), 1, + [147823] = 15, + ACTIONS(3797), 1, anon_sym_DOT, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5476), 1, + ACTIONS(5567), 1, sym_identifier, - ACTIONS(5497), 1, + ACTIONS(5569), 1, + anon_sym_LPAREN, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5577), 1, anon_sym_complex, - STATE(3158), 1, + ACTIONS(5595), 1, + anon_sym_COLON, + STATE(3247), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5495), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3261), 2, + STATE(3418), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3540), 2, + STATE(3622), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5493), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5497), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [147876] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3806), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5493), 4, anon_sym_COMMA, - [144519] = 14, - ACTIONS(4247), 1, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(3795), 14, anon_sym_DOT, - ACTIONS(4253), 1, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(4909), 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, + [147907] = 14, + ACTIONS(4323), 1, + anon_sym_DOT, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5424), 1, + ACTIONS(5513), 1, sym_identifier, - ACTIONS(5451), 1, + ACTIONS(5524), 1, anon_sym_LPAREN, - ACTIONS(5499), 1, + ACTIONS(5597), 1, anon_sym_complex, - STATE(3305), 1, + STATE(3323), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3319), 2, + STATE(3312), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3561), 2, + STATE(3626), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5428), 4, + ACTIONS(5518), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [144570] = 7, - ACTIONS(5407), 1, - anon_sym_as, - ACTIONS(5409), 1, - anon_sym_if, - ACTIONS(5411), 1, + [147958] = 7, + ACTIONS(5505), 1, anon_sym_and, - ACTIONS(5413), 1, + ACTIONS(5507), 1, anon_sym_or, + ACTIONS(5509), 1, + anon_sym_as, + ACTIONS(5511), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4576), 2, + ACTIONS(4631), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4574), 14, + ACTIONS(4627), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -241820,205 +247104,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144607] = 14, - ACTIONS(3703), 1, + [147995] = 14, + ACTIONS(3799), 1, anon_sym_LPAREN, - ACTIONS(4247), 1, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5476), 1, + ACTIONS(5495), 1, sym_identifier, - ACTIONS(5501), 1, + ACTIONS(5599), 1, anon_sym_complex, - STATE(3139), 1, + STATE(3197), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3254), 2, + STATE(3299), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3540), 2, + STATE(3578), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5438), 4, + ACTIONS(5497), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [144658] = 14, - ACTIONS(4247), 1, + [148046] = 15, + ACTIONS(3797), 1, anon_sym_DOT, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5476), 1, + ACTIONS(4901), 1, + anon_sym_COLON, + ACTIONS(5567), 1, sym_identifier, - ACTIONS(5493), 1, + ACTIONS(5569), 1, anon_sym_LPAREN, - ACTIONS(5503), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5577), 1, anon_sym_complex, - STATE(3158), 1, + STATE(3247), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3324), 2, + STATE(3418), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3540), 2, + STATE(3622), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5495), 4, - anon_sym_RPAREN, + ACTIONS(5497), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [144709] = 15, - ACTIONS(3701), 1, + [148099] = 15, + ACTIONS(3797), 1, anon_sym_DOT, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(4808), 1, - anon_sym_COLON, - ACTIONS(5432), 1, + ACTIONS(5567), 1, sym_identifier, - ACTIONS(5434), 1, + ACTIONS(5569), 1, anon_sym_LPAREN, - ACTIONS(5441), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5445), 1, + ACTIONS(5577), 1, anon_sym_complex, - STATE(3168), 1, + ACTIONS(5601), 1, + anon_sym_COLON, + STATE(3247), 1, aux_sym_class_definition_repeat2, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3354), 2, + STATE(3418), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3620), 2, + STATE(3622), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5438), 3, + ACTIONS(5497), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [144762] = 14, - ACTIONS(4247), 1, + [148152] = 14, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5449), 1, + ACTIONS(5495), 1, sym_identifier, - ACTIONS(5457), 1, + ACTIONS(5561), 1, anon_sym_LPAREN, - ACTIONS(5505), 1, + ACTIONS(5603), 1, anon_sym_complex, - STATE(3305), 1, + STATE(3196), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3335), 2, + STATE(3301), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3588), 2, + STATE(3578), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5453), 4, + ACTIONS(5563), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [144813] = 15, - ACTIONS(3701), 1, + [148203] = 14, + ACTIONS(3797), 1, anon_sym_DOT, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5432), 1, + ACTIONS(5605), 1, sym_identifier, - ACTIONS(5434), 1, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(5441), 1, + ACTIONS(5610), 1, anon_sym_LBRACK, - ACTIONS(5445), 1, + ACTIONS(5613), 1, anon_sym_complex, - ACTIONS(5507), 1, - anon_sym_COLON, - STATE(3168), 1, + STATE(3384), 1, aux_sym_class_definition_repeat2, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3354), 2, + STATE(3412), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3620), 2, + STATE(3594), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5438), 3, + ACTIONS(5518), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [144866] = 4, + [148253] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(3989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3720), 3, + ACTIONS(3993), 3, anon_sym_from, anon_sym_COMMA, anon_sym_in, - ACTIONS(3699), 14, + ACTIONS(3984), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -242033,162 +247316,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144896] = 14, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(5509), 1, + [148283] = 14, + ACTIONS(5615), 1, sym_identifier, - ACTIONS(5511), 1, + ACTIONS(5618), 1, anon_sym_LPAREN, - ACTIONS(5515), 1, - anon_sym_LBRACK, - ACTIONS(5519), 1, - anon_sym_complex, - STATE(3178), 1, - aux_sym_class_definition_repeat2, - STATE(3447), 1, - sym_type_index, - 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(3367), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3581), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5469), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [144946] = 14, - ACTIONS(1356), 1, + ACTIONS(5630), 1, anon_sym_long, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(5521), 1, - sym_identifier, - ACTIONS(5523), 1, - anon_sym_RPAREN, - ACTIONS(5525), 1, - anon_sym_STAR, - STATE(3156), 1, + ACTIONS(5636), 1, + sym__dedent, + STATE(3210), 1, sym__signedness, - STATE(3364), 1, + STATE(3223), 1, + aux_sym_fused_repeat1, + STATE(3416), 1, sym__longness, - STATE(4591), 1, + STATE(5258), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(5624), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(5627), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5633), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3587), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(5621), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [144996] = 14, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(5527), 1, - sym_identifier, - ACTIONS(5529), 1, - anon_sym_LPAREN, - ACTIONS(5532), 1, - anon_sym_LBRACK, - ACTIONS(5535), 1, - anon_sym_complex, - STATE(3255), 1, - aux_sym_class_definition_repeat2, - STATE(3447), 1, - sym_type_index, + [148333] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(4000), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3724), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3372), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3576), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5428), 3, - sym__newline, + anon_sym_SLASH, + ACTIONS(4004), 3, + anon_sym_from, anon_sym_COMMA, - anon_sym_EQ, - [145046] = 14, - ACTIONS(3701), 1, + anon_sym_in, + ACTIONS(3995), 14, anon_sym_DOT, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(5509), 1, - sym_identifier, - ACTIONS(5519), 1, - anon_sym_complex, - ACTIONS(5537), 1, anon_sym_LPAREN, - ACTIONS(5540), 1, - anon_sym_LBRACK, - STATE(3178), 1, - aux_sym_class_definition_repeat2, - STATE(3447), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3708), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3724), 2, + 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(3378), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3581), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5420), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [145096] = 4, + anon_sym_CARET, + anon_sym_LT_LT, + [148363] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3902), 2, + ACTIONS(3974), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3720), 3, + ACTIONS(3816), 3, anon_sym_from, anon_sym_COMMA, anon_sym_in, - ACTIONS(3897), 14, + ACTIONS(3969), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -242203,55 +247404,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [145126] = 15, - ACTIONS(1356), 1, + [148393] = 15, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5543), 1, + ACTIONS(5638), 1, sym_identifier, - ACTIONS(5545), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - STATE(3155), 1, + STATE(3202), 1, sym_int_type, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(3474), 1, + STATE(3513), 1, sym_function_pointer_type, - STATE(3541), 1, + STATE(3584), 1, sym_operator_name, - STATE(5619), 1, + STATE(5697), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145178] = 4, + [148445] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 2, + ACTIONS(3806), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3860), 3, + ACTIONS(3816), 3, anon_sym_from, anon_sym_COMMA, anon_sym_in, - ACTIONS(3851), 14, + ACTIONS(3795), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -242266,51 +247467,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [145208] = 14, - ACTIONS(3701), 1, + [148475] = 14, + ACTIONS(3797), 1, anon_sym_DOT, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5432), 1, + ACTIONS(5567), 1, sym_identifier, - ACTIONS(5434), 1, + ACTIONS(5577), 1, + anon_sym_complex, + ACTIONS(5644), 1, anon_sym_LPAREN, - ACTIONS(5441), 1, + ACTIONS(5647), 1, anon_sym_LBRACK, - ACTIONS(5445), 1, - anon_sym_complex, - STATE(3168), 1, + STATE(3247), 1, aux_sym_class_definition_repeat2, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3354), 2, + STATE(3411), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3620), 2, + STATE(3622), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5438), 3, + ACTIONS(5563), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [145258] = 4, - ACTIONS(5551), 1, + [148525] = 4, + ACTIONS(5650), 1, anon_sym_COMMA, - STATE(3174), 1, + STATE(3240), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5549), 17, + ACTIONS(2821), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -242328,22 +247529,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145288] = 14, + [148555] = 14, ACTIONS(371), 1, anon_sym_long, - ACTIONS(5554), 1, + ACTIONS(5652), 1, sym_identifier, - ACTIONS(5556), 1, + ACTIONS(5654), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, + ACTIONS(5656), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3187), 1, + STATE(3223), 1, aux_sym_fused_repeat1, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(5325), 1, + STATE(5258), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -242357,29 +247558,59 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - STATE(3549), 2, + STATE(3587), 2, sym_int_type, sym_function_pointer_type, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145338] = 14, + [148605] = 8, + ACTIONS(4355), 1, + anon_sym_not, + ACTIONS(4854), 1, + anon_sym_is, + STATE(3231), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4857), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2039), 2, + sym__not_in, + sym__is_not, + ACTIONS(4348), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4851), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [148643] = 14, ACTIONS(371), 1, anon_sym_long, - ACTIONS(5554), 1, + ACTIONS(5652), 1, sym_identifier, - ACTIONS(5556), 1, + ACTIONS(5654), 1, anon_sym_LPAREN, - ACTIONS(5560), 1, + ACTIONS(5658), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3185), 1, + STATE(3223), 1, aux_sym_fused_repeat1, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(5325), 1, + STATE(5258), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -242393,131 +247624,65 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - STATE(3549), 2, + STATE(3587), 2, sym_int_type, sym_function_pointer_type, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145388] = 14, - ACTIONS(5562), 1, - sym_identifier, - ACTIONS(5565), 1, - anon_sym_LPAREN, - ACTIONS(5577), 1, - anon_sym_long, - ACTIONS(5583), 1, - sym__dedent, - STATE(3133), 1, - sym__signedness, - STATE(3177), 1, - aux_sym_fused_repeat1, - STATE(3376), 1, - sym__longness, - STATE(5325), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5571), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5574), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5580), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3549), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5568), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [145438] = 14, - ACTIONS(3701), 1, + [148693] = 14, + ACTIONS(3797), 1, anon_sym_DOT, - ACTIONS(3982), 1, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5585), 1, + ACTIONS(5567), 1, sym_identifier, - ACTIONS(5587), 1, + ACTIONS(5569), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5593), 1, + ACTIONS(5577), 1, anon_sym_complex, - STATE(3255), 1, + STATE(3247), 1, aux_sym_class_definition_repeat2, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3368), 2, + STATE(3418), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3524), 2, + STATE(3622), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5453), 3, + ACTIONS(5497), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [145488] = 8, - ACTIONS(4238), 1, - anon_sym_not, - ACTIONS(4749), 1, - anon_sym_is, - STATE(3179), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4752), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1925), 2, - sym__not_in, - sym__is_not, - ACTIONS(4231), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4746), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [145526] = 14, + [148743] = 14, ACTIONS(371), 1, anon_sym_long, - ACTIONS(5554), 1, + ACTIONS(5652), 1, sym_identifier, - ACTIONS(5556), 1, + ACTIONS(5654), 1, anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5660), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3177), 1, + STATE(3232), 1, aux_sym_fused_repeat1, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(5325), 1, + STATE(5258), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -242531,25 +247696,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - STATE(3549), 2, + STATE(3587), 2, sym_int_type, sym_function_pointer_type, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145576] = 4, + [148793] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 2, + ACTIONS(813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3877), 3, + ACTIONS(847), 3, anon_sym_from, anon_sym_COMMA, anon_sym_in, - ACTIONS(3870), 14, + ACTIONS(811), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -242564,151 +247729,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [145606] = 14, - ACTIONS(1356), 1, + [148823] = 14, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5652), 1, sym_identifier, - ACTIONS(5525), 1, - anon_sym_STAR, - ACTIONS(5597), 1, - anon_sym_RPAREN, - STATE(3156), 1, + ACTIONS(5654), 1, + anon_sym_LPAREN, + ACTIONS(5662), 1, + sym__dedent, + STATE(3210), 1, sym__signedness, - STATE(3364), 1, + STATE(3230), 1, + aux_sym_fused_repeat1, + STATE(3416), 1, sym__longness, - STATE(4544), 1, + STATE(5258), 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(1358), 2, + ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3587), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145656] = 5, - ACTIONS(5601), 1, + [148873] = 14, + ACTIONS(3797), 1, anon_sym_DOT, - STATE(3183), 1, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(5664), 1, + sym_identifier, + ACTIONS(5666), 1, + anon_sym_LPAREN, + ACTIONS(5670), 1, + anon_sym_LBRACK, + ACTIONS(5674), 1, + anon_sym_complex, + STATE(3221), 1, aux_sym_class_definition_repeat2, + STATE(3494), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5599), 8, - anon_sym_import, - anon_sym_cimport, - anon_sym_as, + ACTIONS(3804), 2, anon_sym_STAR, - anon_sym_if, - sym_identifier, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(5604), 9, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(3820), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [145688] = 15, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(4909), 1, + STATE(3428), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3625), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5539), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [148923] = 14, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5606), 1, + ACTIONS(5664), 1, sym_identifier, - ACTIONS(5608), 1, + ACTIONS(5674), 1, + anon_sym_complex, + ACTIONS(5676), 1, anon_sym_LPAREN, - STATE(3135), 1, - sym_int_type, - STATE(3156), 1, - sym__signedness, - STATE(3364), 1, - sym__longness, - STATE(3436), 1, - sym_function_pointer_type, - STATE(3541), 1, - sym_operator_name, - STATE(5592), 1, - sym_c_type, + ACTIONS(5679), 1, + anon_sym_LBRACK, + STATE(3221), 1, + aux_sym_class_definition_repeat2, + STATE(3494), 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(5547), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [145740] = 14, - ACTIONS(371), 1, + ACTIONS(3804), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3820), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3427), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3625), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5555), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [148973] = 14, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5554), 1, - sym_identifier, - ACTIONS(5556), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5610), 1, - sym__dedent, - STATE(3133), 1, + ACTIONS(5682), 1, + sym_identifier, + ACTIONS(5684), 1, + anon_sym_RPAREN, + ACTIONS(5686), 1, + anon_sym_STAR, + STATE(3209), 1, sym__signedness, - STATE(3177), 1, - aux_sym_fused_repeat1, - STATE(3376), 1, + STATE(3417), 1, sym__longness, - STATE(5325), 1, + STATE(4570), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(373), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3549), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(365), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145790] = 4, - ACTIONS(5612), 1, + [149023] = 4, + ACTIONS(5690), 1, anon_sym_COMMA, - STATE(3174), 1, + STATE(3240), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2801), 17, + ACTIONS(5688), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -242726,58 +247899,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145820] = 14, - ACTIONS(371), 1, + [149053] = 14, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5554), 1, - sym_identifier, - ACTIONS(5556), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5614), 1, - sym__dedent, - STATE(3133), 1, + ACTIONS(5682), 1, + sym_identifier, + ACTIONS(5686), 1, + anon_sym_STAR, + ACTIONS(5693), 1, + anon_sym_RPAREN, + STATE(3209), 1, sym__signedness, - STATE(3177), 1, - aux_sym_fused_repeat1, - STATE(3376), 1, + STATE(3417), 1, sym__longness, - STATE(5325), 1, + STATE(4676), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(373), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3549), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(365), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145870] = 14, + [149103] = 14, ACTIONS(371), 1, anon_sym_long, - ACTIONS(5554), 1, + ACTIONS(5652), 1, sym_identifier, - ACTIONS(5556), 1, + ACTIONS(5654), 1, anon_sym_LPAREN, - ACTIONS(5616), 1, + ACTIONS(5695), 1, sym__dedent, - STATE(3133), 1, + STATE(3210), 1, sym__signedness, - STATE(3180), 1, + STATE(3245), 1, aux_sym_fused_repeat1, - STATE(3376), 1, + STATE(3416), 1, sym__longness, - STATE(5325), 1, + STATE(5258), 1, sym_c_type, ACTIONS(3), 2, sym_comment, @@ -242791,224 +247964,433 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(373), 2, anon_sym_const, anon_sym_volatile, - STATE(3549), 2, + STATE(3587), 2, sym_int_type, sym_function_pointer_type, ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145920] = 4, + [149153] = 15, + ACTIONS(1388), 1, + anon_sym_long, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5697), 1, + sym_identifier, + ACTIONS(5699), 1, + anon_sym_LPAREN, + STATE(3203), 1, + sym_int_type, + STATE(3209), 1, + sym__signedness, + STATE(3417), 1, + sym__longness, + STATE(3476), 1, + sym_function_pointer_type, + STATE(3584), 1, + sym_operator_name, + STATE(5715), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(967), 3, - anon_sym_from, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(931), 14, + ACTIONS(1384), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1386), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5642), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(1380), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [149205] = 5, + ACTIONS(5703), 1, anon_sym_DOT, + STATE(3244), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5701), 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(5706), 9, 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, - [145950] = 14, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(5432), 1, + anon_sym_GT, + anon_sym_QMARK, + [149237] = 14, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(5652), 1, sym_identifier, - ACTIONS(5445), 1, - anon_sym_complex, - ACTIONS(5618), 1, + ACTIONS(5654), 1, anon_sym_LPAREN, - ACTIONS(5621), 1, - anon_sym_LBRACK, - STATE(3168), 1, - aux_sym_class_definition_repeat2, - STATE(3447), 1, - sym_type_index, + ACTIONS(5708), 1, + sym__dedent, + STATE(3210), 1, + sym__signedness, + STATE(3223), 1, + aux_sym_fused_repeat1, + STATE(3416), 1, + sym__longness, + STATE(5258), 1, + sym_c_type, 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(3380), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3620), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5495), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [146000] = 8, - ACTIONS(4217), 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(3587), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [149287] = 8, + ACTIONS(4313), 1, anon_sym_not, - ACTIONS(4665), 1, + ACTIONS(4773), 1, anon_sym_is, - STATE(3179), 1, + STATE(3231), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4667), 2, + ACTIONS(4775), 2, anon_sym_LT, anon_sym_GT, - STATE(1925), 2, + STATE(2039), 2, sym__not_in, sym__is_not, - ACTIONS(4227), 6, + ACTIONS(4340), 6, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4649), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [146038] = 13, - ACTIONS(4268), 1, - anon_sym_PIPE, - ACTIONS(4414), 1, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4757), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [149325] = 14, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(5710), 1, + sym_identifier, + ACTIONS(5712), 1, + anon_sym_LPAREN, + ACTIONS(5715), 1, + anon_sym_LBRACK, + ACTIONS(5718), 1, + anon_sym_complex, + STATE(3384), 1, + aux_sym_class_definition_repeat2, + STATE(3494), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3804), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3820), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3432), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3576), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5526), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [149375] = 13, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4416), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4426), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(5628), 1, + ACTIONS(5724), 1, anon_sym_STAR_STAR, - ACTIONS(5634), 1, + ACTIONS(5730), 1, + anon_sym_PIPE, + ACTIONS(5732), 1, anon_sym_AMP, - ACTIONS(5636), 1, + ACTIONS(5734), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5626), 2, + ACTIONS(5722), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5632), 2, + ACTIONS(5728), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2486), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5630), 3, + ACTIONS(5726), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146085] = 10, + [149422] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3816), 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, + [149447] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5736), 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, + [149472] = 10, ACTIONS(63), 1, anon_sym_AT, - ACTIONS(5638), 1, + ACTIONS(5738), 1, anon_sym_async, - ACTIONS(5640), 1, + ACTIONS(5740), 1, anon_sym_def, - ACTIONS(5642), 1, + ACTIONS(5742), 1, anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5646), 2, + ACTIONS(5746), 2, anon_sym_cdef, anon_sym_cpdef, - STATE(3494), 2, + STATE(3557), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - STATE(3946), 2, + STATE(4035), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(1431), 3, + STATE(1880), 3, sym_function_definition, sym_class_definition, sym_cdef_statement, - ACTIONS(5644), 5, + ACTIONS(5744), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [146126] = 13, - ACTIONS(4354), 1, - anon_sym_DOT, - ACTIONS(4356), 1, - anon_sym_LBRACK, - ACTIONS(4416), 1, + [149513] = 13, + ACTIONS(1388), 1, + anon_sym_long, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5628), 1, - anon_sym_STAR_STAR, - ACTIONS(5634), 1, - anon_sym_AMP, - ACTIONS(5636), 1, - anon_sym_CARET, - ACTIONS(5648), 1, - anon_sym_PIPE, + ACTIONS(5682), 1, + sym_identifier, + ACTIONS(5693), 1, + anon_sym_RPAREN, + STATE(3209), 1, + sym__signedness, + STATE(3417), 1, + sym__longness, + STATE(4676), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(1384), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1386), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1390), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3530), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1380), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [149560] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5748), 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, + [149585] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5736), 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, + [149610] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5688), 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, + [149635] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5701), 8, + anon_sym_import, + anon_sym_cimport, + anon_sym_as, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5626), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5632), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5630), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [146173] = 8, - ACTIONS(4414), 1, + anon_sym_if, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5706), 10, anon_sym_DOT, - ACTIONS(4416), 1, anon_sym_LPAREN, - ACTIONS(4426), 1, - anon_sym_LBRACK, - ACTIONS(5628), 1, + 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, + [149662] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4270), 2, + ACTIONS(3816), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3974), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4268), 10, + ACTIONS(3969), 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, @@ -243018,57 +248400,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146210] = 10, - ACTIONS(4414), 1, - anon_sym_DOT, - ACTIONS(4416), 1, + [149691] = 13, + ACTIONS(1388), 1, + anon_sym_long, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(4426), 1, - anon_sym_LBRACK, - ACTIONS(5628), 1, - anon_sym_STAR_STAR, + ACTIONS(5682), 1, + sym_identifier, + ACTIONS(5684), 1, + anon_sym_RPAREN, + STATE(3209), 1, + sym__signedness, + STATE(3417), 1, + sym__longness, + STATE(4570), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(1384), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1386), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1390), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3530), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1380), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [149738] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3806), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5632), 2, + ACTIONS(3816), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3795), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5630), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 5, - anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146251] = 8, - ACTIONS(4414), 1, - anon_sym_DOT, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(4426), 1, - anon_sym_LBRACK, - ACTIONS(5628), 1, - anon_sym_STAR_STAR, + [149767] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4270), 2, + ACTIONS(3989), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4268), 10, + ACTIONS(3993), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3984), 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, @@ -243078,29 +248484,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146288] = 9, - ACTIONS(4414), 1, + [149796] = 9, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4416), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4426), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(5628), 1, + ACTIONS(5724), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2486), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5630), 3, + ACTIONS(5726), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4268), 7, + ACTIONS(4368), 7, anon_sym_GT_GT, anon_sym_DASH, anon_sym_PIPE, @@ -243108,82 +248514,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146327] = 12, - ACTIONS(4414), 1, - anon_sym_DOT, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(4426), 1, - anon_sym_LBRACK, - ACTIONS(5628), 1, - anon_sym_STAR_STAR, - ACTIONS(5636), 1, - anon_sym_CARET, + [149835] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4268), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5624), 2, + ACTIONS(813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5626), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5632), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5630), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [146372] = 11, - ACTIONS(4414), 1, + ACTIONS(847), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(811), 14, anon_sym_DOT, - ACTIONS(4416), 1, anon_sym_LPAREN, - ACTIONS(4426), 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(5632), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, - anon_sym_PLUS, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4268), 3, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5630), 3, - anon_sym_AT, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146415] = 4, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [149864] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(4000), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3720), 2, + ACTIONS(4004), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3699), 14, + ACTIONS(3995), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -243198,130 +248564,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146444] = 13, - ACTIONS(1356), 1, + [149893] = 4, + ACTIONS(5483), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4416), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4406), 11, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [149922] = 13, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5682), 1, sym_identifier, - ACTIONS(5650), 1, + ACTIONS(5750), 1, anon_sym_RPAREN, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(4551), 1, + STATE(4581), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [146491] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5599), 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(5604), 10, + [149969] = 13, + ACTIONS(4368), 1, + anon_sym_PIPE, + ACTIONS(4378), 1, anon_sym_DOT, + ACTIONS(4380), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, + ACTIONS(4390), 1, anon_sym_LBRACK, - anon_sym_PIPE, + ACTIONS(5724), 1, + anon_sym_STAR_STAR, + ACTIONS(5732), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [146518] = 4, + ACTIONS(5734), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3902), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3897), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5722), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5728), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5726), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, + [150016] = 12, + ACTIONS(4378), 1, + anon_sym_DOT, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_STAR_STAR, + ACTIONS(5734), 1, anon_sym_CARET, - anon_sym_LT_LT, - [146547] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 2, + ACTIONS(4368), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3877), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3870), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5722), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5728), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5726), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [150061] = 13, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(5724), 1, + anon_sym_STAR_STAR, + ACTIONS(5730), 1, + anon_sym_PIPE, + ACTIONS(5732), 1, anon_sym_AMP, + ACTIONS(5734), 1, anon_sym_CARET, - anon_sym_LT_LT, - [146576] = 4, + ACTIONS(5752), 1, + anon_sym_DOT, + ACTIONS(5754), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3902), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3897), 14, + ACTIONS(5722), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5728), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5726), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [150108] = 8, + ACTIONS(4378), 1, anon_sym_DOT, + ACTIONS(4380), 1, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + ACTIONS(4390), 1, anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4370), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4368), 10, + anon_sym_GT_GT, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -243331,15 +248753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146605] = 2, + [150145] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5652), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(5748), 18, + anon_sym_from, anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -243354,91 +248776,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146630] = 13, - ACTIONS(4414), 1, + [150170] = 8, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4416), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4426), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(5628), 1, + ACTIONS(5724), 1, anon_sym_STAR_STAR, - ACTIONS(5634), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4370), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4368), 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, - ACTIONS(5636), 1, anon_sym_CARET, - ACTIONS(5648), 1, + anon_sym_LT_LT, + [150207] = 13, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_STAR_STAR, + ACTIONS(5730), 1, anon_sym_PIPE, + ACTIONS(5732), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5626), 2, + ACTIONS(5722), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5632), 2, + ACTIONS(5728), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2486), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5630), 3, + ACTIONS(5726), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146677] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3720), 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, - [146702] = 2, + [150254] = 7, + ACTIONS(4114), 1, + anon_sym_long, + STATE(3490), 1, + sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5652), 18, - anon_sym_from, + ACTIONS(5756), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5758), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5579), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5581), 8, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [146727] = 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [150289] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5654), 18, + ACTIONS(3816), 18, anon_sym_from, anon_sym_COMMA, anon_sym_COLON, @@ -243457,74 +248890,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146752] = 2, + [150314] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(813), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(847), 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, - [146777] = 13, - ACTIONS(1356), 1, + anon_sym_RBRACK, + ACTIONS(811), 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, + [150343] = 13, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5682), 1, sym_identifier, - ACTIONS(5523), 1, + ACTIONS(5760), 1, anon_sym_RPAREN, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(4591), 1, + STATE(4562), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [146824] = 4, + [150390] = 10, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(5762), 1, + anon_sym_async, + ACTIONS(5764), 1, + anon_sym_def, + ACTIONS(5766), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5768), 2, + anon_sym_cdef, + anon_sym_cpdef, + STATE(3557), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(4014), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(1580), 3, + sym_function_definition, + sym_class_definition, + sym_cdef_statement, + ACTIONS(5744), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [150431] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5688), 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, + [150456] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3710), 2, + ACTIONS(3816), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3974), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3720), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3699), 14, + ACTIONS(3969), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -243539,51 +249028,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146853] = 13, - ACTIONS(4195), 1, - anon_sym_DOT, - ACTIONS(4209), 1, - anon_sym_LBRACK, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(5628), 1, - anon_sym_STAR_STAR, - ACTIONS(5634), 1, - anon_sym_AMP, - ACTIONS(5636), 1, - anon_sym_CARET, - ACTIONS(5648), 1, - anon_sym_PIPE, + [150485] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(3806), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5626), 2, + ACTIONS(3816), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3795), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5632), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5630), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [146900] = 4, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [150514] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3875), 2, + ACTIONS(3989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3877), 2, - anon_sym_RPAREN, + ACTIONS(3993), 2, anon_sym_COMMA, - ACTIONS(3870), 14, + anon_sym_RBRACK, + ACTIONS(3984), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -243598,394 +249078,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146929] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5654), 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, - [146954] = 2, + [150543] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5549), 18, - anon_sym_from, + ACTIONS(4000), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4004), 2, 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, - [146979] = 13, - ACTIONS(4386), 1, + anon_sym_RBRACK, + ACTIONS(3995), 14, anon_sym_DOT, - ACTIONS(4398), 1, - anon_sym_LBRACK, - ACTIONS(4416), 1, anon_sym_LPAREN, - ACTIONS(5628), 1, - anon_sym_STAR_STAR, - ACTIONS(5634), 1, - anon_sym_AMP, - ACTIONS(5636), 1, - anon_sym_CARET, - ACTIONS(5648), 1, - anon_sym_PIPE, - 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(5632), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5630), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147026] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5549), 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, - [147051] = 13, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(5628), 1, - anon_sym_STAR_STAR, - ACTIONS(5634), 1, anon_sym_AMP, - ACTIONS(5636), 1, anon_sym_CARET, - ACTIONS(5648), 1, - anon_sym_PIPE, - ACTIONS(5656), 1, + anon_sym_LT_LT, + [150572] = 10, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(5658), 1, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5626), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5632), 2, + ACTIONS(5728), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2486), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5630), 3, + ACTIONS(5726), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147098] = 13, - ACTIONS(4272), 1, + ACTIONS(4368), 5, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [150613] = 13, + ACTIONS(4291), 1, anon_sym_DOT, - ACTIONS(4284), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(4416), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(5628), 1, + ACTIONS(5724), 1, anon_sym_STAR_STAR, - ACTIONS(5634), 1, + ACTIONS(5730), 1, + anon_sym_PIPE, + ACTIONS(5732), 1, anon_sym_AMP, - ACTIONS(5636), 1, + ACTIONS(5734), 1, anon_sym_CARET, - ACTIONS(5648), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5626), 2, + ACTIONS(5722), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5632), 2, + ACTIONS(5728), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2486), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5630), 3, + ACTIONS(5726), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147145] = 13, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(4641), 1, + [150660] = 8, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4653), 1, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(5628), 1, + ACTIONS(5724), 1, anon_sym_STAR_STAR, - ACTIONS(5634), 1, - anon_sym_AMP, - ACTIONS(5636), 1, - anon_sym_CARET, - ACTIONS(5648), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(4420), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5626), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5632), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2486), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5630), 3, + ACTIONS(4418), 10, + anon_sym_GT_GT, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147192] = 13, - ACTIONS(4416), 1, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [150697] = 13, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4578), 1, + ACTIONS(4510), 1, anon_sym_DOT, - ACTIONS(4590), 1, + ACTIONS(4522), 1, anon_sym_LBRACK, - ACTIONS(5628), 1, + ACTIONS(5724), 1, anon_sym_STAR_STAR, - ACTIONS(5634), 1, + ACTIONS(5730), 1, + anon_sym_PIPE, + ACTIONS(5732), 1, anon_sym_AMP, - ACTIONS(5636), 1, + ACTIONS(5734), 1, anon_sym_CARET, - ACTIONS(5648), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5626), 2, + ACTIONS(5722), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5632), 2, + ACTIONS(5728), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2486), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5630), 3, + ACTIONS(5726), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147239] = 13, - ACTIONS(4358), 1, - anon_sym_DOT, - ACTIONS(4370), 1, - anon_sym_LBRACK, - ACTIONS(4416), 1, + [150744] = 13, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(5628), 1, + ACTIONS(5724), 1, anon_sym_STAR_STAR, - ACTIONS(5634), 1, + ACTIONS(5730), 1, + anon_sym_PIPE, + ACTIONS(5732), 1, anon_sym_AMP, - ACTIONS(5636), 1, + ACTIONS(5734), 1, anon_sym_CARET, - ACTIONS(5648), 1, - anon_sym_PIPE, + ACTIONS(5770), 1, + anon_sym_DOT, + ACTIONS(5772), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5626), 2, + ACTIONS(5722), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5632), 2, + ACTIONS(5728), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2486), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5630), 3, + ACTIONS(5726), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147286] = 10, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(5660), 1, - anon_sym_async, - ACTIONS(5662), 1, - anon_sym_def, - ACTIONS(5664), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5666), 2, - anon_sym_cdef, - anon_sym_cpdef, - STATE(3494), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - STATE(3918), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(1449), 3, - sym_function_definition, - sym_class_definition, - sym_cdef_statement, - ACTIONS(5644), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [147327] = 13, - ACTIONS(4300), 1, + [150791] = 13, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, anon_sym_DOT, - ACTIONS(4312), 1, + ACTIONS(4462), 1, anon_sym_LBRACK, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(5628), 1, + ACTIONS(5724), 1, anon_sym_STAR_STAR, - ACTIONS(5634), 1, + ACTIONS(5730), 1, + anon_sym_PIPE, + ACTIONS(5732), 1, anon_sym_AMP, - ACTIONS(5636), 1, + ACTIONS(5734), 1, anon_sym_CARET, - ACTIONS(5648), 1, - anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5626), 2, + ACTIONS(5722), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5632), 2, + ACTIONS(5728), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2486), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5630), 3, + ACTIONS(5726), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147374] = 13, - ACTIONS(4416), 1, + [150838] = 13, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(5628), 1, + ACTIONS(4749), 1, + anon_sym_DOT, + ACTIONS(4761), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, anon_sym_STAR_STAR, - ACTIONS(5634), 1, + ACTIONS(5730), 1, + anon_sym_PIPE, + ACTIONS(5732), 1, anon_sym_AMP, - ACTIONS(5636), 1, + ACTIONS(5734), 1, anon_sym_CARET, - ACTIONS(5648), 1, - anon_sym_PIPE, - ACTIONS(5668), 1, - anon_sym_DOT, - ACTIONS(5670), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5626), 2, + ACTIONS(5722), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5632), 2, + ACTIONS(5728), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2486), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5630), 3, + ACTIONS(5726), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147421] = 4, + [150885] = 8, + ACTIONS(4378), 1, + anon_sym_DOT, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 2, + ACTIONS(4374), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3860), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3851), 14, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4372), 10, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -243995,609 +249362,624 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147450] = 13, - ACTIONS(4416), 1, + [150922] = 13, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(5628), 1, + ACTIONS(4675), 1, + anon_sym_DOT, + ACTIONS(4687), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, anon_sym_STAR_STAR, - ACTIONS(5634), 1, + ACTIONS(5730), 1, + anon_sym_PIPE, + ACTIONS(5732), 1, anon_sym_AMP, - ACTIONS(5636), 1, + ACTIONS(5734), 1, anon_sym_CARET, - ACTIONS(5648), 1, - anon_sym_PIPE, - ACTIONS(5672), 1, - anon_sym_DOT, - ACTIONS(5674), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5624), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5626), 2, + ACTIONS(5722), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5632), 2, + ACTIONS(5728), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2486), 2, + STATE(2312), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5630), 3, + ACTIONS(5726), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [147497] = 4, + [150969] = 13, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4478), 1, + anon_sym_DOT, + ACTIONS(4490), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_STAR_STAR, + ACTIONS(5730), 1, + anon_sym_PIPE, + ACTIONS(5732), 1, + anon_sym_AMP, + ACTIONS(5734), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(967), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(931), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5722), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5728), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5726), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [151016] = 13, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4422), 1, + anon_sym_DOT, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_STAR_STAR, + ACTIONS(5730), 1, + anon_sym_PIPE, + ACTIONS(5732), 1, anon_sym_AMP, + ACTIONS(5734), 1, anon_sym_CARET, - anon_sym_LT_LT, - [147526] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3856), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3860), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3851), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5722), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5728), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5726), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [151063] = 13, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(5724), 1, + anon_sym_STAR_STAR, + ACTIONS(5730), 1, + anon_sym_PIPE, + ACTIONS(5732), 1, anon_sym_AMP, + ACTIONS(5734), 1, anon_sym_CARET, - anon_sym_LT_LT, - [147555] = 8, - ACTIONS(4414), 1, + ACTIONS(5774), 1, anon_sym_DOT, - ACTIONS(4416), 1, - anon_sym_LPAREN, - ACTIONS(4426), 1, + ACTIONS(5776), 1, anon_sym_LBRACK, - ACTIONS(5628), 1, - anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4346), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4344), 10, + ACTIONS(5722), 2, anon_sym_GT_GT, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5728), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5726), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [147592] = 13, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(5521), 1, - sym_identifier, - ACTIONS(5676), 1, - anon_sym_RPAREN, - STATE(3156), 1, - sym__signedness, - STATE(3364), 1, - sym__longness, - STATE(4499), 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(3515), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [147639] = 7, - ACTIONS(3942), 1, - anon_sym_long, - STATE(3416), 1, - sym__longness, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5678), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5680), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5399), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5401), 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, - [147674] = 8, - ACTIONS(4414), 1, + [151110] = 11, + ACTIONS(4378), 1, anon_sym_DOT, - ACTIONS(4416), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4426), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(5628), 1, + ACTIONS(5724), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4342), 2, + ACTIONS(5720), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2486), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4340), 10, + ACTIONS(5722), 2, anon_sym_GT_GT, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5728), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(2312), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4368), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5726), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [151153] = 12, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5778), 1, + sym_identifier, + ACTIONS(5780), 1, + anon_sym_LPAREN, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [147711] = 4, + ACTIONS(5783), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5785), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3439), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3574), 2, + sym_operator_name, + sym_c_function_pointer_name, + [151197] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5778), 1, + sym_identifier, + ACTIONS(5787), 1, + anon_sym_LPAREN, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(933), 2, + ACTIONS(4325), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(967), 2, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3439), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3574), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5785), 4, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(931), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_COLON, + anon_sym_EQ, + [151239] = 11, + ACTIONS(4329), 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, - [147740] = 13, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5522), 1, sym_identifier, - ACTIONS(5597), 1, - anon_sym_RPAREN, - STATE(3156), 1, - sym__signedness, - STATE(3364), 1, - sym__longness, - STATE(4544), 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(3515), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [147787] = 4, - ACTIONS(5686), 1, - anon_sym_long, + ACTIONS(5530), 1, + anon_sym_LPAREN, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5682), 7, + ACTIONS(4325), 2, anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5684), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3344), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3654), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5526), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [151281] = 11, + ACTIONS(4329), 1, anon_sym_LBRACK, - anon_sym_AMP, - [147815] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5449), 1, + ACTIONS(5522), 1, sym_identifier, - ACTIONS(5688), 1, + ACTIONS(5530), 1, anon_sym_LPAREN, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3393), 2, + STATE(3448), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3588), 2, + STATE(3654), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5453), 4, + ACTIONS(5790), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [147857] = 6, - ACTIONS(5691), 1, - anon_sym_COMMA, - ACTIONS(5693), 1, - anon_sym_COLON, - ACTIONS(5695), 1, - anon_sym_EQ, - STATE(3186), 1, - aux_sym__patterns_repeat1, + [151323] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5522), 1, + sym_identifier, + ACTIONS(5553), 1, + anon_sym_LPAREN, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5697), 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, - [147889] = 11, - ACTIONS(4253), 1, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3350), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3654), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5526), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [151365] = 11, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5451), 1, - anon_sym_LPAREN, - ACTIONS(5699), 1, + ACTIONS(5522), 1, sym_identifier, - STATE(3413), 1, + ACTIONS(5553), 1, + anon_sym_LPAREN, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3397), 2, + STATE(3448), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3608), 2, + STATE(3654), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5701), 4, + ACTIONS(5526), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [147931] = 12, - ACTIONS(3942), 1, + [151407] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3235), 1, + STATE(3209), 1, sym__signedness, - STATE(3423), 1, + STATE(3417), 1, sym__longness, - STATE(5052), 1, + STATE(4561), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [147975] = 11, - ACTIONS(4253), 1, + [151451] = 11, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5424), 1, + ACTIONS(5524), 1, + anon_sym_LPAREN, + ACTIONS(5793), 1, sym_identifier, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5428), 2, + STATE(3447), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3607), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5795), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - STATE(3307), 2, + [151493] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5524), 1, + anon_sym_LPAREN, + ACTIONS(5793), 1, + sym_identifier, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3311), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3561), 2, + STATE(3607), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5485), 3, - anon_sym_LPAREN, + ACTIONS(5795), 4, anon_sym_RPAREN, anon_sym_COMMA, - [148017] = 12, - ACTIONS(3942), 1, + anon_sym_COLON, + anon_sym_EQ, + [151535] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3235), 1, + STATE(3209), 1, sym__signedness, - STATE(3423), 1, + STATE(3417), 1, sym__longness, - STATE(5313), 1, + STATE(5395), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148061] = 14, - ACTIONS(3703), 1, + [151579] = 12, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(3714), 1, + ACTIONS(5797), 1, sym_identifier, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5705), 1, - anon_sym_DOT, - ACTIONS(5709), 1, - anon_sym_COLON, - ACTIONS(5711), 1, - anon_sym_EQ, - ACTIONS(5713), 1, - anon_sym_complex, - STATE(3458), 1, - aux_sym_class_definition_repeat2, - STATE(3477), 1, - sym_type_index, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4803), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5707), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3756), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [148109] = 6, - ACTIONS(5693), 1, - anon_sym_COLON, - ACTIONS(5695), 1, - anon_sym_EQ, - ACTIONS(5715), 1, - anon_sym_COMMA, - STATE(3250), 1, - aux_sym__patterns_repeat1, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5642), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3474), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [151623] = 12, + ACTIONS(5459), 1, + anon_sym_LPAREN, + ACTIONS(5473), 1, + anon_sym_long, + ACTIONS(5477), 1, + sym_identifier, + STATE(3438), 1, + sym__signedness, + STATE(3589), 1, + sym__longness, + STATE(4660), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5697), 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, - [148141] = 12, - ACTIONS(1356), 1, + ACTIONS(5469), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5471), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5475), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3565), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5467), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [151667] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(5329), 1, + STATE(4944), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148185] = 12, - ACTIONS(3942), 1, + [151711] = 12, + ACTIONS(5473), 1, anon_sym_long, - ACTIONS(5717), 1, + ACTIONS(5799), 1, sym_identifier, - ACTIONS(5719), 1, + ACTIONS(5801), 1, anon_sym_LPAREN, - STATE(3235), 1, + STATE(3438), 1, sym__signedness, - STATE(3423), 1, + STATE(3589), 1, sym__longness, - STATE(5592), 1, + STATE(5534), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(5469), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(5471), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3660), 2, + STATE(3570), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(5467), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148229] = 4, - ACTIONS(5721), 1, + [151755] = 4, + ACTIONS(5803), 1, anon_sym_COMMA, - STATE(3260), 1, + STATE(3343), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2801), 15, + ACTIONS(2821), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -244613,295 +249995,447 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148257] = 11, - ACTIONS(4253), 1, + [151783] = 11, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5424), 1, - sym_identifier, - ACTIONS(5426), 1, + ACTIONS(5524), 1, anon_sym_LPAREN, - STATE(3413), 1, + ACTIONS(5805), 1, + sym_identifier, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3326), 2, + STATE(3457), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3561), 2, + STATE(3675), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5428), 4, + ACTIONS(5807), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [148299] = 12, - ACTIONS(5363), 1, + [151825] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5524), 1, anon_sym_LPAREN, - ACTIONS(5377), 1, - anon_sym_long, - ACTIONS(5381), 1, + ACTIONS(5778), 1, sym_identifier, - STATE(3359), 1, - sym__signedness, - STATE(3550), 1, - sym__longness, - STATE(4775), 1, - sym_c_type, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5373), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5375), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5379), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3469), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5371), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [148343] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3439), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3574), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5785), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [151867] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5524), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5778), 1, sym_identifier, - STATE(3156), 1, - sym__signedness, - STATE(3364), 1, - sym__longness, - STATE(5174), 1, - sym_c_type, + STATE(3493), 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(3515), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [148387] = 11, - ACTIONS(4253), 1, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3322), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3574), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5785), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [151909] = 11, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5424), 1, + ACTIONS(5522), 1, sym_identifier, - ACTIONS(5426), 1, - anon_sym_LPAREN, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3403), 2, + ACTIONS(5526), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3326), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3561), 2, + STATE(3654), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5723), 4, + ACTIONS(5530), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [148429] = 5, - ACTIONS(5726), 1, - anon_sym_DOT, - STATE(3255), 1, - aux_sym_class_definition_repeat2, + [151951] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5522), 1, + sym_identifier, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5599), 6, - anon_sym_as, + ACTIONS(4325), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5604), 9, - sym__newline, - anon_sym_SEMI, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5790), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3448), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3654), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5530), 3, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, + [151993] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5522), 1, + sym_identifier, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5526), 2, + anon_sym_COLON, anon_sym_EQ, + STATE(3332), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3654), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5553), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [152035] = 11, + ACTIONS(4329), 1, anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5522), 1, + sym_identifier, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - [148459] = 12, - ACTIONS(5363), 1, + ACTIONS(5526), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3448), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3654), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5553), 3, anon_sym_LPAREN, - ACTIONS(5377), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + [152077] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5381), 1, + ACTIONS(4984), 1, + anon_sym_LPAREN, + ACTIONS(5682), 1, sym_identifier, - STATE(3359), 1, + STATE(3209), 1, sym__signedness, - STATE(3550), 1, + STATE(3417), 1, sym__longness, - STATE(4508), 1, + STATE(5283), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5373), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5375), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5379), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3469), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5371), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148503] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(4897), 1, + [152121] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5805), 1, + sym_identifier, + ACTIONS(5809), 1, + anon_sym_LPAREN, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3457), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3675), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5807), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [152163] = 12, + ACTIONS(5459), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5473), 1, + anon_sym_long, + ACTIONS(5477), 1, sym_identifier, - STATE(3156), 1, + STATE(3438), 1, sym__signedness, - STATE(3364), 1, + STATE(3589), 1, sym__longness, - STATE(5271), 1, + STATE(4863), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(5469), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(5471), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5475), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3565), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(5467), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148547] = 12, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(5335), 1, + [152207] = 14, + ACTIONS(3799), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(3810), 1, sym_identifier, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(5287), 1, - sym_c_type, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(5815), 1, + anon_sym_COLON, + ACTIONS(5817), 1, + anon_sym_EQ, + ACTIONS(5819), 1, + anon_sym_complex, + STATE(3510), 1, + aux_sym_class_definition_repeat2, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5547), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3434), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [148591] = 11, - ACTIONS(4253), 1, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5813), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3813), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [152255] = 11, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5424), 1, + ACTIONS(5524), 1, + anon_sym_LPAREN, + ACTIONS(5821), 1, sym_identifier, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5428), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3280), 2, + STATE(3444), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3561), 2, + STATE(3596), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5426), 3, + ACTIONS(5823), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [152297] = 5, + ACTIONS(5825), 1, + anon_sym_DOT, + STATE(3323), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5701), 6, + anon_sym_as, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5706), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [148633] = 4, - ACTIONS(5729), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_AMP, + [152327] = 6, + ACTIONS(5828), 1, anon_sym_COMMA, - STATE(3260), 1, + ACTIONS(5830), 1, + anon_sym_COLON, + ACTIONS(5832), 1, + anon_sym_EQ, + STATE(3229), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5549), 15, + ACTIONS(5834), 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, + [152359] = 6, + ACTIONS(5830), 1, anon_sym_COLON, + ACTIONS(5832), 1, anon_sym_EQ, + ACTIONS(5836), 1, + anon_sym_COMMA, + STATE(3310), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5834), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -244915,1408 +250449,1427 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148661] = 11, - ACTIONS(4253), 1, + [152391] = 11, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5424), 1, + ACTIONS(5793), 1, sym_identifier, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5428), 2, + ACTIONS(5795), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3403), 2, + STATE(3447), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3561), 2, + STATE(3607), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5485), 3, + ACTIONS(5838), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [148703] = 12, - ACTIONS(5363), 1, + [152433] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5793), 1, + sym_identifier, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5795), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3336), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3607), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5838), 3, anon_sym_LPAREN, - ACTIONS(5377), 1, - anon_sym_long, - ACTIONS(5381), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + [152475] = 12, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5513), 1, sym_identifier, - STATE(3359), 1, - sym__signedness, - STATE(3550), 1, - sym__longness, - STATE(4516), 1, - sym_c_type, + ACTIONS(5515), 1, + anon_sym_LPAREN, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5373), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5375), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5379), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3469), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5371), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [148747] = 12, - ACTIONS(4253), 1, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5518), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5591), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3296), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3626), 2, + sym_operator_name, + sym_c_function_pointer_name, + [152519] = 12, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5732), 1, + ACTIONS(5513), 1, sym_identifier, - ACTIONS(5734), 1, + ACTIONS(5515), 1, anon_sym_LPAREN, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5737), 2, + ACTIONS(5591), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5739), 2, + ACTIONS(5840), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3338), 2, + STATE(3455), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3611), 2, + STATE(3626), 2, sym_operator_name, sym_c_function_pointer_name, - [148791] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(5521), 1, + [152563] = 12, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5513), 1, sym_identifier, - STATE(3156), 1, - sym__signedness, - STATE(3364), 1, - sym__longness, - STATE(5361), 1, - sym_c_type, + ACTIONS(5843), 1, + anon_sym_LPAREN, + STATE(3493), 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(3515), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [148835] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5518), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5846), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3338), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3626), 2, + sym_operator_name, + sym_c_function_pointer_name, + [152607] = 12, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5513), 1, sym_identifier, - STATE(3156), 1, - sym__signedness, - STATE(3364), 1, - sym__longness, - STATE(5208), 1, - sym_c_type, + ACTIONS(5843), 1, + anon_sym_LPAREN, + STATE(3493), 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(3515), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [148879] = 11, - ACTIONS(4253), 1, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5518), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5846), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3455), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3626), 2, + sym_operator_name, + sym_c_function_pointer_name, + [152651] = 11, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5741), 1, + ACTIONS(5793), 1, sym_identifier, - ACTIONS(5743), 1, - anon_sym_LPAREN, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3383), 2, + ACTIONS(5795), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3447), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3623), 2, + STATE(3607), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5746), 4, + ACTIONS(5846), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [148921] = 12, - ACTIONS(5363), 1, - anon_sym_LPAREN, - ACTIONS(5377), 1, + [152693] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5381), 1, + ACTIONS(5699), 1, + anon_sym_LPAREN, + ACTIONS(5848), 1, sym_identifier, - STATE(3359), 1, + STATE(3273), 1, sym__signedness, - STATE(3550), 1, + STATE(3482), 1, sym__longness, - STATE(4495), 1, + STATE(5715), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5373), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5375), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5379), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3469), 2, + STATE(3476), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5371), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148965] = 12, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(5335), 1, + [152737] = 12, + ACTIONS(5459), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5473), 1, + anon_sym_long, + ACTIONS(5477), 1, sym_identifier, - STATE(3235), 1, + STATE(3438), 1, sym__signedness, - STATE(3423), 1, + STATE(3589), 1, sym__longness, - STATE(4981), 1, + STATE(4554), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(5469), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(5471), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5475), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3565), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(5467), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149009] = 12, - ACTIONS(3942), 1, + [152781] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(5204), 1, + STATE(5436), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149053] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(4897), 1, + [152825] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5805), 1, + sym_identifier, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5807), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3457), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3675), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5809), 3, anon_sym_LPAREN, - ACTIONS(5521), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + [152867] = 12, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5778), 1, sym_identifier, - STATE(3156), 1, - sym__signedness, - STATE(3364), 1, - sym__longness, - STATE(5371), 1, - sym_c_type, + ACTIONS(5780), 1, + anon_sym_LPAREN, + STATE(3493), 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(3515), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5783), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5785), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3342), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3574), 2, + sym_operator_name, + sym_c_function_pointer_name, + [152911] = 12, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5778), 1, + sym_identifier, + ACTIONS(5787), 1, + anon_sym_LPAREN, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5785), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5850), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3439), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3574), 2, + sym_operator_name, + sym_c_function_pointer_name, + [152955] = 4, + ACTIONS(5856), 1, + anon_sym_long, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5852), 7, + anon_sym_STAR, + sym_identifier, anon_sym_int, anon_sym_double, anon_sym_complex, - [149097] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(4897), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5854), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5521), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [152983] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5778), 1, sym_identifier, - STATE(3156), 1, - sym__signedness, - STATE(3364), 1, - sym__longness, - STATE(5212), 1, - sym_c_type, + ACTIONS(5780), 1, + anon_sym_LPAREN, + STATE(3493), 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(3515), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [149141] = 12, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(5748), 1, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3439), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3574), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5785), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [153025] = 5, + ACTIONS(5830), 1, + anon_sym_COLON, + ACTIONS(5832), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5858), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5834), 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, + [153055] = 12, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5821), 1, sym_identifier, - ACTIONS(5750), 1, + ACTIONS(5860), 1, anon_sym_LPAREN, - STATE(3235), 1, - sym__signedness, - STATE(3423), 1, - sym__longness, - STATE(5592), 1, - sym_c_type, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(3940), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5547), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3635), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(3936), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [149185] = 12, - ACTIONS(1356), 1, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5823), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5863), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3444), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3596), 2, + sym_operator_name, + sym_c_function_pointer_name, + [153099] = 4, + ACTIONS(5865), 1, + anon_sym_COMMA, + STATE(3343), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5688), 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, + [153127] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5793), 1, + sym_identifier, + ACTIONS(5838), 1, + anon_sym_LPAREN, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3447), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3607), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5795), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [153169] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(5640), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5868), 1, sym_identifier, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(4706), 1, + STATE(5697), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3513), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149229] = 12, - ACTIONS(1356), 1, - anon_sym_long, - ACTIONS(4897), 1, + [153213] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5513), 1, + sym_identifier, + ACTIONS(5515), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3340), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3626), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5518), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [153255] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5513), 1, sym_identifier, - STATE(3156), 1, - sym__signedness, - STATE(3364), 1, - sym__longness, - STATE(5269), 1, - sym_c_type, + ACTIONS(5515), 1, + anon_sym_LPAREN, + STATE(3493), 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(3515), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1348), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [149273] = 11, - ACTIONS(4253), 1, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3455), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3626), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5840), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [153297] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5513), 1, + sym_identifier, + ACTIONS(5843), 1, + anon_sym_LPAREN, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3297), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3626), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5518), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [153339] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5513), 1, + sym_identifier, + ACTIONS(5843), 1, + anon_sym_LPAREN, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4325), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3455), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3626), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5518), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [153381] = 11, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5732), 1, + ACTIONS(5793), 1, sym_identifier, - ACTIONS(5734), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3266), 2, + STATE(3447), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3611), 2, + STATE(3607), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5739), 4, + ACTIONS(5795), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [149315] = 11, - ACTIONS(4253), 1, + [153423] = 11, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, + ACTIONS(4996), 1, anon_sym_operator, - ACTIONS(5732), 1, + ACTIONS(5821), 1, sym_identifier, - ACTIONS(5752), 1, + ACTIONS(5860), 1, anon_sym_LPAREN, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(4325), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4251), 2, + ACTIONS(4327), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3399), 2, + STATE(3444), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3611), 2, + STATE(3596), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5739), 4, + ACTIONS(5823), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [149357] = 12, - ACTIONS(5363), 1, - anon_sym_LPAREN, - ACTIONS(5377), 1, + [153465] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5381), 1, + ACTIONS(4984), 1, + anon_sym_LPAREN, + ACTIONS(5682), 1, sym_identifier, - STATE(3359), 1, + STATE(3209), 1, sym__signedness, - STATE(3550), 1, + STATE(3417), 1, sym__longness, - STATE(4529), 1, + STATE(4844), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5373), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5375), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5379), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3469), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5371), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149401] = 12, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5732), 1, - sym_identifier, - ACTIONS(5752), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5739), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5755), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3399), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3611), 2, - sym_operator_name, - sym_c_function_pointer_name, - [149445] = 12, - ACTIONS(1356), 1, + [153509] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3156), 1, + STATE(3273), 1, sym__signedness, - STATE(3364), 1, + STATE(3482), 1, sym__longness, - STATE(5352), 1, + STATE(5037), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149489] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5757), 1, - sym_identifier, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5761), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3385), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3586), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5759), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [149531] = 4, - ACTIONS(5387), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4338), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4328), 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, - [149559] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5757), 1, - sym_identifier, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5761), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3341), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3586), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5759), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [149601] = 12, - ACTIONS(3942), 1, + [153553] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4751), 1, + STATE(5278), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149645] = 12, - ACTIONS(3942), 1, + [153597] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3235), 1, + STATE(3209), 1, sym__signedness, - STATE(3423), 1, + STATE(3417), 1, sym__longness, - STATE(5258), 1, + STATE(5345), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149689] = 12, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5449), 1, - sym_identifier, - ACTIONS(5457), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5453), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5460), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3346), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3588), 2, - sym_operator_name, - sym_c_function_pointer_name, - [149733] = 12, - ACTIONS(1356), 1, + [153641] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5870), 1, sym_identifier, - STATE(3156), 1, + ACTIONS(5872), 1, + anon_sym_LPAREN, + STATE(3273), 1, sym__signedness, - STATE(3364), 1, + STATE(3482), 1, sym__longness, - STATE(5218), 1, + STATE(5715), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3728), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149777] = 5, - ACTIONS(5693), 1, - anon_sym_COLON, - ACTIONS(5695), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5763), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5697), 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, - [149807] = 12, - ACTIONS(1356), 1, + [153685] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(5272), 1, + STATE(5424), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149851] = 12, - ACTIONS(5363), 1, + [153729] = 12, + ACTIONS(5459), 1, anon_sym_LPAREN, - ACTIONS(5377), 1, + ACTIONS(5473), 1, anon_sym_long, - ACTIONS(5381), 1, + ACTIONS(5477), 1, sym_identifier, - STATE(3359), 1, + STATE(3438), 1, sym__signedness, - STATE(3550), 1, + STATE(3589), 1, sym__longness, - STATE(4560), 1, + STATE(4569), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5373), 2, + ACTIONS(5469), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5375), 2, + ACTIONS(5471), 2, anon_sym_char, anon_sym_short, - ACTIONS(5379), 2, + ACTIONS(5475), 2, anon_sym_const, anon_sym_volatile, - STATE(3469), 2, + STATE(3565), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5371), 3, + ACTIONS(5467), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149895] = 12, - ACTIONS(1356), 1, + [153773] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(5004), 1, + STATE(5425), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149939] = 12, - ACTIONS(3942), 1, + [153817] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4810), 1, + STATE(4913), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149983] = 12, - ACTIONS(3942), 1, + [153861] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(5200), 1, + STATE(5354), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150027] = 12, - ACTIONS(5377), 1, + [153905] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5765), 1, - sym_identifier, - ACTIONS(5767), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - STATE(3359), 1, + ACTIONS(5682), 1, + sym_identifier, + STATE(3209), 1, sym__signedness, - STATE(3550), 1, + STATE(3417), 1, sym__longness, - STATE(5466), 1, + STATE(5428), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5373), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5375), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3500), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5371), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150071] = 12, - ACTIONS(3942), 1, + [153949] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, - anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5874), 1, sym_identifier, - STATE(3235), 1, + ACTIONS(5876), 1, + anon_sym_LPAREN, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4842), 1, + STATE(5715), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3741), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150115] = 12, - ACTIONS(3942), 1, + [153993] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3235), 1, + STATE(3209), 1, sym__signedness, - STATE(3423), 1, + STATE(3417), 1, sym__longness, - STATE(5183), 1, + STATE(5263), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150159] = 12, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5449), 1, - sym_identifier, - ACTIONS(5457), 1, + [154037] = 12, + ACTIONS(5459), 1, anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5460), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5769), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3393), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3588), 2, - sym_operator_name, - sym_c_function_pointer_name, - [150203] = 12, - ACTIONS(3942), 1, + ACTIONS(5473), 1, anon_sym_long, - ACTIONS(5335), 1, - anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5477), 1, sym_identifier, - STATE(3235), 1, + STATE(3438), 1, sym__signedness, - STATE(3423), 1, + STATE(3589), 1, sym__longness, - STATE(4875), 1, + STATE(4626), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(5469), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(5471), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5475), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3565), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(5467), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150247] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5449), 1, - sym_identifier, - ACTIONS(5688), 1, + [154081] = 12, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5431), 1, anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3276), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3588), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5453), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [150289] = 12, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5449), 1, + ACTIONS(5797), 1, sym_identifier, - ACTIONS(5688), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4818), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5453), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5772), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3278), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3588), 2, - sym_operator_name, - sym_c_function_pointer_name, - [150333] = 12, - ACTIONS(3942), 1, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5642), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3474), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [154125] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4903), 1, + STATE(5321), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150377] = 12, - ACTIONS(3942), 1, + [154169] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3235), 1, + STATE(3209), 1, sym__signedness, - STATE(3423), 1, + STATE(3417), 1, sym__longness, - STATE(5304), 1, + STATE(5309), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150421] = 12, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5449), 1, - sym_identifier, - ACTIONS(5688), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5453), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5772), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3393), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3588), 2, - sym_operator_name, - sym_c_function_pointer_name, - [150465] = 12, - ACTIONS(3942), 1, + [154213] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3235), 1, + STATE(3209), 1, sym__signedness, - STATE(3423), 1, + STATE(3417), 1, sym__longness, - STATE(4923), 1, + STATE(5367), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150509] = 12, - ACTIONS(3942), 1, - anon_sym_long, - ACTIONS(5335), 1, + [154257] = 12, + ACTIONS(5459), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5473), 1, + anon_sym_long, + ACTIONS(5477), 1, sym_identifier, - STATE(3235), 1, + STATE(3438), 1, sym__signedness, - STATE(3423), 1, + STATE(3589), 1, sym__longness, - STATE(5368), 1, + STATE(4565), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(5469), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(5471), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5475), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3565), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(5467), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150553] = 5, - ACTIONS(5774), 1, - anon_sym_DOT, - STATE(3305), 1, - aux_sym_class_definition_repeat2, + [154301] = 4, + ACTIONS(5878), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5599), 6, - anon_sym_as, + ACTIONS(5852), 7, anon_sym_STAR, sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5604), 9, + ACTIONS(5854), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -246324,1482 +251877,1208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, - anon_sym_PIPE, anon_sym_AMP, - [150583] = 12, - ACTIONS(3942), 1, + [154329] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(5261), 1, + STATE(4868), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150627] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5757), 1, - sym_identifier, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5761), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3385), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3586), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5772), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [150669] = 12, - ACTIONS(3942), 1, + [154373] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(5171), 1, + STATE(5275), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150713] = 12, - ACTIONS(1356), 1, + [154417] = 12, + ACTIONS(371), 1, anon_sym_long, - ACTIONS(4897), 1, - anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5880), 1, sym_identifier, - STATE(3156), 1, + ACTIONS(5882), 1, + anon_sym_LPAREN, + STATE(3210), 1, sym__signedness, - STATE(3364), 1, + STATE(3416), 1, sym__longness, - STATE(4600), 1, + STATE(5602), 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(1358), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3599), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150757] = 12, - ACTIONS(3942), 1, + [154461] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(5257), 1, + STATE(4899), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150801] = 12, - ACTIONS(3942), 1, + [154505] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(5301), 1, + STATE(5244), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150845] = 12, - ACTIONS(3942), 1, + [154549] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(5182), 1, + STATE(4925), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150889] = 12, - ACTIONS(3942), 1, + [154593] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(5259), 1, + STATE(5305), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150933] = 12, - ACTIONS(3942), 1, + [154637] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(5260), 1, + STATE(4950), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [150977] = 12, - ACTIONS(3942), 1, + [154681] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(5190), 1, + STATE(5368), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151021] = 12, - ACTIONS(3942), 1, + [154725] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3235), 1, + STATE(3209), 1, sym__signedness, - STATE(3423), 1, + STATE(3417), 1, sym__longness, - STATE(5262), 1, + STATE(5245), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151065] = 12, - ACTIONS(3942), 1, + [154769] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(5263), 1, + STATE(4976), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151109] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5451), 1, - anon_sym_LPAREN, - ACTIONS(5732), 1, - sym_identifier, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3399), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3611), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5739), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151151] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5451), 1, - anon_sym_LPAREN, - ACTIONS(5757), 1, - sym_identifier, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3385), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3586), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5761), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151193] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5424), 1, - sym_identifier, - ACTIONS(5485), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3330), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3561), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5428), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151235] = 12, - ACTIONS(1356), 1, + [154813] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3156), 1, + STATE(3273), 1, sym__signedness, - STATE(3364), 1, + STATE(3482), 1, sym__longness, - STATE(5270), 1, + STATE(5431), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151279] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5451), 1, - anon_sym_LPAREN, - ACTIONS(5732), 1, - sym_identifier, - STATE(3413), 1, - sym_type_index, + [154857] = 5, + ACTIONS(5884), 1, + anon_sym_DOT, + STATE(3384), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, + ACTIONS(5701), 6, + anon_sym_as, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3337), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3611), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5739), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151321] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5699), 1, sym_identifier, - ACTIONS(5777), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3397), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3608), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5701), 4, - anon_sym_RPAREN, + ACTIONS(5706), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [151363] = 11, - ACTIONS(4253), 1, anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5424), 1, - sym_identifier, - ACTIONS(5485), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3403), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3561), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5428), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151405] = 12, - ACTIONS(1356), 1, + [154887] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3156), 1, + STATE(3273), 1, sym__signedness, - STATE(3364), 1, + STATE(3482), 1, sym__longness, - STATE(5229), 1, + STATE(5324), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151449] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5757), 1, - sym_identifier, - ACTIONS(5759), 1, + [154931] = 12, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5431), 1, anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3385), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3586), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5761), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151491] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5424), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3413), 1, - sym_type_index, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(5234), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5723), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3403), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3561), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5426), 3, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5642), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3474), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [154975] = 12, + ACTIONS(1388), 1, + anon_sym_long, + ACTIONS(4984), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [151533] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5757), 1, + ACTIONS(5682), 1, sym_identifier, - ACTIONS(5759), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, + STATE(3209), 1, + sym__signedness, + STATE(3417), 1, + sym__longness, + STATE(5247), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3323), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3586), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5761), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151575] = 12, - ACTIONS(1356), 1, + ACTIONS(1384), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1386), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1390), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3530), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1380), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [155019] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3156), 1, + STATE(3273), 1, sym__signedness, - STATE(3364), 1, + STATE(3482), 1, sym__longness, - STATE(5238), 1, + STATE(5320), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151619] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5757), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3385), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3586), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5761), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151661] = 12, - ACTIONS(1356), 1, + [155063] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3156), 1, + STATE(3273), 1, sym__signedness, - STATE(3364), 1, + STATE(3482), 1, sym__longness, - STATE(5242), 1, + STATE(5362), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151705] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5451), 1, + [155107] = 12, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3413), 1, - sym_type_index, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(5241), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3242), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3586), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5761), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151747] = 12, - ACTIONS(371), 1, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5642), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3474), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [155151] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5779), 1, - sym_identifier, - ACTIONS(5781), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - STATE(3133), 1, + ACTIONS(5797), 1, + sym_identifier, + STATE(3273), 1, sym__signedness, - STATE(3376), 1, + STATE(3482), 1, sym__longness, - STATE(5534), 1, + STATE(5322), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3557), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(365), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151791] = 12, - ACTIONS(1356), 1, + [155195] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3156), 1, + STATE(3273), 1, sym__signedness, - STATE(3364), 1, + STATE(3482), 1, sym__longness, - STATE(5247), 1, + STATE(5323), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151835] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5732), 1, - sym_identifier, - ACTIONS(5734), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3399), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3611), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5739), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151877] = 12, - ACTIONS(3942), 1, + [155239] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(4932), 1, + STATE(5251), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151921] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5451), 1, + [155283] = 12, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5741), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3413), 1, - sym_type_index, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(5325), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3383), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3623), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5746), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151963] = 12, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5741), 1, - sym_identifier, - ACTIONS(5743), 1, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5642), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3474), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [155327] = 12, + ACTIONS(4114), 1, + anon_sym_long, + ACTIONS(5431), 1, anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5746), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5783), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3383), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3623), 2, - sym_operator_name, - sym_c_function_pointer_name, - [152007] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5449), 1, + ACTIONS(5797), 1, sym_identifier, - ACTIONS(5457), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, + STATE(3273), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(5326), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3335), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3588), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5453), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [152049] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5449), 1, - sym_identifier, - ACTIONS(5457), 1, + ACTIONS(4110), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4112), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5642), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3474), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4108), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [155371] = 12, + ACTIONS(1388), 1, + anon_sym_long, + ACTIONS(4984), 1, anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3393), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3588), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5769), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [152091] = 11, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5699), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3413), 1, - sym_type_index, + STATE(3209), 1, + sym__signedness, + STATE(3417), 1, + sym__longness, + STATE(5333), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5701), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3397), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3608), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5777), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [152133] = 12, - ACTIONS(1356), 1, + ACTIONS(1384), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1386), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1390), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3530), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1380), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [155415] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(5278), 1, + STATE(5294), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152177] = 12, - ACTIONS(1356), 1, + [155459] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(5284), 1, + STATE(5304), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152221] = 12, - ACTIONS(1356), 1, + [155503] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(5288), 1, + STATE(5310), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152265] = 12, - ACTIONS(1356), 1, + [155547] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(4897), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5521), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(5293), 1, + STATE(5312), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(1358), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3515), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152309] = 12, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4909), 1, - anon_sym_operator, - ACTIONS(5732), 1, - sym_identifier, - ACTIONS(5734), 1, + [155591] = 12, + ACTIONS(1388), 1, + anon_sym_long, + ACTIONS(4984), 1, anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, + ACTIONS(5682), 1, + sym_identifier, + STATE(3209), 1, + sym__signedness, + STATE(3417), 1, + sym__longness, + STATE(5338), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4249), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4251), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5737), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5739), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3399), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3611), 2, - sym_operator_name, - sym_c_function_pointer_name, - [152353] = 12, - ACTIONS(3942), 1, + ACTIONS(1384), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1386), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1390), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3530), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1380), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [155635] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3235), 1, + STATE(3209), 1, sym__signedness, - STATE(3423), 1, + STATE(3417), 1, sym__longness, STATE(5344), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152397] = 4, - ACTIONS(5785), 1, - anon_sym_long, + [155679] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5778), 1, + sym_identifier, + ACTIONS(5780), 1, + anon_sym_LPAREN, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5682), 7, + ACTIONS(4325), 2, anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5684), 9, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3351), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3574), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5785), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [152425] = 12, - ACTIONS(1356), 1, + [155721] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5545), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5787), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3156), 1, + STATE(3209), 1, sym__signedness, - STATE(3364), 1, + STATE(3417), 1, sym__longness, - STATE(5619), 1, + STATE(5350), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1352), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1354), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1348), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152469] = 12, - ACTIONS(3942), 1, + [155765] = 12, + ACTIONS(1388), 1, anon_sym_long, - ACTIONS(5608), 1, + ACTIONS(4984), 1, anon_sym_LPAREN, - ACTIONS(5789), 1, + ACTIONS(5682), 1, sym_identifier, - STATE(3235), 1, + STATE(3209), 1, sym__signedness, - STATE(3423), 1, + STATE(3417), 1, sym__longness, - STATE(5592), 1, + STATE(5353), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(1384), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(1390), 2, anon_sym_const, anon_sym_volatile, - STATE(3436), 2, + STATE(3530), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(1380), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152513] = 12, - ACTIONS(3942), 1, + [155809] = 12, + ACTIONS(4114), 1, anon_sym_long, - ACTIONS(5335), 1, + ACTIONS(5431), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3235), 1, + STATE(3273), 1, sym__signedness, - STATE(3423), 1, + STATE(3482), 1, sym__longness, - STATE(5220), 1, + STATE(5402), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3938), 2, + ACTIONS(4110), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(3940), 2, + ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(5547), 2, + ACTIONS(5642), 2, anon_sym_const, anon_sym_volatile, - STATE(3434), 2, + STATE(3474), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(3936), 3, + ACTIONS(4108), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152557] = 3, + [155853] = 11, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4996), 1, + anon_sym_operator, + ACTIONS(5793), 1, + sym_identifier, + ACTIONS(5838), 1, + anon_sym_LPAREN, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5791), 7, + ACTIONS(4325), 2, anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5793), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4327), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3319), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3607), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5795), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_EQ, + [155895] = 11, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(5605), 1, + sym_identifier, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5610), 1, + anon_sym_LBRACK, + STATE(3494), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3804), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3820), 2, anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3412), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3594), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5518), 3, + sym__newline, + anon_sym_COMMA, anon_sym_EQ, + [155936] = 4, + ACTIONS(5483), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4416), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [152582] = 3, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4406), 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, + [155963] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5791), 7, + ACTIONS(5887), 7, anon_sym_STAR, sym_identifier, anon_sym_int, @@ -247807,7 +253086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5793), 9, + ACTIONS(5889), 9, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -247817,300 +253096,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [152607] = 11, - ACTIONS(3982), 1, + [155988] = 11, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5527), 1, + ACTIONS(5710), 1, sym_identifier, - ACTIONS(5795), 1, + ACTIONS(5712), 1, anon_sym_LPAREN, - ACTIONS(5799), 1, + ACTIONS(5715), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3444), 2, + STATE(3480), 2, sym_type_qualifier, aux_sym_c_type_repeat1, STATE(3576), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5723), 3, + ACTIONS(5526), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [152648] = 14, - ACTIONS(3703), 1, - anon_sym_LPAREN, - ACTIONS(3714), 1, + [156029] = 11, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(5891), 1, sym_identifier, - ACTIONS(4905), 1, + ACTIONS(5893), 1, + anon_sym_LPAREN, + ACTIONS(5896), 1, anon_sym_LBRACK, - ACTIONS(5705), 1, - anon_sym_DOT, - ACTIONS(5707), 1, - anon_sym_COMMA, - ACTIONS(5713), 1, - anon_sym_complex, - ACTIONS(5803), 1, - anon_sym_COLON, - ACTIONS(5805), 1, - anon_sym_EQ, - STATE(3458), 1, - aux_sym_class_definition_repeat2, - STATE(3477), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3756), 2, + STATE(3478), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [152695] = 4, - ACTIONS(5387), 1, + STATE(3618), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5785), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [156070] = 10, + ACTIONS(4988), 1, anon_sym_STAR, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(5899), 1, + anon_sym_complex, + STATE(3420), 1, + aux_sym_class_definition_repeat2, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 6, - anon_sym_LPAREN, + STATE(3542), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4990), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(4328), 9, + ACTIONS(3799), 5, + anon_sym_LPAREN, 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, - [152722] = 4, + anon_sym_GT, + anon_sym_QMARK, + [156109] = 11, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(5710), 1, + sym_identifier, + ACTIONS(5712), 1, + anon_sym_LPAREN, + ACTIONS(5715), 1, + anon_sym_LBRACK, + STATE(3494), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5811), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5807), 5, + ACTIONS(3804), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5809), 9, + ACTIONS(3820), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3432), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3576), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5526), 3, 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, - [152749] = 11, - ACTIONS(3982), 1, + [156150] = 11, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5813), 1, + ACTIONS(5891), 1, sym_identifier, - ACTIONS(5815), 1, + ACTIONS(5893), 1, anon_sym_LPAREN, - ACTIONS(5818), 1, + ACTIONS(5896), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3421), 2, + STATE(3426), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3616), 2, + STATE(3618), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5746), 3, + ACTIONS(5785), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [152790] = 7, - ACTIONS(5399), 1, - anon_sym_STAR, - ACTIONS(5825), 1, - anon_sym_long, - STATE(3559), 1, - sym__longness, + [156191] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5821), 2, + ACTIONS(5587), 2, anon_sym_int, anon_sym_double, - ACTIONS(5823), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5401), 9, + ACTIONS(5579), 5, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5581), 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_RBRACK, anon_sym_AMP, + [156218] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5583), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5579), 5, + anon_sym_STAR, + sym_identifier, anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - [152823] = 11, - ACTIONS(3982), 1, + ACTIONS(5581), 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, + [156245] = 11, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5585), 1, + ACTIONS(5710), 1, sym_identifier, - ACTIONS(5587), 1, + ACTIONS(5901), 1, anon_sym_LPAREN, - ACTIONS(5590), 1, + ACTIONS(5905), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3368), 2, + STATE(3480), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3524), 2, + STATE(3576), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5453), 3, + ACTIONS(5790), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [152864] = 13, - ACTIONS(3703), 1, + [156286] = 14, + ACTIONS(3799), 1, anon_sym_LPAREN, - ACTIONS(3714), 1, + ACTIONS(3810), 1, sym_identifier, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5705), 1, + ACTIONS(5811), 1, anon_sym_DOT, - ACTIONS(5713), 1, + ACTIONS(5813), 1, + anon_sym_COMMA, + ACTIONS(5819), 1, anon_sym_complex, - ACTIONS(5805), 1, + ACTIONS(5909), 1, + anon_sym_COLON, + ACTIONS(5911), 1, anon_sym_EQ, - STATE(3458), 1, + STATE(3510), 1, aux_sym_class_definition_repeat2, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5707), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3756), 2, + STATE(3813), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [152909] = 10, - ACTIONS(4901), 1, + [156333] = 10, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5705), 1, + ACTIONS(5811), 1, anon_sym_DOT, - ACTIONS(5827), 1, + ACTIONS(5913), 1, anon_sym_complex, - STATE(3183), 1, + STATE(3244), 1, aux_sym_class_definition_repeat2, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3499), 2, + STATE(3571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5426), 5, + ACTIONS(5530), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [152948] = 5, - ACTIONS(4336), 1, - anon_sym_as, - ACTIONS(5387), 1, - anon_sym_STAR, + [156372] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(5919), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5915), 5, + anon_sym_STAR, + sym_identifier, anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4328), 8, + ACTIONS(5917), 9, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [152977] = 4, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [156399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5489), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5399), 5, + ACTIONS(5701), 6, + anon_sym_as, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5401), 9, + ACTIONS(5706), 10, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -248119,251 +253426,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_AMP, - [153004] = 11, - ACTIONS(5829), 1, - anon_sym_DOT, - ACTIONS(5831), 1, + [156424] = 11, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5837), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(5921), 1, anon_sym_complex, - STATE(3396), 1, + STATE(3429), 1, aux_sym_class_definition_repeat2, - STATE(3643), 1, + STATE(3540), 1, sym_type_index, - STATE(5364), 1, - sym_template_default, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3590), 2, + STATE(3559), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3703), 4, + ACTIONS(5546), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [156465] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5701), 6, + anon_sym_as, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5706), 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, + [156490] = 4, + ACTIONS(5483), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4416), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4406), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_RBRACK, - [153045] = 11, - ACTIONS(3982), 1, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [156517] = 11, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5839), 1, + ACTIONS(5923), 1, sym_identifier, - ACTIONS(5841), 1, + ACTIONS(5925), 1, anon_sym_LPAREN, - ACTIONS(5844), 1, + ACTIONS(5928), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3358), 2, + STATE(3479), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3548), 2, + STATE(3642), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5739), 3, + ACTIONS(5823), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [153086] = 11, - ACTIONS(3982), 1, + [156558] = 11, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5585), 1, + ACTIONS(5605), 1, sym_identifier, - ACTIONS(5847), 1, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(5851), 1, + ACTIONS(5610), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3438), 2, + STATE(3498), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3524), 2, + STATE(3594), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5769), 3, + ACTIONS(5518), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [153127] = 11, - ACTIONS(3982), 1, + [156599] = 11, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5839), 1, + ACTIONS(5605), 1, sym_identifier, - ACTIONS(5841), 1, + ACTIONS(5931), 1, anon_sym_LPAREN, - ACTIONS(5844), 1, + ACTIONS(5935), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3429), 2, + STATE(3498), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3548), 2, + STATE(3594), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5739), 3, + ACTIONS(5840), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [153168] = 11, - ACTIONS(3982), 1, + [156640] = 11, + ACTIONS(4988), 1, + anon_sym_STAR, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5515), 1, + anon_sym_LPAREN, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(5939), 1, + anon_sym_complex, + STATE(3244), 1, + aux_sym_class_definition_repeat2, + STATE(3540), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3544), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4990), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5591), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [156681] = 11, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5855), 1, + ACTIONS(5941), 1, sym_identifier, - ACTIONS(5857), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - ACTIONS(5860), 1, + ACTIONS(5946), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3418), 2, + STATE(3473), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3546), 2, + STATE(3616), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5701), 3, + ACTIONS(5807), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [153209] = 11, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(5527), 1, - sym_identifier, - ACTIONS(5529), 1, + [156722] = 13, + ACTIONS(3799), 1, anon_sym_LPAREN, - ACTIONS(5532), 1, + ACTIONS(3810), 1, + sym_identifier, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3447), 1, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(5819), 1, + anon_sym_complex, + ACTIONS(5911), 1, + anon_sym_EQ, + STATE(3510), 1, + aux_sym_class_definition_repeat2, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3372), 2, + ACTIONS(5813), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3813), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3576), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5428), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [153250] = 3, + [156767] = 11, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(5949), 1, + sym_identifier, + ACTIONS(5951), 1, + anon_sym_LPAREN, + ACTIONS(5954), 1, + anon_sym_LBRACK, + STATE(3494), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5599), 6, - anon_sym_as, + ACTIONS(3804), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5604), 10, + ACTIONS(3820), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3505), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3668), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5795), 3, 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, - [153275] = 11, - ACTIONS(3982), 1, + [156808] = 11, + ACTIONS(4030), 1, anon_sym_operator, - ACTIONS(5863), 1, + ACTIONS(5949), 1, sym_identifier, - ACTIONS(5865), 1, + ACTIONS(5951), 1, anon_sym_LPAREN, - ACTIONS(5868), 1, + ACTIONS(5954), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(3804), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(3820), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3431), 2, + STATE(3430), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3522), 2, + STATE(3668), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5761), 3, + ACTIONS(5795), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [153316] = 3, + [156849] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5599), 6, - anon_sym_as, + ACTIONS(5887), 7, anon_sym_STAR, sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5604), 10, + ACTIONS(5889), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -248372,52 +253766,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_AMP, - [153341] = 11, - ACTIONS(4901), 1, - anon_sym_STAR, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5457), 1, - anon_sym_LPAREN, - ACTIONS(5705), 1, - anon_sym_DOT, - ACTIONS(5871), 1, - anon_sym_complex, - STATE(3183), 1, - aux_sym_class_definition_repeat2, - STATE(3477), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3455), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4903), 3, - anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5460), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [153382] = 4, + [156874] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5873), 2, + ACTIONS(5957), 2, anon_sym_int, anon_sym_double, - ACTIONS(5807), 5, + ACTIONS(5915), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5809), 9, + ACTIONS(5917), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -248427,363 +253790,676 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [153409] = 4, + [156901] = 5, + ACTIONS(4414), 1, + anon_sym_as, + ACTIONS(5483), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5403), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5399), 5, - anon_sym_STAR, - sym_identifier, + ACTIONS(4416), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5401), 9, - sym__newline, + ACTIONS(4406), 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, + [156930] = 11, + ACTIONS(5959), 1, anon_sym_DOT, + ACTIONS(5961), 1, + anon_sym_STAR, + ACTIONS(5965), 1, + anon_sym_LBRACK, + ACTIONS(5967), 1, + anon_sym_complex, + STATE(3458), 1, + aux_sym_class_definition_repeat2, + STATE(3719), 1, + sym_type_index, + STATE(5382), 1, + sym_template_default, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3581), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5963), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3799), 4, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [156971] = 7, + ACTIONS(5579), 1, + anon_sym_STAR, + ACTIONS(5973), 1, + anon_sym_long, + STATE(3601), 1, + sym__longness, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5969), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5971), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5581), 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, - [153436] = 11, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(5863), 1, - sym_identifier, - ACTIONS(5865), 1, + anon_sym_complex, + anon_sym___stdcall, + [157004] = 9, + ACTIONS(5977), 1, anon_sym_LPAREN, - ACTIONS(5868), 1, + ACTIONS(5988), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(5975), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5982), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(5985), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3369), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3522), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5761), 3, - sym__newline, + ACTIONS(5979), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [153477] = 11, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(5585), 1, - sym_identifier, - ACTIONS(5587), 1, - anon_sym_LPAREN, - ACTIONS(5590), 1, + [157040] = 11, + ACTIONS(4323), 1, + anon_sym_DOT, + ACTIONS(4325), 1, + anon_sym_STAR, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3447), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5991), 1, + anon_sym_complex, + STATE(3463), 1, + aux_sym_class_definition_repeat2, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3724), 2, + STATE(3619), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3438), 2, + anon_sym___stdcall, + ACTIONS(5546), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [157080] = 10, + ACTIONS(4323), 1, + anon_sym_DOT, + ACTIONS(4325), 1, + anon_sym_STAR, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(5993), 1, + anon_sym_complex, + STATE(3323), 1, + aux_sym_class_definition_repeat2, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3610), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3524), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5453), 3, - sym__newline, + ACTIONS(4327), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5530), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [153518] = 4, - ACTIONS(5387), 1, + [157118] = 5, + ACTIONS(4414), 1, + anon_sym_as, + ACTIONS(5483), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 6, + ACTIONS(4416), 6, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - ACTIONS(4328), 9, - anon_sym_DOT, + ACTIONS(4406), 7, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - anon_sym_PIPE, anon_sym_and, anon_sym_or, - [153545] = 11, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(5527), 1, + [157146] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5995), 5, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, sym_identifier, - ACTIONS(5529), 1, + anon_sym___stdcall, + ACTIONS(5997), 10, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5532), 1, + 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, + [157170] = 9, + ACTIONS(5977), 1, + anon_sym_LPAREN, + ACTIONS(5988), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3708), 2, + ACTIONS(5975), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5982), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3724), 2, + ACTIONS(5985), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3444), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3576), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5428), 3, - sym__newline, + ACTIONS(5999), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [153586] = 10, - ACTIONS(4901), 1, + [157206] = 10, + ACTIONS(5959), 1, + anon_sym_DOT, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - ACTIONS(5705), 1, - anon_sym_DOT, - ACTIONS(5875), 1, + ACTIONS(5967), 1, anon_sym_complex, - STATE(3362), 1, + STATE(3458), 1, aux_sym_class_definition_repeat2, - STATE(3477), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3464), 2, + STATE(3581), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3703), 5, + ACTIONS(3799), 4, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [157244] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6002), 6, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6004), 9, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [153625] = 11, - ACTIONS(4901), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [157268] = 9, + ACTIONS(5977), 1, + anon_sym_LPAREN, + ACTIONS(5988), 1, + anon_sym_LBRACK, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5975), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5982), 2, anon_sym_STAR, - ACTIONS(4905), 1, + anon_sym___stdcall, + ACTIONS(5985), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3454), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6006), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [157304] = 9, + ACTIONS(5977), 1, + anon_sym_LPAREN, + ACTIONS(5988), 1, anon_sym_LBRACK, - ACTIONS(5464), 1, + STATE(3493), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5975), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(5982), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5985), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3454), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6009), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [157340] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6012), 6, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6014), 9, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5705), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [157364] = 10, + ACTIONS(4323), 1, anon_sym_DOT, - ACTIONS(5877), 1, + ACTIONS(4325), 1, + anon_sym_STAR, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(4331), 1, anon_sym_complex, - STATE(3374), 1, + STATE(3441), 1, aux_sym_class_definition_repeat2, - STATE(3477), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3461), 2, + STATE(3597), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5467), 4, + ACTIONS(3799), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [157402] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6012), 5, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym___stdcall, + ACTIONS(6014), 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, - [153666] = 9, - ACTIONS(5881), 1, + [157426] = 4, + ACTIONS(5830), 1, + anon_sym_COLON, + ACTIONS(5832), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5834), 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, + [157452] = 5, + ACTIONS(4414), 1, + anon_sym_as, + ACTIONS(5483), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4416), 6, anon_sym_LPAREN, - ACTIONS(5892), 1, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4406), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [157480] = 8, + ACTIONS(5988), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5879), 2, + ACTIONS(5975), 2, sym_identifier, anon_sym_operator, - ACTIONS(5886), 2, + ACTIONS(5982), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5889), 2, + ACTIONS(5985), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3390), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5883), 4, + ACTIONS(5977), 5, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153702] = 3, + [157514] = 9, + ACTIONS(5977), 1, + anon_sym_LPAREN, + ACTIONS(5988), 1, + anon_sym_LBRACK, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5895), 6, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, + ACTIONS(5975), 2, sym_identifier, anon_sym_operator, + ACTIONS(5982), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5897), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5985), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3454), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6016), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [157550] = 8, + ACTIONS(6025), 1, anon_sym_LBRACK, + STATE(3494), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5975), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(6019), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6022), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - [153726] = 9, - ACTIONS(5881), 1, + STATE(3456), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5977), 5, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [157584] = 9, + ACTIONS(5977), 1, anon_sym_LPAREN, - ACTIONS(5892), 1, + ACTIONS(5988), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5879), 2, + ACTIONS(5975), 2, sym_identifier, anon_sym_operator, - ACTIONS(5886), 2, + ACTIONS(5982), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5889), 2, + ACTIONS(5985), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3390), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5899), 4, + ACTIONS(6028), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153762] = 11, - ACTIONS(4247), 1, + [157620] = 10, + ACTIONS(5959), 1, anon_sym_DOT, - ACTIONS(4249), 1, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - ACTIONS(5464), 1, - anon_sym_LPAREN, - ACTIONS(5902), 1, + ACTIONS(6031), 1, anon_sym_complex, - STATE(3392), 1, + STATE(3504), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3567), 2, + STATE(3632), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5467), 3, - anon_sym_RPAREN, + ACTIONS(5530), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [153802] = 8, - ACTIONS(5910), 1, - anon_sym_LBRACK, - STATE(3447), 1, - sym_type_index, + anon_sym_RBRACK, + [157658] = 4, + ACTIONS(6033), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5879), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5904), 2, + ACTIONS(5852), 6, anon_sym_STAR, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5907), 2, + ACTIONS(5854), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3387), 2, + anon_sym_GT, + anon_sym_QMARK, + [157684] = 11, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5959), 1, + anon_sym_DOT, + ACTIONS(5961), 1, + anon_sym_STAR, + ACTIONS(5965), 1, + anon_sym_LBRACK, + ACTIONS(6035), 1, + anon_sym_complex, + STATE(3464), 1, + aux_sym_class_definition_repeat2, + STATE(3719), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3634), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5881), 5, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5546), 3, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [153836] = 3, + anon_sym_RBRACK, + ACTIONS(5963), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [157724] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5913), 6, + ACTIONS(6002), 5, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5915), 9, + ACTIONS(6004), 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_AMP, - [153860] = 3, + anon_sym_GT, + anon_sym_QMARK, + [157748] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 5, + ACTIONS(6037), 5, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym___stdcall, - ACTIONS(5919), 10, + ACTIONS(6039), 10, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -248794,590 +254470,713 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [153884] = 8, - ACTIONS(5892), 1, + [157772] = 11, + ACTIONS(4323), 1, + anon_sym_DOT, + ACTIONS(4325), 1, + anon_sym_STAR, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + ACTIONS(5515), 1, + anon_sym_LPAREN, + ACTIONS(6041), 1, + anon_sym_complex, + STATE(3323), 1, + aux_sym_class_definition_repeat2, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5879), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5886), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5889), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3390), 2, + STATE(3635), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5881), 5, - anon_sym_LPAREN, + ACTIONS(4327), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5591), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [153918] = 11, - ACTIONS(5457), 1, + [157812] = 11, + ACTIONS(5515), 1, anon_sym_LPAREN, - ACTIONS(5829), 1, + ACTIONS(5959), 1, anon_sym_DOT, - ACTIONS(5831), 1, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - ACTIONS(5921), 1, + ACTIONS(6043), 1, anon_sym_complex, - STATE(3428), 1, + STATE(3504), 1, aux_sym_class_definition_repeat2, - STATE(3643), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3598), 2, + STATE(3658), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5460), 3, + ACTIONS(5591), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(5833), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [153958] = 11, - ACTIONS(4247), 1, + [157852] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6045), 6, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6047), 9, anon_sym_DOT, - ACTIONS(4249), 1, + 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, + [157876] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5995), 6, anon_sym_STAR, - ACTIONS(4253), 1, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5997), 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, - ACTIONS(5457), 1, + anon_sym_AMP, + [157900] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6045), 5, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym___stdcall, + ACTIONS(6047), 10, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5923), 1, + 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, + [157924] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6037), 6, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6039), 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, + [157948] = 11, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(5515), 1, + anon_sym_LPAREN, + ACTIONS(6049), 1, anon_sym_complex, - STATE(3305), 1, + STATE(3384), 1, aux_sym_class_definition_repeat2, - STATE(3413), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3574), 2, + ACTIONS(5591), 2, + sym__newline, + anon_sym_COLON, + STATE(3729), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5460), 3, + [157987] = 11, + ACTIONS(371), 1, + anon_sym_long, + ACTIONS(4030), 1, + anon_sym_operator, + ACTIONS(6051), 1, + sym_identifier, + STATE(3210), 1, + sym__signedness, + STATE(3238), 1, + sym_int_type, + STATE(3416), 1, + sym__longness, + STATE(3590), 1, + sym_operator_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(367), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(369), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(365), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [158026] = 5, + ACTIONS(6055), 1, + anon_sym_DOT, + STATE(3471), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6053), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6058), 8, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [153998] = 9, - ACTIONS(5881), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [158053] = 5, + ACTIONS(6060), 1, + anon_sym_LBRACK, + STATE(3523), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6053), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6058), 8, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5892), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AMP, + [158080] = 8, + ACTIONS(6063), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5879), 2, + ACTIONS(5975), 2, sym_identifier, anon_sym_operator, - ACTIONS(5886), 2, + ACTIONS(6019), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5889), 2, + ACTIONS(6022), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3390), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5925), 4, - anon_sym_RPAREN, + ACTIONS(6028), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [154034] = 4, - ACTIONS(5693), 1, - anon_sym_COLON, - ACTIONS(5695), 1, anon_sym_EQ, + [158113] = 8, + ACTIONS(4988), 1, + anon_sym_STAR, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(6067), 1, + anon_sym_complex, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5697), 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, - [154060] = 3, + STATE(3560), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4990), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5561), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [158146] = 5, + ACTIONS(6069), 1, + anon_sym_DOT, + STATE(3475), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 6, + ACTIONS(6053), 4, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5919), 9, - anon_sym_DOT, + ACTIONS(6058), 8, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [154084] = 10, - ACTIONS(5829), 1, - anon_sym_DOT, - ACTIONS(5831), 1, + [158173] = 9, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5928), 1, + ACTIONS(5550), 1, + anon_sym_LPAREN, + ACTIONS(6072), 1, anon_sym_complex, - STATE(3428), 1, - aux_sym_class_definition_repeat2, - STATE(3643), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3592), 2, + STATE(3564), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5426), 4, + ACTIONS(5553), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [158208] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5579), 5, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5581), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_RBRACK, - [154122] = 9, - ACTIONS(5881), 1, - anon_sym_LPAREN, - ACTIONS(5892), 1, anon_sym_LBRACK, - STATE(3413), 1, + anon_sym_AMP, + [158231] = 8, + ACTIONS(6074), 1, + anon_sym_LBRACK, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5879), 2, + ACTIONS(5975), 2, sym_identifier, anon_sym_operator, - ACTIONS(5886), 2, + ACTIONS(6019), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5889), 2, + ACTIONS(6022), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3390), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5930), 4, - anon_sym_RPAREN, + ACTIONS(5979), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [154158] = 4, - ACTIONS(5933), 1, - anon_sym_long, + [158264] = 8, + ACTIONS(6078), 1, + anon_sym_LBRACK, + STATE(3494), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5682), 6, - anon_sym_STAR, + ACTIONS(5975), 2, sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, + anon_sym_operator, + ACTIONS(6019), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5684), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(6022), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [154184] = 9, - ACTIONS(5881), 1, + STATE(3456), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5999), 4, + sym__newline, anon_sym_LPAREN, - ACTIONS(5892), 1, + anon_sym_COMMA, + anon_sym_EQ, + [158297] = 8, + ACTIONS(6082), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5879), 2, + ACTIONS(5975), 2, sym_identifier, anon_sym_operator, - ACTIONS(5886), 2, + ACTIONS(6019), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5889), 2, + ACTIONS(6022), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3390), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5935), 4, - anon_sym_RPAREN, + ACTIONS(6009), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [158330] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4654), 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, - [154220] = 3, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [158351] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5938), 5, + ACTIONS(5756), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5579), 4, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5940), 10, - anon_sym_DOT, + ACTIONS(5581), 8, 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, - [154244] = 10, - ACTIONS(5829), 1, + [158376] = 10, + ACTIONS(3797), 1, anon_sym_DOT, - ACTIONS(5831), 1, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(5837), 1, + ACTIONS(6086), 1, anon_sym_complex, - STATE(3396), 1, + STATE(3384), 1, aux_sym_class_definition_repeat2, - STATE(3643), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3590), 2, + STATE(3724), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(3820), 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, - [154282] = 11, - ACTIONS(5464), 1, + ACTIONS(5530), 3, + sym__newline, anon_sym_LPAREN, - ACTIONS(5829), 1, - anon_sym_DOT, - ACTIONS(5831), 1, + anon_sym_COLON, + [158413] = 9, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5942), 1, + ACTIONS(5787), 1, + anon_sym_LPAREN, + ACTIONS(6088), 1, anon_sym_complex, - STATE(3391), 1, - aux_sym_class_definition_repeat2, - STATE(3643), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3593), 2, + STATE(3552), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5467), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5833), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [154322] = 9, - ACTIONS(5881), 1, - anon_sym_LPAREN, - ACTIONS(5892), 1, - anon_sym_LBRACK, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5879), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5886), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5889), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3390), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5944), 4, - anon_sym_RPAREN, + ACTIONS(5850), 4, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [154358] = 5, - ACTIONS(4336), 1, - anon_sym_as, - ACTIONS(5387), 1, - anon_sym_STAR, + anon_sym_GT, + anon_sym_QMARK, + [158448] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4328), 7, + ACTIONS(4623), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_with, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - [154386] = 3, + anon_sym_nogil, + [158469] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 5, + ACTIONS(5579), 5, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5949), 10, + ACTIONS(5581), 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, - [154410] = 3, + [158492] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5913), 5, + ACTIONS(6090), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(4416), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5483), 4, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5915), 10, + ACTIONS(6092), 4, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [158519] = 5, + ACTIONS(6096), 1, anon_sym_DOT, + STATE(3471), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6094), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6098), 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, - anon_sym_GT, - anon_sym_QMARK, - [154434] = 3, + [158546] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5938), 6, + ACTIONS(6100), 5, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, + anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5940), 9, + ACTIONS(6102), 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, - [154458] = 3, + [158569] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5895), 5, + ACTIONS(6104), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5915), 4, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5897), 10, - anon_sym_DOT, + ACTIONS(5917), 8, 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, - [154482] = 10, - ACTIONS(4247), 1, + [158594] = 5, + ACTIONS(6106), 1, anon_sym_DOT, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(4255), 1, - anon_sym_complex, - STATE(3412), 1, - aux_sym_class_definition_repeat2, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3554), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4251), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3703), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [154520] = 3, + STATE(3475), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 6, + ACTIONS(6094), 4, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5949), 9, - anon_sym_DOT, + ACTIONS(6098), 8, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [154544] = 5, - ACTIONS(4336), 1, - anon_sym_as, - ACTIONS(5387), 1, - anon_sym_STAR, + [158621] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4328), 7, - anon_sym_RPAREN, + ACTIONS(4289), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_with, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - [154572] = 10, - ACTIONS(4247), 1, - anon_sym_DOT, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(5951), 1, - anon_sym_complex, - STATE(3305), 1, - aux_sym_class_definition_repeat2, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3565), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4251), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5426), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [154610] = 5, - ACTIONS(5955), 1, + anon_sym_nogil, + [158642] = 5, + ACTIONS(6096), 1, anon_sym_DOT, - STATE(3425), 1, + STATE(3488), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5953), 4, + ACTIONS(6108), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5957), 8, + ACTIONS(6110), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -249386,337 +255185,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [154637] = 3, + [158669] = 5, + ACTIONS(6106), 1, + anon_sym_DOT, + STATE(3491), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5791), 6, + ACTIONS(6108), 4, anon_sym_STAR, sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5793), 8, + ACTIONS(6110), 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, - [154660] = 3, + [158696] = 5, + ACTIONS(6112), 1, + anon_sym_LBRACK, + STATE(3512), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5959), 5, + ACTIONS(6053), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5961), 9, - sym__newline, + ACTIONS(6058), 8, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [154683] = 4, + [158723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5963), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5807), 4, + ACTIONS(5915), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5809), 8, + ACTIONS(5917), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [154708] = 5, - ACTIONS(5967), 1, - anon_sym_DOT, - STATE(3448), 1, - aux_sym_type_qualifier_repeat1, + [158746] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5965), 4, + ACTIONS(5915), 5, anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5969), 8, - sym__newline, + ACTIONS(5917), 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, - [154735] = 8, - ACTIONS(5971), 1, + [158769] = 8, + ACTIONS(6115), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5879), 2, + ACTIONS(5975), 2, sym_identifier, anon_sym_operator, - ACTIONS(5904), 2, + ACTIONS(6019), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5907), 2, + ACTIONS(6022), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3387), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5930), 4, + ACTIONS(6016), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [154768] = 5, + [158802] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, + ACTIONS(4639), 14, sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(4338), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(5387), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5977), 4, - anon_sym_except, anon_sym_with, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, anon_sym_nogil, - anon_sym_noexcept, - [154795] = 10, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(3708), 1, + [158823] = 8, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5979), 1, + ACTIONS(6119), 1, anon_sym_complex, - STATE(3255), 1, - aux_sym_class_definition_repeat2, - STATE(3447), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3702), 2, + STATE(3526), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5426), 3, - sym__newline, + ACTIONS(5846), 5, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, - [154832] = 8, - ACTIONS(5981), 1, - anon_sym_LBRACK, - STATE(3447), 1, - sym_type_index, + anon_sym_GT, + anon_sym_QMARK, + [158856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5879), 2, + ACTIONS(6100), 5, + anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, - ACTIONS(5904), 2, - anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5907), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3387), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5883), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [154865] = 11, - ACTIONS(3701), 1, + ACTIONS(6102), 9, anon_sym_DOT, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(5464), 1, anon_sym_LPAREN, - ACTIONS(5985), 1, - anon_sym_complex, - STATE(3432), 1, - aux_sym_class_definition_repeat2, - STATE(3447), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5467), 2, - sym__newline, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - STATE(3704), 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, - [154904] = 4, + [158879] = 8, + ACTIONS(5975), 1, + sym_identifier, + ACTIONS(6127), 1, + anon_sym_LBRACK, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5678), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5399), 4, + ACTIONS(6121), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(5401), 8, + ACTIONS(6124), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3502), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5977), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [154929] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4193), 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, - [154950] = 5, - ACTIONS(5955), 1, - anon_sym_DOT, - STATE(3442), 1, - aux_sym_type_qualifier_repeat1, + [158912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5965), 4, + ACTIONS(5887), 6, anon_sym_STAR, sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5969), 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, - [154977] = 11, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(3982), 1, - anon_sym_operator, - ACTIONS(5987), 1, - sym_identifier, - STATE(3133), 1, - sym__signedness, - STATE(3169), 1, - sym_int_type, - STATE(3376), 1, - sym__longness, - STATE(3624), 1, - sym_operator_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(367), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(369), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(365), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155016] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5399), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5401), 9, - anon_sym_DOT, + ACTIONS(5889), 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, - [155039] = 5, - ACTIONS(5599), 1, + anon_sym_GT, + anon_sym_QMARK, + [158935] = 5, + ACTIONS(5701), 1, anon_sym_STAR, - ACTIONS(5989), 1, + ACTIONS(6130), 1, anon_sym_DOT, - STATE(3428), 1, + STATE(3504), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5604), 11, + ACTIONS(5706), 11, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -249728,117 +255425,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [155066] = 8, - ACTIONS(5992), 1, - anon_sym_LBRACK, - STATE(3447), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5879), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5904), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5907), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3387), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5935), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [155099] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4474), 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, - [155120] = 8, - ACTIONS(5996), 1, + [158962] = 8, + ACTIONS(6133), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5879), 2, + ACTIONS(5975), 2, sym_identifier, anon_sym_operator, - ACTIONS(5904), 2, + ACTIONS(6019), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5907), 2, + ACTIONS(6022), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3387), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5899), 4, + ACTIONS(6006), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [155153] = 11, - ACTIONS(3701), 1, + [158995] = 11, + ACTIONS(3797), 1, anon_sym_DOT, - ACTIONS(3708), 1, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(5457), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6000), 1, + ACTIONS(6137), 1, anon_sym_complex, - STATE(3255), 1, + STATE(3469), 1, aux_sym_class_definition_repeat2, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5460), 2, + ACTIONS(5546), 2, sym__newline, anon_sym_COLON, - STATE(3711), 2, + STATE(3726), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [155192] = 5, - ACTIONS(6006), 1, + [159034] = 5, + ACTIONS(6139), 1, + anon_sym_DOT, + STATE(3539), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6094), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(6098), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_LBRACK, - STATE(3516), 1, - sym_type_index, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [159060] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6002), 4, + ACTIONS(6037), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6004), 8, + ACTIONS(6039), 9, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -249846,97 +255516,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - [155219] = 8, - ACTIONS(4901), 1, + [159082] = 9, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(6009), 1, + ACTIONS(5787), 1, + anon_sym_LPAREN, + ACTIONS(6141), 1, anon_sym_complex, - STATE(3477), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3506), 2, + STATE(3666), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5493), 5, - anon_sym_LPAREN, + ACTIONS(5850), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155252] = 8, - ACTIONS(4901), 1, - anon_sym_STAR, - ACTIONS(4905), 1, + anon_sym_EQ, + [159116] = 11, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6011), 1, + ACTIONS(5530), 1, + anon_sym_LPAREN, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(6143), 1, + sym_identifier, + ACTIONS(6145), 1, anon_sym_complex, - STATE(3477), 1, + STATE(3244), 1, + aux_sym_class_definition_repeat2, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3514), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5772), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155285] = 9, - ACTIONS(4901), 1, - anon_sym_STAR, - ACTIONS(4905), 1, + STATE(3812), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [159154] = 11, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6013), 1, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6149), 1, anon_sym_complex, - STATE(3477), 1, + STATE(3528), 1, + aux_sym_class_definition_repeat2, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3507), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5485), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155320] = 5, - ACTIONS(6015), 1, - anon_sym_LBRACK, - STATE(3504), 1, - sym_type_index, + STATE(3814), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [159192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6002), 4, + ACTIONS(6151), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6004), 8, + ACTIONS(6153), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -249944,217 +255614,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - [155347] = 8, - ACTIONS(6018), 1, + [159214] = 9, + ACTIONS(4325), 1, + anon_sym_STAR, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3447), 1, + ACTIONS(5550), 1, + anon_sym_LPAREN, + ACTIONS(6155), 1, + anon_sym_complex, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5879), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5904), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5907), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3387), 2, + STATE(3620), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5925), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(4327), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5553), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [155380] = 8, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(6028), 1, + [159248] = 8, + ACTIONS(4988), 1, + anon_sym_STAR, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + ACTIONS(5515), 1, + anon_sym_LPAREN, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6022), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6025), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3439), 2, + STATE(3544), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5881), 5, - anon_sym_LPAREN, + ACTIONS(4990), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5591), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [155413] = 3, + [159280] = 6, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 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(5807), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5809), 9, + ACTIONS(4662), 9, sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_from, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, + anon_sym_with, + anon_sym_PIPE, + anon_sym_nogil, + [159308] = 12, + ACTIONS(6165), 1, + sym_identifier, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6169), 1, anon_sym_LBRACK, - anon_sym_AMP, - [155436] = 3, + STATE(529), 1, + sym_c_function_definition, + STATE(4026), 1, + sym_c_name, + STATE(4033), 1, + sym_c_parameters, + STATE(5050), 1, + sym_type_index, + STATE(5334), 1, + sym_template_params, + STATE(5665), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5399), 5, + ACTIONS(4988), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5401), 9, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4990), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [155459] = 5, - ACTIONS(6031), 1, - anon_sym_DOT, - STATE(3442), 1, - aux_sym_type_qualifier_repeat1, + [159348] = 12, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6169), 1, + anon_sym_LBRACK, + ACTIONS(6171), 1, + sym_identifier, + STATE(2923), 1, + sym_c_function_definition, + STATE(3994), 1, + sym_c_name, + STATE(4016), 1, + sym_c_parameters, + STATE(5050), 1, + sym_type_index, + STATE(5287), 1, + sym_template_params, + STATE(5665), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6002), 4, + ACTIONS(4988), 2, anon_sym_STAR, - sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6004), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4990), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [155486] = 2, + [159388] = 11, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5530), 1, + anon_sym_LPAREN, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(6143), 1, + sym_identifier, + ACTIONS(6173), 1, + anon_sym_complex, + STATE(3244), 1, + aux_sym_class_definition_repeat2, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4458), 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, - [155507] = 8, - ACTIONS(6034), 1, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3780), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [159426] = 11, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3447), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(6147), 1, + sym_identifier, + ACTIONS(6175), 1, + anon_sym_complex, + STATE(3521), 1, + aux_sym_class_definition_repeat2, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5879), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5904), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5907), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3387), 2, + STATE(3805), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5944), 4, - sym__newline, + [159464] = 12, + ACTIONS(6167), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [155540] = 3, + ACTIONS(6169), 1, + anon_sym_LBRACK, + ACTIONS(6177), 1, + sym_identifier, + STATE(2935), 1, + sym_c_function_definition, + STATE(3947), 1, + sym_c_name, + STATE(4016), 1, + sym_c_parameters, + STATE(5050), 1, + sym_type_index, + STATE(5287), 1, + sym_template_params, + STATE(5665), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5807), 5, + ACTIONS(4988), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5809), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4990), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [155563] = 2, + [159504] = 11, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5515), 1, + anon_sym_LPAREN, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(6179), 1, + sym_identifier, + ACTIONS(6181), 1, + anon_sym_complex, + STATE(3244), 1, + aux_sym_class_definition_repeat2, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4489), 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, - [155584] = 5, - ACTIONS(5967), 1, - anon_sym_DOT, - STATE(3417), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3803), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [159542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5953), 4, + ACTIONS(6002), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5957), 8, + ACTIONS(6004), 9, sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -250162,21 +255871,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [155611] = 5, - ACTIONS(6038), 1, - anon_sym_DOT, - STATE(3448), 1, - aux_sym_type_qualifier_repeat1, + [159564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6002), 4, + ACTIONS(6151), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6004), 8, + ACTIONS(6153), 9, sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -250184,252 +255890,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [155638] = 9, - ACTIONS(4901), 1, - anon_sym_STAR, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5752), 1, + [159586] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5636), 2, + sym__dedent, anon_sym_LPAREN, - ACTIONS(6041), 1, + ACTIONS(6183), 11, + sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, - STATE(3477), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + [159608] = 7, + ACTIONS(4988), 1, + anon_sym_STAR, + ACTIONS(4992), 1, + anon_sym_LBRACK, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3501), 2, + STATE(3550), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5755), 4, + ACTIONS(5850), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [155673] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5959), 5, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5961), 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, - [155696] = 7, - ACTIONS(4901), 1, + [159638] = 7, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3495), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5485), 5, + ACTIONS(5850), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [155726] = 5, - ACTIONS(6043), 1, - anon_sym_DOT, - STATE(3462), 1, - aux_sym_type_qualifier_repeat1, + [159668] = 8, + ACTIONS(5961), 1, + anon_sym_STAR, + ACTIONS(5965), 1, + anon_sym_LBRACK, + ACTIONS(6185), 1, + anon_sym_complex, + STATE(3719), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5965), 3, - anon_sym_STAR, - sym_identifier, + STATE(3656), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5963), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5969), 8, + ACTIONS(5846), 4, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_RBRACK, + [159700] = 11, + ACTIONS(4992), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [155752] = 11, - ACTIONS(3703), 1, + ACTIONS(5515), 1, anon_sym_LPAREN, - ACTIONS(3714), 1, - sym_identifier, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5705), 1, + ACTIONS(5811), 1, anon_sym_DOT, - ACTIONS(6045), 1, + ACTIONS(6179), 1, + sym_identifier, + ACTIONS(6187), 1, anon_sym_complex, - STATE(3477), 1, - sym_type_index, - STATE(3512), 1, + STATE(3244), 1, aux_sym_class_definition_repeat2, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3760), 2, + STATE(3810), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [155790] = 5, - ACTIONS(6047), 1, + [159738] = 8, + ACTIONS(4988), 1, + anon_sym_STAR, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3542), 1, + ACTIONS(6189), 1, + anon_sym_LPAREN, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6002), 3, - anon_sym_STAR, - sym_identifier, + STATE(3502), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4990), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6004), 8, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(6192), 4, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [155816] = 8, - ACTIONS(4901), 1, + [159770] = 8, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(5734), 1, - anon_sym_LPAREN, - STATE(3477), 1, + ACTIONS(6194), 1, + anon_sym_complex, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3600), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5737), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [155848] = 12, - ACTIONS(6050), 1, - sym_identifier, - ACTIONS(6052), 1, + ACTIONS(5561), 4, anon_sym_LPAREN, - ACTIONS(6054), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [159802] = 10, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, anon_sym_LBRACK, - STATE(714), 1, - sym_c_function_definition, - STATE(3927), 1, - sym_c_parameters, - STATE(3928), 1, - sym_c_name, - STATE(5003), 1, + ACTIONS(3818), 1, + anon_sym_complex, + STATE(3483), 1, + aux_sym_class_definition_repeat2, + STATE(3494), 1, sym_type_index, - STATE(5274), 1, - sym_template_params, - STATE(5675), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(3799), 2, + sym__newline, + anon_sym_LPAREN, + STATE(3744), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, - [155888] = 3, - ACTIONS(5599), 1, + anon_sym___stdcall, + [159838] = 4, + ACTIONS(5852), 1, anon_sym_STAR, + ACTIONS(6196), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5604), 12, - anon_sym_DOT, + ACTIONS(5854), 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_int, + anon_sym_double, anon_sym_complex, anon_sym___stdcall, - [155910] = 11, - ACTIONS(4905), 1, + [159862] = 4, + ACTIONS(5483), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4406), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4416), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(5426), 1, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [159886] = 9, + ACTIONS(5787), 1, anon_sym_LPAREN, - ACTIONS(5705), 1, - anon_sym_DOT, - ACTIONS(6056), 1, - sym_identifier, - ACTIONS(6058), 1, + ACTIONS(5961), 1, + anon_sym_STAR, + ACTIONS(5965), 1, + anon_sym_LBRACK, + ACTIONS(6198), 1, anon_sym_complex, - STATE(3183), 1, - aux_sym_class_definition_repeat2, - STATE(3477), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, + STATE(3663), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5850), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3737), 2, + anon_sym___stdcall, + [159920] = 7, + ACTIONS(4988), 1, + anon_sym_STAR, + ACTIONS(4992), 1, + anon_sym_LBRACK, + STATE(3540), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3571), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [155948] = 3, + ACTIONS(4990), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5530), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [159950] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5947), 4, + ACTIONS(6012), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5949), 9, + ACTIONS(6014), 9, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -250439,64 +256187,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [155970] = 5, - ACTIONS(6060), 1, + [159972] = 6, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6063), 1, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 10, + ACTIONS(4658), 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, - [155996] = 8, - ACTIONS(4901), 1, - anon_sym_STAR, - ACTIONS(4905), 1, + [160000] = 5, + ACTIONS(6200), 1, anon_sym_LBRACK, - ACTIONS(5457), 1, - anon_sym_LPAREN, - STATE(3477), 1, + STATE(3611), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4903), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(6053), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5460), 4, + ACTIONS(6058), 8, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [156028] = 5, - ACTIONS(6067), 1, + [160026] = 5, + ACTIONS(6203), 1, anon_sym_DOT, - STATE(3462), 1, + STATE(3539), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6002), 3, + ACTIONS(6053), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(6004), 8, + ACTIONS(6058), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -250505,1694 +256251,1503 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [156054] = 11, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5457), 1, - anon_sym_LPAREN, - ACTIONS(5705), 1, + [160052] = 5, + ACTIONS(6139), 1, anon_sym_DOT, - ACTIONS(6070), 1, - sym_identifier, - ACTIONS(6072), 1, - anon_sym_complex, - STATE(3183), 1, - aux_sym_class_definition_repeat2, - STATE(3477), 1, - sym_type_index, + STATE(3507), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(6108), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(6110), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3724), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [156092] = 7, - ACTIONS(4901), 1, + anon_sym_GT, + anon_sym_QMARK, + [160078] = 7, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5426), 5, + ACTIONS(5809), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156122] = 7, - ACTIONS(4901), 1, + [160108] = 7, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3488), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5759), 5, + ACTIONS(5530), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156152] = 3, + [160138] = 6, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 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(5913), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5915), 9, + ACTIONS(4627), 9, sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_from, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [156174] = 7, - ACTIONS(4901), 1, + anon_sym_with, + anon_sym_PIPE, + anon_sym_nogil, + [160166] = 8, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + ACTIONS(5780), 1, + anon_sym_LPAREN, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6074), 5, - anon_sym_LPAREN, + ACTIONS(5783), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156204] = 8, - ACTIONS(4901), 1, + [160198] = 3, + ACTIONS(5701), 1, anon_sym_STAR, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5457), 1, - anon_sym_LPAREN, - STATE(3477), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3455), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(5706), 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(5460), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156236] = 8, - ACTIONS(5831), 1, - anon_sym_STAR, - ACTIONS(5835), 1, + [160220] = 12, + ACTIONS(6167), 1, + anon_sym_LPAREN, + ACTIONS(6169), 1, anon_sym_LBRACK, - ACTIONS(6076), 1, - anon_sym_complex, - STATE(3643), 1, + ACTIONS(6206), 1, + sym_identifier, + STATE(1367), 1, + sym_c_function_definition, + STATE(3968), 1, + sym_c_parameters, + STATE(4044), 1, + sym_c_name, + STATE(5050), 1, sym_type_index, + STATE(5330), 1, + sym_template_params, + STATE(5665), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3591), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5493), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [156268] = 6, - ACTIONS(6063), 1, + [160260] = 5, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6078), 1, + ACTIONS(6208), 1, anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4493), 9, + ACTIONS(4643), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_with, anon_sym_PIPE, - anon_sym_nogil, - [156296] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5917), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5919), 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, - [156318] = 12, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6082), 1, - sym_identifier, - STATE(2838), 1, - sym_c_function_definition, - STATE(3883), 1, - sym_c_parameters, - STATE(3945), 1, - sym_c_name, - STATE(5003), 1, - sym_type_index, - STATE(5223), 1, - sym_template_params, - STATE(5675), 1, - sym_type_qualifier, + anon_sym_nogil, + [160286] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(6045), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(6047), 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, - [156358] = 9, - ACTIONS(4249), 1, + [160308] = 8, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5752), 1, + ACTIONS(5780), 1, anon_sym_LPAREN, - ACTIONS(6084), 1, - anon_sym_complex, - STATE(3413), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3578), 2, + STATE(3553), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5755), 3, - anon_sym_RPAREN, + ACTIONS(5783), 4, anon_sym_COMMA, - anon_sym_EQ, - [156392] = 9, - ACTIONS(4249), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [160340] = 7, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_LPAREN, - ACTIONS(6086), 1, - anon_sym_complex, - STATE(3413), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3568), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5485), 3, - anon_sym_RPAREN, + ACTIONS(6211), 5, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - [156426] = 10, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(3708), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [160370] = 8, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(3722), 1, - anon_sym_complex, - STATE(3420), 1, - aux_sym_class_definition_repeat2, - STATE(3447), 1, + ACTIONS(6213), 1, + anon_sym_LPAREN, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 2, - sym__newline, - anon_sym_LPAREN, - STATE(3696), 2, + STATE(3529), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [156462] = 4, - ACTIONS(5682), 1, + ACTIONS(6211), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [160402] = 8, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(6088), 1, - anon_sym_long, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(6213), 1, + anon_sym_LPAREN, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5684), 11, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(3502), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4990), 3, 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, - [156486] = 5, - ACTIONS(6043), 1, - anon_sym_DOT, - STATE(3452), 1, - aux_sym_type_qualifier_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5953), 3, - anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(5957), 8, - anon_sym_LPAREN, + ACTIONS(6211), 4, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [156512] = 8, - ACTIONS(5831), 1, + [160434] = 8, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6090), 1, - anon_sym_complex, - STATE(3643), 1, + ACTIONS(5860), 1, + anon_sym_LPAREN, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3596), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5772), 4, - anon_sym_LPAREN, + ACTIONS(5863), 4, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [156544] = 6, - ACTIONS(6063), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [160466] = 4, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4462), 9, + ACTIONS(4650), 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, - [156572] = 3, - ACTIONS(6063), 1, - anon_sym_and, + [160490] = 8, + ACTIONS(4988), 1, + anon_sym_STAR, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5787), 1, + anon_sym_LPAREN, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4489), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + STATE(3502), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4990), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5850), 4, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_or, - anon_sym_nogil, - [156594] = 6, - ACTIONS(6063), 1, + anon_sym_GT, + anon_sym_QMARK, + [160522] = 3, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4497), 9, + ACTIONS(4654), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_with, anon_sym_PIPE, + anon_sym_or, anon_sym_nogil, - [156622] = 3, + [160544] = 4, + ACTIONS(6218), 1, + anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5583), 2, - sym__dedent, - anon_sym_LPAREN, - ACTIONS(6092), 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, - [156644] = 7, - ACTIONS(4901), 1, + STATE(3557), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(6216), 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, + [160568] = 7, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3467), 2, + STATE(3569), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5755), 5, + ACTIONS(5553), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156674] = 3, + [160598] = 8, + ACTIONS(4988), 1, + anon_sym_STAR, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5515), 1, + anon_sym_LPAREN, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5938), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, + STATE(3502), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4990), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5940), 9, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5591), 4, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [156696] = 4, - ACTIONS(5387), 1, + anon_sym_GT, + anon_sym_QMARK, + [160630] = 7, + ACTIONS(4988), 1, anon_sym_STAR, + ACTIONS(4992), 1, + anon_sym_LBRACK, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4328), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4338), 6, - anon_sym_LPAREN, + STATE(3502), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4990), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - [156720] = 11, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5464), 1, + ACTIONS(5553), 5, anon_sym_LPAREN, - ACTIONS(5705), 1, - anon_sym_DOT, - ACTIONS(6094), 1, - sym_identifier, - ACTIONS(6096), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [160660] = 8, + ACTIONS(4325), 1, + anon_sym_STAR, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(6221), 1, anon_sym_complex, - STATE(3463), 1, - aux_sym_class_definition_repeat2, - STATE(3477), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + STATE(3624), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4327), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5846), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [160692] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5995), 4, anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(5997), 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, - STATE(3753), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [156758] = 8, - ACTIONS(4901), 1, + [160714] = 8, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5752), 1, + ACTIONS(5843), 1, anon_sym_LPAREN, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3555), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5755), 4, + ACTIONS(5846), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156790] = 7, - ACTIONS(4901), 1, + [160746] = 8, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + ACTIONS(5843), 1, + anon_sym_LPAREN, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5777), 5, - anon_sym_LPAREN, + ACTIONS(5846), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156820] = 8, - ACTIONS(4901), 1, + [160778] = 8, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - ACTIONS(5734), 1, - anon_sym_LPAREN, - STATE(3477), 1, + ACTIONS(6223), 1, + anon_sym_complex, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3511), 2, + STATE(3582), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5737), 4, + ACTIONS(5561), 4, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156852] = 12, - ACTIONS(6052), 1, + anon_sym_EQ, + anon_sym_RBRACK, + [160810] = 11, + ACTIONS(3799), 1, anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6098), 1, + ACTIONS(3810), 1, sym_identifier, - STATE(1321), 1, - sym_c_function_definition, - STATE(3951), 1, - sym_c_parameters, - STATE(3955), 1, - sym_c_name, - STATE(5003), 1, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(6225), 1, + anon_sym_complex, + STATE(3518), 1, + aux_sym_class_definition_repeat2, + STATE(3540), 1, sym_type_index, - STATE(5184), 1, - sym_template_params, - STATE(5675), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [156892] = 12, - ACTIONS(6052), 1, + STATE(3834), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [160848] = 12, + ACTIONS(6167), 1, anon_sym_LPAREN, - ACTIONS(6054), 1, + ACTIONS(6169), 1, anon_sym_LBRACK, - ACTIONS(6100), 1, + ACTIONS(6227), 1, sym_identifier, - STATE(2841), 1, + STATE(1303), 1, sym_c_function_definition, - STATE(3883), 1, + STATE(3968), 1, sym_c_parameters, - STATE(3929), 1, + STATE(4027), 1, sym_c_name, - STATE(5003), 1, + STATE(5050), 1, sym_type_index, - STATE(5223), 1, + STATE(5330), 1, sym_template_params, - STATE(5675), 1, + STATE(5665), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [156932] = 12, - ACTIONS(6052), 1, + [160888] = 12, + ACTIONS(6167), 1, anon_sym_LPAREN, - ACTIONS(6054), 1, + ACTIONS(6169), 1, anon_sym_LBRACK, - ACTIONS(6102), 1, + ACTIONS(6229), 1, sym_identifier, - STATE(507), 1, + STATE(525), 1, sym_c_function_definition, - STATE(3886), 1, - sym_c_name, - STATE(3927), 1, + STATE(4033), 1, sym_c_parameters, - STATE(5003), 1, + STATE(4034), 1, + sym_c_name, + STATE(5050), 1, sym_type_index, - STATE(5274), 1, + STATE(5334), 1, sym_template_params, - STATE(5675), 1, + STATE(5665), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [156972] = 4, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4485), 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, - [156996] = 4, - ACTIONS(6106), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3494), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(6104), 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, - [157020] = 7, - ACTIONS(4901), 1, + [160928] = 7, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5772), 5, + ACTIONS(5846), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157050] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5895), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5897), 9, - sym__newline, - anon_sym_DOT, + [160958] = 9, + ACTIONS(5550), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [157072] = 11, - ACTIONS(4905), 1, + ACTIONS(5961), 1, + anon_sym_STAR, + ACTIONS(5965), 1, anon_sym_LBRACK, - ACTIONS(5457), 1, - anon_sym_LPAREN, - ACTIONS(5705), 1, - anon_sym_DOT, - ACTIONS(6070), 1, - sym_identifier, - ACTIONS(6109), 1, + ACTIONS(6231), 1, anon_sym_complex, - STATE(3183), 1, - aux_sym_class_definition_repeat2, - STATE(3477), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3744), 2, + STATE(3637), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [157110] = 9, - ACTIONS(5752), 1, - anon_sym_LPAREN, - ACTIONS(5831), 1, + ACTIONS(5553), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5963), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [160992] = 7, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6111), 1, - anon_sym_complex, - STATE(3643), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3602), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5755), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5833), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [157144] = 7, - ACTIONS(4901), 1, + ACTIONS(5838), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [161022] = 7, + ACTIONS(4988), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3541), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4990), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5759), 5, + ACTIONS(5838), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157174] = 9, - ACTIONS(5417), 1, - anon_sym_LPAREN, - ACTIONS(5831), 1, + [161052] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(6235), 1, anon_sym_LBRACK, - ACTIONS(6113), 1, - anon_sym_complex, - STATE(3643), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3594), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5485), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5833), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [157208] = 8, - ACTIONS(4901), 1, + ACTIONS(6233), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [161081] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, - anon_sym_LPAREN, - STATE(3477), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3595), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6074), 4, + ACTIONS(6238), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157240] = 7, - ACTIONS(4901), 1, + anon_sym_EQ, + [161110] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(6242), 1, anon_sym_LBRACK, - STATE(3477), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3499), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5426), 5, + ACTIONS(6240), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157270] = 8, - ACTIONS(4901), 1, + anon_sym_EQ, + [161139] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(6247), 1, anon_sym_LBRACK, - ACTIONS(6118), 1, - anon_sym_LPAREN, - STATE(3477), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3667), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6121), 4, + ACTIONS(6245), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157302] = 3, + anon_sym_EQ, + [161168] = 7, + ACTIONS(4325), 1, + anon_sym_STAR, + ACTIONS(4329), 1, + anon_sym_LBRACK, + STATE(3493), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6123), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, + STATE(3681), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4327), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6125), 9, - anon_sym_DOT, + ACTIONS(5553), 4, 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, - [157324] = 8, - ACTIONS(4901), 1, + [161197] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, - anon_sym_LPAREN, - STATE(3477), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3503), 2, + STATE(3652), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6074), 4, + ACTIONS(6250), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157356] = 7, - ACTIONS(4901), 1, + anon_sym_EQ, + [161226] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3477), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3645), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5485), 5, + ACTIONS(5850), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157386] = 8, - ACTIONS(4901), 1, + anon_sym_EQ, + [161255] = 8, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5780), 1, anon_sym_LPAREN, - STATE(3477), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3670), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5772), 4, + ACTIONS(5783), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157418] = 8, - ACTIONS(4901), 1, + anon_sym_EQ, + [161286] = 7, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, - anon_sym_LPAREN, - STATE(3477), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3487), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5772), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157450] = 12, - ACTIONS(6052), 1, + ACTIONS(5530), 4, anon_sym_LPAREN, - ACTIONS(6054), 1, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [161315] = 7, + ACTIONS(5961), 1, + anon_sym_STAR, + ACTIONS(5965), 1, anon_sym_LBRACK, - ACTIONS(6127), 1, - sym_identifier, - STATE(1303), 1, - sym_c_function_definition, - STATE(3951), 1, - sym_c_parameters, - STATE(3954), 1, - sym_c_name, - STATE(5003), 1, + STATE(3719), 1, sym_type_index, - STATE(5184), 1, - sym_template_params, - STATE(5675), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, + STATE(3614), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, - [157490] = 8, - ACTIONS(4249), 1, + anon_sym___stdcall, + ACTIONS(5553), 4, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [161344] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, - anon_sym_complex, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3570), 2, + STATE(3588), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5772), 4, - anon_sym_LPAREN, + ACTIONS(6252), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [157522] = 8, - ACTIONS(4901), 1, + [161373] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(5743), 1, - anon_sym_LPAREN, - STATE(3477), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3661), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5783), 4, + ACTIONS(6254), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157554] = 11, - ACTIONS(4905), 1, + anon_sym_EQ, + [161402] = 7, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(6258), 1, anon_sym_LBRACK, - ACTIONS(5426), 1, - anon_sym_LPAREN, - ACTIONS(5705), 1, - anon_sym_DOT, - ACTIONS(6056), 1, - sym_identifier, - ACTIONS(6131), 1, - anon_sym_complex, - STATE(3183), 1, - aux_sym_class_definition_repeat2, - STATE(3477), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3794), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [157592] = 11, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5464), 1, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6256), 4, + sym__newline, anon_sym_LPAREN, - ACTIONS(5705), 1, - anon_sym_DOT, - ACTIONS(6094), 1, - sym_identifier, - ACTIONS(6133), 1, - anon_sym_complex, - STATE(3477), 1, + anon_sym_COMMA, + anon_sym_EQ, + [161431] = 7, + ACTIONS(5961), 1, + anon_sym_STAR, + ACTIONS(5965), 1, + anon_sym_LBRACK, + STATE(3719), 1, sym_type_index, - STATE(3497), 1, - aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3718), 2, + STATE(3662), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [157630] = 7, - ACTIONS(4901), 1, + ACTIONS(5963), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5850), 4, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [161460] = 8, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(4905), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - STATE(3477), 1, + ACTIONS(6261), 1, + anon_sym_complex, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3687), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4903), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5755), 5, + ACTIONS(5561), 3, + sym__newline, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [157660] = 8, - ACTIONS(4249), 1, + [161491] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(6135), 1, - anon_sym_complex, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3558), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5493), 4, - anon_sym_LPAREN, + ACTIONS(6263), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [157692] = 3, + [161520] = 4, + ACTIONS(5579), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6123), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6125), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(5969), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5581), 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, - [157714] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5959), 4, - anon_sym_STAR, - sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(5961), 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, - [157735] = 7, - ACTIONS(3708), 1, + [161543] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(6139), 1, + ACTIONS(6265), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + STATE(3640), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6137), 4, + ACTIONS(6254), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [157764] = 7, - ACTIONS(3708), 1, + [161572] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(6144), 1, + ACTIONS(6268), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6142), 4, + ACTIONS(6263), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [157793] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6147), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(6149), 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, - [157814] = 7, - ACTIONS(3708), 1, + [161601] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(6153), 1, + ACTIONS(6273), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6151), 4, + ACTIONS(6271), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [157843] = 7, - ACTIONS(3708), 1, + [161630] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(6158), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3545), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6156), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6256), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [157872] = 7, - ACTIONS(3708), 1, + [161659] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(6163), 1, + ACTIONS(6278), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + STATE(3617), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6161), 4, + ACTIONS(6276), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [157901] = 7, - ACTIONS(3708), 1, + [161688] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(6168), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3547), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6166), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [157930] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5953), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5957), 8, - anon_sym_LPAREN, + ACTIONS(6233), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [157951] = 7, - ACTIONS(5831), 1, + [161717] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3592), 2, + STATE(3608), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5426), 4, - anon_sym_LPAREN, + ACTIONS(6281), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, - [157980] = 7, - ACTIONS(5831), 1, + [161746] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3595), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5485), 4, + ACTIONS(5530), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [161775] = 3, + ACTIONS(5887), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5889), 11, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, - [158009] = 7, - ACTIONS(5831), 1, + anon_sym_AMP, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym___stdcall, + [161796] = 9, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - STATE(3643), 1, + ACTIONS(5550), 1, + anon_sym_LPAREN, + ACTIONS(6283), 1, + anon_sym_complex, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3597), 2, + ACTIONS(5553), 2, + sym__newline, + anon_sym_COLON, + STATE(3757), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5759), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [158038] = 8, - ACTIONS(5457), 1, - anon_sym_LPAREN, - ACTIONS(5831), 1, + [161829] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3598), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5460), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5833), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [158069] = 8, - ACTIONS(5688), 1, + ACTIONS(5553), 4, anon_sym_LPAREN, - ACTIONS(5831), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [161858] = 4, + ACTIONS(5915), 1, anon_sym_STAR, - ACTIONS(5835), 1, - anon_sym_LBRACK, - STATE(3643), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3599), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5772), 3, + ACTIONS(6285), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5917), 9, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(5833), 3, - anon_sym_STAR_STAR, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [158100] = 7, - ACTIONS(5831), 1, + [161881] = 8, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3643), 1, + ACTIONS(6213), 1, + anon_sym_LPAREN, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3601), 2, + STATE(3665), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5755), 4, - anon_sym_LPAREN, + ACTIONS(6211), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [158129] = 8, - ACTIONS(5734), 1, + [161912] = 8, + ACTIONS(5843), 1, anon_sym_LPAREN, - ACTIONS(5831), 1, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3603), 2, + STATE(3659), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5737), 3, + ACTIONS(5846), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(5833), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [158160] = 8, - ACTIONS(5831), 1, + [161943] = 8, + ACTIONS(5780), 1, + anon_sym_LPAREN, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, - anon_sym_LPAREN, - STATE(3643), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3604), 2, + STATE(3664), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6074), 3, + ACTIONS(5783), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [158191] = 13, - ACTIONS(6171), 1, - anon_sym_COMMA, - ACTIONS(6173), 1, - anon_sym_as, - ACTIONS(6175), 1, - anon_sym_if, - ACTIONS(6177), 1, - anon_sym_COLON, - ACTIONS(6179), 1, - anon_sym_async, - ACTIONS(6181), 1, - anon_sym_for, - ACTIONS(6183), 1, - anon_sym_RBRACE, - ACTIONS(6185), 1, - anon_sym_and, - ACTIONS(6187), 1, - anon_sym_or, - STATE(4149), 1, - sym_for_in_clause, - STATE(4816), 1, - aux_sym__collection_elements_repeat1, - STATE(5649), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [158232] = 7, - ACTIONS(4249), 1, + ACTIONS(5963), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [161974] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3543), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6189), 4, + ACTIONS(6287), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [158261] = 3, + [162003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5399), 4, + ACTIONS(5579), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(5401), 8, + ACTIONS(5581), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -252201,121 +257756,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [158282] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5953), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5957), 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, - [158303] = 7, - ACTIONS(4249), 1, + [162024] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3565), 2, + STATE(3669), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5426), 4, - anon_sym_LPAREN, + ACTIONS(6289), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [158332] = 7, - ACTIONS(4249), 1, + [162053] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3569), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5485), 4, - anon_sym_LPAREN, + ACTIONS(6291), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [158361] = 7, - ACTIONS(4249), 1, + [162082] = 8, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - STATE(3413), 1, + ACTIONS(6293), 1, + anon_sym_complex, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + STATE(3721), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6191), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5846), 3, + sym__newline, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_EQ, - [158390] = 7, - ACTIONS(4249), 1, + [162113] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3563), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6193), 4, + ACTIONS(5838), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [158419] = 3, + [162142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6123), 3, + ACTIONS(6151), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(6125), 9, + ACTIONS(6153), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -252325,38 +257863,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [158440] = 7, - ACTIONS(4249), 1, + [162163] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6137), 4, + ACTIONS(6271), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [158469] = 3, + [162192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6195), 4, + ACTIONS(6295), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(6197), 8, + ACTIONS(6297), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -252365,247 +257903,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [158490] = 7, - ACTIONS(3708), 1, + [162213] = 7, + ACTIONS(6299), 1, anon_sym_STAR, - ACTIONS(6201), 1, + ACTIONS(6305), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(6302), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6199), 4, - sym__newline, + ACTIONS(5977), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158519] = 7, - ACTIONS(3708), 1, + anon_sym_RBRACK, + [162242] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(6206), 1, + ACTIONS(6310), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3613), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6204), 4, + ACTIONS(6308), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158548] = 7, - ACTIONS(3708), 1, + [162271] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(6211), 1, + ACTIONS(6315), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + STATE(3585), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6209), 4, + ACTIONS(6313), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158577] = 7, - ACTIONS(3708), 1, + [162300] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(6216), 1, + ACTIONS(6320), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3615), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6214), 4, + ACTIONS(6318), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158606] = 8, - ACTIONS(3708), 1, + [162329] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(6323), 1, anon_sym_LBRACK, - ACTIONS(6219), 1, - anon_sym_complex, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3697), 2, + STATE(3573), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5493), 3, + ACTIONS(6238), 4, sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [158637] = 4, - ACTIONS(5399), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5821), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5401), 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, - [158660] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5387), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4338), 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, - [158681] = 7, - ACTIONS(4249), 1, + [162358] = 8, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + ACTIONS(5515), 1, + anon_sym_LPAREN, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3572), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5759), 4, - anon_sym_LPAREN, + ACTIONS(5591), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [158710] = 8, - ACTIONS(4249), 1, + [162389] = 8, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(5457), 1, + ACTIONS(5843), 1, anon_sym_LPAREN, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3574), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5460), 3, + ACTIONS(5846), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [158741] = 7, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - STATE(3413), 1, - sym_type_index, + [162420] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4251), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5426), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [158770] = 3, - ACTIONS(5791), 1, + ACTIONS(5483), 4, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5793), 11, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4416), 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_int, - anon_sym_double, - anon_sym_complex, - anon_sym___stdcall, - [158791] = 8, - ACTIONS(4249), 1, + anon_sym_GT, + anon_sym_QMARK, + [162441] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(6326), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, - anon_sym_LPAREN, - STATE(3413), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, @@ -252613,2003 +258090,1806 @@ static const uint16_t ts_small_parse_table[] = { STATE(3575), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5772), 3, - anon_sym_RPAREN, + ACTIONS(6250), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158822] = 9, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_LPAREN, - ACTIONS(6221), 1, - anon_sym_complex, - STATE(3447), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5485), 2, - sym__newline, - 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, - [158855] = 7, - ACTIONS(4249), 1, + [162470] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(6329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3591), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5485), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [158884] = 4, - ACTIONS(5807), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6223), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5809), 9, + ACTIONS(6252), 4, + 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, - [158907] = 7, - ACTIONS(4249), 1, + [162499] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6225), 4, + ACTIONS(5850), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [158936] = 7, - ACTIONS(4249), 1, + [162528] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(6334), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3585), 2, + STATE(3592), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6227), 4, - anon_sym_RPAREN, + ACTIONS(6332), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [158965] = 7, - ACTIONS(4249), 1, + [162557] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3587), 2, + STATE(3679), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6229), 4, + ACTIONS(6276), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [158994] = 7, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - STATE(3413), 1, - sym_type_index, + [162586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4251), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6231), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [159023] = 8, - ACTIONS(3708), 1, + ACTIONS(6337), 4, anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6233), 1, + sym_identifier, anon_sym_complex, - STATE(3447), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3709), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5772), 3, - sym__newline, + ACTIONS(6339), 8, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, - [159054] = 7, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - STATE(3413), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3390), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4251), 3, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5759), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159083] = 7, - ACTIONS(6235), 1, + anon_sym_GT, + anon_sym_QMARK, + [162607] = 7, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(6241), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3657), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6238), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5881), 4, + ACTIONS(5838), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [159112] = 8, - ACTIONS(4249), 1, + [162636] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(6341), 1, anon_sym_LBRACK, - ACTIONS(5457), 1, - anon_sym_LPAREN, - STATE(3413), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5460), 3, - anon_sym_RPAREN, + ACTIONS(6291), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [159143] = 8, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(5688), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, + [162665] = 13, + ACTIONS(6344), 1, + anon_sym_COMMA, + ACTIONS(6346), 1, + anon_sym_as, + ACTIONS(6348), 1, + anon_sym_if, + ACTIONS(6350), 1, + anon_sym_COLON, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(6356), 1, + anon_sym_RBRACE, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, + anon_sym_or, + STATE(4210), 1, + sym_for_in_clause, + STATE(5164), 1, + aux_sym__collection_elements_repeat1, + STATE(5537), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4251), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5772), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159174] = 7, - ACTIONS(4249), 1, + [162706] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5772), 4, + ACTIONS(5809), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159203] = 7, - ACTIONS(4249), 1, + [162735] = 7, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5755), 4, + ACTIONS(5838), 4, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159232] = 7, - ACTIONS(3708), 1, + anon_sym_RBRACK, + [162764] = 9, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(6244), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - STATE(3447), 1, + ACTIONS(5787), 1, + anon_sym_LPAREN, + ACTIONS(6362), 1, + anon_sym_complex, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + ACTIONS(5850), 2, + sym__newline, + anon_sym_COLON, + STATE(3682), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6225), 4, - sym__newline, + [162797] = 8, + ACTIONS(5515), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159261] = 7, - ACTIONS(4249), 1, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(5591), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5777), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159290] = 7, - ACTIONS(4249), 1, + [162828] = 8, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + ACTIONS(5780), 1, + anon_sym_LPAREN, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6142), 4, + ACTIONS(5783), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [159319] = 8, - ACTIONS(4249), 1, + [162859] = 8, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(5734), 1, + ACTIONS(5787), 1, anon_sym_LPAREN, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5737), 3, + ACTIONS(5850), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159350] = 8, - ACTIONS(4249), 1, + [162890] = 8, + ACTIONS(5843), 1, + anon_sym_LPAREN, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - ACTIONS(5752), 1, - anon_sym_LPAREN, - STATE(3413), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(5846), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5755), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [159381] = 7, - ACTIONS(3708), 1, + [162921] = 7, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(6247), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3521), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6227), 4, - sym__newline, + ACTIONS(5846), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [159410] = 7, - ACTIONS(4249), 1, + anon_sym_RBRACK, + [162950] = 13, + ACTIONS(6344), 1, + anon_sym_COMMA, + ACTIONS(6346), 1, + anon_sym_as, + ACTIONS(6348), 1, + anon_sym_if, + ACTIONS(6350), 1, + anon_sym_COLON, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(6356), 1, + anon_sym_RBRACE, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, + anon_sym_or, + STATE(4210), 1, + sym_for_in_clause, + STATE(5164), 1, + aux_sym__collection_elements_repeat1, + STATE(5711), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162991] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(6366), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6074), 4, + ACTIONS(6364), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159439] = 8, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - ACTIONS(6115), 1, - anon_sym_LPAREN, - STATE(3413), 1, - sym_type_index, + [163020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4251), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(5915), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(6074), 3, - anon_sym_RPAREN, + ACTIONS(5917), 8, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - [159470] = 8, - ACTIONS(4249), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [163041] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(6369), 1, anon_sym_LBRACK, - ACTIONS(5743), 1, - anon_sym_LPAREN, - STATE(3413), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3629), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5783), 3, - anon_sym_RPAREN, + ACTIONS(6281), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [159501] = 8, - ACTIONS(4249), 1, + [163070] = 8, + ACTIONS(5515), 1, + anon_sym_LPAREN, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - ACTIONS(6118), 1, - anon_sym_LPAREN, - STATE(3413), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3658), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(5591), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6121), 3, - anon_sym_RPAREN, + [163101] = 13, + ACTIONS(6344), 1, anon_sym_COMMA, - anon_sym_EQ, - [159532] = 7, - ACTIONS(3708), 1, + ACTIONS(6346), 1, + anon_sym_as, + ACTIONS(6348), 1, + anon_sym_if, + ACTIONS(6350), 1, + anon_sym_COLON, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(6356), 1, + anon_sym_RBRACE, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, + anon_sym_or, + STATE(4210), 1, + sym_for_in_clause, + STATE(5164), 1, + aux_sym__collection_elements_repeat1, + STATE(5809), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163142] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(6250), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3523), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6229), 4, - sym__newline, + ACTIONS(6211), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159561] = 7, - ACTIONS(3708), 1, + [163171] = 8, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(6253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3447), 1, + ACTIONS(6213), 1, + anon_sym_LPAREN, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + STATE(3677), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6231), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6211), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159590] = 7, - ACTIONS(4249), 1, + [163202] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3577), 2, + STATE(3631), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5755), 4, + ACTIONS(5838), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159619] = 8, - ACTIONS(4249), 1, + [163231] = 8, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(5734), 1, + ACTIONS(5515), 1, anon_sym_LPAREN, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3579), 2, + STATE(3635), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5737), 3, + ACTIONS(5591), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159650] = 7, - ACTIONS(4249), 1, + [163262] = 8, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + ACTIONS(5843), 1, + anon_sym_LPAREN, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3636), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6151), 4, + ACTIONS(5846), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [159679] = 7, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - STATE(3413), 1, - sym_type_index, + [163293] = 13, + ACTIONS(6344), 1, + anon_sym_COMMA, + ACTIONS(6346), 1, + anon_sym_as, + ACTIONS(6348), 1, + anon_sym_if, + ACTIONS(6350), 1, + anon_sym_COLON, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(6356), 1, + anon_sym_RBRACE, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, + anon_sym_or, + STATE(4210), 1, + sym_for_in_clause, + STATE(5164), 1, + aux_sym__collection_elements_repeat1, + STATE(5820), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3607), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4251), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6156), 4, - anon_sym_RPAREN, + [163334] = 13, + ACTIONS(6344), 1, anon_sym_COMMA, + ACTIONS(6346), 1, + anon_sym_as, + ACTIONS(6348), 1, + anon_sym_if, + ACTIONS(6350), 1, anon_sym_COLON, - anon_sym_EQ, - [159708] = 7, - ACTIONS(4249), 1, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(6356), 1, + anon_sym_RBRACE, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, + anon_sym_or, + STATE(4210), 1, + sym_for_in_clause, + STATE(5164), 1, + aux_sym__collection_elements_repeat1, + STATE(5485), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163375] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6161), 4, + ACTIONS(6240), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [159737] = 7, - ACTIONS(4249), 1, + [163404] = 13, + ACTIONS(6344), 1, + anon_sym_COMMA, + ACTIONS(6346), 1, + anon_sym_as, + ACTIONS(6348), 1, + anon_sym_if, + ACTIONS(6350), 1, + anon_sym_COLON, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(6356), 1, + anon_sym_RBRACE, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, + anon_sym_or, + STATE(4210), 1, + sym_for_in_clause, + STATE(5164), 1, + aux_sym__collection_elements_repeat1, + STATE(5629), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163445] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3610), 2, + STATE(3605), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6166), 4, + ACTIONS(6245), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [159766] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5807), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5809), 8, - anon_sym_LPAREN, + [163474] = 13, + ACTIONS(6344), 1, anon_sym_COMMA, + ACTIONS(6346), 1, + anon_sym_as, + ACTIONS(6348), 1, + anon_sym_if, + ACTIONS(6350), 1, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [159787] = 7, - ACTIONS(5831), 1, - anon_sym_STAR, - ACTIONS(5835), 1, - anon_sym_LBRACK, - STATE(3643), 1, - sym_type_index, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(6356), 1, + anon_sym_RBRACE, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, + anon_sym_or, + STATE(4210), 1, + sym_for_in_clause, + STATE(5164), 1, + aux_sym__collection_elements_repeat1, + STATE(5761), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5833), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5426), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [159816] = 7, - ACTIONS(5831), 1, + [163515] = 7, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5485), 4, + ACTIONS(5850), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [159845] = 7, - ACTIONS(5831), 1, + [163544] = 7, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5759), 4, + ACTIONS(5809), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [159874] = 8, - ACTIONS(5457), 1, + [163573] = 8, + ACTIONS(5780), 1, anon_sym_LPAREN, - ACTIONS(5831), 1, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5460), 3, + ACTIONS(5783), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(5833), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [159905] = 8, - ACTIONS(5688), 1, + [163604] = 8, + ACTIONS(5787), 1, anon_sym_LPAREN, - ACTIONS(5831), 1, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5772), 3, + ACTIONS(5850), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(5833), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [159936] = 7, - ACTIONS(5831), 1, + [163635] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3612), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5772), 4, - anon_sym_LPAREN, + ACTIONS(6332), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, - [159965] = 7, - ACTIONS(5831), 1, + [163664] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5755), 4, - anon_sym_LPAREN, + ACTIONS(6364), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, - [159994] = 7, - ACTIONS(5831), 1, + [163693] = 7, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5777), 4, + ACTIONS(6211), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [160023] = 8, - ACTIONS(5734), 1, - anon_sym_LPAREN, - ACTIONS(5831), 1, + [163722] = 8, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3643), 1, + ACTIONS(6213), 1, + anon_sym_LPAREN, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5737), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5833), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [160054] = 8, - ACTIONS(5752), 1, + ACTIONS(6211), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [163753] = 8, + ACTIONS(5860), 1, anon_sym_LPAREN, - ACTIONS(5831), 1, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5755), 3, + ACTIONS(5863), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(5833), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [160085] = 13, - ACTIONS(6171), 1, - anon_sym_COMMA, - ACTIONS(6173), 1, - anon_sym_as, - ACTIONS(6175), 1, - anon_sym_if, - ACTIONS(6177), 1, - anon_sym_COLON, - ACTIONS(6179), 1, - anon_sym_async, - ACTIONS(6181), 1, - anon_sym_for, - ACTIONS(6183), 1, - anon_sym_RBRACE, - ACTIONS(6185), 1, - anon_sym_and, - ACTIONS(6187), 1, - anon_sym_or, - STATE(4149), 1, - sym_for_in_clause, - STATE(4816), 1, - aux_sym__collection_elements_repeat1, - STATE(5748), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160126] = 7, - ACTIONS(5831), 1, + [163784] = 8, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3643), 1, + ACTIONS(6189), 1, + anon_sym_LPAREN, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3614), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6074), 4, - anon_sym_LPAREN, + ACTIONS(6192), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [160155] = 8, - ACTIONS(5831), 1, + [163815] = 8, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, + ACTIONS(6213), 1, anon_sym_LPAREN, - STATE(3643), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6074), 3, + ACTIONS(6211), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [160186] = 8, - ACTIONS(5743), 1, - anon_sym_LPAREN, - ACTIONS(5831), 1, + [163846] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(6372), 1, anon_sym_LBRACK, - STATE(3643), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5783), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5833), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [160217] = 8, - ACTIONS(5831), 1, + ACTIONS(6287), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [163875] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(5835), 1, + ACTIONS(6375), 1, anon_sym_LBRACK, - ACTIONS(6118), 1, - anon_sym_LPAREN, - STATE(3643), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3566), 2, + STATE(3615), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5833), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6121), 3, + ACTIONS(6289), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [160248] = 8, - ACTIONS(4249), 1, + [163904] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, - anon_sym_LPAREN, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3580), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6074), 3, + ACTIONS(6308), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [160279] = 13, - ACTIONS(6171), 1, - anon_sym_COMMA, - ACTIONS(6173), 1, - anon_sym_as, - ACTIONS(6175), 1, - anon_sym_if, - ACTIONS(6177), 1, anon_sym_COLON, - ACTIONS(6179), 1, - anon_sym_async, - ACTIONS(6181), 1, - anon_sym_for, - ACTIONS(6183), 1, - anon_sym_RBRACE, - ACTIONS(6185), 1, - anon_sym_and, - ACTIONS(6187), 1, - anon_sym_or, - STATE(4149), 1, - sym_for_in_clause, - STATE(4816), 1, - aux_sym__collection_elements_repeat1, - STATE(5565), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160320] = 7, - ACTIONS(4249), 1, + anon_sym_EQ, + [163933] = 8, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + ACTIONS(5860), 1, + anon_sym_LPAREN, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6199), 4, + ACTIONS(5863), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [160349] = 7, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - STATE(3413), 1, - sym_type_index, + [163964] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3621), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4251), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(6108), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6204), 4, + ACTIONS(6110), 8, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [160378] = 7, - ACTIONS(3708), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [163985] = 7, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(6256), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3518), 2, + STATE(3632), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6189), 4, - sym__newline, + ACTIONS(5530), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [160407] = 7, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - STATE(3413), 1, - sym_type_index, + anon_sym_RBRACK, + [164014] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4251), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(6108), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6209), 4, - anon_sym_RPAREN, + ACTIONS(6110), 8, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [160436] = 7, - ACTIONS(4249), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [164035] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3622), 2, + STATE(3610), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6214), 4, + ACTIONS(5530), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [160465] = 13, - ACTIONS(6171), 1, - anon_sym_COMMA, - ACTIONS(6173), 1, - anon_sym_as, - ACTIONS(6175), 1, - anon_sym_if, - ACTIONS(6177), 1, - anon_sym_COLON, - ACTIONS(6179), 1, - anon_sym_async, - ACTIONS(6181), 1, - anon_sym_for, - ACTIONS(6183), 1, - anon_sym_RBRACE, - ACTIONS(6185), 1, - anon_sym_and, - ACTIONS(6187), 1, - anon_sym_or, - STATE(4149), 1, - sym_for_in_clause, - STATE(4816), 1, - aux_sym__collection_elements_repeat1, - STATE(5593), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160506] = 7, - ACTIONS(3708), 1, + [164064] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(6261), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + STATE(3593), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6259), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [160535] = 13, - ACTIONS(6171), 1, + ACTIONS(6313), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(6173), 1, - anon_sym_as, - ACTIONS(6175), 1, - anon_sym_if, - ACTIONS(6177), 1, anon_sym_COLON, - ACTIONS(6179), 1, - anon_sym_async, - ACTIONS(6181), 1, - anon_sym_for, - ACTIONS(6183), 1, - anon_sym_RBRACE, - ACTIONS(6185), 1, - anon_sym_and, - ACTIONS(6187), 1, - anon_sym_or, - STATE(4149), 1, - sym_for_in_clause, - STATE(4816), 1, - aux_sym__collection_elements_repeat1, - STATE(5657), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160576] = 7, - ACTIONS(3708), 1, + anon_sym_EQ, + [164093] = 7, + ACTIONS(5961), 1, anon_sym_STAR, - ACTIONS(6266), 1, + ACTIONS(5965), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3719), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + STATE(3638), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(5963), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6264), 4, - sym__newline, + ACTIONS(5553), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [160605] = 7, - ACTIONS(3708), 1, + anon_sym_RBRACK, + [164122] = 8, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(6271), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3447), 1, + ACTIONS(6189), 1, + anon_sym_LPAREN, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3519), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6269), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6192), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [160634] = 13, - ACTIONS(6171), 1, - anon_sym_COMMA, - ACTIONS(6173), 1, - anon_sym_as, - ACTIONS(6175), 1, - anon_sym_if, - ACTIONS(6177), 1, - anon_sym_COLON, - ACTIONS(6179), 1, - anon_sym_async, - ACTIONS(6181), 1, - anon_sym_for, - ACTIONS(6183), 1, - anon_sym_RBRACE, - ACTIONS(6185), 1, - anon_sym_and, - ACTIONS(6187), 1, - anon_sym_or, - STATE(4149), 1, - sym_for_in_clause, - STATE(4816), 1, - aux_sym__collection_elements_repeat1, - STATE(5702), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160675] = 13, - ACTIONS(6171), 1, - anon_sym_COMMA, - ACTIONS(6173), 1, - anon_sym_as, - ACTIONS(6175), 1, - anon_sym_if, - ACTIONS(6177), 1, - anon_sym_COLON, - ACTIONS(6179), 1, - anon_sym_async, - ACTIONS(6181), 1, - anon_sym_for, - ACTIONS(6183), 1, - anon_sym_RBRACE, - ACTIONS(6185), 1, - anon_sym_and, - ACTIONS(6187), 1, - anon_sym_or, - STATE(4149), 1, - sym_for_in_clause, - STATE(4816), 1, - aux_sym__collection_elements_repeat1, - STATE(5549), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [160716] = 13, - ACTIONS(6171), 1, + [164153] = 13, + ACTIONS(6344), 1, anon_sym_COMMA, - ACTIONS(6173), 1, + ACTIONS(6346), 1, anon_sym_as, - ACTIONS(6175), 1, + ACTIONS(6348), 1, anon_sym_if, - ACTIONS(6177), 1, + ACTIONS(6350), 1, anon_sym_COLON, - ACTIONS(6179), 1, + ACTIONS(6352), 1, anon_sym_async, - ACTIONS(6181), 1, + ACTIONS(6354), 1, anon_sym_for, - ACTIONS(6183), 1, + ACTIONS(6356), 1, anon_sym_RBRACE, - ACTIONS(6185), 1, + ACTIONS(6358), 1, anon_sym_and, - ACTIONS(6187), 1, + ACTIONS(6360), 1, anon_sym_or, - STATE(4149), 1, + STATE(4210), 1, sym_for_in_clause, - STATE(4816), 1, + STATE(5164), 1, aux_sym__collection_elements_repeat1, - STATE(5689), 1, + STATE(5557), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [160757] = 7, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(6274), 1, - anon_sym_LBRACK, - STATE(3447), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3571), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6191), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [160786] = 7, - ACTIONS(4249), 1, + [164194] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6259), 4, + ACTIONS(6318), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [160815] = 7, - ACTIONS(4249), 1, - anon_sym_STAR, - ACTIONS(4253), 1, - anon_sym_LBRACK, - STATE(3413), 1, - sym_type_index, + [164223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3390), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4251), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(6100), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(6264), 4, - anon_sym_RPAREN, + ACTIONS(6102), 8, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [160844] = 7, - ACTIONS(4249), 1, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [164244] = 7, + ACTIONS(4325), 1, anon_sym_STAR, - ACTIONS(4253), 1, + ACTIONS(4329), 1, anon_sym_LBRACK, - STATE(3413), 1, + STATE(3493), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3573), 2, + STATE(3454), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4251), 3, + ACTIONS(4327), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6269), 4, + ACTIONS(5846), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [160873] = 7, - ACTIONS(3708), 1, + [164273] = 8, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(6277), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - STATE(3447), 1, + ACTIONS(6213), 1, + anon_sym_LPAREN, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3582), 2, + ACTIONS(6211), 2, + sym__newline, + anon_sym_COLON, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6193), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [160902] = 9, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, + [164303] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6378), 1, + anon_sym_LBRACE, + ACTIONS(6382), 1, + anon_sym_BSLASH, + ACTIONS(6384), 1, + sym_string_end, + STATE(3986), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6380), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3693), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [164333] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6378), 1, + anon_sym_LBRACE, + ACTIONS(6382), 1, + anon_sym_BSLASH, + ACTIONS(6386), 1, + sym_string_end, + STATE(3986), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6380), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3686), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [164363] = 9, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5752), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(6280), 1, + ACTIONS(6388), 1, + sym_identifier, + ACTIONS(6390), 1, anon_sym_complex, - STATE(3447), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5755), 2, - sym__newline, - anon_sym_COLON, - STATE(3714), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - [160935] = 8, + STATE(3799), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164395] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6288), 1, + ACTIONS(6392), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3667), 3, + STATE(3738), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [160965] = 8, - ACTIONS(3708), 1, + [164425] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6118), 1, + STATE(3494), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3456), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5553), 3, + sym__newline, anon_sym_LPAREN, - STATE(3447), 1, + anon_sym_COLON, + [164453] = 7, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, + anon_sym_LBRACK, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6121), 2, + STATE(3695), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5850), 3, sym__newline, + anon_sym_LPAREN, anon_sym_COLON, - STATE(3387), 2, + [164481] = 7, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, + anon_sym_LBRACK, + STATE(3494), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3724), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [160995] = 12, - ACTIONS(6290), 1, - anon_sym_RPAREN, - ACTIONS(6292), 1, + ACTIONS(5530), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [164509] = 10, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6298), 1, - anon_sym_async, - ACTIONS(6300), 1, - anon_sym_for, - ACTIONS(6302), 1, - anon_sym_and, - ACTIONS(6304), 1, - anon_sym_or, - STATE(4051), 1, - sym_for_in_clause, - STATE(5084), 1, - aux_sym_argument_list_repeat1, - STATE(5734), 1, - sym__comprehension_clauses, + ACTIONS(6398), 1, + anon_sym_EQ, + ACTIONS(6400), 1, + anon_sym_LBRACK, + ACTIONS(6403), 1, + sym__newline, + ACTIONS(6405), 1, + sym_string_start, + STATE(4216), 1, + sym_string, + STATE(5214), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161033] = 12, - ACTIONS(6294), 1, + ACTIONS(6394), 2, + anon_sym_LPAREN, + sym_identifier, + STATE(4137), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [164543] = 12, + ACTIONS(6408), 1, + anon_sym_RPAREN, + ACTIONS(6410), 1, + anon_sym_COMMA, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6422), 1, anon_sym_or, - ACTIONS(6306), 1, - anon_sym_RPAREN, - ACTIONS(6308), 1, - anon_sym_COMMA, - STATE(4051), 1, + STATE(4104), 1, sym_for_in_clause, - STATE(4929), 1, - aux_sym__collection_elements_repeat1, - STATE(5547), 1, + STATE(4831), 1, + aux_sym_argument_list_repeat1, + STATE(5720), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161071] = 8, - ACTIONS(3), 1, + [164581] = 8, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(5787), 1, + anon_sym_LPAREN, + STATE(3494), 1, + sym_type_index, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, - anon_sym_LBRACE, - ACTIONS(6286), 1, - anon_sym_BSLASH, - ACTIONS(6311), 1, - sym_string_end, - STATE(3900), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6284), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3631), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [161101] = 8, + ACTIONS(5850), 2, + sym__newline, + anon_sym_COLON, + STATE(3456), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [164611] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6313), 1, + ACTIONS(6424), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3640), 3, + STATE(3738), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161131] = 12, - ACTIONS(6294), 1, + [164641] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6422), 1, anon_sym_or, - ACTIONS(6306), 1, + ACTIONS(6426), 1, anon_sym_RPAREN, - ACTIONS(6315), 1, + ACTIONS(6428), 1, anon_sym_COMMA, - STATE(4051), 1, + STATE(4104), 1, sym_for_in_clause, - STATE(4929), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, - STATE(5547), 1, + STATE(5643), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161169] = 12, - ACTIONS(6183), 1, - anon_sym_RBRACK, - ACTIONS(6317), 1, - anon_sym_COMMA, - ACTIONS(6319), 1, - anon_sym_as, - ACTIONS(6321), 1, - anon_sym_if, - ACTIONS(6323), 1, - anon_sym_async, - ACTIONS(6325), 1, - anon_sym_for, - ACTIONS(6327), 1, - anon_sym_and, - ACTIONS(6329), 1, - anon_sym_or, - STATE(4041), 1, - sym_for_in_clause, - STATE(4880), 1, - aux_sym__collection_elements_repeat1, - STATE(5532), 1, - sym__comprehension_clauses, + [164679] = 7, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, + anon_sym_LBRACK, + STATE(3494), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161207] = 12, - ACTIONS(6294), 1, + STATE(3456), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(6211), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [164707] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6422), 1, anon_sym_or, - ACTIONS(6315), 1, - anon_sym_COMMA, - ACTIONS(6331), 1, + ACTIONS(6426), 1, anon_sym_RPAREN, - STATE(4051), 1, + ACTIONS(6431), 1, + anon_sym_COMMA, + STATE(4104), 1, sym_for_in_clause, - STATE(4929), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, - STATE(5734), 1, + STATE(5643), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161245] = 9, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_LPAREN, - ACTIONS(6333), 1, - sym_identifier, - ACTIONS(6335), 1, - anon_sym_complex, - STATE(3477), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3728), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [161277] = 10, - ACTIONS(6339), 1, + [164745] = 12, + ACTIONS(6356), 1, + anon_sym_RBRACK, + ACTIONS(6433), 1, anon_sym_COMMA, - ACTIONS(6341), 1, - anon_sym_EQ, - ACTIONS(6343), 1, - anon_sym_LBRACK, - ACTIONS(6346), 1, - sym__newline, - ACTIONS(6348), 1, - sym_string_start, - STATE(4031), 1, - sym_string, - STATE(5072), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6337), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4032), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [161311] = 12, - ACTIONS(6294), 1, + ACTIONS(6435), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6437), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6439), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6441), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6443), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6445), 1, anon_sym_or, - ACTIONS(6351), 1, - anon_sym_RPAREN, - ACTIONS(6353), 1, - anon_sym_COMMA, - STATE(4051), 1, + STATE(4180), 1, sym_for_in_clause, - STATE(5075), 1, - aux_sym_argument_list_repeat1, - STATE(5547), 1, + STATE(4998), 1, + aux_sym__collection_elements_repeat1, + STATE(5526), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161349] = 9, - ACTIONS(4905), 1, + [164783] = 9, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5772), 1, + ACTIONS(5561), 1, anon_sym_LPAREN, - ACTIONS(6355), 1, + ACTIONS(6447), 1, sym_identifier, - ACTIONS(6357), 1, + ACTIONS(6449), 1, anon_sym_complex, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3741), 2, + STATE(3838), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [161381] = 10, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(6343), 1, - anon_sym_LBRACK, - ACTIONS(6348), 1, - sym_string_start, - ACTIONS(6359), 1, - anon_sym_EQ, - ACTIONS(6361), 1, - sym__newline, - STATE(4062), 1, - sym_string, - STATE(5120), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6337), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4063), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [161415] = 8, + [164815] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6363), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6369), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6372), 1, + ACTIONS(6451), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6366), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3640), 3, + STATE(3725), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161445] = 9, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5752), 1, - anon_sym_LPAREN, - ACTIONS(6374), 1, - sym_identifier, - ACTIONS(6376), 1, - anon_sym_complex, - STATE(3477), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3761), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [161477] = 7, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, + [164845] = 10, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(6400), 1, anon_sym_LBRACK, - STATE(3447), 1, - sym_type_index, + ACTIONS(6405), 1, + sym_string_start, + ACTIONS(6453), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + sym__newline, + STATE(4121), 1, + sym_string, + STATE(5157), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3702), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5426), 3, - sym__newline, + ACTIONS(6394), 2, anon_sym_LPAREN, - anon_sym_COLON, - [161505] = 5, - ACTIONS(5953), 1, + sym_identifier, + STATE(4122), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [164879] = 5, + ACTIONS(6053), 1, anon_sym_STAR, - ACTIONS(6378), 1, + ACTIONS(6457), 1, anon_sym_DOT, - STATE(3650), 1, + STATE(3701), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5957), 8, + ACTIONS(6058), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -254618,1915 +259898,2022 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [161529] = 10, - ACTIONS(6339), 1, + [164903] = 12, + ACTIONS(6412), 1, + anon_sym_as, + ACTIONS(6414), 1, + anon_sym_if, + ACTIONS(6416), 1, + anon_sym_async, + ACTIONS(6418), 1, + anon_sym_for, + ACTIONS(6420), 1, + anon_sym_and, + ACTIONS(6422), 1, + anon_sym_or, + ACTIONS(6460), 1, + anon_sym_RPAREN, + ACTIONS(6462), 1, anon_sym_COMMA, - ACTIONS(6343), 1, + STATE(4104), 1, + sym_for_in_clause, + STATE(5218), 1, + aux_sym_argument_list_repeat1, + STATE(5580), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [164941] = 10, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(6400), 1, anon_sym_LBRACK, - ACTIONS(6348), 1, + ACTIONS(6405), 1, sym_string_start, - ACTIONS(6380), 1, + ACTIONS(6464), 1, anon_sym_EQ, - ACTIONS(6382), 1, + ACTIONS(6466), 1, sym__newline, - STATE(4071), 1, + STATE(4102), 1, sym_string, - STATE(5063), 1, + STATE(4772), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6337), 2, + ACTIONS(6394), 2, anon_sym_LPAREN, sym_identifier, - STATE(3981), 2, + STATE(4103), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [161563] = 8, + [164975] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6108), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(6110), 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, + [164995] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6384), 1, + ACTIONS(6468), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3647), 3, + STATE(3706), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161593] = 7, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - STATE(3447), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3706), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5485), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [161621] = 8, + [165025] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6386), 1, + ACTIONS(6470), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3640), 3, + STATE(3738), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161651] = 12, - ACTIONS(6294), 1, + [165055] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6422), 1, anon_sym_or, - ACTIONS(6315), 1, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(6388), 1, + ACTIONS(6472), 1, anon_sym_RPAREN, - STATE(4051), 1, + STATE(4104), 1, sym_for_in_clause, - STATE(4929), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, - STATE(5655), 1, + STATE(5755), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161689] = 9, - ACTIONS(4905), 1, + [165093] = 8, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, + ACTIONS(5780), 1, anon_sym_LPAREN, - ACTIONS(6390), 1, - sym_identifier, - ACTIONS(6392), 1, - anon_sym_complex, - STATE(3477), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3765), 2, + ACTIONS(5783), 2, + sym__newline, + anon_sym_COLON, + STATE(3737), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [161721] = 5, - ACTIONS(5965), 1, - anon_sym_STAR, - ACTIONS(6378), 1, - anon_sym_DOT, - STATE(3661), 1, - aux_sym_type_qualifier_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5969), 8, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3820), 3, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [161745] = 7, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, + [165123] = 10, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(6400), 1, anon_sym_LBRACK, - STATE(3447), 1, - sym_type_index, + ACTIONS(6405), 1, + sym_string_start, + ACTIONS(6474), 1, + anon_sym_EQ, + ACTIONS(6476), 1, + sym__newline, + STATE(4067), 1, + sym_string, + STATE(4817), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3710), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5759), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [161773] = 8, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(5457), 1, + ACTIONS(6394), 2, anon_sym_LPAREN, - STATE(3447), 1, + sym_identifier, + STATE(4068), 2, sym_type_index, + aux_sym_cvar_decl_repeat1, + [165157] = 12, + ACTIONS(6412), 1, + anon_sym_as, + ACTIONS(6414), 1, + anon_sym_if, + ACTIONS(6416), 1, + anon_sym_async, + ACTIONS(6418), 1, + anon_sym_for, + ACTIONS(6420), 1, + anon_sym_and, + ACTIONS(6422), 1, + anon_sym_or, + ACTIONS(6478), 1, + anon_sym_RPAREN, + ACTIONS(6480), 1, + anon_sym_COMMA, + STATE(4104), 1, + sym_for_in_clause, + STATE(4880), 1, + aux_sym_argument_list_repeat1, + STATE(5755), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5460), 2, - sym__newline, - anon_sym_COLON, - STATE(3711), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161803] = 8, + [165195] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6482), 11, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [165213] = 12, + ACTIONS(6356), 1, + anon_sym_RBRACK, + ACTIONS(6433), 1, + anon_sym_COMMA, + ACTIONS(6435), 1, + anon_sym_as, + ACTIONS(6437), 1, + anon_sym_if, + ACTIONS(6439), 1, + anon_sym_async, + ACTIONS(6441), 1, + anon_sym_for, + ACTIONS(6443), 1, + anon_sym_and, + ACTIONS(6445), 1, + anon_sym_or, + STATE(4180), 1, + sym_for_in_clause, + STATE(4998), 1, + aux_sym__collection_elements_repeat1, + STATE(5690), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165251] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6394), 1, + ACTIONS(6484), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3656), 3, + STATE(3715), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161833] = 8, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(5688), 1, - anon_sym_LPAREN, - STATE(3447), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5772), 2, - sym__newline, - anon_sym_COLON, - STATE(3712), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161863] = 2, - ACTIONS(3), 2, + [165281] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6396), 11, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - anon_sym_api, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [161881] = 8, + ACTIONS(6378), 1, + anon_sym_LBRACE, + ACTIONS(6382), 1, + anon_sym_BSLASH, + ACTIONS(6486), 1, + sym_string_end, + STATE(3986), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6380), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3738), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [165311] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6398), 1, + ACTIONS(6488), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3640), 3, + STATE(3738), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [161911] = 12, - ACTIONS(6294), 1, + [165341] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6422), 1, anon_sym_or, - ACTIONS(6315), 1, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(6400), 1, + ACTIONS(6490), 1, anon_sym_RPAREN, - STATE(4051), 1, + STATE(4104), 1, sym_for_in_clause, - STATE(4929), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, - STATE(5553), 1, + STATE(5474), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161949] = 12, - ACTIONS(6294), 1, + [165379] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6422), 1, anon_sym_or, - ACTIONS(6402), 1, + ACTIONS(6492), 1, anon_sym_RPAREN, - ACTIONS(6404), 1, + ACTIONS(6494), 1, anon_sym_COMMA, - STATE(4051), 1, + STATE(4104), 1, sym_for_in_clause, - STATE(4766), 1, + STATE(4911), 1, aux_sym_argument_list_repeat1, - STATE(5553), 1, + STATE(5474), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [165417] = 12, + ACTIONS(6356), 1, + anon_sym_RBRACK, + ACTIONS(6433), 1, + anon_sym_COMMA, + ACTIONS(6435), 1, + anon_sym_as, + ACTIONS(6437), 1, + anon_sym_if, + ACTIONS(6439), 1, + anon_sym_async, + ACTIONS(6441), 1, + anon_sym_for, + ACTIONS(6443), 1, + anon_sym_and, + ACTIONS(6445), 1, + anon_sym_or, + STATE(4180), 1, + sym_for_in_clause, + STATE(4998), 1, + aux_sym__collection_elements_repeat1, + STATE(5745), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [161987] = 7, - ACTIONS(3708), 1, + [165455] = 5, + ACTIONS(6108), 1, + anon_sym_STAR, + ACTIONS(6496), 1, + anon_sym_DOT, + STATE(3736), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6110), 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, + [165479] = 9, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5787), 1, + anon_sym_LPAREN, + ACTIONS(6498), 1, + sym_identifier, + ACTIONS(6500), 1, + anon_sym_complex, + STATE(3540), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3824), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [165511] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3713), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5755), 3, + ACTIONS(5850), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [162015] = 9, - ACTIONS(4905), 1, + [165539] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6378), 1, + anon_sym_LBRACE, + ACTIONS(6382), 1, + anon_sym_BSLASH, + ACTIONS(6502), 1, + sym_string_end, + STATE(3986), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6380), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3732), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [165569] = 9, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5787), 1, anon_sym_LPAREN, - ACTIONS(6333), 1, + ACTIONS(6498), 1, sym_identifier, - ACTIONS(6406), 1, + ACTIONS(6504), 1, anon_sym_complex, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3770), 2, + STATE(3791), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [162047] = 5, - ACTIONS(6002), 1, + [165601] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(6408), 1, - anon_sym_DOT, - STATE(3661), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(3814), 1, + anon_sym_LBRACK, + STATE(3494), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6004), 8, - anon_sym_LPAREN, - anon_sym_COMMA, + STATE(3456), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [162071] = 10, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(6343), 1, - anon_sym_LBRACK, - ACTIONS(6348), 1, - sym_string_start, - ACTIONS(6411), 1, - anon_sym_EQ, - ACTIONS(6413), 1, + ACTIONS(5838), 3, sym__newline, - STATE(3996), 1, - sym_string, - STATE(4887), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [165629] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6337), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(3997), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [162105] = 8, - ACTIONS(3708), 1, + ACTIONS(6378), 1, + anon_sym_LBRACE, + ACTIONS(6382), 1, + anon_sym_BSLASH, + ACTIONS(6506), 1, + sym_string_end, + STATE(3986), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6380), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3738), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [165659] = 8, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(5734), 1, + ACTIONS(5515), 1, anon_sym_LPAREN, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5737), 2, + ACTIONS(5591), 2, sym__newline, anon_sym_COLON, - STATE(3715), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [162135] = 12, - ACTIONS(6294), 1, + [165689] = 12, + ACTIONS(6356), 1, + anon_sym_RBRACK, + ACTIONS(6433), 1, + anon_sym_COMMA, + ACTIONS(6435), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6437), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6439), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6441), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6443), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6445), 1, anon_sym_or, - ACTIONS(6415), 1, - anon_sym_RPAREN, - ACTIONS(6417), 1, - anon_sym_COMMA, - STATE(4051), 1, + STATE(4180), 1, sym_for_in_clause, - STATE(4900), 1, - aux_sym_argument_list_repeat1, - STATE(5655), 1, + STATE(4998), 1, + aux_sym__collection_elements_repeat1, + STATE(5791), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162173] = 8, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, + [165727] = 9, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, + ACTIONS(5550), 1, anon_sym_LPAREN, - STATE(3447), 1, + ACTIONS(6508), 1, + sym_identifier, + ACTIONS(6510), 1, + anon_sym_complex, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6074), 2, - sym__newline, - anon_sym_COLON, - STATE(3627), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - [162203] = 9, - ACTIONS(4905), 1, + STATE(3815), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [165759] = 8, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(5772), 1, + ACTIONS(5780), 1, anon_sym_LPAREN, - ACTIONS(6355), 1, - sym_identifier, - ACTIONS(6419), 1, - anon_sym_complex, - STATE(3477), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3720), 2, + ACTIONS(5783), 2, + sym__newline, + anon_sym_COLON, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [162235] = 8, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [165789] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6421), 1, + ACTIONS(6512), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3640), 3, + STATE(3738), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162265] = 12, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6298), 1, - anon_sym_async, - ACTIONS(6300), 1, - anon_sym_for, - ACTIONS(6302), 1, - anon_sym_and, - ACTIONS(6304), 1, - anon_sym_or, - ACTIONS(6315), 1, + [165819] = 12, + ACTIONS(6356), 1, + anon_sym_RBRACK, + ACTIONS(6433), 1, anon_sym_COMMA, - ACTIONS(6423), 1, - anon_sym_RPAREN, - STATE(4051), 1, - sym_for_in_clause, - STATE(4929), 1, - aux_sym__collection_elements_repeat1, - STATE(5628), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162303] = 12, - ACTIONS(6294), 1, + ACTIONS(6435), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6437), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6439), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6441), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6443), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6445), 1, anon_sym_or, - ACTIONS(6425), 1, - anon_sym_RPAREN, - ACTIONS(6427), 1, - anon_sym_COMMA, - STATE(4051), 1, + STATE(4180), 1, sym_for_in_clause, - STATE(4824), 1, - aux_sym_argument_list_repeat1, - STATE(5628), 1, + STATE(4998), 1, + aux_sym__collection_elements_repeat1, + STATE(5475), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162341] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6282), 1, - anon_sym_LBRACE, - ACTIONS(6286), 1, - anon_sym_BSLASH, - ACTIONS(6429), 1, - sym_string_end, - STATE(3900), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6284), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3671), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162371] = 8, + [165857] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6431), 1, + ACTIONS(6514), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3640), 3, + STATE(3738), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162401] = 12, - ACTIONS(6294), 1, + [165887] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6422), 1, anon_sym_or, - ACTIONS(6315), 1, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(6433), 1, + ACTIONS(6516), 1, anon_sym_RPAREN, - STATE(4051), 1, + STATE(4104), 1, sym_for_in_clause, - STATE(4929), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, - STATE(5664), 1, + STATE(5616), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162439] = 12, - ACTIONS(6294), 1, + [165925] = 12, + ACTIONS(6356), 1, + anon_sym_RBRACK, + ACTIONS(6433), 1, + anon_sym_COMMA, + ACTIONS(6435), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6437), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6439), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6441), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6443), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6445), 1, anon_sym_or, - ACTIONS(6435), 1, - anon_sym_RPAREN, - ACTIONS(6437), 1, - anon_sym_COMMA, - STATE(4051), 1, + STATE(4180), 1, sym_for_in_clause, - STATE(4857), 1, - aux_sym_argument_list_repeat1, - STATE(5664), 1, + STATE(4998), 1, + aux_sym__collection_elements_repeat1, + STATE(5617), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162477] = 8, + [165963] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6439), 1, + ACTIONS(6518), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3676), 3, + STATE(3714), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162507] = 3, + [165993] = 5, + ACTIONS(6094), 1, + anon_sym_STAR, + ACTIONS(6496), 1, + anon_sym_DOT, + STATE(3701), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5953), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5957), 8, + ACTIONS(6098), 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, - [162527] = 8, + anon_sym___stdcall, + [166017] = 8, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(5860), 1, + anon_sym_LPAREN, + STATE(3494), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5863), 2, + sym__newline, + anon_sym_COLON, + STATE(3456), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [166047] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6520), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6526), 1, anon_sym_BSLASH, - ACTIONS(6441), 1, + ACTIONS(6529), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6523), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3640), 3, + STATE(3738), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162557] = 12, - ACTIONS(6294), 1, + [166077] = 12, + ACTIONS(6356), 1, + anon_sym_RBRACK, + ACTIONS(6433), 1, + anon_sym_COMMA, + ACTIONS(6435), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6437), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6439), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6441), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6443), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6445), 1, anon_sym_or, - ACTIONS(6315), 1, - anon_sym_COMMA, - ACTIONS(6443), 1, - anon_sym_RPAREN, - STATE(4051), 1, + STATE(4180), 1, sym_for_in_clause, - STATE(4929), 1, + STATE(4998), 1, aux_sym__collection_elements_repeat1, - STATE(5537), 1, + STATE(5754), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162595] = 12, - ACTIONS(6294), 1, + [166115] = 7, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, + anon_sym_LBRACK, + STATE(3494), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3767), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5838), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [166143] = 9, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5550), 1, + anon_sym_LPAREN, + ACTIONS(6508), 1, + sym_identifier, + ACTIONS(6531), 1, + anon_sym_complex, + STATE(3540), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3797), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [166175] = 5, + ACTIONS(6053), 1, + anon_sym_STAR, + ACTIONS(6533), 1, + anon_sym_LBRACK, + STATE(3826), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6058), 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, + [166199] = 9, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5561), 1, + anon_sym_LPAREN, + ACTIONS(6447), 1, + sym_identifier, + ACTIONS(6536), 1, + anon_sym_complex, + STATE(3540), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3788), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [166231] = 7, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, + anon_sym_LBRACK, + STATE(3494), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3456), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5530), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [166259] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6422), 1, anon_sym_or, - ACTIONS(6445), 1, + ACTIONS(6538), 1, anon_sym_RPAREN, - ACTIONS(6447), 1, + ACTIONS(6540), 1, anon_sym_COMMA, - STATE(4051), 1, + STATE(4104), 1, sym_for_in_clause, - STATE(4888), 1, + STATE(4936), 1, aux_sym_argument_list_repeat1, - STATE(5537), 1, + STATE(5616), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162633] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6282), 1, - anon_sym_LBRACE, - ACTIONS(6286), 1, - anon_sym_BSLASH, - ACTIONS(6449), 1, - sym_string_end, - STATE(3900), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6284), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3680), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162663] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6282), 1, - anon_sym_LBRACE, - ACTIONS(6286), 1, - anon_sym_BSLASH, - ACTIONS(6451), 1, - sym_string_end, - STATE(3900), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6284), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3640), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162693] = 12, - ACTIONS(6294), 1, + [166297] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6298), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6300), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6422), 1, anon_sym_or, - ACTIONS(6315), 1, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(6453), 1, + ACTIONS(6542), 1, anon_sym_RPAREN, - STATE(4051), 1, + STATE(4104), 1, sym_for_in_clause, - STATE(4929), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, - STATE(5677), 1, + STATE(5580), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162731] = 12, - ACTIONS(6294), 1, + [166335] = 9, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6298), 1, - anon_sym_async, - ACTIONS(6300), 1, - anon_sym_for, - ACTIONS(6302), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6455), 1, - anon_sym_RPAREN, - ACTIONS(6457), 1, + ACTIONS(6548), 1, anon_sym_COMMA, - STATE(4051), 1, - sym_for_in_clause, - STATE(4931), 1, - aux_sym_argument_list_repeat1, - STATE(5677), 1, - sym__comprehension_clauses, + STATE(4606), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162769] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6282), 1, - anon_sym_LBRACE, - ACTIONS(6286), 1, - anon_sym_BSLASH, - ACTIONS(6459), 1, - sym_string_end, - STATE(3900), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6284), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3684), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162799] = 8, - ACTIONS(3), 1, + ACTIONS(6544), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6546), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [166367] = 8, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6213), 1, + anon_sym_LPAREN, + STATE(3494), 1, + sym_type_index, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, - anon_sym_LBRACE, - ACTIONS(6286), 1, - anon_sym_BSLASH, - ACTIONS(6461), 1, - sym_string_end, - STATE(3900), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6284), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3640), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162829] = 10, - ACTIONS(6339), 1, + ACTIONS(6211), 2, + sym__newline, + anon_sym_COLON, + STATE(3755), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [166397] = 10, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6343), 1, + ACTIONS(6400), 1, anon_sym_LBRACK, - ACTIONS(6348), 1, + ACTIONS(6405), 1, sym_string_start, - ACTIONS(6463), 1, + ACTIONS(6550), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(6552), 1, sym__newline, - STATE(4075), 1, + STATE(4116), 1, sym_string, - STATE(5049), 1, + STATE(5057), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6337), 2, + ACTIONS(6394), 2, anon_sym_LPAREN, sym_identifier, - STATE(4076), 2, + STATE(4117), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [162863] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6282), 1, - anon_sym_LBRACE, - ACTIONS(6286), 1, - anon_sym_BSLASH, - ACTIONS(6467), 1, - sym_string_end, - STATE(3900), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6284), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3687), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162893] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6282), 1, - anon_sym_LBRACE, - ACTIONS(6286), 1, - anon_sym_BSLASH, - ACTIONS(6469), 1, - sym_string_end, - STATE(3900), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6284), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3640), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [162923] = 8, + [166431] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6471), 1, + ACTIONS(6554), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3689), 3, + STATE(3765), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162953] = 8, + [166461] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6473), 1, + ACTIONS(6556), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3640), 3, + STATE(3754), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [162983] = 9, - ACTIONS(4905), 1, + [166491] = 9, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5752), 1, + ACTIONS(5846), 1, anon_sym_LPAREN, - ACTIONS(6374), 1, + ACTIONS(6388), 1, sym_identifier, - ACTIONS(6475), 1, + ACTIONS(6558), 1, anon_sym_complex, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3750), 2, + STATE(3783), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163015] = 5, - ACTIONS(6002), 1, - anon_sym_STAR, - ACTIONS(6477), 1, - anon_sym_LBRACK, - STATE(3759), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6004), 8, - anon_sym_DOT, - anon_sym_LPAREN, + [166523] = 10, + ACTIONS(6396), 1, anon_sym_COMMA, - anon_sym_STAR_STAR, + ACTIONS(6400), 1, + anon_sym_LBRACK, + ACTIONS(6405), 1, + sym_string_start, + ACTIONS(6560), 1, anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [163039] = 12, - ACTIONS(6183), 1, - anon_sym_RBRACK, - ACTIONS(6317), 1, - anon_sym_COMMA, - ACTIONS(6319), 1, - anon_sym_as, - ACTIONS(6321), 1, - anon_sym_if, - ACTIONS(6323), 1, - anon_sym_async, - ACTIONS(6325), 1, - anon_sym_for, - ACTIONS(6327), 1, - anon_sym_and, - ACTIONS(6329), 1, - anon_sym_or, - STATE(4041), 1, - sym_for_in_clause, - STATE(4880), 1, - aux_sym__collection_elements_repeat1, - STATE(5735), 1, - sym__comprehension_clauses, + ACTIONS(6562), 1, + sym__newline, + STATE(4054), 1, + sym_string, + STATE(4827), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163077] = 8, + ACTIONS(6394), 2, + anon_sym_LPAREN, + sym_identifier, + STATE(4055), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [166557] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6480), 1, + ACTIONS(6564), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3701), 3, + STATE(3738), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [163107] = 12, - ACTIONS(6183), 1, - anon_sym_RBRACK, - ACTIONS(6317), 1, - anon_sym_COMMA, - ACTIONS(6319), 1, + [166587] = 8, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6189), 1, + anon_sym_LPAREN, + STATE(3494), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6192), 2, + sym__newline, + anon_sym_COLON, + STATE(3456), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [166617] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6321), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6323), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6325), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6327), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6329), 1, + ACTIONS(6422), 1, anon_sym_or, - STATE(4041), 1, + ACTIONS(6431), 1, + anon_sym_COMMA, + ACTIONS(6566), 1, + anon_sym_RPAREN, + STATE(4104), 1, sym_for_in_clause, - STATE(4880), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, - STATE(5558), 1, + STATE(5753), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163145] = 9, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6486), 1, - anon_sym_COMMA, - STATE(4587), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6482), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6484), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [163177] = 7, - ACTIONS(3708), 1, + [166655] = 8, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - STATE(3447), 1, + ACTIONS(5843), 1, + anon_sym_LPAREN, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + ACTIONS(5846), 2, + sym__newline, + anon_sym_COLON, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5426), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [163205] = 7, - ACTIONS(3708), 1, + [166685] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + STATE(3764), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5485), 3, + ACTIONS(5553), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [163233] = 12, - ACTIONS(6183), 1, - anon_sym_RBRACK, - ACTIONS(6317), 1, - anon_sym_COMMA, - ACTIONS(6319), 1, + [166713] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6321), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6323), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6325), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6327), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6329), 1, + ACTIONS(6422), 1, anon_sym_or, - STATE(4041), 1, + ACTIONS(6568), 1, + anon_sym_RPAREN, + ACTIONS(6570), 1, + anon_sym_COMMA, + STATE(4104), 1, sym_for_in_clause, - STATE(4880), 1, - aux_sym__collection_elements_repeat1, - STATE(5564), 1, + STATE(4982), 1, + aux_sym_argument_list_repeat1, + STATE(5753), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163271] = 10, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(6343), 1, - anon_sym_LBRACK, - ACTIONS(6348), 1, - sym_string_start, - ACTIONS(6488), 1, - anon_sym_EQ, - ACTIONS(6490), 1, - sym__newline, - STATE(4052), 1, - sym_string, - STATE(5068), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, + [166751] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6337), 2, + ACTIONS(6378), 1, + anon_sym_LBRACE, + ACTIONS(6382), 1, + anon_sym_BSLASH, + ACTIONS(6572), 1, + sym_string_end, + STATE(3986), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6380), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3762), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [166781] = 8, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(5515), 1, anon_sym_LPAREN, - sym_identifier, - STATE(4053), 2, + STATE(3494), 1, sym_type_index, - aux_sym_cvar_decl_repeat1, - [163305] = 12, - ACTIONS(6183), 1, - anon_sym_RBRACK, - ACTIONS(6317), 1, - anon_sym_COMMA, - ACTIONS(6319), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5591), 2, + sym__newline, + anon_sym_COLON, + STATE(3729), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [166811] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6378), 1, + anon_sym_LBRACE, + ACTIONS(6382), 1, + anon_sym_BSLASH, + ACTIONS(6574), 1, + sym_string_end, + STATE(3986), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6380), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3738), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [166841] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6321), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6323), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6325), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6327), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6329), 1, + ACTIONS(6422), 1, anon_sym_or, - STATE(4041), 1, + ACTIONS(6576), 1, + anon_sym_RPAREN, + ACTIONS(6578), 1, + anon_sym_COMMA, + STATE(4104), 1, sym_for_in_clause, - STATE(4880), 1, - aux_sym__collection_elements_repeat1, - STATE(5630), 1, + STATE(5219), 1, + aux_sym_argument_list_repeat1, + STATE(5494), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163343] = 8, + [166879] = 7, + ACTIONS(3804), 1, + anon_sym_STAR, + ACTIONS(3814), 1, + anon_sym_LBRACK, + STATE(3494), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3456), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3820), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5846), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [166907] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6282), 1, + ACTIONS(6378), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6382), 1, anon_sym_BSLASH, - ACTIONS(6492), 1, + ACTIONS(6580), 1, sym_string_end, - STATE(3900), 2, + STATE(3986), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6284), 3, + ACTIONS(6380), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3640), 3, + STATE(3738), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [163373] = 7, - ACTIONS(3708), 1, + [166937] = 12, + ACTIONS(6412), 1, + anon_sym_as, + ACTIONS(6414), 1, + anon_sym_if, + ACTIONS(6416), 1, + anon_sym_async, + ACTIONS(6418), 1, + anon_sym_for, + ACTIONS(6420), 1, + anon_sym_and, + ACTIONS(6422), 1, + anon_sym_or, + ACTIONS(6582), 1, + anon_sym_RPAREN, + ACTIONS(6584), 1, + anon_sym_COMMA, + STATE(4104), 1, + sym_for_in_clause, + STATE(5065), 1, + aux_sym_argument_list_repeat1, + STATE(5643), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [166975] = 7, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + STATE(3456), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5759), 3, + ACTIONS(5809), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [163401] = 12, - ACTIONS(6183), 1, + [167003] = 12, + ACTIONS(6356), 1, anon_sym_RBRACK, - ACTIONS(6317), 1, + ACTIONS(6433), 1, anon_sym_COMMA, - ACTIONS(6319), 1, + ACTIONS(6435), 1, anon_sym_as, - ACTIONS(6321), 1, + ACTIONS(6437), 1, anon_sym_if, - ACTIONS(6323), 1, + ACTIONS(6439), 1, anon_sym_async, - ACTIONS(6325), 1, + ACTIONS(6441), 1, anon_sym_for, - ACTIONS(6327), 1, + ACTIONS(6443), 1, anon_sym_and, - ACTIONS(6329), 1, + ACTIONS(6445), 1, anon_sym_or, - STATE(4041), 1, + STATE(4180), 1, sym_for_in_clause, - STATE(4880), 1, + STATE(4998), 1, aux_sym__collection_elements_repeat1, - STATE(5672), 1, + STATE(5650), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163439] = 8, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(5457), 1, - anon_sym_LPAREN, - STATE(3447), 1, - sym_type_index, - ACTIONS(3), 2, + [167041] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(5460), 2, - sym__newline, - anon_sym_COLON, - STATE(3387), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [163469] = 8, - ACTIONS(3708), 1, + ACTIONS(6378), 1, + anon_sym_LBRACE, + ACTIONS(6382), 1, + anon_sym_BSLASH, + ACTIONS(6586), 1, + sym_string_end, + STATE(3986), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6380), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3730), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [167071] = 8, + ACTIONS(3804), 1, anon_sym_STAR, - ACTIONS(3718), 1, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5843), 1, anon_sym_LPAREN, - STATE(3447), 1, + STATE(3494), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5772), 2, + ACTIONS(5846), 2, sym__newline, anon_sym_COLON, - STATE(3387), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [163499] = 7, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - STATE(3447), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3387), 2, + STATE(3692), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(3820), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5772), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [163527] = 12, - ACTIONS(6183), 1, - anon_sym_RBRACK, - ACTIONS(6317), 1, - anon_sym_COMMA, - ACTIONS(6319), 1, + [167101] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6321), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6323), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6325), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6327), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6329), 1, + ACTIONS(6422), 1, anon_sym_or, - STATE(4041), 1, + ACTIONS(6431), 1, + anon_sym_COMMA, + ACTIONS(6588), 1, + anon_sym_RPAREN, + STATE(4104), 1, sym_for_in_clause, - STATE(4880), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, - STATE(5544), 1, + STATE(5720), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163565] = 12, - ACTIONS(6183), 1, - anon_sym_RBRACK, - ACTIONS(6317), 1, - anon_sym_COMMA, - ACTIONS(6319), 1, + [167139] = 12, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6321), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6323), 1, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6325), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(6327), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6329), 1, + ACTIONS(6422), 1, anon_sym_or, - STATE(4041), 1, + ACTIONS(6431), 1, + anon_sym_COMMA, + ACTIONS(6590), 1, + anon_sym_RPAREN, + STATE(4104), 1, sym_for_in_clause, - STATE(4880), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, - STATE(5678), 1, + STATE(5494), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163603] = 7, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - STATE(3447), 1, - sym_type_index, + [167177] = 6, + ACTIONS(6592), 1, + anon_sym_as, + ACTIONS(6594), 1, + anon_sym_if, + ACTIONS(6596), 1, + anon_sym_and, + ACTIONS(6598), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5755), 3, + ACTIONS(4658), 6, sym__newline, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, - [163631] = 7, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - STATE(3447), 1, + anon_sym_EQ, + anon_sym_PIPE, + [167202] = 5, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3387), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(6600), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(5777), 3, - sym__newline, + ACTIONS(6211), 4, anon_sym_LPAREN, - anon_sym_COLON, - [163659] = 8, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(5734), 1, + anon_sym_AMP, + [167225] = 8, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5530), 1, anon_sym_LPAREN, - STATE(3447), 1, + ACTIONS(6143), 1, + sym_identifier, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5737), 2, - sym__newline, - anon_sym_COLON, - STATE(3387), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - [163689] = 8, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, + STATE(3812), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [167254] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5752), 1, + ACTIONS(5850), 1, anon_sym_LPAREN, - STATE(3447), 1, + ACTIONS(6498), 1, + sym_identifier, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5755), 2, - sym__newline, - anon_sym_COLON, - STATE(3387), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - [163719] = 7, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - STATE(3447), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3387), 2, + STATE(3821), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3724), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6074), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [163747] = 8, - ACTIONS(3708), 1, + [167283] = 3, + ACTIONS(6295), 1, anon_sym_STAR, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6115), 1, - anon_sym_LPAREN, - STATE(3447), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6074), 2, - sym__newline, - anon_sym_COLON, - STATE(3387), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(6297), 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, - [163777] = 8, - ACTIONS(3708), 1, - anon_sym_STAR, - ACTIONS(3718), 1, + [167302] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5743), 1, + ACTIONS(5780), 1, anon_sym_LPAREN, - STATE(3447), 1, + ACTIONS(6602), 1, + sym_identifier, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5783), 2, - sym__newline, - anon_sym_COLON, - STATE(3387), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3724), 3, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, + STATE(3825), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [167331] = 8, + ACTIONS(4988), 1, anon_sym___stdcall, - [163807] = 9, - ACTIONS(4905), 1, + ACTIONS(4990), 1, + anon_sym_AMP, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(6390), 1, - sym_identifier, - ACTIONS(6494), 1, - anon_sym_complex, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(5809), 2, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3766), 2, + ACTIONS(6604), 2, + anon_sym_STAR, + sym_identifier, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163839] = 5, - STATE(3477), 1, + [167360] = 5, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6496), 3, + ACTIONS(6606), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(6074), 4, + ACTIONS(5838), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [163862] = 6, - ACTIONS(5457), 1, - anon_sym_LPAREN, - STATE(3477), 1, - sym_type_index, + [167383] = 3, + ACTIONS(5995), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5460), 3, + ACTIONS(5997), 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(6070), 3, - anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - [163887] = 8, - ACTIONS(4905), 1, + [167402] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(6213), 1, anon_sym_LPAREN, - ACTIONS(6355), 1, + ACTIONS(6600), 1, sym_identifier, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3725), 2, + STATE(3846), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163916] = 8, - ACTIONS(4901), 1, + [167431] = 8, + ACTIONS(4988), 1, anon_sym___stdcall, - ACTIONS(4903), 1, + ACTIONS(4990), 1, anon_sym_AMP, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5755), 2, + ACTIONS(5850), 2, anon_sym_LPAREN, anon_sym_STAR_STAR, - ACTIONS(6374), 2, + ACTIONS(6498), 2, anon_sym_STAR, sym_identifier, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [163945] = 2, + [167460] = 8, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5838), 1, + anon_sym_LPAREN, + ACTIONS(6606), 1, + sym_identifier, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4539), 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, - [163962] = 8, - ACTIONS(6498), 1, - anon_sym_COMMA, - ACTIONS(6500), 1, - anon_sym_as, - ACTIONS(6502), 1, - anon_sym_if, - ACTIONS(6506), 1, - anon_sym_and, - ACTIONS(6508), 1, - anon_sym_or, - STATE(4248), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3779), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [167489] = 8, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5515), 1, + anon_sym_LPAREN, + ACTIONS(6179), 1, + sym_identifier, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6504), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [163991] = 8, - ACTIONS(4901), 1, + ACTIONS(4988), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 1, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(4905), 1, + STATE(3810), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [167518] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + ACTIONS(5843), 1, + anon_sym_LPAREN, + ACTIONS(6388), 1, + sym_identifier, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5777), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6510), 2, + ACTIONS(4988), 2, anon_sym_STAR, - sym_identifier, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164020] = 9, - ACTIONS(4901), 1, anon_sym___stdcall, - ACTIONS(4903), 1, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(4905), 1, + STATE(3816), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [167547] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5734), 1, + ACTIONS(5530), 1, anon_sym_LPAREN, - ACTIONS(5737), 1, - anon_sym_STAR_STAR, - STATE(3477), 1, + ACTIONS(6143), 1, + sym_identifier, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6512), 2, + ACTIONS(4988), 2, anon_sym_STAR, - sym_identifier, - STATE(3439), 2, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3780), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164051] = 9, - ACTIONS(4901), 1, + [167576] = 8, + ACTIONS(4988), 1, anon_sym___stdcall, - ACTIONS(4903), 1, + ACTIONS(4990), 1, anon_sym_AMP, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5752), 1, - anon_sym_LPAREN, - ACTIONS(5755), 1, - anon_sym_STAR_STAR, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6374), 2, + ACTIONS(5553), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(6508), 2, anon_sym_STAR, sym_identifier, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164082] = 3, - ACTIONS(6147), 1, - anon_sym_STAR, + [167605] = 4, + ACTIONS(6612), 1, + anon_sym_LBRACK_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6149), 9, - anon_sym_LPAREN, + ACTIONS(6610), 2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(6608), 7, anon_sym_RPAREN, 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, - [164101] = 8, - ACTIONS(4905), 1, + [167626] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5426), 1, + ACTIONS(5553), 1, anon_sym_LPAREN, - ACTIONS(6056), 1, + ACTIONS(6508), 1, sym_identifier, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3737), 2, + STATE(3822), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164130] = 6, - ACTIONS(5688), 1, + [167655] = 6, + ACTIONS(6213), 1, anon_sym_LPAREN, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5772), 3, + ACTIONS(6211), 3, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6355), 3, + ACTIONS(6600), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - [164155] = 3, - ACTIONS(5959), 1, + [167680] = 3, + ACTIONS(5579), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5961), 9, + ACTIONS(5581), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -256536,31 +261923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [164174] = 5, - STATE(3477), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6355), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5772), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - [164197] = 3, - ACTIONS(5387), 1, + [167699] = 3, + ACTIONS(6100), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 9, + ACTIONS(6102), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -256570,70 +261939,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [164216] = 8, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5755), 1, - anon_sym_LPAREN, - ACTIONS(6374), 1, - sym_identifier, - STATE(3477), 1, - sym_type_index, + [167718] = 4, + ACTIONS(6614), 1, + anon_sym_LBRACK_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(6610), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, + anon_sym_LBRACK, + ACTIONS(6608), 7, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AMP, - STATE(3717), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164245] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4523), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym___stdcall, + [167739] = 8, + ACTIONS(6616), 1, + anon_sym_COMMA, + ACTIONS(6618), 1, anon_sym_as, + ACTIONS(6620), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(6624), 1, anon_sym_and, + ACTIONS(6626), 1, anon_sym_or, - [164262] = 8, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5734), 1, - anon_sym_LPAREN, - ACTIONS(6512), 1, - sym_identifier, - STATE(3477), 1, - sym_type_index, + STATE(4340), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3763), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164291] = 3, - ACTIONS(5399), 1, + ACTIONS(6622), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [167768] = 3, + ACTIONS(6037), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5401), 9, + ACTIONS(6039), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -256641,439 +261992,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - [164310] = 8, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(6115), 1, + [167787] = 6, + ACTIONS(5843), 1, anon_sym_LPAREN, - ACTIONS(6496), 1, - sym_identifier, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3783), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164339] = 8, - ACTIONS(4901), 1, - anon_sym___stdcall, - ACTIONS(4903), 1, - anon_sym_AMP, - ACTIONS(4905), 1, + ACTIONS(5846), 3, + anon_sym_STAR_STAR, anon_sym_LBRACK, - STATE(3477), 1, - sym_type_index, + anon_sym_AMP, + ACTIONS(6388), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [167812] = 4, + ACTIONS(5811), 1, + anon_sym_DOT, + STATE(3244), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5759), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6514), 2, - anon_sym_STAR, - sym_identifier, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [164368] = 8, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5755), 1, + ACTIONS(6628), 8, + anon_sym_import, + anon_sym_cimport, anon_sym_LPAREN, - ACTIONS(6374), 1, - sym_identifier, - STATE(3477), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [167833] = 5, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3749), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164397] = 3, - ACTIONS(5938), 1, + ACTIONS(6498), 3, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5940), 9, - anon_sym_DOT, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5850), 4, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym___stdcall, - [164416] = 8, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5734), 1, + [167856] = 6, + ACTIONS(5860), 1, anon_sym_LPAREN, - ACTIONS(6512), 1, - sym_identifier, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3751), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164445] = 5, - STATE(3477), 1, + ACTIONS(5863), 3, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(6630), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [167881] = 5, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6374), 3, + ACTIONS(6604), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(5755), 4, + ACTIONS(5809), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [164468] = 8, - ACTIONS(4905), 1, + [167904] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5485), 1, + ACTIONS(6213), 1, anon_sym_LPAREN, - ACTIONS(6333), 1, + ACTIONS(6600), 1, sym_identifier, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3773), 2, + STATE(3808), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164497] = 5, - STATE(3477), 1, + [167933] = 6, + ACTIONS(5780), 1, + anon_sym_LPAREN, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6510), 3, + ACTIONS(5783), 3, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(6602), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(5777), 4, + [167958] = 4, + ACTIONS(5811), 1, + anon_sym_DOT, + STATE(3798), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6632), 8, + anon_sym_import, + anon_sym_cimport, anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - [164520] = 6, - ACTIONS(5734), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [167979] = 6, + ACTIONS(5515), 1, anon_sym_LPAREN, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5737), 3, + ACTIONS(5591), 3, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6512), 3, + ACTIONS(6179), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - [164545] = 8, - ACTIONS(4905), 1, + [168004] = 6, + ACTIONS(6634), 1, + anon_sym_as, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4662), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_PIPE, + [168029] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5485), 1, + ACTIONS(5838), 1, anon_sym_LPAREN, - ACTIONS(6333), 1, + ACTIONS(6606), 1, sym_identifier, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3730), 2, + STATE(3801), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164574] = 6, - ACTIONS(5752), 1, + [168058] = 9, + ACTIONS(4988), 1, + anon_sym___stdcall, + ACTIONS(4990), 1, + anon_sym_AMP, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(6189), 1, anon_sym_LPAREN, - STATE(3477), 1, + ACTIONS(6192), 1, + anon_sym_STAR_STAR, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + ACTIONS(6642), 2, + anon_sym_STAR, + sym_identifier, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5755), 3, - anon_sym_STAR_STAR, + [168089] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6374), 3, - anon_sym_STAR, + ACTIONS(5515), 1, + anon_sym_LPAREN, + ACTIONS(6179), 1, sym_identifier, - anon_sym___stdcall, - [164599] = 3, - ACTIONS(6147), 1, - anon_sym_STAR, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6149), 9, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [164618] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4554), 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, - [164635] = 8, - ACTIONS(4901), 1, + STATE(3803), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [168118] = 9, + ACTIONS(4988), 1, anon_sym___stdcall, - ACTIONS(4903), 1, + ACTIONS(4990), 1, anon_sym_AMP, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + ACTIONS(5780), 1, + anon_sym_LPAREN, + ACTIONS(5783), 1, + anon_sym_STAR_STAR, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6074), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6496), 2, + ACTIONS(6602), 2, anon_sym_STAR, sym_identifier, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164664] = 9, - ACTIONS(4901), 1, - anon_sym___stdcall, - ACTIONS(4903), 1, - anon_sym_AMP, - ACTIONS(4905), 1, + [168149] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6074), 1, - anon_sym_STAR_STAR, - ACTIONS(6115), 1, + ACTIONS(5843), 1, anon_sym_LPAREN, - STATE(3477), 1, + ACTIONS(6388), 1, + sym_identifier, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6496), 2, + ACTIONS(4988), 2, anon_sym_STAR, - sym_identifier, - STATE(3439), 2, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3837), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164695] = 9, - ACTIONS(4901), 1, + [168178] = 8, + ACTIONS(4988), 1, anon_sym___stdcall, - ACTIONS(4903), 1, + ACTIONS(4990), 1, anon_sym_AMP, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5743), 1, - anon_sym_LPAREN, - ACTIONS(5783), 1, - anon_sym_STAR_STAR, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6516), 2, + ACTIONS(5838), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(6606), 2, anon_sym_STAR, sym_identifier, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164726] = 3, - ACTIONS(6195), 1, - anon_sym_STAR, + [168207] = 8, + ACTIONS(4988), 1, + anon_sym___stdcall, + ACTIONS(4990), 1, + anon_sym_AMP, + ACTIONS(4992), 1, + anon_sym_LBRACK, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6197), 9, + ACTIONS(5530), 2, 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, - anon_sym___stdcall, - [164745] = 9, - ACTIONS(4901), 1, + ACTIONS(6143), 2, + anon_sym_STAR, + sym_identifier, + STATE(3502), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [168236] = 9, + ACTIONS(4988), 1, anon_sym___stdcall, - ACTIONS(4903), 1, + ACTIONS(4990), 1, anon_sym_AMP, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5457), 1, + ACTIONS(5515), 1, anon_sym_LPAREN, - ACTIONS(5460), 1, + ACTIONS(5591), 1, anon_sym_STAR_STAR, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6070), 2, + ACTIONS(6179), 2, anon_sym_STAR, sym_identifier, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164776] = 8, - ACTIONS(4905), 1, + [168267] = 9, + ACTIONS(4988), 1, + anon_sym___stdcall, + ACTIONS(4990), 1, + anon_sym_AMP, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, + ACTIONS(5843), 1, anon_sym_LPAREN, - ACTIONS(6496), 1, - sym_identifier, - STATE(3477), 1, + ACTIONS(5846), 1, + anon_sym_STAR_STAR, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(6388), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3784), 2, + sym_identifier, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164805] = 4, - ACTIONS(6522), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6520), 2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(6518), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym___stdcall, - [164826] = 8, - ACTIONS(4901), 1, + [168298] = 9, + ACTIONS(4988), 1, anon_sym___stdcall, - ACTIONS(4903), 1, + ACTIONS(4990), 1, anon_sym_AMP, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + ACTIONS(5787), 1, + anon_sym_LPAREN, + ACTIONS(5850), 1, + anon_sym_STAR_STAR, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5426), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6056), 2, + ACTIONS(6498), 2, anon_sym_STAR, sym_identifier, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164855] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4535), 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, - [164872] = 3, - ACTIONS(5947), 1, + [168329] = 3, + ACTIONS(6012), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5949), 9, + ACTIONS(6014), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -257083,14 +262410,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [164891] = 3, - ACTIONS(6123), 1, + [168348] = 3, + ACTIONS(5915), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6125), 9, - anon_sym_DOT, + ACTIONS(5917), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -257098,156 +262424,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [164910] = 5, - STATE(3477), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6056), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5426), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - [164933] = 6, - ACTIONS(6115), 1, - anon_sym_LPAREN, - STATE(3477), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6074), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6496), 3, + [168367] = 3, + ACTIONS(6002), 1, anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [164958] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4527), 10, - sym__newline, - anon_sym_SEMI, + ACTIONS(6004), 9, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [164975] = 6, - ACTIONS(5743), 1, anon_sym_LPAREN, - STATE(3477), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5783), 3, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(6516), 3, - anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - [165000] = 3, - ACTIONS(6195), 1, + [168386] = 3, + ACTIONS(5483), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6197), 9, + ACTIONS(4416), 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, - [165019] = 8, - ACTIONS(4901), 1, + [168405] = 8, + ACTIONS(4988), 1, anon_sym___stdcall, - ACTIONS(4903), 1, + ACTIONS(4990), 1, anon_sym_AMP, - ACTIONS(4905), 1, + ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5485), 2, + ACTIONS(6211), 2, anon_sym_LPAREN, anon_sym_STAR_STAR, - ACTIONS(6333), 2, + ACTIONS(6600), 2, anon_sym_STAR, sym_identifier, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165048] = 5, - STATE(3477), 1, + [168434] = 5, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6333), 3, + ACTIONS(6388), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(5485), 4, + ACTIONS(5846), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [165071] = 3, - ACTIONS(5807), 1, - anon_sym_STAR, + [168457] = 8, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5553), 1, + anon_sym_LPAREN, + ACTIONS(6508), 1, + sym_identifier, + STATE(3540), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5809), 9, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, + STATE(3856), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [168486] = 9, + ACTIONS(4988), 1, anon_sym___stdcall, - [165090] = 3, - ACTIONS(5913), 1, + ACTIONS(4990), 1, + anon_sym_AMP, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(6211), 1, + anon_sym_STAR_STAR, + ACTIONS(6213), 1, + anon_sym_LPAREN, + STATE(3540), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6600), 2, + anon_sym_STAR, + sym_identifier, + STATE(3502), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [168517] = 9, + ACTIONS(4988), 1, + anon_sym___stdcall, + ACTIONS(4990), 1, + anon_sym_AMP, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(5860), 1, + anon_sym_LPAREN, + ACTIONS(5863), 1, + anon_sym_STAR_STAR, + STATE(3540), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6630), 2, + anon_sym_STAR, + sym_identifier, + STATE(3502), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [168548] = 3, + ACTIONS(6151), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 9, + ACTIONS(6153), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -257257,209 +262578,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [165109] = 8, - ACTIONS(4905), 1, + [168567] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5759), 1, + ACTIONS(5850), 1, anon_sym_LPAREN, - ACTIONS(6514), 1, + ACTIONS(6498), 1, sym_identifier, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3723), 2, + STATE(3774), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165138] = 9, - ACTIONS(4901), 1, - anon_sym___stdcall, - ACTIONS(4903), 1, - anon_sym_AMP, - ACTIONS(4905), 1, + [168596] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5780), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, - anon_sym_STAR_STAR, - STATE(3477), 1, + ACTIONS(6602), 1, + sym_identifier, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6355), 2, + ACTIONS(4988), 2, anon_sym_STAR, - sym_identifier, - STATE(3439), 2, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3800), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165169] = 3, - ACTIONS(5917), 1, + [168625] = 3, + ACTIONS(6337), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5919), 9, - anon_sym_DOT, + ACTIONS(6339), 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, - [165188] = 4, - ACTIONS(5705), 1, - anon_sym_DOT, - STATE(3787), 1, - aux_sym_class_definition_repeat2, + [168644] = 3, + ACTIONS(6295), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6524), 8, - anon_sym_import, - anon_sym_cimport, + ACTIONS(6297), 9, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [165209] = 8, - ACTIONS(4901), 1, - anon_sym___stdcall, - ACTIONS(4903), 1, - anon_sym_AMP, - ACTIONS(4905), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - STATE(3477), 1, - sym_type_index, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [168663] = 3, + ACTIONS(5483), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5772), 2, + ACTIONS(4416), 9, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, - ACTIONS(6355), 2, - anon_sym_STAR, - sym_identifier, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165238] = 6, - ACTIONS(6526), 1, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [168682] = 6, + ACTIONS(6592), 1, anon_sym_as, - ACTIONS(6528), 1, + ACTIONS(6594), 1, anon_sym_if, - ACTIONS(6530), 1, + ACTIONS(6596), 1, anon_sym_and, - ACTIONS(6532), 1, + ACTIONS(6598), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6484), 6, + ACTIONS(6546), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165263] = 3, - ACTIONS(5387), 1, + [168707] = 3, + ACTIONS(6045), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 9, + ACTIONS(6047), 9, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - [165282] = 8, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5759), 1, - anon_sym_LPAREN, - ACTIONS(6514), 1, - sym_identifier, - STATE(3477), 1, + [168726] = 5, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + STATE(3502), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6143), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(5530), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3743), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165311] = 8, - ACTIONS(4905), 1, anon_sym_LBRACK, - ACTIONS(5457), 1, + anon_sym_AMP, + [168749] = 6, + ACTIONS(6634), 1, + anon_sym_as, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4658), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_PIPE, + [168774] = 8, + ACTIONS(6616), 1, + anon_sym_COMMA, + ACTIONS(6618), 1, + anon_sym_as, + ACTIONS(6620), 1, + anon_sym_if, + ACTIONS(6624), 1, + anon_sym_and, + ACTIONS(6626), 1, + anon_sym_or, + STATE(4340), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6644), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [168803] = 6, + ACTIONS(5787), 1, anon_sym_LPAREN, - ACTIONS(6070), 1, - sym_identifier, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3744), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165340] = 8, - ACTIONS(4905), 1, + ACTIONS(5850), 3, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(5688), 1, - anon_sym_LPAREN, - ACTIONS(6355), 1, + anon_sym_AMP, + ACTIONS(6498), 3, + anon_sym_STAR, sym_identifier, - STATE(3477), 1, + anon_sym___stdcall, + [168828] = 5, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + STATE(3502), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6508), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(5553), 4, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3746), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165369] = 3, - ACTIONS(5895), 1, + [168851] = 3, + ACTIONS(6337), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5897), 9, - anon_sym_DOT, + ACTIONS(6339), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -257467,54 +262812,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [165388] = 8, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5426), 1, - anon_sym_LPAREN, - ACTIONS(6056), 1, - sym_identifier, - STATE(3477), 1, - sym_type_index, + [168870] = 6, + ACTIONS(6634), 1, + anon_sym_as, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3794), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165417] = 8, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(5457), 1, - anon_sym_LPAREN, - ACTIONS(6070), 1, - sym_identifier, - STATE(3477), 1, - sym_type_index, + ACTIONS(4627), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_PIPE, + [168895] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3724), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165446] = 2, + ACTIONS(4561), 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, + [168912] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4450), 10, + ACTIONS(4565), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -257525,148 +262863,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [165463] = 6, - ACTIONS(6118), 1, + [168929] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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, + anon_sym_and, + anon_sym_or, + [168946] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4605), 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, + [168963] = 5, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(6646), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4643), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_PIPE, + [168986] = 6, + ACTIONS(6189), 1, anon_sym_LPAREN, - STATE(3477), 1, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6121), 3, + ACTIONS(6192), 3, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6534), 3, + ACTIONS(6642), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - [165488] = 9, - ACTIONS(4901), 1, - anon_sym___stdcall, - ACTIONS(4903), 1, - anon_sym_AMP, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(6118), 1, - anon_sym_LPAREN, - ACTIONS(6121), 1, - anon_sym_STAR_STAR, - STATE(3477), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6534), 2, - anon_sym_STAR, - sym_identifier, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165519] = 8, - ACTIONS(6498), 1, - anon_sym_COMMA, - ACTIONS(6500), 1, + [169011] = 6, + ACTIONS(6592), 1, anon_sym_as, - ACTIONS(6502), 1, + ACTIONS(6594), 1, anon_sym_if, - ACTIONS(6506), 1, + ACTIONS(6596), 1, anon_sym_and, - ACTIONS(6508), 1, + ACTIONS(6598), 1, anon_sym_or, - STATE(4248), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6536), 4, + ACTIONS(4627), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [165548] = 4, - ACTIONS(6538), 1, - anon_sym_LBRACK_RBRACK, + anon_sym_PIPE, + [169036] = 4, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6520), 2, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(6518), 7, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AMP, - anon_sym___stdcall, - [165569] = 4, - ACTIONS(5705), 1, + ACTIONS(4650), 8, anon_sym_DOT, - STATE(3183), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6540), 8, - anon_sym_import, - anon_sym_cimport, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, + anon_sym_by, anon_sym_PIPE, - [165590] = 6, - ACTIONS(6526), 1, - anon_sym_as, - ACTIONS(6528), 1, - anon_sym_if, - ACTIONS(6530), 1, + [169057] = 5, + ACTIONS(6596), 1, anon_sym_and, - ACTIONS(6532), 1, + ACTIONS(6598), 1, anon_sym_or, + ACTIONS(6649), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4462), 6, + ACTIONS(4643), 7, sym__newline, anon_sym_SEMI, anon_sym_DOT, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165615] = 5, - ACTIONS(6530), 1, + [169080] = 4, + ACTIONS(6596), 1, anon_sym_and, - ACTIONS(6532), 1, + ACTIONS(6598), 1, anon_sym_or, - ACTIONS(6542), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 7, + ACTIONS(4650), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165638] = 4, - ACTIONS(6530), 1, + [169101] = 3, + ACTIONS(6596), 1, anon_sym_and, - ACTIONS(6532), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4485), 8, + ACTIONS(4654), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -257675,13 +263016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165659] = 3, - ACTIONS(6530), 1, - anon_sym_and, + anon_sym_or, + [169120] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4489), 9, + ACTIONS(4569), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -257690,232 +263030,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + anon_sym_and, anon_sym_or, - [165678] = 6, - ACTIONS(6526), 1, + [169137] = 6, + ACTIONS(6592), 1, anon_sym_as, - ACTIONS(6528), 1, + ACTIONS(6594), 1, anon_sym_if, - ACTIONS(6530), 1, + ACTIONS(6596), 1, anon_sym_and, - ACTIONS(6532), 1, + ACTIONS(6598), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4493), 6, + ACTIONS(4662), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165703] = 6, - ACTIONS(6526), 1, + [169162] = 3, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4654), 9, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6528), 1, anon_sym_if, - ACTIONS(6530), 1, - anon_sym_and, - ACTIONS(6532), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_PIPE, anon_sym_or, + [169181] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4497), 6, + ACTIONS(4573), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [165728] = 5, - STATE(3477), 1, + anon_sym_and, + anon_sym_or, + [169198] = 8, + ACTIONS(4988), 1, + anon_sym___stdcall, + ACTIONS(4990), 1, + anon_sym_AMP, + ACTIONS(4992), 1, + anon_sym_LBRACK, + STATE(3540), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3439), 2, + ACTIONS(5846), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(6388), 2, + anon_sym_STAR, + sym_identifier, + STATE(3502), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6514), 3, - anon_sym_STAR, + [169227] = 9, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + sym_string_start, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(6652), 1, + anon_sym_EQ, + ACTIONS(6654), 1, + sym__newline, + STATE(4198), 1, + sym_string, + STATE(5110), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4199), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [169257] = 8, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(6656), 1, sym_identifier, + ACTIONS(6658), 1, + sym__newline, + STATE(5050), 1, + sym_type_index, + STATE(5824), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4988), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5759), 4, - anon_sym_LPAREN, + ACTIONS(4990), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - [165751] = 5, - ACTIONS(5705), 1, - anon_sym_DOT, - ACTIONS(6545), 1, - anon_sym_EQ, - STATE(3787), 1, - aux_sym_class_definition_repeat2, + [169285] = 3, + ACTIONS(6662), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6524), 6, + ACTIONS(6660), 8, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [165773] = 3, - ACTIONS(6547), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [169303] = 5, + ACTIONS(6624), 1, anon_sym_and, + ACTIONS(6626), 1, + anon_sym_or, + ACTIONS(6664), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4489), 8, - anon_sym_DOT, + ACTIONS(4643), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, - anon_sym_or, - [165791] = 5, - ACTIONS(6549), 1, - anon_sym_class, - ACTIONS(6551), 1, - anon_sym_ctypedef, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [169325] = 8, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(6656), 1, + sym_identifier, + ACTIONS(6667), 1, + sym__newline, + STATE(5050), 1, + sym_type_index, + STATE(5824), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2736), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5644), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [165813] = 6, - ACTIONS(6173), 1, - anon_sym_as, - ACTIONS(6175), 1, - anon_sym_if, - ACTIONS(6185), 1, - anon_sym_and, - ACTIONS(6187), 1, - anon_sym_or, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [169353] = 5, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(6669), 1, + anon_sym_EQ, + STATE(3798), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4497), 5, + ACTIONS(6632), 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, - [165837] = 5, - ACTIONS(6553), 1, + anon_sym_PIPE, + [169375] = 5, + ACTIONS(6671), 1, anon_sym_class, - ACTIONS(6555), 1, + ACTIONS(6673), 1, anon_sym_ctypedef, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2736), 2, + STATE(2789), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(5644), 5, + ACTIONS(5744), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [165859] = 2, + [169397] = 8, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(6656), 1, + sym_identifier, + ACTIONS(6675), 1, + sym__newline, + STATE(5050), 1, + sym_type_index, + STATE(5824), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 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, - [165875] = 9, - ACTIONS(3718), 1, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [169425] = 9, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(3878), 1, sym_string_start, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6557), 1, + ACTIONS(6560), 1, anon_sym_EQ, - ACTIONS(6559), 1, + ACTIONS(6562), 1, sym__newline, - STATE(4118), 1, + STATE(4054), 1, sym_string, - STATE(5151), 1, + STATE(4825), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4119), 2, + STATE(4055), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [165905] = 9, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(6339), 1, + [169455] = 4, + ACTIONS(6624), 1, + anon_sym_and, + ACTIONS(6626), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4650), 7, anon_sym_COMMA, - ACTIONS(6561), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(6563), 1, - sym__newline, - STATE(4142), 1, - sym_string, - STATE(5156), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACE, + sym_type_conversion, + [169475] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4146), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [165935] = 10, - ACTIONS(6565), 1, + ACTIONS(4654), 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, + [169491] = 10, + ACTIONS(6658), 1, + sym__newline, + ACTIONS(6677), 1, anon_sym_LPAREN, - ACTIONS(6567), 1, + ACTIONS(6679), 1, anon_sym_COMMA, - ACTIONS(6569), 1, + ACTIONS(6681), 1, anon_sym_EQ, - ACTIONS(6571), 1, + ACTIONS(6683), 1, anon_sym_LBRACK, - ACTIONS(6573), 1, - sym__newline, - STATE(2986), 1, + STATE(2998), 1, sym_c_function_definition, - STATE(3883), 1, + STATE(4016), 1, sym_c_parameters, - STATE(4702), 1, + STATE(5210), 1, aux_sym_cvar_def_repeat1, - STATE(5223), 1, + STATE(5287), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165967] = 3, - ACTIONS(5953), 1, + [169523] = 3, + ACTIONS(6108), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5957), 8, + ACTIONS(6110), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -257924,11 +263338,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [165985] = 2, + [169541] = 5, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, + anon_sym_or, + ACTIONS(6685), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4643), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [169563] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4561), 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, + [169579] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4193), 9, + ACTIONS(4565), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -257938,53 +263383,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [166001] = 10, - ACTIONS(6565), 1, + [169595] = 10, + ACTIONS(6677), 1, anon_sym_LPAREN, - ACTIONS(6571), 1, + ACTIONS(6683), 1, anon_sym_LBRACK, - ACTIONS(6575), 1, + ACTIONS(6688), 1, anon_sym_COMMA, - ACTIONS(6577), 1, + ACTIONS(6690), 1, anon_sym_EQ, - ACTIONS(6579), 1, + ACTIONS(6692), 1, sym__newline, - STATE(647), 1, + STATE(666), 1, sym_c_function_definition, - STATE(3927), 1, + STATE(4033), 1, sym_c_parameters, - STATE(5011), 1, + STATE(4973), 1, aux_sym_cvar_def_repeat1, - STATE(5274), 1, + STATE(5334), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166033] = 8, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - sym_identifier, - ACTIONS(6583), 1, - sym__newline, - STATE(5003), 1, - sym_type_index, - STATE(5566), 1, - sym_type_qualifier, + [169627] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [166061] = 2, + 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, + [169643] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4458), 9, + ACTIONS(4605), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -257994,468 +263433,569 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [166077] = 8, - ACTIONS(4905), 1, + [169659] = 9, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + sym_string_start, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(6694), 1, + anon_sym_EQ, + ACTIONS(6696), 1, + sym__newline, + STATE(4200), 1, + sym_string, + STATE(5117), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4201), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [169689] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6581), 1, + ACTIONS(6656), 1, sym_identifier, - ACTIONS(6585), 1, + ACTIONS(6698), 1, sym__newline, - STATE(5003), 1, + STATE(5050), 1, + sym_type_index, + STATE(5824), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [169717] = 8, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(6656), 1, + sym_identifier, + ACTIONS(6700), 1, + sym__newline, + STATE(5050), 1, sym_type_index, - STATE(5566), 1, + STATE(5824), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [169745] = 3, + ACTIONS(6337), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6339), 8, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - [166105] = 9, - ACTIONS(3718), 1, + anon_sym_complex, + anon_sym___stdcall, + [169763] = 9, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(3878), 1, sym_string_start, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6587), 1, + ACTIONS(6702), 1, anon_sym_EQ, - ACTIONS(6589), 1, + ACTIONS(6704), 1, sym__newline, - STATE(4128), 1, + STATE(4074), 1, sym_string, - STATE(4889), 1, + STATE(4716), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4129), 2, + STATE(4075), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [166135] = 6, - ACTIONS(6591), 1, - anon_sym_as, - ACTIONS(6593), 1, - anon_sym_if, - ACTIONS(6595), 1, - anon_sym_and, - ACTIONS(6597), 1, - anon_sym_or, + [169793] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6484), 5, - anon_sym_DOT, + ACTIONS(4569), 9, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [166159] = 3, - ACTIONS(6601), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6599), 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, - [166177] = 3, - ACTIONS(6605), 1, - anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [169809] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6603), 8, - sym__newline, - anon_sym_LPAREN, + ACTIONS(4573), 9, anon_sym_COMMA, - anon_sym_STAR_STAR, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [166195] = 3, - ACTIONS(5387), 1, - anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [169825] = 6, + ACTIONS(6706), 1, + anon_sym_as, + ACTIONS(6708), 1, + anon_sym_if, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4338), 8, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6546), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [166213] = 9, - ACTIONS(3718), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [169849] = 9, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(3878), 1, sym_string_start, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6607), 1, + ACTIONS(6714), 1, anon_sym_EQ, - ACTIONS(6609), 1, + ACTIONS(6716), 1, sym__newline, - STATE(4130), 1, + STATE(4211), 1, sym_string, - STATE(4894), 1, + STATE(5183), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4131), 2, + STATE(4212), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [166243] = 3, - ACTIONS(6605), 1, - anon_sym_STAR, + [169879] = 8, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(6656), 1, + sym_identifier, + ACTIONS(6718), 1, + sym__newline, + STATE(5050), 1, + sym_type_index, + STATE(5824), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6603), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - [166261] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [169907] = 6, + ACTIONS(6346), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6348), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4497), 5, - anon_sym_DOT, + ACTIONS(4658), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, - [166285] = 8, - ACTIONS(4905), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [169931] = 3, + ACTIONS(6624), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4654), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_or, + sym_type_conversion, + [169949] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6581), 1, + ACTIONS(6656), 1, sym_identifier, - ACTIONS(6617), 1, + ACTIONS(6720), 1, sym__newline, - STATE(5003), 1, + STATE(5050), 1, sym_type_index, - STATE(5566), 1, + STATE(5824), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166313] = 9, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(6339), 1, + [169977] = 6, + ACTIONS(6618), 1, + anon_sym_as, + ACTIONS(6620), 1, + anon_sym_if, + ACTIONS(6624), 1, + anon_sym_and, + ACTIONS(6626), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4662), 5, anon_sym_COMMA, - ACTIONS(6359), 1, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(6361), 1, - sym__newline, - STATE(4062), 1, - sym_string, - STATE(5117), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACE, + sym_type_conversion, + [170001] = 3, + ACTIONS(6724), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4063), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166343] = 8, - ACTIONS(4905), 1, + ACTIONS(6722), 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, + [170019] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6581), 1, + ACTIONS(6656), 1, sym_identifier, - ACTIONS(6619), 1, + ACTIONS(6726), 1, sym__newline, - STATE(5003), 1, + STATE(5050), 1, sym_type_index, - STATE(5566), 1, + STATE(5824), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166371] = 10, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, + [170047] = 9, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6621), 1, + ACTIONS(3878), 1, + sym_string_start, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6623), 1, + ACTIONS(6453), 1, anon_sym_EQ, - ACTIONS(6625), 1, + ACTIONS(6455), 1, sym__newline, - STATE(1339), 1, - sym_c_function_definition, - STATE(3951), 1, - sym_c_parameters, - STATE(4833), 1, - aux_sym_cvar_def_repeat1, - STATE(5184), 1, - sym_template_params, + STATE(4121), 1, + sym_string, + STATE(5156), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4122), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170077] = 9, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(3878), 1, + sym_string_start, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(6728), 1, + anon_sym_EQ, + ACTIONS(6730), 1, + sym__newline, + STATE(4138), 1, + sym_string, + STATE(4738), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166403] = 9, - ACTIONS(3718), 1, + STATE(4139), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [170107] = 9, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(3878), 1, sym_string_start, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6627), 1, + ACTIONS(6732), 1, anon_sym_EQ, - ACTIONS(6629), 1, + ACTIONS(6734), 1, sym__newline, - STATE(4017), 1, + STATE(4129), 1, sym_string, - STATE(4701), 1, + STATE(5208), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4018), 2, + STATE(4130), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [166433] = 8, - ACTIONS(4905), 1, + [170137] = 6, + ACTIONS(6706), 1, + anon_sym_as, + ACTIONS(6708), 1, + anon_sym_if, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4658), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [170161] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6581), 1, + ACTIONS(6656), 1, sym_identifier, - ACTIONS(6631), 1, + ACTIONS(6736), 1, sym__newline, - STATE(5003), 1, + STATE(5050), 1, sym_type_index, - STATE(5566), 1, + STATE(5824), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166461] = 9, - ACTIONS(3718), 1, + [170189] = 9, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(3878), 1, sym_string_start, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6633), 1, + ACTIONS(6738), 1, anon_sym_EQ, - ACTIONS(6635), 1, + ACTIONS(6740), 1, sym__newline, - STATE(4140), 1, + STATE(4131), 1, sym_string, - STATE(5140), 1, + STATE(5213), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4141), 2, + STATE(4132), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [166491] = 6, - ACTIONS(6591), 1, + [170219] = 5, + ACTIONS(4652), 1, anon_sym_as, - ACTIONS(6593), 1, - anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6358), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6360), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4493), 5, - anon_sym_DOT, + ACTIONS(4650), 6, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [166515] = 6, - ACTIONS(6500), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [170241] = 4, + ACTIONS(4656), 1, anon_sym_as, - ACTIONS(6502), 1, - anon_sym_if, - ACTIONS(6506), 1, + ACTIONS(6358), 1, anon_sym_and, - ACTIONS(6508), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4462), 5, + ACTIONS(4654), 7, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [166539] = 2, + anon_sym_or, + [170261] = 10, + ACTIONS(6677), 1, + anon_sym_LPAREN, + ACTIONS(6683), 1, + anon_sym_LBRACK, + ACTIONS(6700), 1, + sym__newline, + ACTIONS(6742), 1, + anon_sym_COMMA, + ACTIONS(6744), 1, + anon_sym_EQ, + STATE(1406), 1, + sym_c_function_definition, + STATE(3968), 1, + sym_c_parameters, + STATE(5163), 1, + aux_sym_cvar_def_repeat1, + STATE(5330), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4474), 9, - anon_sym_COMMA, + [170293] = 6, + ACTIONS(6618), 1, anon_sym_as, + ACTIONS(6620), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [166555] = 5, - ACTIONS(6506), 1, + ACTIONS(6624), 1, anon_sym_and, - ACTIONS(6508), 1, + ACTIONS(6626), 1, anon_sym_or, - ACTIONS(6637), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 6, + ACTIONS(4658), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [166577] = 4, - ACTIONS(6506), 1, - anon_sym_and, - ACTIONS(6508), 1, - anon_sym_or, + [170317] = 3, + ACTIONS(6662), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4485), 7, + ACTIONS(6660), 8, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [166597] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4489), 9, - anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [170335] = 6, + ACTIONS(6618), 1, anon_sym_as, + ACTIONS(6620), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(6624), 1, anon_sym_and, + ACTIONS(6626), 1, anon_sym_or, - sym_type_conversion, - [166613] = 3, - ACTIONS(6506), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4489), 8, + ACTIONS(4627), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_or, sym_type_conversion, - [166631] = 9, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(6488), 1, - anon_sym_EQ, - ACTIONS(6490), 1, - sym__newline, - STATE(4052), 1, - sym_string, - STATE(5021), 1, - aux_sym_cvar_decl_repeat2, + [170359] = 6, + ACTIONS(6346), 1, + anon_sym_as, + ACTIONS(6348), 1, + anon_sym_if, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4053), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166661] = 9, - ACTIONS(3718), 1, + ACTIONS(4662), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [170383] = 10, + ACTIONS(6677), 1, + anon_sym_LPAREN, + ACTIONS(6683), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(6339), 1, + ACTIONS(6746), 1, anon_sym_COMMA, - ACTIONS(6640), 1, + ACTIONS(6748), 1, anon_sym_EQ, - ACTIONS(6642), 1, + ACTIONS(6750), 1, sym__newline, - STATE(4080), 1, - sym_string, - STATE(5157), 1, - aux_sym_cvar_decl_repeat2, + STATE(3087), 1, + sym_c_function_definition, + STATE(4016), 1, + sym_c_parameters, + STATE(5131), 1, + aux_sym_cvar_def_repeat1, + STATE(5287), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4081), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166691] = 2, + [170415] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4450), 9, + ACTIONS(4289), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -258465,142 +264005,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [166707] = 9, - ACTIONS(3718), 1, + [170431] = 8, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(6656), 1, + sym_identifier, + ACTIONS(6752), 1, + sym__newline, + STATE(5050), 1, + sym_type_index, + STATE(5824), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [170459] = 9, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(3878), 1, sym_string_start, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6644), 1, + ACTIONS(6464), 1, anon_sym_EQ, - ACTIONS(6646), 1, + ACTIONS(6466), 1, sym__newline, - STATE(4082), 1, + STATE(4102), 1, sym_string, - STATE(5160), 1, + STATE(4750), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4086), 2, + STATE(4103), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [166737] = 3, - ACTIONS(6520), 1, - anon_sym_STAR, + [170489] = 6, + ACTIONS(6706), 1, + anon_sym_as, + ACTIONS(6708), 1, + anon_sym_if, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6518), 8, - anon_sym_RPAREN, + ACTIONS(4627), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [170513] = 3, + ACTIONS(6295), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6297), 8, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [170531] = 8, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(6656), 1, + sym_identifier, + ACTIONS(6754), 1, + sym__newline, + STATE(5050), 1, + sym_type_index, + STATE(5824), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4988), 2, + anon_sym_STAR, anon_sym___stdcall, - [166755] = 6, - ACTIONS(6547), 1, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [170559] = 5, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6611), 1, - anon_sym_as, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6712), 1, anon_sym_or, + ACTIONS(6756), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4462), 5, + ACTIONS(4643), 6, anon_sym_DOT, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_RBRACK, anon_sym_PIPE, - [166779] = 5, - ACTIONS(6595), 1, + [170581] = 4, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6712), 1, anon_sym_or, - ACTIONS(6648), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 6, + ACTIONS(4650), 7, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [166801] = 8, - ACTIONS(4905), 1, + [170601] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6581), 1, + ACTIONS(6656), 1, sym_identifier, - ACTIONS(6651), 1, + ACTIONS(6759), 1, sym__newline, - STATE(5003), 1, + STATE(5050), 1, sym_type_index, - STATE(5566), 1, + STATE(5824), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166829] = 2, + [170629] = 9, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6763), 1, + anon_sym_from, + ACTIONS(6765), 1, + anon_sym_COMMA, + STATE(4371), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4523), 9, - anon_sym_COMMA, + ACTIONS(6761), 2, + sym__newline, + anon_sym_SEMI, + [170659] = 6, + ACTIONS(6346), 1, anon_sym_as, + ACTIONS(6348), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(6358), 1, anon_sym_and, + ACTIONS(6360), 1, anon_sym_or, - sym_type_conversion, - [166845] = 10, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - anon_sym_LBRACK, - ACTIONS(6653), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4627), 5, anon_sym_COMMA, - ACTIONS(6655), 1, - anon_sym_EQ, - ACTIONS(6657), 1, - sym__newline, - STATE(2953), 1, - sym_c_function_definition, - STATE(3883), 1, - sym_c_parameters, - STATE(4874), 1, - aux_sym_cvar_def_repeat1, - STATE(5223), 1, - sym_template_params, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [170683] = 5, + ACTIONS(6767), 1, + anon_sym_class, + ACTIONS(6769), 1, + anon_sym_ctypedef, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166877] = 4, - ACTIONS(6595), 1, + STATE(2789), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(5744), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [170705] = 3, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6597), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4485), 7, + ACTIONS(4654), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -258608,68 +264222,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [166897] = 8, - ACTIONS(4905), 1, + anon_sym_or, + [170723] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6581), 1, + ACTIONS(6656), 1, sym_identifier, - ACTIONS(6659), 1, + ACTIONS(6771), 1, sym__newline, - STATE(5003), 1, + STATE(5050), 1, sym_type_index, - STATE(5566), 1, + STATE(5824), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166925] = 8, - ACTIONS(4905), 1, + [170751] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6581), 1, + ACTIONS(6656), 1, sym_identifier, - ACTIONS(6661), 1, + ACTIONS(6773), 1, sym__newline, - STATE(5003), 1, + STATE(5050), 1, sym_type_index, - STATE(5566), 1, + STATE(5824), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [166953] = 3, - ACTIONS(6595), 1, + [170779] = 6, + ACTIONS(6706), 1, + anon_sym_as, + ACTIONS(6708), 1, + anon_sym_if, + ACTIONS(6710), 1, anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4489), 8, + ACTIONS(4662), 5, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_or, - [166971] = 3, - ACTIONS(6147), 1, + [170803] = 3, + ACTIONS(6724), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6722), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [170821] = 3, + ACTIONS(5483), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6149), 8, + ACTIONS(4416), 8, sym__newline, anon_sym_LPAREN, anon_sym_COLON, @@ -258678,166 +264311,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [166989] = 6, - ACTIONS(6500), 1, + [170839] = 6, + ACTIONS(6618), 1, anon_sym_as, - ACTIONS(6502), 1, + ACTIONS(6620), 1, anon_sym_if, - ACTIONS(6506), 1, + ACTIONS(6624), 1, anon_sym_and, - ACTIONS(6508), 1, + ACTIONS(6626), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4493), 5, + ACTIONS(6775), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [167013] = 8, - ACTIONS(4905), 1, + [170863] = 8, + ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(6581), 1, + ACTIONS(6656), 1, sym_identifier, - ACTIONS(6663), 1, + ACTIONS(6777), 1, sym__newline, - STATE(5003), 1, + STATE(5050), 1, sym_type_index, - STATE(5566), 1, + STATE(5824), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, + ACTIONS(4988), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4903), 2, + ACTIONS(4990), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [167041] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, + [170891] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6484), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [167065] = 6, - ACTIONS(6591), 1, + ACTIONS(4623), 9, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6593), 1, anon_sym_if, - ACTIONS(6595), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6597), 1, anon_sym_or, + sym_type_conversion, + [170907] = 3, + ACTIONS(6610), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4497), 5, - anon_sym_DOT, + ACTIONS(6608), 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, + [170925] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4639), 9, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [167089] = 6, - ACTIONS(6547), 1, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6611), 1, + anon_sym_or, + sym_type_conversion, + [170941] = 10, + ACTIONS(6677), 1, + anon_sym_LPAREN, + ACTIONS(6683), 1, + anon_sym_LBRACK, + ACTIONS(6779), 1, + anon_sym_COMMA, + ACTIONS(6781), 1, + anon_sym_EQ, + ACTIONS(6783), 1, + sym__newline, + STATE(1235), 1, + sym_c_function_definition, + STATE(3968), 1, + sym_c_parameters, + STATE(4828), 1, + aux_sym_cvar_def_repeat1, + STATE(5330), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [170973] = 6, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4493), 5, + ACTIONS(6546), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_PIPE, - [167113] = 8, - ACTIONS(4905), 1, + [170997] = 10, + ACTIONS(6677), 1, + anon_sym_LPAREN, + ACTIONS(6683), 1, anon_sym_LBRACK, - ACTIONS(6581), 1, - sym_identifier, - ACTIONS(6665), 1, + ACTIONS(6771), 1, sym__newline, - STATE(5003), 1, - sym_type_index, - STATE(5566), 1, - sym_type_qualifier, + ACTIONS(6785), 1, + anon_sym_COMMA, + ACTIONS(6787), 1, + anon_sym_EQ, + STATE(673), 1, + sym_c_function_definition, + STATE(4033), 1, + sym_c_parameters, + STATE(5055), 1, + aux_sym_cvar_def_repeat1, + STATE(5334), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [167141] = 9, - ACTIONS(3718), 1, + [171029] = 9, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(3878), 1, sym_string_start, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6463), 1, + ACTIONS(6789), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(6791), 1, sym__newline, - STATE(4075), 1, + STATE(4062), 1, sym_string, - STATE(5045), 1, + STATE(4765), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4076), 2, + STATE(4063), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [167171] = 8, - ACTIONS(4905), 1, + [171059] = 9, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6581), 1, - sym_identifier, - ACTIONS(6667), 1, + ACTIONS(3878), 1, + sym_string_start, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(6793), 1, + anon_sym_EQ, + ACTIONS(6795), 1, sym__newline, - STATE(5003), 1, - sym_type_index, - STATE(5566), 1, - sym_type_qualifier, + STATE(4064), 1, + sym_string, + STATE(4773), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [167199] = 3, - ACTIONS(6601), 1, + STATE(4065), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [171089] = 3, + ACTIONS(6610), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6599), 8, + ACTIONS(6608), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -258846,837 +264511,998 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym___stdcall, - [167217] = 6, - ACTIONS(6500), 1, + [171107] = 5, + ACTIONS(6435), 1, anon_sym_as, - ACTIONS(6502), 1, - anon_sym_if, - ACTIONS(6506), 1, + ACTIONS(6443), 1, anon_sym_and, - ACTIONS(6508), 1, + ACTIONS(6445), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4497), 5, + ACTIONS(6797), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [167241] = 6, - ACTIONS(6173), 1, - anon_sym_as, - ACTIONS(6175), 1, anon_sym_if, - ACTIONS(6185), 1, - anon_sym_and, - ACTIONS(6187), 1, - anon_sym_or, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [171128] = 9, + ACTIONS(6799), 1, + anon_sym_COLON, + ACTIONS(6801), 1, + anon_sym_except, + ACTIONS(6803), 1, + anon_sym_with, + ACTIONS(6805), 1, + anon_sym_nogil, + ACTIONS(6807), 1, + anon_sym_noexcept, + ACTIONS(6809), 1, + sym__newline, + STATE(4023), 1, + sym_gil_spec, + STATE(4502), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4462), 5, - anon_sym_COMMA, + [171157] = 9, + ACTIONS(6799), 1, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [167265] = 5, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6615), 1, - anon_sym_or, - ACTIONS(6669), 1, - anon_sym_as, + ACTIONS(6801), 1, + anon_sym_except, + ACTIONS(6807), 1, + anon_sym_noexcept, + ACTIONS(6809), 1, + sym__newline, + ACTIONS(6811), 1, + anon_sym_with, + ACTIONS(6813), 1, + anon_sym_nogil, + STATE(4502), 1, + sym_exception_value, + STATE(5380), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 6, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, - [167287] = 5, - ACTIONS(6185), 1, + [171186] = 5, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6187), 1, + ACTIONS(6422), 1, anon_sym_or, - ACTIONS(6672), 1, + ACTIONS(6815), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 6, + ACTIONS(4643), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [167309] = 5, - ACTIONS(4487), 1, + [171207] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6185), 1, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6187), 1, + ACTIONS(6163), 1, anon_sym_or, + ACTIONS(6765), 1, + anon_sym_COMMA, + STATE(4371), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4485), 6, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [167331] = 8, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - sym_identifier, - ACTIONS(6675), 1, + ACTIONS(6644), 2, sym__newline, - STATE(5003), 1, - sym_type_index, - STATE(5566), 1, - sym_type_qualifier, + anon_sym_SEMI, + [171234] = 4, + ACTIONS(1279), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [167359] = 9, - ACTIONS(6063), 1, + STATE(2150), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(6818), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [171253] = 9, + ACTIONS(6634), 1, + anon_sym_as, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(6078), 1, + ACTIONS(6820), 1, + anon_sym_COMMA, + ACTIONS(6822), 1, + anon_sym_COLON, + ACTIONS(6824), 1, + anon_sym_by, + STATE(4567), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171282] = 9, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6679), 1, - anon_sym_from, - ACTIONS(6681), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(6820), 1, anon_sym_COMMA, - STATE(4464), 1, + ACTIONS(6826), 1, + anon_sym_COLON, + ACTIONS(6828), 1, + anon_sym_by, + STATE(4567), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6677), 2, - sym__newline, - anon_sym_SEMI, - [167389] = 4, - ACTIONS(4491), 1, + [171311] = 5, + ACTIONS(6435), 1, anon_sym_as, - ACTIONS(6185), 1, + ACTIONS(6443), 1, anon_sym_and, + ACTIONS(6445), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4489), 7, + ACTIONS(6797), 5, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - anon_sym_or, - [167409] = 6, - ACTIONS(6591), 1, + anon_sym_RBRACK, + [171332] = 9, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6712), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4462), 5, - anon_sym_DOT, + ACTIONS(6830), 1, anon_sym_COMMA, + ACTIONS(6832), 1, anon_sym_COLON, + ACTIONS(6834), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [167433] = 8, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - sym_identifier, - ACTIONS(6683), 1, - sym__newline, - STATE(5003), 1, - sym_type_index, - STATE(5566), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [167461] = 2, + STATE(4939), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4535), 9, - anon_sym_COMMA, + [171361] = 6, + ACTIONS(6157), 1, anon_sym_as, + ACTIONS(6159), 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, - [167477] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4539), 9, - anon_sym_COMMA, + ACTIONS(4878), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [171384] = 9, + ACTIONS(6706), 1, anon_sym_as, + ACTIONS(6708), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(6710), 1, anon_sym_and, + ACTIONS(6712), 1, anon_sym_or, - sym_type_conversion, - [167493] = 3, - ACTIONS(6520), 1, - anon_sym_STAR, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6836), 1, + anon_sym_COMMA, + ACTIONS(6838), 1, + anon_sym_RBRACK, + STATE(4965), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6518), 8, - sym__newline, + [171413] = 9, + ACTIONS(6677), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [167511] = 9, - ACTIONS(3718), 1, + ACTIONS(6683), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(6840), 1, + sym_identifier, + ACTIONS(6842), 1, sym_string_start, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(6685), 1, - anon_sym_EQ, - ACTIONS(6687), 1, - sym__newline, - STATE(4098), 1, + STATE(2944), 1, + sym_c_function_definition, + STATE(4016), 1, + sym_c_parameters, + STATE(4247), 1, sym_string, - STATE(4670), 1, - aux_sym_cvar_decl_repeat2, + STATE(5287), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4099), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [167541] = 3, - ACTIONS(6195), 1, - anon_sym_STAR, + [171442] = 5, + ACTIONS(4323), 1, + anon_sym_DOT, + ACTIONS(6844), 1, + anon_sym_EQ, + STATE(4209), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6197), 8, - sym__newline, + ACTIONS(6632), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [171463] = 9, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(6846), 1, anon_sym_LPAREN, + ACTIONS(6848), 1, anon_sym_COLON, - anon_sym_STAR_STAR, + ACTIONS(6850), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [167559] = 6, - ACTIONS(6500), 1, - anon_sym_as, - ACTIONS(6502), 1, - anon_sym_if, - ACTIONS(6506), 1, - anon_sym_and, - ACTIONS(6508), 1, - anon_sym_or, + ACTIONS(6852), 1, + sym__newline, + STATE(508), 1, + sym_external_definition, + STATE(4036), 1, + aux_sym_class_definition_repeat2, + STATE(5049), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6689), 5, - anon_sym_COMMA, + [171492] = 9, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(6854), 1, + anon_sym_LPAREN, + ACTIONS(6856), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [167583] = 8, - ACTIONS(4905), 1, + ACTIONS(6858), 1, anon_sym_LBRACK, - ACTIONS(6581), 1, - sym_identifier, - ACTIONS(6691), 1, + ACTIONS(6860), 1, sym__newline, - STATE(5003), 1, - sym_type_index, - STATE(5566), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [167611] = 2, + STATE(2953), 1, + sym_external_definition, + STATE(3384), 1, + aux_sym_class_definition_repeat2, + STATE(5106), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4527), 9, - anon_sym_COMMA, + [171521] = 8, + ACTIONS(6157), 1, anon_sym_as, + ACTIONS(6159), 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, - [167627] = 6, - ACTIONS(6173), 1, + ACTIONS(6765), 1, + anon_sym_COMMA, + STATE(4371), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6862), 2, + sym__newline, + anon_sym_SEMI, + [171548] = 6, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6175), 1, + ACTIONS(6414), 1, anon_sym_if, - ACTIONS(6185), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6187), 1, + ACTIONS(6422), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4493), 5, + ACTIONS(4658), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [167651] = 4, - ACTIONS(6547), 1, + [171571] = 9, + ACTIONS(6706), 1, + anon_sym_as, + ACTIONS(6708), 1, + anon_sym_if, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6615), 1, + ACTIONS(6712), 1, anon_sym_or, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6864), 1, + anon_sym_COMMA, + ACTIONS(6866), 1, + anon_sym_RBRACK, + STATE(5023), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4485), 7, - anon_sym_DOT, - anon_sym_COMMA, + [171600] = 9, + ACTIONS(6634), 1, anon_sym_as, + ACTIONS(6636), 1, anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(6820), 1, + anon_sym_COMMA, + ACTIONS(6868), 1, anon_sym_COLON, - anon_sym_else, - anon_sym_PIPE, - [167671] = 10, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - anon_sym_LBRACK, - ACTIONS(6661), 1, - sym__newline, - ACTIONS(6693), 1, + ACTIONS(6870), 1, + anon_sym_by, + STATE(4567), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171629] = 5, + ACTIONS(4652), 1, + anon_sym_as, + ACTIONS(6420), 1, + anon_sym_and, + ACTIONS(6422), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4650), 5, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(6695), 1, - anon_sym_EQ, - STATE(654), 1, - sym_c_function_definition, - STATE(3927), 1, - sym_c_parameters, - STATE(5070), 1, - aux_sym_cvar_def_repeat1, - STATE(5274), 1, - sym_template_params, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [171650] = 5, + ACTIONS(6346), 1, + anon_sym_as, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167703] = 10, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - anon_sym_LBRACK, - ACTIONS(6675), 1, - sym__newline, - ACTIONS(6697), 1, + ACTIONS(6797), 5, anon_sym_COMMA, - ACTIONS(6699), 1, - anon_sym_EQ, - STATE(1313), 1, - sym_c_function_definition, - STATE(3951), 1, - sym_c_parameters, - STATE(5043), 1, - aux_sym_cvar_def_repeat1, - STATE(5184), 1, - sym_template_params, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [171671] = 4, + ACTIONS(4656), 1, + anon_sym_as, + ACTIONS(6420), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167735] = 8, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - sym_identifier, - ACTIONS(6657), 1, + ACTIONS(4654), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_or, + [171690] = 9, + ACTIONS(6801), 1, + anon_sym_except, + ACTIONS(6803), 1, + anon_sym_with, + ACTIONS(6805), 1, + anon_sym_nogil, + ACTIONS(6807), 1, + anon_sym_noexcept, + ACTIONS(6872), 1, + anon_sym_COLON, + ACTIONS(6874), 1, sym__newline, - STATE(5003), 1, - sym_type_index, - STATE(5566), 1, - sym_type_qualifier, + STATE(4011), 1, + sym_gil_spec, + STATE(4520), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [167763] = 6, - ACTIONS(6319), 1, + [171719] = 5, + ACTIONS(6346), 1, anon_sym_as, - ACTIONS(6321), 1, - anon_sym_if, - ACTIONS(6327), 1, + ACTIONS(6358), 1, anon_sym_and, - ACTIONS(6329), 1, + ACTIONS(6360), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4462), 4, + ACTIONS(6797), 5, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [167786] = 6, - ACTIONS(6294), 1, + anon_sym_RBRACE, + [171740] = 9, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6302), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6712), 1, anon_sym_or, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6876), 1, + anon_sym_COMMA, + ACTIONS(6878), 1, + anon_sym_RBRACK, + STATE(4754), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4493), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [167809] = 6, + [171769] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6706), 1, + ACTIONS(6885), 1, anon_sym_BSLASH, - ACTIONS(6701), 2, + ACTIONS(6880), 2, sym_string_end, anon_sym_LBRACE, - STATE(3881), 2, + STATE(3961), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6703), 3, + ACTIONS(6882), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - [167832] = 2, + [171792] = 6, + ACTIONS(6435), 1, + anon_sym_as, + ACTIONS(6437), 1, + anon_sym_if, + ACTIONS(6443), 1, + anon_sym_and, + ACTIONS(6445), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4523), 8, - anon_sym_DOT, + ACTIONS(4627), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [171815] = 9, + ACTIONS(6801), 1, + anon_sym_except, + ACTIONS(6807), 1, + anon_sym_noexcept, + ACTIONS(6811), 1, + anon_sym_with, + ACTIONS(6813), 1, + anon_sym_nogil, + ACTIONS(6872), 1, + anon_sym_COLON, + ACTIONS(6874), 1, + sym__newline, + STATE(4520), 1, + sym_exception_value, + STATE(5452), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171844] = 6, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 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(6775), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + [171867] = 9, + ACTIONS(6706), 1, anon_sym_as, + ACTIONS(6708), 1, anon_sym_if, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, + ACTIONS(6832), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(6888), 1, + anon_sym_COMMA, + ACTIONS(6890), 1, + anon_sym_RBRACK, + STATE(5072), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171896] = 9, + ACTIONS(6706), 1, + anon_sym_as, + ACTIONS(6708), 1, + anon_sym_if, + ACTIONS(6710), 1, anon_sym_and, + ACTIONS(6712), 1, anon_sym_or, - [167847] = 9, - ACTIONS(6709), 1, + ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(6711), 1, + ACTIONS(6892), 1, + anon_sym_COMMA, + ACTIONS(6894), 1, + anon_sym_RBRACK, + STATE(4834), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171925] = 6, + ACTIONS(6346), 1, + anon_sym_as, + ACTIONS(6348), 1, + anon_sym_if, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6896), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [171948] = 9, + ACTIONS(6801), 1, anon_sym_except, - ACTIONS(6713), 1, + ACTIONS(6803), 1, anon_sym_with, - ACTIONS(6715), 1, + ACTIONS(6805), 1, anon_sym_nogil, - ACTIONS(6717), 1, + ACTIONS(6807), 1, anon_sym_noexcept, - ACTIONS(6719), 1, + ACTIONS(6898), 1, + anon_sym_COLON, + ACTIONS(6900), 1, sym__newline, - STATE(3923), 1, + STATE(3963), 1, sym_gil_spec, - STATE(4376), 1, + STATE(4462), 1, sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167876] = 2, + [171977] = 5, + ACTIONS(6443), 1, + anon_sym_and, + ACTIONS(6445), 1, + anon_sym_or, + ACTIONS(6902), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4527), 8, - anon_sym_DOT, + ACTIONS(4643), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [171998] = 5, + ACTIONS(4652), 1, anon_sym_as, + ACTIONS(6443), 1, + anon_sym_and, + ACTIONS(6445), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4650), 5, + anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [172019] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, anon_sym_and, + ACTIONS(6163), 1, anon_sym_or, - [167891] = 9, - ACTIONS(6591), 1, + ACTIONS(6765), 1, + anon_sym_COMMA, + STATE(4371), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6905), 2, + sym__newline, + anon_sym_SEMI, + [172046] = 7, + ACTIONS(2733), 1, + anon_sym_except, + ACTIONS(2765), 1, + anon_sym_except_STAR, + ACTIONS(6907), 1, + anon_sym_finally, + STATE(1514), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(830), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(835), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [172071] = 9, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(6909), 1, + anon_sym_LPAREN, + ACTIONS(6911), 1, + anon_sym_COLON, + ACTIONS(6913), 1, + anon_sym_LBRACK, + ACTIONS(6915), 1, + sym__newline, + STATE(1083), 1, + sym_external_definition, + STATE(3384), 1, + aux_sym_class_definition_repeat2, + STATE(5044), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [172100] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6721), 1, + ACTIONS(6548), 1, anon_sym_COMMA, - ACTIONS(6723), 1, - anon_sym_COLON, - ACTIONS(6725), 1, - anon_sym_RBRACK, - STATE(5100), 1, - aux_sym_subscript_repeat1, + STATE(4606), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167920] = 9, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, + ACTIONS(6544), 2, + sym__newline, + anon_sym_SEMI, + [172127] = 9, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(6858), 1, anon_sym_LBRACK, - ACTIONS(6727), 1, - sym_identifier, - ACTIONS(6729), 1, - sym_string_start, - STATE(714), 1, - sym_c_function_definition, - STATE(3927), 1, - sym_c_parameters, - STATE(4225), 1, - sym_string, - STATE(5274), 1, - sym_template_params, + ACTIONS(6917), 1, + anon_sym_LPAREN, + ACTIONS(6919), 1, + anon_sym_COLON, + ACTIONS(6921), 1, + sym__newline, + STATE(2936), 1, + sym_external_definition, + STATE(3950), 1, + aux_sym_class_definition_repeat2, + STATE(5102), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167949] = 5, - ACTIONS(6294), 1, + [172156] = 4, + ACTIONS(4656), 1, anon_sym_as, - ACTIONS(6302), 1, + ACTIONS(6443), 1, anon_sym_and, - ACTIONS(6304), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6731), 5, - anon_sym_RPAREN, + ACTIONS(4654), 6, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [167970] = 6, - ACTIONS(6319), 1, - anon_sym_as, - ACTIONS(6321), 1, - anon_sym_if, - ACTIONS(6327), 1, - anon_sym_and, - ACTIONS(6329), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4493), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, anon_sym_RBRACK, - [167993] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, anon_sym_or, - ACTIONS(6078), 1, + [172175] = 6, + ACTIONS(6923), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6925), 1, anon_sym_if, + ACTIONS(6927), 1, + anon_sym_and, + ACTIONS(6929), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4766), 4, - sym__newline, + ACTIONS(6546), 4, + anon_sym_DOT, anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [168016] = 8, - ACTIONS(6063), 1, + anon_sym_EQ, + anon_sym_PIPE, + [172198] = 5, + ACTIONS(6412), 1, + anon_sym_as, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6422), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6681), 1, - anon_sym_COMMA, - STATE(4464), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6536), 2, - sym__newline, - anon_sym_SEMI, - [168043] = 9, - ACTIONS(6591), 1, + ACTIONS(6797), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [172219] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6723), 1, - anon_sym_COLON, - ACTIONS(6733), 1, + ACTIONS(6933), 1, anon_sym_COMMA, - ACTIONS(6735), 1, - anon_sym_RBRACK, - STATE(4769), 1, - aux_sym_subscript_repeat1, + STATE(4666), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168072] = 2, + ACTIONS(6931), 2, + sym__newline, + anon_sym_SEMI, + [172246] = 7, + ACTIONS(2791), 1, + anon_sym_except, + ACTIONS(2795), 1, + anon_sym_except_STAR, + ACTIONS(6935), 1, + anon_sym_finally, + STATE(1769), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4554), 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, - [168087] = 9, - ACTIONS(6591), 1, + STATE(825), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(826), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [172271] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6723), 1, - anon_sym_COLON, - ACTIONS(6737), 1, + ACTIONS(6939), 1, anon_sym_COMMA, - ACTIONS(6739), 1, - anon_sym_RBRACK, - STATE(4906), 1, - aux_sym_subscript_repeat1, + STATE(4594), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168116] = 9, - ACTIONS(3701), 1, + ACTIONS(6937), 2, + sym__newline, + anon_sym_SEMI, + [172298] = 9, + ACTIONS(3797), 1, anon_sym_DOT, - ACTIONS(6741), 1, + ACTIONS(6858), 1, + anon_sym_LBRACK, + ACTIONS(6941), 1, anon_sym_LPAREN, - ACTIONS(6743), 1, + ACTIONS(6943), 1, anon_sym_COLON, - ACTIONS(6745), 1, - anon_sym_LBRACK, - ACTIONS(6747), 1, + ACTIONS(6945), 1, sym__newline, - STATE(496), 1, + STATE(2981), 1, sym_external_definition, - STATE(3930), 1, + STATE(4032), 1, aux_sym_class_definition_repeat2, - STATE(5019), 1, + STATE(5095), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168145] = 4, - ACTIONS(1247), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2151), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6749), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [168164] = 6, - ACTIONS(6319), 1, + [172327] = 9, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6321), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6327), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6329), 1, + ACTIONS(6712), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4497), 4, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6947), 1, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, + ACTIONS(6949), 1, anon_sym_RBRACK, - [168187] = 5, - ACTIONS(6751), 1, - anon_sym_DOT, - ACTIONS(6753), 1, - anon_sym_EQ, - STATE(3991), 1, - aux_sym_class_definition_repeat2, + STATE(4914), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6524), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + [172356] = 9, + ACTIONS(6706), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [168208] = 7, - ACTIONS(2695), 1, - anon_sym_except_STAR, - ACTIONS(2765), 1, - anon_sym_except, - ACTIONS(6755), 1, - anon_sym_finally, - STATE(1527), 1, - sym_finally_clause, + ACTIONS(6708), 1, + anon_sym_if, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6951), 1, + anon_sym_COMMA, + ACTIONS(6953), 1, + anon_sym_RBRACK, + STATE(4984), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(796), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(803), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [168233] = 7, - ACTIONS(2749), 1, - anon_sym_except_STAR, - ACTIONS(2791), 1, - anon_sym_except, - ACTIONS(6757), 1, - anon_sym_finally, - STATE(1541), 1, - sym_finally_clause, + [172385] = 5, + ACTIONS(6346), 1, + anon_sym_as, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(801), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(839), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [168258] = 6, + ACTIONS(6797), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [172406] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6763), 1, + ACTIONS(6959), 1, anon_sym_BSLASH, - ACTIONS(6759), 2, + ACTIONS(6955), 2, sym_string_end, anon_sym_LBRACE, - STATE(3881), 2, + STATE(3961), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6761), 3, + ACTIONS(6957), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - [168281] = 5, - ACTIONS(6173), 1, + [172429] = 9, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6185), 1, - anon_sym_and, - ACTIONS(6187), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6731), 5, - anon_sym_COMMA, + ACTIONS(6708), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [168302] = 8, - ACTIONS(6063), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6712), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6767), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(6961), 1, anon_sym_COMMA, - STATE(4492), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(6963), 1, + anon_sym_RBRACK, + STATE(5225), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6765), 2, + [172458] = 9, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(6913), 1, + anon_sym_LBRACK, + ACTIONS(6965), 1, + anon_sym_LPAREN, + ACTIONS(6967), 1, + anon_sym_COLON, + ACTIONS(6969), 1, sym__newline, - anon_sym_SEMI, - [168329] = 2, + STATE(1147), 1, + sym_external_definition, + STATE(4005), 1, + aux_sym_class_definition_repeat2, + STATE(4857), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [172487] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4450), 8, + ACTIONS(4561), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -259685,47 +265511,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [168344] = 9, - ACTIONS(6591), 1, + [172502] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4569), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(6593), 1, anon_sym_if, - ACTIONS(6595), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(6597), 1, anon_sym_or, - ACTIONS(6723), 1, + [172517] = 9, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(6850), 1, + anon_sym_LBRACK, + ACTIONS(6971), 1, + anon_sym_LPAREN, + ACTIONS(6973), 1, anon_sym_COLON, - ACTIONS(6769), 1, + ACTIONS(6975), 1, + sym__newline, + STATE(510), 1, + sym_external_definition, + STATE(4043), 1, + aux_sym_class_definition_repeat2, + STATE(5061), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [172546] = 9, + ACTIONS(6634), 1, + anon_sym_as, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(6820), 1, anon_sym_COMMA, - ACTIONS(6771), 1, - anon_sym_RBRACK, - STATE(4827), 1, - aux_sym_subscript_repeat1, + ACTIONS(6977), 1, + anon_sym_COLON, + ACTIONS(6979), 1, + anon_sym_by, + STATE(4567), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168373] = 5, - ACTIONS(6173), 1, + [172575] = 6, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6185), 1, + ACTIONS(6414), 1, + anon_sym_if, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6187), 1, + ACTIONS(6422), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6731), 5, + ACTIONS(4662), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [168394] = 2, + [172598] = 9, + ACTIONS(6677), 1, + anon_sym_LPAREN, + ACTIONS(6683), 1, + anon_sym_LBRACK, + ACTIONS(6842), 1, + sym_string_start, + ACTIONS(6981), 1, + sym_identifier, + STATE(2935), 1, + sym_c_function_definition, + STATE(4016), 1, + sym_c_parameters, + STATE(4237), 1, + sym_string, + STATE(5287), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [172627] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4535), 8, + ACTIONS(4601), 8, anon_sym_DOT, anon_sym_as, anon_sym_if, @@ -259734,24044 +265614,23701 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [168409] = 7, - ACTIONS(2695), 1, - anon_sym_except_STAR, - ACTIONS(2765), 1, - anon_sym_except, - ACTIONS(6755), 1, - anon_sym_finally, - STATE(1529), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(821), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(836), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [168434] = 2, + [172642] = 6, + ACTIONS(6923), 1, + anon_sym_as, + ACTIONS(6925), 1, + anon_sym_if, + ACTIONS(6927), 1, + anon_sym_and, + ACTIONS(6929), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4539), 8, + ACTIONS(4627), 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, - [168449] = 9, - ACTIONS(6591), 1, + [172665] = 9, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(6723), 1, - anon_sym_COLON, - ACTIONS(6773), 1, + ACTIONS(6820), 1, anon_sym_COMMA, - ACTIONS(6775), 1, - anon_sym_RBRACK, - STATE(4860), 1, - aux_sym_subscript_repeat1, + ACTIONS(6983), 1, + anon_sym_COLON, + ACTIONS(6985), 1, + anon_sym_by, + STATE(4567), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168478] = 6, - ACTIONS(6063), 1, + [172694] = 5, + ACTIONS(6927), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6929), 1, anon_sym_or, - ACTIONS(6078), 1, + ACTIONS(6987), 1, anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3790), 4, - sym__newline, + ACTIONS(4643), 5, + anon_sym_DOT, + anon_sym_if, anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [168501] = 8, - ACTIONS(6063), 1, + anon_sym_EQ, + anon_sym_PIPE, + [172715] = 4, + ACTIONS(6927), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6929), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6681), 1, - anon_sym_COMMA, - STATE(4464), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5763), 2, - sym__newline, - anon_sym_SEMI, - [168528] = 6, - ACTIONS(6777), 1, + ACTIONS(4650), 6, + anon_sym_DOT, anon_sym_as, - ACTIONS(6779), 1, anon_sym_if, - ACTIONS(6781), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [172734] = 3, + ACTIONS(6927), 1, anon_sym_and, - ACTIONS(6783), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6484), 4, + ACTIONS(4654), 7, anon_sym_DOT, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [168551] = 6, - ACTIONS(6294), 1, + anon_sym_or, + [172751] = 6, + ACTIONS(6435), 1, anon_sym_as, - ACTIONS(6296), 1, + ACTIONS(6437), 1, anon_sym_if, - ACTIONS(6302), 1, + ACTIONS(6443), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6445), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4462), 4, - anon_sym_RPAREN, + ACTIONS(4662), 4, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [168574] = 6, - ACTIONS(6173), 1, + anon_sym_RBRACK, + [172774] = 6, + ACTIONS(6923), 1, anon_sym_as, - ACTIONS(6175), 1, + ACTIONS(6925), 1, anon_sym_if, - ACTIONS(6185), 1, + ACTIONS(6927), 1, anon_sym_and, - ACTIONS(6187), 1, + ACTIONS(6929), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6785), 4, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [168597] = 9, - ACTIONS(6591), 1, + ACTIONS(4658), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [172797] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6723), 1, - anon_sym_COLON, - ACTIONS(6787), 1, + ACTIONS(6939), 1, anon_sym_COMMA, - ACTIONS(6789), 1, - anon_sym_RBRACK, - STATE(4891), 1, - aux_sym_subscript_repeat1, + STATE(4712), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168626] = 9, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(6791), 1, - anon_sym_LPAREN, - ACTIONS(6793), 1, - anon_sym_COLON, - ACTIONS(6795), 1, - anon_sym_LBRACK, - ACTIONS(6797), 1, + ACTIONS(6990), 2, sym__newline, - STATE(1066), 1, - sym_external_definition, - STATE(3968), 1, - aux_sym_class_definition_repeat2, - STATE(5105), 1, - sym_argument_list, + anon_sym_SEMI, + [172824] = 6, + ACTIONS(6923), 1, + anon_sym_as, + ACTIONS(6925), 1, + anon_sym_if, + ACTIONS(6927), 1, + anon_sym_and, + ACTIONS(6929), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168655] = 9, - ACTIONS(3701), 1, + ACTIONS(4662), 4, anon_sym_DOT, - ACTIONS(6799), 1, - anon_sym_LPAREN, - ACTIONS(6801), 1, anon_sym_COLON, - ACTIONS(6803), 1, + anon_sym_EQ, + anon_sym_PIPE, + [172847] = 9, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(6913), 1, anon_sym_LBRACK, - ACTIONS(6805), 1, + ACTIONS(6992), 1, + anon_sym_LPAREN, + ACTIONS(6994), 1, + anon_sym_COLON, + ACTIONS(6996), 1, sym__newline, - STATE(2842), 1, + STATE(1193), 1, sym_external_definition, - STATE(3920), 1, + STATE(3384), 1, aux_sym_class_definition_repeat2, - STATE(5046), 1, + STATE(4854), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168684] = 4, - ACTIONS(6553), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2736), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5644), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [168703] = 7, - ACTIONS(4905), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - sym_identifier, - STATE(5003), 1, - sym_type_index, - STATE(5566), 1, - sym_type_qualifier, + [172876] = 5, + ACTIONS(6998), 1, + anon_sym_DOT, + ACTIONS(7000), 1, + anon_sym_EQ, + STATE(4165), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4901), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4903), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [168728] = 9, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_LBRACK, - ACTIONS(6807), 1, + ACTIONS(6632), 5, anon_sym_LPAREN, - ACTIONS(6809), 1, - anon_sym_COLON, - ACTIONS(6811), 1, - sym__newline, - STATE(2898), 1, - sym_external_definition, - STATE(3255), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [172897] = 5, + ACTIONS(5959), 1, + anon_sym_DOT, + ACTIONS(7002), 1, + anon_sym_EQ, + STATE(4048), 1, aux_sym_class_definition_repeat2, - STATE(5053), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168757] = 9, - ACTIONS(6591), 1, + ACTIONS(6632), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [172918] = 9, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(6723), 1, - anon_sym_COLON, - ACTIONS(6813), 1, + ACTIONS(6820), 1, anon_sym_COMMA, - ACTIONS(6815), 1, - anon_sym_RBRACK, - STATE(4917), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168786] = 9, - ACTIONS(6711), 1, - anon_sym_except, - ACTIONS(6713), 1, - anon_sym_with, - ACTIONS(6715), 1, - anon_sym_nogil, - ACTIONS(6717), 1, - anon_sym_noexcept, - ACTIONS(6817), 1, - anon_sym_COLON, - ACTIONS(6819), 1, - sym__newline, - STATE(3953), 1, - sym_gil_spec, - STATE(4428), 1, - sym_exception_value, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168815] = 9, - ACTIONS(6711), 1, - anon_sym_except, - ACTIONS(6717), 1, - anon_sym_noexcept, - ACTIONS(6817), 1, + ACTIONS(7004), 1, anon_sym_COLON, - ACTIONS(6819), 1, - sym__newline, - ACTIONS(6821), 1, - anon_sym_with, - ACTIONS(6823), 1, - anon_sym_nogil, - STATE(4428), 1, - sym_exception_value, - STATE(5243), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168844] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6486), 1, - anon_sym_COMMA, - STATE(4587), 1, + ACTIONS(7006), 1, + anon_sym_by, + STATE(4567), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6482), 2, - sym__newline, - anon_sym_SEMI, - [168871] = 5, - ACTIONS(6294), 1, + [172947] = 6, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6302), 1, + ACTIONS(6414), 1, + anon_sym_if, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6422), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6731), 5, + ACTIONS(4627), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - [168892] = 9, - ACTIONS(6591), 1, - anon_sym_as, - ACTIONS(6593), 1, - anon_sym_if, - ACTIONS(6595), 1, - anon_sym_and, - ACTIONS(6597), 1, - anon_sym_or, - ACTIONS(6723), 1, + [172970] = 9, + ACTIONS(6801), 1, + anon_sym_except, + ACTIONS(6807), 1, + anon_sym_noexcept, + ACTIONS(6811), 1, + anon_sym_with, + ACTIONS(6813), 1, + anon_sym_nogil, + ACTIONS(7008), 1, anon_sym_COLON, - ACTIONS(6825), 1, - anon_sym_COMMA, - ACTIONS(6827), 1, - anon_sym_RBRACK, - STATE(4934), 1, - aux_sym_subscript_repeat1, + ACTIONS(7010), 1, + sym__newline, + STATE(4455), 1, + sym_exception_value, + STATE(5430), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168921] = 9, - ACTIONS(6711), 1, + [172999] = 9, + ACTIONS(6801), 1, anon_sym_except, - ACTIONS(6713), 1, + ACTIONS(6807), 1, + anon_sym_noexcept, + ACTIONS(6811), 1, anon_sym_with, - ACTIONS(6715), 1, + ACTIONS(6813), 1, anon_sym_nogil, - ACTIONS(6717), 1, - anon_sym_noexcept, - ACTIONS(6829), 1, + ACTIONS(7012), 1, anon_sym_COLON, - ACTIONS(6831), 1, + ACTIONS(7014), 1, sym__newline, - STATE(3942), 1, - sym_gil_spec, - STATE(4409), 1, + STATE(4450), 1, sym_exception_value, + STATE(5284), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [168950] = 9, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - sym_string_start, - ACTIONS(6833), 1, - sym_identifier, - STATE(517), 1, - sym_c_function_definition, - STATE(3927), 1, - sym_c_parameters, - STATE(4255), 1, - sym_string, - STATE(5274), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [168979] = 9, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - sym_string_start, - ACTIONS(6835), 1, - sym_identifier, - STATE(2838), 1, - sym_c_function_definition, - STATE(3883), 1, - sym_c_parameters, - STATE(4240), 1, - sym_string, - STATE(5223), 1, - sym_template_params, + [173028] = 7, + ACTIONS(2733), 1, + anon_sym_except, + ACTIONS(2765), 1, + anon_sym_except_STAR, + ACTIONS(6907), 1, + anon_sym_finally, + STATE(1486), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169008] = 9, - ACTIONS(3701), 1, + STATE(813), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(820), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [173053] = 9, + ACTIONS(3797), 1, anon_sym_DOT, - ACTIONS(6745), 1, + ACTIONS(6913), 1, anon_sym_LBRACK, - ACTIONS(6837), 1, + ACTIONS(7016), 1, anon_sym_LPAREN, - ACTIONS(6839), 1, + ACTIONS(7018), 1, anon_sym_COLON, - ACTIONS(6841), 1, + ACTIONS(7020), 1, sym__newline, - STATE(499), 1, + STATE(1098), 1, sym_external_definition, - STATE(3255), 1, + STATE(3973), 1, aux_sym_class_definition_repeat2, - STATE(5024), 1, + STATE(4805), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169037] = 9, - ACTIONS(6591), 1, - anon_sym_as, - ACTIONS(6593), 1, - anon_sym_if, - ACTIONS(6595), 1, - anon_sym_and, - ACTIONS(6597), 1, - anon_sym_or, - ACTIONS(6723), 1, - anon_sym_COLON, - ACTIONS(6843), 1, - anon_sym_COMMA, - ACTIONS(6845), 1, - anon_sym_RBRACK, - STATE(4952), 1, - aux_sym_subscript_repeat1, + [173082] = 4, + ACTIONS(6767), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169066] = 9, - ACTIONS(6591), 1, + STATE(2789), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(5744), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [173101] = 5, + ACTIONS(6435), 1, anon_sym_as, - ACTIONS(6593), 1, - anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6443), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6445), 1, anon_sym_or, - ACTIONS(6723), 1, - anon_sym_COLON, - ACTIONS(6847), 1, - anon_sym_COMMA, - ACTIONS(6849), 1, - anon_sym_RBRACK, - STATE(5077), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169095] = 9, - ACTIONS(3701), 1, - anon_sym_DOT, + ACTIONS(6797), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [173122] = 9, + ACTIONS(6801), 1, + anon_sym_except, ACTIONS(6803), 1, - anon_sym_LBRACK, - ACTIONS(6851), 1, - anon_sym_LPAREN, - ACTIONS(6853), 1, + anon_sym_with, + ACTIONS(6805), 1, + anon_sym_nogil, + ACTIONS(6807), 1, + anon_sym_noexcept, + ACTIONS(7022), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7024), 1, sym__newline, - STATE(2848), 1, - sym_external_definition, - STATE(3947), 1, - aux_sym_class_definition_repeat2, - STATE(5055), 1, - sym_argument_list, + STATE(4029), 1, + sym_gil_spec, + STATE(4531), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169124] = 5, - ACTIONS(6302), 1, + [173151] = 5, + ACTIONS(6412), 1, + anon_sym_as, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6422), 1, anon_sym_or, - ACTIONS(6857), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 5, + ACTIONS(6797), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [169145] = 5, - ACTIONS(4487), 1, + [173172] = 5, + ACTIONS(6412), 1, anon_sym_as, - ACTIONS(6302), 1, + ACTIONS(6420), 1, anon_sym_and, - ACTIONS(6304), 1, + ACTIONS(6422), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4485), 5, + ACTIONS(6797), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [169166] = 9, - ACTIONS(6591), 1, + [173193] = 6, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6723), 1, - anon_sym_COLON, - ACTIONS(6860), 1, - anon_sym_COMMA, - ACTIONS(6862), 1, - anon_sym_RBRACK, - STATE(4966), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169195] = 9, - ACTIONS(6591), 1, - anon_sym_as, - ACTIONS(6593), 1, - anon_sym_if, - ACTIONS(6595), 1, - anon_sym_and, - ACTIONS(6597), 1, - anon_sym_or, - ACTIONS(6723), 1, + ACTIONS(3894), 4, + sym__newline, anon_sym_COLON, - ACTIONS(6864), 1, - anon_sym_COMMA, - ACTIONS(6866), 1, - anon_sym_RBRACK, - STATE(4975), 1, - aux_sym_subscript_repeat1, + anon_sym_with, + anon_sym_nogil, + [173216] = 7, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(6656), 1, + sym_identifier, + STATE(5050), 1, + sym_type_index, + STATE(5824), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169224] = 6, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6296), 1, - anon_sym_if, - ACTIONS(6302), 1, - anon_sym_and, - ACTIONS(6304), 1, - anon_sym_or, + ACTIONS(4988), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4990), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [173241] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4497), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [169247] = 4, - ACTIONS(4491), 1, + ACTIONS(4573), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(6302), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4489), 6, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, anon_sym_or, - [169266] = 5, - ACTIONS(6319), 1, + [173256] = 9, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6327), 1, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6329), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6731), 5, + ACTIONS(6820), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [169287] = 9, - ACTIONS(6711), 1, - anon_sym_except, - ACTIONS(6713), 1, - anon_sym_with, - ACTIONS(6715), 1, - anon_sym_nogil, - ACTIONS(6717), 1, - anon_sym_noexcept, - ACTIONS(6868), 1, + ACTIONS(7026), 1, anon_sym_COLON, - ACTIONS(6870), 1, - sym__newline, - STATE(3952), 1, - sym_gil_spec, - STATE(4427), 1, - sym_exception_value, + ACTIONS(7028), 1, + anon_sym_by, + STATE(4567), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169316] = 9, - ACTIONS(6711), 1, + [173285] = 9, + ACTIONS(6801), 1, anon_sym_except, - ACTIONS(6717), 1, + ACTIONS(6807), 1, anon_sym_noexcept, - ACTIONS(6821), 1, + ACTIONS(6811), 1, anon_sym_with, - ACTIONS(6823), 1, + ACTIONS(6813), 1, anon_sym_nogil, - ACTIONS(6868), 1, + ACTIONS(7030), 1, anon_sym_COLON, - ACTIONS(6870), 1, + ACTIONS(7032), 1, sym__newline, - STATE(4427), 1, + STATE(4383), 1, sym_exception_value, - STATE(5345), 1, + STATE(5434), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169345] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [173314] = 9, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6708), 1, anon_sym_if, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7034), 1, + anon_sym_COMMA, + ACTIONS(7036), 1, + anon_sym_RBRACK, + STATE(5003), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6689), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - [169368] = 5, - ACTIONS(4247), 1, - anon_sym_DOT, - ACTIONS(6872), 1, - anon_sym_EQ, - STATE(4133), 1, - aux_sym_class_definition_repeat2, + [173343] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6524), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4605), 8, + anon_sym_DOT, anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [169389] = 9, - ACTIONS(6565), 1, + anon_sym_and, + anon_sym_or, + [173358] = 9, + ACTIONS(6677), 1, anon_sym_LPAREN, - ACTIONS(6571), 1, + ACTIONS(6683), 1, anon_sym_LBRACK, - ACTIONS(6729), 1, + ACTIONS(6842), 1, sym_string_start, - ACTIONS(6874), 1, + ACTIONS(7038), 1, sym_identifier, - STATE(2926), 1, + STATE(536), 1, sym_c_function_definition, - STATE(3883), 1, + STATE(4033), 1, sym_c_parameters, - STATE(4249), 1, + STATE(4244), 1, sym_string, - STATE(5223), 1, + STATE(5334), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169418] = 4, - ACTIONS(6549), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2736), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5644), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [169437] = 9, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_LBRACK, - ACTIONS(6876), 1, + [173387] = 9, + ACTIONS(6677), 1, anon_sym_LPAREN, - ACTIONS(6878), 1, - anon_sym_COLON, - ACTIONS(6880), 1, - sym__newline, - STATE(2881), 1, - sym_external_definition, - STATE(3255), 1, - aux_sym_class_definition_repeat2, - STATE(5058), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169466] = 9, - ACTIONS(6711), 1, - anon_sym_except, - ACTIONS(6713), 1, - anon_sym_with, - ACTIONS(6715), 1, - anon_sym_nogil, - ACTIONS(6717), 1, - anon_sym_noexcept, - ACTIONS(6882), 1, - anon_sym_COLON, - ACTIONS(6884), 1, - sym__newline, - STATE(3967), 1, - sym_gil_spec, - STATE(4390), 1, - sym_exception_value, + ACTIONS(6683), 1, + anon_sym_LBRACK, + ACTIONS(6842), 1, + sym_string_start, + ACTIONS(7040), 1, + sym_identifier, + STATE(1367), 1, + sym_c_function_definition, + STATE(3968), 1, + sym_c_parameters, + STATE(4229), 1, + sym_string, + STATE(5330), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169495] = 9, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(6745), 1, - anon_sym_LBRACK, - ACTIONS(6886), 1, - anon_sym_LPAREN, - ACTIONS(6888), 1, - anon_sym_COLON, - ACTIONS(6890), 1, - sym__newline, - STATE(493), 1, - sym_external_definition, - STATE(3964), 1, - aux_sym_class_definition_repeat2, - STATE(5002), 1, - sym_argument_list, + [173416] = 6, + ACTIONS(6435), 1, + anon_sym_as, + ACTIONS(6437), 1, + anon_sym_if, + ACTIONS(6443), 1, + anon_sym_and, + ACTIONS(6445), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169524] = 9, - ACTIONS(6711), 1, + ACTIONS(4658), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [173439] = 9, + ACTIONS(6801), 1, anon_sym_except, - ACTIONS(6717), 1, + ACTIONS(6807), 1, anon_sym_noexcept, - ACTIONS(6821), 1, + ACTIONS(6811), 1, anon_sym_with, - ACTIONS(6823), 1, + ACTIONS(6813), 1, anon_sym_nogil, - ACTIONS(6882), 1, + ACTIONS(7042), 1, anon_sym_COLON, - ACTIONS(6884), 1, + ACTIONS(7044), 1, sym__newline, - STATE(4390), 1, + STATE(4397), 1, sym_exception_value, - STATE(5211), 1, + STATE(5243), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169553] = 9, - ACTIONS(6711), 1, + [173468] = 9, + ACTIONS(6801), 1, anon_sym_except, - ACTIONS(6713), 1, + ACTIONS(6803), 1, anon_sym_with, - ACTIONS(6715), 1, + ACTIONS(6805), 1, anon_sym_nogil, - ACTIONS(6717), 1, - anon_sym_noexcept, - ACTIONS(6892), 1, - anon_sym_COLON, - ACTIONS(6894), 1, - sym__newline, - STATE(3950), 1, - sym_gil_spec, - STATE(4395), 1, - sym_exception_value, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169582] = 9, - ACTIONS(6711), 1, - anon_sym_except, - ACTIONS(6717), 1, + ACTIONS(6807), 1, anon_sym_noexcept, - ACTIONS(6821), 1, - anon_sym_with, - ACTIONS(6823), 1, - anon_sym_nogil, - ACTIONS(6896), 1, + ACTIONS(7042), 1, anon_sym_COLON, - ACTIONS(6898), 1, + ACTIONS(7044), 1, sym__newline, - STATE(4445), 1, - sym_exception_value, - STATE(5385), 1, + STATE(4010), 1, sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169611] = 9, - ACTIONS(6711), 1, - anon_sym_except, - ACTIONS(6717), 1, - anon_sym_noexcept, - ACTIONS(6821), 1, - anon_sym_with, - ACTIONS(6823), 1, - anon_sym_nogil, - ACTIONS(6900), 1, - anon_sym_COLON, - ACTIONS(6902), 1, - sym__newline, - STATE(4296), 1, + STATE(4397), 1, sym_exception_value, - STATE(5365), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169640] = 9, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - sym_string_start, - ACTIONS(6904), 1, - sym_identifier, - STATE(1321), 1, - sym_c_function_definition, - STATE(3951), 1, - sym_c_parameters, - STATE(4241), 1, - sym_string, - STATE(5184), 1, - sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169669] = 9, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - sym_string_start, - ACTIONS(6906), 1, - sym_identifier, - STATE(1379), 1, - sym_c_function_definition, - STATE(3951), 1, - sym_c_parameters, - STATE(4261), 1, - sym_string, - STATE(5184), 1, - sym_template_params, + [173497] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169698] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + ACTIONS(4565), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(6080), 1, anon_sym_if, - ACTIONS(6910), 1, - anon_sym_COMMA, - STATE(4564), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6908), 2, - sym__newline, - anon_sym_SEMI, - [169725] = 8, - ACTIONS(6063), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(6065), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6767), 1, - anon_sym_COMMA, - STATE(4574), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6912), 2, - sym__newline, - anon_sym_SEMI, - [169752] = 9, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(6795), 1, - anon_sym_LBRACK, - ACTIONS(6914), 1, - anon_sym_LPAREN, - ACTIONS(6916), 1, - anon_sym_COLON, - ACTIONS(6918), 1, - sym__newline, - STATE(1103), 1, - sym_external_definition, - STATE(3255), 1, - aux_sym_class_definition_repeat2, - STATE(4924), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169781] = 9, - ACTIONS(3701), 1, + [173512] = 9, + ACTIONS(3797), 1, anon_sym_DOT, - ACTIONS(6795), 1, + ACTIONS(6858), 1, anon_sym_LBRACK, - ACTIONS(6920), 1, + ACTIONS(7046), 1, anon_sym_LPAREN, - ACTIONS(6922), 1, + ACTIONS(7048), 1, anon_sym_COLON, - ACTIONS(6924), 1, + ACTIONS(7050), 1, sym__newline, - STATE(1107), 1, + STATE(2934), 1, sym_external_definition, - STATE(3958), 1, + STATE(3384), 1, aux_sym_class_definition_repeat2, - STATE(4653), 1, + STATE(5100), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [169810] = 5, - ACTIONS(6319), 1, - anon_sym_as, - ACTIONS(6327), 1, - anon_sym_and, - ACTIONS(6329), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6731), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [169831] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6681), 1, - anon_sym_COMMA, - STATE(4464), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6926), 2, - sym__newline, - anon_sym_SEMI, - [169858] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6681), 1, - anon_sym_COMMA, - STATE(4464), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6928), 2, - sym__newline, - anon_sym_SEMI, - [169885] = 7, - ACTIONS(2749), 1, - anon_sym_except_STAR, - ACTIONS(2791), 1, + [173541] = 9, + ACTIONS(6801), 1, anon_sym_except, - ACTIONS(6757), 1, - anon_sym_finally, - STATE(1515), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(804), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(824), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [169910] = 9, - ACTIONS(3701), 1, - anon_sym_DOT, - ACTIONS(6745), 1, - anon_sym_LBRACK, - ACTIONS(6930), 1, - anon_sym_LPAREN, - ACTIONS(6932), 1, + ACTIONS(6803), 1, + anon_sym_with, + ACTIONS(6805), 1, + anon_sym_nogil, + ACTIONS(6807), 1, + anon_sym_noexcept, + ACTIONS(7052), 1, anon_sym_COLON, - ACTIONS(6934), 1, + ACTIONS(7054), 1, sym__newline, - STATE(501), 1, - sym_external_definition, - STATE(3255), 1, - aux_sym_class_definition_repeat2, - STATE(5015), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169939] = 5, - ACTIONS(6173), 1, - anon_sym_as, - ACTIONS(6185), 1, - anon_sym_and, - ACTIONS(6187), 1, - anon_sym_or, + STATE(3937), 1, + sym_gil_spec, + STATE(4423), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6731), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [169960] = 5, - ACTIONS(5829), 1, - anon_sym_DOT, - ACTIONS(6936), 1, - anon_sym_EQ, - STATE(4090), 1, - aux_sym_class_definition_repeat2, + [173570] = 9, + ACTIONS(6677), 1, + anon_sym_LPAREN, + ACTIONS(6683), 1, + anon_sym_LBRACK, + ACTIONS(6842), 1, + sym_string_start, + ACTIONS(7056), 1, + sym_identifier, + STATE(529), 1, + sym_c_function_definition, + STATE(4033), 1, + sym_c_parameters, + STATE(4352), 1, + sym_string, + STATE(5334), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6524), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [169981] = 9, - ACTIONS(6711), 1, - anon_sym_except, - ACTIONS(6717), 1, - anon_sym_noexcept, - ACTIONS(6821), 1, - anon_sym_with, - ACTIONS(6823), 1, - anon_sym_nogil, - ACTIONS(6938), 1, - anon_sym_COLON, - ACTIONS(6940), 1, - sym__newline, - STATE(4399), 1, - sym_exception_value, - STATE(5194), 1, - sym_gil_spec, + [173599] = 4, + ACTIONS(6671), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170010] = 9, - ACTIONS(3701), 1, + STATE(2789), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(5744), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [173618] = 9, + ACTIONS(3797), 1, anon_sym_DOT, - ACTIONS(6795), 1, + ACTIONS(6850), 1, anon_sym_LBRACK, - ACTIONS(6942), 1, + ACTIONS(7058), 1, anon_sym_LPAREN, - ACTIONS(6944), 1, + ACTIONS(7060), 1, anon_sym_COLON, - ACTIONS(6946), 1, + ACTIONS(7062), 1, sym__newline, - STATE(1138), 1, + STATE(509), 1, sym_external_definition, - STATE(3255), 1, + STATE(3384), 1, aux_sym_class_definition_repeat2, - STATE(4680), 1, + STATE(5059), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170039] = 6, - ACTIONS(6777), 1, + [173647] = 9, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6779), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6781), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6783), 1, + ACTIONS(6712), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4462), 4, - anon_sym_DOT, + ACTIONS(6832), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [170062] = 5, - ACTIONS(6781), 1, - anon_sym_and, - ACTIONS(6783), 1, - anon_sym_or, - ACTIONS(6948), 1, - anon_sym_as, + ACTIONS(7064), 1, + anon_sym_COMMA, + ACTIONS(7066), 1, + anon_sym_RBRACK, + STATE(5016), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 5, - anon_sym_DOT, + [173676] = 9, + ACTIONS(6634), 1, + anon_sym_as, + ACTIONS(6636), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [170083] = 4, - ACTIONS(6781), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6783), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4485), 6, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(6820), 1, + anon_sym_COMMA, + ACTIONS(7068), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [170102] = 3, - ACTIONS(6781), 1, - anon_sym_and, + ACTIONS(7070), 1, + anon_sym_by, + STATE(4567), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4489), 7, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_or, - [170119] = 6, - ACTIONS(6777), 1, - anon_sym_as, - ACTIONS(6779), 1, - anon_sym_if, - ACTIONS(6781), 1, - anon_sym_and, - ACTIONS(6783), 1, - anon_sym_or, + [173705] = 7, + ACTIONS(2791), 1, + anon_sym_except, + ACTIONS(2795), 1, + anon_sym_except_STAR, + ACTIONS(6935), 1, + anon_sym_finally, + STATE(1563), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4493), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [170142] = 6, - ACTIONS(6777), 1, + STATE(846), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(851), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [173730] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6779), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6781), 1, - anon_sym_and, - ACTIONS(6783), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4497), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [170165] = 5, - ACTIONS(6319), 1, - anon_sym_as, - ACTIONS(6327), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6329), 1, + ACTIONS(6163), 1, anon_sym_or, + ACTIONS(6765), 1, + anon_sym_COMMA, + STATE(4371), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6731), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [170186] = 6, - ACTIONS(6500), 1, + ACTIONS(5858), 2, + sym__newline, + anon_sym_SEMI, + [173757] = 6, + ACTIONS(6618), 1, anon_sym_as, - ACTIONS(6502), 1, + ACTIONS(6620), 1, anon_sym_if, - ACTIONS(6506), 1, + ACTIONS(6624), 1, anon_sym_and, - ACTIONS(6508), 1, + ACTIONS(6626), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6951), 4, + ACTIONS(7072), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [170209] = 5, - ACTIONS(6327), 1, - anon_sym_and, - ACTIONS(6329), 1, - anon_sym_or, - ACTIONS(6953), 1, + [173780] = 9, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4478), 5, - anon_sym_COMMA, + ACTIONS(6708), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [170230] = 5, - ACTIONS(4487), 1, - anon_sym_as, - ACTIONS(6327), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6329), 1, + ACTIONS(6712), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4485), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [170251] = 4, - ACTIONS(4491), 1, - anon_sym_as, - ACTIONS(6327), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4489), 6, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(7074), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(7076), 1, anon_sym_RBRACK, - anon_sym_or, - [170270] = 5, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6302), 1, - anon_sym_and, - ACTIONS(6304), 1, - anon_sym_or, + STATE(4883), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6731), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [170291] = 7, - ACTIONS(3718), 1, + [173809] = 9, + ACTIONS(3797), 1, + anon_sym_DOT, + ACTIONS(6850), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(6488), 1, - anon_sym_EQ, - ACTIONS(6490), 1, + ACTIONS(7078), 1, + anon_sym_LPAREN, + ACTIONS(7080), 1, + anon_sym_COLON, + ACTIONS(7082), 1, sym__newline, - STATE(4961), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [170315] = 8, - ACTIONS(6179), 1, - anon_sym_async, - ACTIONS(6181), 1, - anon_sym_for, - ACTIONS(6956), 1, - anon_sym_COMMA, - ACTIONS(6958), 1, - anon_sym_RBRACE, - STATE(4149), 1, - sym_for_in_clause, - STATE(4907), 1, - aux_sym_dictionary_repeat1, - STATE(5696), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170341] = 4, - ACTIONS(4247), 1, - anon_sym_DOT, - STATE(4133), 1, + STATE(511), 1, + sym_external_definition, + STATE(3384), 1, aux_sym_class_definition_repeat2, + STATE(5069), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6524), 5, + [173838] = 9, + ACTIONS(6677), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [170359] = 7, - ACTIONS(3718), 1, + ACTIONS(6683), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(6960), 1, - anon_sym_EQ, - ACTIONS(6962), 1, - sym__newline, - STATE(5086), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6842), 1, + sym_string_start, + ACTIONS(7084), 1, + sym_identifier, + STATE(1418), 1, + sym_c_function_definition, + STATE(3968), 1, + sym_c_parameters, + STATE(4322), 1, + sym_string, + STATE(5330), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [170383] = 7, - ACTIONS(6591), 1, + [173867] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6964), 1, - anon_sym_COLON, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7086), 1, + sym__newline, + STATE(4991), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3339), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [170407] = 7, - ACTIONS(6591), 1, + [173893] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(6723), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6966), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [170431] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(6968), 1, + ACTIONS(6775), 3, anon_sym_COMMA, - STATE(5014), 1, - aux_sym_cvar_def_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170457] = 3, + anon_sym_COLON, + anon_sym_by, + [173915] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6970), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6749), 5, + ACTIONS(4538), 7, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [170473] = 8, - ACTIONS(6445), 1, - anon_sym_RPAREN, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, - anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, - STATE(4888), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170499] = 7, - ACTIONS(5201), 1, - sym_identifier, - ACTIONS(6980), 1, - anon_sym_DOT, - ACTIONS(6982), 1, - anon_sym___future__, - STATE(4294), 1, - aux_sym_import_prefix_repeat1, - STATE(4573), 1, - sym_import_prefix, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(5300), 2, - sym_relative_import, - sym_dotted_name, - [170523] = 4, - ACTIONS(6751), 1, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + [173929] = 4, + ACTIONS(5959), 1, anon_sym_DOT, - STATE(4016), 1, + STATE(3504), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6540), 5, + ACTIONS(6628), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [170541] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [173947] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6752), 1, + sym__newline, + ACTIONS(7088), 1, + anon_sym_COMMA, + STATE(4784), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6984), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [170563] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [173973] = 8, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(6820), 1, anon_sym_COMMA, - ACTIONS(6986), 1, - sym__newline, - STATE(4731), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7090), 1, + anon_sym_COLON, + STATE(4567), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170589] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [173999] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(6988), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6759), 1, sym__newline, - STATE(4940), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7092), 1, + anon_sym_COMMA, + STATE(4740), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170615] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [174025] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6990), 1, + ACTIONS(6795), 1, sym__newline, - STATE(4811), 1, + STATE(4742), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170641] = 7, - ACTIONS(3718), 1, + [174051] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6992), 1, + ACTIONS(6789), 1, anon_sym_EQ, - ACTIONS(6994), 1, + ACTIONS(6791), 1, sym__newline, - STATE(5041), 1, + STATE(4749), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4074), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [170665] = 7, - ACTIONS(3718), 1, + [174075] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6463), 1, + ACTIONS(7094), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(7096), 1, sym__newline, - STATE(5042), 1, + STATE(4755), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4061), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [170689] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + [174099] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6996), 1, + ACTIONS(6793), 1, + anon_sym_EQ, + ACTIONS(6795), 1, sym__newline, - STATE(4813), 1, + STATE(4756), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170715] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174123] = 6, + ACTIONS(6439), 1, + anon_sym_async, + ACTIONS(6441), 1, + anon_sym_for, + ACTIONS(7098), 1, anon_sym_if, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(6998), 1, - sym__newline, - STATE(4740), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7100), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170741] = 8, - ACTIONS(6455), 1, - anon_sym_RPAREN, - ACTIONS(6457), 1, - anon_sym_COMMA, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, - anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, - STATE(4931), 1, - aux_sym_argument_list_repeat1, + STATE(4094), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [174145] = 8, + ACTIONS(7102), 1, + sym_identifier, + ACTIONS(7104), 1, + anon_sym_LPAREN, + ACTIONS(7106), 1, + anon_sym_STAR, + STATE(4361), 1, + sym_dotted_name, + STATE(4576), 1, + sym_aliased_import, + STATE(5397), 1, + sym__import_list, + STATE(5399), 1, + sym_wildcard_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170767] = 8, - ACTIONS(6591), 1, + [174171] = 8, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6712), 1, anon_sym_or, - ACTIONS(7000), 1, + ACTIONS(7108), 1, anon_sym_COMMA, - ACTIONS(7002), 1, + ACTIONS(7110), 1, anon_sym_RBRACK, - STATE(4785), 1, + STATE(4832), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170793] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [174197] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(7004), 1, - sym__newline, - STATE(4941), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170819] = 8, - ACTIONS(6063), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7006), 1, + ACTIONS(7112), 1, sym__newline, - STATE(4741), 1, + STATE(4871), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170845] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [174223] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6585), 1, - sym__newline, - ACTIONS(7008), 1, - anon_sym_COMMA, - STATE(4788), 1, - aux_sym_cvar_def_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170871] = 4, - ACTIONS(2033), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2104), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6749), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [170889] = 8, - ACTIONS(6063), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7010), 1, + ACTIONS(7114), 1, sym__newline, - STATE(4814), 1, + STATE(4874), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170915] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + [174249] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7012), 1, + ACTIONS(6702), 1, + anon_sym_EQ, + ACTIONS(6704), 1, sym__newline, - STATE(4817), 1, + STATE(4887), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170941] = 8, - ACTIONS(6435), 1, - anon_sym_RPAREN, - ACTIONS(6437), 1, - anon_sym_COMMA, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, - anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, - STATE(4857), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170967] = 8, - ACTIONS(6536), 1, - anon_sym_RPAREN, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, - anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, - ACTIONS(7014), 1, - anon_sym_COMMA, - STATE(4672), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170993] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174273] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7016), 1, + ACTIONS(7116), 1, + anon_sym_EQ, + ACTIONS(7118), 1, sym__newline, - STATE(4743), 1, + STATE(4898), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171019] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + STATE(4072), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174297] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7018), 1, + ACTIONS(7112), 1, sym__newline, - STATE(4823), 1, + ACTIONS(7120), 1, + anon_sym_EQ, + STATE(4904), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171045] = 8, - ACTIONS(6415), 1, - anon_sym_RPAREN, - ACTIONS(6417), 1, - anon_sym_COMMA, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, - anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, - STATE(4900), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171071] = 7, - ACTIONS(3718), 1, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174321] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7020), 1, + ACTIONS(7122), 1, anon_sym_EQ, - ACTIONS(7022), 1, + ACTIONS(7124), 1, sym__newline, - STATE(4745), 1, + STATE(4916), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4073), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171095] = 7, - ACTIONS(3718), 1, + [174345] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7024), 1, - anon_sym_EQ, - ACTIONS(7026), 1, + ACTIONS(7114), 1, sym__newline, - STATE(4748), 1, + ACTIONS(7126), 1, + anon_sym_EQ, + STATE(4917), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171119] = 8, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, - anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, - ACTIONS(7028), 1, - anon_sym_RPAREN, - ACTIONS(7030), 1, - anon_sym_COMMA, - STATE(4964), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171145] = 4, - ACTIONS(7032), 1, + [174369] = 7, + ACTIONS(5307), 1, + sym_identifier, + ACTIONS(7128), 1, anon_sym_DOT, - STATE(4016), 1, - aux_sym_class_definition_repeat2, + ACTIONS(7130), 1, + anon_sym___future__, + STATE(4404), 1, + aux_sym_import_prefix_repeat1, + STATE(4589), 1, + sym_import_prefix, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5604), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [171163] = 7, - ACTIONS(3718), 1, + STATE(5236), 2, + sym_relative_import, + sym_dotted_name, + [174393] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7035), 1, + ACTIONS(7132), 1, anon_sym_EQ, - ACTIONS(7037), 1, + ACTIONS(7134), 1, sym__newline, - STATE(4755), 1, + STATE(4734), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4150), 2, + STATE(4100), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171187] = 7, - ACTIONS(3718), 1, + [174417] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7006), 1, - sym__newline, - ACTIONS(7039), 1, + ACTIONS(6464), 1, anon_sym_EQ, - STATE(4756), 1, + ACTIONS(6466), 1, + sym__newline, + STATE(4741), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171211] = 3, + [174441] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7136), 1, + sym__newline, + STATE(5067), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7043), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7041), 5, - anon_sym_COMMA, + [174467] = 8, + ACTIONS(6157), 1, anon_sym_as, + ACTIONS(6159), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [171227] = 8, - ACTIONS(6063), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6609), 1, + ACTIONS(7138), 1, sym__newline, - STATE(4863), 1, + STATE(5070), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171253] = 6, - ACTIONS(6298), 1, - anon_sym_async, - ACTIONS(6300), 1, - anon_sym_for, - ACTIONS(7045), 1, - anon_sym_RPAREN, - ACTIONS(7047), 1, + [174493] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7140), 1, + sym__newline, + STATE(5085), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4137), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [171275] = 7, - ACTIONS(3718), 1, + [174519] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6587), 1, + ACTIONS(7142), 1, anon_sym_EQ, - ACTIONS(6589), 1, + ACTIONS(7144), 1, sym__newline, - STATE(4866), 1, + STATE(5094), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171299] = 7, - ACTIONS(6591), 1, - anon_sym_as, - ACTIONS(6593), 1, - anon_sym_if, - ACTIONS(6595), 1, - anon_sym_and, - ACTIONS(6597), 1, - anon_sym_or, - ACTIONS(7049), 1, - anon_sym_COLON, + [174543] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7146), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + sym__newline, + STATE(5113), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 2, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174567] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [171323] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, + ACTIONS(7150), 1, + anon_sym_EQ, + ACTIONS(7152), 1, + sym__newline, + STATE(5130), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7051), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [171345] = 8, - ACTIONS(6179), 1, - anon_sym_async, - ACTIONS(6181), 1, - anon_sym_for, - ACTIONS(7053), 1, + STATE(4087), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174591] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7055), 1, - anon_sym_RBRACE, - STATE(4149), 1, - sym_for_in_clause, - STATE(4815), 1, - aux_sym_dictionary_repeat1, - STATE(5662), 1, - sym__comprehension_clauses, + ACTIONS(7138), 1, + sym__newline, + ACTIONS(7154), 1, + anon_sym_EQ, + STATE(5134), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171371] = 5, - ACTIONS(6173), 1, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174615] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6185), 1, - anon_sym_and, - ACTIONS(6187), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7057), 4, + ACTIONS(6159), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [171391] = 8, - ACTIONS(6063), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6617), 1, - sym__newline, - ACTIONS(7059), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(5106), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(7156), 1, + sym__newline, + STATE(4961), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171417] = 8, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [174641] = 8, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7061), 1, + ACTIONS(6820), 1, anon_sym_COMMA, - ACTIONS(7063), 1, + ACTIONS(7158), 1, anon_sym_COLON, - STATE(4896), 1, + STATE(4567), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171443] = 8, - ACTIONS(6179), 1, + [174667] = 6, + ACTIONS(6416), 1, anon_sym_async, - ACTIONS(6181), 1, + ACTIONS(6418), 1, anon_sym_for, - ACTIONS(7065), 1, - anon_sym_COMMA, - ACTIONS(7067), 1, - anon_sym_RBRACE, - STATE(4149), 1, - sym_for_in_clause, - STATE(4778), 1, - aux_sym_dictionary_repeat1, - STATE(5446), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171469] = 6, - ACTIONS(7069), 1, + ACTIONS(7100), 1, + anon_sym_RPAREN, + ACTIONS(7160), 1, anon_sym_if, - ACTIONS(7072), 1, - anon_sym_async, - ACTIONS(7075), 1, - anon_sym_for, - ACTIONS(7078), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4030), 3, + STATE(4112), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [171491] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(7080), 1, - anon_sym_EQ, - ACTIONS(7082), 1, - sym__newline, - STATE(5114), 1, - aux_sym_cvar_decl_repeat2, + [174689] = 6, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4061), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171515] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(7162), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(6359), 1, - anon_sym_EQ, - ACTIONS(6361), 1, + [174711] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7164), 1, sym__newline, - STATE(5115), 1, + STATE(4977), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [171539] = 8, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [174737] = 8, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7084), 1, + ACTIONS(7166), 1, anon_sym_COMMA, - ACTIONS(7086), 1, + ACTIONS(7168), 1, anon_sym_COLON, - STATE(5131), 1, + STATE(5114), 1, aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171565] = 8, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [174763] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(7061), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7088), 1, - anon_sym_COLON, - STATE(4896), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7170), 1, + sym__newline, + STATE(5182), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171591] = 5, - ACTIONS(6319), 1, + [174789] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6327), 1, - anon_sym_and, - ACTIONS(6329), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7057), 4, + ACTIONS(6159), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [171611] = 8, - ACTIONS(6063), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7090), 1, + ACTIONS(7172), 1, sym__newline, - STATE(4972), 1, + STATE(5184), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171637] = 8, - ACTIONS(6402), 1, - anon_sym_RPAREN, - ACTIONS(6404), 1, - anon_sym_COMMA, - ACTIONS(6972), 1, + [174815] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6163), 1, anon_sym_or, - STATE(4766), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7174), 1, + sym__newline, + STATE(5189), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171663] = 6, - ACTIONS(7078), 1, - anon_sym_RBRACK, - ACTIONS(7092), 1, + [174841] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(7095), 1, - anon_sym_async, - ACTIONS(7098), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4038), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [171685] = 8, - ACTIONS(6063), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7101), 1, + ACTIONS(7176), 1, sym__newline, - STATE(4948), 1, + STATE(5190), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171711] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [174867] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7103), 1, + ACTIONS(7178), 1, sym__newline, - STATE(5098), 1, + STATE(5192), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171737] = 6, - ACTIONS(6323), 1, - anon_sym_async, - ACTIONS(6325), 1, - anon_sym_for, - ACTIONS(7105), 1, - anon_sym_if, - ACTIONS(7107), 1, - anon_sym_RBRACK, + [174893] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7180), 1, + anon_sym_EQ, + ACTIONS(7182), 1, + sym__newline, + STATE(5195), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4066), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [171759] = 8, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174917] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(7061), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7109), 1, - anon_sym_COLON, - STATE(4896), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171785] = 4, - ACTIONS(1408), 1, - sym_string_start, + ACTIONS(7184), 1, + sym__newline, + STATE(4996), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2242), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6749), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [171803] = 8, - ACTIONS(6351), 1, - anon_sym_RPAREN, - ACTIONS(6353), 1, - anon_sym_COMMA, - ACTIONS(6972), 1, + [174943] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, - STATE(5075), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171829] = 8, - ACTIONS(6063), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6583), 1, - sym__newline, - ACTIONS(7111), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(5107), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(7186), 1, + sym__newline, + STATE(5227), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171855] = 8, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [174969] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6615), 1, - anon_sym_or, - ACTIONS(7061), 1, - anon_sym_COMMA, - ACTIONS(7113), 1, - anon_sym_COLON, - STATE(4896), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171881] = 8, - ACTIONS(6063), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7115), 1, + ACTIONS(7188), 1, sym__newline, - STATE(4989), 1, + STATE(5008), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171907] = 8, - ACTIONS(6536), 1, - anon_sym_RBRACK, - ACTIONS(6591), 1, + [174995] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(7117), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4930), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7190), 1, + sym__newline, + STATE(4717), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171933] = 8, - ACTIONS(6290), 1, - anon_sym_RPAREN, - ACTIONS(6292), 1, - anon_sym_COMMA, - ACTIONS(6972), 1, + [175021] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6163), 1, anon_sym_or, - STATE(5084), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7192), 1, + sym__newline, + STATE(4719), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171959] = 8, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [175047] = 5, + ACTIONS(6435), 1, anon_sym_as, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6443), 1, + anon_sym_and, + ACTIONS(6445), 1, anon_sym_or, - ACTIONS(7061), 1, - anon_sym_COMMA, - ACTIONS(7119), 1, - anon_sym_COLON, - STATE(4896), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171985] = 6, - ACTIONS(6298), 1, + ACTIONS(7194), 4, + anon_sym_if, anon_sym_async, - ACTIONS(6300), 1, anon_sym_for, - ACTIONS(7047), 1, + anon_sym_RBRACK, + [175067] = 6, + ACTIONS(7196), 1, anon_sym_if, - ACTIONS(7107), 1, - anon_sym_RPAREN, + ACTIONS(7199), 1, + anon_sym_async, + ACTIONS(7202), 1, + anon_sym_for, + ACTIONS(7205), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4021), 3, + STATE(4094), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [172007] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + [175089] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7121), 1, - anon_sym_EQ, - ACTIONS(7123), 1, + ACTIONS(7207), 1, sym__newline, - STATE(4877), 1, + STATE(5019), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4110), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172031] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + [175115] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6607), 1, - anon_sym_EQ, - ACTIONS(6609), 1, + ACTIONS(7209), 1, sym__newline, - STATE(4879), 1, + STATE(4725), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172055] = 8, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [175141] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(7061), 1, - anon_sym_COMMA, - ACTIONS(7125), 1, - anon_sym_COLON, - STATE(4896), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [172081] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4442), 7, + ACTIONS(6718), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7211), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_LBRACK, - [172095] = 4, - ACTIONS(5829), 1, - anon_sym_DOT, - STATE(4090), 1, - aux_sym_class_definition_repeat2, + STATE(5075), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6524), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + [175167] = 8, + ACTIONS(6157), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [172113] = 8, - ACTIONS(6179), 1, - anon_sym_async, - ACTIONS(6181), 1, - anon_sym_for, - ACTIONS(7127), 1, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7129), 1, - anon_sym_RBRACE, - STATE(4149), 1, - sym_for_in_clause, - STATE(5158), 1, - aux_sym_dictionary_repeat1, - STATE(5422), 1, - sym__comprehension_clauses, + ACTIONS(6696), 1, + sym__newline, + STATE(5084), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172139] = 8, - ACTIONS(6179), 1, + [175193] = 8, + ACTIONS(6352), 1, anon_sym_async, - ACTIONS(6181), 1, + ACTIONS(6354), 1, anon_sym_for, - ACTIONS(7131), 1, + ACTIONS(7213), 1, anon_sym_COMMA, - ACTIONS(7133), 1, + ACTIONS(7215), 1, anon_sym_RBRACE, - STATE(4149), 1, + STATE(4210), 1, sym_for_in_clause, - STATE(4847), 1, + STATE(5027), 1, aux_sym_dictionary_repeat1, - STATE(5715), 1, + STATE(5586), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172165] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(7135), 1, + [175219] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(5149), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(6652), 1, + anon_sym_EQ, + ACTIONS(6654), 1, + sym__newline, + STATE(5087), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172191] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [175243] = 7, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(6646), 1, - sym__newline, - STATE(5150), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172217] = 7, - ACTIONS(3718), 1, + ACTIONS(3247), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [175267] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6640), 1, + ACTIONS(7217), 1, anon_sym_EQ, - ACTIONS(6642), 1, + ACTIONS(7219), 1, sym__newline, - STATE(5152), 1, + STATE(5101), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4196), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172241] = 7, - ACTIONS(3718), 1, + [175291] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7137), 1, + ACTIONS(6694), 1, anon_sym_EQ, - ACTIONS(7139), 1, + ACTIONS(6696), 1, sym__newline, - STATE(5154), 1, + STATE(5105), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4079), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172265] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + [175315] = 6, + ACTIONS(6416), 1, + anon_sym_async, + ACTIONS(6418), 1, + anon_sym_for, + ACTIONS(7160), 1, + anon_sym_if, + ACTIONS(7221), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4078), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [175337] = 6, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 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(7223), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(6644), 1, + [175359] = 6, + ACTIONS(4992), 1, + anon_sym_LBRACK, + ACTIONS(7227), 1, anon_sym_EQ, - ACTIONS(6646), 1, - sym__newline, - STATE(5155), 1, - aux_sym_cvar_decl_repeat2, + STATE(4362), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [172289] = 8, - ACTIONS(6179), 1, + ACTIONS(7225), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7229), 2, + anon_sym_not, + anon_sym_or, + [175381] = 4, + ACTIONS(1440), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2335), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(6818), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [175399] = 8, + ACTIONS(6352), 1, anon_sym_async, - ACTIONS(6181), 1, + ACTIONS(6354), 1, anon_sym_for, - ACTIONS(7141), 1, + ACTIONS(7231), 1, anon_sym_COMMA, - ACTIONS(7143), 1, + ACTIONS(7233), 1, anon_sym_RBRACE, - STATE(4149), 1, + STATE(4210), 1, sym_for_in_clause, - STATE(4754), 1, + STATE(4945), 1, aux_sym_dictionary_repeat1, - STATE(5617), 1, + STATE(5717), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172315] = 8, - ACTIONS(6063), 1, + [175425] = 7, + ACTIONS(6706), 1, + anon_sym_as, + ACTIONS(6708), 1, + anon_sym_if, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6712), 1, anon_sym_or, - ACTIONS(6078), 1, + ACTIONS(6832), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7235), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [175449] = 7, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, + ACTIONS(7237), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3317), 2, anon_sym_COMMA, - ACTIONS(7145), 1, - sym__newline, - STATE(4971), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACK, + [175473] = 5, + ACTIONS(6412), 1, + anon_sym_as, + ACTIONS(6420), 1, + anon_sym_and, + ACTIONS(6422), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172341] = 6, - ACTIONS(6323), 1, + ACTIONS(7194), 4, + anon_sym_RPAREN, + anon_sym_if, anon_sym_async, - ACTIONS(6325), 1, anon_sym_for, - ACTIONS(7045), 1, - anon_sym_RBRACK, - ACTIONS(7105), 1, + [175493] = 6, + ACTIONS(7205), 1, + anon_sym_RPAREN, + ACTIONS(7239), 1, anon_sym_if, + ACTIONS(7242), 1, + anon_sym_async, + ACTIONS(7245), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4038), 3, + STATE(4112), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [172363] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [175515] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7147), 1, + ACTIONS(7248), 1, sym__newline, - STATE(4727), 1, + STATE(5166), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172389] = 8, - ACTIONS(6063), 1, + [175541] = 8, + ACTIONS(6576), 1, + anon_sym_RPAREN, + ACTIONS(6578), 1, + anon_sym_COMMA, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(6078), 1, + STATE(5219), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [175567] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6651), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6726), 1, sym__newline, - ACTIONS(7149), 1, + ACTIONS(7258), 1, anon_sym_COMMA, STATE(5135), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172415] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + [175593] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6563), 1, + ACTIONS(7260), 1, + anon_sym_EQ, + ACTIONS(7262), 1, sym__newline, - STATE(5136), 1, + STATE(5152), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172441] = 8, - ACTIONS(6536), 1, - anon_sym_RBRACE, - ACTIONS(7151), 1, - anon_sym_COMMA, - ACTIONS(7153), 1, - anon_sym_as, - ACTIONS(7155), 1, - anon_sym_if, - ACTIONS(7157), 1, - anon_sym_and, - ACTIONS(7159), 1, - anon_sym_or, - STATE(5159), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [172467] = 7, - ACTIONS(3718), 1, + STATE(4120), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [175617] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7161), 1, + ACTIONS(6453), 1, anon_sym_EQ, - ACTIONS(7163), 1, + ACTIONS(6455), 1, sym__newline, - STATE(5164), 1, + STATE(5153), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4022), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172491] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [175641] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(7165), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6773), 1, sym__newline, - STATE(4726), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7264), 1, + anon_sym_COMMA, + STATE(5197), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172517] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [175667] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7167), 1, + ACTIONS(6740), 1, sym__newline, - STATE(4909), 1, + STATE(5199), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172543] = 7, - ACTIONS(3718), 1, + [175693] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6557), 1, + ACTIONS(6732), 1, anon_sym_EQ, - ACTIONS(6559), 1, + ACTIONS(6734), 1, sym__newline, - STATE(5137), 1, + STATE(5202), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172567] = 7, - ACTIONS(3718), 1, + [175717] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7169), 1, + ACTIONS(7266), 1, anon_sym_EQ, - ACTIONS(7171), 1, + ACTIONS(7268), 1, sym__newline, - STATE(5146), 1, + STATE(5205), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4116), 2, + STATE(4128), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172591] = 7, - ACTIONS(3718), 1, + [175741] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6561), 1, + ACTIONS(6738), 1, anon_sym_EQ, - ACTIONS(6563), 1, + ACTIONS(6740), 1, sym__newline, - STATE(5148), 1, + STATE(5206), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172615] = 8, - ACTIONS(6063), 1, + [175765] = 8, + ACTIONS(6634), 1, + anon_sym_as, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(6078), 1, + ACTIONS(6820), 1, + anon_sym_COMMA, + ACTIONS(7270), 1, + anon_sym_COLON, + STATE(4567), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [175791] = 4, + ACTIONS(1999), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2191), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(6818), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [175809] = 8, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, + ACTIONS(7108), 1, anon_sym_COMMA, - ACTIONS(7173), 1, - sym__newline, - STATE(4659), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7272), 1, + anon_sym_RBRACK, + STATE(4723), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172641] = 8, - ACTIONS(6063), 1, + [175835] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6078), 1, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7274), 1, + sym__newline, + STATE(4727), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [175861] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7175), 1, + ACTIONS(7276), 1, sym__newline, - STATE(4660), 1, + STATE(4729), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172667] = 7, - ACTIONS(3718), 1, + [175887] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6685), 1, + ACTIONS(6728), 1, anon_sym_EQ, - ACTIONS(6687), 1, + ACTIONS(6730), 1, sym__newline, - STATE(4661), 1, + STATE(4730), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172691] = 7, - ACTIONS(3718), 1, + [175911] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7177), 1, + ACTIONS(7278), 1, anon_sym_EQ, - ACTIONS(7179), 1, + ACTIONS(7280), 1, sym__newline, - STATE(4663), 1, + STATE(4732), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4096), 2, + STATE(4136), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172715] = 7, - ACTIONS(3718), 1, + [175935] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7173), 1, + ACTIONS(7274), 1, sym__newline, - ACTIONS(7181), 1, + ACTIONS(7282), 1, anon_sym_EQ, - STATE(4664), 1, + STATE(4733), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172739] = 7, - ACTIONS(3718), 1, + [175959] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7183), 1, + ACTIONS(7284), 1, anon_sym_EQ, - ACTIONS(7185), 1, + ACTIONS(7286), 1, sym__newline, - STATE(4666), 1, + STATE(4735), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4097), 2, + STATE(4217), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172763] = 8, - ACTIONS(6425), 1, - anon_sym_RPAREN, - ACTIONS(6427), 1, + [175983] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6972), 1, + ACTIONS(7276), 1, + sym__newline, + ACTIONS(7288), 1, + anon_sym_EQ, + STATE(4736), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [176007] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6163), 1, anon_sym_or, - STATE(4824), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7290), 1, + sym__newline, + STATE(4757), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172789] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [176033] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7187), 1, + ACTIONS(7292), 1, sym__newline, - STATE(5116), 1, + STATE(4758), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172815] = 6, - ACTIONS(6179), 1, - anon_sym_async, - ACTIONS(6181), 1, - anon_sym_for, - ACTIONS(7045), 1, - anon_sym_RBRACE, - ACTIONS(7189), 1, + [176059] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7294), 1, + sym__newline, + STATE(4760), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4030), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [172837] = 7, - ACTIONS(3718), 1, + [176085] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7175), 1, - sym__newline, - ACTIONS(7191), 1, + ACTIONS(7296), 1, anon_sym_EQ, - STATE(4667), 1, + ACTIONS(7298), 1, + sym__newline, + STATE(4762), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [172861] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + [176109] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7193), 1, + ACTIONS(6560), 1, + anon_sym_EQ, + ACTIONS(6562), 1, sym__newline, - STATE(5013), 1, + STATE(4812), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172887] = 2, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [176133] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7300), 1, + anon_sym_EQ, + ACTIONS(7302), 1, + sym__newline, + STATE(4766), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4446), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_LBRACK, - [172901] = 6, - ACTIONS(4905), 1, + STATE(4146), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [176157] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(7197), 1, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7292), 1, + sym__newline, + ACTIONS(7304), 1, anon_sym_EQ, - STATE(4457), 1, - sym_type_index, + STATE(4767), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7195), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7199), 2, - anon_sym_not, - anon_sym_or, - [172923] = 4, - ACTIONS(5829), 1, - anon_sym_DOT, - STATE(3428), 1, - aux_sym_class_definition_repeat2, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [176181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6540), 5, - anon_sym_LPAREN, + ACTIONS(7306), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6818), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [172941] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [176197] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7201), 1, + ACTIONS(7308), 1, sym__newline, - STATE(4781), 1, + STATE(4778), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172967] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [176223] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7203), 1, + ACTIONS(7310), 1, sym__newline, - STATE(5119), 1, + STATE(4779), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172993] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [176249] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7205), 1, + ACTIONS(7312), 1, sym__newline, - STATE(4687), 1, + STATE(4781), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173019] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [176275] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7207), 1, + ACTIONS(7314), 1, sym__newline, - STATE(4688), 1, + STATE(4782), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173045] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [176301] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7209), 1, + ACTIONS(7316), 1, sym__newline, - STATE(4690), 1, + STATE(4783), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173071] = 7, - ACTIONS(3718), 1, + [176327] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7211), 1, + ACTIONS(7318), 1, anon_sym_EQ, - ACTIONS(7213), 1, + ACTIONS(7320), 1, sym__newline, - STATE(4692), 1, + STATE(4785), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [173095] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + [176351] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7215), 1, - anon_sym_EQ, - ACTIONS(7217), 1, + ACTIONS(7322), 1, sym__newline, - STATE(4695), 1, + STATE(4794), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173119] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + [176377] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7219), 1, - anon_sym_EQ, - ACTIONS(7221), 1, + ACTIONS(7324), 1, sym__newline, - STATE(4698), 1, + STATE(4795), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4138), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173143] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + [176403] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7207), 1, + ACTIONS(7326), 1, sym__newline, - ACTIONS(7223), 1, - anon_sym_EQ, - STATE(4699), 1, + STATE(4796), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173167] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [176429] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7225), 1, + ACTIONS(7328), 1, sym__newline, - STATE(4728), 1, + STATE(4798), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173193] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [176455] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7227), 1, + ACTIONS(7330), 1, sym__newline, - STATE(4783), 1, + STATE(4802), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173219] = 8, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [176481] = 8, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(7332), 1, + anon_sym_COMMA, + ACTIONS(7334), 1, + anon_sym_RBRACE, + STATE(4210), 1, + sym_for_in_clause, + STATE(4822), 1, + aux_sym_dictionary_repeat1, + STATE(5470), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176507] = 8, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7061), 1, + ACTIONS(6820), 1, anon_sym_COMMA, - ACTIONS(7229), 1, + ACTIONS(7336), 1, anon_sym_COLON, - STATE(4896), 1, + STATE(4567), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173245] = 8, - ACTIONS(6063), 1, + [176533] = 4, + ACTIONS(6998), 1, + anon_sym_DOT, + STATE(4165), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6632), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [176551] = 8, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(6078), 1, + ACTIONS(7338), 1, + anon_sym_RPAREN, + ACTIONS(7340), 1, + anon_sym_COMMA, + STATE(4962), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176577] = 4, + ACTIONS(2535), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2265), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(6818), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [176595] = 8, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, + ACTIONS(7108), 1, anon_sym_COMMA, - ACTIONS(7231), 1, - sym__newline, - STATE(4996), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7342), 1, + anon_sym_RBRACK, + STATE(4847), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173271] = 8, - ACTIONS(7233), 1, - sym_identifier, - ACTIONS(7235), 1, - anon_sym_LPAREN, - ACTIONS(7237), 1, - anon_sym_STAR, - STATE(4292), 1, - sym_dotted_name, - STATE(4596), 1, - sym_aliased_import, - STATE(5201), 1, - sym__import_list, - STATE(5303), 1, - sym_wildcard_import, + [176621] = 6, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(7100), 1, + anon_sym_RBRACE, + ACTIONS(7344), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173297] = 8, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + STATE(4160), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [176643] = 5, + ACTIONS(6346), 1, anon_sym_as, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6358), 1, + anon_sym_and, + ACTIONS(6360), 1, anon_sym_or, - ACTIONS(7061), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7194), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [176663] = 6, + ACTIONS(7205), 1, + anon_sym_RBRACE, + ACTIONS(7346), 1, + anon_sym_if, + ACTIONS(7349), 1, + anon_sym_async, + ACTIONS(7352), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4160), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [176685] = 8, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(7355), 1, anon_sym_COMMA, - ACTIONS(7239), 1, - anon_sym_COLON, - STATE(4896), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7357), 1, + anon_sym_RBRACE, + STATE(4210), 1, + sym_for_in_clause, + STATE(4872), 1, + aux_sym_dictionary_repeat1, + STATE(5664), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173323] = 8, - ACTIONS(6591), 1, + [176711] = 8, + ACTIONS(6408), 1, + anon_sym_RPAREN, + ACTIONS(6410), 1, + anon_sym_COMMA, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(7000), 1, + STATE(4831), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176737] = 8, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(7359), 1, anon_sym_COMMA, - ACTIONS(7241), 1, - anon_sym_RBRACK, - STATE(5073), 1, - aux_sym_type_index_repeat1, + ACTIONS(7361), 1, + anon_sym_RBRACE, + STATE(4210), 1, + sym_for_in_clause, + STATE(4902), 1, + aux_sym_dictionary_repeat1, + STATE(5486), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173349] = 8, - ACTIONS(6591), 1, + [176763] = 8, + ACTIONS(6478), 1, + anon_sym_RPAREN, + ACTIONS(6480), 1, + anon_sym_COMMA, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(7000), 1, - anon_sym_COMMA, - ACTIONS(7243), 1, - anon_sym_RBRACK, - STATE(4675), 1, - aux_sym_type_index_repeat1, + STATE(4880), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173375] = 4, - ACTIONS(6751), 1, + [176789] = 4, + ACTIONS(6998), 1, anon_sym_DOT, - STATE(3991), 1, + STATE(4183), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6524), 5, + ACTIONS(6628), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [173393] = 8, - ACTIONS(6179), 1, + [176807] = 8, + ACTIONS(6644), 1, + anon_sym_RPAREN, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_or, + ACTIONS(7363), 1, + anon_sym_COMMA, + STATE(5021), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176833] = 8, + ACTIONS(6352), 1, anon_sym_async, - ACTIONS(6181), 1, + ACTIONS(6354), 1, anon_sym_for, - ACTIONS(7245), 1, + ACTIONS(7365), 1, anon_sym_COMMA, - ACTIONS(7247), 1, + ACTIONS(7367), 1, anon_sym_RBRACE, - STATE(4149), 1, + STATE(4210), 1, sym_for_in_clause, - STATE(4878), 1, + STATE(4927), 1, aux_sym_dictionary_repeat1, - STATE(5550), 1, + STATE(5630), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173419] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + [176859] = 8, + ACTIONS(6706), 1, + anon_sym_as, + ACTIONS(6708), 1, + anon_sym_if, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, + ACTIONS(7108), 1, anon_sym_COMMA, - ACTIONS(6633), 1, - anon_sym_EQ, - ACTIONS(6635), 1, - sym__newline, - STATE(5121), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7369), 1, + anon_sym_RBRACK, + STATE(5162), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173443] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [176885] = 8, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_or, + ACTIONS(7371), 1, + anon_sym_RPAREN, + ACTIONS(7373), 1, anon_sym_COMMA, - ACTIONS(7249), 1, - sym__newline, - STATE(4790), 1, - aux_sym_cvar_decl_repeat2, + STATE(4999), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173469] = 4, - ACTIONS(2503), 1, - sym_string_start, + [176911] = 7, + ACTIONS(6706), 1, + anon_sym_as, + ACTIONS(6708), 1, + anon_sym_if, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, + ACTIONS(7375), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2206), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6749), 4, + ACTIONS(3411), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [173487] = 7, - ACTIONS(3143), 1, - anon_sym_COLON, - ACTIONS(6591), 1, + [176935] = 8, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(7377), 1, + anon_sym_COMMA, + ACTIONS(7379), 1, + anon_sym_RBRACE, + STATE(4210), 1, + sym_for_in_clause, + STATE(4953), 1, + aux_sym_dictionary_repeat1, + STATE(5763), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176961] = 8, + ACTIONS(6538), 1, + anon_sym_RPAREN, + ACTIONS(6540), 1, + anon_sym_COMMA, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(7256), 1, anon_sym_or, + STATE(4936), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3141), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [173511] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [176987] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7251), 1, + ACTIONS(7381), 1, sym__newline, - STATE(4682), 1, + STATE(4987), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173537] = 8, - ACTIONS(6063), 1, + [177013] = 8, + ACTIONS(6568), 1, + anon_sym_RPAREN, + ACTIONS(6570), 1, + anon_sym_COMMA, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(6078), 1, + STATE(4982), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177039] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4542), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + [177053] = 4, + ACTIONS(5959), 1, + anon_sym_DOT, + STATE(4048), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6632), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [177071] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7253), 1, + ACTIONS(7383), 1, sym__newline, - STATE(4684), 1, + STATE(4943), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173563] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + [177097] = 8, + ACTIONS(6492), 1, + anon_sym_RPAREN, + ACTIONS(6494), 1, anon_sym_COMMA, - ACTIONS(6627), 1, - anon_sym_EQ, - ACTIONS(6629), 1, - sym__newline, - STATE(4686), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_or, + STATE(4911), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173587] = 8, - ACTIONS(6972), 1, + [177123] = 8, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(7255), 1, + ACTIONS(7385), 1, anon_sym_RPAREN, - ACTIONS(7257), 1, + ACTIONS(7387), 1, anon_sym_COMMA, - STATE(4914), 1, + STATE(5014), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173613] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(7259), 1, - anon_sym_EQ, - ACTIONS(7261), 1, - sym__newline, - STATE(4693), 1, - aux_sym_cvar_decl_repeat2, + [177149] = 6, + ACTIONS(6439), 1, + anon_sym_async, + ACTIONS(6441), 1, + anon_sym_for, + ACTIONS(7098), 1, + anon_sym_if, + ACTIONS(7221), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4013), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173637] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + STATE(4056), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [177171] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7251), 1, + ACTIONS(7389), 1, sym__newline, - ACTIONS(7263), 1, - anon_sym_EQ, - STATE(4694), 1, + STATE(4971), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173661] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + [177197] = 8, + ACTIONS(6352), 1, + anon_sym_async, + ACTIONS(6354), 1, + anon_sym_for, + ACTIONS(7391), 1, anon_sym_COMMA, - ACTIONS(7265), 1, - sym__newline, - STATE(4710), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7393), 1, + anon_sym_RBRACE, + STATE(4210), 1, + sym_for_in_clause, + STATE(5096), 1, + aux_sym_dictionary_repeat1, + STATE(5543), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173687] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [177223] = 4, + ACTIONS(7395), 1, + anon_sym_DOT, + STATE(4183), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5706), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [177241] = 8, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(7398), 1, anon_sym_COMMA, - ACTIONS(7267), 1, - sym__newline, - STATE(4711), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7400), 1, + anon_sym_COLON, + STATE(5089), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173713] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [177267] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7269), 1, + ACTIONS(7402), 1, sym__newline, - STATE(4713), 1, + STATE(5029), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173739] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [177293] = 8, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(6820), 1, anon_sym_COMMA, - ACTIONS(7271), 1, - sym__newline, - STATE(4662), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7404), 1, + anon_sym_COLON, + STATE(4567), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173765] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [177319] = 8, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7273), 1, + ACTIONS(7406), 1, sym__newline, - STATE(4691), 1, + STATE(5053), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173791] = 8, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [177345] = 8, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7275), 1, + ACTIONS(6820), 1, anon_sym_COMMA, - ACTIONS(7277), 1, + ACTIONS(7408), 1, anon_sym_COLON, - STATE(4849), 1, - aux_sym_match_statement_repeat1, + STATE(4567), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173817] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [177371] = 8, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6339), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(6820), 1, anon_sym_COMMA, - ACTIONS(7279), 1, - sym__newline, - STATE(4729), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7410), 1, + anon_sym_COLON, + STATE(4567), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173843] = 8, - ACTIONS(6972), 1, + [177397] = 8, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7281), 1, - anon_sym_RPAREN, - ACTIONS(7283), 1, + ACTIONS(6820), 1, anon_sym_COMMA, - STATE(4949), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7412), 1, + anon_sym_COLON, + STATE(4567), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173869] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + [177423] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7285), 1, - anon_sym_EQ, - ACTIONS(7287), 1, + ACTIONS(7414), 1, sym__newline, - STATE(5128), 1, + STATE(4974), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4134), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173893] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + [177449] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7187), 1, + ACTIONS(7416), 1, sym__newline, - ACTIONS(7289), 1, - anon_sym_EQ, - STATE(5129), 1, + STATE(5018), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173917] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + [177475] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7291), 1, - anon_sym_EQ, - ACTIONS(7293), 1, + ACTIONS(7418), 1, sym__newline, - STATE(5138), 1, + STATE(5036), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4139), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173941] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, + [177501] = 8, + ACTIONS(6582), 1, + anon_sym_RPAREN, + ACTIONS(6584), 1, anon_sym_COMMA, - ACTIONS(7203), 1, - sym__newline, - ACTIONS(7295), 1, - anon_sym_EQ, - STATE(5139), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [173965] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(7297), 1, - sym__newline, - STATE(4714), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_or, + STATE(5065), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173991] = 4, - ACTIONS(4247), 1, + [177527] = 4, + ACTIONS(4323), 1, anon_sym_DOT, - STATE(3305), 1, + STATE(4209), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6540), 5, + ACTIONS(6632), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [174009] = 7, - ACTIONS(3718), 1, + [177545] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7299), 1, + ACTIONS(6714), 1, anon_sym_EQ, - ACTIONS(7301), 1, + ACTIONS(6716), 1, sym__newline, - STATE(4736), 1, + STATE(5090), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [174033] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + [177569] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7303), 1, + ACTIONS(7420), 1, + anon_sym_EQ, + ACTIONS(7422), 1, sym__newline, - STATE(4715), 1, + STATE(5046), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174059] = 5, - ACTIONS(6294), 1, - anon_sym_as, - ACTIONS(6302), 1, - anon_sym_and, - ACTIONS(6304), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7057), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [174079] = 6, - ACTIONS(7078), 1, - anon_sym_RPAREN, - ACTIONS(7305), 1, - anon_sym_if, - ACTIONS(7308), 1, - anon_sym_async, - ACTIONS(7311), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4137), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [174101] = 7, - ACTIONS(3718), 1, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [177593] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7314), 1, + ACTIONS(7424), 1, anon_sym_EQ, - ACTIONS(7316), 1, + ACTIONS(7426), 1, sym__newline, - STATE(4716), 1, + STATE(5128), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4197), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [174125] = 7, - ACTIONS(3718), 1, + [177617] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7318), 1, - anon_sym_EQ, - ACTIONS(7320), 1, + ACTIONS(7414), 1, sym__newline, - STATE(4767), 1, + ACTIONS(7428), 1, + anon_sym_EQ, + STATE(5139), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [174149] = 7, - ACTIONS(3718), 1, + [177641] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7322), 1, + ACTIONS(7430), 1, anon_sym_EQ, - ACTIONS(7324), 1, + ACTIONS(7432), 1, sym__newline, - STATE(4838), 1, + STATE(5168), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3984), 2, + STATE(4206), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [174173] = 7, - ACTIONS(3718), 1, + [177665] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7273), 1, + ACTIONS(7418), 1, sym__newline, - ACTIONS(7326), 1, + ACTIONS(7434), 1, anon_sym_EQ, - STATE(4864), 1, + STATE(5177), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [174197] = 7, - ACTIONS(3718), 1, + [177689] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7436), 1, + sym__newline, + STATE(5147), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177715] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7328), 1, + ACTIONS(7438), 1, anon_sym_EQ, - ACTIONS(7330), 1, + ACTIONS(7440), 1, sym__newline, - STATE(4697), 1, + STATE(5161), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4014), 2, + STATE(4302), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [174221] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [177739] = 8, + ACTIONS(6644), 1, + anon_sym_RBRACE, + ACTIONS(7442), 1, + anon_sym_COMMA, + ACTIONS(7444), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(7446), 1, anon_sym_if, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(7332), 1, - sym__newline, - STATE(4792), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7448), 1, + anon_sym_and, + ACTIONS(7450), 1, + anon_sym_or, + STATE(5222), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174247] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [177765] = 8, + ACTIONS(6644), 1, + anon_sym_RBRACK, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, anon_sym_or, + ACTIONS(7452), 1, + anon_sym_COMMA, + STATE(4932), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6484), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [174269] = 6, - ACTIONS(4253), 1, + [177791] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(7334), 1, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7454), 1, anon_sym_EQ, - STATE(4329), 1, - sym_type_index, + ACTIONS(7456), 1, + sym__newline, + STATE(5098), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7195), 2, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [177815] = 8, + ACTIONS(6460), 1, anon_sym_RPAREN, + ACTIONS(6462), 1, anon_sym_COMMA, - ACTIONS(7336), 2, - anon_sym_not, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, anon_sym_or, - [174291] = 7, - ACTIONS(3718), 1, - anon_sym_LBRACK, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(7253), 1, - sym__newline, - ACTIONS(7338), 1, - anon_sym_EQ, - STATE(4700), 1, - aux_sym_cvar_decl_repeat2, + STATE(5218), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + [177841] = 6, + ACTIONS(4329), 1, + anon_sym_LBRACK, + ACTIONS(7458), 1, + anon_sym_EQ, + STATE(4369), 1, sym_type_index, - aux_sym_cvar_decl_repeat1, - [174315] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(7340), 1, - sym__newline, - STATE(4793), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174341] = 8, - ACTIONS(6179), 1, - anon_sym_async, - ACTIONS(6181), 1, - anon_sym_for, - ACTIONS(7342), 1, + ACTIONS(7225), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7344), 1, - anon_sym_RBRACE, - STATE(4149), 1, - sym_for_in_clause, - STATE(4995), 1, - aux_sym_dictionary_repeat1, - STATE(5570), 1, - sym__comprehension_clauses, + ACTIONS(7460), 2, + anon_sym_not, + anon_sym_or, + [177863] = 4, + ACTIONS(4323), 1, + anon_sym_DOT, + STATE(3323), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174367] = 6, - ACTIONS(6179), 1, + ACTIONS(6628), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [177881] = 6, + ACTIONS(6352), 1, anon_sym_async, - ACTIONS(6181), 1, + ACTIONS(6354), 1, anon_sym_for, - ACTIONS(7107), 1, + ACTIONS(7221), 1, anon_sym_RBRACE, - ACTIONS(7189), 1, + ACTIONS(7344), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4085), 3, + STATE(4158), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [174389] = 7, - ACTIONS(3718), 1, + [177903] = 7, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(6339), 1, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7346), 1, + ACTIONS(7462), 1, anon_sym_EQ, - ACTIONS(7348), 1, + ACTIONS(7464), 1, sym__newline, - STATE(4795), 1, + STATE(5129), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, + STATE(4203), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [174413] = 8, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(6339), 1, + [177927] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7350), 1, + ACTIONS(7086), 1, sym__newline, - STATE(4725), 1, + ACTIONS(7466), 1, + anon_sym_EQ, + STATE(5132), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174439] = 8, - ACTIONS(6591), 1, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [177951] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7470), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7468), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6593), 1, anon_sym_if, - ACTIONS(6595), 1, + anon_sym_COLON, + anon_sym_PIPE, + [177967] = 8, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(7000), 1, + ACTIONS(6667), 1, + sym__newline, + ACTIONS(7472), 1, anon_sym_COMMA, - ACTIONS(7352), 1, - anon_sym_RBRACK, - STATE(4656), 1, - aux_sym_type_index_repeat1, + STATE(4752), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174465] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [177993] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6636), 1, anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7354), 2, + ACTIONS(6546), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [178015] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(7474), 1, + anon_sym_EQ, + ACTIONS(7476), 1, sym__newline, + STATE(4804), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4053), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [178039] = 7, + ACTIONS(3814), 1, + anon_sym_LBRACK, + ACTIONS(6396), 1, anon_sym_COMMA, - [174486] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, + ACTIONS(7478), 1, + anon_sym_EQ, + ACTIONS(7480), 1, + sym__newline, + STATE(4764), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [178063] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7356), 2, + ACTIONS(7482), 6, sym__newline, - anon_sym_COMMA, - [174507] = 3, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [178076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7358), 2, + ACTIONS(7484), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6749), 4, + ACTIONS(7468), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [174522] = 7, - ACTIONS(6803), 1, - anon_sym_LBRACK, - ACTIONS(7360), 1, - anon_sym_LPAREN, - ACTIONS(7362), 1, - anon_sym_COLON, - ACTIONS(7364), 1, - sym__newline, - STATE(2893), 1, - sym_external_definition, - STATE(5067), 1, - sym_argument_list, + [178091] = 6, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174545] = 6, - ACTIONS(4859), 1, - anon_sym_STAR_STAR, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7368), 1, - anon_sym_LPAREN, - ACTIONS(7370), 1, - anon_sym_STAR, - ACTIONS(3), 2, + ACTIONS(7486), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [178112] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - STATE(4534), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - [174566] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + ACTIONS(7490), 1, + anon_sym_BSLASH, + ACTIONS(7488), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [178129] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7372), 2, + ACTIONS(4662), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [174587] = 6, - ACTIONS(6591), 1, + [178150] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7494), 1, + anon_sym_BSLASH, + ACTIONS(7492), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [178167] = 4, + ACTIONS(7496), 1, + anon_sym_COMMA, + STATE(4264), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7498), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [178184] = 6, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 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(7072), 2, + sym__newline, + anon_sym_SEMI, + [178205] = 6, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6712), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6951), 2, + ACTIONS(3317), 2, anon_sym_COMMA, anon_sym_RBRACK, - [174608] = 2, + [178226] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7374), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [174621] = 4, - ACTIONS(7378), 1, + ACTIONS(7500), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6818), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - STATE(4224), 1, + [178241] = 4, + ACTIONS(7504), 1, + anon_sym_PIPE, + STATE(4282), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7376), 4, + ACTIONS(7502), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [174638] = 7, - ACTIONS(6745), 1, - anon_sym_LBRACK, - ACTIONS(7360), 1, + [178258] = 7, + ACTIONS(6677), 1, anon_sym_LPAREN, - ACTIONS(7380), 1, - anon_sym_COLON, - ACTIONS(7382), 1, - sym__newline, - STATE(495), 1, - sym_external_definition, - STATE(5035), 1, - sym_argument_list, + ACTIONS(6683), 1, + anon_sym_LBRACK, + ACTIONS(7506), 1, + sym_identifier, + STATE(1416), 1, + sym_c_function_definition, + STATE(3968), 1, + sym_c_parameters, + STATE(5330), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174661] = 6, - ACTIONS(7153), 1, + [178281] = 6, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(7155), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(7157), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(7159), 1, + ACTIONS(6712), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6951), 2, + ACTIONS(7508), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [174682] = 6, - ACTIONS(6972), 1, + anon_sym_RBRACK, + [178302] = 7, + ACTIONS(7510), 1, + anon_sym_DOT, + ACTIONS(7512), 1, + anon_sym_COMMA, + ACTIONS(7514), 1, + anon_sym_COLON, + ACTIONS(7516), 1, + anon_sym_RBRACK, + ACTIONS(7518), 1, + anon_sym_PIPE, + STATE(5091), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178325] = 6, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3829), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [174703] = 4, - ACTIONS(7384), 1, - anon_sym_COMMA, - STATE(4165), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5549), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [174720] = 6, - ACTIONS(6972), 1, + ACTIONS(7520), 2, + sym__newline, + anon_sym_SEMI, + [178346] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6640), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6689), 2, - anon_sym_RPAREN, + ACTIONS(7522), 2, anon_sym_COMMA, - [174741] = 6, - ACTIONS(4986), 1, - anon_sym_STAR_STAR, - ACTIONS(7368), 1, - anon_sym_LPAREN, - ACTIONS(7387), 1, - sym_identifier, - ACTIONS(7389), 1, - anon_sym_STAR, + anon_sym_COLON, + [178367] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4531), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - [174762] = 6, - ACTIONS(6972), 1, + ACTIONS(7524), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [178380] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(7256), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7391), 2, + ACTIONS(7526), 2, anon_sym_RPAREN, anon_sym_COMMA, - [174783] = 4, - ACTIONS(7393), 1, - anon_sym_COMMA, - STATE(4169), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6689), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [174800] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [178401] = 6, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 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(7396), 2, + ACTIONS(7528), 2, sym__newline, - anon_sym_COMMA, - [174821] = 4, + anon_sym_SEMI, + [178422] = 7, + ACTIONS(6677), 1, + anon_sym_LPAREN, + ACTIONS(6683), 1, + anon_sym_LBRACK, + ACTIONS(7530), 1, + sym_identifier, + STATE(2943), 1, + sym_c_function_definition, + STATE(4016), 1, + sym_c_parameters, + STATE(5287), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178445] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7400), 1, + ACTIONS(7534), 1, anon_sym_BSLASH, - ACTIONS(7398), 5, + ACTIONS(7532), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [174838] = 7, - ACTIONS(6745), 1, - anon_sym_LBRACK, - ACTIONS(7360), 1, - anon_sym_LPAREN, - ACTIONS(7402), 1, - anon_sym_COLON, - ACTIONS(7404), 1, - sym__newline, - STATE(500), 1, - sym_external_definition, - STATE(5037), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [174861] = 4, + [178462] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7408), 1, + ACTIONS(7538), 1, anon_sym_BSLASH, - ACTIONS(7406), 5, + ACTIONS(7536), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [174878] = 4, + [178479] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7412), 1, + ACTIONS(7542), 1, anon_sym_BSLASH, - ACTIONS(7410), 5, + ACTIONS(7540), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [174895] = 4, - ACTIONS(7416), 1, - anon_sym_COMMA, - STATE(4215), 1, - aux_sym_for_in_clause_repeat1, + [178496] = 7, + ACTIONS(6858), 1, + anon_sym_LBRACK, + ACTIONS(7544), 1, + anon_sym_LPAREN, + ACTIONS(7546), 1, + anon_sym_COLON, + ACTIONS(7548), 1, + sym__newline, + STATE(2958), 1, + sym_external_definition, + STATE(5107), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7414), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [174912] = 6, - ACTIONS(7153), 1, + [178519] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(7155), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(7157), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(7159), 1, + ACTIONS(7256), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7418), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [174933] = 4, - ACTIONS(7420), 1, + ACTIONS(7550), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4194), 1, - aux_sym_for_in_clause_repeat1, + [178540] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7422), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [174950] = 4, - ACTIONS(7424), 1, + ACTIONS(7552), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6818), 4, anon_sym_COMMA, - STATE(4195), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [178555] = 7, + ACTIONS(6677), 1, + anon_sym_LPAREN, + ACTIONS(6683), 1, + anon_sym_LBRACK, + ACTIONS(7554), 1, + sym_identifier, + STATE(551), 1, + sym_c_function_definition, + STATE(4033), 1, + sym_c_parameters, + STATE(5334), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7426), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [174967] = 6, - ACTIONS(7153), 1, + [178578] = 6, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(7155), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(7157), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(7159), 1, + ACTIONS(6712), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7428), 2, + ACTIONS(7556), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [174988] = 3, + anon_sym_RBRACK, + [178599] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7430), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7041), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [175003] = 6, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, - anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, + ACTIONS(7558), 6, + sym__newline, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [178612] = 7, + ACTIONS(6677), 1, + anon_sym_LPAREN, + ACTIONS(6683), 1, + anon_sym_LBRACK, + ACTIONS(7560), 1, + sym_identifier, + STATE(2975), 1, + sym_c_function_definition, + STATE(4016), 1, + sym_c_parameters, + STATE(5287), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7418), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [175024] = 7, - ACTIONS(6795), 1, + [178635] = 7, + ACTIONS(6850), 1, anon_sym_LBRACK, - ACTIONS(7360), 1, + ACTIONS(7544), 1, anon_sym_LPAREN, - ACTIONS(7432), 1, + ACTIONS(7562), 1, anon_sym_COLON, - ACTIONS(7434), 1, + ACTIONS(7564), 1, sym__newline, - STATE(1121), 1, + STATE(514), 1, sym_external_definition, - STATE(4943), 1, + STATE(5086), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175047] = 6, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, - anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, + [178658] = 7, + ACTIONS(6858), 1, + anon_sym_LBRACK, + ACTIONS(7544), 1, + anon_sym_LPAREN, + ACTIONS(7566), 1, + anon_sym_COLON, + ACTIONS(7568), 1, + sym__newline, + STATE(2864), 1, + sym_external_definition, + STATE(5109), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7436), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [175068] = 2, + [178681] = 3, + STATE(4282), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6484), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(7570), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [175081] = 3, + [178696] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7438), 2, + ACTIONS(7572), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6749), 4, + ACTIONS(7468), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [175096] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [178711] = 6, + ACTIONS(7444), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(7446), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(7448), 1, + anon_sym_and, + ACTIONS(7450), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7440), 2, + ACTIONS(7072), 2, anon_sym_COMMA, - anon_sym_COLON, - [175117] = 3, - ACTIONS(7442), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, + [178732] = 4, + ACTIONS(7576), 1, + anon_sym_COMMA, + STATE(4278), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 5, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(7574), 4, + anon_sym_RPAREN, anon_sym_if, + anon_sym_async, + anon_sym_for, + [178749] = 7, + ACTIONS(6858), 1, + anon_sym_LBRACK, + ACTIONS(7544), 1, + anon_sym_LPAREN, + ACTIONS(7578), 1, anon_sym_COLON, - anon_sym_PIPE, - [175132] = 7, - ACTIONS(7444), 1, + ACTIONS(7580), 1, + sym__newline, + STATE(2876), 1, + sym_external_definition, + STATE(5115), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [178772] = 4, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4650), 4, anon_sym_COMMA, - ACTIONS(7446), 1, anon_sym_as, - ACTIONS(7448), 1, anon_sym_if, - ACTIONS(7450), 1, anon_sym_COLON, - STATE(4381), 1, - aux_sym_case_clause_repeat1, - STATE(5572), 1, - sym_if_clause, + [178789] = 4, + ACTIONS(7582), 1, + anon_sym_COMMA, + STATE(4337), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175155] = 4, - ACTIONS(7378), 1, - anon_sym_PIPE, - STATE(4224), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(7498), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [178806] = 4, + ACTIONS(7584), 1, + anon_sym_COMMA, + STATE(4257), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7452), 4, - anon_sym_COMMA, + ACTIONS(5688), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [178823] = 6, + ACTIONS(7250), 1, anon_sym_as, + ACTIONS(7252), 1, anon_sym_if, - anon_sym_COLON, - [175172] = 7, - ACTIONS(6547), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(7454), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6775), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7456), 1, + [178844] = 6, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(7458), 1, - anon_sym_COLON, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175195] = 3, + ACTIONS(7587), 2, + sym__newline, + anon_sym_COMMA, + [178865] = 7, + ACTIONS(6858), 1, + anon_sym_LBRACK, + ACTIONS(7544), 1, + anon_sym_LPAREN, + ACTIONS(7589), 1, + anon_sym_COLON, + ACTIONS(7591), 1, + sym__newline, + STATE(2891), 1, + sym_external_definition, + STATE(5118), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7460), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7041), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [175210] = 6, - ACTIONS(6063), 1, + [178888] = 7, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(6078), 1, + ACTIONS(7593), 1, + anon_sym_COMMA, + ACTIONS(7595), 1, anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, + ACTIONS(7597), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7462), 2, + [178911] = 7, + ACTIONS(6913), 1, + anon_sym_LBRACK, + ACTIONS(7544), 1, + anon_sym_LPAREN, + ACTIONS(7599), 1, + anon_sym_COLON, + ACTIONS(7601), 1, sym__newline, - anon_sym_SEMI, - [175231] = 4, - ACTIONS(7464), 1, - anon_sym_COMMA, - STATE(4165), 1, - aux_sym__patterns_repeat1, + STATE(1162), 1, + sym_external_definition, + STATE(5151), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2801), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [175248] = 4, - ACTIONS(7466), 1, + [178934] = 4, + ACTIONS(7603), 1, anon_sym_COMMA, - STATE(4195), 1, + STATE(4285), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7468), 4, + ACTIONS(7605), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [175265] = 4, - ACTIONS(7470), 1, + anon_sym_RBRACK, + [178951] = 4, + ACTIONS(7607), 1, anon_sym_COMMA, - STATE(4195), 1, + STATE(4286), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7473), 4, + ACTIONS(7609), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [175282] = 7, - ACTIONS(7475), 1, - anon_sym_DOT, - ACTIONS(7477), 1, - anon_sym_COMMA, - ACTIONS(7479), 1, - anon_sym_COLON, - ACTIONS(7481), 1, anon_sym_RBRACK, - ACTIONS(7483), 1, - anon_sym_PIPE, - STATE(4753), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [175305] = 2, + [178968] = 3, + ACTIONS(7611), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7485), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [175318] = 6, - ACTIONS(6591), 1, + ACTIONS(6818), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6593), 1, anon_sym_if, - ACTIONS(6595), 1, - anon_sym_and, - ACTIONS(6597), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7487), 2, + anon_sym_COLON, + anon_sym_PIPE, + [178983] = 7, + ACTIONS(7613), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [175339] = 6, - ACTIONS(6591), 1, + ACTIONS(7615), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(7617), 1, anon_sym_if, - ACTIONS(6595), 1, - anon_sym_and, - ACTIONS(6597), 1, - anon_sym_or, + ACTIONS(7619), 1, + anon_sym_COLON, + STATE(4454), 1, + aux_sym_case_clause_repeat1, + STATE(5667), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3351), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [175360] = 6, - ACTIONS(6972), 1, + [179006] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(7256), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7440), 2, + ACTIONS(7621), 2, anon_sym_RPAREN, anon_sym_COMMA, - [175381] = 7, - ACTIONS(6795), 1, + [179027] = 7, + ACTIONS(6850), 1, anon_sym_LBRACK, - ACTIONS(7360), 1, + ACTIONS(7544), 1, anon_sym_LPAREN, - ACTIONS(7489), 1, + ACTIONS(7623), 1, anon_sym_COLON, - ACTIONS(7491), 1, + ACTIONS(7625), 1, sym__newline, - STATE(1080), 1, + STATE(513), 1, sym_external_definition, - STATE(5147), 1, + STATE(5079), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175404] = 2, + [179050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3904), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(7627), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7468), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [179065] = 4, + ACTIONS(7504), 1, anon_sym_PIPE, - [175417] = 2, + STATE(4282), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7493), 6, + ACTIONS(7629), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [179082] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7631), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [175430] = 6, - ACTIONS(6972), 1, + [179095] = 4, + ACTIONS(7633), 1, + anon_sym_PIPE, + STATE(4272), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7570), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [179112] = 4, + ACTIONS(7636), 1, + anon_sym_COMMA, + STATE(4332), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7498), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [179129] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6640), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7428), 2, - anon_sym_RPAREN, + ACTIONS(7638), 2, anon_sym_COMMA, - [175451] = 7, - ACTIONS(7475), 1, - anon_sym_DOT, - ACTIONS(7479), 1, anon_sym_COLON, - ACTIONS(7483), 1, - anon_sym_PIPE, - ACTIONS(7495), 1, + [179150] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7640), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6818), 4, anon_sym_COMMA, - ACTIONS(7497), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(4946), 1, - aux_sym_type_parameter_repeat1, + anon_sym_PIPE, + [179165] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175474] = 7, - ACTIONS(6795), 1, + ACTIONS(7642), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [179178] = 7, + ACTIONS(6913), 1, anon_sym_LBRACK, - ACTIONS(7360), 1, + ACTIONS(7544), 1, anon_sym_LPAREN, - ACTIONS(7499), 1, + ACTIONS(7644), 1, anon_sym_COLON, - ACTIONS(7501), 1, + ACTIONS(7646), 1, sym__newline, - STATE(1073), 1, + STATE(1149), 1, sym_external_definition, - STATE(5065), 1, + STATE(4896), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175497] = 3, - STATE(4224), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7503), 5, + [179201] = 4, + ACTIONS(7650), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [175512] = 4, - ACTIONS(7505), 1, - anon_sym_PIPE, - STATE(4208), 1, - aux_sym_union_pattern_repeat1, + STATE(4278), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7503), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(7648), 4, + anon_sym_RPAREN, anon_sym_if, - anon_sym_COLON, - [175529] = 6, - ACTIONS(6972), 1, + anon_sym_async, + anon_sym_for, + [179218] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(7256), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7487), 2, + ACTIONS(7522), 2, anon_sym_RPAREN, anon_sym_COMMA, - [175550] = 2, + [179239] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 6, + ACTIONS(6546), 6, sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [175563] = 4, - ACTIONS(3), 1, + anon_sym_EQ, + anon_sym_PIPE, + [179252] = 5, + ACTIONS(7655), 1, + anon_sym_DOT, + ACTIONS(7657), 1, + anon_sym_COLON, + ACTIONS(7659), 1, + anon_sym_PIPE, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7510), 1, - anon_sym_BSLASH, - ACTIONS(7508), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [175580] = 4, - ACTIONS(7512), 1, - anon_sym_COMMA, - STATE(4223), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(7653), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [179271] = 4, + ACTIONS(7504), 1, + anon_sym_PIPE, + STATE(4272), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7422), 4, - anon_sym_RPAREN, + ACTIONS(7661), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [175597] = 6, - ACTIONS(6591), 1, + anon_sym_COLON, + [179288] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6640), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6689), 2, + ACTIONS(7526), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [175618] = 6, - ACTIONS(6591), 1, + anon_sym_COLON, + [179309] = 6, + ACTIONS(7444), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(7446), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(7448), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(7450), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3335), 2, + ACTIONS(7556), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [175639] = 4, - ACTIONS(7514), 1, + anon_sym_RBRACE, + [179330] = 4, + ACTIONS(7663), 1, anon_sym_COMMA, - STATE(4217), 1, + STATE(4286), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7426), 4, - anon_sym_RPAREN, + ACTIONS(7574), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [175656] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5604), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [175669] = 4, - ACTIONS(7516), 1, + anon_sym_RBRACK, + [179347] = 4, + ACTIONS(7665), 1, anon_sym_COMMA, - STATE(4217), 1, + STATE(4286), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7473), 4, - anon_sym_RPAREN, + ACTIONS(7648), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [175686] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, - anon_sym_as, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7436), 2, - anon_sym_COMMA, - anon_sym_COLON, - [175707] = 6, - ACTIONS(6972), 1, + anon_sym_RBRACK, + [179364] = 6, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6712), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6951), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [175728] = 4, - ACTIONS(7519), 1, + ACTIONS(7668), 2, anon_sym_COMMA, - STATE(4250), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7414), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_RBRACK, - [175745] = 2, + [179385] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7521), 6, + ACTIONS(7670), 6, sym__newline, anon_sym_COLON, anon_sym_except, anon_sym_with, anon_sym_nogil, anon_sym_noexcept, - [175758] = 3, + [179398] = 7, + ACTIONS(6913), 1, + anon_sym_LBRACK, + ACTIONS(7544), 1, + anon_sym_LPAREN, + ACTIONS(7672), 1, + anon_sym_COLON, + ACTIONS(7674), 1, + sym__newline, + STATE(1105), 1, + sym_external_definition, + STATE(4775), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7523), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6749), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + [179421] = 6, + ACTIONS(7655), 1, + anon_sym_DOT, + ACTIONS(7657), 1, + anon_sym_COLON, + ACTIONS(7659), 1, anon_sym_PIPE, - [175773] = 4, - ACTIONS(7525), 1, + ACTIONS(7678), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7676), 2, + sym__newline, + anon_sym_SEMI, + [179442] = 4, + ACTIONS(7680), 1, anon_sym_COMMA, - STATE(4217), 1, + STATE(4294), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7468), 4, - anon_sym_RPAREN, + ACTIONS(7574), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [175790] = 4, - ACTIONS(7378), 1, - anon_sym_PIPE, - STATE(4208), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACE, + [179459] = 6, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7527), 4, + ACTIONS(3925), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [179480] = 6, + ACTIONS(6706), 1, anon_sym_as, + ACTIONS(6708), 1, anon_sym_if, - anon_sym_COLON, - [175807] = 7, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - anon_sym_LBRACK, - ACTIONS(7529), 1, - sym_identifier, - STATE(516), 1, - sym_c_function_definition, - STATE(3927), 1, - sym_c_parameters, - STATE(5274), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [175830] = 7, - ACTIONS(6547), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6712), 1, anon_sym_or, - ACTIONS(7456), 1, - anon_sym_as, - ACTIONS(7531), 1, - anon_sym_COMMA, - ACTIONS(7533), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [175853] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7535), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [175866] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7537), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [175879] = 4, - ACTIONS(7539), 1, + ACTIONS(3409), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [179501] = 4, + ACTIONS(7682), 1, anon_sym_COMMA, - STATE(4178), 1, + STATE(4294), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7414), 4, + ACTIONS(7648), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [175896] = 7, - ACTIONS(7475), 1, + [179518] = 4, + ACTIONS(7685), 1, + anon_sym_COMMA, + STATE(4257), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2821), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [179535] = 7, + ACTIONS(7510), 1, anon_sym_DOT, - ACTIONS(7479), 1, + ACTIONS(7514), 1, anon_sym_COLON, - ACTIONS(7483), 1, + ACTIONS(7518), 1, anon_sym_PIPE, - ACTIONS(7541), 1, + ACTIONS(7687), 1, anon_sym_COMMA, - ACTIONS(7543), 1, + ACTIONS(7689), 1, anon_sym_RBRACK, - STATE(5082), 1, + STATE(4799), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175919] = 4, - ACTIONS(3701), 1, - anon_sym_DOT, - STATE(4233), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6524), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [175936] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [179558] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6689), 2, + ACTIONS(7550), 2, anon_sym_COMMA, anon_sym_COLON, - [175957] = 4, - ACTIONS(3701), 1, - anon_sym_DOT, - STATE(3255), 1, - aux_sym_class_definition_repeat2, + [179579] = 7, + ACTIONS(6850), 1, + anon_sym_LBRACK, + ACTIONS(7544), 1, + anon_sym_LPAREN, + ACTIONS(7691), 1, + anon_sym_COLON, + ACTIONS(7693), 1, + sym__newline, + STATE(515), 1, + sym_external_definition, + STATE(5083), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6540), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, + [179602] = 6, + ACTIONS(6157), 1, anon_sym_as, - [175974] = 6, - ACTIONS(6547), 1, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6611), 1, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7695), 2, + sym__newline, + anon_sym_COMMA, + [179623] = 6, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7545), 2, + ACTIONS(6775), 2, anon_sym_COMMA, - anon_sym_COLON, - [175995] = 6, - ACTIONS(6972), 1, + anon_sym_RBRACK, + [179644] = 6, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6161), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6163), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7545), 2, - anon_sym_RPAREN, + ACTIONS(7697), 2, + sym__newline, anon_sym_COMMA, - [176016] = 7, - ACTIONS(6795), 1, + [179665] = 4, + ACTIONS(7701), 1, anon_sym_LBRACK, - ACTIONS(7360), 1, - anon_sym_LPAREN, - ACTIONS(7547), 1, - anon_sym_COLON, - ACTIONS(7549), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4302), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + ACTIONS(7699), 3, sym__newline, - STATE(1108), 1, - sym_external_definition, - STATE(4912), 1, - sym_argument_list, + anon_sym_COMMA, + anon_sym_EQ, + [179682] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176039] = 6, - ACTIONS(6591), 1, - anon_sym_as, - ACTIONS(6593), 1, - anon_sym_if, - ACTIONS(6595), 1, - anon_sym_and, - ACTIONS(6597), 1, - anon_sym_or, + ACTIONS(7704), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [179695] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7551), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [176060] = 7, - ACTIONS(6745), 1, + ACTIONS(7706), 6, + sym__newline, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [179708] = 7, + ACTIONS(6850), 1, anon_sym_LBRACK, - ACTIONS(7360), 1, + ACTIONS(7544), 1, anon_sym_LPAREN, - ACTIONS(7553), 1, + ACTIONS(7708), 1, anon_sym_COLON, - ACTIONS(7555), 1, + ACTIONS(7710), 1, sym__newline, - STATE(497), 1, + STATE(512), 1, sym_external_definition, - STATE(5029), 1, + STATE(5074), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176083] = 4, - ACTIONS(7559), 1, - anon_sym_LBRACK, + [179731] = 6, + ACTIONS(7444), 1, + anon_sym_as, + ACTIONS(7446), 1, + anon_sym_if, + ACTIONS(7448), 1, + anon_sym_and, + ACTIONS(7450), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4239), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - ACTIONS(7557), 3, - sym__newline, + ACTIONS(7712), 2, anon_sym_COMMA, - anon_sym_EQ, - [176100] = 7, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - anon_sym_LBRACK, - ACTIONS(7562), 1, - sym_identifier, - STATE(2866), 1, - sym_c_function_definition, - STATE(3883), 1, - sym_c_parameters, - STATE(5223), 1, - sym_template_params, + anon_sym_RBRACE, + [179752] = 6, + ACTIONS(7444), 1, + anon_sym_as, + ACTIONS(7446), 1, + anon_sym_if, + ACTIONS(7448), 1, + anon_sym_and, + ACTIONS(7450), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176123] = 7, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - anon_sym_LBRACK, - ACTIONS(7564), 1, - sym_identifier, - STATE(1377), 1, - sym_c_function_definition, - STATE(3951), 1, - sym_c_parameters, - STATE(5184), 1, - sym_template_params, + ACTIONS(6896), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [179773] = 6, + ACTIONS(6706), 1, + anon_sym_as, + ACTIONS(6708), 1, + anon_sym_if, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176146] = 6, - ACTIONS(6591), 1, + ACTIONS(7621), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [179794] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6640), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7566), 2, + ACTIONS(7714), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [176167] = 7, - ACTIONS(6803), 1, - anon_sym_LBRACK, - ACTIONS(7360), 1, - anon_sym_LPAREN, - ACTIONS(7568), 1, anon_sym_COLON, - ACTIONS(7570), 1, - sym__newline, - STATE(2885), 1, - sym_external_definition, - STATE(5059), 1, - sym_argument_list, + [179815] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5706), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [179828] = 6, + ACTIONS(4955), 1, + anon_sym_STAR_STAR, + ACTIONS(7716), 1, + sym_identifier, + ACTIONS(7718), 1, + anon_sym_LPAREN, + ACTIONS(7720), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176190] = 6, - ACTIONS(7153), 1, + STATE(4571), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [179849] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(7155), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(7157), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(7159), 1, + ACTIONS(7256), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7487), 2, + ACTIONS(3931), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [176211] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + [179870] = 6, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6159), 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(6951), 2, + ACTIONS(7722), 2, sym__newline, - anon_sym_SEMI, - [176232] = 4, - ACTIONS(7572), 1, anon_sym_COMMA, - STATE(4279), 1, - aux_sym_for_in_clause_repeat1, + [179891] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7422), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [176249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7576), 1, - anon_sym_BSLASH, - ACTIONS(7574), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [176266] = 4, - ACTIONS(7578), 1, - anon_sym_COMMA, - STATE(4169), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3949), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [179904] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3071), 4, + ACTIONS(7724), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [176283] = 7, - ACTIONS(6565), 1, + anon_sym_PIPE, + [179917] = 6, + ACTIONS(5089), 1, + anon_sym_STAR_STAR, + ACTIONS(7718), 1, anon_sym_LPAREN, - ACTIONS(6571), 1, - anon_sym_LBRACK, - ACTIONS(7580), 1, + ACTIONS(7726), 1, sym_identifier, - STATE(2862), 1, - sym_c_function_definition, - STATE(3883), 1, - sym_c_parameters, - STATE(5223), 1, - sym_template_params, + ACTIONS(7728), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176306] = 4, - ACTIONS(7582), 1, - anon_sym_COMMA, - STATE(4281), 1, - aux_sym_for_in_clause_repeat1, + STATE(4655), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [179938] = 4, + ACTIONS(3797), 1, + anon_sym_DOT, + STATE(4326), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7426), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [176323] = 6, - ACTIONS(6591), 1, + ACTIONS(6632), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + [179955] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(7256), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7418), 2, + ACTIONS(4627), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [176344] = 3, + [179976] = 7, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(7595), 1, + anon_sym_as, + ACTIONS(7730), 1, + anon_sym_COMMA, + ACTIONS(7732), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179999] = 6, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7584), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7041), 4, + ACTIONS(7712), 2, anon_sym_RPAREN, anon_sym_COMMA, + [180020] = 6, + ACTIONS(7250), 1, anon_sym_as, - anon_sym_PIPE, - [176359] = 6, - ACTIONS(6063), 1, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6065), 1, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7586), 2, - sym__newline, + ACTIONS(7714), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [176380] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7588), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [176393] = 7, - ACTIONS(6565), 1, + [180041] = 7, + ACTIONS(6677), 1, anon_sym_LPAREN, - ACTIONS(6571), 1, + ACTIONS(6683), 1, anon_sym_LBRACK, - ACTIONS(7590), 1, + ACTIONS(7734), 1, sym_identifier, - STATE(532), 1, + STATE(1362), 1, sym_c_function_definition, - STATE(3927), 1, + STATE(3968), 1, sym_c_parameters, - STATE(5274), 1, + STATE(5330), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176416] = 7, - ACTIONS(6803), 1, - anon_sym_LBRACK, - ACTIONS(7360), 1, - anon_sym_LPAREN, - ACTIONS(7592), 1, - anon_sym_COLON, - ACTIONS(7594), 1, - sym__newline, - STATE(2860), 1, - sym_external_definition, - STATE(5061), 1, - sym_argument_list, + [180064] = 5, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_or, + ACTIONS(7736), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176439] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7598), 1, - anon_sym_BSLASH, - ACTIONS(7596), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [176456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7602), 1, - anon_sym_BSLASH, - ACTIONS(7600), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [176473] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7606), 1, - anon_sym_BSLASH, - ACTIONS(7604), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [176490] = 6, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(4643), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6976), 1, + [180083] = 4, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(7256), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4497), 2, + ACTIONS(4650), 4, anon_sym_RPAREN, anon_sym_COMMA, - [176511] = 7, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - anon_sym_LBRACK, - ACTIONS(7608), 1, - sym_identifier, - STATE(1289), 1, - sym_c_function_definition, - STATE(3951), 1, - sym_c_parameters, - STATE(5184), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [176534] = 6, - ACTIONS(6972), 1, anon_sym_as, - ACTIONS(6974), 1, anon_sym_if, - ACTIONS(6976), 1, + [180100] = 3, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7610), 2, + ACTIONS(4654), 5, anon_sym_RPAREN, anon_sym_COMMA, - [176555] = 6, - ACTIONS(6972), 1, anon_sym_as, - ACTIONS(6974), 1, anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, anon_sym_or, + [180115] = 4, + ACTIONS(3797), 1, + anon_sym_DOT, + STATE(3384), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7612), 2, - anon_sym_RPAREN, + ACTIONS(6628), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - [176576] = 6, - ACTIONS(6972), 1, anon_sym_as, - ACTIONS(6974), 1, + [180132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7741), 1, + anon_sym_BSLASH, + ACTIONS(7739), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [180149] = 6, + ACTIONS(6706), 1, + anon_sym_as, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6712), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4462), 2, - anon_sym_RPAREN, + ACTIONS(3279), 2, anon_sym_COMMA, - [176597] = 7, - ACTIONS(6803), 1, + anon_sym_RBRACK, + [180170] = 7, + ACTIONS(6913), 1, anon_sym_LBRACK, - ACTIONS(7360), 1, + ACTIONS(7544), 1, anon_sym_LPAREN, - ACTIONS(7614), 1, + ACTIONS(7743), 1, anon_sym_COLON, - ACTIONS(7616), 1, + ACTIONS(7745), 1, sym__newline, - STATE(2846), 1, + STATE(1115), 1, sym_external_definition, - STATE(5064), 1, + STATE(4787), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176620] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7618), 6, - sym__newline, - anon_sym_SEMI, + [180193] = 7, + ACTIONS(7510), 1, anon_sym_DOT, + ACTIONS(7514), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(7518), 1, anon_sym_PIPE, - [176633] = 6, - ACTIONS(7153), 1, - anon_sym_as, - ACTIONS(7155), 1, - anon_sym_if, - ACTIONS(7157), 1, - anon_sym_and, - ACTIONS(7159), 1, - anon_sym_or, + ACTIONS(7747), 1, + anon_sym_COMMA, + ACTIONS(7749), 1, + anon_sym_RBRACK, + STATE(4731), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4462), 2, + [180216] = 4, + ACTIONS(7751), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [176654] = 5, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, - ACTIONS(7620), 1, - anon_sym_as, + STATE(4291), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7605), 4, anon_sym_if, - [176673] = 5, - ACTIONS(7157), 1, - anon_sym_and, - ACTIONS(7159), 1, - anon_sym_or, - ACTIONS(7623), 1, - anon_sym_as, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [180233] = 4, + ACTIONS(7753), 1, + anon_sym_COMMA, + STATE(4294), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4478), 3, - anon_sym_COMMA, + ACTIONS(7609), 4, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - [176692] = 4, - ACTIONS(7157), 1, - anon_sym_and, - ACTIONS(7159), 1, - anon_sym_or, - ACTIONS(3), 2, + [180250] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(4485), 4, + ACTIONS(7757), 1, + anon_sym_BSLASH, + ACTIONS(7755), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [180267] = 4, + ACTIONS(7759), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_RBRACE, - [176709] = 3, - ACTIONS(7157), 1, - anon_sym_and, + STATE(4253), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4489), 5, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(7605), 4, + anon_sym_RPAREN, anon_sym_if, - anon_sym_RBRACE, - anon_sym_or, - [176724] = 6, - ACTIONS(7153), 1, + anon_sym_async, + anon_sym_for, + [180284] = 6, + ACTIONS(7444), 1, anon_sym_as, - ACTIONS(7155), 1, + ACTIONS(7446), 1, anon_sym_if, - ACTIONS(7157), 1, + ACTIONS(7448), 1, anon_sym_and, - ACTIONS(7159), 1, + ACTIONS(7450), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4493), 2, + ACTIONS(7621), 2, anon_sym_COMMA, anon_sym_RBRACE, - [176745] = 4, - ACTIONS(6976), 1, + [180305] = 6, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(7256), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4485), 4, + ACTIONS(7072), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, + [180326] = 4, + ACTIONS(7761), 1, + anon_sym_COMMA, + STATE(4278), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7609), 4, + anon_sym_RPAREN, anon_sym_if, - [176762] = 6, - ACTIONS(7153), 1, + anon_sym_async, + anon_sym_for, + [180343] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(7155), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(7157), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(7159), 1, + ACTIONS(7256), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4497), 2, + ACTIONS(7556), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [176783] = 5, - ACTIONS(7628), 1, - anon_sym_DOT, - ACTIONS(7630), 1, - anon_sym_COLON, - ACTIONS(7632), 1, - anon_sym_PIPE, + [180364] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7626), 3, + ACTIONS(6090), 6, sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [176802] = 3, - ACTIONS(6976), 1, - anon_sym_and, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [180377] = 4, + ACTIONS(7763), 1, + anon_sym_COMMA, + STATE(4353), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4489), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3143), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [180394] = 6, + ACTIONS(7250), 1, anon_sym_as, + ACTIONS(7252), 1, anon_sym_if, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, anon_sym_or, - [176817] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7634), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [176830] = 6, - ACTIONS(6591), 1, + ACTIONS(4658), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [180415] = 6, + ACTIONS(7444), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(7446), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(7448), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(7450), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7636), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [176851] = 4, - ACTIONS(7638), 1, + ACTIONS(4627), 2, anon_sym_COMMA, - STATE(4281), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACE, + [180436] = 5, + ACTIONS(7448), 1, + anon_sym_and, + ACTIONS(7450), 1, + anon_sym_or, + ACTIONS(7765), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7468), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [176868] = 6, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(4643), 3, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6976), 1, + anon_sym_RBRACE, + [180455] = 4, + ACTIONS(7448), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(7450), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7640), 2, - anon_sym_RPAREN, + ACTIONS(4650), 4, anon_sym_COMMA, - [176889] = 4, - ACTIONS(7642), 1, - anon_sym_COMMA, - STATE(4281), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7473), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [176906] = 6, - ACTIONS(6972), 1, anon_sym_as, - ACTIONS(6974), 1, anon_sym_if, - ACTIONS(6976), 1, + anon_sym_RBRACE, + [180472] = 3, + ACTIONS(7448), 1, anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4493), 2, - anon_sym_RPAREN, + ACTIONS(4654), 5, anon_sym_COMMA, - [176927] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACE, anon_sym_or, - ACTIONS(6078), 1, + [180487] = 6, + ACTIONS(7444), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(7446), 1, anon_sym_if, + ACTIONS(7448), 1, + anon_sym_and, + ACTIONS(7450), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7645), 2, - sym__newline, - anon_sym_SEMI, - [176948] = 6, - ACTIONS(7153), 1, + ACTIONS(4658), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [180508] = 6, + ACTIONS(7444), 1, anon_sym_as, - ACTIONS(7155), 1, + ACTIONS(7446), 1, anon_sym_if, - ACTIONS(7157), 1, + ACTIONS(7448), 1, anon_sym_and, - ACTIONS(7159), 1, + ACTIONS(7450), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6785), 2, + ACTIONS(4662), 2, anon_sym_COMMA, anon_sym_RBRACE, - [176969] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [180529] = 6, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6710), 1, + anon_sym_and, + ACTIONS(6712), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7391), 2, + ACTIONS(7072), 2, anon_sym_COMMA, - anon_sym_COLON, - [176990] = 7, - ACTIONS(6745), 1, - anon_sym_LBRACK, - ACTIONS(7360), 1, - anon_sym_LPAREN, - ACTIONS(7647), 1, - anon_sym_COLON, - ACTIONS(7649), 1, - sym__newline, - STATE(494), 1, - sym_external_definition, - STATE(5032), 1, - sym_argument_list, + anon_sym_RBRACK, + [180550] = 6, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177013] = 6, - ACTIONS(6591), 1, + ACTIONS(7768), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [180571] = 6, + ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6593), 1, + ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6595), 1, + ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6597), 1, + ACTIONS(6712), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3255), 2, + ACTIONS(7770), 2, anon_sym_COMMA, anon_sym_RBRACK, - [177034] = 6, - ACTIONS(6972), 1, + [180592] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(7256), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3843), 2, + ACTIONS(7772), 2, anon_sym_RPAREN, anon_sym_COMMA, - [177055] = 6, - ACTIONS(7153), 1, + [180613] = 7, + ACTIONS(6677), 1, + anon_sym_LPAREN, + ACTIONS(6683), 1, + anon_sym_LBRACK, + ACTIONS(7774), 1, + sym_identifier, + STATE(535), 1, + sym_c_function_definition, + STATE(4033), 1, + sym_c_parameters, + STATE(5334), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180636] = 4, + ACTIONS(7776), 1, + anon_sym_COMMA, + STATE(4353), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6775), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [180653] = 6, + ACTIONS(7444), 1, anon_sym_as, - ACTIONS(7155), 1, + ACTIONS(7446), 1, anon_sym_if, - ACTIONS(7157), 1, + ACTIONS(7448), 1, anon_sym_and, - ACTIONS(7159), 1, + ACTIONS(7450), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6689), 2, + ACTIONS(6775), 2, anon_sym_COMMA, anon_sym_RBRACE, - [177076] = 6, - ACTIONS(7628), 1, + [180674] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7781), 1, + anon_sym_BSLASH, + ACTIONS(7779), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [180691] = 5, + ACTIONS(7655), 1, anon_sym_DOT, - ACTIONS(7630), 1, + ACTIONS(7785), 1, anon_sym_COLON, - ACTIONS(7632), 1, + ACTIONS(7787), 1, anon_sym_PIPE, - ACTIONS(7653), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7651), 2, + ACTIONS(7783), 2, sym__newline, anon_sym_SEMI, - [177097] = 4, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6615), 1, - anon_sym_or, + [180709] = 6, + ACTIONS(7789), 1, + anon_sym_pass, + ACTIONS(7791), 1, + sym__newline, + ACTIONS(7793), 1, + sym__indent, + STATE(668), 1, + sym_pass_statement, + STATE(706), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4485), 4, + [180729] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7795), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [177114] = 5, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - anon_sym_as, - STATE(4518), 1, - aux_sym__import_list_repeat1, + anon_sym_PIPE, + [180741] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7655), 2, - sym__newline, - anon_sym_SEMI, - [177132] = 4, - ACTIONS(7661), 1, + ACTIONS(7524), 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [180753] = 5, + ACTIONS(7510), 1, + anon_sym_DOT, + ACTIONS(7514), 1, + anon_sym_COLON, + ACTIONS(7518), 1, anon_sym_PIPE, - STATE(4299), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7527), 3, + ACTIONS(7797), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [180771] = 5, + ACTIONS(7801), 1, anon_sym_COMMA, + ACTIONS(7803), 1, anon_sym_as, - anon_sym_RBRACE, - [177148] = 4, - ACTIONS(7665), 1, - anon_sym_DOT, - STATE(4422), 1, - aux_sym_import_prefix_repeat1, + STATE(4644), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7663), 3, - anon_sym_import, - anon_sym_cimport, - sym_identifier, - [177164] = 2, + ACTIONS(7799), 2, + sym__newline, + anon_sym_SEMI, + [180789] = 4, + ACTIONS(7807), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7667), 5, - anon_sym_RPAREN, + ACTIONS(7805), 2, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [177176] = 6, - ACTIONS(6821), 1, - anon_sym_with, - ACTIONS(6823), 1, - anon_sym_nogil, - ACTIONS(7669), 1, anon_sym_COLON, - ACTIONS(7671), 1, + ACTIONS(7809), 2, + anon_sym_not, + anon_sym_or, + [180805] = 6, + ACTIONS(7789), 1, + anon_sym_pass, + ACTIONS(7791), 1, sym__newline, - STATE(5250), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177196] = 4, - ACTIONS(7661), 1, - anon_sym_PIPE, - STATE(4293), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7376), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [177212] = 3, - STATE(4293), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(7793), 1, + sym__indent, + STATE(668), 1, + sym_pass_statement, + STATE(697), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7503), 4, - anon_sym_COMMA, + [180825] = 6, + ACTIONS(6634), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [177226] = 4, - ACTIONS(7673), 1, - anon_sym_PIPE, - STATE(4299), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(7811), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7503), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [177242] = 2, + [180845] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7676), 5, + ACTIONS(7813), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [177254] = 2, + anon_sym_RBRACK, + [180857] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7473), 5, + ACTIONS(7648), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [177266] = 6, - ACTIONS(6972), 1, + anon_sym_RBRACK, + [180869] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(7678), 1, + ACTIONS(7815), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177286] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [180889] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7680), 1, + ACTIONS(7817), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177306] = 2, + [180909] = 4, + ACTIONS(7819), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7537), 5, - anon_sym_DOT, + ACTIONS(7805), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [177318] = 4, - ACTIONS(7682), 1, + ACTIONS(7821), 2, + anon_sym_not, + anon_sym_or, + [180925] = 4, + ACTIONS(7823), 1, anon_sym_PIPE, - STATE(4431), 1, + STATE(4485), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7376), 3, + ACTIONS(7502), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [177334] = 3, - STATE(4431), 1, + [180941] = 4, + ACTIONS(7825), 1, + anon_sym_COMMA, + STATE(4426), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3143), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [180957] = 3, + STATE(4485), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7503), 4, + ACTIONS(7570), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [177348] = 4, - ACTIONS(7684), 1, + [180971] = 4, + ACTIONS(7827), 1, anon_sym_PIPE, - STATE(4307), 1, + STATE(4373), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7503), 3, + ACTIONS(7570), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [177364] = 2, + [180987] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7667), 5, + ACTIONS(7704), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, - [177376] = 6, - ACTIONS(7687), 1, + anon_sym_PIPE, + [180999] = 6, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(7830), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181019] = 6, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_or, + ACTIONS(7832), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181039] = 6, + ACTIONS(7834), 1, anon_sym_pass, - ACTIONS(7689), 1, + ACTIONS(7836), 1, sym__newline, - ACTIONS(7691), 1, + ACTIONS(7838), 1, sym__indent, - STATE(649), 1, + STATE(1311), 1, sym_pass_statement, - STATE(692), 1, + STATE(1410), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177396] = 6, - ACTIONS(6972), 1, + [181059] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(7254), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(7693), 1, + ACTIONS(7840), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177416] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [181079] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7695), 1, + ACTIONS(7842), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177436] = 2, + [181099] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7634), 5, - anon_sym_DOT, + ACTIONS(7844), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [177448] = 5, - ACTIONS(7628), 1, - anon_sym_DOT, - ACTIONS(7699), 1, - anon_sym_COLON, - ACTIONS(7701), 1, + anon_sym_RBRACE, + [181111] = 4, + ACTIONS(7823), 1, anon_sym_PIPE, + STATE(4485), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7697), 2, - sym__newline, - anon_sym_SEMI, - [177466] = 2, + ACTIONS(7629), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [181127] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7703), 5, + ACTIONS(7642), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [177478] = 2, + [181139] = 6, + ACTIONS(6811), 1, + anon_sym_with, + ACTIONS(6813), 1, + anon_sym_nogil, + ACTIONS(7846), 1, + anon_sym_COLON, + ACTIONS(7848), 1, + sym__newline, + STATE(5456), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7537), 5, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [177490] = 5, - ACTIONS(7475), 1, + [181159] = 5, + ACTIONS(7510), 1, anon_sym_DOT, - ACTIONS(7479), 1, + ACTIONS(7514), 1, anon_sym_COLON, - ACTIONS(7483), 1, + ACTIONS(7518), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7705), 2, + ACTIONS(7653), 2, anon_sym_COMMA, anon_sym_RBRACK, - [177508] = 5, - ACTIONS(7707), 1, - sym_identifier, - ACTIONS(7709), 1, - anon_sym_COLON, - ACTIONS(7713), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7711), 2, - anon_sym_class, - anon_sym_struct, - [177526] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, - anon_sym_as, - ACTIONS(6080), 1, - anon_sym_if, - ACTIONS(7715), 1, - sym__newline, + [181177] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177546] = 6, - ACTIONS(7717), 1, + ACTIONS(7482), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [181189] = 6, + ACTIONS(7850), 1, anon_sym_pass, - ACTIONS(7719), 1, + ACTIONS(7852), 1, sym__newline, - ACTIONS(7721), 1, + ACTIONS(7854), 1, sym__indent, - STATE(1277), 1, + STATE(2993), 1, sym_pass_statement, - STATE(1279), 1, - sym_struct_suite, + STATE(3083), 1, + sym_extern_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181209] = 6, + ACTIONS(7108), 1, + anon_sym_COMMA, + ACTIONS(7856), 1, + anon_sym_LPAREN, + ACTIONS(7858), 1, + anon_sym_EQ, + ACTIONS(7860), 1, + anon_sym_RBRACK, + STATE(5111), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177566] = 2, + [181229] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7723), 5, + ACTIONS(7813), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [177578] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [181241] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7667), 5, + ACTIONS(7648), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [177590] = 6, - ACTIONS(7687), 1, + [181253] = 6, + ACTIONS(7834), 1, anon_sym_pass, - ACTIONS(7689), 1, + ACTIONS(7862), 1, sym__newline, - ACTIONS(7691), 1, + ACTIONS(7864), 1, sym__indent, - STATE(649), 1, + STATE(1347), 1, sym_pass_statement, - STATE(677), 1, - sym_extern_suite, + STATE(1352), 1, + sym_struct_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181273] = 6, + ACTIONS(7102), 1, + sym_identifier, + ACTIONS(7866), 1, + anon_sym_LPAREN, + STATE(4361), 1, + sym_dotted_name, + STATE(4576), 1, + sym_aliased_import, + STATE(5390), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177610] = 2, + [181293] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7725), 5, + ACTIONS(5736), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [177622] = 6, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, - anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, - ACTIONS(7727), 1, - anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [181305] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177642] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + ACTIONS(5688), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [181317] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(7729), 1, - anon_sym_else, + ACTIONS(7868), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177662] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [181337] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7731), 1, + ACTIONS(7870), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177682] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7676), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [177694] = 6, - ACTIONS(7733), 1, - anon_sym_LBRACE, - ACTIONS(7736), 1, - anon_sym_RBRACE, - ACTIONS(7738), 1, - aux_sym_format_specifier_token1, - STATE(4328), 1, - aux_sym_format_specifier_repeat1, - STATE(5108), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [177714] = 4, - ACTIONS(7743), 1, + [181357] = 5, + ACTIONS(3878), 1, + sym_string_start, + ACTIONS(7874), 1, anon_sym_EQ, + STATE(5081), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7741), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7745), 2, - anon_sym_not, - anon_sym_or, - [177730] = 6, - ACTIONS(7747), 1, - anon_sym_pass, - ACTIONS(7749), 1, + ACTIONS(7872), 2, sym__newline, - ACTIONS(7751), 1, - sym__indent, - STATE(2978), 1, - sym_extern_suite, - STATE(3054), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177750] = 6, - ACTIONS(7747), 1, - anon_sym_pass, - ACTIONS(7749), 1, + anon_sym_COMMA, + [181375] = 6, + ACTIONS(6811), 1, + anon_sym_with, + ACTIONS(6813), 1, + anon_sym_nogil, + ACTIONS(7008), 1, + anon_sym_COLON, + ACTIONS(7010), 1, sym__newline, - ACTIONS(7751), 1, - sym__indent, - STATE(2950), 1, - sym_extern_suite, - STATE(3054), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177770] = 4, - ACTIONS(7753), 1, - anon_sym_PIPE, - STATE(4332), 1, - aux_sym_union_pattern_repeat1, + STATE(5430), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7503), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [177786] = 6, - ACTIONS(6547), 1, + [181395] = 4, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6611), 1, - anon_sym_as, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7756), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177806] = 6, - ACTIONS(7758), 1, - anon_sym_COLON, - ACTIONS(7760), 1, - anon_sym_EQ, - ACTIONS(7762), 1, - anon_sym_RBRACE, - ACTIONS(7764), 1, - sym_type_conversion, - STATE(5489), 1, - sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177826] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + ACTIONS(4650), 3, anon_sym_as, - ACTIONS(6613), 1, anon_sym_if, - ACTIONS(6615), 1, - anon_sym_or, - ACTIONS(7766), 1, anon_sym_COLON, + [181411] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177846] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + ACTIONS(7876), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6613), 1, anon_sym_if, - ACTIONS(6615), 1, - anon_sym_or, - ACTIONS(7768), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177866] = 6, - ACTIONS(7747), 1, + anon_sym_PIPE, + [181423] = 6, + ACTIONS(7789), 1, anon_sym_pass, - ACTIONS(7770), 1, + ACTIONS(7878), 1, sym__newline, - ACTIONS(7772), 1, + ACTIONS(7880), 1, sym__indent, - STATE(2965), 1, + STATE(677), 1, sym_pass_statement, - STATE(2990), 1, + STATE(695), 1, sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177886] = 5, - ACTIONS(7774), 1, - sym_identifier, - ACTIONS(7776), 1, - anon_sym_COLON, - ACTIONS(7780), 1, - sym__newline, + [181443] = 4, + ACTIONS(7882), 1, + anon_sym_PIPE, + STATE(4419), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7778), 2, - anon_sym_class, - anon_sym_struct, - [177904] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + ACTIONS(7661), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [181459] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7782), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177924] = 2, + ACTIONS(7884), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7784), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [177936] = 6, - ACTIONS(7687), 1, + [181479] = 6, + ACTIONS(7789), 1, anon_sym_pass, - ACTIONS(7786), 1, + ACTIONS(7791), 1, sym__newline, - ACTIONS(7788), 1, + ACTIONS(7793), 1, sym__indent, - STATE(658), 1, + STATE(668), 1, sym_pass_statement, - STATE(685), 1, - sym_struct_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177956] = 2, + STATE(712), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6484), 5, + [181499] = 4, + ACTIONS(7888), 1, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [177968] = 5, - ACTIONS(7790), 1, - sym_identifier, - ACTIONS(7792), 1, - anon_sym_COLON, - ACTIONS(7796), 1, - sym__newline, + STATE(4475), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7794), 2, - anon_sym_class, - anon_sym_struct, - [177986] = 2, + ACTIONS(7886), 3, + anon_sym_import, + anon_sym_cimport, + sym_identifier, + [181515] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7798), 5, + ACTIONS(7890), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [177998] = 6, - ACTIONS(7000), 1, - anon_sym_COMMA, - ACTIONS(7800), 1, - anon_sym_LPAREN, - ACTIONS(7802), 1, - anon_sym_EQ, - ACTIONS(7804), 1, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - STATE(4973), 1, - aux_sym_type_index_repeat1, + [181527] = 6, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_or, + ACTIONS(7892), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178018] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [181547] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7806), 1, + ACTIONS(7894), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178038] = 2, + [181567] = 6, + ACTIONS(7789), 1, + anon_sym_pass, + ACTIONS(7878), 1, + sym__newline, + ACTIONS(7880), 1, + sym__indent, + STATE(677), 1, + sym_pass_statement, + STATE(678), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7808), 5, + [181587] = 5, + ACTIONS(7896), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178050] = 6, - ACTIONS(7810), 1, - anon_sym_COLON, - ACTIONS(7812), 1, - anon_sym_LBRACK, - ACTIONS(7814), 1, - anon_sym_nogil, - ACTIONS(7816), 1, - sym__newline, - STATE(4938), 1, - sym_template_params, + ACTIONS(7898), 1, + anon_sym_RBRACE, + STATE(4748), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178070] = 2, + ACTIONS(6818), 2, + anon_sym_COLON, + anon_sym_PIPE, + [181605] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7818), 5, + ACTIONS(3816), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [178082] = 6, - ACTIONS(7747), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [181617] = 6, + ACTIONS(7834), 1, anon_sym_pass, - ACTIONS(7770), 1, + ACTIONS(7836), 1, sym__newline, - ACTIONS(7772), 1, + ACTIONS(7838), 1, sym__indent, - STATE(2965), 1, + STATE(1295), 1, + sym_extern_suite, + STATE(1311), 1, sym_pass_statement, - STATE(3032), 1, - sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178102] = 4, - ACTIONS(7682), 1, + [181637] = 4, + ACTIONS(7882), 1, anon_sym_PIPE, - STATE(4431), 1, + STATE(4401), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7452), 3, + ACTIONS(7502), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [178118] = 2, + anon_sym_RBRACE, + [181653] = 6, + ACTIONS(7850), 1, + anon_sym_pass, + ACTIONS(7900), 1, + sym__newline, + ACTIONS(7902), 1, + sym__indent, + STATE(3007), 1, + sym_pass_statement, + STATE(3059), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7820), 5, + [181673] = 5, + ACTIONS(7904), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(7906), 1, + anon_sym_RBRACE, + STATE(5020), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6818), 2, anon_sym_COLON, anon_sym_PIPE, - [178130] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [181691] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7822), 1, + ACTIONS(7908), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178150] = 2, + [181711] = 3, + STATE(4401), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7824), 5, + ACTIONS(7570), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [178162] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + anon_sym_RBRACE, + [181725] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6080), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(7826), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178182] = 2, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(7910), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7828), 5, - anon_sym_COMMA, + [181745] = 6, + ACTIONS(6634), 1, anon_sym_as, + ACTIONS(6636), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178194] = 6, - ACTIONS(6547), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6611), 1, - anon_sym_as, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7830), 1, + ACTIONS(7912), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178214] = 2, + [181765] = 4, + ACTIONS(7914), 1, + anon_sym_PIPE, + STATE(4419), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7832), 5, + ACTIONS(7570), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178226] = 5, - ACTIONS(7834), 1, - sym_identifier, - ACTIONS(7836), 1, + anon_sym_RBRACE, + [181781] = 6, + ACTIONS(7917), 1, anon_sym_COLON, - ACTIONS(7840), 1, - sym__newline, + ACTIONS(7919), 1, + anon_sym_EQ, + ACTIONS(7921), 1, + anon_sym_RBRACE, + ACTIONS(7923), 1, + sym_type_conversion, + STATE(5634), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7838), 2, - anon_sym_class, - anon_sym_struct, - [178244] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [181801] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7842), 1, - anon_sym_else, + ACTIONS(7925), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178264] = 5, - ACTIONS(7844), 1, - anon_sym_COMMA, - ACTIONS(7846), 1, - anon_sym_RBRACE, - STATE(4780), 1, - aux_sym_dict_pattern_repeat1, + [181821] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 2, - anon_sym_COLON, - anon_sym_PIPE, - [178282] = 6, - ACTIONS(6063), 1, - anon_sym_and, - ACTIONS(6065), 1, - anon_sym_or, - ACTIONS(6078), 1, + ACTIONS(7927), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6080), 1, anon_sym_if, - ACTIONS(7848), 1, + anon_sym_COLON, + anon_sym_PIPE, + [181833] = 6, + ACTIONS(6799), 1, + anon_sym_COLON, + ACTIONS(6809), 1, sym__newline, + ACTIONS(6811), 1, + anon_sym_with, + ACTIONS(6813), 1, + anon_sym_nogil, + STATE(5380), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178302] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [181853] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7850), 1, + ACTIONS(7929), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178322] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, - anon_sym_as, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, - anon_sym_or, - ACTIONS(7852), 1, - anon_sym_else, + [181873] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178342] = 2, + ACTIONS(5748), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [181885] = 4, + ACTIONS(7931), 1, + anon_sym_COMMA, + STATE(4426), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7854), 5, - anon_sym_COMMA, + ACTIONS(6775), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [181901] = 6, + ACTIONS(6634), 1, anon_sym_as, + ACTIONS(6636), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178354] = 6, - ACTIONS(7747), 1, - anon_sym_pass, - ACTIONS(7770), 1, - sym__newline, - ACTIONS(7772), 1, - sym__indent, - STATE(2965), 1, - sym_pass_statement, - STATE(2966), 1, - sym_struct_suite, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(7934), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178374] = 2, + [181921] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7856), 5, + ACTIONS(7936), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178386] = 2, + [181933] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7858), 5, + ACTIONS(7938), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178398] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [181945] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7860), 1, - anon_sym_COLON, + ACTIONS(7940), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178418] = 2, + [181965] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7862), 5, + ACTIONS(7942), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [178430] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7485), 5, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [178442] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [181977] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7864), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178462] = 6, - ACTIONS(7687), 1, - anon_sym_pass, - ACTIONS(7689), 1, - sym__newline, - ACTIONS(7691), 1, - sym__indent, - STATE(649), 1, - sym_pass_statement, - STATE(650), 1, - sym_extern_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178482] = 6, - ACTIONS(7812), 1, - anon_sym_LBRACK, - ACTIONS(7866), 1, - anon_sym_COLON, - ACTIONS(7868), 1, - anon_sym_nogil, - ACTIONS(7870), 1, - sym__newline, - STATE(5066), 1, - sym_template_params, + ACTIONS(7944), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178502] = 3, - ACTIONS(7872), 1, - anon_sym_LPAREN, + [181997] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 4, + ACTIONS(7813), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [182009] = 6, + ACTIONS(6634), 1, anon_sym_as, - anon_sym_PIPE, - [178516] = 6, - ACTIONS(6817), 1, - anon_sym_COLON, - ACTIONS(6819), 1, - sym__newline, - ACTIONS(6821), 1, - anon_sym_with, - ACTIONS(6823), 1, - anon_sym_nogil, - STATE(5243), 1, - sym_gil_spec, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(7946), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178536] = 5, - ACTIONS(7874), 1, + [182029] = 5, + ACTIONS(7948), 1, sym_identifier, - ACTIONS(7876), 1, + ACTIONS(7950), 1, anon_sym_COLON, - ACTIONS(7880), 1, + ACTIONS(7954), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7878), 2, - anon_sym_class, - anon_sym_struct, - [178554] = 4, - ACTIONS(7882), 1, - anon_sym_PIPE, - STATE(4433), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7452), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [178570] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7884), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178582] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7886), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178594] = 6, - ACTIONS(4928), 1, - anon_sym_COLON, - ACTIONS(7448), 1, - anon_sym_if, - ACTIONS(7888), 1, - anon_sym_COMMA, - STATE(4613), 1, - aux_sym_case_clause_repeat1, - STATE(5536), 1, - sym_if_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178614] = 6, - ACTIONS(7717), 1, + ACTIONS(7952), 2, + anon_sym_class, + anon_sym_struct, + [182047] = 6, + ACTIONS(7789), 1, anon_sym_pass, - ACTIONS(7890), 1, + ACTIONS(7878), 1, sym__newline, - ACTIONS(7892), 1, + ACTIONS(7880), 1, sym__indent, - STATE(1244), 1, + STATE(677), 1, sym_pass_statement, - STATE(1248), 1, - sym_extern_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178634] = 2, + STATE(705), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5654), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [178646] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [182067] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7894), 1, + ACTIONS(7956), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178666] = 6, - ACTIONS(6972), 1, + [182087] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7896), 1, - anon_sym_RPAREN, + ACTIONS(7958), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178686] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, - anon_sym_as, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, - anon_sym_or, - ACTIONS(7898), 1, - anon_sym_else, + [182107] = 6, + ACTIONS(7834), 1, + anon_sym_pass, + ACTIONS(7862), 1, + sym__newline, + ACTIONS(7864), 1, + sym__indent, + STATE(1324), 1, + sym_struct_suite, + STATE(1347), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178706] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, - anon_sym_as, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, - anon_sym_or, - ACTIONS(7900), 1, - anon_sym_COLON, + [182127] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178726] = 3, - ACTIONS(7902), 1, + ACTIONS(7631), 5, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [182139] = 6, + ACTIONS(7789), 1, + anon_sym_pass, + ACTIONS(7878), 1, + sym__newline, + ACTIONS(7880), 1, + sym__indent, + STATE(677), 1, + sym_pass_statement, + STATE(688), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 4, - anon_sym_COMMA, + [182159] = 6, + ACTIONS(6634), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [178740] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7904), 1, - anon_sym_as, - ACTIONS(7906), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178760] = 6, - ACTIONS(6821), 1, - anon_sym_with, - ACTIONS(6823), 1, - anon_sym_nogil, - ACTIONS(6938), 1, + ACTIONS(7960), 1, anon_sym_COLON, - ACTIONS(6940), 1, - sym__newline, - STATE(5194), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178780] = 6, - ACTIONS(7717), 1, - anon_sym_pass, - ACTIONS(7719), 1, - sym__newline, - ACTIONS(7721), 1, - sym__indent, - STATE(1277), 1, - sym_pass_statement, - STATE(1282), 1, - sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178800] = 2, + [182179] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7473), 5, - anon_sym_RPAREN, + ACTIONS(7890), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [178812] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + anon_sym_RBRACE, + [182191] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7908), 1, + ACTIONS(7194), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178832] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [182211] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7910), 1, + ACTIONS(7962), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178852] = 6, - ACTIONS(6821), 1, - anon_sym_with, - ACTIONS(6823), 1, - anon_sym_nogil, - ACTIONS(6882), 1, + [182231] = 6, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(7964), 1, + anon_sym_as, + ACTIONS(7966), 1, anon_sym_COLON, - ACTIONS(6884), 1, - sym__newline, - STATE(5211), 1, - sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178872] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, - anon_sym_as, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, - anon_sym_or, - ACTIONS(7912), 1, + [182251] = 5, + ACTIONS(7968), 1, + sym_identifier, + ACTIONS(7970), 1, anon_sym_COLON, + ACTIONS(7974), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178892] = 4, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6615), 1, - anon_sym_or, + ACTIONS(7972), 2, + anon_sym_class, + anon_sym_struct, + [182269] = 5, + ACTIONS(7976), 1, + sym_identifier, + ACTIONS(7978), 1, + anon_sym_COLON, + ACTIONS(7982), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4485), 3, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [178908] = 2, + ACTIONS(7980), 2, + anon_sym_class, + anon_sym_struct, + [182287] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7588), 5, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(7984), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [178920] = 6, - ACTIONS(6821), 1, + [182299] = 6, + ACTIONS(6811), 1, anon_sym_with, - ACTIONS(6823), 1, + ACTIONS(6813), 1, anon_sym_nogil, - ACTIONS(7914), 1, + ACTIONS(7986), 1, anon_sym_COLON, - ACTIONS(7916), 1, + ACTIONS(7988), 1, sym__newline, - STATE(5346), 1, + STATE(5410), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178940] = 3, - STATE(4433), 1, - aux_sym_union_pattern_repeat1, + [182319] = 6, + ACTIONS(6634), 1, + anon_sym_as, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(7990), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7503), 4, - anon_sym_RPAREN, + [182339] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7992), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [178954] = 6, - ACTIONS(7000), 1, - anon_sym_COMMA, - ACTIONS(7800), 1, - anon_sym_LPAREN, - ACTIONS(7918), 1, - anon_sym_EQ, - ACTIONS(7920), 1, - anon_sym_RBRACK, - STATE(5091), 1, - aux_sym_type_index_repeat1, + [182351] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178974] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + ACTIONS(7994), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6613), 1, anon_sym_if, - ACTIONS(6615), 1, - anon_sym_or, - ACTIONS(7057), 1, anon_sym_COLON, + anon_sym_PIPE, + [182363] = 6, + ACTIONS(5034), 1, + anon_sym_COLON, + ACTIONS(7617), 1, + anon_sym_if, + ACTIONS(7996), 1, + anon_sym_COMMA, + STATE(4619), 1, + aux_sym_case_clause_repeat1, + STATE(5568), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178994] = 5, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(7924), 1, - anon_sym_EQ, - STATE(4862), 1, - sym_string, + [182383] = 6, + ACTIONS(6811), 1, + anon_sym_with, + ACTIONS(6813), 1, + anon_sym_nogil, + ACTIONS(7998), 1, + anon_sym_COLON, + ACTIONS(8000), 1, + sym__newline, + STATE(5238), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7922), 2, + [182403] = 6, + ACTIONS(7850), 1, + anon_sym_pass, + ACTIONS(7852), 1, sym__newline, - anon_sym_COMMA, - [179012] = 6, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(7854), 1, + sym__indent, + STATE(2993), 1, + sym_pass_statement, + STATE(3051), 1, + sym_extern_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182423] = 6, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7926), 1, - anon_sym_RPAREN, + ACTIONS(7964), 1, + anon_sym_as, + ACTIONS(8002), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179032] = 6, - ACTIONS(7687), 1, - anon_sym_pass, - ACTIONS(7786), 1, - sym__newline, - ACTIONS(7788), 1, - sym__indent, - STATE(658), 1, - sym_pass_statement, - STATE(659), 1, - sym_struct_suite, - ACTIONS(3), 2, + [182443] = 6, + ACTIONS(8004), 1, + anon_sym_LBRACE, + ACTIONS(8007), 1, + anon_sym_RBRACE, + ACTIONS(8009), 1, + aux_sym_format_specifier_token1, + STATE(4458), 1, + aux_sym_format_specifier_repeat1, + STATE(4821), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [179052] = 6, - ACTIONS(7747), 1, + [182463] = 6, + ACTIONS(7834), 1, anon_sym_pass, - ACTIONS(7749), 1, + ACTIONS(7862), 1, sym__newline, - ACTIONS(7751), 1, + ACTIONS(7864), 1, sym__indent, - STATE(3052), 1, - sym_extern_suite, - STATE(3054), 1, + STATE(1347), 1, sym_pass_statement, + STATE(1376), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179072] = 2, + [182483] = 6, + ACTIONS(7917), 1, + anon_sym_COLON, + ACTIONS(8012), 1, + anon_sym_EQ, + ACTIONS(8014), 1, + anon_sym_RBRACE, + ACTIONS(8016), 1, + sym_type_conversion, + STATE(5638), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7928), 5, - anon_sym_COMMA, + [182503] = 6, + ACTIONS(6634), 1, anon_sym_as, + ACTIONS(6636), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [179084] = 6, - ACTIONS(6547), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6611), 1, - anon_sym_as, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7930), 1, - anon_sym_else, + ACTIONS(8018), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179104] = 6, - ACTIONS(6821), 1, + [182523] = 6, + ACTIONS(6811), 1, anon_sym_with, - ACTIONS(6823), 1, + ACTIONS(6813), 1, anon_sym_nogil, - ACTIONS(6868), 1, + ACTIONS(6872), 1, anon_sym_COLON, - ACTIONS(6870), 1, + ACTIONS(6874), 1, sym__newline, - STATE(5345), 1, + STATE(5452), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179124] = 5, - ACTIONS(7233), 1, - sym_identifier, - STATE(4567), 1, - sym_dotted_name, - STATE(4867), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7932), 2, - sym__newline, - anon_sym_SEMI, - [179142] = 2, + [182543] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7485), 5, - anon_sym_DOT, + ACTIONS(8020), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [179154] = 6, - ACTIONS(7747), 1, + [182555] = 6, + ACTIONS(6634), 1, + anon_sym_as, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(8022), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182575] = 6, + ACTIONS(7834), 1, anon_sym_pass, - ACTIONS(7749), 1, + ACTIONS(7836), 1, sym__newline, - ACTIONS(7751), 1, + ACTIONS(7838), 1, sym__indent, - STATE(2927), 1, - sym_extern_suite, - STATE(3054), 1, + STATE(1311), 1, sym_pass_statement, + STATE(1321), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179174] = 6, - ACTIONS(7717), 1, + [182595] = 6, + ACTIONS(7789), 1, anon_sym_pass, - ACTIONS(7890), 1, + ACTIONS(7791), 1, sym__newline, - ACTIONS(7892), 1, + ACTIONS(7793), 1, sym__indent, - STATE(1244), 1, + STATE(668), 1, sym_pass_statement, - STATE(1327), 1, + STATE(685), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179194] = 6, - ACTIONS(7233), 1, - sym_identifier, - ACTIONS(7934), 1, - anon_sym_LPAREN, - STATE(4292), 1, - sym_dotted_name, - STATE(4596), 1, - sym_aliased_import, - STATE(5165), 1, - sym__import_list, + [182615] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179214] = 6, - ACTIONS(7000), 1, + ACTIONS(8024), 5, anon_sym_COMMA, - ACTIONS(7800), 1, - anon_sym_LPAREN, - ACTIONS(7936), 1, - anon_sym_EQ, - ACTIONS(7938), 1, - anon_sym_RBRACK, - STATE(4746), 1, - aux_sym_type_index_repeat1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [182627] = 4, + ACTIONS(8026), 1, + anon_sym_PIPE, + STATE(4491), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179234] = 6, - ACTIONS(7717), 1, + ACTIONS(7661), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [182643] = 6, + ACTIONS(7850), 1, anon_sym_pass, - ACTIONS(7890), 1, + ACTIONS(7852), 1, sym__newline, - ACTIONS(7892), 1, + ACTIONS(7854), 1, sym__indent, - STATE(1182), 1, - sym_extern_suite, - STATE(1244), 1, + STATE(2993), 1, sym_pass_statement, + STATE(3025), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179254] = 6, - ACTIONS(7812), 1, - anon_sym_LBRACK, - ACTIONS(7940), 1, - anon_sym_COLON, - ACTIONS(7942), 1, - anon_sym_nogil, - ACTIONS(7944), 1, - sym__newline, - STATE(4846), 1, - sym_template_params, + [182663] = 6, + ACTIONS(8028), 1, + anon_sym_LBRACE, + ACTIONS(8030), 1, + anon_sym_RBRACE, + ACTIONS(8032), 1, + aux_sym_format_specifier_token1, + STATE(4534), 1, + aux_sym_format_specifier_repeat1, + STATE(4821), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [182683] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179274] = 6, - ACTIONS(7747), 1, + ACTIONS(8034), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [182695] = 6, + ACTIONS(7834), 1, anon_sym_pass, - ACTIONS(7770), 1, + ACTIONS(7862), 1, sym__newline, - ACTIONS(7772), 1, + ACTIONS(7864), 1, sym__indent, - STATE(2930), 1, - sym_struct_suite, - STATE(2965), 1, + STATE(1347), 1, sym_pass_statement, + STATE(1363), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179294] = 2, + [182715] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7946), 5, + ACTIONS(6546), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [179306] = 6, - ACTIONS(7717), 1, + [182727] = 6, + ACTIONS(7850), 1, anon_sym_pass, - ACTIONS(7890), 1, + ACTIONS(7900), 1, sym__newline, - ACTIONS(7892), 1, + ACTIONS(7902), 1, sym__indent, - STATE(1180), 1, - sym_extern_suite, - STATE(1244), 1, + STATE(3007), 1, sym_pass_statement, + STATE(3031), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179326] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3720), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [179338] = 4, - ACTIONS(7950), 1, + [182747] = 4, + ACTIONS(8038), 1, anon_sym_DOT, - STATE(4422), 1, + STATE(4475), 1, aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7948), 3, + ACTIONS(8036), 3, anon_sym_import, anon_sym_cimport, sym_identifier, - [179354] = 4, - ACTIONS(7953), 1, - anon_sym_COMMA, - STATE(4423), 1, - aux_sym_assert_statement_repeat1, + [182763] = 4, + ACTIONS(8026), 1, + anon_sym_PIPE, + STATE(4468), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6689), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [179370] = 6, - ACTIONS(7000), 1, + ACTIONS(7502), 3, anon_sym_COMMA, - ACTIONS(7800), 1, - anon_sym_LPAREN, - ACTIONS(7956), 1, - anon_sym_EQ, - ACTIONS(7958), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(4771), 1, - aux_sym_type_index_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [179390] = 6, - ACTIONS(7717), 1, + [182779] = 6, + ACTIONS(7850), 1, anon_sym_pass, - ACTIONS(7719), 1, + ACTIONS(7852), 1, sym__newline, - ACTIONS(7721), 1, + ACTIONS(7854), 1, sym__indent, - STATE(1251), 1, - sym_struct_suite, - STATE(1277), 1, + STATE(2993), 1, sym_pass_statement, + STATE(2994), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179410] = 6, - ACTIONS(7960), 1, - anon_sym_LBRACE, - ACTIONS(7962), 1, - anon_sym_RBRACE, - ACTIONS(7964), 1, - aux_sym_format_specifier_token1, - STATE(4436), 1, - aux_sym_format_specifier_repeat1, - STATE(5108), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [179430] = 6, - ACTIONS(6821), 1, - anon_sym_with, - ACTIONS(6823), 1, - anon_sym_nogil, - ACTIONS(6896), 1, - anon_sym_COLON, - ACTIONS(6898), 1, - sym__newline, - STATE(5385), 1, - sym_gil_spec, + [182799] = 3, + STATE(4468), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179450] = 6, - ACTIONS(6821), 1, - anon_sym_with, - ACTIONS(6823), 1, - anon_sym_nogil, - ACTIONS(6900), 1, + ACTIONS(7570), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [182813] = 6, + ACTIONS(8041), 1, anon_sym_COLON, - ACTIONS(6902), 1, + ACTIONS(8043), 1, + anon_sym_LBRACK, + ACTIONS(8045), 1, + anon_sym_nogil, + ACTIONS(8047), 1, sym__newline, - STATE(5365), 1, - sym_gil_spec, + STATE(5194), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179470] = 2, + [182833] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3904), 5, - anon_sym_DOT, + ACTIONS(6644), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [179482] = 2, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [182845] = 5, + ACTIONS(8049), 1, + sym_identifier, + ACTIONS(8051), 1, + anon_sym_COLON, + ACTIONS(8055), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7493), 5, - anon_sym_DOT, + ACTIONS(8053), 2, + anon_sym_class, + anon_sym_struct, + [182863] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8057), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [179494] = 4, - ACTIONS(7682), 1, anon_sym_PIPE, - STATE(4307), 1, - aux_sym_union_pattern_repeat1, + [182875] = 6, + ACTIONS(6634), 1, + anon_sym_as, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(8059), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7527), 3, - anon_sym_COMMA, + [182895] = 6, + ACTIONS(7250), 1, anon_sym_as, - anon_sym_RBRACK, - [179510] = 2, + ACTIONS(7252), 1, + anon_sym_if, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, + anon_sym_or, + ACTIONS(8061), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7588), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [179522] = 4, - ACTIONS(7882), 1, + [182915] = 4, + ACTIONS(7823), 1, anon_sym_PIPE, - STATE(4332), 1, + STATE(4373), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7527), 3, + ACTIONS(7661), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [179538] = 6, - ACTIONS(7717), 1, - anon_sym_pass, - ACTIONS(7890), 1, - sym__newline, - ACTIONS(7892), 1, - sym__indent, - STATE(1244), 1, - sym_pass_statement, - STATE(1246), 1, - sym_extern_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [179558] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [182931] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(7966), 1, - anon_sym_COLON, + ACTIONS(8063), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179578] = 6, - ACTIONS(7960), 1, - anon_sym_LBRACE, - ACTIONS(7968), 1, - anon_sym_RBRACE, - ACTIONS(7970), 1, - aux_sym_format_specifier_token1, - STATE(4328), 1, - aux_sym_format_specifier_repeat1, - STATE(5108), 1, - sym_interpolation, - ACTIONS(5), 2, + [182951] = 5, + ACTIONS(7102), 1, + sym_identifier, + STATE(4642), 1, + sym_dotted_name, + STATE(5148), 1, + sym_aliased_import, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179598] = 5, - ACTIONS(7972), 1, - sym_identifier, - ACTIONS(7974), 1, - anon_sym_COLON, - ACTIONS(7978), 1, + ACTIONS(8065), 2, + sym__newline, + anon_sym_SEMI, + [182969] = 6, + ACTIONS(7789), 1, + anon_sym_pass, + ACTIONS(7791), 1, sym__newline, + ACTIONS(7793), 1, + sym__indent, + STATE(668), 1, + sym_pass_statement, + STATE(669), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7976), 2, - anon_sym_class, - anon_sym_struct, - [179616] = 2, + [182989] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6536), 5, - anon_sym_COMMA, + ACTIONS(7704), 5, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [179628] = 6, - ACTIONS(7747), 1, - anon_sym_pass, - ACTIONS(7749), 1, + anon_sym_PIPE, + [183001] = 5, + ACTIONS(7102), 1, + sym_identifier, + STATE(4642), 1, + sym_dotted_name, + STATE(5148), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8067), 2, sym__newline, - ACTIONS(7751), 1, - sym__indent, - STATE(2942), 1, - sym_extern_suite, - STATE(3054), 1, - sym_pass_statement, + anon_sym_SEMI, + [183019] = 4, + ACTIONS(8069), 1, + anon_sym_PIPE, + STATE(4491), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179648] = 5, - ACTIONS(7233), 1, + ACTIONS(7570), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [183035] = 5, + ACTIONS(7102), 1, sym_identifier, - STATE(4567), 1, + STATE(4642), 1, sym_dotted_name, - STATE(4867), 1, + STATE(5148), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7980), 2, + ACTIONS(8067), 2, sym__newline, anon_sym_SEMI, - [179666] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, - anon_sym_as, - ACTIONS(6613), 1, + [183053] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7648), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6615), 1, - anon_sym_or, - ACTIONS(7982), 1, - anon_sym_else, + anon_sym_async, + anon_sym_for, + [183065] = 6, + ACTIONS(8043), 1, + anon_sym_LBRACK, + ACTIONS(8072), 1, + anon_sym_COLON, + ACTIONS(8074), 1, + anon_sym_nogil, + ACTIONS(8076), 1, + sym__newline, + STATE(5150), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179686] = 6, - ACTIONS(7687), 1, + [183085] = 6, + ACTIONS(7834), 1, anon_sym_pass, - ACTIONS(7689), 1, + ACTIONS(7836), 1, sym__newline, - ACTIONS(7691), 1, + ACTIONS(7838), 1, sym__indent, - STATE(649), 1, - sym_pass_statement, - STATE(686), 1, + STATE(1249), 1, sym_extern_suite, + STATE(1311), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179706] = 6, - ACTIONS(7687), 1, + [183105] = 6, + ACTIONS(7108), 1, + anon_sym_COMMA, + ACTIONS(7856), 1, + anon_sym_LPAREN, + ACTIONS(8078), 1, + anon_sym_EQ, + ACTIONS(8080), 1, + anon_sym_RBRACK, + STATE(4952), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183125] = 6, + ACTIONS(7850), 1, anon_sym_pass, - ACTIONS(7689), 1, + ACTIONS(7852), 1, sym__newline, - ACTIONS(7691), 1, + ACTIONS(7854), 1, sym__indent, - STATE(649), 1, + STATE(2993), 1, sym_pass_statement, - STATE(666), 1, + STATE(3072), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179726] = 6, - ACTIONS(6972), 1, - anon_sym_as, - ACTIONS(6974), 1, - anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, - ACTIONS(7984), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [179746] = 6, - ACTIONS(6821), 1, - anon_sym_with, - ACTIONS(6823), 1, - anon_sym_nogil, - ACTIONS(7986), 1, + [183145] = 6, + ACTIONS(8043), 1, + anon_sym_LBRACK, + ACTIONS(8082), 1, anon_sym_COLON, - ACTIONS(7988), 1, + ACTIONS(8084), 1, + anon_sym_nogil, + ACTIONS(8086), 1, sym__newline, - STATE(5176), 1, - sym_gil_spec, + STATE(5041), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179766] = 5, - ACTIONS(7990), 1, - anon_sym_COMMA, - ACTIONS(7992), 1, - anon_sym_RBRACE, - STATE(4791), 1, - aux_sym_dict_pattern_repeat1, + [183165] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 2, + ACTIONS(7631), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [179784] = 6, - ACTIONS(7687), 1, - anon_sym_pass, - ACTIONS(7786), 1, - sym__newline, - ACTIONS(7788), 1, - sym__indent, - STATE(658), 1, - sym_pass_statement, - STATE(669), 1, - sym_struct_suite, + [183177] = 3, + ACTIONS(8088), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179804] = 2, + ACTIONS(6818), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [183191] = 4, + ACTIONS(7882), 1, + anon_sym_PIPE, + STATE(4401), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7994), 5, + ACTIONS(7629), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + anon_sym_RBRACE, + [183207] = 6, + ACTIONS(6811), 1, + anon_sym_with, + ACTIONS(6813), 1, + anon_sym_nogil, + ACTIONS(7030), 1, anon_sym_COLON, - anon_sym_PIPE, - [179816] = 6, - ACTIONS(7717), 1, - anon_sym_pass, - ACTIONS(7719), 1, + ACTIONS(7032), 1, sym__newline, - ACTIONS(7721), 1, - sym__indent, - STATE(1254), 1, - sym_struct_suite, - STATE(1277), 1, - sym_pass_statement, + STATE(5434), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179836] = 6, - ACTIONS(7687), 1, - anon_sym_pass, - ACTIONS(7786), 1, + [183227] = 5, + ACTIONS(8090), 1, + sym_identifier, + ACTIONS(8092), 1, + anon_sym_COLON, + ACTIONS(8096), 1, sym__newline, - ACTIONS(7788), 1, - sym__indent, - STATE(658), 1, - sym_pass_statement, - STATE(675), 1, - sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179856] = 5, - ACTIONS(7233), 1, - sym_identifier, - STATE(4567), 1, - sym_dotted_name, - STATE(4867), 1, - sym_aliased_import, + ACTIONS(8094), 2, + anon_sym_class, + anon_sym_struct, + [183245] = 3, + ACTIONS(8098), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7980), 2, - sym__newline, - anon_sym_SEMI, - [179874] = 5, - ACTIONS(7996), 1, + ACTIONS(6818), 4, anon_sym_COMMA, - ACTIONS(7998), 1, - anon_sym_RBRACE, - STATE(4720), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [183259] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 2, + ACTIONS(3949), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [179892] = 3, - ACTIONS(8000), 1, + [183271] = 6, + ACTIONS(7108), 1, + anon_sym_COMMA, + ACTIONS(7856), 1, anon_sym_LPAREN, + ACTIONS(8100), 1, + anon_sym_EQ, + ACTIONS(8102), 1, + anon_sym_RBRACK, + STATE(4885), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [179906] = 4, - ACTIONS(7661), 1, - anon_sym_PIPE, - STATE(4293), 1, - aux_sym_union_pattern_repeat1, + [183291] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7452), 3, + ACTIONS(7724), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [179922] = 2, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [183303] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8002), 5, + ACTIONS(8104), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [179934] = 2, + [183315] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8004), 5, + ACTIONS(7844), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [179946] = 4, - ACTIONS(8006), 1, - anon_sym_EQ, + [183327] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7741), 2, + ACTIONS(8106), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(8008), 2, - anon_sym_not, - anon_sym_or, - [179962] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6613), 1, + anon_sym_PIPE, + [183339] = 6, + ACTIONS(7250), 1, + anon_sym_as, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(7904), 1, + ACTIONS(8108), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183359] = 6, + ACTIONS(7850), 1, + anon_sym_pass, + ACTIONS(7900), 1, + sym__newline, + ACTIONS(7902), 1, + sym__indent, + STATE(3007), 1, + sym_pass_statement, + STATE(3041), 1, + sym_struct_suite, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183379] = 6, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(8010), 1, - anon_sym_COLON, + ACTIONS(6159), 1, + anon_sym_if, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, + anon_sym_or, + ACTIONS(8110), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183399] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7890), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [183411] = 6, + ACTIONS(7850), 1, + anon_sym_pass, + ACTIONS(7900), 1, + sym__newline, + ACTIONS(7902), 1, + sym__indent, + STATE(3007), 1, + sym_pass_statement, + STATE(3008), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179982] = 2, + [183431] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8012), 5, + ACTIONS(8112), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [179994] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [183443] = 6, + ACTIONS(7250), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(7252), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(7254), 1, + anon_sym_and, + ACTIONS(7256), 1, anon_sym_or, - ACTIONS(8014), 1, - anon_sym_else, + ACTIONS(8114), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180014] = 6, - ACTIONS(6972), 1, + [183463] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6974), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6976), 1, + ACTIONS(6638), 1, anon_sym_and, - ACTIONS(6978), 1, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(8016), 1, - anon_sym_RPAREN, + ACTIONS(8116), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180034] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + [183483] = 6, + ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, anon_sym_or, - ACTIONS(8018), 1, + ACTIONS(8118), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180054] = 2, + [183503] = 6, + ACTIONS(6811), 1, + anon_sym_with, + ACTIONS(6813), 1, + anon_sym_nogil, + ACTIONS(7012), 1, + anon_sym_COLON, + ACTIONS(7014), 1, + sym__newline, + STATE(5284), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7618), 5, - anon_sym_DOT, + [183523] = 6, + ACTIONS(7108), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(7856), 1, + anon_sym_LPAREN, + ACTIONS(8120), 1, + anon_sym_EQ, + ACTIONS(8122), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [180066] = 4, - ACTIONS(8020), 1, - anon_sym_COMMA, - STATE(4423), 1, - aux_sym_assert_statement_repeat1, + STATE(4837), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3071), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [180082] = 2, + [183543] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7676), 5, + ACTIONS(8124), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [180094] = 5, - ACTIONS(8022), 1, - anon_sym_COMMA, - ACTIONS(8024), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6749), 2, anon_sym_COLON, anon_sym_PIPE, - [180112] = 2, + [183555] = 6, + ACTIONS(6634), 1, + anon_sym_as, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(8126), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7473), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [180124] = 2, + [183575] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7820), 5, + ACTIONS(8128), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [180136] = 2, + [183587] = 6, + ACTIONS(6634), 1, + anon_sym_as, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(8130), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5549), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [180148] = 2, + [183607] = 4, + ACTIONS(8026), 1, + anon_sym_PIPE, + STATE(4468), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5652), 5, + ACTIONS(7629), 3, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [180160] = 6, - ACTIONS(6972), 1, anon_sym_as, - ACTIONS(6974), 1, - anon_sym_if, - ACTIONS(6976), 1, - anon_sym_and, - ACTIONS(6978), 1, - anon_sym_or, - ACTIONS(8026), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, + [183623] = 5, + ACTIONS(8132), 1, + anon_sym_COMMA, + ACTIONS(8134), 1, + anon_sym_RBRACE, + STATE(4881), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180180] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, - anon_sym_as, - ACTIONS(6613), 1, - anon_sym_if, - ACTIONS(6615), 1, - anon_sym_or, - ACTIONS(8028), 1, - anon_sym_else, + ACTIONS(6818), 2, + anon_sym_COLON, + anon_sym_PIPE, + [183641] = 5, + ACTIONS(8136), 1, + sym_identifier, + ACTIONS(8138), 1, + anon_sym_COLON, + ACTIONS(8142), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180200] = 6, - ACTIONS(6547), 1, - anon_sym_and, - ACTIONS(6611), 1, + ACTIONS(8140), 2, + anon_sym_class, + anon_sym_struct, + [183659] = 6, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6613), 1, + ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6615), 1, + ACTIONS(6161), 1, + anon_sym_and, + ACTIONS(6163), 1, anon_sym_or, - ACTIONS(8030), 1, - anon_sym_else, + ACTIONS(8144), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180220] = 4, - ACTIONS(7882), 1, - anon_sym_PIPE, - STATE(4433), 1, - aux_sym_union_pattern_repeat1, + [183679] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7376), 3, - anon_sym_RPAREN, + ACTIONS(8146), 5, anon_sym_COMMA, anon_sym_as, - [180236] = 5, - ACTIONS(7628), 1, - anon_sym_DOT, - ACTIONS(7699), 1, + anon_sym_if, anon_sym_COLON, - ACTIONS(7701), 1, anon_sym_PIPE, + [183691] = 6, + ACTIONS(6811), 1, + anon_sym_with, + ACTIONS(6813), 1, + anon_sym_nogil, + ACTIONS(7042), 1, + anon_sym_COLON, + ACTIONS(7044), 1, + sym__newline, + STATE(5243), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7626), 2, - sym__newline, - anon_sym_SEMI, - [180254] = 5, - ACTIONS(7475), 1, - anon_sym_DOT, - ACTIONS(7479), 1, + [183711] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8148), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(7483), 1, anon_sym_PIPE, + [183723] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7626), 2, + ACTIONS(8150), 5, anon_sym_COMMA, - anon_sym_RBRACK, - [180272] = 6, - ACTIONS(7758), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(8032), 1, - anon_sym_EQ, - ACTIONS(8034), 1, + anon_sym_PIPE, + [183735] = 6, + ACTIONS(8028), 1, + anon_sym_LBRACE, + ACTIONS(8152), 1, anon_sym_RBRACE, - ACTIONS(8036), 1, - sym_type_conversion, - STATE(5512), 1, - sym_format_specifier, - ACTIONS(3), 2, + ACTIONS(8154), 1, + aux_sym_format_specifier_token1, + STATE(4458), 1, + aux_sym_format_specifier_repeat1, + STATE(4821), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [180292] = 2, + [183755] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8038), 5, + ACTIONS(7524), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [180304] = 2, + [183767] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8004), 4, - anon_sym_RPAREN, + ACTIONS(8156), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [180315] = 2, + [183779] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7818), 4, + ACTIONS(8158), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [180326] = 2, + [183791] = 3, + ACTIONS(8160), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7854), 4, + ACTIONS(6818), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [180337] = 4, - ACTIONS(8042), 1, - anon_sym_COMMA, - STATE(4482), 1, - aux_sym_global_statement_repeat1, + [183805] = 5, + ACTIONS(7655), 1, + anon_sym_DOT, + ACTIONS(7785), 1, + anon_sym_COLON, + ACTIONS(7787), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8040), 2, + ACTIONS(7653), 2, sym__newline, anon_sym_SEMI, - [180352] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7820), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180363] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7703), 4, + [183823] = 5, + ACTIONS(8162), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [180374] = 2, + ACTIONS(8164), 1, + anon_sym_RBRACE, + STATE(4853), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7723), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + ACTIONS(6818), 2, + anon_sym_COLON, anon_sym_PIPE, - [180385] = 5, - ACTIONS(8045), 1, - anon_sym_RPAREN, - ACTIONS(8047), 1, - anon_sym_COMMA, - ACTIONS(8049), 1, + [183841] = 6, + ACTIONS(6634), 1, anon_sym_as, - STATE(4703), 1, - aux_sym_case_clause_repeat1, + ACTIONS(6636), 1, + anon_sym_if, + ACTIONS(6638), 1, + anon_sym_and, + ACTIONS(6640), 1, + anon_sym_or, + ACTIONS(8166), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180402] = 5, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(8051), 1, - anon_sym_COLON, - ACTIONS(8053), 1, + [183861] = 6, + ACTIONS(7834), 1, + anon_sym_pass, + ACTIONS(7836), 1, sym__newline, - STATE(5358), 1, - sym_string, + ACTIONS(7838), 1, + sym__indent, + STATE(1311), 1, + sym_pass_statement, + STATE(1317), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180419] = 2, + [183881] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7856), 4, + ACTIONS(8146), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [180430] = 2, + [183892] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7824), 4, + ACTIONS(7984), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [180441] = 2, + [183903] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7725), 4, + ACTIONS(7984), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [180452] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7858), 4, + anon_sym_RBRACE, + [183914] = 5, + ACTIONS(8168), 1, anon_sym_RPAREN, + ACTIONS(8170), 1, anon_sym_COMMA, + ACTIONS(8172), 1, anon_sym_as, - anon_sym_PIPE, - [180463] = 4, - ACTIONS(6767), 1, - anon_sym_COMMA, - STATE(4423), 1, - aux_sym_assert_statement_repeat1, + STATE(4743), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8055), 2, - sym__newline, - anon_sym_SEMI, - [180478] = 2, + [183931] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7832), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(7642), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RBRACE, - [180489] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7854), 4, + [183942] = 5, + ACTIONS(8174), 1, anon_sym_COMMA, + ACTIONS(8176), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180500] = 4, - ACTIONS(7800), 1, - anon_sym_LPAREN, - ACTIONS(8059), 1, - anon_sym_EQ, + ACTIONS(8178), 1, + anon_sym_RBRACK, + STATE(4745), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8057), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [180515] = 5, - ACTIONS(8061), 1, - anon_sym_case, - ACTIONS(8063), 1, - sym__dedent, - STATE(4627), 1, - aux_sym__match_block_repeat1, - STATE(5173), 1, - sym_case_clause, + [183959] = 4, + ACTIONS(7834), 1, + anon_sym_pass, + ACTIONS(8180), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180532] = 2, + STATE(1440), 2, + sym_pass_statement, + sym__cppclass_suite, + [183974] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7828), 4, + ACTIONS(8057), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [180543] = 2, + [183985] = 5, + ACTIONS(3878), 1, + sym_string_start, + ACTIONS(8182), 1, + anon_sym_COLON, + ACTIONS(8184), 1, + sym__newline, + STATE(5268), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184002] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7856), 4, + ACTIONS(7936), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [180554] = 5, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(8067), 1, - anon_sym_RPAREN, - ACTIONS(8069), 1, - anon_sym_COMMA, - STATE(5095), 1, - aux_sym_function_pointer_type_repeat1, + [184013] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180571] = 2, + ACTIONS(7938), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [184024] = 5, + ACTIONS(7856), 1, + anon_sym_LPAREN, + ACTIONS(8186), 1, + anon_sym_COMMA, + ACTIONS(8188), 1, + anon_sym_RBRACK, + STATE(4901), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7618), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [180582] = 4, - ACTIONS(8073), 1, + [184041] = 4, + ACTIONS(8192), 1, anon_sym_COMMA, - STATE(4530), 1, - aux_sym_global_statement_repeat1, + STATE(4555), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8071), 2, + ACTIONS(8190), 2, sym__newline, anon_sym_SEMI, - [180597] = 5, - ACTIONS(7626), 1, - anon_sym_EQ, - ACTIONS(8075), 1, - anon_sym_DOT, - ACTIONS(8077), 1, - anon_sym_COLON, - ACTIONS(8079), 1, + [184056] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7942), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, + [184067] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180614] = 4, - ACTIONS(7687), 1, - anon_sym_pass, - ACTIONS(8081), 1, - sym__indent, + ACTIONS(7994), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [184078] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(724), 2, - sym_pass_statement, - sym__cppclass_suite, - [180629] = 2, + ACTIONS(8020), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [184089] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7798), 4, + ACTIONS(8057), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [180640] = 2, + [184100] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7858), 4, + ACTIONS(7876), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [180651] = 5, - ACTIONS(8069), 1, + [184111] = 4, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(8197), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3931), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8083), 1, + [184126] = 5, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(8085), 1, + ACTIONS(8199), 1, anon_sym_RPAREN, - STATE(4893), 1, + ACTIONS(8201), 1, + anon_sym_COMMA, + STATE(4839), 1, aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180668] = 4, - ACTIONS(8089), 1, + [184143] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8124), 4, anon_sym_COMMA, - STATE(4510), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [184154] = 5, + ACTIONS(8067), 1, + anon_sym_RPAREN, + ACTIONS(8203), 1, + sym_identifier, + STATE(4873), 1, + sym_dotted_name, + STATE(5271), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8087), 2, - sym__newline, - anon_sym_SEMI, - [180683] = 5, - ACTIONS(7800), 1, + [184171] = 5, + ACTIONS(7856), 1, anon_sym_LPAREN, - ACTIONS(8091), 1, + ACTIONS(8186), 1, anon_sym_COMMA, - ACTIONS(8093), 1, + ACTIONS(8205), 1, anon_sym_RBRACK, - STATE(5093), 1, + STATE(4842), 1, aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180700] = 4, - ACTIONS(7747), 1, - anon_sym_pass, - ACTIONS(8095), 1, - sym__indent, + [184188] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3061), 2, - sym_pass_statement, - sym__cppclass_suite, - [180715] = 4, - ACTIONS(8099), 1, + ACTIONS(7927), 4, anon_sym_COMMA, - STATE(4523), 1, - aux_sym_print_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [184199] = 4, + ACTIONS(8207), 1, + anon_sym_COMMA, + STATE(4627), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8097), 2, - sym__newline, - anon_sym_SEMI, - [180730] = 5, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(8101), 1, + ACTIONS(3143), 2, anon_sym_COLON, - ACTIONS(8103), 1, - sym__newline, - STATE(5348), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [180747] = 5, - ACTIONS(7932), 1, + anon_sym_by, + [184214] = 5, + ACTIONS(8067), 1, anon_sym_RPAREN, - ACTIONS(8105), 1, + ACTIONS(8203), 1, sym_identifier, - STATE(5096), 1, + STATE(4873), 1, sym_dotted_name, - STATE(5331), 1, + STATE(5271), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180764] = 4, - ACTIONS(8109), 1, + [184231] = 5, + ACTIONS(7856), 1, + anon_sym_LPAREN, + ACTIONS(8186), 1, anon_sym_COMMA, - STATE(4584), 1, - aux_sym__import_list_repeat1, + ACTIONS(8209), 1, + anon_sym_RBRACK, + STATE(5108), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8107), 2, - sym__newline, - anon_sym_SEMI, - [180779] = 4, - ACTIONS(8113), 1, - anon_sym_COLON, - ACTIONS(8115), 1, - anon_sym_EQ, + [184248] = 5, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(8201), 1, + anon_sym_COMMA, + ACTIONS(8211), 1, + anon_sym_RPAREN, + STATE(4990), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8111), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [180794] = 2, + [184265] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7862), 4, + ACTIONS(7225), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7229), 2, + anon_sym_not, + anon_sym_or, + [184278] = 5, + ACTIONS(8172), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [180805] = 5, - ACTIONS(7800), 1, - anon_sym_LPAREN, - ACTIONS(8091), 1, + ACTIONS(8213), 1, + anon_sym_RPAREN, + ACTIONS(8215), 1, anon_sym_COMMA, - ACTIONS(8117), 1, - anon_sym_RBRACK, - STATE(4916), 1, - aux_sym_external_definition_repeat1, + STATE(5031), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180822] = 5, - ACTIONS(8049), 1, + [184295] = 5, + ACTIONS(8172), 1, anon_sym_as, - ACTIONS(8119), 1, + ACTIONS(8217), 1, anon_sym_RPAREN, - ACTIONS(8121), 1, + ACTIONS(8219), 1, anon_sym_COMMA, - STATE(4839), 1, + STATE(4848), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184312] = 5, + ACTIONS(8176), 1, + anon_sym_as, + ACTIONS(8221), 1, + anon_sym_COMMA, + ACTIONS(8223), 1, + anon_sym_RBRACK, + STATE(4850), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180839] = 4, - ACTIONS(8123), 1, + [184329] = 5, + ACTIONS(3921), 1, + anon_sym_LBRACK, + ACTIONS(8225), 1, + anon_sym_LPAREN, + STATE(5235), 1, + sym_parameters, + STATE(5262), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184346] = 4, + ACTIONS(7801), 1, anon_sym_COMMA, - STATE(4584), 1, + STATE(4640), 1, aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8107), 2, + ACTIONS(7799), 2, sym__newline, anon_sym_SEMI, - [180854] = 5, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(8125), 1, - anon_sym_COLON, - ACTIONS(8127), 1, - sym__newline, - STATE(5210), 1, - sym_string, + [184361] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180871] = 2, + ACTIONS(7876), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [184372] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8129), 4, + ACTIONS(8227), 4, sym_string_start, anon_sym_LPAREN, anon_sym_LBRACK, sym_identifier, - [180882] = 2, + [184383] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7884), 4, + ACTIONS(8124), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [180893] = 5, - ACTIONS(8075), 1, - anon_sym_DOT, - ACTIONS(8077), 1, - anon_sym_COLON, - ACTIONS(8079), 1, - anon_sym_PIPE, - ACTIONS(8131), 1, - anon_sym_EQ, + [184394] = 5, + ACTIONS(8172), 1, + anon_sym_as, + ACTIONS(8229), 1, + anon_sym_RPAREN, + ACTIONS(8231), 1, + anon_sym_COMMA, + STATE(4856), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180910] = 4, - ACTIONS(8135), 1, + [184411] = 5, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(8201), 1, anon_sym_COMMA, - STATE(4523), 1, - aux_sym_print_statement_repeat1, + ACTIONS(8233), 1, + anon_sym_RPAREN, + STATE(5116), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8133), 2, - sym__newline, - anon_sym_SEMI, - [180925] = 2, + [184428] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7886), 4, + ACTIONS(7992), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [180936] = 5, - ACTIONS(8061), 1, - anon_sym_case, - ACTIONS(8138), 1, - sym__dedent, - STATE(4615), 1, - aux_sym__match_block_repeat1, - STATE(5173), 1, - sym_case_clause, + [184439] = 4, + ACTIONS(8235), 1, + anon_sym_COMMA, + STATE(4583), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180953] = 4, - ACTIONS(8073), 1, - anon_sym_COMMA, - STATE(4482), 1, - aux_sym_global_statement_repeat1, + ACTIONS(5688), 2, + anon_sym_from, + anon_sym_in, + [184454] = 5, + ACTIONS(3921), 1, + anon_sym_LBRACK, + ACTIONS(8225), 1, + anon_sym_LPAREN, + STATE(5348), 1, + sym_parameters, + STATE(5372), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8140), 2, - sym__newline, - anon_sym_SEMI, - [180968] = 2, + [184471] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7634), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(8112), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [180979] = 5, - ACTIONS(8061), 1, - anon_sym_case, - ACTIONS(8142), 1, - sym__dedent, - STATE(4496), 1, - aux_sym__match_block_repeat1, - STATE(5173), 1, - sym_case_clause, + [184482] = 4, + ACTIONS(8238), 1, + anon_sym_COMMA, + STATE(4583), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180996] = 5, - ACTIONS(7800), 1, - anon_sym_LPAREN, - ACTIONS(8091), 1, + ACTIONS(2821), 2, + anon_sym_from, + anon_sym_in, + [184497] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7992), 4, anon_sym_COMMA, - ACTIONS(8144), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(5132), 1, - aux_sym_external_definition_repeat1, + anon_sym_PIPE, + [184508] = 5, + ACTIONS(7653), 1, + anon_sym_EQ, + ACTIONS(8240), 1, + anon_sym_DOT, + ACTIONS(8242), 1, + anon_sym_COLON, + ACTIONS(8244), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181013] = 4, - ACTIONS(8073), 1, - anon_sym_COMMA, - STATE(4482), 1, - aux_sym_global_statement_repeat1, + [184525] = 4, + ACTIONS(5307), 1, + sym_identifier, + STATE(5401), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8146), 2, - sym__newline, - anon_sym_SEMI, - [181028] = 3, + ACTIONS(8246), 2, + anon_sym_import, + anon_sym_cimport, + [184540] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7195), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7336), 2, - anon_sym_not, - anon_sym_or, - [181041] = 2, + ACTIONS(8248), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [184551] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7946), 4, + ACTIONS(7936), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [181052] = 2, + [184562] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8002), 4, - anon_sym_RPAREN, + ACTIONS(7938), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [181063] = 3, + [184573] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7195), 2, + ACTIONS(7942), 4, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7199), 2, - anon_sym_not, - anon_sym_or, - [181076] = 5, - ACTIONS(8148), 1, - anon_sym_COMMA, - ACTIONS(8150), 1, anon_sym_as, - ACTIONS(8152), 1, anon_sym_RBRACK, - STATE(5009), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [184584] = 4, + ACTIONS(6939), 1, + anon_sym_COMMA, + STATE(4426), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181093] = 2, + ACTIONS(8250), 2, + sym__newline, + anon_sym_SEMI, + [184599] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7862), 4, - anon_sym_RPAREN, + ACTIONS(7994), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [181104] = 4, - ACTIONS(4905), 1, - anon_sym_LBRACK, - STATE(3542), 1, - sym_type_index, + [184610] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6004), 2, - anon_sym_DOT, - sym_identifier, - [181119] = 2, + ACTIONS(8112), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [184621] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8012), 4, - anon_sym_RPAREN, + ACTIONS(8146), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181130] = 4, - ACTIONS(7747), 1, - anon_sym_pass, - ACTIONS(8095), 1, - sym__indent, + anon_sym_RBRACE, + [184632] = 5, + ACTIONS(7102), 1, + sym_identifier, + STATE(4361), 1, + sym_dotted_name, + STATE(4576), 1, + sym_aliased_import, + STATE(5261), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3064), 2, - sym_pass_statement, - sym__cppclass_suite, - [181145] = 2, + [184649] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8002), 4, - anon_sym_COMMA, + ACTIONS(8252), 4, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_identifier, + [184660] = 5, + ACTIONS(8172), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [181156] = 5, - ACTIONS(7980), 1, + ACTIONS(8254), 1, anon_sym_RPAREN, - ACTIONS(8105), 1, - sym_identifier, - STATE(5096), 1, - sym_dotted_name, - STATE(5331), 1, - sym_aliased_import, + ACTIONS(8256), 1, + anon_sym_COMMA, + STATE(4774), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181173] = 4, - ACTIONS(7687), 1, + [184677] = 5, + ACTIONS(8240), 1, + anon_sym_DOT, + ACTIONS(8242), 1, + anon_sym_COLON, + ACTIONS(8244), 1, + anon_sym_PIPE, + ACTIONS(8258), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184694] = 4, + ACTIONS(7850), 1, anon_sym_pass, - ACTIONS(8081), 1, + ACTIONS(8260), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(715), 2, + STATE(3118), 2, sym_pass_statement, sym__cppclass_suite, - [181188] = 2, + [184709] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8038), 4, + ACTIONS(8150), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [181199] = 5, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(8069), 1, - anon_sym_COMMA, - ACTIONS(8154), 1, - anon_sym_RPAREN, - STATE(4982), 1, - aux_sym_function_pointer_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181216] = 2, + [184720] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8004), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(7482), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RBRACE, - [181227] = 2, + [184731] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7928), 4, + ACTIONS(8146), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181238] = 5, - ACTIONS(7980), 1, - anon_sym_RPAREN, - ACTIONS(8105), 1, - sym_identifier, - STATE(5096), 1, - sym_dotted_name, - STATE(5331), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181255] = 4, - ACTIONS(8158), 1, + [184742] = 4, + ACTIONS(8262), 1, anon_sym_COMMA, - STATE(4604), 1, - aux_sym__patterns_repeat1, + STATE(4426), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8156), 2, - anon_sym_from, - anon_sym_in, - [181270] = 2, + ACTIONS(3403), 2, + sym__newline, + anon_sym_SEMI, + [184757] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7703), 4, - anon_sym_RPAREN, + ACTIONS(8148), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [181281] = 5, - ACTIONS(7758), 1, - anon_sym_COLON, - ACTIONS(8160), 1, - anon_sym_RBRACE, - ACTIONS(8162), 1, - sym_type_conversion, - STATE(5638), 1, - sym_format_specifier, + [184768] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181298] = 5, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(8069), 1, - anon_sym_COMMA, - ACTIONS(8164), 1, + ACTIONS(7984), 4, anon_sym_RPAREN, - STATE(4773), 1, - aux_sym_function_pointer_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181315] = 3, - ACTIONS(7446), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8166), 3, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [181328] = 5, - ACTIONS(8049), 1, anon_sym_as, - ACTIONS(8168), 1, - anon_sym_RPAREN, - ACTIONS(8170), 1, - anon_sym_COMMA, - STATE(4709), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181345] = 2, + anon_sym_PIPE, + [184779] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8012), 4, + ACTIONS(8057), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [181356] = 2, + [184790] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7808), 4, + ACTIONS(7876), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181367] = 2, + [184801] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7832), 4, + ACTIONS(8156), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181378] = 2, + [184812] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7854), 4, + ACTIONS(8124), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181389] = 2, + [184823] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7818), 4, - anon_sym_RPAREN, + ACTIONS(8020), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [181400] = 2, + [184834] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7820), 4, - anon_sym_RPAREN, + ACTIONS(8158), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [181411] = 5, - ACTIONS(7800), 1, - anon_sym_LPAREN, - ACTIONS(8091), 1, - anon_sym_COMMA, - ACTIONS(8172), 1, anon_sym_RBRACK, - STATE(4779), 1, - aux_sym_external_definition_repeat1, + anon_sym_PIPE, + [184845] = 5, + ACTIONS(7917), 1, + anon_sym_COLON, + ACTIONS(8264), 1, + anon_sym_RBRACE, + ACTIONS(8266), 1, + sym_type_conversion, + STATE(5701), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181428] = 2, + [184862] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3904), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(7795), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [181439] = 4, - ACTIONS(7717), 1, - anon_sym_pass, - ACTIONS(8174), 1, - sym__indent, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1534), 2, - sym_pass_statement, - sym__cppclass_suite, - [181454] = 2, + [184873] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7824), 4, + ACTIONS(7927), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [181465] = 4, - ACTIONS(8178), 1, - anon_sym_COMMA, - STATE(4523), 1, - aux_sym_print_statement_repeat1, + [184884] = 5, + ACTIONS(8268), 1, + anon_sym_case, + ACTIONS(8270), 1, + sym__dedent, + STATE(4657), 1, + aux_sym__match_block_repeat1, + STATE(5267), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8176), 2, - sym__newline, - anon_sym_SEMI, - [181480] = 2, + [184901] = 4, + ACTIONS(8272), 1, + anon_sym_COMMA, + STATE(4619), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7828), 4, - anon_sym_RPAREN, + ACTIONS(8275), 2, + anon_sym_if, + anon_sym_COLON, + [184916] = 4, + ACTIONS(8279), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181491] = 2, + STATE(4643), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7493), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [181502] = 3, - ACTIONS(7659), 1, - anon_sym_as, + ACTIONS(8277), 2, + sym__newline, + anon_sym_SEMI, + [184931] = 4, + ACTIONS(8279), 1, + anon_sym_COMMA, + STATE(4646), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8180), 3, + ACTIONS(8281), 2, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, - [181515] = 2, + [184946] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7723), 4, - anon_sym_RPAREN, + ACTIONS(7927), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [181526] = 2, + [184957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7856), 4, + ACTIONS(8034), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [181537] = 2, + [184968] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7946), 4, + ACTIONS(8104), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181548] = 5, - ACTIONS(7758), 1, + [184979] = 5, + ACTIONS(3878), 1, + sym_string_start, + ACTIONS(8283), 1, anon_sym_COLON, - ACTIONS(8182), 1, - anon_sym_RBRACE, - ACTIONS(8184), 1, - sym_type_conversion, - STATE(5621), 1, - sym_format_specifier, + ACTIONS(8285), 1, + sym__newline, + STATE(5426), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181565] = 5, - ACTIONS(8150), 1, - anon_sym_as, + [184996] = 5, + ACTIONS(7856), 1, + anon_sym_LPAREN, ACTIONS(8186), 1, anon_sym_COMMA, - ACTIONS(8188), 1, + ACTIONS(8287), 1, anon_sym_RBRACK, - STATE(4712), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181582] = 4, - ACTIONS(5201), 1, - sym_identifier, - STATE(5322), 1, - sym_dotted_name, + STATE(5172), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8190), 2, - anon_sym_import, - anon_sym_cimport, - [181597] = 4, - ACTIONS(6767), 1, + [185013] = 4, + ACTIONS(8289), 1, anon_sym_COMMA, - STATE(4423), 1, + STATE(4627), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8192), 2, - sym__newline, - anon_sym_SEMI, - [181612] = 5, - ACTIONS(3823), 1, - anon_sym_LBRACK, - ACTIONS(8194), 1, - anon_sym_LPAREN, - STATE(5216), 1, - sym_parameters, - STATE(5347), 1, - sym_type_parameter, + ACTIONS(6775), 2, + anon_sym_COLON, + anon_sym_by, + [185028] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181629] = 5, - ACTIONS(7655), 1, - anon_sym_RPAREN, - ACTIONS(8196), 1, + ACTIONS(8104), 4, anon_sym_COMMA, - ACTIONS(8198), 1, anon_sym_as, - STATE(4870), 1, - aux_sym__import_list_repeat1, + anon_sym_PIPE, + anon_sym_RBRACE, + [185039] = 4, + ACTIONS(7789), 1, + anon_sym_pass, + ACTIONS(8292), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181646] = 5, - ACTIONS(3823), 1, - anon_sym_LBRACK, - ACTIONS(8194), 1, - anon_sym_LPAREN, - STATE(5226), 1, - sym_parameters, - STATE(5354), 1, - sym_type_parameter, + STATE(745), 2, + sym_pass_statement, + sym__cppclass_suite, + [185054] = 5, + ACTIONS(3878), 1, + sym_string_start, + ACTIONS(8294), 1, + anon_sym_COLON, + ACTIONS(8296), 1, + sym__newline, + STATE(5335), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185071] = 4, + ACTIONS(7789), 1, + anon_sym_pass, + ACTIONS(8292), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181663] = 2, + STATE(736), 2, + sym_pass_statement, + sym__cppclass_suite, + [185086] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7858), 4, + ACTIONS(8106), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181674] = 5, - ACTIONS(8049), 1, + anon_sym_RBRACE, + [185097] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7844), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(8200), 1, + anon_sym_PIPE, + [185108] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8106), 4, anon_sym_RPAREN, - ACTIONS(8202), 1, anon_sym_COMMA, - STATE(4765), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [185119] = 4, + ACTIONS(8300), 1, + anon_sym_COMMA, + STATE(4586), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181691] = 2, + ACTIONS(8298), 2, + anon_sym_from, + anon_sym_in, + [185134] = 3, + ACTIONS(7615), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7703), 4, + ACTIONS(8275), 3, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + anon_sym_if, + anon_sym_COLON, + [185147] = 5, + ACTIONS(7917), 1, + anon_sym_COLON, + ACTIONS(8302), 1, anon_sym_RBRACE, - [181702] = 2, + ACTIONS(8304), 1, + sym_type_conversion, + STATE(5652), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7725), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181713] = 2, + [185164] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7862), 4, + ACTIONS(8128), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181724] = 3, + [185175] = 5, + ACTIONS(8268), 1, + anon_sym_case, + ACTIONS(8306), 1, + sym__dedent, + STATE(4679), 1, + aux_sym__match_block_repeat1, + STATE(5267), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6749), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(8204), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [181737] = 4, - ACTIONS(8208), 1, + [185192] = 4, + ACTIONS(8310), 1, anon_sym_COMMA, - STATE(4584), 1, + STATE(4645), 1, aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8206), 2, + ACTIONS(8308), 2, sym__newline, anon_sym_SEMI, - [181752] = 4, - ACTIONS(7687), 1, + [185207] = 4, + ACTIONS(7834), 1, anon_sym_pass, - ACTIONS(8081), 1, + ACTIONS(8180), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(721), 2, + STATE(1519), 2, sym_pass_statement, sym__cppclass_suite, - [181767] = 4, - ACTIONS(7747), 1, - anon_sym_pass, - ACTIONS(8095), 1, - sym__indent, + [185222] = 3, + ACTIONS(7803), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3065), 2, - sym_pass_statement, - sym__cppclass_suite, - [181782] = 4, - ACTIONS(8211), 1, + ACTIONS(8312), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(4423), 1, - aux_sym_assert_statement_repeat1, + [185235] = 4, + ACTIONS(8279), 1, + anon_sym_COMMA, + STATE(4694), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3307), 2, + ACTIONS(8314), 2, sym__newline, anon_sym_SEMI, - [181797] = 2, + [185250] = 4, + ACTIONS(8316), 1, + anon_sym_COMMA, + STATE(4645), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7884), 4, + ACTIONS(8308), 2, + sym__newline, + anon_sym_SEMI, + [185265] = 4, + ACTIONS(8320), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [181808] = 5, - ACTIONS(8049), 1, - anon_sym_as, - ACTIONS(8213), 1, - anon_sym_RPAREN, - ACTIONS(8215), 1, + STATE(4645), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8318), 2, + sym__newline, + anon_sym_SEMI, + [185280] = 4, + ACTIONS(8279), 1, anon_sym_COMMA, - STATE(4786), 1, - aux_sym_case_clause_repeat1, + STATE(4694), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181825] = 2, + ACTIONS(8323), 2, + sym__newline, + anon_sym_SEMI, + [185295] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7886), 4, + ACTIONS(8148), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [181836] = 5, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(8069), 1, - anon_sym_COMMA, - ACTIONS(8085), 1, - anon_sym_RPAREN, - STATE(4893), 1, - aux_sym_function_pointer_type_repeat1, + anon_sym_RBRACE, + [185306] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181853] = 5, - ACTIONS(7233), 1, + ACTIONS(8128), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [185317] = 5, + ACTIONS(8203), 1, sym_identifier, - STATE(4292), 1, + STATE(4670), 1, sym_dotted_name, - STATE(4596), 1, + STATE(4788), 1, sym_aliased_import, - STATE(5185), 1, + STATE(5516), 1, sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181870] = 5, - ACTIONS(8150), 1, - anon_sym_as, - ACTIONS(8217), 1, - anon_sym_COMMA, - ACTIONS(8219), 1, - anon_sym_RBRACK, - STATE(4787), 1, - aux_sym_case_clause_repeat1, + [185334] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181887] = 2, + ACTIONS(8325), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [185345] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7723), 4, + ACTIONS(7629), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [185356] = 5, + ACTIONS(8203), 1, + sym_identifier, + STATE(4670), 1, + sym_dotted_name, + STATE(4788), 1, + sym_aliased_import, + STATE(5595), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185373] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6546), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RBRACE, - [181898] = 5, - ACTIONS(3823), 1, + [185384] = 5, + ACTIONS(3921), 1, anon_sym_LBRACK, - ACTIONS(8194), 1, + ACTIONS(8225), 1, anon_sym_LPAREN, - STATE(5175), 1, + STATE(5280), 1, sym_parameters, - STATE(5213), 1, + STATE(5405), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181915] = 4, - ACTIONS(7657), 1, - anon_sym_COMMA, - STATE(4513), 1, - aux_sym__import_list_repeat1, + [185401] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7655), 2, - sym__newline, - anon_sym_SEMI, - [181930] = 2, + ACTIONS(7225), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7460), 2, + anon_sym_not, + anon_sym_or, + [185414] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7725), 4, + ACTIONS(8104), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [181941] = 5, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(8221), 1, - anon_sym_COLON, - ACTIONS(8223), 1, - sym__newline, - STATE(5395), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181958] = 2, + [185425] = 5, + ACTIONS(8327), 1, + anon_sym_case, + ACTIONS(8330), 1, + sym__dedent, + STATE(4657), 1, + aux_sym__match_block_repeat1, + STATE(5267), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7884), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [181969] = 4, - ACTIONS(8065), 1, - anon_sym_LPAREN, + [185442] = 5, + ACTIONS(3921), 1, + anon_sym_LBRACK, ACTIONS(8225), 1, - anon_sym_EQ, + anon_sym_LPAREN, + STATE(5289), 1, + sym_parameters, + STATE(5411), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3829), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [181984] = 2, + [185459] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7994), 4, + ACTIONS(8156), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [181995] = 5, - ACTIONS(8049), 1, - anon_sym_as, - ACTIONS(8227), 1, - anon_sym_RPAREN, - ACTIONS(8229), 1, - anon_sym_COMMA, - STATE(4796), 1, - aux_sym_case_clause_repeat1, + [185470] = 4, + ACTIONS(7856), 1, + anon_sym_LPAREN, + ACTIONS(8334), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182012] = 2, + ACTIONS(8332), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [185485] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8004), 4, + ACTIONS(8128), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [182023] = 4, - ACTIONS(8231), 1, + [185496] = 4, + ACTIONS(8338), 1, anon_sym_COMMA, - STATE(4623), 1, - aux_sym__patterns_repeat1, + STATE(4555), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2801), 2, - anon_sym_from, - anon_sym_in, - [182038] = 2, + ACTIONS(8336), 2, + sym__newline, + anon_sym_SEMI, + [185511] = 4, + ACTIONS(8342), 1, + anon_sym_EQ, + STATE(5382), 1, + sym_template_default, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7994), 4, - anon_sym_RPAREN, + ACTIONS(8340), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182049] = 2, + anon_sym_RBRACK, + [185526] = 4, + ACTIONS(7850), 1, + anon_sym_pass, + ACTIONS(8260), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7784), 4, + STATE(3128), 2, + sym_pass_statement, + sym__cppclass_suite, + [185541] = 5, + ACTIONS(8201), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [182060] = 2, + ACTIONS(8211), 1, + anon_sym_RPAREN, + ACTIONS(8344), 1, + anon_sym_LPAREN, + STATE(4990), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8233), 4, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_identifier, - [182071] = 2, + [185558] = 4, + ACTIONS(8348), 1, + anon_sym_COMMA, + STATE(4555), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6484), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [182082] = 5, - ACTIONS(3756), 1, + ACTIONS(8346), 2, + sym__newline, + anon_sym_SEMI, + [185573] = 5, + ACTIONS(3878), 1, sym_string_start, - ACTIONS(8235), 1, + ACTIONS(8350), 1, anon_sym_COLON, - ACTIONS(8237), 1, + ACTIONS(8352), 1, sym__newline, - STATE(5244), 1, + STATE(5359), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182099] = 2, + [185590] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7798), 4, + ACTIONS(8158), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [182110] = 2, + anon_sym_RBRACE, + [185601] = 4, + ACTIONS(8356), 1, + anon_sym_COMMA, + STATE(4662), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7452), 4, + ACTIONS(8354), 2, + sym__newline, + anon_sym_SEMI, + [185616] = 5, + ACTIONS(7799), 1, + anon_sym_RPAREN, + ACTIONS(8358), 1, anon_sym_COMMA, + ACTIONS(8360), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [182121] = 5, - ACTIONS(8105), 1, - sym_identifier, - STATE(4576), 1, - sym_dotted_name, - STATE(4705), 1, - sym_aliased_import, - STATE(5648), 1, - sym__import_list, + STATE(4988), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182138] = 4, - ACTIONS(8239), 1, + [185633] = 5, + ACTIONS(8172), 1, + anon_sym_as, + ACTIONS(8362), 1, + anon_sym_RPAREN, + ACTIONS(8364), 1, anon_sym_COMMA, - STATE(4613), 1, + STATE(4761), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8166), 2, - anon_sym_if, - anon_sym_COLON, - [182153] = 2, + [185650] = 4, + ACTIONS(7834), 1, + anon_sym_pass, + ACTIONS(8180), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7784), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [182164] = 5, - ACTIONS(8061), 1, + STATE(1688), 2, + sym_pass_statement, + sym__cppclass_suite, + [185665] = 5, + ACTIONS(8268), 1, anon_sym_case, - ACTIONS(8242), 1, + ACTIONS(8366), 1, sym__dedent, - STATE(4627), 1, + STATE(4618), 1, aux_sym__match_block_repeat1, - STATE(5173), 1, + STATE(5267), 1, sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182181] = 5, - ACTIONS(8105), 1, - sym_identifier, - STATE(4576), 1, - sym_dotted_name, - STATE(4705), 1, - sym_aliased_import, - STATE(5647), 1, - sym__import_list, + [185682] = 5, + ACTIONS(8176), 1, + anon_sym_as, + ACTIONS(8368), 1, + anon_sym_COMMA, + ACTIONS(8370), 1, + anon_sym_RBRACK, + STATE(4770), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182198] = 2, + [185699] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7994), 4, + ACTIONS(7795), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [182209] = 4, - ACTIONS(7717), 1, - anon_sym_pass, - ACTIONS(8174), 1, - sym__indent, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1796), 2, - sym_pass_statement, - sym__cppclass_suite, - [182224] = 5, - ACTIONS(8049), 1, - anon_sym_as, - ACTIONS(8244), 1, - anon_sym_RPAREN, - ACTIONS(8246), 1, + anon_sym_RBRACE, + [185710] = 5, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(8201), 1, anon_sym_COMMA, - STATE(4676), 1, - aux_sym_case_clause_repeat1, + ACTIONS(8372), 1, + anon_sym_RPAREN, + STATE(5032), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182241] = 2, + [185727] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8038), 4, + ACTIONS(8112), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [182252] = 5, - ACTIONS(8150), 1, - anon_sym_as, - ACTIONS(8248), 1, - anon_sym_COMMA, - ACTIONS(8250), 1, - anon_sym_RBRACK, - STATE(4677), 1, - aux_sym_case_clause_repeat1, + [185738] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182269] = 4, - ACTIONS(8254), 1, + ACTIONS(3949), 4, + anon_sym_DOT, + anon_sym_COLON, anon_sym_EQ, - STATE(5364), 1, - sym_template_default, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8252), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [182284] = 4, - ACTIONS(8256), 1, - anon_sym_COMMA, - STATE(4623), 1, - aux_sym__patterns_repeat1, + anon_sym_PIPE, + [185749] = 5, + ACTIONS(8268), 1, + anon_sym_case, + ACTIONS(8374), 1, + sym__dedent, + STATE(4657), 1, + aux_sym__match_block_repeat1, + STATE(5267), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5549), 2, - anon_sym_from, - anon_sym_in, - [182299] = 2, + [185766] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7808), 4, - anon_sym_RPAREN, + ACTIONS(8034), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [182310] = 5, - ACTIONS(8049), 1, - anon_sym_as, - ACTIONS(8259), 1, + anon_sym_RBRACE, + [185777] = 4, + ACTIONS(8378), 1, + anon_sym_COLON, + ACTIONS(8380), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8376), 2, anon_sym_RPAREN, - ACTIONS(8261), 1, anon_sym_COMMA, - STATE(4704), 1, - aux_sym_case_clause_repeat1, + [185792] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182327] = 4, - ACTIONS(8158), 1, + ACTIONS(8148), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4604), 1, - aux_sym__patterns_repeat1, + anon_sym_as, + anon_sym_PIPE, + [185803] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8263), 2, - anon_sym_from, - anon_sym_in, - [182342] = 5, - ACTIONS(8265), 1, - anon_sym_case, - ACTIONS(8268), 1, - sym__dedent, - STATE(4627), 1, - aux_sym__match_block_repeat1, - STATE(5173), 1, - sym_case_clause, + ACTIONS(8156), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [185814] = 4, + ACTIONS(7850), 1, + anon_sym_pass, + ACTIONS(8260), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182359] = 2, + STATE(3124), 2, + sym_pass_statement, + sym__cppclass_suite, + [185829] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7818), 4, + ACTIONS(8158), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [182370] = 5, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(8270), 1, - anon_sym_COLON, - ACTIONS(8272), 1, - sym__newline, - STATE(5370), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [182387] = 2, + [185840] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7832), 4, + ACTIONS(7795), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [182398] = 2, + [185851] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7928), 4, + ACTIONS(8034), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [182409] = 4, - ACTIONS(8158), 1, - anon_sym_COMMA, - STATE(4604), 1, - aux_sym__patterns_repeat1, + [185862] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8274), 2, - anon_sym_from, - anon_sym_in, - [182424] = 2, + ACTIONS(8024), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [185873] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7824), 4, + ACTIONS(7844), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [182435] = 2, + [185884] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7946), 4, - anon_sym_RPAREN, + ACTIONS(8150), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [182446] = 4, - ACTIONS(7717), 1, - anon_sym_pass, - ACTIONS(8174), 1, - sym__indent, + [185895] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1688), 2, - sym_pass_statement, - sym__cppclass_suite, - [182461] = 2, + ACTIONS(8024), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [185906] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8276), 4, + ACTIONS(7936), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [182472] = 5, - ACTIONS(3823), 1, - anon_sym_LBRACK, - ACTIONS(8194), 1, - anon_sym_LPAREN, - STATE(5214), 1, - sym_parameters, - STATE(5294), 1, - sym_type_parameter, + anon_sym_PIPE, + anon_sym_RBRACE, + [185917] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182489] = 4, - ACTIONS(8073), 1, + ACTIONS(7938), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [185928] = 4, + ACTIONS(8384), 1, anon_sym_COMMA, - STATE(4526), 1, + STATE(4694), 1, aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8278), 2, + ACTIONS(8382), 2, sym__newline, anon_sym_SEMI, - [182504] = 2, + [185943] = 5, + ACTIONS(8172), 1, + anon_sym_as, + ACTIONS(8387), 1, + anon_sym_RPAREN, + ACTIONS(8389), 1, + anon_sym_COMMA, + STATE(5160), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185960] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7828), 4, + ACTIONS(7942), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [182515] = 2, + [185971] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7784), 4, - anon_sym_RPAREN, + ACTIONS(7994), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [182526] = 2, + anon_sym_RBRACE, + [185982] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7928), 4, + ACTIONS(8020), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [182537] = 2, + [185993] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7808), 4, + ACTIONS(7992), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [182548] = 2, + [186004] = 4, + ACTIONS(7789), 1, + anon_sym_pass, + ACTIONS(8292), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7798), 4, - anon_sym_RPAREN, + STATE(741), 2, + sym_pass_statement, + sym__cppclass_suite, + [186019] = 5, + ACTIONS(3878), 1, + sym_string_start, + ACTIONS(8391), 1, + anon_sym_COLON, + ACTIONS(8393), 1, + sym__newline, + STATE(5246), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186036] = 4, + ACTIONS(8300), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [182559] = 2, + STATE(4586), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8395), 2, + anon_sym_from, + anon_sym_in, + [186051] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8002), 4, + ACTIONS(8106), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [182570] = 2, + [186062] = 5, + ACTIONS(8065), 1, + anon_sym_RPAREN, + ACTIONS(8203), 1, + sym_identifier, + STATE(4873), 1, + sym_dotted_name, + STATE(5271), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186079] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7724), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [186090] = 4, + ACTIONS(8300), 1, + anon_sym_COMMA, + STATE(4586), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8280), 4, - sym__newline, + ACTIONS(8397), 2, + anon_sym_from, + anon_sym_in, + [186105] = 5, + ACTIONS(3878), 1, + sym_string_start, + ACTIONS(8399), 1, anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [182581] = 2, + ACTIONS(8401), 1, + sym__newline, + STATE(5381), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186122] = 5, + ACTIONS(8172), 1, + anon_sym_as, + ACTIONS(8403), 1, + anon_sym_RPAREN, + ACTIONS(8405), 1, + anon_sym_COMMA, + STATE(4975), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8012), 4, + ACTIONS(6818), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(8407), 2, anon_sym_COMMA, + anon_sym_RBRACE, + [186152] = 5, + ACTIONS(8176), 1, anon_sym_as, + ACTIONS(8409), 1, + anon_sym_COMMA, + ACTIONS(8411), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [182592] = 4, - ACTIONS(8158), 1, + STATE(4989), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186169] = 4, + ACTIONS(8300), 1, anon_sym_COMMA, - STATE(4604), 1, + STATE(4586), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8282), 2, + ACTIONS(8413), 2, anon_sym_from, anon_sym_in, - [182607] = 2, + [186184] = 4, + ACTIONS(6939), 1, + anon_sym_COMMA, + STATE(4426), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8038), 4, - anon_sym_RPAREN, + ACTIONS(8415), 2, + sym__newline, + anon_sym_SEMI, + [186199] = 4, + ACTIONS(4992), 1, + anon_sym_LBRACK, + STATE(3611), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6058), 2, + anon_sym_DOT, + sym_identifier, + [186214] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8150), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [182618] = 2, + anon_sym_RBRACE, + [186225] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7886), 4, - anon_sym_RPAREN, + ACTIONS(8024), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [182629] = 4, - ACTIONS(8284), 1, - anon_sym_RPAREN, - ACTIONS(8286), 1, + [186236] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4650), 1, - aux_sym_with_clause_repeat1, + ACTIONS(8417), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182643] = 4, - ACTIONS(8289), 1, + [186250] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8292), 1, - anon_sym_RBRACK, - STATE(4651), 1, - aux_sym_subscript_repeat1, + ACTIONS(8419), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182657] = 4, - ACTIONS(8294), 1, + [186264] = 4, + ACTIONS(8421), 1, anon_sym_COMMA, - ACTIONS(8296), 1, + ACTIONS(8423), 1, anon_sym_RBRACE, - STATE(4678), 1, + STATE(4747), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182671] = 4, - ACTIONS(8298), 1, - anon_sym_COLON, - ACTIONS(8300), 1, - anon_sym_LBRACK, - STATE(5740), 1, - sym_external_definition, + [186278] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8425), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182685] = 4, - ACTIONS(8302), 1, - anon_sym_COMMA, - ACTIONS(8304), 1, + [186292] = 3, + ACTIONS(7739), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7741), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(4717), 1, - aux_sym_dict_pattern_repeat1, + [186304] = 4, + ACTIONS(8427), 1, + anon_sym_LPAREN, + ACTIONS(8429), 1, + anon_sym_COLON, + ACTIONS(8431), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182699] = 3, - ACTIONS(7368), 1, + [186318] = 4, + ACTIONS(8433), 1, anon_sym_LPAREN, + ACTIONS(8435), 1, + anon_sym_COLON, + ACTIONS(8437), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8306), 2, - anon_sym_COMMA, - anon_sym_COLON, - [182711] = 4, - ACTIONS(7000), 1, + [186332] = 4, + ACTIONS(7108), 1, anon_sym_COMMA, - ACTIONS(8308), 1, + ACTIONS(8439), 1, anon_sym_RBRACK, - STATE(4958), 1, + STATE(4935), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182725] = 3, - ACTIONS(1486), 1, - anon_sym_except, + [186346] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1488), 2, - anon_sym_except_STAR, - anon_sym_finally, - [182737] = 4, - ACTIONS(8310), 1, + ACTIONS(8325), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [186356] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8441), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186370] = 4, + ACTIONS(8433), 1, anon_sym_LPAREN, - ACTIONS(8312), 1, + ACTIONS(8443), 1, anon_sym_COLON, - ACTIONS(8314), 1, + ACTIONS(8445), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182751] = 4, - ACTIONS(6339), 1, + [186384] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8316), 1, + ACTIONS(8447), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182765] = 4, - ACTIONS(6339), 1, + [186398] = 4, + ACTIONS(2863), 1, + anon_sym_RPAREN, + ACTIONS(8449), 1, anon_sym_COMMA, - ACTIONS(8318), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(4843), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182779] = 4, - ACTIONS(6339), 1, + [186412] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8320), 1, + ACTIONS(8451), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182793] = 4, - ACTIONS(6339), 1, + [186426] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8322), 1, + ACTIONS(8453), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182807] = 4, - ACTIONS(6339), 1, + [186440] = 4, + ACTIONS(2717), 1, + anon_sym_RBRACK, + ACTIONS(8455), 1, anon_sym_COMMA, - ACTIONS(8324), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(4862), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182821] = 4, - ACTIONS(6339), 1, + [186454] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8326), 1, + ACTIONS(8457), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182835] = 4, - ACTIONS(8328), 1, + [186468] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8331), 1, - anon_sym_RBRACE, - STATE(4665), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(8459), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182849] = 4, - ACTIONS(6339), 1, + [186482] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8333), 1, + ACTIONS(8461), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182863] = 4, - ACTIONS(6339), 1, + [186496] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8335), 1, + ACTIONS(8463), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182877] = 4, - ACTIONS(8337), 1, + [186510] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8465), 1, sym__newline, - ACTIONS(8339), 1, - sym__indent, - STATE(1441), 1, - sym__match_block, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182891] = 4, - ACTIONS(8341), 1, + [186524] = 4, + ACTIONS(5441), 1, + anon_sym_RPAREN, + ACTIONS(8467), 1, anon_sym_COMMA, - ACTIONS(8344), 1, - anon_sym_COLON, - STATE(4669), 1, - aux_sym_match_statement_repeat1, + STATE(5034), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182905] = 4, - ACTIONS(6339), 1, + [186538] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8346), 1, + ACTIONS(8469), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182919] = 4, - ACTIONS(8348), 1, + [186552] = 4, + ACTIONS(8471), 1, + anon_sym_RPAREN, + ACTIONS(8473), 1, anon_sym_COMMA, - ACTIONS(8351), 1, - anon_sym_COLON, - STATE(4671), 1, - aux_sym__parameters_repeat1, + STATE(4918), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182933] = 4, - ACTIONS(3071), 1, - anon_sym_RPAREN, - ACTIONS(8353), 1, + [186566] = 4, + ACTIONS(6698), 1, + sym__newline, + ACTIONS(8475), 1, anon_sym_COMMA, - STATE(4707), 1, - aux_sym_assert_statement_repeat1, + STATE(5063), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182947] = 4, - ACTIONS(7065), 1, + [186580] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(7067), 1, - anon_sym_RBRACE, - STATE(4778), 1, - aux_sym_dictionary_repeat1, + ACTIONS(8477), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182961] = 4, - ACTIONS(7418), 1, - anon_sym_RBRACE, - ACTIONS(8355), 1, + [186594] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4674), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8479), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182975] = 4, - ACTIONS(7000), 1, + [186608] = 4, + ACTIONS(5177), 1, + anon_sym_RPAREN, + ACTIONS(8481), 1, anon_sym_COMMA, - ACTIONS(8358), 1, - anon_sym_RBRACK, - STATE(4958), 1, - aux_sym_type_index_repeat1, + STATE(4891), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182989] = 4, - ACTIONS(5039), 1, - anon_sym_RPAREN, - ACTIONS(8360), 1, + [186622] = 4, + ACTIONS(8483), 1, anon_sym_COMMA, - STATE(4937), 1, - aux_sym_case_clause_repeat1, + ACTIONS(8486), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183003] = 4, - ACTIONS(5057), 1, + [186636] = 4, + ACTIONS(5179), 1, anon_sym_RBRACK, - ACTIONS(8362), 1, + ACTIONS(8488), 1, anon_sym_COMMA, - STATE(4845), 1, + STATE(5122), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183017] = 4, - ACTIONS(8364), 1, + [186650] = 4, + ACTIONS(3375), 1, + anon_sym_COLON, + ACTIONS(8490), 1, anon_sym_COMMA, - ACTIONS(8366), 1, - anon_sym_RBRACE, - STATE(4665), 1, - aux_sym_dict_pattern_repeat1, + STATE(4808), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183031] = 4, - ACTIONS(8368), 1, + [186664] = 4, + ACTIONS(8492), 1, anon_sym_COMMA, - ACTIONS(8370), 1, + ACTIONS(8494), 1, anon_sym_RBRACE, - STATE(4665), 1, + STATE(5224), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183045] = 4, - ACTIONS(8300), 1, - anon_sym_LBRACK, - ACTIONS(8372), 1, - anon_sym_COLON, - STATE(5499), 1, - sym_external_definition, + [186678] = 4, + ACTIONS(8496), 1, + anon_sym_COMMA, + ACTIONS(8498), 1, + anon_sym_RBRACE, + STATE(5224), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183059] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(8374), 1, - anon_sym_COLON, - ACTIONS(8376), 1, + [186692] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8500), 1, sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183073] = 4, - ACTIONS(6339), 1, + [186706] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8378), 1, + ACTIONS(8502), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183087] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(8382), 1, - sym__newline, - ACTIONS(3), 2, + [186720] = 3, + ACTIONS(7755), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [183101] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8384), 1, + ACTIONS(7757), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [186732] = 4, + ACTIONS(6759), 1, sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7092), 1, + anon_sym_COMMA, + STATE(5063), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183115] = 4, - ACTIONS(7974), 1, + [186746] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(8504), 1, anon_sym_COLON, - ACTIONS(7978), 1, + ACTIONS(8506), 1, sym__newline, - ACTIONS(8386), 1, - sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183129] = 4, - ACTIONS(6339), 1, + [186760] = 4, + ACTIONS(8508), 1, anon_sym_COMMA, - ACTIONS(8388), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8510), 1, + anon_sym_RBRACK, + STATE(4967), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183143] = 4, - ACTIONS(6339), 1, + [186774] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8390), 1, + ACTIONS(8512), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183157] = 4, - ACTIONS(6339), 1, + [186788] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8392), 1, + ACTIONS(8514), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183171] = 4, - ACTIONS(7978), 1, - sym__newline, - ACTIONS(8394), 1, - anon_sym_LPAREN, - ACTIONS(8396), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183185] = 4, - ACTIONS(6339), 1, + [186802] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8398), 1, + ACTIONS(8516), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183199] = 4, - ACTIONS(6339), 1, + [186816] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8400), 1, + ACTIONS(8518), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183213] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8402), 1, + [186830] = 4, + ACTIONS(8520), 1, sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8522), 1, + sym__indent, + STATE(1716), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183227] = 4, - ACTIONS(6339), 1, + [186844] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8404), 1, + ACTIONS(8524), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183241] = 4, - ACTIONS(6339), 1, + [186858] = 4, + ACTIONS(5155), 1, + anon_sym_RPAREN, + ACTIONS(8526), 1, anon_sym_COMMA, - ACTIONS(8406), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(4891), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183255] = 4, - ACTIONS(6339), 1, + [186872] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8408), 1, + ACTIONS(8528), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183269] = 4, - ACTIONS(8410), 1, + [186886] = 4, + ACTIONS(8530), 1, anon_sym_COMMA, - ACTIONS(8412), 1, - anon_sym_COLON, - STATE(4939), 1, - aux_sym_with_clause_repeat1, + ACTIONS(8532), 1, + anon_sym_RBRACK, + STATE(5045), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183283] = 4, - ACTIONS(6339), 1, + [186900] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8414), 1, + ACTIONS(8534), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183297] = 4, - ACTIONS(6339), 1, + [186914] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8416), 1, + ACTIONS(8536), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183311] = 4, - ACTIONS(6339), 1, + [186928] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8418), 1, + ACTIONS(8538), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183325] = 4, - ACTIONS(6339), 1, + [186942] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8420), 1, + ACTIONS(8540), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183339] = 4, - ACTIONS(6339), 1, + [186956] = 4, + ACTIONS(5688), 1, + anon_sym_RPAREN, + ACTIONS(8542), 1, anon_sym_COMMA, - ACTIONS(8422), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(4768), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183353] = 4, - ACTIONS(6653), 1, + [186970] = 4, + ACTIONS(8545), 1, anon_sym_COMMA, - ACTIONS(6657), 1, - sym__newline, - STATE(5033), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8548), 1, + anon_sym_COLON, + STATE(4769), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183367] = 4, - ACTIONS(5137), 1, - anon_sym_RPAREN, - ACTIONS(8424), 1, + [186984] = 4, + ACTIONS(5145), 1, + anon_sym_RBRACK, + ACTIONS(8550), 1, anon_sym_COMMA, - STATE(4937), 1, + STATE(5122), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183381] = 4, - ACTIONS(5075), 1, - anon_sym_RPAREN, - ACTIONS(8426), 1, - anon_sym_COMMA, - STATE(4937), 1, - aux_sym_case_clause_repeat1, + [186998] = 3, + ACTIONS(1514), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183395] = 4, - ACTIONS(7655), 1, - anon_sym_RPAREN, - ACTIONS(8196), 1, + ACTIONS(1516), 2, + anon_sym_except_STAR, + anon_sym_finally, + [187010] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4869), 1, - aux_sym__import_list_repeat1, + ACTIONS(8552), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183409] = 3, - ACTIONS(8065), 1, - anon_sym_LPAREN, + [187024] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8554), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8306), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [183421] = 4, - ACTIONS(6689), 1, + [187038] = 4, + ACTIONS(5187), 1, anon_sym_RPAREN, - ACTIONS(8428), 1, + ACTIONS(8556), 1, anon_sym_COMMA, - STATE(4707), 1, - aux_sym_assert_statement_repeat1, + STATE(4891), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183435] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(8431), 1, + [187052] = 4, + ACTIONS(8558), 1, anon_sym_COLON, + ACTIONS(8560), 1, + anon_sym_LBRACK, + STATE(5532), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [187066] = 4, ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(8562), 1, + anon_sym_COLON, + ACTIONS(8564), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183449] = 4, - ACTIONS(5099), 1, - anon_sym_RPAREN, - ACTIONS(8435), 1, - anon_sym_COMMA, - STATE(4937), 1, - aux_sym_case_clause_repeat1, + [187080] = 3, + ACTIONS(8568), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183463] = 4, - ACTIONS(6339), 1, + ACTIONS(8566), 2, + sym__newline, anon_sym_COMMA, - ACTIONS(8437), 1, + [187092] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8570), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183477] = 4, - ACTIONS(6339), 1, + [187106] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8439), 1, + ACTIONS(8572), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183491] = 4, - ACTIONS(5101), 1, - anon_sym_RBRACK, - ACTIONS(8441), 1, - anon_sym_COMMA, - STATE(4845), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183505] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8443), 1, + [187120] = 4, + ACTIONS(8437), 1, sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8574), 1, + anon_sym_LPAREN, + ACTIONS(8576), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183519] = 4, - ACTIONS(6339), 1, + [187134] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8445), 1, + ACTIONS(8578), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183533] = 4, - ACTIONS(6339), 1, + [187148] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8447), 1, + ACTIONS(8580), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183547] = 4, - ACTIONS(6339), 1, + [187162] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8582), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183561] = 4, - ACTIONS(8451), 1, + [187176] = 4, + ACTIONS(6718), 1, + sym__newline, + ACTIONS(7211), 1, anon_sym_COMMA, - ACTIONS(8453), 1, - anon_sym_RBRACE, - STATE(4665), 1, - aux_sym_dict_pattern_repeat1, + STATE(5063), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183575] = 4, - ACTIONS(8351), 1, - anon_sym_RPAREN, - ACTIONS(8455), 1, + [187190] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4718), 1, - aux_sym__parameters_repeat1, + ACTIONS(8584), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183589] = 4, - ACTIONS(6183), 1, - anon_sym_RBRACK, - ACTIONS(6317), 1, - anon_sym_COMMA, - STATE(4880), 1, - aux_sym__collection_elements_repeat1, + [187204] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(8586), 1, + anon_sym_COLON, + ACTIONS(8588), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183603] = 4, - ACTIONS(8458), 1, - anon_sym_COMMA, - ACTIONS(8460), 1, - anon_sym_RBRACE, - STATE(4665), 1, - aux_sym_dict_pattern_repeat1, + [187218] = 4, + ACTIONS(8560), 1, + anon_sym_LBRACK, + ACTIONS(8590), 1, + anon_sym_COLON, + STATE(5639), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183617] = 4, - ACTIONS(8462), 1, + [187232] = 4, + ACTIONS(7799), 1, anon_sym_RPAREN, - ACTIONS(8464), 1, + ACTIONS(8358), 1, anon_sym_COMMA, - STATE(4721), 1, - aux_sym__typedargslist_repeat1, + STATE(4986), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183631] = 4, - ACTIONS(8467), 1, - anon_sym_COMMA, - ACTIONS(8469), 1, - anon_sym_RBRACK, - STATE(4886), 1, - aux_sym__patterns_repeat1, + [187246] = 4, + ACTIONS(8138), 1, + anon_sym_COLON, + ACTIONS(8142), 1, + sym__newline, + ACTIONS(8592), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183645] = 4, - ACTIONS(8471), 1, - anon_sym_SEMI, - ACTIONS(8473), 1, + [187260] = 4, + ACTIONS(8142), 1, sym__newline, - STATE(5099), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(8594), 1, + anon_sym_LPAREN, + ACTIONS(8596), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183659] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(8475), 1, - anon_sym_COLON, - ACTIONS(8477), 1, - sym__newline, + [187274] = 3, + ACTIONS(8600), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183673] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8479), 1, + ACTIONS(8598), 2, sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COMMA, + [187286] = 4, + ACTIONS(8240), 1, + anon_sym_DOT, + ACTIONS(8602), 1, + anon_sym_COLON, + ACTIONS(8604), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183687] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8481), 1, + [187300] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(8606), 1, + anon_sym_COLON, + ACTIONS(8608), 1, sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183701] = 4, - ACTIONS(6339), 1, + [187314] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8483), 1, + ACTIONS(8610), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183715] = 4, - ACTIONS(6339), 1, + [187328] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8485), 1, + ACTIONS(8612), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183729] = 4, - ACTIONS(6339), 1, + [187342] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8487), 1, + ACTIONS(8614), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183743] = 4, - ACTIONS(7776), 1, - anon_sym_COLON, - ACTIONS(7780), 1, - sym__newline, - ACTIONS(8489), 1, - sym_identifier, + [187356] = 4, + ACTIONS(8616), 1, + anon_sym_COMMA, + ACTIONS(8618), 1, + anon_sym_RBRACK, + STATE(4967), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183757] = 4, - ACTIONS(6339), 1, + [187370] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8491), 1, + ACTIONS(8620), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183771] = 4, - ACTIONS(8493), 1, - anon_sym_COMMA, - ACTIONS(8496), 1, + [187384] = 4, + ACTIONS(2719), 1, anon_sym_RBRACK, - STATE(4732), 1, - aux_sym_template_params_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183785] = 4, - ACTIONS(6415), 1, - anon_sym_RPAREN, - ACTIONS(6417), 1, + ACTIONS(8622), 1, anon_sym_COMMA, - STATE(4900), 1, - aux_sym_argument_list_repeat1, + STATE(4862), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183799] = 4, - ACTIONS(8498), 1, - anon_sym_RPAREN, - ACTIONS(8500), 1, + [187398] = 4, + ACTIONS(6356), 1, + anon_sym_RBRACK, + ACTIONS(6433), 1, anon_sym_COMMA, - STATE(4902), 1, - aux_sym_argument_list_repeat1, + STATE(4998), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183813] = 4, - ACTIONS(8502), 1, + [187412] = 4, + ACTIONS(8624), 1, anon_sym_COMMA, - ACTIONS(8504), 1, + ACTIONS(8626), 1, anon_sym_RBRACE, - STATE(4665), 1, + STATE(5013), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183827] = 4, - ACTIONS(6339), 1, + [187426] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8506), 1, + ACTIONS(8628), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183841] = 4, - ACTIONS(8310), 1, + [187440] = 4, + ACTIONS(7718), 1, anon_sym_LPAREN, - ACTIONS(8508), 1, - anon_sym_COLON, - ACTIONS(8510), 1, - sym__newline, + ACTIONS(8630), 1, + anon_sym_GT, + ACTIONS(8632), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183855] = 4, - ACTIONS(6737), 1, + [187454] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(6739), 1, - anon_sym_RBRACK, - STATE(4908), 1, - aux_sym_subscript_repeat1, + ACTIONS(8634), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183869] = 4, - ACTIONS(6721), 1, - anon_sym_COMMA, - ACTIONS(6725), 1, - anon_sym_RBRACK, - STATE(5101), 1, - aux_sym_subscript_repeat1, + [187468] = 4, + ACTIONS(8560), 1, + anon_sym_LBRACK, + ACTIONS(8636), 1, + anon_sym_COLON, + STATE(5510), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183883] = 4, - ACTIONS(6339), 1, + [187482] = 4, + ACTIONS(8638), 1, anon_sym_COMMA, - ACTIONS(8512), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8640), 1, + anon_sym_RBRACK, + STATE(5228), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183897] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8514), 1, + [187496] = 4, + ACTIONS(1283), 1, sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8642), 1, + anon_sym_SEMI, + STATE(4910), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183911] = 4, - ACTIONS(7758), 1, + [187510] = 4, + ACTIONS(8644), 1, + anon_sym_COMMA, + ACTIONS(8647), 1, anon_sym_COLON, - ACTIONS(8516), 1, - anon_sym_RBRACE, - STATE(5709), 1, - sym_format_specifier, + STATE(4808), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183925] = 4, - ACTIONS(6339), 1, + [187524] = 4, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(8518), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8649), 1, + anon_sym_RPAREN, + STATE(5158), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183939] = 4, - ACTIONS(8520), 1, + [187538] = 4, + ACTIONS(8651), 1, anon_sym_SEMI, - ACTIONS(8522), 1, + ACTIONS(8653), 1, sym__newline, - STATE(4752), 1, + STATE(4819), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183953] = 4, - ACTIONS(6339), 1, + [187552] = 4, + ACTIONS(8640), 1, + anon_sym_RPAREN, + ACTIONS(8655), 1, anon_sym_COMMA, - ACTIONS(8524), 1, + STATE(5217), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [187566] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8657), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183967] = 4, - ACTIONS(7000), 1, + [187580] = 4, + ACTIONS(8300), 1, anon_sym_COMMA, - ACTIONS(8526), 1, - anon_sym_RBRACK, - STATE(4958), 1, - aux_sym_type_index_repeat1, + ACTIONS(8659), 1, + anon_sym_in, + STATE(4586), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183981] = 4, - ACTIONS(6315), 1, + [187594] = 4, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(6400), 1, + ACTIONS(6588), 1, anon_sym_RPAREN, - STATE(4929), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183995] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8528), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + [187608] = 4, + ACTIONS(8240), 1, + anon_sym_DOT, + ACTIONS(8604), 1, + anon_sym_PIPE, + ACTIONS(8661), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184009] = 4, - ACTIONS(7141), 1, + [187622] = 4, + ACTIONS(7332), 1, anon_sym_COMMA, - ACTIONS(7143), 1, + ACTIONS(7334), 1, anon_sym_RBRACE, - STATE(4754), 1, + STATE(4822), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184023] = 4, - ACTIONS(8530), 1, + [187636] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8663), 1, sym__newline, - ACTIONS(8532), 1, - sym__indent, - STATE(1531), 1, - sym__match_block, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184037] = 4, - ACTIONS(7368), 1, + [187650] = 4, + ACTIONS(7718), 1, anon_sym_LPAREN, - ACTIONS(8534), 1, + ACTIONS(8665), 1, anon_sym_GT, - ACTIONS(8536), 1, + ACTIONS(8667), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184051] = 4, - ACTIONS(1277), 1, + [187664] = 4, + ACTIONS(1285), 1, sym__newline, - ACTIONS(8538), 1, + ACTIONS(8669), 1, anon_sym_SEMI, - STATE(5080), 1, + STATE(4910), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184065] = 4, - ACTIONS(2657), 1, - anon_sym_RBRACK, - ACTIONS(8540), 1, - anon_sym_COMMA, - STATE(4884), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184079] = 4, - ACTIONS(3085), 1, - anon_sym_RBRACE, - ACTIONS(8542), 1, - anon_sym_COMMA, - STATE(4951), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184093] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8544), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + [187678] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184107] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8546), 1, + ACTIONS(8671), 3, sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184121] = 3, - ACTIONS(1490), 1, - anon_sym_except, - ACTIONS(3), 2, + anon_sym_COLON, + anon_sym_nogil, + [187688] = 3, + ACTIONS(8675), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(1492), 2, - anon_sym_except_STAR, - anon_sym_finally, - [184133] = 4, - ACTIONS(8526), 1, - anon_sym_RBRACK, - ACTIONS(8548), 1, + ACTIONS(8673), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [187700] = 4, + ACTIONS(3122), 1, + anon_sym_RBRACE, + ACTIONS(8677), 1, anon_sym_COMMA, - STATE(4984), 1, - aux_sym_type_index_repeat2, + STATE(4869), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184147] = 4, - ACTIONS(6402), 1, + [187714] = 4, + ACTIONS(6408), 1, anon_sym_RPAREN, - ACTIONS(6404), 1, + ACTIONS(6410), 1, anon_sym_COMMA, - STATE(4766), 1, + STATE(4831), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184161] = 4, - ACTIONS(8550), 1, + [187728] = 4, + ACTIONS(8679), 1, anon_sym_RPAREN, - ACTIONS(8552), 1, + ACTIONS(8681), 1, anon_sym_COMMA, - STATE(4768), 1, + STATE(4833), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184175] = 4, - ACTIONS(7418), 1, - anon_sym_RPAREN, - ACTIONS(8554), 1, + [187742] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4761), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8683), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184189] = 4, - ACTIONS(6733), 1, + [187756] = 4, + ACTIONS(6892), 1, anon_sym_COMMA, - ACTIONS(6735), 1, + ACTIONS(6894), 1, anon_sym_RBRACK, - STATE(4770), 1, + STATE(4835), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184203] = 4, - ACTIONS(8337), 1, + [187770] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8685), 1, sym__newline, - ACTIONS(8339), 1, - sym__indent, - STATE(1393), 1, - sym__match_block, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184217] = 4, - ACTIONS(7958), 1, + [187784] = 4, + ACTIONS(6700), 1, + sym__newline, + ACTIONS(6742), 1, + anon_sym_COMMA, + STATE(5063), 1, + aux_sym_cvar_def_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [187798] = 4, + ACTIONS(8122), 1, anon_sym_RBRACK, - ACTIONS(8548), 1, + ACTIONS(8687), 1, anon_sym_COMMA, - STATE(4772), 1, + STATE(4838), 1, aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184231] = 4, - ACTIONS(5115), 1, - anon_sym_RPAREN, - ACTIONS(8557), 1, + [187812] = 4, + ACTIONS(5219), 1, + anon_sym_COLON, + ACTIONS(8689), 1, anon_sym_COMMA, - STATE(4937), 1, - aux_sym_case_clause_repeat1, + STATE(4860), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184245] = 4, - ACTIONS(2847), 1, + [187826] = 4, + ACTIONS(2879), 1, anon_sym_RPAREN, - ACTIONS(8559), 1, + ACTIONS(8691), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184259] = 4, - ACTIONS(6339), 1, + [187840] = 4, + ACTIONS(7108), 1, anon_sym_COMMA, - ACTIONS(8561), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8693), 1, + anon_sym_RBRACK, + STATE(4935), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184273] = 4, - ACTIONS(2849), 1, + [187854] = 4, + ACTIONS(2881), 1, anon_sym_RPAREN, - ACTIONS(8563), 1, + ACTIONS(8695), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184287] = 4, - ACTIONS(8565), 1, + [187868] = 4, + ACTIONS(8697), 1, anon_sym_COMMA, - ACTIONS(8567), 1, + ACTIONS(8699), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184301] = 4, - ACTIONS(8569), 1, + [187882] = 4, + ACTIONS(8701), 1, anon_sym_COMMA, - ACTIONS(8571), 1, + ACTIONS(8703), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184315] = 4, - ACTIONS(7000), 1, + [187896] = 4, + ACTIONS(8705), 1, + anon_sym_SEMI, + ACTIONS(8707), 1, + sym__newline, + STATE(4807), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [187910] = 4, + ACTIONS(7108), 1, anon_sym_COMMA, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_RBRACK, - STATE(4958), 1, + STATE(4935), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184329] = 4, - ACTIONS(8548), 1, + [187924] = 4, + ACTIONS(8687), 1, anon_sym_COMMA, - ACTIONS(8573), 1, + ACTIONS(8709), 1, anon_sym_RBRACK, - STATE(4984), 1, + STATE(4938), 1, aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184343] = 4, - ACTIONS(8069), 1, + [187938] = 4, + ACTIONS(8201), 1, anon_sym_COMMA, - ACTIONS(8575), 1, + ACTIONS(8711), 1, anon_sym_RPAREN, - STATE(5038), 1, + STATE(4946), 1, aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184357] = 4, - ACTIONS(7780), 1, - sym__newline, - ACTIONS(8577), 1, - anon_sym_LPAREN, - ACTIONS(8579), 1, + [187952] = 4, + ACTIONS(7917), 1, anon_sym_COLON, + ACTIONS(8713), 1, + anon_sym_RBRACE, + STATE(5484), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184371] = 3, - ACTIONS(7800), 1, - anon_sym_LPAREN, + [187966] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8581), 2, + ACTIONS(7629), 3, anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, - [184383] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(8583), 1, - anon_sym_COLON, - ACTIONS(8585), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184397] = 4, - ACTIONS(8075), 1, - anon_sym_DOT, - ACTIONS(8587), 1, - anon_sym_COLON, - ACTIONS(8589), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184411] = 4, - ACTIONS(3081), 1, - anon_sym_RBRACE, - ACTIONS(8591), 1, - anon_sym_COMMA, - STATE(4951), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184425] = 4, - ACTIONS(8091), 1, + [187976] = 4, + ACTIONS(8186), 1, anon_sym_COMMA, - ACTIONS(8593), 1, + ACTIONS(8715), 1, anon_sym_RBRACK, - STATE(5060), 1, + STATE(5188), 1, aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184439] = 4, - ACTIONS(8595), 1, + [187990] = 4, + ACTIONS(7486), 1, + anon_sym_RPAREN, + ACTIONS(8717), 1, anon_sym_COMMA, - ACTIONS(8597), 1, - anon_sym_RBRACE, - STATE(4665), 1, - aux_sym_dict_pattern_repeat1, + STATE(4843), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184453] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8599), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + [188004] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184467] = 4, - ACTIONS(8601), 1, + ACTIONS(8720), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [188016] = 4, + ACTIONS(8722), 1, anon_sym_COMMA, - ACTIONS(8603), 1, + ACTIONS(8724), 1, anon_sym_RBRACE, - STATE(4789), 1, + STATE(4852), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184481] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8605), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184495] = 4, - ACTIONS(6315), 1, - anon_sym_COMMA, - ACTIONS(8607), 1, - anon_sym_RPAREN, - STATE(4929), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, + [188030] = 3, + ACTIONS(7532), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [184509] = 4, - ACTIONS(7000), 1, + ACTIONS(7534), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [188042] = 4, + ACTIONS(7108), 1, anon_sym_COMMA, - ACTIONS(8609), 1, + ACTIONS(8726), 1, anon_sym_RBRACK, - STATE(4958), 1, + STATE(4935), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184523] = 4, - ACTIONS(5119), 1, + [188056] = 4, + ACTIONS(5199), 1, anon_sym_RPAREN, - ACTIONS(8611), 1, + ACTIONS(8728), 1, anon_sym_COMMA, - STATE(4937), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184537] = 4, - ACTIONS(5121), 1, - anon_sym_RBRACK, - ACTIONS(8613), 1, - anon_sym_COMMA, - STATE(4845), 1, + STATE(4891), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184551] = 4, - ACTIONS(6667), 1, - sym__newline, - ACTIONS(8615), 1, - anon_sym_COMMA, - STATE(5033), 1, - aux_sym_cvar_def_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184565] = 4, - ACTIONS(8617), 1, + [188070] = 4, + ACTIONS(8730), 1, anon_sym_COMMA, - ACTIONS(8619), 1, + ACTIONS(8732), 1, anon_sym_RBRACE, - STATE(4665), 1, + STATE(5224), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184579] = 4, - ACTIONS(6339), 1, + [188084] = 4, + ACTIONS(5201), 1, + anon_sym_RBRACK, + ACTIONS(8734), 1, anon_sym_COMMA, - ACTIONS(8621), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(5122), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184593] = 4, - ACTIONS(8623), 1, + [188098] = 3, + ACTIONS(7536), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7538), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [188110] = 4, + ACTIONS(8736), 1, anon_sym_COMMA, - ACTIONS(8625), 1, + ACTIONS(8738), 1, anon_sym_RBRACE, - STATE(4665), 1, + STATE(5224), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184607] = 4, - ACTIONS(6339), 1, + [188124] = 4, + ACTIONS(8740), 1, anon_sym_COMMA, - ACTIONS(8627), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8742), 1, + anon_sym_RBRACE, + STATE(5224), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184621] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8629), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + [188138] = 4, + ACTIONS(8560), 1, + anon_sym_LBRACK, + ACTIONS(8744), 1, + anon_sym_COLON, + STATE(5535), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184635] = 2, + [188152] = 3, + ACTIONS(7718), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7452), 3, + ACTIONS(8720), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [184645] = 4, - ACTIONS(6339), 1, + anon_sym_COLON, + [188164] = 4, + ACTIONS(5207), 1, + anon_sym_RPAREN, + ACTIONS(8746), 1, anon_sym_COMMA, - ACTIONS(8631), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(4891), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184659] = 4, - ACTIONS(5133), 1, - anon_sym_RPAREN, - ACTIONS(8633), 1, - anon_sym_COMMA, - STATE(4937), 1, - aux_sym_case_clause_repeat1, + [188178] = 4, + ACTIONS(8560), 1, + anon_sym_LBRACK, + ACTIONS(8748), 1, + anon_sym_COLON, + STATE(5725), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184673] = 4, - ACTIONS(7804), 1, - anon_sym_RBRACK, - ACTIONS(8548), 1, + [188192] = 4, + ACTIONS(6431), 1, anon_sym_COMMA, - STATE(4978), 1, - aux_sym_type_index_repeat2, + ACTIONS(6542), 1, + anon_sym_RPAREN, + STATE(5158), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184687] = 4, - ACTIONS(5969), 1, - sym_identifier, - ACTIONS(8635), 1, - anon_sym_DOT, - STATE(4979), 1, - aux_sym_type_qualifier_repeat1, - ACTIONS(3), 2, + [188206] = 3, + ACTIONS(7540), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [184701] = 4, - ACTIONS(8637), 1, - anon_sym_RPAREN, - ACTIONS(8639), 1, + ACTIONS(7542), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [188218] = 4, + ACTIONS(8750), 1, anon_sym_COMMA, - STATE(4970), 1, + ACTIONS(8753), 1, + anon_sym_COLON, + STATE(4860), 1, aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184715] = 3, - ACTIONS(5709), 1, - anon_sym_COLON, + [188232] = 4, + ACTIONS(8755), 1, + anon_sym_SEMI, + ACTIONS(8757), 1, + sym__newline, + STATE(4870), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5707), 2, - anon_sym_RPAREN, + [188246] = 4, + ACTIONS(7797), 1, + anon_sym_RBRACK, + ACTIONS(8759), 1, anon_sym_COMMA, - [184727] = 3, - ACTIONS(1478), 1, - anon_sym_except, + STATE(4862), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1480), 2, - anon_sym_except_STAR, - anon_sym_finally, - [184739] = 4, - ACTIONS(8641), 1, - anon_sym_SEMI, - ACTIONS(8643), 1, - sym__newline, - STATE(4812), 1, - aux_sym__simple_statements_repeat1, + [188260] = 3, + ACTIONS(7856), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184753] = 3, - ACTIONS(7596), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7598), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [184765] = 4, - ACTIONS(6315), 1, + ACTIONS(8762), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [188272] = 4, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(6423), 1, + ACTIONS(6472), 1, anon_sym_RPAREN, - STATE(4929), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184779] = 3, - ACTIONS(7600), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7602), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [184791] = 3, - ACTIONS(7604), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7606), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [184803] = 4, - ACTIONS(8105), 1, - sym_identifier, - STATE(5096), 1, - sym_dotted_name, - STATE(5331), 1, - sym_aliased_import, + [188286] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(8764), 1, + anon_sym_COLON, + ACTIONS(8766), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184817] = 4, - ACTIONS(7053), 1, + [188300] = 4, + ACTIONS(7355), 1, anon_sym_COMMA, - ACTIONS(7055), 1, + ACTIONS(7357), 1, anon_sym_RBRACE, - STATE(4815), 1, + STATE(4872), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184831] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(8645), 1, - anon_sym_COLON, - ACTIONS(8647), 1, - sym__newline, + [188314] = 4, + ACTIONS(7102), 1, + sym_identifier, + STATE(4642), 1, + sym_dotted_name, + STATE(5148), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184845] = 4, - ACTIONS(7368), 1, + [188328] = 4, + ACTIONS(7718), 1, anon_sym_LPAREN, - ACTIONS(8649), 1, + ACTIONS(8768), 1, anon_sym_GT, - ACTIONS(8651), 1, + ACTIONS(8770), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184859] = 4, - ACTIONS(6339), 1, + [188342] = 4, + ACTIONS(8772), 1, anon_sym_COMMA, - ACTIONS(8653), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8775), 1, + anon_sym_RBRACE, + STATE(4869), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184873] = 4, - ACTIONS(1261), 1, + [188356] = 4, + ACTIONS(1289), 1, sym__newline, - ACTIONS(8655), 1, + ACTIONS(8777), 1, anon_sym_SEMI, - STATE(5080), 1, + STATE(4910), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184887] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8657), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184901] = 4, - ACTIONS(6339), 1, + [188370] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8659), 1, + ACTIONS(8779), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184915] = 4, - ACTIONS(3103), 1, + [188384] = 4, + ACTIONS(3128), 1, anon_sym_RBRACE, - ACTIONS(8661), 1, + ACTIONS(8781), 1, anon_sym_COMMA, - STATE(4951), 1, + STATE(4869), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184929] = 4, - ACTIONS(2967), 1, - anon_sym_RBRACE, - ACTIONS(8663), 1, - anon_sym_COMMA, - STATE(4674), 1, - aux_sym__collection_elements_repeat1, + [188398] = 3, + ACTIONS(8360), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184943] = 4, - ACTIONS(6339), 1, + ACTIONS(8312), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8665), 1, + [188410] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8783), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184957] = 4, - ACTIONS(6425), 1, + [188424] = 4, + ACTIONS(6478), 1, anon_sym_RPAREN, - ACTIONS(6427), 1, + ACTIONS(6480), 1, anon_sym_COMMA, - STATE(4824), 1, + STATE(4880), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184971] = 4, - ACTIONS(8667), 1, + [188438] = 4, + ACTIONS(8785), 1, anon_sym_RPAREN, - ACTIONS(8669), 1, + ACTIONS(8787), 1, anon_sym_COMMA, - STATE(4826), 1, + STATE(4882), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184985] = 4, - ACTIONS(6769), 1, + [188452] = 4, + ACTIONS(7074), 1, anon_sym_COMMA, - ACTIONS(6771), 1, + ACTIONS(7076), 1, anon_sym_RBRACK, - STATE(4828), 1, + STATE(4884), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184999] = 4, - ACTIONS(3293), 1, - anon_sym_RPAREN, - ACTIONS(8671), 1, - anon_sym_COMMA, - STATE(4650), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185013] = 3, - ACTIONS(1494), 1, - anon_sym_except, + [188466] = 4, + ACTIONS(8789), 1, + anon_sym_SEMI, + ACTIONS(8791), 1, + sym__newline, + STATE(4922), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1496), 2, - anon_sym_except_STAR, - anon_sym_finally, - [185025] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8673), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + [188480] = 4, + ACTIONS(8240), 1, + anon_sym_DOT, + ACTIONS(8604), 1, + anon_sym_PIPE, + ACTIONS(8793), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185039] = 4, - ACTIONS(2859), 1, + [188494] = 4, + ACTIONS(2891), 1, anon_sym_RPAREN, - ACTIONS(8675), 1, + ACTIONS(8795), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185053] = 4, - ACTIONS(8075), 1, - anon_sym_DOT, - ACTIONS(8589), 1, - anon_sym_PIPE, - ACTIONS(8677), 1, - anon_sym_COLON, + [188508] = 4, + ACTIONS(8797), 1, + anon_sym_COMMA, + ACTIONS(8799), 1, + anon_sym_RBRACE, + STATE(5224), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185067] = 4, - ACTIONS(2861), 1, + [188522] = 4, + ACTIONS(2893), 1, anon_sym_RPAREN, - ACTIONS(8679), 1, + ACTIONS(8801), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185081] = 4, - ACTIONS(8681), 1, + [188536] = 4, + ACTIONS(8803), 1, anon_sym_COMMA, - ACTIONS(8683), 1, + ACTIONS(8805), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185095] = 4, - ACTIONS(8685), 1, + [188550] = 4, + ACTIONS(8807), 1, anon_sym_COMMA, - ACTIONS(8687), 1, + ACTIONS(8809), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185109] = 4, - ACTIONS(8337), 1, - sym__newline, - ACTIONS(8339), 1, - sym__indent, - STATE(1454), 1, - sym__match_block, + [188564] = 4, + ACTIONS(7108), 1, + anon_sym_COMMA, + ACTIONS(8811), 1, + anon_sym_RBRACK, + STATE(4935), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185123] = 4, - ACTIONS(8284), 1, - anon_sym_COLON, - ACTIONS(8689), 1, + [188578] = 4, + ACTIONS(6426), 1, + anon_sym_RPAREN, + ACTIONS(6431), 1, anon_sym_COMMA, - STATE(4830), 1, - aux_sym_with_clause_repeat1, + STATE(5158), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185137] = 4, - ACTIONS(7758), 1, - anon_sym_COLON, - ACTIONS(8692), 1, - anon_sym_RBRACE, - STATE(5640), 1, - sym_format_specifier, + [188592] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8813), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185151] = 2, + [188606] = 4, + ACTIONS(8318), 1, + anon_sym_RPAREN, + ACTIONS(8815), 1, + anon_sym_COMMA, + STATE(4888), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8276), 3, - anon_sym_COMMA, + [188620] = 3, + ACTIONS(8172), 1, anon_sym_as, - anon_sym_RBRACE, - [185161] = 4, - ACTIONS(6675), 1, - sym__newline, - ACTIONS(6697), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8275), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(5033), 1, - aux_sym_cvar_def_repeat1, + [188632] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185175] = 4, - ACTIONS(8694), 1, - anon_sym_SEMI, - ACTIONS(8696), 1, - sym__newline, - STATE(4844), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(8325), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [188642] = 4, + ACTIONS(8275), 1, + anon_sym_RPAREN, + ACTIONS(8818), 1, + anon_sym_COMMA, + STATE(4891), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185189] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(8698), 1, - anon_sym_COLON, - ACTIONS(8700), 1, - sym__newline, + [188656] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185203] = 4, - ACTIONS(8702), 1, - anon_sym_LPAREN, - ACTIONS(8704), 1, - anon_sym_COLON, - ACTIONS(8706), 1, + ACTIONS(7629), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [188666] = 4, + ACTIONS(8821), 1, + anon_sym_SEMI, + ACTIONS(8823), 1, sym__newline, + STATE(4900), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185217] = 4, - ACTIONS(6315), 1, - anon_sym_COMMA, - ACTIONS(6433), 1, + [188680] = 4, + ACTIONS(8825), 1, anon_sym_RPAREN, - STATE(4929), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8827), 1, + anon_sym_COMMA, + STATE(5159), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185231] = 4, - ACTIONS(6339), 1, + [188694] = 4, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(8708), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6490), 1, + anon_sym_RPAREN, + STATE(5158), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185245] = 4, - ACTIONS(5129), 1, - anon_sym_RPAREN, - ACTIONS(8710), 1, - anon_sym_COMMA, - STATE(4937), 1, - aux_sym_case_clause_repeat1, + [188708] = 4, + ACTIONS(8560), 1, + anon_sym_LBRACK, + ACTIONS(8829), 1, + anon_sym_COLON, + STATE(5708), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185259] = 4, - ACTIONS(7131), 1, + [188722] = 4, + ACTIONS(7359), 1, anon_sym_COMMA, - ACTIONS(7133), 1, + ACTIONS(7361), 1, anon_sym_RBRACE, - STATE(4847), 1, + STATE(4902), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185273] = 3, - ACTIONS(8150), 1, - anon_sym_as, + [188736] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8831), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8166), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [185285] = 4, - ACTIONS(7368), 1, + [188750] = 4, + ACTIONS(7718), 1, anon_sym_LPAREN, - ACTIONS(8712), 1, + ACTIONS(8833), 1, anon_sym_GT, - ACTIONS(8714), 1, + ACTIONS(8835), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185299] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8276), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [185309] = 4, - ACTIONS(1265), 1, + [188764] = 4, + ACTIONS(1295), 1, sym__newline, - ACTIONS(8716), 1, + ACTIONS(8837), 1, anon_sym_SEMI, - STATE(5080), 1, + STATE(4910), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185323] = 4, - ACTIONS(8166), 1, - anon_sym_RBRACK, - ACTIONS(8718), 1, + [188778] = 4, + ACTIONS(8186), 1, anon_sym_COMMA, - STATE(4845), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185337] = 4, - ACTIONS(8721), 1, - anon_sym_COLON, - ACTIONS(8723), 1, - anon_sym_nogil, - ACTIONS(8725), 1, - sym__newline, + ACTIONS(8839), 1, + anon_sym_RBRACK, + STATE(5188), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185351] = 4, - ACTIONS(3051), 1, + [188792] = 4, + ACTIONS(3124), 1, anon_sym_RBRACE, - ACTIONS(8727), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - STATE(4951), 1, + STATE(4869), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185365] = 4, - ACTIONS(6315), 1, + [188806] = 4, + ACTIONS(7231), 1, anon_sym_COMMA, - ACTIONS(8729), 1, - anon_sym_RPAREN, - STATE(4929), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(7233), 1, + anon_sym_RBRACE, + STATE(4945), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185379] = 4, - ACTIONS(8731), 1, + [188820] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8733), 1, - anon_sym_COLON, - STATE(4669), 1, - aux_sym_match_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185393] = 3, - ACTIONS(5711), 1, - anon_sym_EQ, + ACTIONS(8843), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5707), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [185405] = 4, - ACTIONS(6435), 1, + [188834] = 4, + ACTIONS(6492), 1, anon_sym_RPAREN, - ACTIONS(6437), 1, + ACTIONS(6494), 1, anon_sym_COMMA, - STATE(4857), 1, + STATE(4911), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185419] = 4, - ACTIONS(8735), 1, + [188848] = 4, + ACTIONS(8845), 1, anon_sym_RPAREN, - ACTIONS(8737), 1, + ACTIONS(8847), 1, anon_sym_COMMA, - STATE(4858), 1, + STATE(4912), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185433] = 4, - ACTIONS(6773), 1, - anon_sym_COMMA, - ACTIONS(6775), 1, - anon_sym_RBRACK, - STATE(4861), 1, - aux_sym_subscript_repeat1, + [188862] = 3, + ACTIONS(5815), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185447] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8741), 1, - sym__newline, + ACTIONS(5813), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [188874] = 4, + ACTIONS(6947), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_RBRACK, + STATE(4915), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185461] = 4, - ACTIONS(8743), 1, + [188888] = 4, + ACTIONS(8687), 1, anon_sym_COMMA, - ACTIONS(8745), 1, + ACTIONS(8811), 1, anon_sym_RBRACK, - STATE(5017), 1, - aux_sym_template_params_repeat1, + STATE(4938), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185475] = 2, + [188902] = 4, + ACTIONS(8849), 1, + anon_sym_SEMI, + ACTIONS(8852), 1, + sym__newline, + STATE(4910), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8040), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [185485] = 4, - ACTIONS(2873), 1, + [188916] = 4, + ACTIONS(2903), 1, anon_sym_RPAREN, - ACTIONS(8747), 1, + ACTIONS(8854), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185499] = 4, - ACTIONS(2875), 1, + [188930] = 4, + ACTIONS(2905), 1, anon_sym_RPAREN, - ACTIONS(8749), 1, + ACTIONS(8856), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185513] = 4, - ACTIONS(8158), 1, - anon_sym_COMMA, - ACTIONS(8751), 1, - anon_sym_in, - STATE(4604), 1, - aux_sym__patterns_repeat1, + [188944] = 4, + ACTIONS(7718), 1, + anon_sym_LPAREN, + ACTIONS(8858), 1, + anon_sym_GT, + ACTIONS(8860), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185527] = 4, - ACTIONS(8753), 1, + [188958] = 4, + ACTIONS(8862), 1, anon_sym_COMMA, - ACTIONS(8755), 1, + ACTIONS(8864), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185541] = 4, - ACTIONS(8757), 1, + [188972] = 4, + ACTIONS(8866), 1, anon_sym_COMMA, - ACTIONS(8759), 1, + ACTIONS(8868), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185555] = 3, - ACTIONS(8763), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8761), 2, - sym__newline, - anon_sym_COMMA, - [185567] = 4, - ACTIONS(6339), 1, + [188986] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8765), 1, + ACTIONS(8870), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185581] = 4, - ACTIONS(6339), 1, + [189000] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8767), 1, + ACTIONS(8872), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185595] = 4, - ACTIONS(8530), 1, - sym__newline, - ACTIONS(8532), 1, - sym__indent, - STATE(1561), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185609] = 4, - ACTIONS(6339), 1, + [189014] = 4, + ACTIONS(3415), 1, + anon_sym_RPAREN, + ACTIONS(8874), 1, anon_sym_COMMA, - ACTIONS(8769), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(5155), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185623] = 2, + [189028] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(8876), 1, + anon_sym_COLON, + ACTIONS(8878), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8180), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [185633] = 4, - ACTIONS(8771), 1, + [189042] = 4, + ACTIONS(8880), 1, anon_sym_SEMI, - ACTIONS(8773), 1, + ACTIONS(8882), 1, sym__newline, - STATE(4876), 1, + STATE(4926), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185647] = 4, - ACTIONS(8107), 1, - anon_sym_RPAREN, - ACTIONS(8775), 1, - anon_sym_COMMA, - STATE(5104), 1, - aux_sym__import_list_repeat1, + [189056] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(8884), 1, + anon_sym_COLON, + ACTIONS(8886), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185661] = 4, - ACTIONS(8107), 1, - anon_sym_RPAREN, - ACTIONS(8777), 1, - anon_sym_COMMA, - STATE(5104), 1, - aux_sym__import_list_repeat1, + [189070] = 4, + ACTIONS(1311), 1, + sym__newline, + ACTIONS(8888), 1, + anon_sym_SEMI, + STATE(4910), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185675] = 4, - ACTIONS(6315), 1, + [189084] = 4, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(6443), 1, + ACTIONS(6516), 1, anon_sym_RPAREN, - STATE(4929), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185689] = 4, - ACTIONS(8706), 1, - sym__newline, - ACTIONS(8779), 1, - sym_identifier, - ACTIONS(8781), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185703] = 4, - ACTIONS(7245), 1, + [189098] = 4, + ACTIONS(7365), 1, anon_sym_COMMA, - ACTIONS(7247), 1, + ACTIONS(7367), 1, anon_sym_RBRACE, - STATE(4878), 1, + STATE(4927), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185717] = 4, - ACTIONS(6665), 1, - sym__newline, - ACTIONS(6968), 1, - anon_sym_COMMA, - STATE(5033), 1, - aux_sym_cvar_def_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185731] = 4, - ACTIONS(7368), 1, + [189112] = 4, + ACTIONS(7718), 1, anon_sym_LPAREN, - ACTIONS(8783), 1, + ACTIONS(8890), 1, anon_sym_GT, - ACTIONS(8785), 1, + ACTIONS(8892), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185745] = 4, - ACTIONS(1269), 1, + [189126] = 4, + ACTIONS(1301), 1, sym__newline, - ACTIONS(8787), 1, + ACTIONS(8894), 1, anon_sym_SEMI, - STATE(5080), 1, + STATE(4910), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185759] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8789), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185773] = 4, - ACTIONS(3061), 1, + [189140] = 4, + ACTIONS(3137), 1, anon_sym_RBRACE, - ACTIONS(8791), 1, + ACTIONS(8896), 1, anon_sym_COMMA, - STATE(4951), 1, + STATE(4869), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185787] = 4, - ACTIONS(6339), 1, + [189154] = 4, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(8793), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8898), 1, + anon_sym_RPAREN, + STATE(5158), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185801] = 4, - ACTIONS(2967), 1, - anon_sym_RBRACK, - ACTIONS(8795), 1, + [189168] = 4, + ACTIONS(6431), 1, anon_sym_COMMA, - STATE(5126), 1, + ACTIONS(8900), 1, + anon_sym_RPAREN, + STATE(5158), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185815] = 4, - ACTIONS(6445), 1, + [189182] = 4, + ACTIONS(6538), 1, anon_sym_RPAREN, - ACTIONS(6447), 1, + ACTIONS(6540), 1, anon_sym_COMMA, - STATE(4888), 1, + STATE(4936), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185829] = 4, - ACTIONS(8797), 1, + [189196] = 4, + ACTIONS(8902), 1, anon_sym_RPAREN, - ACTIONS(8799), 1, + ACTIONS(8904), 1, anon_sym_COMMA, - STATE(4890), 1, + STATE(4937), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185843] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5652), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [185853] = 4, - ACTIONS(7705), 1, + [189210] = 4, + ACTIONS(3143), 1, anon_sym_RBRACK, - ACTIONS(8801), 1, + ACTIONS(8906), 1, anon_sym_COMMA, - STATE(4884), 1, - aux_sym_type_parameter_repeat1, + STATE(4980), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185867] = 4, - ACTIONS(6787), 1, + [189224] = 4, + ACTIONS(6830), 1, anon_sym_COMMA, - ACTIONS(6789), 1, + ACTIONS(6834), 1, anon_sym_RBRACK, - STATE(4892), 1, + STATE(4940), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185881] = 4, - ACTIONS(3800), 1, - anon_sym_RBRACK, - ACTIONS(8804), 1, - anon_sym_COMMA, - STATE(5057), 1, - aux_sym__patterns_repeat1, + [189238] = 3, + ACTIONS(5817), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185895] = 4, - ACTIONS(6339), 1, + ACTIONS(5813), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(8806), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + [189250] = 4, + ACTIONS(8332), 1, + anon_sym_RBRACK, + ACTIONS(8908), 1, + anon_sym_COMMA, + STATE(4935), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185909] = 4, - ACTIONS(2885), 1, + [189264] = 4, + ACTIONS(2913), 1, anon_sym_RPAREN, - ACTIONS(8808), 1, + ACTIONS(8911), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185923] = 4, - ACTIONS(6339), 1, + [189278] = 4, + ACTIONS(2915), 1, + anon_sym_RPAREN, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(8810), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(4843), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185937] = 4, - ACTIONS(2887), 1, - anon_sym_RPAREN, - ACTIONS(8812), 1, + [189292] = 4, + ACTIONS(8915), 1, anon_sym_COMMA, - STATE(5090), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8918), 1, + anon_sym_RBRACK, + STATE(4938), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185951] = 4, - ACTIONS(8814), 1, + [189306] = 4, + ACTIONS(8920), 1, anon_sym_COMMA, - ACTIONS(8816), 1, + ACTIONS(8922), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185965] = 4, - ACTIONS(8818), 1, + [189320] = 4, + ACTIONS(8924), 1, anon_sym_COMMA, - ACTIONS(8820), 1, + ACTIONS(8926), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185979] = 4, - ACTIONS(8069), 1, - anon_sym_COMMA, - ACTIONS(8822), 1, - anon_sym_RPAREN, - STATE(5038), 1, - aux_sym_function_pointer_type_repeat1, + [189334] = 3, + ACTIONS(1526), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1528), 2, + anon_sym_except_STAR, + anon_sym_finally, + [189346] = 3, + ACTIONS(1522), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185993] = 4, - ACTIONS(6339), 1, + ACTIONS(1524), 2, + anon_sym_except_STAR, + anon_sym_finally, + [189358] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8824), 1, + ACTIONS(8928), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186007] = 4, - ACTIONS(8075), 1, - anon_sym_DOT, - ACTIONS(8589), 1, - anon_sym_PIPE, - ACTIONS(8826), 1, - anon_sym_COLON, + [189372] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186021] = 4, - ACTIONS(3071), 1, - anon_sym_COLON, - ACTIONS(8828), 1, + ACTIONS(8930), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(5054), 1, - aux_sym_assert_statement_repeat1, + [189384] = 4, + ACTIONS(3087), 1, + anon_sym_RBRACE, + ACTIONS(8932), 1, + anon_sym_COMMA, + STATE(4869), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186035] = 4, - ACTIONS(8830), 1, - anon_sym_SEMI, - ACTIONS(8832), 1, - sym__newline, - STATE(4904), 1, - aux_sym__simple_statements_repeat1, + [189398] = 4, + ACTIONS(8930), 1, + anon_sym_RPAREN, + ACTIONS(8934), 1, + anon_sym_COMMA, + STATE(4946), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186049] = 2, + [189412] = 4, + ACTIONS(8937), 1, + anon_sym_SEMI, + ACTIONS(8939), 1, + sym__newline, + STATE(4951), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8834), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [186059] = 4, - ACTIONS(6315), 1, + [189426] = 4, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(6453), 1, + ACTIONS(6566), 1, anon_sym_RPAREN, - STATE(4929), 1, + STATE(5158), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186073] = 4, - ACTIONS(2819), 1, - anon_sym_RPAREN, - ACTIONS(8836), 1, - anon_sym_COMMA, - STATE(5090), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186087] = 4, - ACTIONS(6956), 1, + [189440] = 4, + ACTIONS(7377), 1, anon_sym_COMMA, - ACTIONS(6958), 1, + ACTIONS(7379), 1, anon_sym_RBRACE, - STATE(4907), 1, + STATE(4953), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186101] = 4, - ACTIONS(2821), 1, - anon_sym_RPAREN, - ACTIONS(8838), 1, - anon_sym_COMMA, - STATE(5090), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186115] = 4, - ACTIONS(7368), 1, + [189454] = 4, + ACTIONS(7718), 1, anon_sym_LPAREN, - ACTIONS(8840), 1, + ACTIONS(8941), 1, anon_sym_GT, - ACTIONS(8842), 1, + ACTIONS(8943), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186129] = 4, - ACTIONS(1275), 1, + [189468] = 4, + ACTIONS(1303), 1, sym__newline, - ACTIONS(8844), 1, + ACTIONS(8945), 1, anon_sym_SEMI, - STATE(5080), 1, + STATE(4910), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186143] = 4, - ACTIONS(8700), 1, - sym__newline, - ACTIONS(8846), 1, - anon_sym_LPAREN, - ACTIONS(8848), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186157] = 4, - ACTIONS(8850), 1, + [189482] = 4, + ACTIONS(7108), 1, anon_sym_COMMA, - ACTIONS(8852), 1, + ACTIONS(8947), 1, anon_sym_RBRACK, - STATE(4651), 1, - aux_sym_subscript_repeat1, + STATE(4935), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186171] = 4, - ACTIONS(3077), 1, + [189496] = 4, + ACTIONS(3095), 1, anon_sym_RBRACE, - ACTIONS(8854), 1, + ACTIONS(8949), 1, anon_sym_COMMA, - STATE(4951), 1, + STATE(4869), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186185] = 4, - ACTIONS(8856), 1, + [189510] = 4, + ACTIONS(8753), 1, + anon_sym_RPAREN, + ACTIONS(8951), 1, anon_sym_COMMA, - ACTIONS(8858), 1, - anon_sym_RBRACK, - STATE(4651), 1, - aux_sym_subscript_repeat1, + STATE(4954), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186199] = 4, - ACTIONS(6339), 1, + [189524] = 4, + ACTIONS(8300), 1, anon_sym_COMMA, - ACTIONS(8860), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8954), 1, + anon_sym_in, + STATE(4586), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186213] = 4, - ACTIONS(7255), 1, + [189538] = 4, + ACTIONS(7338), 1, anon_sym_RPAREN, - ACTIONS(7257), 1, + ACTIONS(7340), 1, anon_sym_COMMA, - STATE(4914), 1, + STATE(4962), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186227] = 4, - ACTIONS(8862), 1, + [189552] = 4, + ACTIONS(8956), 1, anon_sym_RPAREN, - ACTIONS(8864), 1, + ACTIONS(8958), 1, anon_sym_COMMA, - STATE(4915), 1, + STATE(4963), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186241] = 4, - ACTIONS(8300), 1, - anon_sym_LBRACK, - ACTIONS(8866), 1, + [189566] = 4, + ACTIONS(8687), 1, + anon_sym_COMMA, + ACTIONS(8947), 1, + anon_sym_RBRACK, + STATE(4938), 1, + aux_sym_type_index_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189580] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(8960), 1, anon_sym_COLON, - STATE(5488), 1, - sym_external_definition, + ACTIONS(8962), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186255] = 4, - ACTIONS(6813), 1, + [189594] = 4, + ACTIONS(6836), 1, anon_sym_COMMA, - ACTIONS(6815), 1, + ACTIONS(6838), 1, anon_sym_RBRACK, - STATE(4918), 1, + STATE(4966), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186269] = 4, - ACTIONS(2895), 1, + [189608] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(8964), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189622] = 4, + ACTIONS(2925), 1, anon_sym_RPAREN, - ACTIONS(8868), 1, + ACTIONS(8966), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186283] = 4, - ACTIONS(2897), 1, + [189636] = 4, + ACTIONS(2927), 1, anon_sym_RPAREN, - ACTIONS(8870), 1, + ACTIONS(8968), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186297] = 4, - ACTIONS(8091), 1, + [189650] = 4, + ACTIONS(6058), 1, + sym_identifier, + ACTIONS(8970), 1, + anon_sym_DOT, + STATE(4964), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189664] = 4, + ACTIONS(8973), 1, anon_sym_COMMA, - ACTIONS(8872), 1, + ACTIONS(8975), 1, anon_sym_RBRACK, - STATE(5060), 1, - aux_sym_external_definition_repeat1, + STATE(4967), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186311] = 4, - ACTIONS(8874), 1, + [189678] = 4, + ACTIONS(8977), 1, anon_sym_COMMA, - ACTIONS(8876), 1, + ACTIONS(8979), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186325] = 4, - ACTIONS(8878), 1, + [189692] = 4, + ACTIONS(8981), 1, anon_sym_COMMA, - ACTIONS(8880), 1, + ACTIONS(8984), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186339] = 4, - ACTIONS(7758), 1, + [189706] = 4, + ACTIONS(8092), 1, anon_sym_COLON, - ACTIONS(8882), 1, - anon_sym_RBRACE, - STATE(5528), 1, - sym_format_specifier, + ACTIONS(8096), 1, + sym__newline, + ACTIONS(8986), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186353] = 4, - ACTIONS(8884), 1, + [189720] = 4, + ACTIONS(8096), 1, + sym__newline, + ACTIONS(8988), 1, anon_sym_LPAREN, - ACTIONS(8886), 1, + ACTIONS(8990), 1, anon_sym_COLON, - ACTIONS(8888), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186367] = 4, - ACTIONS(6183), 1, - anon_sym_RPAREN, - ACTIONS(6315), 1, + [189734] = 4, + ACTIONS(6431), 1, anon_sym_COMMA, - STATE(4929), 1, + ACTIONS(8992), 1, + anon_sym_RPAREN, + STATE(5158), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186381] = 4, - ACTIONS(8890), 1, - anon_sym_RPAREN, - ACTIONS(8892), 1, + [189748] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4821), 1, - aux_sym_with_clause_repeat1, + ACTIONS(8994), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186395] = 4, - ACTIONS(7368), 1, - anon_sym_LPAREN, - ACTIONS(8894), 1, - anon_sym_GT, - ACTIONS(8896), 1, - anon_sym_QMARK, + [189762] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186409] = 4, - ACTIONS(8300), 1, - anon_sym_LBRACK, - ACTIONS(8898), 1, - anon_sym_COLON, - STATE(5588), 1, - sym_external_definition, + ACTIONS(8382), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [189772] = 4, + ACTIONS(6771), 1, + sym__newline, + ACTIONS(6785), 1, + anon_sym_COMMA, + STATE(5063), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186423] = 4, - ACTIONS(6455), 1, - anon_sym_RPAREN, - ACTIONS(6457), 1, + [189786] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4931), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8996), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186437] = 4, - ACTIONS(8900), 1, + [189800] = 4, + ACTIONS(5233), 1, anon_sym_RPAREN, - ACTIONS(8902), 1, + ACTIONS(8998), 1, anon_sym_COMMA, - STATE(4933), 1, - aux_sym_argument_list_repeat1, + STATE(4891), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186451] = 4, - ACTIONS(8310), 1, + [189814] = 4, + ACTIONS(7718), 1, anon_sym_LPAREN, - ACTIONS(8904), 1, - anon_sym_COLON, - ACTIONS(8906), 1, + ACTIONS(9000), 1, + anon_sym_GT, + ACTIONS(9002), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189828] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9004), 1, sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186465] = 4, - ACTIONS(6825), 1, + [189842] = 4, + ACTIONS(6568), 1, + anon_sym_RPAREN, + ACTIONS(6570), 1, anon_sym_COMMA, - ACTIONS(6827), 1, - anon_sym_RBRACK, - STATE(4935), 1, - aux_sym_subscript_repeat1, + STATE(4982), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186479] = 4, - ACTIONS(2967), 1, + [189856] = 4, + ACTIONS(9006), 1, anon_sym_RPAREN, - ACTIONS(8908), 1, + ACTIONS(9008), 1, anon_sym_COMMA, - STATE(4761), 1, - aux_sym__collection_elements_repeat1, + STATE(4983), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186493] = 4, - ACTIONS(3071), 1, + [189870] = 4, + ACTIONS(6775), 1, anon_sym_RBRACK, - ACTIONS(8910), 1, + ACTIONS(9010), 1, anon_sym_COMMA, - STATE(4957), 1, + STATE(4980), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186507] = 4, - ACTIONS(2903), 1, - anon_sym_RPAREN, - ACTIONS(8912), 1, + [189884] = 4, + ACTIONS(6951), 1, anon_sym_COMMA, - STATE(5090), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6953), 1, + anon_sym_RBRACK, + STATE(4985), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186521] = 4, - ACTIONS(7368), 1, - anon_sym_LPAREN, - ACTIONS(8914), 1, - anon_sym_GT, - ACTIONS(8916), 1, - anon_sym_QMARK, + [189898] = 4, + ACTIONS(2933), 1, + anon_sym_RPAREN, + ACTIONS(9013), 1, + anon_sym_COMMA, + STATE(4843), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186535] = 4, - ACTIONS(2803), 1, + [189912] = 4, + ACTIONS(2935), 1, anon_sym_RPAREN, - ACTIONS(8918), 1, + ACTIONS(9015), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186549] = 4, - ACTIONS(8920), 1, + [189926] = 4, + ACTIONS(9017), 1, anon_sym_COMMA, - ACTIONS(8922), 1, + ACTIONS(9019), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186563] = 4, - ACTIONS(8924), 1, + [189940] = 4, + ACTIONS(9021), 1, anon_sym_COMMA, - ACTIONS(8926), 1, + ACTIONS(9023), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186577] = 2, + [189954] = 4, + ACTIONS(8308), 1, + anon_sym_RPAREN, + ACTIONS(9025), 1, + anon_sym_COMMA, + STATE(4888), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3877), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [186587] = 4, - ACTIONS(8166), 1, - anon_sym_RPAREN, - ACTIONS(8928), 1, + [189968] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4937), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9027), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186601] = 4, - ACTIONS(8931), 1, - anon_sym_COLON, - ACTIONS(8933), 1, - anon_sym_nogil, - ACTIONS(8935), 1, - sym__newline, + [189982] = 4, + ACTIONS(8308), 1, + anon_sym_RPAREN, + ACTIONS(9029), 1, + anon_sym_COMMA, + STATE(4888), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186615] = 4, - ACTIONS(3333), 1, - anon_sym_COLON, - ACTIONS(8937), 1, + [189996] = 4, + ACTIONS(5157), 1, + anon_sym_RBRACK, + ACTIONS(9031), 1, anon_sym_COMMA, - STATE(4830), 1, - aux_sym_with_clause_repeat1, + STATE(5122), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186629] = 4, - ACTIONS(6339), 1, + [190010] = 4, + ACTIONS(8201), 1, anon_sym_COMMA, - ACTIONS(8939), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9033), 1, + anon_sym_RPAREN, + STATE(4946), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186643] = 4, - ACTIONS(6339), 1, + [190024] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(8941), 1, + ACTIONS(9035), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186657] = 3, - ACTIONS(5805), 1, - anon_sym_EQ, + [190038] = 4, + ACTIONS(6582), 1, + anon_sym_RPAREN, + ACTIONS(6584), 1, + anon_sym_COMMA, + STATE(5065), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5707), 2, + [190052] = 4, + ACTIONS(9037), 1, + anon_sym_RPAREN, + ACTIONS(9039), 1, anon_sym_COMMA, - anon_sym_COLON, - [186669] = 4, - ACTIONS(8300), 1, - anon_sym_LBRACK, - ACTIONS(8943), 1, - anon_sym_COLON, - STATE(5598), 1, - sym_external_definition, + STATE(5068), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186683] = 4, - ACTIONS(7281), 1, + [190066] = 4, + ACTIONS(7371), 1, anon_sym_RPAREN, - ACTIONS(7283), 1, + ACTIONS(7373), 1, anon_sym_COMMA, - STATE(4949), 1, + STATE(4999), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186697] = 4, - ACTIONS(8945), 1, + [190080] = 4, + ACTIONS(9041), 1, anon_sym_RPAREN, - ACTIONS(8947), 1, + ACTIONS(9043), 1, anon_sym_COMMA, - STATE(4950), 1, + STATE(5001), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186711] = 4, - ACTIONS(2663), 1, - anon_sym_RBRACK, - ACTIONS(8949), 1, + [190094] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4884), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(9045), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186725] = 4, - ACTIONS(6843), 1, + [190108] = 4, + ACTIONS(7034), 1, anon_sym_COMMA, - ACTIONS(6845), 1, + ACTIONS(7036), 1, anon_sym_RBRACK, - STATE(4953), 1, + STATE(5004), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186739] = 4, - ACTIONS(6339), 1, + [190122] = 4, + ACTIONS(2993), 1, + anon_sym_RBRACK, + ACTIONS(9047), 1, anon_sym_COMMA, - ACTIONS(8951), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(5030), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186753] = 4, - ACTIONS(2909), 1, + [190136] = 4, + ACTIONS(2939), 1, anon_sym_RPAREN, - ACTIONS(8953), 1, + ACTIONS(9049), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186767] = 4, - ACTIONS(2911), 1, + [190150] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5748), 3, anon_sym_RPAREN, - ACTIONS(8955), 1, anon_sym_COMMA, - STATE(5090), 1, + anon_sym_EQ, + [190160] = 4, + ACTIONS(2941), 1, + anon_sym_RPAREN, + ACTIONS(9051), 1, + anon_sym_COMMA, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186781] = 4, - ACTIONS(8957), 1, + [190174] = 4, + ACTIONS(6888), 1, anon_sym_COMMA, - ACTIONS(8960), 1, - anon_sym_RBRACE, - STATE(4951), 1, - aux_sym_dictionary_repeat1, + ACTIONS(6890), 1, + anon_sym_RBRACK, + STATE(5076), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186795] = 4, - ACTIONS(8962), 1, + [190188] = 4, + ACTIONS(9053), 1, anon_sym_COMMA, - ACTIONS(8964), 1, + ACTIONS(9055), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186809] = 4, - ACTIONS(8966), 1, + [190202] = 4, + ACTIONS(9057), 1, anon_sym_COMMA, - ACTIONS(8968), 1, + ACTIONS(9059), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186823] = 4, - ACTIONS(6171), 1, + [190216] = 4, + ACTIONS(8825), 1, + anon_sym_COLON, + ACTIONS(9061), 1, anon_sym_COMMA, - ACTIONS(6183), 1, - anon_sym_RBRACE, - STATE(4816), 1, - aux_sym__collection_elements_repeat1, + STATE(4830), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186837] = 4, - ACTIONS(8970), 1, - anon_sym_SEMI, - ACTIONS(8972), 1, + [190230] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(9063), 1, + anon_sym_COLON, + ACTIONS(9065), 1, sym__newline, - STATE(5085), 1, - aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186851] = 4, - ACTIONS(8974), 1, - anon_sym_SEMI, - ACTIONS(8976), 1, - sym__newline, - STATE(4985), 1, - aux_sym__simple_statements_repeat1, + [190244] = 4, + ACTIONS(5813), 1, + anon_sym_COMMA, + ACTIONS(5909), 1, + anon_sym_COLON, + ACTIONS(5911), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186865] = 4, - ACTIONS(6689), 1, - anon_sym_RBRACK, - ACTIONS(8978), 1, + [190258] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4957), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(9067), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186879] = 4, - ACTIONS(8057), 1, - anon_sym_RBRACK, - ACTIONS(8981), 1, - anon_sym_COMMA, - STATE(4958), 1, - aux_sym_type_index_repeat1, + [190272] = 4, + ACTIONS(9069), 1, + anon_sym_SEMI, + ACTIONS(9071), 1, + sym__newline, + STATE(5051), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186893] = 4, - ACTIONS(7028), 1, + [190286] = 4, + ACTIONS(7385), 1, anon_sym_RPAREN, - ACTIONS(7030), 1, + ACTIONS(7387), 1, anon_sym_COMMA, - STATE(4964), 1, + STATE(5014), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186907] = 4, - ACTIONS(8984), 1, + [190300] = 4, + ACTIONS(9073), 1, anon_sym_RPAREN, - ACTIONS(8986), 1, + ACTIONS(9075), 1, anon_sym_COMMA, - STATE(4965), 1, + STATE(5015), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186921] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(8988), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186935] = 4, - ACTIONS(6860), 1, + [190314] = 4, + ACTIONS(7064), 1, anon_sym_COMMA, - ACTIONS(6862), 1, + ACTIONS(7066), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(5017), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186949] = 4, - ACTIONS(6306), 1, - anon_sym_RPAREN, - ACTIONS(6315), 1, + [190328] = 4, + ACTIONS(9077), 1, anon_sym_COMMA, - STATE(4929), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(9079), 1, + anon_sym_RBRACE, + STATE(5224), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186963] = 4, - ACTIONS(2917), 1, + [190342] = 4, + ACTIONS(2947), 1, anon_sym_RPAREN, - ACTIONS(8990), 1, + ACTIONS(9081), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186977] = 4, - ACTIONS(2919), 1, + [190356] = 4, + ACTIONS(2949), 1, anon_sym_RPAREN, - ACTIONS(8992), 1, + ACTIONS(9083), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186991] = 4, - ACTIONS(8994), 1, + [190370] = 4, + ACTIONS(9085), 1, anon_sym_COMMA, - ACTIONS(8996), 1, + ACTIONS(9087), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187005] = 4, - ACTIONS(8998), 1, + [190384] = 4, + ACTIONS(9089), 1, anon_sym_COMMA, - ACTIONS(9000), 1, + ACTIONS(9091), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187019] = 4, - ACTIONS(9002), 1, - anon_sym_RPAREN, - ACTIONS(9004), 1, + [190398] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(5008), 1, - aux_sym__typedargslist_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187033] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9006), 3, + ACTIONS(9093), 1, sym__newline, - anon_sym_COLON, - anon_sym_nogil, - [187043] = 4, - ACTIONS(5027), 1, - anon_sym_RPAREN, - ACTIONS(9008), 1, - anon_sym_COMMA, - STATE(4718), 1, - aux_sym__parameters_repeat1, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187057] = 4, - ACTIONS(6339), 1, + [190412] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9010), 1, + ACTIONS(9095), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187071] = 4, - ACTIONS(6339), 1, + [190426] = 4, + ACTIONS(9097), 1, anon_sym_COMMA, - ACTIONS(9012), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9099), 1, + anon_sym_RBRACE, + STATE(5224), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187085] = 4, - ACTIONS(7000), 1, + [190440] = 4, + ACTIONS(3143), 1, + anon_sym_RPAREN, + ACTIONS(9101), 1, anon_sym_COMMA, - ACTIONS(9014), 1, - anon_sym_RBRACK, - STATE(4958), 1, - aux_sym_type_index_repeat1, + STATE(5042), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187099] = 4, + [190454] = 4, ACTIONS(6864), 1, anon_sym_COMMA, ACTIONS(6866), 1, anon_sym_RBRACK, - STATE(4976), 1, + STATE(5024), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187113] = 4, - ACTIONS(9016), 1, + [190468] = 4, + ACTIONS(9103), 1, anon_sym_COMMA, - ACTIONS(9018), 1, + ACTIONS(9105), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187127] = 4, - ACTIONS(9020), 1, + [190482] = 4, + ACTIONS(9107), 1, anon_sym_COMMA, - ACTIONS(9022), 1, + ACTIONS(9109), 1, anon_sym_RBRACK, - STATE(4651), 1, + STATE(4967), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187141] = 4, - ACTIONS(7342), 1, - anon_sym_COMMA, - ACTIONS(7344), 1, - anon_sym_RBRACE, - STATE(4995), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187155] = 4, - ACTIONS(8548), 1, - anon_sym_COMMA, - ACTIONS(9014), 1, + [190496] = 4, + ACTIONS(7860), 1, anon_sym_RBRACK, - STATE(4984), 1, + ACTIONS(8687), 1, + anon_sym_COMMA, + STATE(5112), 1, aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187169] = 4, - ACTIONS(6004), 1, - sym_identifier, - ACTIONS(9024), 1, - anon_sym_DOT, - STATE(4979), 1, - aux_sym_type_qualifier_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187183] = 4, - ACTIONS(7378), 1, - anon_sym_PIPE, - ACTIONS(9027), 1, - anon_sym_COLON, - STATE(4224), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187197] = 4, - ACTIONS(7368), 1, - anon_sym_LPAREN, - ACTIONS(9029), 1, - anon_sym_GT, - ACTIONS(9031), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187211] = 4, - ACTIONS(8069), 1, + [190510] = 4, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(9033), 1, + ACTIONS(6590), 1, anon_sym_RPAREN, - STATE(5038), 1, - aux_sym_function_pointer_type_repeat1, + STATE(5158), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187225] = 4, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9037), 1, + [190524] = 4, + ACTIONS(3118), 1, anon_sym_RBRACE, - STATE(4735), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187239] = 4, - ACTIONS(9039), 1, + ACTIONS(9111), 1, anon_sym_COMMA, - ACTIONS(9042), 1, - anon_sym_RBRACK, - STATE(4984), 1, - aux_sym_type_index_repeat2, + STATE(4869), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187253] = 4, - ACTIONS(1251), 1, - sym__newline, - ACTIONS(9044), 1, - anon_sym_SEMI, - STATE(5080), 1, - aux_sym__simple_statements_repeat1, + [190538] = 4, + ACTIONS(9113), 1, + anon_sym_COMMA, + ACTIONS(9115), 1, + anon_sym_COLON, + STATE(4746), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187267] = 3, - ACTIONS(7398), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7400), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [187279] = 3, - ACTIONS(7406), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7408), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [187291] = 3, - ACTIONS(7410), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7412), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [187303] = 4, - ACTIONS(6339), 1, + [190552] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9046), 1, + ACTIONS(9117), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187317] = 3, - ACTIONS(9050), 1, - anon_sym_EQ, + [190566] = 4, + ACTIONS(7556), 1, + anon_sym_RBRACK, + ACTIONS(9119), 1, + anon_sym_COMMA, + STATE(5030), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9048), 2, - sym__newline, - anon_sym_COMMA, - [187329] = 4, - ACTIONS(6315), 1, - anon_sym_COMMA, - ACTIONS(9052), 1, + [190580] = 4, + ACTIONS(5149), 1, anon_sym_RPAREN, - STATE(4929), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(9122), 1, + anon_sym_COMMA, + STATE(4891), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187343] = 4, - ACTIONS(6315), 1, + [190594] = 4, + ACTIONS(8201), 1, anon_sym_COMMA, - ACTIONS(9054), 1, + ACTIONS(9124), 1, anon_sym_RPAREN, - STATE(4929), 1, - aux_sym__collection_elements_repeat1, + STATE(4946), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187357] = 4, - ACTIONS(6290), 1, - anon_sym_RPAREN, - ACTIONS(6292), 1, + [190608] = 4, + ACTIONS(7391), 1, anon_sym_COMMA, - STATE(5084), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7393), 1, + anon_sym_RBRACE, + STATE(5096), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187371] = 4, - ACTIONS(9056), 1, + [190622] = 4, + ACTIONS(9126), 1, + anon_sym_RPAREN, + ACTIONS(9128), 1, anon_sym_COMMA, - ACTIONS(9059), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(5034), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187385] = 4, - ACTIONS(3059), 1, + [190636] = 4, + ACTIONS(7917), 1, + anon_sym_COLON, + ACTIONS(9131), 1, anon_sym_RBRACE, - ACTIONS(9061), 1, - anon_sym_COMMA, - STATE(4951), 1, - aux_sym_dictionary_repeat1, + STATE(5805), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187399] = 4, - ACTIONS(6339), 1, + [190650] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9063), 1, + ACTIONS(9133), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187413] = 4, - ACTIONS(8469), 1, - anon_sym_RPAREN, - ACTIONS(9065), 1, - anon_sym_COMMA, - STATE(5083), 1, - aux_sym__patterns_repeat1, + [190664] = 4, + ACTIONS(7718), 1, + anon_sym_LPAREN, + ACTIONS(9135), 1, + anon_sym_GT, + ACTIONS(9137), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187427] = 4, - ACTIONS(9067), 1, + [190678] = 4, + ACTIONS(6460), 1, anon_sym_RPAREN, - ACTIONS(9069), 1, + ACTIONS(6462), 1, anon_sym_COMMA, - STATE(5094), 1, + STATE(5218), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187441] = 4, - ACTIONS(6315), 1, - anon_sym_COMMA, - ACTIONS(6388), 1, - anon_sym_RPAREN, - STATE(4929), 1, - aux_sym__collection_elements_repeat1, + [190692] = 4, + ACTIONS(9139), 1, + anon_sym_LPAREN, + ACTIONS(9141), 1, + anon_sym_COLON, + ACTIONS(9143), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [190706] = 4, + ACTIONS(6842), 1, + sym_string_start, + ACTIONS(9145), 1, + anon_sym_STAR, + STATE(2830), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187455] = 2, + [190720] = 4, + ACTIONS(9147), 1, + anon_sym_COLON, + ACTIONS(9149), 1, + anon_sym_nogil, + ACTIONS(9151), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7452), 3, + [190734] = 4, + ACTIONS(6775), 1, anon_sym_RPAREN, + ACTIONS(9153), 1, anon_sym_COMMA, - anon_sym_as, - [187465] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(9071), 1, - anon_sym_COLON, - ACTIONS(9073), 1, + STATE(5042), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [190748] = 4, + ACTIONS(8520), 1, sym__newline, + ACTIONS(8522), 1, + sym__indent, + STATE(1578), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187479] = 4, - ACTIONS(8300), 1, + [190762] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9075), 1, + ACTIONS(9156), 1, anon_sym_COLON, STATE(5673), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187493] = 4, - ACTIONS(5957), 1, - sym_identifier, - ACTIONS(8635), 1, - anon_sym_DOT, - STATE(4798), 1, - aux_sym_type_qualifier_repeat1, + [190776] = 4, + ACTIONS(9158), 1, + anon_sym_COMMA, + ACTIONS(9161), 1, + anon_sym_RBRACK, + STATE(5045), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187507] = 3, - ACTIONS(8065), 1, - anon_sym_LPAREN, + [190790] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9163), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9077), 2, + [190804] = 4, + ACTIONS(9165), 1, anon_sym_RPAREN, + ACTIONS(9167), 1, anon_sym_COMMA, - [187519] = 4, - ACTIONS(7876), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - sym__newline, - ACTIONS(9079), 1, - sym_identifier, + STATE(4728), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187533] = 4, - ACTIONS(7880), 1, + [190818] = 4, + ACTIONS(8520), 1, sym__newline, - ACTIONS(9081), 1, - anon_sym_LPAREN, - ACTIONS(9083), 1, + ACTIONS(8522), 1, + sym__indent, + STATE(1528), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [190832] = 4, + ACTIONS(8560), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, anon_sym_COLON, + STATE(5748), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187547] = 4, - ACTIONS(6729), 1, - sym_string_start, - ACTIONS(9085), 1, - anon_sym_STAR, - STATE(2760), 1, - sym_string, + [190846] = 4, + ACTIONS(6110), 1, + sym_identifier, + ACTIONS(9171), 1, + anon_sym_DOT, + STATE(5174), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187561] = 4, - ACTIONS(5353), 1, - anon_sym_RPAREN, - ACTIONS(9087), 1, - anon_sym_COMMA, - STATE(4721), 1, - aux_sym__typedargslist_repeat1, + [190860] = 4, + ACTIONS(1281), 1, + sym__newline, + ACTIONS(9173), 1, + anon_sym_SEMI, + STATE(4910), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [190874] = 4, + ACTIONS(6842), 1, + sym_string_start, + ACTIONS(9175), 1, + anon_sym_STAR, + STATE(2833), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187575] = 4, - ACTIONS(5123), 1, - anon_sym_RBRACK, - ACTIONS(9089), 1, + [190888] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4845), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9177), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187589] = 4, - ACTIONS(8743), 1, - anon_sym_COMMA, - ACTIONS(9091), 1, - anon_sym_RBRACK, - STATE(5145), 1, - aux_sym_template_params_repeat1, + [190902] = 4, + ACTIONS(9143), 1, + sym__newline, + ACTIONS(9179), 1, + sym_identifier, + ACTIONS(9181), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187603] = 4, - ACTIONS(6661), 1, + [190916] = 4, + ACTIONS(6726), 1, sym__newline, - ACTIONS(6693), 1, + ACTIONS(7258), 1, anon_sym_COMMA, - STATE(5033), 1, + STATE(5063), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187617] = 4, - ACTIONS(8158), 1, + [190930] = 4, + ACTIONS(8300), 1, anon_sym_COMMA, - ACTIONS(9093), 1, + ACTIONS(9183), 1, anon_sym_in, - STATE(4604), 1, + STATE(4586), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187631] = 4, - ACTIONS(6339), 1, + [190944] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9095), 1, + ACTIONS(9185), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187645] = 4, - ACTIONS(6651), 1, + [190958] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(9187), 1, + anon_sym_COLON, + ACTIONS(9189), 1, sym__newline, - ACTIONS(7149), 1, - anon_sym_COMMA, - STATE(5033), 1, - aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187659] = 4, - ACTIONS(8300), 1, + [190972] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9097), 1, + ACTIONS(9191), 1, anon_sym_COLON, - STATE(5745), 1, + STATE(5802), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187673] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3877), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [187683] = 4, - ACTIONS(8743), 1, - anon_sym_COMMA, - ACTIONS(9099), 1, - anon_sym_RBRACK, - STATE(4732), 1, - aux_sym_template_params_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187697] = 4, - ACTIONS(8075), 1, - anon_sym_DOT, - ACTIONS(8589), 1, - anon_sym_PIPE, - ACTIONS(9101), 1, - anon_sym_COLON, + [190986] = 4, + ACTIONS(9193), 1, + sym__newline, + ACTIONS(9195), 1, + sym__indent, + STATE(1507), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187711] = 4, - ACTIONS(8300), 1, + [191000] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9103), 1, + ACTIONS(9197), 1, anon_sym_COLON, - STATE(5403), 1, + STATE(5821), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187725] = 4, - ACTIONS(8158), 1, + [191014] = 4, + ACTIONS(8300), 1, anon_sym_COMMA, - ACTIONS(9105), 1, + ACTIONS(9199), 1, anon_sym_in, - STATE(4604), 1, + STATE(4586), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187739] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(9107), 1, + [191028] = 4, + ACTIONS(8598), 1, sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9201), 1, + anon_sym_COMMA, + STATE(5063), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187753] = 4, - ACTIONS(8075), 1, + [191042] = 4, + ACTIONS(8240), 1, anon_sym_DOT, - ACTIONS(8589), 1, + ACTIONS(8604), 1, anon_sym_PIPE, - ACTIONS(9109), 1, + ACTIONS(9204), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187767] = 3, - ACTIONS(1482), 1, - anon_sym_except, + [191056] = 4, + ACTIONS(2869), 1, + anon_sym_RPAREN, + ACTIONS(9206), 1, + anon_sym_COMMA, + STATE(4843), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1484), 2, - anon_sym_except_STAR, - anon_sym_finally, - [187779] = 4, - ACTIONS(8300), 1, - anon_sym_LBRACK, - ACTIONS(9111), 1, - anon_sym_COLON, - STATE(5415), 1, - sym_external_definition, + [191070] = 4, + ACTIONS(6876), 1, + anon_sym_COMMA, + ACTIONS(6878), 1, + anon_sym_RBRACK, + STATE(4797), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187793] = 4, - ACTIONS(6351), 1, - anon_sym_RPAREN, - ACTIONS(6353), 1, + [191084] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(5075), 1, - aux_sym_argument_list_repeat1, + ACTIONS(9208), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187807] = 4, - ACTIONS(9113), 1, + [191098] = 4, + ACTIONS(2871), 1, anon_sym_RPAREN, - ACTIONS(9115), 1, + ACTIONS(9210), 1, anon_sym_COMMA, - STATE(5076), 1, + STATE(4843), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187821] = 4, - ACTIONS(8075), 1, + [191112] = 4, + ACTIONS(8560), 1, + anon_sym_LBRACK, + ACTIONS(9212), 1, + anon_sym_COLON, + STATE(5481), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191126] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9214), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191140] = 4, + ACTIONS(8240), 1, anon_sym_DOT, - ACTIONS(8589), 1, + ACTIONS(8604), 1, anon_sym_PIPE, - ACTIONS(9117), 1, + ACTIONS(9216), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187835] = 4, - ACTIONS(8075), 1, + [191154] = 4, + ACTIONS(9218), 1, + anon_sym_COMMA, + ACTIONS(9220), 1, + anon_sym_RBRACK, + STATE(4967), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191168] = 4, + ACTIONS(8240), 1, anon_sym_DOT, - ACTIONS(8589), 1, + ACTIONS(8604), 1, anon_sym_PIPE, - ACTIONS(9119), 1, + ACTIONS(9222), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187849] = 4, - ACTIONS(8300), 1, + [191182] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9121), 1, + ACTIONS(9224), 1, anon_sym_COLON, - STATE(5419), 1, + STATE(5487), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187863] = 4, - ACTIONS(8075), 1, + [191196] = 4, + ACTIONS(6675), 1, + sym__newline, + ACTIONS(9226), 1, + anon_sym_COMMA, + STATE(5063), 1, + aux_sym_cvar_def_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191210] = 4, + ACTIONS(9228), 1, + anon_sym_COMMA, + ACTIONS(9230), 1, + anon_sym_RBRACK, + STATE(4967), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191224] = 4, + ACTIONS(8240), 1, anon_sym_DOT, - ACTIONS(8589), 1, + ACTIONS(8604), 1, anon_sym_PIPE, - ACTIONS(9123), 1, + ACTIONS(9232), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187877] = 4, - ACTIONS(6847), 1, + [191238] = 4, + ACTIONS(7556), 1, + anon_sym_RBRACE, + ACTIONS(9234), 1, anon_sym_COMMA, - ACTIONS(6849), 1, - anon_sym_RBRACK, STATE(5078), 1, - aux_sym_subscript_repeat1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187891] = 4, - ACTIONS(8300), 1, + [191252] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9125), 1, + ACTIONS(9237), 1, anon_sym_COLON, - STATE(5428), 1, + STATE(5496), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187905] = 4, - ACTIONS(9048), 1, - sym__newline, - ACTIONS(9127), 1, + [191266] = 4, + ACTIONS(6431), 1, anon_sym_COMMA, - STATE(5033), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(9239), 1, + anon_sym_RPAREN, + STATE(5158), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187919] = 4, - ACTIONS(9073), 1, + [191280] = 3, + ACTIONS(9243), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9241), 2, sym__newline, - ACTIONS(9130), 1, - anon_sym_LPAREN, - ACTIONS(9132), 1, - anon_sym_COLON, + anon_sym_COMMA, + [191292] = 4, + ACTIONS(6431), 1, + anon_sym_COMMA, + ACTIONS(9245), 1, + anon_sym_RPAREN, + STATE(5158), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187933] = 4, - ACTIONS(8300), 1, + [191306] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9134), 1, + ACTIONS(9247), 1, anon_sym_COLON, - STATE(5433), 1, + STATE(5501), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187947] = 4, - ACTIONS(8888), 1, + [191320] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9249), 1, sym__newline, - ACTIONS(9136), 1, - sym_identifier, - ACTIONS(9138), 1, - anon_sym_COLON, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187961] = 4, - ACTIONS(8300), 1, + [191334] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9251), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191348] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9140), 1, + ACTIONS(9253), 1, anon_sym_COLON, - STATE(5436), 1, + STATE(5504), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187975] = 4, - ACTIONS(9077), 1, - anon_sym_RPAREN, - ACTIONS(9142), 1, + [191362] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(5038), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(9255), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187989] = 4, - ACTIONS(5549), 1, - anon_sym_RPAREN, - ACTIONS(9145), 1, - anon_sym_COMMA, - STATE(5039), 1, - aux_sym__patterns_repeat1, + [191376] = 4, + ACTIONS(9193), 1, + sym__newline, + ACTIONS(9195), 1, + sym__indent, + STATE(1478), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188003] = 4, - ACTIONS(7127), 1, + [191390] = 4, + ACTIONS(9257), 1, anon_sym_COMMA, - ACTIONS(7129), 1, - anon_sym_RBRACE, - STATE(5158), 1, - aux_sym_dictionary_repeat1, + ACTIONS(9259), 1, + anon_sym_COLON, + STATE(4769), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188017] = 4, - ACTIONS(6339), 1, + [191404] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9148), 1, + ACTIONS(9261), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188031] = 4, - ACTIONS(6339), 1, + [191418] = 4, + ACTIONS(2715), 1, + anon_sym_RBRACK, + ACTIONS(9263), 1, anon_sym_COMMA, - ACTIONS(9150), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(4862), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188045] = 4, - ACTIONS(6583), 1, - sym__newline, - ACTIONS(7111), 1, - anon_sym_COMMA, - STATE(5033), 1, - aux_sym_cvar_def_repeat1, + [191432] = 4, + ACTIONS(3878), 1, + sym_string_start, + ACTIONS(9265), 1, + anon_sym_LT, + STATE(5313), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188059] = 4, - ACTIONS(7920), 1, - anon_sym_RBRACK, - ACTIONS(8548), 1, - anon_sym_COMMA, - STATE(5092), 1, - aux_sym_type_index_repeat2, + [191446] = 3, + ACTIONS(6763), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188073] = 4, - ACTIONS(6339), 1, + ACTIONS(6761), 2, + sym__newline, + anon_sym_SEMI, + [191458] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9152), 1, + ACTIONS(9267), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188087] = 4, - ACTIONS(8300), 1, + [191472] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9154), 1, + ACTIONS(9269), 1, anon_sym_COLON, - STATE(5476), 1, + STATE(5544), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188101] = 3, - ACTIONS(9158), 1, - anon_sym_in, + [191486] = 4, + ACTIONS(3130), 1, + anon_sym_RBRACE, + ACTIONS(9271), 1, + anon_sym_COMMA, + STATE(4869), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9156), 2, - sym__newline, - anon_sym_SEMI, - [188113] = 4, - ACTIONS(6729), 1, + [191500] = 4, + ACTIONS(6842), 1, sym_string_start, - ACTIONS(9160), 1, + ACTIONS(9273), 1, anon_sym_STAR, - STATE(2743), 1, + STATE(2805), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188127] = 4, - ACTIONS(6339), 1, + [191514] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9162), 1, + ACTIONS(9275), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188141] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(9164), 1, - anon_sym_COLON, - ACTIONS(9166), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188155] = 4, - ACTIONS(8158), 1, + [191528] = 4, + ACTIONS(8300), 1, anon_sym_COMMA, - ACTIONS(9168), 1, + ACTIONS(9277), 1, anon_sym_in, - STATE(4604), 1, + STATE(4586), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188169] = 4, - ACTIONS(7368), 1, - anon_sym_LPAREN, - ACTIONS(9170), 1, - anon_sym_GT, - ACTIONS(9172), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188183] = 4, - ACTIONS(8300), 1, + [191542] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9174), 1, + ACTIONS(9279), 1, anon_sym_COLON, - STATE(5487), 1, + STATE(5555), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188197] = 4, - ACTIONS(6689), 1, - anon_sym_COLON, - ACTIONS(9176), 1, + [191556] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(5054), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(9281), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188211] = 4, - ACTIONS(8300), 1, + [191570] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9179), 1, + ACTIONS(9283), 1, anon_sym_COLON, - STATE(5494), 1, + STATE(5562), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188225] = 4, - ACTIONS(8158), 1, + [191584] = 4, + ACTIONS(8300), 1, anon_sym_COMMA, - ACTIONS(9181), 1, + ACTIONS(9285), 1, anon_sym_in, - STATE(4604), 1, + STATE(4586), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188239] = 4, - ACTIONS(5549), 1, - anon_sym_RBRACK, - ACTIONS(9183), 1, + [191598] = 4, + ACTIONS(6344), 1, anon_sym_COMMA, - STATE(5057), 1, - aux_sym__patterns_repeat1, + ACTIONS(6356), 1, + anon_sym_RBRACE, + STATE(5164), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188253] = 4, - ACTIONS(8300), 1, + [191612] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9287), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191626] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9186), 1, + ACTIONS(9289), 1, anon_sym_COLON, - STATE(5503), 1, + STATE(5571), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188267] = 4, - ACTIONS(8300), 1, + [191640] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9188), 1, + ACTIONS(9291), 1, anon_sym_COLON, - STATE(5505), 1, + STATE(5573), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188281] = 4, - ACTIONS(9190), 1, + [191654] = 4, + ACTIONS(8186), 1, anon_sym_COMMA, - ACTIONS(9193), 1, + ACTIONS(9293), 1, anon_sym_RBRACK, - STATE(5060), 1, + STATE(5188), 1, aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188295] = 4, - ACTIONS(8300), 1, + [191668] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9195), 1, + ACTIONS(9295), 1, anon_sym_COLON, - STATE(5514), 1, + STATE(5582), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188309] = 4, - ACTIONS(9197), 1, - anon_sym_LPAREN, - ACTIONS(9199), 1, - anon_sym_COLON, - ACTIONS(9201), 1, + [191682] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9297), 1, sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191696] = 4, + ACTIONS(7108), 1, + anon_sym_COMMA, + ACTIONS(9299), 1, + anon_sym_RBRACK, + STATE(4935), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191710] = 4, + ACTIONS(8687), 1, + anon_sym_COMMA, + ACTIONS(9299), 1, + anon_sym_RBRACK, + STATE(4938), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188323] = 4, - ACTIONS(6339), 1, + [191724] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9203), 1, + ACTIONS(9301), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188337] = 4, - ACTIONS(8300), 1, - anon_sym_LBRACK, - ACTIONS(9205), 1, + [191738] = 4, + ACTIONS(9303), 1, + anon_sym_COMMA, + ACTIONS(9305), 1, anon_sym_COLON, - STATE(5519), 1, - sym_external_definition, + STATE(4769), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188351] = 4, - ACTIONS(8300), 1, + [191752] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9207), 1, + ACTIONS(9307), 1, anon_sym_COLON, - STATE(5729), 1, + STATE(5587), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188365] = 4, - ACTIONS(9209), 1, - anon_sym_COLON, - ACTIONS(9211), 1, - anon_sym_nogil, - ACTIONS(9213), 1, + [191766] = 4, + ACTIONS(8201), 1, + anon_sym_COMMA, + ACTIONS(9309), 1, + anon_sym_RPAREN, + STATE(4946), 1, + aux_sym_function_pointer_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191780] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9311), 1, sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188379] = 4, - ACTIONS(8300), 1, + [191794] = 4, + ACTIONS(8560), 1, anon_sym_LBRACK, - ACTIONS(9215), 1, + ACTIONS(9313), 1, anon_sym_COLON, - STATE(5522), 1, + STATE(5590), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188393] = 4, - ACTIONS(6339), 1, + [191808] = 4, + ACTIONS(8080), 1, + anon_sym_RBRACK, + ACTIONS(8687), 1, anon_sym_COMMA, - ACTIONS(9217), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(4958), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188407] = 4, - ACTIONS(9201), 1, - sym__newline, - ACTIONS(9219), 1, - sym_identifier, - ACTIONS(9221), 1, - anon_sym_COLON, + [191822] = 3, + ACTIONS(8176), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188421] = 4, - ACTIONS(6617), 1, - sym__newline, - ACTIONS(7059), 1, + ACTIONS(8275), 2, anon_sym_COMMA, - STATE(5033), 1, - aux_sym_cvar_def_repeat1, + anon_sym_RBRACK, + [191834] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188435] = 2, + ACTIONS(8325), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [191844] = 4, + ACTIONS(8275), 1, + anon_sym_RBRACK, + ACTIONS(9315), 1, + anon_sym_COMMA, + STATE(5122), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9223), 3, + [191858] = 4, + ACTIONS(9318), 1, + sym_identifier, + ACTIONS(9320), 1, + anon_sym_COLON, + ACTIONS(9322), 1, sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191872] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(9324), 1, anon_sym_COLON, - anon_sym_nogil, - [188445] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(9225), 1, + ACTIONS(9326), 1, sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188459] = 4, - ACTIONS(7000), 1, - anon_sym_COMMA, - ACTIONS(9227), 1, - anon_sym_RBRACK, - STATE(4958), 1, - aux_sym_type_index_repeat1, + [191886] = 4, + ACTIONS(8051), 1, + anon_sym_COLON, + ACTIONS(8055), 1, + sym__newline, + ACTIONS(9328), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188473] = 4, - ACTIONS(5027), 1, + [191900] = 4, + ACTIONS(8055), 1, + sym__newline, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9332), 1, anon_sym_COLON, - ACTIONS(9229), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191914] = 4, + ACTIONS(8530), 1, anon_sym_COMMA, - STATE(4671), 1, - aux_sym__parameters_repeat1, + ACTIONS(9334), 1, + anon_sym_RBRACK, + STATE(5145), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188487] = 4, - ACTIONS(2837), 1, - anon_sym_RPAREN, - ACTIONS(9231), 1, + [191928] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(5090), 1, - aux_sym_argument_list_repeat1, + ACTIONS(9336), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188501] = 4, - ACTIONS(2839), 1, - anon_sym_RPAREN, - ACTIONS(9233), 1, + [191942] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(5090), 1, - aux_sym_argument_list_repeat1, + ACTIONS(9338), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188515] = 4, - ACTIONS(9235), 1, + [191956] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9237), 1, - anon_sym_RBRACK, - STATE(4651), 1, - aux_sym_subscript_repeat1, + ACTIONS(9340), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188529] = 4, - ACTIONS(9239), 1, + [191970] = 4, + ACTIONS(6658), 1, + sym__newline, + ACTIONS(6679), 1, anon_sym_COMMA, - ACTIONS(9241), 1, - anon_sym_RBRACK, - STATE(4651), 1, - aux_sym_subscript_repeat1, + STATE(5063), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188543] = 4, - ACTIONS(7938), 1, - anon_sym_RBRACK, - ACTIONS(8548), 1, + [191984] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(4758), 1, - aux_sym_type_index_repeat2, + ACTIONS(9342), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188557] = 4, - ACTIONS(9243), 1, - anon_sym_SEMI, - ACTIONS(9246), 1, + [191998] = 4, + ACTIONS(9322), 1, sym__newline, - STATE(5080), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(9344), 1, + anon_sym_LPAREN, + ACTIONS(9346), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188571] = 3, - ACTIONS(9250), 1, - anon_sym_EQ, + [192012] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9348), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9248), 2, + [192026] = 4, + ACTIONS(6773), 1, sym__newline, + ACTIONS(7264), 1, anon_sym_COMMA, - [188583] = 4, - ACTIONS(2661), 1, - anon_sym_RBRACK, - ACTIONS(9252), 1, - anon_sym_COMMA, - STATE(4884), 1, - aux_sym_type_parameter_repeat1, + STATE(5063), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188597] = 4, - ACTIONS(3800), 1, + [192040] = 4, + ACTIONS(6576), 1, anon_sym_RPAREN, - ACTIONS(9254), 1, + ACTIONS(6578), 1, anon_sym_COMMA, - STATE(5039), 1, - aux_sym__patterns_repeat1, + STATE(5219), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188611] = 4, - ACTIONS(2829), 1, + [192054] = 4, + ACTIONS(7917), 1, + anon_sym_COLON, + ACTIONS(9350), 1, + anon_sym_RBRACE, + STATE(5710), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192068] = 4, + ACTIONS(9352), 1, anon_sym_RPAREN, - ACTIONS(9256), 1, + ACTIONS(9354), 1, anon_sym_COMMA, - STATE(5090), 1, + STATE(5220), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188625] = 4, - ACTIONS(1255), 1, + [192082] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9356), 1, sym__newline, - ACTIONS(9258), 1, - anon_sym_SEMI, - STATE(5080), 1, - aux_sym__simple_statements_repeat1, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188639] = 4, - ACTIONS(6339), 1, + [192096] = 4, + ACTIONS(6961), 1, anon_sym_COMMA, - ACTIONS(9260), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6963), 1, + anon_sym_RBRACK, + STATE(5226), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188653] = 3, - ACTIONS(7508), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [192110] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7510), 2, - anon_sym_LBRACE, + ACTIONS(7629), 3, + anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACE, - [188665] = 3, - ACTIONS(7574), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [192120] = 4, + ACTIONS(7917), 1, + anon_sym_COLON, + ACTIONS(9358), 1, + anon_sym_RBRACE, + STATE(5707), 1, + sym_format_specifier, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7576), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [188677] = 4, - ACTIONS(6315), 1, - anon_sym_COMMA, - ACTIONS(6331), 1, - anon_sym_RPAREN, - STATE(4929), 1, - aux_sym__collection_elements_repeat1, + [192134] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188691] = 4, - ACTIONS(7640), 1, + ACTIONS(3993), 3, anon_sym_RPAREN, - ACTIONS(9262), 1, anon_sym_COMMA, - STATE(5090), 1, - aux_sym_argument_list_repeat1, + anon_sym_EQ, + [192144] = 4, + ACTIONS(9193), 1, + sym__newline, + ACTIONS(9195), 1, + sym__indent, + STATE(1505), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188705] = 4, - ACTIONS(7000), 1, + [192158] = 4, + ACTIONS(8530), 1, anon_sym_COMMA, - ACTIONS(9265), 1, + ACTIONS(9360), 1, anon_sym_RBRACK, - STATE(4958), 1, - aux_sym_type_index_repeat1, + STATE(5045), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188719] = 4, - ACTIONS(8548), 1, - anon_sym_COMMA, - ACTIONS(9265), 1, - anon_sym_RBRACK, - STATE(4984), 1, - aux_sym_type_index_repeat2, + [192172] = 4, + ACTIONS(9326), 1, + sym__newline, + ACTIONS(9362), 1, + anon_sym_LPAREN, + ACTIONS(9364), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188733] = 4, - ACTIONS(8091), 1, + [192186] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9267), 1, - anon_sym_RBRACK, - STATE(5060), 1, - aux_sym_external_definition_repeat1, + ACTIONS(9366), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188747] = 4, - ACTIONS(2831), 1, - anon_sym_RPAREN, - ACTIONS(9269), 1, - anon_sym_COMMA, - STATE(5090), 1, - aux_sym_argument_list_repeat1, + [192200] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188761] = 4, - ACTIONS(8069), 1, + ACTIONS(8312), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(9271), 1, - anon_sym_RPAREN, - STATE(5038), 1, - aux_sym_function_pointer_type_repeat1, + [192210] = 3, + ACTIONS(1518), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188775] = 3, - ACTIONS(8198), 1, - anon_sym_as, + ACTIONS(1520), 2, + anon_sym_except_STAR, + anon_sym_finally, + [192222] = 4, + ACTIONS(9368), 1, + anon_sym_COLON, + ACTIONS(9370), 1, + anon_sym_nogil, + ACTIONS(9372), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8180), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [188787] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(9273), 1, + [192236] = 4, + ACTIONS(8560), 1, + anon_sym_LBRACK, + ACTIONS(9374), 1, anon_sym_COLON, - ACTIONS(9275), 1, + STATE(5531), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192250] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9376), 1, sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188801] = 4, - ACTIONS(6339), 1, + [192264] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9277), 1, + ACTIONS(9378), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188815] = 4, - ACTIONS(1249), 1, + [192278] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9380), 3, sym__newline, - ACTIONS(9279), 1, anon_sym_SEMI, - STATE(5080), 1, - aux_sym__simple_statements_repeat1, + anon_sym_COMMA, + [192288] = 4, + ACTIONS(8647), 1, + anon_sym_RPAREN, + ACTIONS(9382), 1, + anon_sym_COMMA, + STATE(5155), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188829] = 4, - ACTIONS(9281), 1, + [192302] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9283), 1, - anon_sym_RBRACK, - STATE(4651), 1, - aux_sym_subscript_repeat1, + ACTIONS(9385), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188843] = 4, - ACTIONS(9285), 1, + [192316] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9287), 1, - anon_sym_RBRACK, - STATE(4651), 1, - aux_sym_subscript_repeat1, + ACTIONS(9387), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188857] = 3, - ACTIONS(6679), 1, - anon_sym_from, + [192330] = 4, + ACTIONS(2993), 1, + anon_sym_RPAREN, + ACTIONS(9389), 1, + anon_sym_COMMA, + STATE(5169), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6677), 2, - sym__newline, - anon_sym_SEMI, - [188869] = 4, - ACTIONS(6729), 1, - sym_string_start, - ACTIONS(9289), 1, - anon_sym_STAR, - STATE(2754), 1, - sym_string, + [192344] = 4, + ACTIONS(5219), 1, + anon_sym_RPAREN, + ACTIONS(9391), 1, + anon_sym_COMMA, + STATE(4954), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188883] = 4, - ACTIONS(8206), 1, + [192358] = 4, + ACTIONS(5191), 1, anon_sym_RPAREN, - ACTIONS(9291), 1, + ACTIONS(9393), 1, anon_sym_COMMA, - STATE(5104), 1, - aux_sym__import_list_repeat1, + STATE(4891), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188897] = 4, - ACTIONS(8300), 1, - anon_sym_LBRACK, - ACTIONS(9294), 1, - anon_sym_COLON, - STATE(5732), 1, - sym_external_definition, + [192372] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9395), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188911] = 4, - ACTIONS(6631), 1, - sym__newline, - ACTIONS(7135), 1, + [192386] = 4, + ACTIONS(7108), 1, anon_sym_COMMA, - STATE(5033), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(9397), 1, + anon_sym_RBRACK, + STATE(4935), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188925] = 4, - ACTIONS(6585), 1, + [192400] = 4, + ACTIONS(6752), 1, sym__newline, - ACTIONS(7008), 1, + ACTIONS(7088), 1, anon_sym_COMMA, - STATE(5033), 1, + STATE(5063), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188939] = 3, - ACTIONS(9298), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9296), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [188951] = 4, - ACTIONS(7758), 1, - anon_sym_COLON, - ACTIONS(9300), 1, + [192414] = 4, + ACTIONS(2993), 1, anon_sym_RBRACE, - STATE(5502), 1, - sym_format_specifier, + ACTIONS(9399), 1, + anon_sym_COMMA, + STATE(5078), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188965] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(9302), 1, - anon_sym_COLON, - ACTIONS(9304), 1, - sym__newline, + [192428] = 4, + ACTIONS(6356), 1, + anon_sym_RPAREN, + ACTIONS(6431), 1, + anon_sym_COMMA, + STATE(5158), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188979] = 4, - ACTIONS(9275), 1, + [192442] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9401), 1, sym__newline, - ACTIONS(9306), 1, - anon_sym_LPAREN, - ACTIONS(9308), 1, - anon_sym_COLON, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188993] = 4, - ACTIONS(8075), 1, + [192456] = 4, + ACTIONS(8240), 1, anon_sym_DOT, - ACTIONS(8589), 1, + ACTIONS(8604), 1, anon_sym_PIPE, - ACTIONS(9310), 1, + ACTIONS(9403), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189007] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(9312), 1, - anon_sym_COLON, - ACTIONS(9314), 1, + [192470] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9405), 1, sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189021] = 4, - ACTIONS(6339), 1, + [192484] = 4, + ACTIONS(7556), 1, + anon_sym_RPAREN, + ACTIONS(9407), 1, anon_sym_COMMA, - ACTIONS(9316), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(5169), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189035] = 4, - ACTIONS(6339), 1, + [192498] = 4, + ACTIONS(7213), 1, anon_sym_COMMA, - ACTIONS(9318), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7215), 1, + anon_sym_RBRACE, + STATE(5027), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192512] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189049] = 4, - ACTIONS(6339), 1, + ACTIONS(3993), 3, anon_sym_COMMA, - ACTIONS(9320), 1, + anon_sym_COLON, + anon_sym_EQ, + [192522] = 4, + ACTIONS(8186), 1, + anon_sym_COMMA, + ACTIONS(9410), 1, + anon_sym_RBRACK, + STATE(5188), 1, + aux_sym_external_definition_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192536] = 4, + ACTIONS(8102), 1, + anon_sym_RBRACK, + ACTIONS(8687), 1, + anon_sym_COMMA, + STATE(4909), 1, + aux_sym_type_index_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192550] = 4, + ACTIONS(6098), 1, + sym_identifier, + ACTIONS(9171), 1, + anon_sym_DOT, + STATE(4964), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192564] = 3, + ACTIONS(7779), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7781), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [192576] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_COLON, + ACTIONS(9414), 1, sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189063] = 4, - ACTIONS(6339), 1, + [192590] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9322), 1, + ACTIONS(9416), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189077] = 4, - ACTIONS(7233), 1, + [192604] = 3, + ACTIONS(7488), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7490), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [192616] = 3, + ACTIONS(7492), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7494), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [192628] = 4, + ACTIONS(8203), 1, sym_identifier, - STATE(4567), 1, + STATE(4873), 1, sym_dotted_name, - STATE(4867), 1, + STATE(5271), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189091] = 4, - ACTIONS(6339), 1, + [192642] = 4, + ACTIONS(6775), 1, + anon_sym_RBRACE, + ACTIONS(9418), 1, anon_sym_COMMA, - ACTIONS(9324), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(5181), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189105] = 4, - ACTIONS(6339), 1, + [192656] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9326), 1, + ACTIONS(9421), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189119] = 4, - ACTIONS(6339), 1, + [192670] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9328), 1, + ACTIONS(9423), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189133] = 4, - ACTIONS(6315), 1, + [192684] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9330), 1, - anon_sym_RPAREN, - STATE(4929), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(9425), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189147] = 4, - ACTIONS(6315), 1, - anon_sym_COMMA, - ACTIONS(9332), 1, - anon_sym_RPAREN, - STATE(4929), 1, - aux_sym__collection_elements_repeat1, + [192698] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(9427), 1, + anon_sym_COLON, + ACTIONS(9429), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189161] = 4, - ACTIONS(8158), 1, + [192712] = 4, + ACTIONS(9431), 1, + anon_sym_RPAREN, + ACTIONS(9433), 1, anon_sym_COMMA, - ACTIONS(9334), 1, - anon_sym_in, - STATE(4604), 1, - aux_sym__patterns_repeat1, + STATE(4737), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189175] = 4, - ACTIONS(6689), 1, - anon_sym_RBRACE, - ACTIONS(9336), 1, - anon_sym_COMMA, - STATE(5125), 1, - aux_sym_assert_statement_repeat1, + [192726] = 4, + ACTIONS(9435), 1, + anon_sym_LPAREN, + ACTIONS(9437), 1, + anon_sym_COLON, + ACTIONS(9439), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189189] = 4, - ACTIONS(7418), 1, - anon_sym_RBRACK, - ACTIONS(9339), 1, + [192740] = 4, + ACTIONS(9441), 1, anon_sym_COMMA, - STATE(5126), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(9444), 1, + anon_sym_RBRACK, + STATE(5188), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189203] = 2, + [192754] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9446), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7452), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [189213] = 4, - ACTIONS(6339), 1, + [192768] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9342), 1, + ACTIONS(9448), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189227] = 4, - ACTIONS(6339), 1, + [192782] = 3, + ACTIONS(9452), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9450), 2, + sym__newline, + anon_sym_SEMI, + [192794] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9344), 1, + ACTIONS(9454), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189241] = 4, - ACTIONS(8530), 1, + [192808] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(9456), 1, + anon_sym_COLON, + ACTIONS(9458), 1, sym__newline, - ACTIONS(8532), 1, - sym__indent, - STATE(1513), 1, - sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189255] = 4, - ACTIONS(9346), 1, - anon_sym_COMMA, - ACTIONS(9348), 1, + [192822] = 4, + ACTIONS(9460), 1, anon_sym_COLON, - STATE(4669), 1, - aux_sym_match_statement_repeat1, + ACTIONS(9462), 1, + anon_sym_nogil, + ACTIONS(9464), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189269] = 4, - ACTIONS(8091), 1, + [192836] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9350), 1, - anon_sym_RBRACK, - STATE(5060), 1, - aux_sym_external_definition_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189283] = 4, - ACTIONS(8337), 1, + ACTIONS(9466), 1, sym__newline, - ACTIONS(8339), 1, - sym__indent, - STATE(1432), 1, - sym__match_block, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189297] = 4, - ACTIONS(8530), 1, + [192850] = 4, + ACTIONS(8520), 1, sym__newline, - ACTIONS(8532), 1, + ACTIONS(8522), 1, sym__indent, - STATE(1533), 1, + STATE(1714), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189311] = 4, - ACTIONS(6619), 1, + [192864] = 4, + ACTIONS(6720), 1, sym__newline, - ACTIONS(9352), 1, + ACTIONS(9468), 1, anon_sym_COMMA, - STATE(5033), 1, + STATE(5063), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189325] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(9354), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + [192878] = 4, + ACTIONS(7504), 1, + anon_sym_PIPE, + ACTIONS(9470), 1, + anon_sym_COLON, + STATE(4282), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189339] = 4, - ACTIONS(6339), 1, + [192892] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9356), 1, + ACTIONS(9472), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189353] = 4, - ACTIONS(6339), 1, + [192906] = 4, + ACTIONS(9474), 1, anon_sym_COMMA, - ACTIONS(9358), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9476), 1, + anon_sym_RBRACE, + STATE(4849), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189367] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(9360), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + [192920] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189381] = 4, - ACTIONS(6339), 1, + ACTIONS(9478), 3, + sym__newline, + anon_sym_COLON, + anon_sym_nogil, + [192930] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9362), 1, + ACTIONS(9480), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189395] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(9364), 1, - anon_sym_COLON, - ACTIONS(9366), 1, - sym__newline, + [192944] = 4, + ACTIONS(8530), 1, + anon_sym_COMMA, + ACTIONS(9482), 1, + anon_sym_RBRACK, + STATE(4763), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189409] = 4, - ACTIONS(3756), 1, - sym_string_start, - ACTIONS(9368), 1, - anon_sym_LT, - STATE(5314), 1, - sym_string, + [192958] = 3, + ACTIONS(5911), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189423] = 4, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(9370), 1, + ACTIONS(5813), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(9372), 1, + [192970] = 4, + ACTIONS(6396), 1, + anon_sym_COMMA, + ACTIONS(9484), 1, sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189437] = 4, - ACTIONS(8637), 1, - anon_sym_COLON, - ACTIONS(9374), 1, + [192984] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - STATE(5074), 1, - aux_sym__parameters_repeat1, + ACTIONS(9486), 1, + sym__newline, + STATE(4744), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189451] = 4, - ACTIONS(8743), 1, - anon_sym_COMMA, - ACTIONS(9376), 1, - anon_sym_RBRACK, - STATE(4732), 1, - aux_sym_template_params_repeat1, + [192998] = 4, + ACTIONS(8431), 1, + sym__newline, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(9488), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189465] = 4, - ACTIONS(6339), 1, + [193012] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9378), 1, + ACTIONS(9490), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189479] = 4, - ACTIONS(8300), 1, - anon_sym_LBRACK, - ACTIONS(9380), 1, + [193026] = 4, + ACTIONS(9439), 1, + sym__newline, + ACTIONS(9492), 1, + sym_identifier, + ACTIONS(9494), 1, anon_sym_COLON, - STATE(5631), 1, - sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189493] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(9382), 1, + [193040] = 4, + ACTIONS(6667), 1, sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7472), 1, + anon_sym_COMMA, + STATE(5063), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189507] = 4, - ACTIONS(6663), 1, - sym__newline, - ACTIONS(9384), 1, + [193054] = 4, + ACTIONS(5688), 1, + anon_sym_RBRACK, + ACTIONS(9496), 1, anon_sym_COMMA, - STATE(5033), 1, - aux_sym_cvar_def_repeat1, + STATE(5211), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189521] = 4, - ACTIONS(6339), 1, - anon_sym_COMMA, - ACTIONS(9386), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + [193068] = 4, + ACTIONS(8240), 1, + anon_sym_DOT, + ACTIONS(8604), 1, + anon_sym_PIPE, + ACTIONS(9499), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189535] = 4, - ACTIONS(6339), 1, + [193082] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9388), 1, + ACTIONS(9501), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189549] = 4, - ACTIONS(6339), 1, + [193096] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9390), 1, + ACTIONS(9503), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189563] = 3, - ACTIONS(9394), 1, + [193110] = 3, + ACTIONS(1510), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1512), 2, + anon_sym_except_STAR, + anon_sym_finally, + [193122] = 3, + ACTIONS(9507), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9392), 2, + ACTIONS(9505), 2, anon_sym_COMMA, anon_sym_RBRACE, - [189575] = 4, - ACTIONS(6339), 1, + [193134] = 4, + ACTIONS(3886), 1, + anon_sym_RPAREN, + ACTIONS(9509), 1, anon_sym_COMMA, - ACTIONS(9396), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(4768), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189589] = 4, - ACTIONS(6339), 1, + [193148] = 4, + ACTIONS(2861), 1, + anon_sym_RPAREN, + ACTIONS(9511), 1, anon_sym_COMMA, - ACTIONS(9398), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(4843), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189603] = 4, - ACTIONS(6339), 1, + [193162] = 4, + ACTIONS(2851), 1, + anon_sym_RPAREN, + ACTIONS(9513), 1, anon_sym_COMMA, - ACTIONS(9400), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + STATE(4843), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189617] = 4, - ACTIONS(6339), 1, + [193176] = 4, + ACTIONS(2853), 1, + anon_sym_RPAREN, + ACTIONS(9515), 1, anon_sym_COMMA, - ACTIONS(9402), 1, + STATE(4843), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193190] = 4, + ACTIONS(9193), 1, sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9195), 1, + sym__indent, + STATE(1533), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189631] = 4, - ACTIONS(3089), 1, + [193204] = 4, + ACTIONS(3143), 1, anon_sym_RBRACE, - ACTIONS(9404), 1, + ACTIONS(9517), 1, anon_sym_COMMA, - STATE(4951), 1, - aux_sym_dictionary_repeat1, + STATE(5181), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193218] = 4, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(9519), 1, + anon_sym_COLON, + ACTIONS(9521), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189645] = 4, - ACTIONS(3071), 1, + [193232] = 4, + ACTIONS(9523), 1, + anon_sym_COMMA, + ACTIONS(9526), 1, anon_sym_RBRACE, - ACTIONS(9406), 1, + STATE(5224), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193246] = 4, + ACTIONS(9528), 1, anon_sym_COMMA, - STATE(5125), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(9530), 1, + anon_sym_RBRACK, + STATE(4967), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193260] = 4, + ACTIONS(9532), 1, + anon_sym_COMMA, + ACTIONS(9534), 1, + anon_sym_RBRACK, + STATE(4967), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189659] = 4, - ACTIONS(6339), 1, + [193274] = 4, + ACTIONS(6396), 1, anon_sym_COMMA, - ACTIONS(9408), 1, + ACTIONS(9536), 1, sym__newline, - STATE(4994), 1, + STATE(4744), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189673] = 3, - ACTIONS(8049), 1, - anon_sym_as, + [193288] = 4, + ACTIONS(3886), 1, + anon_sym_RBRACK, + ACTIONS(9538), 1, + anon_sym_COMMA, + STATE(5211), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8166), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [189685] = 4, - ACTIONS(5707), 1, - anon_sym_COMMA, - ACTIONS(5803), 1, + [193302] = 3, + ACTIONS(9458), 1, + sym__newline, + ACTIONS(9540), 1, anon_sym_COLON, - ACTIONS(5805), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189699] = 2, + [193313] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8276), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [189709] = 4, - ACTIONS(6339), 1, + ACTIONS(8753), 2, anon_sym_COMMA, - ACTIONS(9410), 1, - sym__newline, - STATE(4994), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + [193322] = 3, + ACTIONS(9542), 1, + sym_integer, + ACTIONS(9544), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189723] = 2, + [193333] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(9546), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9412), 2, - sym__newline, - anon_sym_SEMI, - [189732] = 3, - ACTIONS(9414), 1, - sym_identifier, - STATE(5010), 1, - sym_template_param, + [193344] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3816), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [193353] = 3, + ACTIONS(9548), 1, + anon_sym_LPAREN, + STATE(2169), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189743] = 2, + [193364] = 3, + ACTIONS(9550), 1, + anon_sym_COLON, + ACTIONS(9552), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9416), 2, - sym__dedent, - anon_sym_case, - [189752] = 2, + [193375] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6536), 2, - anon_sym_RPAREN, + ACTIONS(9554), 2, + anon_sym_import, + anon_sym_cimport, + [193384] = 3, + ACTIONS(9556), 1, anon_sym_COMMA, - [189761] = 2, + STATE(4295), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9418), 2, - anon_sym_COMMA, + [193395] = 3, + ACTIONS(9558), 1, anon_sym_COLON, - [189770] = 3, - ACTIONS(8510), 1, + ACTIONS(9560), 1, sym__newline, - ACTIONS(9420), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189781] = 3, - ACTIONS(9422), 1, + [193406] = 3, + ACTIONS(8108), 1, + anon_sym_RPAREN, + ACTIONS(8344), 1, anon_sym_LPAREN, - STATE(2080), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189792] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8156), 2, - anon_sym_from, - anon_sym_in, - [189801] = 2, + [193417] = 3, + ACTIONS(9562), 1, + sym_integer, + ACTIONS(9564), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9424), 2, - sym__dedent, - anon_sym_case, - [189810] = 3, - ACTIONS(8065), 1, + [193428] = 3, + ACTIONS(9566), 1, anon_sym_LPAREN, - ACTIONS(9426), 1, - anon_sym_RPAREN, + STATE(2428), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189821] = 3, - ACTIONS(9428), 1, - anon_sym_COLON, - ACTIONS(9430), 1, - anon_sym_DASH_GT, + [193439] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189832] = 3, - ACTIONS(9432), 1, + ACTIONS(9568), 2, + sym__dedent, + anon_sym_case, + [193448] = 3, + ACTIONS(7008), 1, anon_sym_COLON, - ACTIONS(9434), 1, + ACTIONS(7010), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189843] = 2, + [193459] = 3, + ACTIONS(9570), 1, + anon_sym_LPAREN, + STATE(2463), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9436), 2, - sym__dedent, - anon_sym_case, - [189852] = 3, - ACTIONS(8065), 1, + [193470] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9438), 1, + ACTIONS(9572), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189863] = 3, - ACTIONS(8931), 1, + [193481] = 3, + ACTIONS(9574), 1, anon_sym_COLON, - ACTIONS(8935), 1, + ACTIONS(9576), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189874] = 2, + [193492] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(9578), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8960), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [189883] = 2, + [193503] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, - anon_sym_RPAREN, + ACTIONS(9580), 2, anon_sym_COMMA, - [189892] = 3, - ACTIONS(9440), 1, - anon_sym_LPAREN, - STATE(2416), 1, - sym_argument_list, + anon_sym_COLON, + [193512] = 3, + ACTIONS(9065), 1, + sym__newline, + ACTIONS(9582), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189903] = 3, - ACTIONS(9442), 1, - anon_sym_LPAREN, - STATE(2303), 1, - sym_argument_list, + [193523] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189914] = 3, - ACTIONS(6565), 1, + ACTIONS(5813), 2, + anon_sym_COMMA, + anon_sym_COLON, + [193532] = 3, + ACTIONS(9584), 1, anon_sym_LPAREN, - STATE(3948), 1, - sym_c_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189925] = 2, + STATE(2357), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9444), 2, - sym__newline, - anon_sym_SEMI, - [189934] = 3, - ACTIONS(5357), 1, + [193543] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(9586), 1, anon_sym_RPAREN, - ACTIONS(9446), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189945] = 2, + [193554] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9448), 2, - sym__newline, - anon_sym_SEMI, - [189954] = 3, - ACTIONS(6729), 1, - sym_string_start, - STATE(2784), 1, - sym_string, + ACTIONS(9588), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [193563] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189965] = 3, - ACTIONS(8026), 1, + ACTIONS(9580), 2, anon_sym_RPAREN, - ACTIONS(8083), 1, - anon_sym_LPAREN, + anon_sym_COMMA, + [193572] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189976] = 3, - ACTIONS(9450), 1, + ACTIONS(9590), 2, + anon_sym__, + sym_identifier, + [193581] = 3, + ACTIONS(7815), 1, + anon_sym_RPAREN, + ACTIONS(8344), 1, anon_sym_LPAREN, - STATE(2308), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189987] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5652), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [189996] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6536), 2, - sym__newline, - anon_sym_SEMI, - [190005] = 2, + [193592] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7374), 2, - anon_sym_RPAREN, + ACTIONS(5813), 2, anon_sym_COMMA, - [190014] = 3, - ACTIONS(7914), 1, anon_sym_COLON, - ACTIONS(7916), 1, + [193601] = 3, + ACTIONS(8433), 1, + anon_sym_LPAREN, + ACTIONS(9592), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190025] = 2, + [193612] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7521), 2, - sym__newline, + ACTIONS(9594), 2, anon_sym_COLON, - [190034] = 2, + anon_sym_DASH_GT, + [193621] = 3, + ACTIONS(9596), 1, + sym_integer, + ACTIONS(9598), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9452), 2, - sym__dedent, - anon_sym_case, - [190043] = 3, - ACTIONS(9454), 1, - sym_integer, - ACTIONS(9456), 1, - sym_float, + [193632] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190054] = 3, - ACTIONS(8376), 1, + ACTIONS(9600), 2, sym__newline, - ACTIONS(9458), 1, - anon_sym_COLON, + anon_sym_SEMI, + [193641] = 3, + ACTIONS(8225), 1, + anon_sym_LPAREN, + STATE(5364), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190065] = 2, + [193652] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(9602), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8284), 2, + [193663] = 3, + ACTIONS(5449), 1, + anon_sym_RPAREN, + ACTIONS(9604), 1, anon_sym_COMMA, - anon_sym_COLON, - [190074] = 3, - ACTIONS(9460), 1, - anon_sym_LPAREN, - STATE(2547), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190085] = 2, + [193674] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9462), 2, + ACTIONS(9606), 2, sym__newline, anon_sym_SEMI, - [190094] = 2, + [193683] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7535), 2, - sym__newline, - anon_sym_COLON, - [190103] = 3, - ACTIONS(9464), 1, - anon_sym_COLON, - ACTIONS(9466), 1, - anon_sym_DASH_GT, + ACTIONS(9126), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [193692] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190114] = 3, - ACTIONS(9468), 1, - anon_sym_LPAREN, - STATE(3085), 1, - sym_argument_list, + ACTIONS(9608), 2, + sym__dedent, + anon_sym_case, + [193701] = 3, + ACTIONS(9610), 1, + anon_sym_COLON, + ACTIONS(9612), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190125] = 2, + [193712] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9042), 2, + ACTIONS(7706), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [190134] = 2, + [193721] = 3, + ACTIONS(9614), 1, + anon_sym_COLON, + ACTIONS(9616), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9470), 2, - sym__dedent, - anon_sym_case, - [190143] = 3, - ACTIONS(9472), 1, - sym_integer, - ACTIONS(9474), 1, - sym_float, + [193732] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190154] = 3, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(9476), 1, + ACTIONS(8312), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [193741] = 3, + ACTIONS(6983), 1, + anon_sym_COLON, + ACTIONS(6985), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190165] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9478), 2, + [193752] = 3, + ACTIONS(9147), 1, anon_sym_COLON, - anon_sym_DASH_GT, - [190174] = 3, - ACTIONS(9480), 1, - anon_sym_COLON, - ACTIONS(9482), 1, + ACTIONS(9151), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190185] = 3, - ACTIONS(6938), 1, - anon_sym_COLON, - ACTIONS(6940), 1, - sym__newline, + [193763] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190196] = 3, - ACTIONS(8065), 1, + ACTIONS(9618), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [193772] = 3, + ACTIONS(9620), 1, anon_sym_LPAREN, - ACTIONS(9484), 1, - anon_sym_RPAREN, + STATE(2507), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190207] = 3, - ACTIONS(8194), 1, - anon_sym_LPAREN, - STATE(5203), 1, - sym_parameters, + [193783] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190218] = 3, - ACTIONS(9486), 1, + ACTIONS(9161), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [193792] = 3, + ACTIONS(7068), 1, anon_sym_COLON, - ACTIONS(9488), 1, - anon_sym_DASH_GT, + ACTIONS(7070), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190229] = 3, - ACTIONS(8721), 1, - anon_sym_COLON, - ACTIONS(8725), 1, - sym__newline, + [193803] = 3, + ACTIONS(9622), 1, + anon_sym_LPAREN, + STATE(2620), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190240] = 3, - ACTIONS(9490), 1, + [193814] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6644), 2, + sym__newline, + anon_sym_SEMI, + [193823] = 3, + ACTIONS(9624), 1, anon_sym_COLON, - ACTIONS(9492), 1, + ACTIONS(9626), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190251] = 3, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(9494), 1, - anon_sym_RPAREN, + [193834] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190262] = 3, - ACTIONS(8065), 1, + ACTIONS(9380), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [193843] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9496), 1, + ACTIONS(9628), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190273] = 2, + [193854] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(9630), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9498), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [190282] = 3, - ACTIONS(9500), 1, - anon_sym_LPAREN, - STATE(3827), 1, - sym_argument_list, + [193865] = 3, + ACTIONS(7986), 1, + anon_sym_COLON, + ACTIONS(7988), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190293] = 2, + [193876] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9502), 2, - sym__newline, - anon_sym_SEMI, - [190302] = 3, - ACTIONS(9414), 1, + ACTIONS(9632), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [193885] = 3, + ACTIONS(9634), 1, sym_identifier, - STATE(4855), 1, + STATE(5203), 1, sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190313] = 3, - ACTIONS(6565), 1, + [193896] = 3, + ACTIONS(6677), 1, anon_sym_LPAREN, - STATE(3922), 1, + STATE(4030), 1, sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190324] = 3, - ACTIONS(9504), 1, - anon_sym_COLON, - ACTIONS(9506), 1, - sym__newline, + [193907] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190335] = 3, - ACTIONS(5365), 1, + ACTIONS(9632), 2, + anon_sym_COMMA, anon_sym_COLON, - STATE(5205), 1, - sym_memory_view_index, + [193916] = 3, + ACTIONS(9636), 1, + anon_sym_COLON, + ACTIONS(9638), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190346] = 3, - ACTIONS(9508), 1, + [193927] = 3, + ACTIONS(6826), 1, anon_sym_COLON, - ACTIONS(9510), 1, - anon_sym_DASH_GT, + ACTIONS(6828), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190357] = 3, - ACTIONS(9512), 1, + [193938] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6090), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [193947] = 3, + ACTIONS(9640), 1, anon_sym_COLON, - ACTIONS(9514), 1, + ACTIONS(9642), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190368] = 3, - ACTIONS(8065), 1, + [193958] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9516), 1, + ACTIONS(9644), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190379] = 3, - ACTIONS(8065), 1, + [193969] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9518), 1, + ACTIONS(9646), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190390] = 3, - ACTIONS(7926), 1, + [193980] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5736), 2, anon_sym_RPAREN, - ACTIONS(8083), 1, - anon_sym_LPAREN, + anon_sym_COMMA, + [193989] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190401] = 2, + ACTIONS(9648), 2, + anon_sym_type, + anon_sym_object, + [193998] = 3, + ACTIONS(6868), 1, + anon_sym_COLON, + ACTIONS(6870), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9520), 2, - anon_sym_nogil, - anon_sym_gil, - [190410] = 2, + [194009] = 3, + ACTIONS(9189), 1, + sym__newline, + ACTIONS(9650), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8351), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [190419] = 3, - ACTIONS(9522), 1, + [194020] = 3, + ACTIONS(9652), 1, anon_sym_COLON, - ACTIONS(9524), 1, + ACTIONS(9654), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190430] = 3, - ACTIONS(7678), 1, - anon_sym_RPAREN, - ACTIONS(8083), 1, - anon_sym_LPAREN, + [194031] = 3, + ACTIONS(9656), 1, + sym_integer, + ACTIONS(9658), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190441] = 3, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(9526), 1, - anon_sym_RPAREN, + [194042] = 3, + ACTIONS(8506), 1, + sym__newline, + ACTIONS(9660), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190452] = 3, - ACTIONS(7896), 1, - anon_sym_RPAREN, - ACTIONS(8083), 1, + [194053] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, + ACTIONS(9662), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190463] = 3, - ACTIONS(6729), 1, + [194064] = 3, + ACTIONS(6842), 1, sym_string_start, - STATE(2805), 1, + STATE(2859), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190474] = 3, - ACTIONS(8065), 1, + [194075] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9528), 1, + ACTIONS(9664), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190485] = 3, - ACTIONS(8065), 1, + [194086] = 3, + ACTIONS(9666), 1, anon_sym_LPAREN, - ACTIONS(9530), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190496] = 2, + STATE(3928), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7418), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [190505] = 2, + [194097] = 3, + ACTIONS(6842), 1, + sym_string_start, + STATE(5655), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9532), 2, - sym__newline, - anon_sym_SEMI, - [190514] = 3, - ACTIONS(8065), 1, + [194108] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9534), 1, + ACTIONS(9668), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190525] = 3, - ACTIONS(6900), 1, - anon_sym_COLON, - ACTIONS(6902), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190536] = 3, - ACTIONS(9536), 1, - anon_sym_COLON, - ACTIONS(9538), 1, - sym__newline, + [194119] = 3, + ACTIONS(7832), 1, + anon_sym_RPAREN, + ACTIONS(8344), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190547] = 3, - ACTIONS(8065), 1, + [194130] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9540), 1, + ACTIONS(9670), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190558] = 2, + [194141] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(9672), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [190567] = 3, - ACTIONS(8065), 1, + [194152] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9542), 1, + ACTIONS(9674), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190578] = 3, - ACTIONS(7984), 1, - anon_sym_RPAREN, - ACTIONS(8083), 1, + [194163] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, + ACTIONS(9676), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190589] = 3, - ACTIONS(9544), 1, - anon_sym_COLON, - ACTIONS(9546), 1, - anon_sym_DASH_GT, + [194174] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190600] = 3, - ACTIONS(9548), 1, - anon_sym_COLON, - ACTIONS(9550), 1, + ACTIONS(9678), 2, sym__newline, + anon_sym_SEMI, + [194183] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190611] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5549), 2, + ACTIONS(6544), 2, + sym__newline, + anon_sym_SEMI, + [194192] = 3, + ACTIONS(7840), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [190620] = 2, + ACTIONS(8344), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5549), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [190629] = 2, + [194203] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9552), 2, - sym__dedent, - anon_sym_case, - [190638] = 2, + ACTIONS(8852), 2, + sym__newline, + anon_sym_SEMI, + [194212] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6482), 2, + ACTIONS(7670), 2, sym__newline, - anon_sym_SEMI, - [190647] = 3, - ACTIONS(9554), 1, - sym_integer, - ACTIONS(9556), 1, - sym_float, + anon_sym_COLON, + [194221] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190658] = 2, + ACTIONS(5688), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [194230] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9558), 2, - sym__dedent, - anon_sym_case, - [190667] = 3, - ACTIONS(9560), 1, + ACTIONS(3816), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [194239] = 3, + ACTIONS(9680), 1, anon_sym_LPAREN, - STATE(2515), 1, + STATE(2620), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190678] = 3, - ACTIONS(9562), 1, + [194250] = 3, + ACTIONS(9682), 1, anon_sym_LPAREN, - STATE(3085), 1, + STATE(3141), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190689] = 3, - ACTIONS(9564), 1, + [194261] = 3, + ACTIONS(9684), 1, anon_sym_LPAREN, - STATE(2547), 1, + STATE(2507), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190700] = 3, - ACTIONS(9566), 1, + [194272] = 3, + ACTIONS(9686), 1, anon_sym_LPAREN, - STATE(2303), 1, + STATE(2463), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190711] = 3, - ACTIONS(9568), 1, + [194283] = 3, + ACTIONS(9688), 1, anon_sym_LPAREN, - STATE(3827), 1, + STATE(3928), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190722] = 3, - ACTIONS(9570), 1, + [194294] = 3, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(2724), 1, + STATE(2743), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190733] = 3, - ACTIONS(9572), 1, + [194305] = 3, + ACTIONS(9692), 1, anon_sym_LPAREN, - STATE(2618), 1, + STATE(2660), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190744] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9574), 2, - anon_sym__, - sym_identifier, - [190753] = 2, + [194316] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9576), 2, + ACTIONS(5813), 2, anon_sym_RPAREN, anon_sym_COMMA, - [190762] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2365), 2, - sym__newline, - anon_sym_SEMI, - [190771] = 3, - ACTIONS(9578), 1, - sym_integer, - ACTIONS(9580), 1, - sym_float, + [194325] = 3, + ACTIONS(8114), 1, + anon_sym_RPAREN, + ACTIONS(8344), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190782] = 2, + [194336] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9582), 2, - anon_sym_nogil, - anon_sym_gil, - [190791] = 3, - ACTIONS(8065), 1, + ACTIONS(9694), 2, + sym__newline, + anon_sym_SEMI, + [194345] = 3, + ACTIONS(6677), 1, anon_sym_LPAREN, - ACTIONS(9584), 1, - anon_sym_RPAREN, + STATE(3958), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190802] = 3, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(9586), 1, - anon_sym_RPAREN, + [194356] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190813] = 3, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(9588), 1, - anon_sym_RPAREN, + ACTIONS(9696), 2, + sym__dedent, + anon_sym_case, + [194365] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190824] = 3, - ACTIONS(8065), 1, + ACTIONS(9698), 2, + sym__newline, + anon_sym_SEMI, + [194374] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9590), 1, + ACTIONS(9700), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190835] = 2, + [194385] = 3, + ACTIONS(6677), 1, + anon_sym_LPAREN, + STATE(3936), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5654), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [190844] = 3, - ACTIONS(6565), 1, - anon_sym_LPAREN, - STATE(3941), 1, - sym_c_parameters, + [194396] = 3, + ACTIONS(9702), 1, + anon_sym_COLON, + ACTIONS(9704), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190855] = 3, - ACTIONS(8065), 1, + [194407] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9592), 1, + ACTIONS(9706), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190866] = 3, - ACTIONS(9594), 1, + [194418] = 3, + ACTIONS(7004), 1, anon_sym_COLON, - ACTIONS(9596), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190877] = 2, + ACTIONS(7006), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9598), 2, - sym__newline, - anon_sym_SEMI, - [190886] = 3, - ACTIONS(8065), 1, + [194429] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9600), 1, + ACTIONS(9708), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190897] = 3, - ACTIONS(9602), 1, - sym_integer, - ACTIONS(9604), 1, - sym_float, + [194440] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190908] = 2, + ACTIONS(9710), 2, + sym__dedent, + anon_sym_case, + [194449] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9606), 2, - sym__newline, - anon_sym_SEMI, - [190917] = 2, + ACTIONS(9712), 2, + sym__dedent, + anon_sym_case, + [194458] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6536), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [190926] = 3, - ACTIONS(8065), 1, + ACTIONS(9714), 2, + anon_sym_nogil, + anon_sym_gil, + [194467] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9608), 1, + ACTIONS(9716), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190937] = 3, - ACTIONS(6729), 1, + [194478] = 3, + ACTIONS(6842), 1, sym_string_start, - STATE(2806), 1, + STATE(2858), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190948] = 3, - ACTIONS(8065), 1, + [194489] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9610), 1, + ACTIONS(9718), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190959] = 3, - ACTIONS(8065), 1, + [194500] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9612), 1, + ACTIONS(9720), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190970] = 2, + [194511] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8462), 2, + ACTIONS(6644), 2, anon_sym_RPAREN, anon_sym_COMMA, - [190979] = 3, - ACTIONS(9614), 1, - anon_sym_LPAREN, - STATE(3430), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190990] = 3, - ACTIONS(8065), 1, + [194520] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9616), 1, + ACTIONS(9722), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191001] = 2, + [194531] = 3, + ACTIONS(9724), 1, + anon_sym_COLON, + ACTIONS(9726), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9618), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [191010] = 2, + [194542] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9576), 2, - anon_sym_COMMA, - anon_sym_COLON, - [191019] = 3, - ACTIONS(8065), 1, + ACTIONS(9728), 2, + sym__dedent, + anon_sym_case, + [194551] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9620), 1, + ACTIONS(9730), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191030] = 2, + [194562] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9622), 2, + ACTIONS(9732), 2, sym__dedent, anon_sym_case, - [191039] = 3, - ACTIONS(8065), 1, + [194571] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9624), 1, + ACTIONS(9734), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191050] = 3, - ACTIONS(8194), 1, + [194582] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - STATE(5249), 1, - sym_parameters, + ACTIONS(9736), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191061] = 2, + [194593] = 3, + ACTIONS(9738), 1, + anon_sym_LPAREN, + STATE(3141), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9246), 2, - sym__newline, - anon_sym_SEMI, - [191070] = 3, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(9626), 1, + [194604] = 3, + ACTIONS(9740), 1, anon_sym_RPAREN, + ACTIONS(9742), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191081] = 2, + [194615] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9628), 2, - sym__newline, - anon_sym_SEMI, - [191090] = 2, + ACTIONS(9744), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [194624] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9630), 2, - anon_sym_type, - anon_sym_object, - [191099] = 3, - ACTIONS(9209), 1, + ACTIONS(8753), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [194633] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9746), 2, + sym__dedent, + anon_sym_case, + [194642] = 3, + ACTIONS(9748), 1, anon_sym_COLON, - ACTIONS(9213), 1, + ACTIONS(9750), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191110] = 2, + [194653] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9632), 2, - anon_sym_import, - anon_sym_cimport, - [191119] = 3, - ACTIONS(9440), 1, + ACTIONS(9752), 2, + anon_sym__, + sym_identifier, + [194662] = 3, + ACTIONS(9754), 1, + anon_sym_LPAREN, + STATE(5437), 1, + sym_c_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194673] = 3, + ACTIONS(9566), 1, anon_sym_LPAREN, - STATE(3085), 1, + STATE(3141), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191130] = 3, - ACTIONS(9634), 1, - sym_integer, - ACTIONS(9636), 1, - sym_float, + [194684] = 3, + ACTIONS(6977), 1, + anon_sym_COLON, + ACTIONS(6979), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191141] = 2, + [194695] = 3, + ACTIONS(9756), 1, + anon_sym_COLON, + ACTIONS(9758), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9638), 2, - sym__newline, - anon_sym_SEMI, - [191150] = 3, - ACTIONS(9640), 1, + [194706] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9760), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [194715] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7235), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [194724] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(9762), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194735] = 3, + ACTIONS(9764), 1, anon_sym_LPAREN, - STATE(2724), 1, + STATE(2743), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191161] = 3, - ACTIONS(6729), 1, - sym_string_start, - STATE(5560), 1, - sym_string, + [194746] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191172] = 2, + ACTIONS(9766), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [194755] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9642), 2, + ACTIONS(9768), 2, sym__newline, anon_sym_SEMI, - [191181] = 2, + [194764] = 3, + ACTIONS(9770), 1, + anon_sym_COLON, + ACTIONS(9772), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9644), 2, - anon_sym__, - sym_identifier, - [191190] = 3, - ACTIONS(9646), 1, - sym_integer, - ACTIONS(9648), 1, - sym_float, + [194775] = 3, + ACTIONS(8225), 1, + anon_sym_LPAREN, + STATE(5421), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191201] = 2, + [194786] = 3, + ACTIONS(8061), 1, + anon_sym_RPAREN, + ACTIONS(8344), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9650), 2, - sym__dedent, - anon_sym_case, - [191210] = 2, + [194797] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9652), 2, - sym__dedent, - anon_sym_case, - [191219] = 2, + ACTIONS(9774), 2, + sym__newline, + anon_sym_SEMI, + [194806] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9654), 2, - sym__dedent, - anon_sym_case, - [191228] = 2, + ACTIONS(6644), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [194815] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(9776), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194826] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9656), 2, + ACTIONS(7558), 2, + sym__newline, anon_sym_COLON, - anon_sym_DASH_GT, - [191237] = 3, - ACTIONS(9658), 1, - anon_sym_LPAREN, - STATE(2515), 1, - sym_argument_list, + [194835] = 3, + ACTIONS(6842), 1, + sym_string_start, + STATE(2844), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191248] = 2, + [194846] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9660), 2, + ACTIONS(9778), 2, sym__newline, anon_sym_SEMI, - [191257] = 2, + [194855] = 3, + ACTIONS(7030), 1, + anon_sym_COLON, + ACTIONS(7032), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6926), 2, + [194866] = 3, + ACTIONS(9780), 1, + anon_sym_COLON, + ACTIONS(9782), 1, sym__newline, - anon_sym_SEMI, - [191266] = 3, - ACTIONS(7693), 1, - anon_sym_RPAREN, - ACTIONS(8083), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191277] = 2, + [194877] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7640), 2, - anon_sym_RPAREN, + ACTIONS(9784), 2, anon_sym_COMMA, - [191286] = 3, - ACTIONS(9304), 1, + anon_sym_RBRACK, + [194886] = 3, + ACTIONS(7868), 1, + anon_sym_RPAREN, + ACTIONS(8344), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194897] = 3, + ACTIONS(8445), 1, sym__newline, - ACTIONS(9662), 1, + ACTIONS(9786), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191297] = 2, + [194908] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6928), 2, + ACTIONS(9788), 2, + sym__dedent, + anon_sym_case, + [194917] = 3, + ACTIONS(9368), 1, + anon_sym_COLON, + ACTIONS(9372), 1, sym__newline, - anon_sym_SEMI, - [191306] = 3, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191317] = 2, + [194928] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9666), 2, + ACTIONS(8647), 2, anon_sym_RPAREN, anon_sym_COMMA, - [191326] = 2, + [194937] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9668), 2, - anon_sym_import, - anon_sym_cimport, - [191335] = 2, + ACTIONS(9790), 2, + sym__dedent, + anon_sym_case, + [194946] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9670), 2, + ACTIONS(9792), 2, sym__dedent, anon_sym_case, - [191344] = 3, - ACTIONS(8382), 1, - sym__newline, - ACTIONS(9672), 1, - anon_sym_COLON, + [194955] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191355] = 3, - ACTIONS(8310), 1, - anon_sym_LPAREN, - ACTIONS(9674), 1, + ACTIONS(9794), 2, + sym__newline, + anon_sym_SEMI, + [194964] = 3, + ACTIONS(9796), 1, + anon_sym_COLON, + ACTIONS(9798), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191366] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9676), 2, - anon_sym__, - sym_identifier, - [191375] = 2, + [194975] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9678), 2, - sym__newline, - anon_sym_SEMI, - [191384] = 3, - ACTIONS(9680), 1, + ACTIONS(8918), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [194984] = 3, + ACTIONS(9800), 1, sym_integer, - ACTIONS(9682), 1, + ACTIONS(9802), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191395] = 3, - ACTIONS(8065), 1, + [194995] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9684), 1, + ACTIONS(9804), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191406] = 2, + [195006] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(9806), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9618), 2, - anon_sym_COMMA, - anon_sym_COLON, - [191415] = 2, + [195017] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8180), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [191424] = 2, + ACTIONS(9808), 2, + sym__newline, + anon_sym_SEMI, + [195026] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9686), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [191433] = 2, + ACTIONS(9810), 2, + sym__newline, + anon_sym_SEMI, + [195035] = 3, + ACTIONS(6822), 1, + anon_sym_COLON, + ACTIONS(6824), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9686), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [191442] = 3, - ACTIONS(9688), 1, - anon_sym_COLON, - ACTIONS(9690), 1, - sym__newline, + [195046] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191453] = 2, + ACTIONS(9812), 2, + sym__newline, + anon_sym_SEMI, + [195055] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5707), 2, + ACTIONS(8775), 2, anon_sym_COMMA, - anon_sym_COLON, - [191462] = 2, + anon_sym_RBRACE, + [195064] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9692), 2, - sym__dedent, - anon_sym_case, - [191471] = 3, - ACTIONS(8016), 1, - anon_sym_RPAREN, - ACTIONS(8083), 1, + ACTIONS(9814), 2, + anon_sym_import, + anon_sym_cimport, + [195073] = 3, + ACTIONS(9816), 1, anon_sym_LPAREN, + STATE(3499), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191482] = 2, + [195084] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8282), 2, + ACTIONS(8413), 2, anon_sym_from, anon_sym_in, - [191491] = 3, - ACTIONS(9694), 1, + [195093] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9744), 2, anon_sym_RPAREN, - ACTIONS(9696), 1, anon_sym_COMMA, + [195102] = 3, + ACTIONS(8225), 1, + anon_sym_LPAREN, + STATE(5292), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191502] = 3, - ACTIONS(9166), 1, - sym__newline, - ACTIONS(9698), 1, - anon_sym_COLON, + [195113] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191513] = 3, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(9700), 1, + ACTIONS(7486), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [195122] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191524] = 3, - ACTIONS(9702), 1, - sym_integer, - ACTIONS(9704), 1, - sym_float, + ACTIONS(9818), 2, + anon_sym_type, + anon_sym_object, + [195131] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191535] = 2, + ACTIONS(5748), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [195140] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8834), 2, + ACTIONS(9766), 2, anon_sym_RPAREN, anon_sym_COMMA, - [191544] = 3, - ACTIONS(9706), 1, - anon_sym_LPAREN, - STATE(3430), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191555] = 3, - ACTIONS(6896), 1, - anon_sym_COLON, - ACTIONS(6898), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191566] = 3, - ACTIONS(9708), 1, + [195149] = 3, + ACTIONS(9820), 1, anon_sym_COLON, - ACTIONS(9710), 1, + ACTIONS(9822), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191577] = 3, - ACTIONS(8194), 1, + [195160] = 3, + ACTIONS(8225), 1, anon_sym_LPAREN, - STATE(5227), 1, + STATE(5299), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191588] = 3, - ACTIONS(9712), 1, - anon_sym_COLON, - ACTIONS(9714), 1, - sym__newline, + [195171] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191599] = 2, + ACTIONS(9824), 2, + anon_sym__, + sym_identifier, + [195180] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9686), 2, + ACTIONS(7556), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [191608] = 3, - ACTIONS(9716), 1, - anon_sym_LPAREN, - STATE(5376), 1, - sym_c_parameters, + [195189] = 3, + ACTIONS(9826), 1, + sym_integer, + ACTIONS(9828), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191619] = 2, + [195200] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9718), 2, - anon_sym_type, - anon_sym_object, - [191628] = 3, - ACTIONS(8065), 1, - anon_sym_LPAREN, - ACTIONS(9720), 1, - anon_sym_RPAREN, + ACTIONS(9830), 2, + anon_sym__, + sym_identifier, + [195209] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191639] = 2, + ACTIONS(9832), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [195218] = 3, + ACTIONS(9834), 1, + sym_integer, + ACTIONS(9836), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3720), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191648] = 3, - ACTIONS(8194), 1, - anon_sym_LPAREN, - STATE(5233), 1, - sym_parameters, + [195229] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191659] = 2, + ACTIONS(9760), 2, + anon_sym_COMMA, + anon_sym_COLON, + [195238] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9722), 2, + ACTIONS(9838), 2, sym__newline, anon_sym_SEMI, - [191668] = 2, + [195247] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9724), 2, + ACTIONS(5736), 2, anon_sym_COMMA, anon_sym_RBRACK, - [191677] = 3, - ACTIONS(9314), 1, - sym__newline, - ACTIONS(9726), 1, + [195256] = 3, + ACTIONS(9840), 1, anon_sym_COLON, + ACTIONS(9842), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191688] = 3, - ACTIONS(9728), 1, - anon_sym_COLON, - ACTIONS(9730), 1, + [195267] = 3, + ACTIONS(8766), 1, sym__newline, + ACTIONS(9844), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191699] = 2, + [195278] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9732), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191708] = 2, + ACTIONS(2403), 2, + sym__newline, + anon_sym_SEMI, + [195287] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(9846), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7418), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191717] = 3, - ACTIONS(8065), 1, + [195298] = 3, + ACTIONS(8195), 1, anon_sym_LPAREN, - ACTIONS(9734), 1, + ACTIONS(9848), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191728] = 2, + [195309] = 3, + ACTIONS(9850), 1, + anon_sym_COLON, + ACTIONS(9852), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9732), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [191737] = 3, - ACTIONS(9736), 1, - sym_integer, - ACTIONS(9738), 1, - sym_float, + [195320] = 3, + ACTIONS(9634), 1, + sym_identifier, + STATE(5276), 1, + sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191748] = 2, + [195331] = 3, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(9854), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9740), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191757] = 3, - ACTIONS(7669), 1, + [195342] = 3, + ACTIONS(9429), 1, + sym__newline, + ACTIONS(9856), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [195353] = 3, + ACTIONS(7998), 1, anon_sym_COLON, - ACTIONS(7671), 1, + ACTIONS(8000), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191768] = 2, + [195364] = 3, + ACTIONS(9858), 1, + anon_sym_LPAREN, + STATE(2660), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8496), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [191777] = 2, + [195375] = 3, + ACTIONS(8886), 1, + sym__newline, + ACTIONS(9860), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9742), 2, - anon_sym__, - sym_identifier, - [191786] = 3, - ACTIONS(9744), 1, - anon_sym_LPAREN, - STATE(2618), 1, - sym_argument_list, + [195386] = 3, + ACTIONS(7026), 1, + anon_sym_COLON, + ACTIONS(7028), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191797] = 3, - ACTIONS(9746), 1, - sym_integer, - ACTIONS(9748), 1, - sym_float, + [195397] = 3, + ACTIONS(7846), 1, + anon_sym_COLON, + ACTIONS(7848), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191808] = 3, - ACTIONS(9750), 1, + [195408] = 3, + ACTIONS(9460), 1, anon_sym_COLON, - ACTIONS(9752), 1, + ACTIONS(9464), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191819] = 3, - ACTIONS(8065), 1, + [195419] = 3, + ACTIONS(9862), 1, anon_sym_LPAREN, - ACTIONS(9754), 1, + STATE(3499), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [195430] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9864), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [195439] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191830] = 3, - ACTIONS(8314), 1, - sym__newline, - ACTIONS(9756), 1, + ACTIONS(9866), 2, + sym__dedent, + anon_sym_case, + [195448] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9868), 2, + anon_sym_type, + anon_sym_object, + [195457] = 3, + ACTIONS(5461), 1, anon_sym_COLON, + STATE(5392), 1, + sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191841] = 3, - ACTIONS(9414), 1, - sym_identifier, - STATE(5366), 1, - sym_template_param, + [195468] = 3, + ACTIONS(9870), 1, + sym_integer, + ACTIONS(9872), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191852] = 3, - ACTIONS(9758), 1, + [195479] = 3, + ACTIONS(9874), 1, sym_integer, - ACTIONS(9760), 1, + ACTIONS(9876), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191863] = 2, + [195490] = 3, + ACTIONS(7892), 1, + anon_sym_RPAREN, + ACTIONS(8344), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9762), 2, - anon_sym_type, - anon_sym_object, - [191872] = 2, + [195501] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9764), 2, - anon_sym_RPAREN, + ACTIONS(8647), 2, anon_sym_COMMA, - [191881] = 3, - ACTIONS(9372), 1, - sym__newline, - ACTIONS(9766), 1, anon_sym_COLON, + [195510] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191892] = 3, - ACTIONS(9366), 1, - sym__newline, - ACTIONS(9768), 1, - anon_sym_COLON, + ACTIONS(9878), 2, + anon_sym_nogil, + anon_sym_gil, + [195519] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191903] = 2, + ACTIONS(9766), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [195528] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9770), 2, + ACTIONS(9880), 2, anon_sym_type, anon_sym_object, - [191912] = 3, - ACTIONS(7727), 1, - anon_sym_RPAREN, - ACTIONS(8083), 1, - anon_sym_LPAREN, + [195537] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191923] = 2, + ACTIONS(9882), 2, + anon_sym_type, + anon_sym_object, + [195546] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8263), 2, + ACTIONS(8395), 2, anon_sym_from, anon_sym_in, - [191932] = 3, - ACTIONS(9772), 1, - anon_sym_COMMA, - STATE(4193), 1, - aux_sym__patterns_repeat1, + [195555] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191943] = 2, + ACTIONS(9884), 2, + sym__dedent, + anon_sym_case, + [195564] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5707), 2, - anon_sym_RPAREN, + ACTIONS(5688), 2, anon_sym_COMMA, - [191952] = 2, + anon_sym_RBRACK, + [195573] = 3, + ACTIONS(7012), 1, + anon_sym_COLON, + ACTIONS(7014), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [191961] = 3, - ACTIONS(7986), 1, - anon_sym_COLON, - ACTIONS(7988), 1, - sym__newline, + [195584] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191972] = 2, + ACTIONS(6905), 2, + sym__newline, + anon_sym_SEMI, + [195593] = 3, + ACTIONS(9886), 1, + sym_integer, + ACTIONS(9888), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9732), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [191981] = 2, + [195604] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8274), 2, + ACTIONS(8397), 2, anon_sym_from, anon_sym_in, - [191990] = 2, + [195613] = 3, + ACTIONS(9890), 1, + anon_sym_COLON, + ACTIONS(9892), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9774), 2, - anon_sym_type, - anon_sym_object, - [191999] = 2, + [195624] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5654), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [192008] = 2, + ACTIONS(9894), 2, + sym__newline, + anon_sym_SEMI, + [195633] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7418), 2, - anon_sym_RPAREN, + ACTIONS(7556), 2, anon_sym_COMMA, - [192017] = 2, + anon_sym_RBRACK, + [195642] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5707), 2, + ACTIONS(9896), 2, anon_sym_COMMA, - anon_sym_COLON, - [192026] = 2, + anon_sym_RBRACE, + [195651] = 3, + ACTIONS(9898), 1, + sym_integer, + ACTIONS(9900), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9418), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [192035] = 2, + [195662] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6966), 2, + ACTIONS(7556), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [192044] = 2, + anon_sym_RBRACE, + [195671] = 3, + ACTIONS(8962), 1, + sym__newline, + ACTIONS(9902), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8351), 2, - anon_sym_COMMA, - anon_sym_COLON, - [192053] = 3, - ACTIONS(9776), 1, - anon_sym_COLON, - ACTIONS(9778), 1, - sym__newline, + [195682] = 3, + ACTIONS(9634), 1, + sym_identifier, + STATE(5127), 1, + sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192064] = 2, - ACTIONS(7255), 1, - anon_sym_RPAREN, + [195693] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192072] = 2, - ACTIONS(9780), 1, - anon_sym_COLON, + ACTIONS(8298), 2, + anon_sym_from, + anon_sym_in, + [195702] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192080] = 2, - ACTIONS(7896), 1, - anon_sym_RPAREN, + ACTIONS(6862), 2, + sym__newline, + anon_sym_SEMI, + [195711] = 3, + ACTIONS(9904), 1, + sym_integer, + ACTIONS(9906), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192088] = 2, - ACTIONS(7678), 1, - anon_sym_RPAREN, + [195722] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192096] = 2, - ACTIONS(9782), 1, - anon_sym_RBRACK, + ACTIONS(9744), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [195731] = 2, + ACTIONS(9908), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192104] = 2, - ACTIONS(6351), 1, - anon_sym_RPAREN, + [195739] = 2, + ACTIONS(9910), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192112] = 2, - ACTIONS(9784), 1, - anon_sym_RPAREN, + [195747] = 2, + ACTIONS(9912), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192120] = 2, - ACTIONS(9786), 1, - anon_sym_COLON, + [195755] = 2, + ACTIONS(9914), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192128] = 2, - ACTIONS(9788), 1, - anon_sym_RPAREN, + [195763] = 2, + ACTIONS(7410), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192136] = 2, - ACTIONS(9790), 1, + [195771] = 2, + ACTIONS(9916), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192144] = 2, - ACTIONS(6435), 1, + [195779] = 2, + ACTIONS(9918), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192152] = 2, - ACTIONS(6402), 1, - anon_sym_RPAREN, + [195787] = 2, + ACTIONS(9920), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192160] = 2, - ACTIONS(9792), 1, - sym_identifier, + [195795] = 2, + ACTIONS(9922), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192168] = 2, - ACTIONS(9794), 1, + [195803] = 2, + ACTIONS(7832), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192176] = 2, - ACTIONS(9796), 1, - anon_sym_RPAREN, + [195811] = 2, + ACTIONS(7158), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192184] = 2, - ACTIONS(7028), 1, - anon_sym_RPAREN, + [195819] = 2, + ACTIONS(9924), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192192] = 2, - ACTIONS(9798), 1, + [195827] = 2, + ACTIONS(6460), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192200] = 2, - ACTIONS(1503), 1, + [195835] = 2, + ACTIONS(9926), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192208] = 2, - ACTIONS(3349), 1, + [195843] = 2, + ACTIONS(9928), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192216] = 2, - ACTIONS(9800), 1, + [195851] = 2, + ACTIONS(7412), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192224] = 2, - ACTIONS(9802), 1, - anon_sym_COLON, + [195859] = 2, + ACTIONS(9930), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192232] = 2, - ACTIONS(7063), 1, - anon_sym_COLON, + [195867] = 2, + ACTIONS(9932), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192240] = 2, - ACTIONS(6425), 1, - anon_sym_RPAREN, + [195875] = 2, + ACTIONS(9934), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192248] = 2, - ACTIONS(9804), 1, + [195883] = 2, + ACTIONS(9936), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192256] = 2, - ACTIONS(9806), 1, - anon_sym_RBRACE, + [195891] = 2, + ACTIONS(9938), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192264] = 2, - ACTIONS(9808), 1, - anon_sym_None, + [195899] = 2, + ACTIONS(9740), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192272] = 2, - ACTIONS(9810), 1, + [195907] = 2, + ACTIONS(7233), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192280] = 2, - ACTIONS(9812), 1, - anon_sym_LPAREN, + [195915] = 2, + ACTIONS(9940), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192288] = 2, - ACTIONS(9814), 1, - sym__indent, + [195923] = 2, + ACTIONS(9942), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192296] = 2, - ACTIONS(9816), 1, - sym__indent, + [195931] = 2, + ACTIONS(9944), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192304] = 2, - ACTIONS(6522), 1, - sym_identifier, + [195939] = 2, + ACTIONS(9946), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192312] = 2, - ACTIONS(3778), 1, - anon_sym_def, + [195947] = 2, + ACTIONS(7840), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192320] = 2, - ACTIONS(9818), 1, + [195955] = 2, + ACTIONS(9948), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192328] = 2, - ACTIONS(9820), 1, - anon_sym_RPAREN, + [195963] = 2, + ACTIONS(9950), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192336] = 2, - ACTIONS(7129), 1, - anon_sym_RBRACE, + [195971] = 2, + ACTIONS(9952), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192344] = 2, - ACTIONS(9822), 1, - anon_sym_COLON, + [195979] = 2, + ACTIONS(9954), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192352] = 2, - ACTIONS(9824), 1, - anon_sym_RBRACK, + [195987] = 2, + ACTIONS(9956), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192360] = 2, - ACTIONS(9826), 1, + [195995] = 2, + ACTIONS(9958), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192368] = 2, - ACTIONS(9828), 1, - anon_sym_RBRACK, + [196003] = 2, + ACTIONS(6492), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192376] = 2, - ACTIONS(9830), 1, - anon_sym_RBRACK, + [196011] = 2, + ACTIONS(9960), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192384] = 2, - ACTIONS(9832), 1, + [196019] = 2, + ACTIONS(9962), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192392] = 2, - ACTIONS(9834), 1, - anon_sym_RBRACK, + [196027] = 2, + ACTIONS(9964), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192400] = 2, - ACTIONS(9836), 1, + [196035] = 2, + ACTIONS(7815), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192408] = 2, - ACTIONS(9838), 1, - anon_sym_COLON, + [196043] = 2, + ACTIONS(9966), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192416] = 2, - ACTIONS(7143), 1, - anon_sym_RBRACE, + [196051] = 2, + ACTIONS(9968), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192424] = 2, - ACTIONS(9840), 1, - sym_identifier, + [196059] = 2, + ACTIONS(9970), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192432] = 2, - ACTIONS(9842), 1, - anon_sym_None, + [196067] = 2, + ACTIONS(9972), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192440] = 2, - ACTIONS(9844), 1, - anon_sym_RBRACK, + [196075] = 2, + ACTIONS(9974), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192448] = 2, - ACTIONS(7229), 1, - anon_sym_COLON, + [196083] = 2, + ACTIONS(9976), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192456] = 2, - ACTIONS(9846), 1, - sym_identifier, + [196091] = 2, + ACTIONS(9978), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192464] = 2, - ACTIONS(9848), 1, - anon_sym_RBRACE, + [196099] = 2, + ACTIONS(9980), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192472] = 2, - ACTIONS(9850), 1, + [196107] = 2, + ACTIONS(9982), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192480] = 2, - ACTIONS(7958), 1, - anon_sym_RBRACK, + [196115] = 2, + ACTIONS(9984), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192488] = 2, - ACTIONS(9852), 1, - anon_sym_COLON_EQ, + [196123] = 2, + ACTIONS(9986), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192496] = 2, - ACTIONS(9854), 1, - anon_sym_COLON, + [196131] = 2, + ACTIONS(6478), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192504] = 2, - ACTIONS(7984), 1, + [196139] = 2, + ACTIONS(8114), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192512] = 2, - ACTIONS(7920), 1, - anon_sym_RBRACK, + [196147] = 2, + ACTIONS(9988), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192520] = 2, - ACTIONS(9856), 1, - sym__newline, + [196155] = 2, + ACTIONS(9990), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192528] = 2, - ACTIONS(9858), 1, + [196163] = 2, + ACTIONS(9992), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192536] = 2, - ACTIONS(9860), 1, + [196171] = 2, + ACTIONS(9994), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192544] = 2, - ACTIONS(9862), 1, + [196179] = 2, + ACTIONS(9996), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192552] = 2, - ACTIONS(9864), 1, - sym_identifier, + [196187] = 2, + ACTIONS(9998), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192560] = 2, - ACTIONS(9866), 1, + [196195] = 2, + ACTIONS(10000), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192568] = 2, - ACTIONS(9868), 1, - sym_identifier, + [196203] = 2, + ACTIONS(5401), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192576] = 2, - ACTIONS(9870), 1, + [196211] = 2, + ACTIONS(7860), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192584] = 2, - ACTIONS(9872), 1, + [196219] = 2, + ACTIONS(10002), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192592] = 2, - ACTIONS(9874), 1, - ts_builtin_sym_end, + [196227] = 2, + ACTIONS(10004), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192600] = 2, - ACTIONS(9876), 1, - sym_identifier, + [196235] = 2, + ACTIONS(10006), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192608] = 2, - ACTIONS(9878), 1, + [196243] = 2, + ACTIONS(10008), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192616] = 2, - ACTIONS(7344), 1, - anon_sym_RBRACE, + [196251] = 2, + ACTIONS(6408), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192624] = 2, - ACTIONS(7800), 1, + [196259] = 2, + ACTIONS(7856), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192632] = 2, - ACTIONS(9880), 1, - anon_sym_RBRACE, + [196267] = 2, + ACTIONS(10010), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192640] = 2, - ACTIONS(9882), 1, - anon_sym_None, + [196275] = 2, + ACTIONS(10012), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192648] = 2, - ACTIONS(9884), 1, - sym_identifier, + [196283] = 2, + ACTIONS(10014), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192656] = 2, - ACTIONS(9886), 1, - sym_identifier, + [196291] = 2, + ACTIONS(10016), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192664] = 2, - ACTIONS(9888), 1, + [196299] = 2, + ACTIONS(10018), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192672] = 2, - ACTIONS(9890), 1, - anon_sym_COLON, + [196307] = 2, + ACTIONS(10020), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192680] = 2, - ACTIONS(9168), 1, + [196315] = 2, + ACTIONS(9277), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192688] = 2, - ACTIONS(9892), 1, - anon_sym_COLON, + [196323] = 2, + ACTIONS(10022), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192696] = 2, - ACTIONS(9894), 1, + [196331] = 2, + ACTIONS(10024), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192704] = 2, - ACTIONS(9896), 1, + [196339] = 2, + ACTIONS(10026), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192712] = 2, - ACTIONS(9898), 1, - sym_identifier, + [196347] = 2, + ACTIONS(10028), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192720] = 2, - ACTIONS(9900), 1, - sym_identifier, + [196355] = 2, + ACTIONS(8108), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192728] = 2, - ACTIONS(9902), 1, + [196363] = 2, + ACTIONS(10030), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192736] = 2, - ACTIONS(9904), 1, + [196371] = 2, + ACTIONS(10032), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192744] = 2, - ACTIONS(9906), 1, - sym_identifier, + [196379] = 2, + ACTIONS(10034), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192752] = 2, - ACTIONS(9908), 1, - anon_sym_COLON, + [196387] = 2, + ACTIONS(7215), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192760] = 2, - ACTIONS(9910), 1, - anon_sym_COLON_EQ, + [196395] = 2, + ACTIONS(10036), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192768] = 2, - ACTIONS(7055), 1, - anon_sym_RBRACE, + [196403] = 2, + ACTIONS(3854), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192776] = 2, - ACTIONS(9181), 1, + [196411] = 2, + ACTIONS(9285), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192784] = 2, - ACTIONS(9912), 1, - anon_sym_COLON, + [196419] = 2, + ACTIONS(10038), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192792] = 2, - ACTIONS(9914), 1, + [196427] = 2, + ACTIONS(10040), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192800] = 2, - ACTIONS(9916), 1, - anon_sym_COLON, + [196435] = 2, + ACTIONS(6614), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192808] = 2, - ACTIONS(9918), 1, + [196443] = 2, + ACTIONS(10042), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192816] = 2, - ACTIONS(9920), 1, + [196451] = 2, + ACTIONS(10044), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192824] = 2, - ACTIONS(9922), 1, - anon_sym_GT, + [196459] = 2, + ACTIONS(10046), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192832] = 2, - ACTIONS(9924), 1, - sym_identifier, + [196467] = 2, + ACTIONS(10048), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192840] = 2, - ACTIONS(9926), 1, - anon_sym_GT, + [196475] = 2, + ACTIONS(10050), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192848] = 2, - ACTIONS(9928), 1, + [196483] = 2, + ACTIONS(10052), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192856] = 2, - ACTIONS(9930), 1, - anon_sym_COLON_EQ, + [196491] = 2, + ACTIONS(10054), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192864] = 2, - ACTIONS(9932), 1, - anon_sym_COLON, + [196499] = 2, + ACTIONS(10056), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192872] = 2, - ACTIONS(9934), 1, - anon_sym_RPAREN, + [196507] = 2, + ACTIONS(10058), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192880] = 2, - ACTIONS(9936), 1, - sym__indent, + [196515] = 2, + ACTIONS(10060), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192888] = 2, - ACTIONS(9938), 1, - anon_sym_COLON, - ACTIONS(3), 2, + [196523] = 2, + ACTIONS(10062), 1, + aux_sym_run_directive_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [192896] = 2, - ACTIONS(9940), 1, - anon_sym_RBRACE, + [196531] = 2, + ACTIONS(10064), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192904] = 2, - ACTIONS(9942), 1, - anon_sym_COLON, + [196539] = 2, + ACTIONS(10066), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192912] = 2, - ACTIONS(9944), 1, - anon_sym_RBRACE, + [196547] = 2, + ACTIONS(10068), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192920] = 2, - ACTIONS(9946), 1, + [196555] = 2, + ACTIONS(10070), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192928] = 2, - ACTIONS(9948), 1, + [196563] = 2, + ACTIONS(10072), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192936] = 2, - ACTIONS(9950), 1, + [196571] = 2, + ACTIONS(10074), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192944] = 2, - ACTIONS(9952), 1, - anon_sym_COLON_EQ, + [196579] = 2, + ACTIONS(10076), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192952] = 2, - ACTIONS(9954), 1, + [196587] = 2, + ACTIONS(10078), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192960] = 2, - ACTIONS(9956), 1, + [196595] = 2, + ACTIONS(10080), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192968] = 2, - ACTIONS(9958), 1, - anon_sym_RBRACK, + [196603] = 2, + ACTIONS(10082), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192976] = 2, - ACTIONS(9960), 1, - anon_sym_RPAREN, + [196611] = 2, + ACTIONS(10084), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192984] = 2, - ACTIONS(7247), 1, - anon_sym_RBRACE, + [196619] = 2, + ACTIONS(10086), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192992] = 2, - ACTIONS(9962), 1, - anon_sym_RBRACE, + [196627] = 2, + ACTIONS(10088), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193000] = 2, - ACTIONS(9964), 1, - anon_sym_GT, + [196635] = 2, + ACTIONS(10090), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193008] = 2, - ACTIONS(9966), 1, + [196643] = 2, + ACTIONS(10092), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193016] = 2, - ACTIONS(9968), 1, - anon_sym_COLON, + [196651] = 2, + ACTIONS(8122), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193024] = 2, - ACTIONS(9970), 1, - sym_identifier, + [196659] = 2, + ACTIONS(10094), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193032] = 2, - ACTIONS(9972), 1, - anon_sym_RBRACE, + [196667] = 2, + ACTIONS(10096), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193040] = 2, - ACTIONS(9974), 1, - anon_sym_COLON, + [196675] = 2, + ACTIONS(10098), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193048] = 2, - ACTIONS(9976), 1, + [196683] = 2, + ACTIONS(10100), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193056] = 2, - ACTIONS(9978), 1, + [196691] = 2, + ACTIONS(10102), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193064] = 2, - ACTIONS(9980), 1, + [196699] = 2, + ACTIONS(10104), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193072] = 2, - ACTIONS(9982), 1, + [196707] = 2, + ACTIONS(10106), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193080] = 2, - ACTIONS(9984), 1, - anon_sym_COLON, + [196715] = 2, + ACTIONS(7393), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193088] = 2, - ACTIONS(9986), 1, - sym_identifier, + [196723] = 2, + ACTIONS(4152), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193096] = 2, - ACTIONS(9988), 1, - anon_sym_COLON, + [196731] = 2, + ACTIONS(10108), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193104] = 2, - ACTIONS(9990), 1, - sym_identifier, + [196739] = 2, + ACTIONS(10110), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193112] = 2, - ACTIONS(9992), 1, + [196747] = 2, + ACTIONS(10112), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193120] = 2, - ACTIONS(9994), 1, - anon_sym_RBRACE, + [196755] = 2, + ACTIONS(10114), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193128] = 2, - ACTIONS(9996), 1, - anon_sym_COLON, + [196763] = 2, + ACTIONS(10116), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193136] = 2, - ACTIONS(9998), 1, - anon_sym_None, + [196771] = 2, + ACTIONS(10118), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193144] = 2, - ACTIONS(10000), 1, - anon_sym_COLON_EQ, + [196779] = 2, + ACTIONS(7367), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193152] = 2, - ACTIONS(10002), 1, - anon_sym_RBRACK, + [196787] = 2, + ACTIONS(6612), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193160] = 2, - ACTIONS(10004), 1, - anon_sym_RPAREN, + [196795] = 2, + ACTIONS(10120), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193168] = 2, - ACTIONS(8310), 1, + [196803] = 2, + ACTIONS(8433), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193176] = 2, - ACTIONS(10006), 1, + [196811] = 2, + ACTIONS(10122), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193184] = 2, - ACTIONS(10008), 1, - anon_sym_COLON, + [196819] = 2, + ACTIONS(10124), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193192] = 2, - ACTIONS(10010), 1, - anon_sym_RPAREN, + [196827] = 2, + ACTIONS(10126), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193200] = 2, - ACTIONS(10012), 1, + [196835] = 2, + ACTIONS(6582), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193208] = 2, - ACTIONS(10014), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [193216] = 2, - ACTIONS(10016), 1, + [196843] = 2, + ACTIONS(10128), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193224] = 2, - ACTIONS(10018), 1, + [196851] = 2, + ACTIONS(10130), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193232] = 2, - ACTIONS(10020), 1, - sym_identifier, + [196859] = 2, + ACTIONS(10132), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193240] = 2, - ACTIONS(10022), 1, - anon_sym_COLON_EQ, + [196867] = 2, + ACTIONS(10134), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193248] = 2, - ACTIONS(10024), 1, - anon_sym_RBRACK, + [196875] = 2, + ACTIONS(10136), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193256] = 2, - ACTIONS(7938), 1, - anon_sym_RBRACK, + [196883] = 2, + ACTIONS(10138), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193264] = 2, - ACTIONS(10026), 1, + [196891] = 2, + ACTIONS(10140), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193272] = 2, - ACTIONS(10028), 1, - anon_sym_RPAREN, + [196899] = 2, + ACTIONS(10142), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193280] = 2, - ACTIONS(10030), 1, - anon_sym_COLON_EQ, + [196907] = 2, + ACTIONS(10144), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193288] = 2, - ACTIONS(10032), 1, - anon_sym_RBRACE, + [196915] = 2, + ACTIONS(10146), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193296] = 2, - ACTIONS(10034), 1, - anon_sym_RBRACE, + [196923] = 2, + ACTIONS(10148), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193304] = 2, - ACTIONS(10036), 1, - sym_identifier, + [196931] = 2, + ACTIONS(10150), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193312] = 2, - ACTIONS(10038), 1, - anon_sym_GT, + [196939] = 2, + ACTIONS(7334), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193320] = 2, - ACTIONS(10040), 1, + [196947] = 2, + ACTIONS(10152), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193328] = 2, - ACTIONS(10042), 1, - sym_identifier, + [196955] = 2, + ACTIONS(8061), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193336] = 2, - ACTIONS(10044), 1, + [196963] = 2, + ACTIONS(10154), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193344] = 2, - ACTIONS(10046), 1, + [196971] = 2, + ACTIONS(10156), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193352] = 2, - ACTIONS(10048), 1, + [196979] = 2, + ACTIONS(6576), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193360] = 2, - ACTIONS(10050), 1, - anon_sym_RBRACK, + [196987] = 2, + ACTIONS(10158), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193368] = 2, - ACTIONS(10052), 1, - sym_identifier, + [196995] = 2, + ACTIONS(4204), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193376] = 2, - ACTIONS(10054), 1, - anon_sym_GT, + [197003] = 2, + ACTIONS(10160), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193384] = 2, - ACTIONS(7088), 1, + [197011] = 2, + ACTIONS(10162), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193392] = 2, - ACTIONS(10056), 1, - sym__indent, + [197019] = 2, + ACTIONS(10164), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193400] = 2, - ACTIONS(7693), 1, - anon_sym_RPAREN, + [197027] = 2, + ACTIONS(10166), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193408] = 2, - ACTIONS(10058), 1, - anon_sym_RBRACK, + [197035] = 2, + ACTIONS(10168), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193416] = 2, - ACTIONS(10060), 1, - anon_sym_RBRACE, + [197043] = 2, + ACTIONS(10170), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193424] = 2, - ACTIONS(10062), 1, - sym_identifier, + [197051] = 2, + ACTIONS(10172), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193432] = 2, - ACTIONS(6445), 1, - anon_sym_RPAREN, + [197059] = 2, + ACTIONS(10174), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193440] = 2, - ACTIONS(10064), 1, - sym_identifier, + [197067] = 2, + ACTIONS(10176), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193448] = 2, - ACTIONS(10066), 1, - anon_sym_COLON, + [197075] = 2, + ACTIONS(10178), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193456] = 2, - ACTIONS(10068), 1, + [197083] = 2, + ACTIONS(10180), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [197091] = 2, + ACTIONS(10182), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193464] = 2, - ACTIONS(10070), 1, + [197099] = 2, + ACTIONS(10184), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193472] = 2, - ACTIONS(10072), 1, + [197107] = 2, + ACTIONS(10186), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193480] = 2, - ACTIONS(10074), 1, - anon_sym_STAR, + [197115] = 2, + ACTIONS(7868), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193488] = 2, - ACTIONS(10076), 1, - sym_identifier, + [197123] = 2, + ACTIONS(10188), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193496] = 2, - ACTIONS(10078), 1, - anon_sym_EQ, + [197131] = 2, + ACTIONS(10190), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193504] = 2, - ACTIONS(10080), 1, - anon_sym_COLON, + [197139] = 2, + ACTIONS(6538), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193512] = 2, - ACTIONS(10082), 1, - sym__indent, + [197147] = 2, + ACTIONS(10192), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193520] = 2, - ACTIONS(7067), 1, - anon_sym_RBRACE, + [197155] = 2, + ACTIONS(10194), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193528] = 2, - ACTIONS(10084), 1, + [197163] = 2, + ACTIONS(10196), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193536] = 2, - ACTIONS(10086), 1, - sym_identifier, + [197171] = 2, + ACTIONS(10198), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193544] = 2, - ACTIONS(4108), 1, - sym__dedent, + [197179] = 2, + ACTIONS(10200), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193552] = 2, - ACTIONS(10088), 1, - sym_identifier, + [197187] = 2, + ACTIONS(10202), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193560] = 2, - ACTIONS(4054), 1, - sym__dedent, + [197195] = 2, + ACTIONS(10204), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193568] = 2, - ACTIONS(10090), 1, - anon_sym_for, + [197203] = 2, + ACTIONS(10206), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193576] = 2, - ACTIONS(10092), 1, - anon_sym_RBRACK, + [197211] = 2, + ACTIONS(10208), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193584] = 2, - ACTIONS(10094), 1, - anon_sym_RPAREN, + [197219] = 2, + ACTIONS(10210), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193592] = 2, - ACTIONS(10096), 1, - anon_sym_in, + [197227] = 2, + ACTIONS(10212), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193600] = 2, - ACTIONS(10098), 1, + [197235] = 2, + ACTIONS(10214), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193608] = 2, - ACTIONS(10100), 1, - anon_sym_RPAREN, + [197243] = 2, + ACTIONS(10216), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193616] = 2, - ACTIONS(10102), 1, - anon_sym_COLON_EQ, + [197251] = 2, + ACTIONS(10218), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193624] = 2, - ACTIONS(10104), 1, - aux_sym_run_directive_token1, - ACTIONS(5), 2, + [197259] = 2, + ACTIONS(7270), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193632] = 2, - ACTIONS(7368), 1, - anon_sym_LPAREN, + [197267] = 2, + ACTIONS(4150), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193640] = 2, - ACTIONS(10106), 1, - anon_sym_RBRACE, + [197275] = 2, + ACTIONS(10220), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193648] = 2, - ACTIONS(10108), 1, + [197283] = 2, + ACTIONS(10222), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193656] = 2, - ACTIONS(7281), 1, + [197291] = 2, + ACTIONS(7371), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193664] = 2, - ACTIONS(9694), 1, - anon_sym_RPAREN, + [197299] = 2, + ACTIONS(10224), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193672] = 2, - ACTIONS(10110), 1, - anon_sym_GT, + [197307] = 2, + ACTIONS(10226), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193680] = 2, - ACTIONS(10112), 1, - anon_sym_COLON, + [197315] = 2, + ACTIONS(9478), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193688] = 2, - ACTIONS(7109), 1, + [197323] = 2, + ACTIONS(10228), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193696] = 2, - ACTIONS(10114), 1, - anon_sym_RPAREN, + [197331] = 2, + ACTIONS(10230), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193704] = 2, - ACTIONS(10116), 1, + [197339] = 2, + ACTIONS(10232), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193712] = 2, - ACTIONS(10118), 1, - anon_sym_COLON, + [197347] = 2, + ACTIONS(10234), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193720] = 2, - ACTIONS(10120), 1, + [197355] = 2, + ACTIONS(10236), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193728] = 2, - ACTIONS(10122), 1, + [197363] = 2, + ACTIONS(10238), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193736] = 2, - ACTIONS(10124), 1, - anon_sym_RBRACK, + [197371] = 2, + ACTIONS(10240), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193744] = 2, - ACTIONS(10126), 1, + [197379] = 2, + ACTIONS(10242), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193752] = 2, - ACTIONS(7125), 1, - anon_sym_COLON, + [197387] = 2, + ACTIONS(7357), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193760] = 2, - ACTIONS(5307), 1, - sym__dedent, + [197395] = 2, + ACTIONS(10244), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193768] = 2, - ACTIONS(10128), 1, + [197403] = 2, + ACTIONS(10246), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193776] = 2, - ACTIONS(10130), 1, + [197411] = 2, + ACTIONS(10248), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193784] = 2, - ACTIONS(6455), 1, - anon_sym_RPAREN, + [197419] = 2, + ACTIONS(10250), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193792] = 2, - ACTIONS(1537), 1, - anon_sym_COLON, + [197427] = 2, + ACTIONS(10252), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193800] = 2, - ACTIONS(10132), 1, - anon_sym_COLON, + [197435] = 2, + ACTIONS(10254), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193808] = 2, - ACTIONS(10134), 1, - sym_identifier, + [197443] = 2, + ACTIONS(10256), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193816] = 2, - ACTIONS(7133), 1, - anon_sym_RBRACE, + [197451] = 2, + ACTIONS(10258), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193824] = 2, - ACTIONS(4056), 1, - sym__dedent, + [197459] = 2, + ACTIONS(10260), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193832] = 2, - ACTIONS(10136), 1, - anon_sym_RBRACE, + [197467] = 2, + ACTIONS(3347), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193840] = 2, - ACTIONS(10138), 1, - sym_identifier, + [197475] = 2, + ACTIONS(10262), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193848] = 2, - ACTIONS(8065), 1, - anon_sym_LPAREN, + [197483] = 2, + ACTIONS(10264), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193856] = 2, - ACTIONS(10140), 1, + [197491] = 2, + ACTIONS(10266), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193864] = 2, - ACTIONS(10142), 1, - anon_sym_RBRACE, + [197499] = 2, + ACTIONS(10268), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193872] = 2, - ACTIONS(10144), 1, + [197507] = 2, + ACTIONS(10270), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [197515] = 2, + ACTIONS(10272), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193880] = 2, - ACTIONS(10146), 1, + [197523] = 2, + ACTIONS(10274), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193888] = 2, - ACTIONS(10148), 1, + [197531] = 2, + ACTIONS(10276), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193896] = 2, - ACTIONS(10150), 1, + [197539] = 2, + ACTIONS(10278), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193904] = 2, - ACTIONS(10152), 1, - sym_identifier, + [197547] = 2, + ACTIONS(10280), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193912] = 2, - ACTIONS(10154), 1, + [197555] = 2, + ACTIONS(10282), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193920] = 2, - ACTIONS(10156), 1, + [197563] = 2, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [197571] = 2, + ACTIONS(10284), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [197579] = 2, + ACTIONS(6568), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193928] = 2, - ACTIONS(10158), 1, - anon_sym_STAR, + [197587] = 2, + ACTIONS(10286), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193936] = 2, - ACTIONS(10160), 1, - anon_sym_RBRACK, + [197595] = 2, + ACTIONS(10288), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193944] = 2, - ACTIONS(10162), 1, + [197603] = 2, + ACTIONS(10290), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [197611] = 2, + ACTIONS(10292), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193952] = 2, - ACTIONS(10164), 1, + [197619] = 2, + ACTIONS(10294), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193960] = 2, - ACTIONS(8751), 1, - anon_sym_in, + [197627] = 2, + ACTIONS(10296), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193968] = 2, - ACTIONS(10166), 1, - sym__indent, + [197635] = 2, + ACTIONS(10298), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193976] = 2, - ACTIONS(10168), 1, - sym__indent, + [197643] = 2, + ACTIONS(10300), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193984] = 2, - ACTIONS(7239), 1, + [197651] = 2, + ACTIONS(10302), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193992] = 2, - ACTIONS(10170), 1, - anon_sym_RPAREN, + [197659] = 2, + ACTIONS(8102), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194000] = 2, - ACTIONS(10172), 1, + [197667] = 2, + ACTIONS(10304), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194008] = 2, - ACTIONS(10174), 1, - sym_identifier, + [197675] = 2, + ACTIONS(10306), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194016] = 2, - ACTIONS(10176), 1, - anon_sym_RBRACE, + [197683] = 2, + ACTIONS(10308), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194024] = 2, - ACTIONS(10178), 1, - anon_sym_COLON_EQ, + [197691] = 2, + ACTIONS(8080), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194032] = 2, - ACTIONS(10180), 1, - sym_identifier, + [197699] = 2, + ACTIONS(5405), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194040] = 2, - ACTIONS(10182), 1, - sym_identifier, + [197707] = 2, + ACTIONS(7718), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194048] = 2, - ACTIONS(10184), 1, + [197715] = 2, + ACTIONS(10310), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194056] = 2, - ACTIONS(8016), 1, - anon_sym_RPAREN, + [197723] = 2, + ACTIONS(10312), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194064] = 2, - ACTIONS(10186), 1, - anon_sym_RPAREN, + [197731] = 2, + ACTIONS(10314), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194072] = 2, - ACTIONS(10188), 1, - anon_sym_RPAREN, + [197739] = 2, + ACTIONS(10316), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194080] = 2, - ACTIONS(10190), 1, + [197747] = 2, + ACTIONS(10318), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194088] = 2, - ACTIONS(10192), 1, - anon_sym_RBRACE, + [197755] = 2, + ACTIONS(10320), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194096] = 2, - ACTIONS(6290), 1, - anon_sym_RPAREN, + [197763] = 2, + ACTIONS(9183), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194104] = 2, - ACTIONS(10194), 1, - anon_sym_RBRACK, + [197771] = 2, + ACTIONS(10322), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194112] = 2, - ACTIONS(10196), 1, - anon_sym_GT, + [197779] = 2, + ACTIONS(10324), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194120] = 2, - ACTIONS(6958), 1, - anon_sym_RBRACE, + [197787] = 2, + ACTIONS(10326), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194128] = 2, - ACTIONS(10198), 1, + [197795] = 2, + ACTIONS(10328), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194136] = 2, - ACTIONS(10200), 1, - anon_sym_RPAREN, + [197803] = 2, + ACTIONS(10330), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194144] = 2, - ACTIONS(10202), 1, - sym_identifier, + [197811] = 2, + ACTIONS(10332), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194152] = 2, - ACTIONS(10204), 1, - anon_sym_RBRACE, + [197819] = 2, + ACTIONS(7404), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194160] = 2, - ACTIONS(9334), 1, - anon_sym_in, + [197827] = 2, + ACTIONS(10334), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194168] = 2, - ACTIONS(9093), 1, - anon_sym_in, + [197835] = 2, + ACTIONS(10336), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194176] = 2, - ACTIONS(5275), 1, + [197843] = 2, + ACTIONS(5399), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194184] = 2, - ACTIONS(10206), 1, - anon_sym_RBRACE, + [197851] = 2, + ACTIONS(5909), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194192] = 2, - ACTIONS(10208), 1, - anon_sym_RBRACE, + [197859] = 2, + ACTIONS(10338), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194200] = 2, - ACTIONS(7113), 1, - anon_sym_COLON, + [197867] = 2, + ACTIONS(7379), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194208] = 2, - ACTIONS(10210), 1, + [197875] = 2, + ACTIONS(10340), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194216] = 2, - ACTIONS(10212), 1, - sym_identifier, + [197883] = 2, + ACTIONS(10342), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194224] = 2, - ACTIONS(10214), 1, + [197891] = 2, + ACTIONS(10344), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194232] = 2, - ACTIONS(10216), 1, - anon_sym_COLON, + [197899] = 2, + ACTIONS(10346), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194240] = 2, - ACTIONS(10218), 1, - anon_sym_COLON, + [197907] = 2, + ACTIONS(10348), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194248] = 2, - ACTIONS(10220), 1, - sym_identifier, + [197915] = 2, + ACTIONS(10350), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194256] = 2, - ACTIONS(10222), 1, - anon_sym_RPAREN, + [197923] = 2, + ACTIONS(10352), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194264] = 2, - ACTIONS(10224), 1, - anon_sym_GT, + [197931] = 2, + ACTIONS(10354), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194272] = 2, - ACTIONS(10226), 1, - anon_sym_RBRACK, + [197939] = 2, + ACTIONS(10356), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194280] = 2, - ACTIONS(10228), 1, - anon_sym_COLON, + [197947] = 2, + ACTIONS(10358), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194288] = 2, - ACTIONS(10230), 1, + [197955] = 2, + ACTIONS(10360), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194296] = 2, - ACTIONS(10232), 1, + [197963] = 2, + ACTIONS(10362), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194304] = 2, - ACTIONS(10234), 1, - anon_sym_import, + [197971] = 2, + ACTIONS(10364), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194312] = 2, - ACTIONS(10236), 1, - anon_sym_RPAREN, + [197979] = 2, + ACTIONS(10366), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194320] = 2, - ACTIONS(10238), 1, - anon_sym_RBRACK, + [197987] = 2, + ACTIONS(10368), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194328] = 2, - ACTIONS(10240), 1, + [197995] = 2, + ACTIONS(10370), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194336] = 2, - ACTIONS(10242), 1, + [198003] = 2, + ACTIONS(10372), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194344] = 2, - ACTIONS(9006), 1, - anon_sym_LPAREN, + [198011] = 2, + ACTIONS(10374), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194352] = 2, - ACTIONS(6538), 1, - sym_identifier, + [198019] = 2, + ACTIONS(10376), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194360] = 2, - ACTIONS(9223), 1, - anon_sym_LPAREN, + [198027] = 2, + ACTIONS(10378), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194368] = 2, - ACTIONS(10244), 1, + [198035] = 2, + ACTIONS(10380), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194376] = 2, - ACTIONS(10246), 1, + [198043] = 2, + ACTIONS(10382), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194384] = 2, - ACTIONS(10248), 1, + [198051] = 2, + ACTIONS(10384), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194392] = 2, - ACTIONS(10250), 1, - anon_sym_COLON, + [198059] = 2, + ACTIONS(10386), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194400] = 2, - ACTIONS(10252), 1, + [198067] = 2, + ACTIONS(1587), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194408] = 2, - ACTIONS(10254), 1, + [198075] = 2, + ACTIONS(10388), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194416] = 2, - ACTIONS(10256), 1, + [198083] = 2, + ACTIONS(10390), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194424] = 2, - ACTIONS(10258), 1, - sym_identifier, + [198091] = 2, + ACTIONS(10392), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194432] = 2, - ACTIONS(5303), 1, - sym__dedent, + [198099] = 2, + ACTIONS(10394), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194440] = 2, - ACTIONS(10260), 1, - sym_identifier, + [198107] = 2, + ACTIONS(10396), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194448] = 2, - ACTIONS(5803), 1, - anon_sym_COLON, + [198115] = 2, + ACTIONS(10398), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194456] = 2, - ACTIONS(10262), 1, + [198123] = 2, + ACTIONS(10400), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194464] = 2, - ACTIONS(10264), 1, - anon_sym_RBRACE, + [198131] = 2, + ACTIONS(10402), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194472] = 2, - ACTIONS(10266), 1, - sym_identifier, + [198139] = 2, + ACTIONS(10404), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194480] = 2, - ACTIONS(10268), 1, - anon_sym_GT, + [198147] = 2, + ACTIONS(10406), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194488] = 2, - ACTIONS(7804), 1, - anon_sym_RBRACK, + [198155] = 2, + ACTIONS(10408), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194496] = 2, - ACTIONS(6415), 1, - anon_sym_RPAREN, + [198163] = 2, + ACTIONS(7361), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194504] = 2, - ACTIONS(10270), 1, - anon_sym_COLON, + [198171] = 2, + ACTIONS(9199), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194512] = 2, - ACTIONS(10272), 1, - anon_sym_RBRACE, + [198179] = 2, + ACTIONS(7892), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194520] = 2, - ACTIONS(10274), 1, + [198187] = 2, + ACTIONS(10410), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194528] = 2, - ACTIONS(10276), 1, - sym__indent, + [198195] = 2, + ACTIONS(10412), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194536] = 2, - ACTIONS(10278), 1, + [198203] = 2, + ACTIONS(10414), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194544] = 2, - ACTIONS(10280), 1, + [198211] = 2, + ACTIONS(10416), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194552] = 2, - ACTIONS(10282), 1, + [198219] = 2, + ACTIONS(10418), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194560] = 2, - ACTIONS(10284), 1, + [198227] = 2, + ACTIONS(10420), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194568] = 2, - ACTIONS(10286), 1, - anon_sym_RBRACE, + [198235] = 2, + ACTIONS(7408), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194576] = 2, - ACTIONS(10288), 1, + [198243] = 2, + ACTIONS(10422), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194584] = 2, - ACTIONS(10290), 1, + [198251] = 2, + ACTIONS(10424), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194592] = 2, - ACTIONS(10292), 1, - sym_identifier, + [198259] = 2, + ACTIONS(8659), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194600] = 2, - ACTIONS(10294), 1, + [198267] = 2, + ACTIONS(10426), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194608] = 2, - ACTIONS(7727), 1, - anon_sym_RPAREN, + [198275] = 2, + ACTIONS(8954), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194616] = 2, - ACTIONS(10296), 1, - anon_sym_RBRACE, + [198283] = 2, + ACTIONS(10428), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194624] = 2, - ACTIONS(10298), 1, - anon_sym_GT, + [198291] = 2, + ACTIONS(7338), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194632] = 2, - ACTIONS(10300), 1, + [198299] = 2, + ACTIONS(10430), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194640] = 2, - ACTIONS(10302), 1, + [198307] = 2, + ACTIONS(10432), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194648] = 2, - ACTIONS(7926), 1, - anon_sym_RPAREN, + [198315] = 2, + ACTIONS(10434), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194656] = 2, - ACTIONS(10304), 1, + [198323] = 2, + ACTIONS(10436), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194664] = 2, - ACTIONS(9105), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [194672] = 2, - ACTIONS(10306), 1, + [198331] = 2, + ACTIONS(10438), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194680] = 2, - ACTIONS(10308), 1, + [198339] = 2, + ACTIONS(10440), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194688] = 2, - ACTIONS(10310), 1, + [198347] = 2, + ACTIONS(10442), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194696] = 2, - ACTIONS(3784), 1, - anon_sym_def, + [198355] = 2, + ACTIONS(1583), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194704] = 2, - ACTIONS(10312), 1, - anon_sym_for, + [198363] = 2, + ACTIONS(3860), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194712] = 2, - ACTIONS(7119), 1, - anon_sym_COLON, + [198371] = 2, + ACTIONS(10444), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194720] = 2, - ACTIONS(10314), 1, - anon_sym_RPAREN, + [198379] = 2, + ACTIONS(10446), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194728] = 2, - ACTIONS(10316), 1, - anon_sym_COLON, + [198387] = 2, + ACTIONS(10448), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194736] = 2, - ACTIONS(10318), 1, + [198395] = 2, + ACTIONS(10450), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194744] = 2, - ACTIONS(10320), 1, + [198403] = 2, + ACTIONS(10452), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194752] = 2, - ACTIONS(10322), 1, + [198411] = 2, + ACTIONS(10454), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194760] = 2, - ACTIONS(10324), 1, - anon_sym_LPAREN, + [198419] = 2, + ACTIONS(10456), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194768] = 2, - ACTIONS(10326), 1, - anon_sym_RPAREN, + [198427] = 2, + ACTIONS(10458), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194776] = 2, - ACTIONS(10328), 1, - anon_sym_RBRACK, + [198435] = 2, + ACTIONS(10460), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194784] = 2, - ACTIONS(10330), 1, - anon_sym_COLON_EQ, + [198443] = 2, + ACTIONS(7385), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194792] = 2, - ACTIONS(10332), 1, - anon_sym_COLON_EQ, + [198451] = 2, + ACTIONS(10462), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194800] = 2, - ACTIONS(10334), 1, - anon_sym_COLON, + [198459] = 2, + ACTIONS(10464), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194808] = 2, - ACTIONS(10336), 1, - anon_sym_RBRACK, + [198467] = 2, + ACTIONS(8671), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194816] = 2, - ACTIONS(10338), 1, - anon_sym_COLON, + [198475] = 2, + ACTIONS(10466), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194824] = 2, - ACTIONS(10340), 1, - anon_sym_COLON_EQ, + [198483] = 2, + ACTIONS(10468), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194832] = 2, - ACTIONS(10342), 1, + [198491] = 2, + ACTIONS(10470), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194840] = 2, - ACTIONS(10344), 1, - anon_sym_COLON_EQ, + [198499] = 2, + ACTIONS(10472), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194848] = 2, - ACTIONS(10346), 1, - sym_identifier, + [198507] = 2, + ACTIONS(7090), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194856] = 2, - ACTIONS(10348), 1, + [198515] = 2, + ACTIONS(7336), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194864] = 2, - ACTIONS(10350), 1, + [198523] = 2, + ACTIONS(10474), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [198531] = 2, + ACTIONS(10476), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194872] = 2, - ACTIONS(10352), 1, + [198539] = 2, + ACTIONS(10478), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194880] = 2, - ACTIONS(10354), 1, + [198547] = 2, + ACTIONS(10480), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194888] = 2, - ACTIONS(10356), 1, - anon_sym_COLON_EQ, + [198555] = 2, + ACTIONS(10482), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194896] = 2, - ACTIONS(10358), 1, + [198563] = 2, + ACTIONS(10484), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194904] = 2, - ACTIONS(10360), 1, + [198571] = 2, + ACTIONS(10486), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194912] = 2, - ACTIONS(8026), 1, - anon_sym_RPAREN, + [198579] = 2, + ACTIONS(10488), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194920] = 2, - ACTIONS(10362), 1, + [198587] = 2, + ACTIONS(10490), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194928] = 2, - ACTIONS(10364), 1, - anon_sym_COLON, + [198595] = 2, + ACTIONS(10492), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1063)] = 0, - [SMALL_STATE(1064)] = 119, - [SMALL_STATE(1065)] = 190, - [SMALL_STATE(1066)] = 265, - [SMALL_STATE(1067)] = 338, - [SMALL_STATE(1068)] = 457, - [SMALL_STATE(1069)] = 528, - [SMALL_STATE(1070)] = 647, - [SMALL_STATE(1071)] = 766, - [SMALL_STATE(1072)] = 837, - [SMALL_STATE(1073)] = 956, - [SMALL_STATE(1074)] = 1029, - [SMALL_STATE(1075)] = 1104, - [SMALL_STATE(1076)] = 1179, - [SMALL_STATE(1077)] = 1250, - [SMALL_STATE(1078)] = 1369, - [SMALL_STATE(1079)] = 1480, - [SMALL_STATE(1080)] = 1599, - [SMALL_STATE(1081)] = 1672, - [SMALL_STATE(1082)] = 1747, - [SMALL_STATE(1083)] = 1856, - [SMALL_STATE(1084)] = 1931, - [SMALL_STATE(1085)] = 2050, - [SMALL_STATE(1086)] = 2125, - [SMALL_STATE(1087)] = 2244, - [SMALL_STATE(1088)] = 2363, - [SMALL_STATE(1089)] = 2482, - [SMALL_STATE(1090)] = 2553, - [SMALL_STATE(1091)] = 2674, - [SMALL_STATE(1092)] = 2749, - [SMALL_STATE(1093)] = 2824, - [SMALL_STATE(1094)] = 2945, - [SMALL_STATE(1095)] = 3064, - [SMALL_STATE(1096)] = 3183, - [SMALL_STATE(1097)] = 3302, - [SMALL_STATE(1098)] = 3421, - [SMALL_STATE(1099)] = 3530, - [SMALL_STATE(1100)] = 3649, - [SMALL_STATE(1101)] = 3768, - [SMALL_STATE(1102)] = 3887, - [SMALL_STATE(1103)] = 3962, - [SMALL_STATE(1104)] = 4035, - [SMALL_STATE(1105)] = 4146, - [SMALL_STATE(1106)] = 4221, - [SMALL_STATE(1107)] = 4296, - [SMALL_STATE(1108)] = 4369, - [SMALL_STATE(1109)] = 4442, - [SMALL_STATE(1110)] = 4513, - [SMALL_STATE(1111)] = 4634, - [SMALL_STATE(1112)] = 4705, - [SMALL_STATE(1113)] = 4780, - [SMALL_STATE(1114)] = 4855, - [SMALL_STATE(1115)] = 4930, - [SMALL_STATE(1116)] = 5049, - [SMALL_STATE(1117)] = 5168, - [SMALL_STATE(1118)] = 5287, - [SMALL_STATE(1119)] = 5362, - [SMALL_STATE(1120)] = 5483, - [SMALL_STATE(1121)] = 5602, - [SMALL_STATE(1122)] = 5675, - [SMALL_STATE(1123)] = 5794, - [SMALL_STATE(1124)] = 5869, - [SMALL_STATE(1125)] = 5944, - [SMALL_STATE(1126)] = 6019, - [SMALL_STATE(1127)] = 6138, - [SMALL_STATE(1128)] = 6257, - [SMALL_STATE(1129)] = 6328, - [SMALL_STATE(1130)] = 6449, - [SMALL_STATE(1131)] = 6524, - [SMALL_STATE(1132)] = 6599, - [SMALL_STATE(1133)] = 6718, - [SMALL_STATE(1134)] = 6839, - [SMALL_STATE(1135)] = 6958, - [SMALL_STATE(1136)] = 7079, - [SMALL_STATE(1137)] = 7154, - [SMALL_STATE(1138)] = 7273, - [SMALL_STATE(1139)] = 7346, - [SMALL_STATE(1140)] = 7467, - [SMALL_STATE(1141)] = 7588, - [SMALL_STATE(1142)] = 7709, - [SMALL_STATE(1143)] = 7830, - [SMALL_STATE(1144)] = 7951, - [SMALL_STATE(1145)] = 8072, - [SMALL_STATE(1146)] = 8193, - [SMALL_STATE(1147)] = 8314, - [SMALL_STATE(1148)] = 8435, - [SMALL_STATE(1149)] = 8556, - [SMALL_STATE(1150)] = 8677, - [SMALL_STATE(1151)] = 8798, - [SMALL_STATE(1152)] = 8873, - [SMALL_STATE(1153)] = 8994, - [SMALL_STATE(1154)] = 9113, - [SMALL_STATE(1155)] = 9234, - [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)] = 9883, - [SMALL_STATE(1163)] = 9953, - [SMALL_STATE(1164)] = 10023, - [SMALL_STATE(1165)] = 10093, - [SMALL_STATE(1166)] = 10163, - [SMALL_STATE(1167)] = 10233, - [SMALL_STATE(1168)] = 10351, - [SMALL_STATE(1169)] = 10421, - [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)] = 11191, - [SMALL_STATE(1181)] = 11261, - [SMALL_STATE(1182)] = 11331, - [SMALL_STATE(1183)] = 11401, - [SMALL_STATE(1184)] = 11471, - [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)] = 12757, - [SMALL_STATE(1202)] = 12827, - [SMALL_STATE(1203)] = 12897, - [SMALL_STATE(1204)] = 12967, - [SMALL_STATE(1205)] = 13037, - [SMALL_STATE(1206)] = 13107, - [SMALL_STATE(1207)] = 13177, - [SMALL_STATE(1208)] = 13295, - [SMALL_STATE(1209)] = 13365, - [SMALL_STATE(1210)] = 13435, - [SMALL_STATE(1211)] = 13505, - [SMALL_STATE(1212)] = 13575, - [SMALL_STATE(1213)] = 13645, - [SMALL_STATE(1214)] = 13715, - [SMALL_STATE(1215)] = 13785, - [SMALL_STATE(1216)] = 13855, - [SMALL_STATE(1217)] = 13925, - [SMALL_STATE(1218)] = 13995, - [SMALL_STATE(1219)] = 14065, - [SMALL_STATE(1220)] = 14135, - [SMALL_STATE(1221)] = 14205, - [SMALL_STATE(1222)] = 14275, - [SMALL_STATE(1223)] = 14345, - [SMALL_STATE(1224)] = 14415, - [SMALL_STATE(1225)] = 14485, - [SMALL_STATE(1226)] = 14555, - [SMALL_STATE(1227)] = 14625, - [SMALL_STATE(1228)] = 14695, - [SMALL_STATE(1229)] = 14765, - [SMALL_STATE(1230)] = 14835, - [SMALL_STATE(1231)] = 14905, - [SMALL_STATE(1232)] = 14975, - [SMALL_STATE(1233)] = 15045, - [SMALL_STATE(1234)] = 15115, - [SMALL_STATE(1235)] = 15185, - [SMALL_STATE(1236)] = 15255, - [SMALL_STATE(1237)] = 15325, - [SMALL_STATE(1238)] = 15395, - [SMALL_STATE(1239)] = 15465, - [SMALL_STATE(1240)] = 15583, - [SMALL_STATE(1241)] = 15653, - [SMALL_STATE(1242)] = 15723, - [SMALL_STATE(1243)] = 15793, - [SMALL_STATE(1244)] = 15863, - [SMALL_STATE(1245)] = 15933, - [SMALL_STATE(1246)] = 16003, - [SMALL_STATE(1247)] = 16073, - [SMALL_STATE(1248)] = 16191, - [SMALL_STATE(1249)] = 16261, - [SMALL_STATE(1250)] = 16331, - [SMALL_STATE(1251)] = 16401, - [SMALL_STATE(1252)] = 16471, - [SMALL_STATE(1253)] = 16541, - [SMALL_STATE(1254)] = 16611, - [SMALL_STATE(1255)] = 16681, - [SMALL_STATE(1256)] = 16751, - [SMALL_STATE(1257)] = 16821, - [SMALL_STATE(1258)] = 16891, - [SMALL_STATE(1259)] = 16961, - [SMALL_STATE(1260)] = 17031, - [SMALL_STATE(1261)] = 17101, - [SMALL_STATE(1262)] = 17171, - [SMALL_STATE(1263)] = 17241, - [SMALL_STATE(1264)] = 17311, - [SMALL_STATE(1265)] = 17381, - [SMALL_STATE(1266)] = 17451, - [SMALL_STATE(1267)] = 17521, - [SMALL_STATE(1268)] = 17591, - [SMALL_STATE(1269)] = 17661, - [SMALL_STATE(1270)] = 17731, - [SMALL_STATE(1271)] = 17801, - [SMALL_STATE(1272)] = 17871, - [SMALL_STATE(1273)] = 17941, - [SMALL_STATE(1274)] = 18011, - [SMALL_STATE(1275)] = 18081, - [SMALL_STATE(1276)] = 18191, - [SMALL_STATE(1277)] = 18261, - [SMALL_STATE(1278)] = 18331, - [SMALL_STATE(1279)] = 18401, - [SMALL_STATE(1280)] = 18471, - [SMALL_STATE(1281)] = 18541, - [SMALL_STATE(1282)] = 18611, - [SMALL_STATE(1283)] = 18681, - [SMALL_STATE(1284)] = 18751, - [SMALL_STATE(1285)] = 18821, - [SMALL_STATE(1286)] = 18891, - [SMALL_STATE(1287)] = 18961, - [SMALL_STATE(1288)] = 19031, - [SMALL_STATE(1289)] = 19101, - [SMALL_STATE(1290)] = 19171, - [SMALL_STATE(1291)] = 19241, - [SMALL_STATE(1292)] = 19311, - [SMALL_STATE(1293)] = 19381, - [SMALL_STATE(1294)] = 19451, - [SMALL_STATE(1295)] = 19521, - [SMALL_STATE(1296)] = 19639, - [SMALL_STATE(1297)] = 19709, - [SMALL_STATE(1298)] = 19779, - [SMALL_STATE(1299)] = 19849, - [SMALL_STATE(1300)] = 19919, - [SMALL_STATE(1301)] = 19989, - [SMALL_STATE(1302)] = 20059, - [SMALL_STATE(1303)] = 20177, - [SMALL_STATE(1304)] = 20247, - [SMALL_STATE(1305)] = 20357, - [SMALL_STATE(1306)] = 20427, - [SMALL_STATE(1307)] = 20497, - [SMALL_STATE(1308)] = 20567, - [SMALL_STATE(1309)] = 20637, - [SMALL_STATE(1310)] = 20707, - [SMALL_STATE(1311)] = 20777, - [SMALL_STATE(1312)] = 20847, - [SMALL_STATE(1313)] = 20917, - [SMALL_STATE(1314)] = 20987, - [SMALL_STATE(1315)] = 21057, - [SMALL_STATE(1316)] = 21127, - [SMALL_STATE(1317)] = 21197, - [SMALL_STATE(1318)] = 21267, - [SMALL_STATE(1319)] = 21387, - [SMALL_STATE(1320)] = 21457, - [SMALL_STATE(1321)] = 21527, - [SMALL_STATE(1322)] = 21597, - [SMALL_STATE(1323)] = 21667, - [SMALL_STATE(1324)] = 21737, - [SMALL_STATE(1325)] = 21807, - [SMALL_STATE(1326)] = 21877, - [SMALL_STATE(1327)] = 21947, - [SMALL_STATE(1328)] = 22017, - [SMALL_STATE(1329)] = 22087, - [SMALL_STATE(1330)] = 22157, - [SMALL_STATE(1331)] = 22227, - [SMALL_STATE(1332)] = 22297, - [SMALL_STATE(1333)] = 22367, - [SMALL_STATE(1334)] = 22437, - [SMALL_STATE(1335)] = 22555, - [SMALL_STATE(1336)] = 22625, - [SMALL_STATE(1337)] = 22695, - [SMALL_STATE(1338)] = 22765, - [SMALL_STATE(1339)] = 22883, - [SMALL_STATE(1340)] = 22953, - [SMALL_STATE(1341)] = 23071, - [SMALL_STATE(1342)] = 23141, - [SMALL_STATE(1343)] = 23259, - [SMALL_STATE(1344)] = 23329, - [SMALL_STATE(1345)] = 23399, - [SMALL_STATE(1346)] = 23469, - [SMALL_STATE(1347)] = 23539, - [SMALL_STATE(1348)] = 23609, - [SMALL_STATE(1349)] = 23679, - [SMALL_STATE(1350)] = 23749, - [SMALL_STATE(1351)] = 23819, - [SMALL_STATE(1352)] = 23889, - [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)] = 24381, - [SMALL_STATE(1360)] = 24451, - [SMALL_STATE(1361)] = 24521, - [SMALL_STATE(1362)] = 24591, - [SMALL_STATE(1363)] = 24709, - [SMALL_STATE(1364)] = 24779, - [SMALL_STATE(1365)] = 24849, - [SMALL_STATE(1366)] = 24919, - [SMALL_STATE(1367)] = 25037, - [SMALL_STATE(1368)] = 25107, - [SMALL_STATE(1369)] = 25177, - [SMALL_STATE(1370)] = 25247, - [SMALL_STATE(1371)] = 25317, - [SMALL_STATE(1372)] = 25387, - [SMALL_STATE(1373)] = 25457, - [SMALL_STATE(1374)] = 25527, - [SMALL_STATE(1375)] = 25597, - [SMALL_STATE(1376)] = 25667, - [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)] = 26459, - [SMALL_STATE(1387)] = 26528, - [SMALL_STATE(1388)] = 26597, - [SMALL_STATE(1389)] = 26666, - [SMALL_STATE(1390)] = 26781, - [SMALL_STATE(1391)] = 26850, - [SMALL_STATE(1392)] = 26919, - [SMALL_STATE(1393)] = 26988, - [SMALL_STATE(1394)] = 27057, - [SMALL_STATE(1395)] = 27172, - [SMALL_STATE(1396)] = 27241, - [SMALL_STATE(1397)] = 27356, - [SMALL_STATE(1398)] = 27471, - [SMALL_STATE(1399)] = 27540, - [SMALL_STATE(1400)] = 27609, - [SMALL_STATE(1401)] = 27724, - [SMALL_STATE(1402)] = 27839, - [SMALL_STATE(1403)] = 27908, - [SMALL_STATE(1404)] = 27977, - [SMALL_STATE(1405)] = 28046, - [SMALL_STATE(1406)] = 28161, - [SMALL_STATE(1407)] = 28230, - [SMALL_STATE(1408)] = 28345, - [SMALL_STATE(1409)] = 28460, - [SMALL_STATE(1410)] = 28575, - [SMALL_STATE(1411)] = 28644, - [SMALL_STATE(1412)] = 28759, - [SMALL_STATE(1413)] = 28828, - [SMALL_STATE(1414)] = 28943, - [SMALL_STATE(1415)] = 29012, - [SMALL_STATE(1416)] = 29081, - [SMALL_STATE(1417)] = 29150, - [SMALL_STATE(1418)] = 29219, - [SMALL_STATE(1419)] = 29288, - [SMALL_STATE(1420)] = 29397, - [SMALL_STATE(1421)] = 29512, - [SMALL_STATE(1422)] = 29581, - [SMALL_STATE(1423)] = 29696, - [SMALL_STATE(1424)] = 29811, - [SMALL_STATE(1425)] = 29880, - [SMALL_STATE(1426)] = 29995, - [SMALL_STATE(1427)] = 30110, - [SMALL_STATE(1428)] = 30225, - [SMALL_STATE(1429)] = 30340, - [SMALL_STATE(1430)] = 30455, - [SMALL_STATE(1431)] = 30524, - [SMALL_STATE(1432)] = 30593, - [SMALL_STATE(1433)] = 30662, - [SMALL_STATE(1434)] = 30777, - [SMALL_STATE(1435)] = 30892, - [SMALL_STATE(1436)] = 31007, - [SMALL_STATE(1437)] = 31122, - [SMALL_STATE(1438)] = 31191, - [SMALL_STATE(1439)] = 31306, - [SMALL_STATE(1440)] = 31421, - [SMALL_STATE(1441)] = 31490, - [SMALL_STATE(1442)] = 31559, - [SMALL_STATE(1443)] = 31674, - [SMALL_STATE(1444)] = 31783, - [SMALL_STATE(1445)] = 31898, - [SMALL_STATE(1446)] = 32013, - [SMALL_STATE(1447)] = 32082, - [SMALL_STATE(1448)] = 32151, - [SMALL_STATE(1449)] = 32266, - [SMALL_STATE(1450)] = 32335, - [SMALL_STATE(1451)] = 32404, - [SMALL_STATE(1452)] = 32473, - [SMALL_STATE(1453)] = 32588, - [SMALL_STATE(1454)] = 32703, - [SMALL_STATE(1455)] = 32772, - [SMALL_STATE(1456)] = 32841, - [SMALL_STATE(1457)] = 32956, - [SMALL_STATE(1458)] = 33071, - [SMALL_STATE(1459)] = 33186, - [SMALL_STATE(1460)] = 33301, - [SMALL_STATE(1461)] = 33416, - [SMALL_STATE(1462)] = 33531, - [SMALL_STATE(1463)] = 33646, - [SMALL_STATE(1464)] = 33761, - [SMALL_STATE(1465)] = 33876, - [SMALL_STATE(1466)] = 33991, - [SMALL_STATE(1467)] = 34106, - [SMALL_STATE(1468)] = 34221, - [SMALL_STATE(1469)] = 34336, - [SMALL_STATE(1470)] = 34451, - [SMALL_STATE(1471)] = 34566, - [SMALL_STATE(1472)] = 34681, - [SMALL_STATE(1473)] = 34796, - [SMALL_STATE(1474)] = 34911, - [SMALL_STATE(1475)] = 35026, - [SMALL_STATE(1476)] = 35141, - [SMALL_STATE(1477)] = 35256, - [SMALL_STATE(1478)] = 35371, - [SMALL_STATE(1479)] = 35486, - [SMALL_STATE(1480)] = 35601, - [SMALL_STATE(1481)] = 35716, - [SMALL_STATE(1482)] = 35831, - [SMALL_STATE(1483)] = 35946, - [SMALL_STATE(1484)] = 36061, - [SMALL_STATE(1485)] = 36176, - [SMALL_STATE(1486)] = 36291, - [SMALL_STATE(1487)] = 36406, - [SMALL_STATE(1488)] = 36521, - [SMALL_STATE(1489)] = 36636, - [SMALL_STATE(1490)] = 36751, - [SMALL_STATE(1491)] = 36866, - [SMALL_STATE(1492)] = 36981, - [SMALL_STATE(1493)] = 37096, - [SMALL_STATE(1494)] = 37211, - [SMALL_STATE(1495)] = 37326, - [SMALL_STATE(1496)] = 37441, - [SMALL_STATE(1497)] = 37556, - [SMALL_STATE(1498)] = 37671, - [SMALL_STATE(1499)] = 37786, - [SMALL_STATE(1500)] = 37901, - [SMALL_STATE(1501)] = 38016, - [SMALL_STATE(1502)] = 38131, - [SMALL_STATE(1503)] = 38246, - [SMALL_STATE(1504)] = 38361, - [SMALL_STATE(1505)] = 38476, - [SMALL_STATE(1506)] = 38591, - [SMALL_STATE(1507)] = 38706, - [SMALL_STATE(1508)] = 38821, - [SMALL_STATE(1509)] = 38936, - [SMALL_STATE(1510)] = 39005, - [SMALL_STATE(1511)] = 39120, - [SMALL_STATE(1512)] = 39235, - [SMALL_STATE(1513)] = 39352, - [SMALL_STATE(1514)] = 39421, - [SMALL_STATE(1515)] = 39490, - [SMALL_STATE(1516)] = 39559, - [SMALL_STATE(1517)] = 39628, - [SMALL_STATE(1518)] = 39697, - [SMALL_STATE(1519)] = 39766, - [SMALL_STATE(1520)] = 39881, - [SMALL_STATE(1521)] = 39996, - [SMALL_STATE(1522)] = 40111, - [SMALL_STATE(1523)] = 40180, - [SMALL_STATE(1524)] = 40295, - [SMALL_STATE(1525)] = 40364, - [SMALL_STATE(1526)] = 40479, - [SMALL_STATE(1527)] = 40594, - [SMALL_STATE(1528)] = 40663, - [SMALL_STATE(1529)] = 40732, - [SMALL_STATE(1530)] = 40801, - [SMALL_STATE(1531)] = 40870, - [SMALL_STATE(1532)] = 40939, - [SMALL_STATE(1533)] = 41008, - [SMALL_STATE(1534)] = 41077, - [SMALL_STATE(1535)] = 41146, - [SMALL_STATE(1536)] = 41215, - [SMALL_STATE(1537)] = 41284, - [SMALL_STATE(1538)] = 41353, - [SMALL_STATE(1539)] = 41468, - [SMALL_STATE(1540)] = 41537, - [SMALL_STATE(1541)] = 41606, - [SMALL_STATE(1542)] = 41675, - [SMALL_STATE(1543)] = 41790, - [SMALL_STATE(1544)] = 41905, - [SMALL_STATE(1545)] = 42020, - [SMALL_STATE(1546)] = 42089, - [SMALL_STATE(1547)] = 42158, - [SMALL_STATE(1548)] = 42227, - [SMALL_STATE(1549)] = 42342, - [SMALL_STATE(1550)] = 42411, - [SMALL_STATE(1551)] = 42480, - [SMALL_STATE(1552)] = 42549, - [SMALL_STATE(1553)] = 42618, - [SMALL_STATE(1554)] = 42733, - [SMALL_STATE(1555)] = 42848, - [SMALL_STATE(1556)] = 42963, - [SMALL_STATE(1557)] = 43078, - [SMALL_STATE(1558)] = 43147, - [SMALL_STATE(1559)] = 43216, - [SMALL_STATE(1560)] = 43331, - [SMALL_STATE(1561)] = 43400, - [SMALL_STATE(1562)] = 43469, - [SMALL_STATE(1563)] = 43538, - [SMALL_STATE(1564)] = 43653, - [SMALL_STATE(1565)] = 43722, - [SMALL_STATE(1566)] = 43791, - [SMALL_STATE(1567)] = 43860, - [SMALL_STATE(1568)] = 43975, - [SMALL_STATE(1569)] = 44044, - [SMALL_STATE(1570)] = 44159, - [SMALL_STATE(1571)] = 44274, - [SMALL_STATE(1572)] = 44389, - [SMALL_STATE(1573)] = 44504, - [SMALL_STATE(1574)] = 44619, - [SMALL_STATE(1575)] = 44734, - [SMALL_STATE(1576)] = 44803, - [SMALL_STATE(1577)] = 44918, - [SMALL_STATE(1578)] = 45033, - [SMALL_STATE(1579)] = 45102, - [SMALL_STATE(1580)] = 45171, - [SMALL_STATE(1581)] = 45240, - [SMALL_STATE(1582)] = 45355, - [SMALL_STATE(1583)] = 45424, - [SMALL_STATE(1584)] = 45539, - [SMALL_STATE(1585)] = 45608, - [SMALL_STATE(1586)] = 45723, - [SMALL_STATE(1587)] = 45838, - [SMALL_STATE(1588)] = 45907, - [SMALL_STATE(1589)] = 46022, - [SMALL_STATE(1590)] = 46137, - [SMALL_STATE(1591)] = 46252, - [SMALL_STATE(1592)] = 46367, - [SMALL_STATE(1593)] = 46482, - [SMALL_STATE(1594)] = 46551, - [SMALL_STATE(1595)] = 46666, - [SMALL_STATE(1596)] = 46781, - [SMALL_STATE(1597)] = 46896, - [SMALL_STATE(1598)] = 47011, - [SMALL_STATE(1599)] = 47126, - [SMALL_STATE(1600)] = 47241, - [SMALL_STATE(1601)] = 47356, - [SMALL_STATE(1602)] = 47471, - [SMALL_STATE(1603)] = 47586, - [SMALL_STATE(1604)] = 47701, - [SMALL_STATE(1605)] = 47816, - [SMALL_STATE(1606)] = 47931, - [SMALL_STATE(1607)] = 48046, - [SMALL_STATE(1608)] = 48115, - [SMALL_STATE(1609)] = 48230, - [SMALL_STATE(1610)] = 48347, - [SMALL_STATE(1611)] = 48416, - [SMALL_STATE(1612)] = 48533, - [SMALL_STATE(1613)] = 48648, - [SMALL_STATE(1614)] = 48763, - [SMALL_STATE(1615)] = 48878, - [SMALL_STATE(1616)] = 48993, - [SMALL_STATE(1617)] = 49108, - [SMALL_STATE(1618)] = 49223, - [SMALL_STATE(1619)] = 49338, - [SMALL_STATE(1620)] = 49453, - [SMALL_STATE(1621)] = 49568, - [SMALL_STATE(1622)] = 49685, - [SMALL_STATE(1623)] = 49800, - [SMALL_STATE(1624)] = 49869, - [SMALL_STATE(1625)] = 49938, - [SMALL_STATE(1626)] = 50053, - [SMALL_STATE(1627)] = 50122, - [SMALL_STATE(1628)] = 50237, - [SMALL_STATE(1629)] = 50352, - [SMALL_STATE(1630)] = 50421, - [SMALL_STATE(1631)] = 50490, - [SMALL_STATE(1632)] = 50605, - [SMALL_STATE(1633)] = 50674, - [SMALL_STATE(1634)] = 50789, - [SMALL_STATE(1635)] = 50904, - [SMALL_STATE(1636)] = 51019, - [SMALL_STATE(1637)] = 51134, - [SMALL_STATE(1638)] = 51249, - [SMALL_STATE(1639)] = 51366, - [SMALL_STATE(1640)] = 51481, - [SMALL_STATE(1641)] = 51596, - [SMALL_STATE(1642)] = 51665, - [SMALL_STATE(1643)] = 51734, - [SMALL_STATE(1644)] = 51849, - [SMALL_STATE(1645)] = 51918, - [SMALL_STATE(1646)] = 52033, - [SMALL_STATE(1647)] = 52102, - [SMALL_STATE(1648)] = 52171, - [SMALL_STATE(1649)] = 52286, - [SMALL_STATE(1650)] = 52355, - [SMALL_STATE(1651)] = 52470, - [SMALL_STATE(1652)] = 52585, - [SMALL_STATE(1653)] = 52700, - [SMALL_STATE(1654)] = 52815, - [SMALL_STATE(1655)] = 52930, - [SMALL_STATE(1656)] = 53045, - [SMALL_STATE(1657)] = 53160, - [SMALL_STATE(1658)] = 53275, - [SMALL_STATE(1659)] = 53390, - [SMALL_STATE(1660)] = 53505, - [SMALL_STATE(1661)] = 53620, - [SMALL_STATE(1662)] = 53735, - [SMALL_STATE(1663)] = 53804, - [SMALL_STATE(1664)] = 53873, - [SMALL_STATE(1665)] = 53942, - [SMALL_STATE(1666)] = 54011, - [SMALL_STATE(1667)] = 54126, - [SMALL_STATE(1668)] = 54241, - [SMALL_STATE(1669)] = 54356, - [SMALL_STATE(1670)] = 54425, - [SMALL_STATE(1671)] = 54540, - [SMALL_STATE(1672)] = 54655, - [SMALL_STATE(1673)] = 54724, - [SMALL_STATE(1674)] = 54841, - [SMALL_STATE(1675)] = 54910, - [SMALL_STATE(1676)] = 55025, - [SMALL_STATE(1677)] = 55094, - [SMALL_STATE(1678)] = 55209, - [SMALL_STATE(1679)] = 55278, - [SMALL_STATE(1680)] = 55393, - [SMALL_STATE(1681)] = 55462, - [SMALL_STATE(1682)] = 55577, - [SMALL_STATE(1683)] = 55692, - [SMALL_STATE(1684)] = 55807, - [SMALL_STATE(1685)] = 55922, - [SMALL_STATE(1686)] = 56037, - [SMALL_STATE(1687)] = 56106, - [SMALL_STATE(1688)] = 56175, - [SMALL_STATE(1689)] = 56244, - [SMALL_STATE(1690)] = 56359, - [SMALL_STATE(1691)] = 56474, - [SMALL_STATE(1692)] = 56589, - [SMALL_STATE(1693)] = 56704, - [SMALL_STATE(1694)] = 56819, - [SMALL_STATE(1695)] = 56934, - [SMALL_STATE(1696)] = 57049, - [SMALL_STATE(1697)] = 57164, - [SMALL_STATE(1698)] = 57279, - [SMALL_STATE(1699)] = 57394, - [SMALL_STATE(1700)] = 57509, - [SMALL_STATE(1701)] = 57624, - [SMALL_STATE(1702)] = 57693, - [SMALL_STATE(1703)] = 57808, - [SMALL_STATE(1704)] = 57877, - [SMALL_STATE(1705)] = 57992, - [SMALL_STATE(1706)] = 58061, - [SMALL_STATE(1707)] = 58130, - [SMALL_STATE(1708)] = 58245, - [SMALL_STATE(1709)] = 58360, - [SMALL_STATE(1710)] = 58429, - [SMALL_STATE(1711)] = 58544, - [SMALL_STATE(1712)] = 58659, - [SMALL_STATE(1713)] = 58774, - [SMALL_STATE(1714)] = 58889, - [SMALL_STATE(1715)] = 59004, - [SMALL_STATE(1716)] = 59119, - [SMALL_STATE(1717)] = 59234, - [SMALL_STATE(1718)] = 59349, - [SMALL_STATE(1719)] = 59464, - [SMALL_STATE(1720)] = 59579, - [SMALL_STATE(1721)] = 59694, - [SMALL_STATE(1722)] = 59809, - [SMALL_STATE(1723)] = 59924, - [SMALL_STATE(1724)] = 60039, - [SMALL_STATE(1725)] = 60154, - [SMALL_STATE(1726)] = 60269, - [SMALL_STATE(1727)] = 60384, - [SMALL_STATE(1728)] = 60499, - [SMALL_STATE(1729)] = 60614, - [SMALL_STATE(1730)] = 60729, - [SMALL_STATE(1731)] = 60844, - [SMALL_STATE(1732)] = 60959, - [SMALL_STATE(1733)] = 61074, - [SMALL_STATE(1734)] = 61143, - [SMALL_STATE(1735)] = 61258, - [SMALL_STATE(1736)] = 61327, - [SMALL_STATE(1737)] = 61442, - [SMALL_STATE(1738)] = 61557, - [SMALL_STATE(1739)] = 61672, - [SMALL_STATE(1740)] = 61787, - [SMALL_STATE(1741)] = 61902, - [SMALL_STATE(1742)] = 62017, - [SMALL_STATE(1743)] = 62132, - [SMALL_STATE(1744)] = 62247, - [SMALL_STATE(1745)] = 62362, - [SMALL_STATE(1746)] = 62477, - [SMALL_STATE(1747)] = 62592, - [SMALL_STATE(1748)] = 62707, - [SMALL_STATE(1749)] = 62822, - [SMALL_STATE(1750)] = 62937, - [SMALL_STATE(1751)] = 63052, - [SMALL_STATE(1752)] = 63167, - [SMALL_STATE(1753)] = 63282, - [SMALL_STATE(1754)] = 63397, - [SMALL_STATE(1755)] = 63512, - [SMALL_STATE(1756)] = 63581, - [SMALL_STATE(1757)] = 63696, - [SMALL_STATE(1758)] = 63765, - [SMALL_STATE(1759)] = 63880, - [SMALL_STATE(1760)] = 63995, - [SMALL_STATE(1761)] = 64110, - [SMALL_STATE(1762)] = 64225, - [SMALL_STATE(1763)] = 64340, - [SMALL_STATE(1764)] = 64455, - [SMALL_STATE(1765)] = 64524, - [SMALL_STATE(1766)] = 64639, - [SMALL_STATE(1767)] = 64708, - [SMALL_STATE(1768)] = 64823, - [SMALL_STATE(1769)] = 64938, - [SMALL_STATE(1770)] = 65053, - [SMALL_STATE(1771)] = 65168, - [SMALL_STATE(1772)] = 65283, - [SMALL_STATE(1773)] = 65398, - [SMALL_STATE(1774)] = 65513, - [SMALL_STATE(1775)] = 65582, - [SMALL_STATE(1776)] = 65697, - [SMALL_STATE(1777)] = 65812, - [SMALL_STATE(1778)] = 65927, - [SMALL_STATE(1779)] = 66042, - [SMALL_STATE(1780)] = 66157, - [SMALL_STATE(1781)] = 66272, - [SMALL_STATE(1782)] = 66387, - [SMALL_STATE(1783)] = 66502, - [SMALL_STATE(1784)] = 66617, - [SMALL_STATE(1785)] = 66732, - [SMALL_STATE(1786)] = 66847, - [SMALL_STATE(1787)] = 66962, - [SMALL_STATE(1788)] = 67031, - [SMALL_STATE(1789)] = 67100, - [SMALL_STATE(1790)] = 67215, - [SMALL_STATE(1791)] = 67330, - [SMALL_STATE(1792)] = 67445, - [SMALL_STATE(1793)] = 67560, - [SMALL_STATE(1794)] = 67675, - [SMALL_STATE(1795)] = 67744, - [SMALL_STATE(1796)] = 67859, - [SMALL_STATE(1797)] = 67928, - [SMALL_STATE(1798)] = 68043, - [SMALL_STATE(1799)] = 68158, - [SMALL_STATE(1800)] = 68273, - [SMALL_STATE(1801)] = 68388, - [SMALL_STATE(1802)] = 68503, - [SMALL_STATE(1803)] = 68618, - [SMALL_STATE(1804)] = 68733, - [SMALL_STATE(1805)] = 68848, - [SMALL_STATE(1806)] = 68963, - [SMALL_STATE(1807)] = 69078, - [SMALL_STATE(1808)] = 69193, - [SMALL_STATE(1809)] = 69308, - [SMALL_STATE(1810)] = 69423, - [SMALL_STATE(1811)] = 69538, - [SMALL_STATE(1812)] = 69653, - [SMALL_STATE(1813)] = 69768, - [SMALL_STATE(1814)] = 69883, - [SMALL_STATE(1815)] = 69998, - [SMALL_STATE(1816)] = 70113, - [SMALL_STATE(1817)] = 70228, - [SMALL_STATE(1818)] = 70343, - [SMALL_STATE(1819)] = 70458, - [SMALL_STATE(1820)] = 70573, - [SMALL_STATE(1821)] = 70688, - [SMALL_STATE(1822)] = 70803, - [SMALL_STATE(1823)] = 70918, - [SMALL_STATE(1824)] = 71033, - [SMALL_STATE(1825)] = 71148, - [SMALL_STATE(1826)] = 71263, - [SMALL_STATE(1827)] = 71378, - [SMALL_STATE(1828)] = 71493, - [SMALL_STATE(1829)] = 71608, - [SMALL_STATE(1830)] = 71677, - [SMALL_STATE(1831)] = 71746, - [SMALL_STATE(1832)] = 71861, - [SMALL_STATE(1833)] = 71976, - [SMALL_STATE(1834)] = 72091, - [SMALL_STATE(1835)] = 72197, - [SMALL_STATE(1836)] = 72303, - [SMALL_STATE(1837)] = 72409, - [SMALL_STATE(1838)] = 72515, - [SMALL_STATE(1839)] = 72617, - [SMALL_STATE(1840)] = 72692, - [SMALL_STATE(1841)] = 72784, - [SMALL_STATE(1842)] = 72851, - [SMALL_STATE(1843)] = 72956, - [SMALL_STATE(1844)] = 73061, - [SMALL_STATE(1845)] = 73128, - [SMALL_STATE(1846)] = 73203, - [SMALL_STATE(1847)] = 73306, - [SMALL_STATE(1848)] = 73383, - [SMALL_STATE(1849)] = 73486, - [SMALL_STATE(1850)] = 73561, - [SMALL_STATE(1851)] = 73636, - [SMALL_STATE(1852)] = 73738, - [SMALL_STATE(1853)] = 73840, - [SMALL_STATE(1854)] = 73940, - [SMALL_STATE(1855)] = 74042, - [SMALL_STATE(1856)] = 74144, - [SMALL_STATE(1857)] = 74242, - [SMALL_STATE(1858)] = 74344, - [SMALL_STATE(1859)] = 74446, - [SMALL_STATE(1860)] = 74548, - [SMALL_STATE(1861)] = 74650, - [SMALL_STATE(1862)] = 74752, - [SMALL_STATE(1863)] = 74854, - [SMALL_STATE(1864)] = 74953, - [SMALL_STATE(1865)] = 75026, - [SMALL_STATE(1866)] = 75125, - [SMALL_STATE(1867)] = 75224, - [SMALL_STATE(1868)] = 75323, - [SMALL_STATE(1869)] = 75422, - [SMALL_STATE(1870)] = 75521, - [SMALL_STATE(1871)] = 75617, - [SMALL_STATE(1872)] = 75713, - [SMALL_STATE(1873)] = 75809, - [SMALL_STATE(1874)] = 75877, - [SMALL_STATE(1875)] = 75943, - [SMALL_STATE(1876)] = 76039, - [SMALL_STATE(1877)] = 76105, - [SMALL_STATE(1878)] = 76168, - [SMALL_STATE(1879)] = 76225, - [SMALL_STATE(1880)] = 76282, - [SMALL_STATE(1881)] = 76343, - [SMALL_STATE(1882)] = 76406, - [SMALL_STATE(1883)] = 76463, - [SMALL_STATE(1884)] = 76524, - [SMALL_STATE(1885)] = 76615, - [SMALL_STATE(1886)] = 76678, - [SMALL_STATE(1887)] = 76741, - [SMALL_STATE(1888)] = 76832, - [SMALL_STATE(1889)] = 76923, - [SMALL_STATE(1890)] = 77014, - [SMALL_STATE(1891)] = 77077, - [SMALL_STATE(1892)] = 77140, - [SMALL_STATE(1893)] = 77203, - [SMALL_STATE(1894)] = 77266, - [SMALL_STATE(1895)] = 77357, - [SMALL_STATE(1896)] = 77422, - [SMALL_STATE(1897)] = 77479, - [SMALL_STATE(1898)] = 77570, - [SMALL_STATE(1899)] = 77627, - [SMALL_STATE(1900)] = 77684, - [SMALL_STATE(1901)] = 77741, - [SMALL_STATE(1902)] = 77832, - [SMALL_STATE(1903)] = 77923, - [SMALL_STATE(1904)] = 78011, - [SMALL_STATE(1905)] = 78103, - [SMALL_STATE(1906)] = 78195, - [SMALL_STATE(1907)] = 78283, - [SMALL_STATE(1908)] = 78387, - [SMALL_STATE(1909)] = 78475, - [SMALL_STATE(1910)] = 78567, - [SMALL_STATE(1911)] = 78659, - [SMALL_STATE(1912)] = 78747, - [SMALL_STATE(1913)] = 78851, - [SMALL_STATE(1914)] = 78939, - [SMALL_STATE(1915)] = 79031, - [SMALL_STATE(1916)] = 79135, - [SMALL_STATE(1917)] = 79223, - [SMALL_STATE(1918)] = 79311, - [SMALL_STATE(1919)] = 79403, - [SMALL_STATE(1920)] = 79491, - [SMALL_STATE(1921)] = 79579, - [SMALL_STATE(1922)] = 79671, - [SMALL_STATE(1923)] = 79759, - [SMALL_STATE(1924)] = 79847, - [SMALL_STATE(1925)] = 79939, - [SMALL_STATE(1926)] = 80027, - [SMALL_STATE(1927)] = 80115, - [SMALL_STATE(1928)] = 80203, - [SMALL_STATE(1929)] = 80291, - [SMALL_STATE(1930)] = 80379, - [SMALL_STATE(1931)] = 80467, - [SMALL_STATE(1932)] = 80555, - [SMALL_STATE(1933)] = 80643, - [SMALL_STATE(1934)] = 80731, - [SMALL_STATE(1935)] = 80823, - [SMALL_STATE(1936)] = 80911, - [SMALL_STATE(1937)] = 80999, - [SMALL_STATE(1938)] = 81087, - [SMALL_STATE(1939)] = 81179, - [SMALL_STATE(1940)] = 81267, - [SMALL_STATE(1941)] = 81355, - [SMALL_STATE(1942)] = 81443, - [SMALL_STATE(1943)] = 81531, - [SMALL_STATE(1944)] = 81619, - [SMALL_STATE(1945)] = 81707, - [SMALL_STATE(1946)] = 81799, - [SMALL_STATE(1947)] = 81887, - [SMALL_STATE(1948)] = 81979, - [SMALL_STATE(1949)] = 82067, - [SMALL_STATE(1950)] = 82155, - [SMALL_STATE(1951)] = 82247, - [SMALL_STATE(1952)] = 82335, - [SMALL_STATE(1953)] = 82423, - [SMALL_STATE(1954)] = 82511, - [SMALL_STATE(1955)] = 82599, - [SMALL_STATE(1956)] = 82687, - [SMALL_STATE(1957)] = 82775, - [SMALL_STATE(1958)] = 82863, - [SMALL_STATE(1959)] = 82951, - [SMALL_STATE(1960)] = 83039, - [SMALL_STATE(1961)] = 83127, - [SMALL_STATE(1962)] = 83219, - [SMALL_STATE(1963)] = 83311, - [SMALL_STATE(1964)] = 83399, - [SMALL_STATE(1965)] = 83491, - [SMALL_STATE(1966)] = 83579, - [SMALL_STATE(1967)] = 83671, - [SMALL_STATE(1968)] = 83759, - [SMALL_STATE(1969)] = 83847, - [SMALL_STATE(1970)] = 83935, - [SMALL_STATE(1971)] = 84023, - [SMALL_STATE(1972)] = 84111, - [SMALL_STATE(1973)] = 84199, - [SMALL_STATE(1974)] = 84287, - [SMALL_STATE(1975)] = 84375, - [SMALL_STATE(1976)] = 84463, - [SMALL_STATE(1977)] = 84551, - [SMALL_STATE(1978)] = 84639, - [SMALL_STATE(1979)] = 84727, - [SMALL_STATE(1980)] = 84815, - [SMALL_STATE(1981)] = 84903, - [SMALL_STATE(1982)] = 84991, - [SMALL_STATE(1983)] = 85095, - [SMALL_STATE(1984)] = 85183, - [SMALL_STATE(1985)] = 85271, - [SMALL_STATE(1986)] = 85359, - [SMALL_STATE(1987)] = 85447, - [SMALL_STATE(1988)] = 85535, - [SMALL_STATE(1989)] = 85623, - [SMALL_STATE(1990)] = 85711, - [SMALL_STATE(1991)] = 85799, - [SMALL_STATE(1992)] = 85891, - [SMALL_STATE(1993)] = 85979, - [SMALL_STATE(1994)] = 86067, - [SMALL_STATE(1995)] = 86159, - [SMALL_STATE(1996)] = 86247, - [SMALL_STATE(1997)] = 86335, - [SMALL_STATE(1998)] = 86427, - [SMALL_STATE(1999)] = 86515, - [SMALL_STATE(2000)] = 86603, - [SMALL_STATE(2001)] = 86691, - [SMALL_STATE(2002)] = 86783, - [SMALL_STATE(2003)] = 86871, - [SMALL_STATE(2004)] = 86975, - [SMALL_STATE(2005)] = 87063, - [SMALL_STATE(2006)] = 87151, - [SMALL_STATE(2007)] = 87239, - [SMALL_STATE(2008)] = 87331, - [SMALL_STATE(2009)] = 87423, - [SMALL_STATE(2010)] = 87511, - [SMALL_STATE(2011)] = 87599, - [SMALL_STATE(2012)] = 87700, - [SMALL_STATE(2013)] = 87801, - [SMALL_STATE(2014)] = 87902, - [SMALL_STATE(2015)] = 88003, - [SMALL_STATE(2016)] = 88102, - [SMALL_STATE(2017)] = 88201, - [SMALL_STATE(2018)] = 88300, - [SMALL_STATE(2019)] = 88399, - [SMALL_STATE(2020)] = 88498, - [SMALL_STATE(2021)] = 88597, - [SMALL_STATE(2022)] = 88696, - [SMALL_STATE(2023)] = 88795, - [SMALL_STATE(2024)] = 88894, - [SMALL_STATE(2025)] = 88993, - [SMALL_STATE(2026)] = 89092, - [SMALL_STATE(2027)] = 89188, - [SMALL_STATE(2028)] = 89284, - [SMALL_STATE(2029)] = 89380, - [SMALL_STATE(2030)] = 89476, - [SMALL_STATE(2031)] = 89572, - [SMALL_STATE(2032)] = 89660, - [SMALL_STATE(2033)] = 89748, - [SMALL_STATE(2034)] = 89844, - [SMALL_STATE(2035)] = 89940, - [SMALL_STATE(2036)] = 90036, - [SMALL_STATE(2037)] = 90132, - [SMALL_STATE(2038)] = 90228, - [SMALL_STATE(2039)] = 90282, - [SMALL_STATE(2040)] = 90344, - [SMALL_STATE(2041)] = 90416, - [SMALL_STATE(2042)] = 90470, - [SMALL_STATE(2043)] = 90540, - [SMALL_STATE(2044)] = 90594, - [SMALL_STATE(2045)] = 90648, - [SMALL_STATE(2046)] = 90715, - [SMALL_STATE(2047)] = 90800, - [SMALL_STATE(2048)] = 90885, - [SMALL_STATE(2049)] = 90940, - [SMALL_STATE(2050)] = 91025, - [SMALL_STATE(2051)] = 91084, - [SMALL_STATE(2052)] = 91169, - [SMALL_STATE(2053)] = 91228, - [SMALL_STATE(2054)] = 91301, - [SMALL_STATE(2055)] = 91372, - [SMALL_STATE(2056)] = 91431, - [SMALL_STATE(2057)] = 91490, - [SMALL_STATE(2058)] = 91555, - [SMALL_STATE(2059)] = 91624, - [SMALL_STATE(2060)] = 91687, - [SMALL_STATE(2061)] = 91758, - [SMALL_STATE(2062)] = 91829, - [SMALL_STATE(2063)] = 91879, - [SMALL_STATE(2064)] = 91929, - [SMALL_STATE(2065)] = 92011, - [SMALL_STATE(2066)] = 92095, - [SMALL_STATE(2067)] = 92179, - [SMALL_STATE(2068)] = 92263, - [SMALL_STATE(2069)] = 92347, - [SMALL_STATE(2070)] = 92395, - [SMALL_STATE(2071)] = 92479, - [SMALL_STATE(2072)] = 92527, - [SMALL_STATE(2073)] = 92611, - [SMALL_STATE(2074)] = 92662, - [SMALL_STATE(2075)] = 92709, - [SMALL_STATE(2076)] = 92760, - [SMALL_STATE(2077)] = 92807, - [SMALL_STATE(2078)] = 92854, - [SMALL_STATE(2079)] = 92901, - [SMALL_STATE(2080)] = 92956, - [SMALL_STATE(2081)] = 93003, - [SMALL_STATE(2082)] = 93056, - [SMALL_STATE(2083)] = 93107, - [SMALL_STATE(2084)] = 93154, - [SMALL_STATE(2085)] = 93203, - [SMALL_STATE(2086)] = 93258, - [SMALL_STATE(2087)] = 93313, - [SMALL_STATE(2088)] = 93372, - [SMALL_STATE(2089)] = 93423, - [SMALL_STATE(2090)] = 93482, - [SMALL_STATE(2091)] = 93533, - [SMALL_STATE(2092)] = 93580, - [SMALL_STATE(2093)] = 93627, - [SMALL_STATE(2094)] = 93674, - [SMALL_STATE(2095)] = 93721, - [SMALL_STATE(2096)] = 93788, - [SMALL_STATE(2097)] = 93835, - [SMALL_STATE(2098)] = 93882, - [SMALL_STATE(2099)] = 93929, - [SMALL_STATE(2100)] = 93976, - [SMALL_STATE(2101)] = 94027, - [SMALL_STATE(2102)] = 94074, - [SMALL_STATE(2103)] = 94121, - [SMALL_STATE(2104)] = 94168, - [SMALL_STATE(2105)] = 94219, - [SMALL_STATE(2106)] = 94266, - [SMALL_STATE(2107)] = 94313, - [SMALL_STATE(2108)] = 94360, - [SMALL_STATE(2109)] = 94407, - [SMALL_STATE(2110)] = 94454, - [SMALL_STATE(2111)] = 94501, - [SMALL_STATE(2112)] = 94552, - [SMALL_STATE(2113)] = 94633, - [SMALL_STATE(2114)] = 94718, - [SMALL_STATE(2115)] = 94769, - [SMALL_STATE(2116)] = 94816, - [SMALL_STATE(2117)] = 94863, - [SMALL_STATE(2118)] = 94910, - [SMALL_STATE(2119)] = 94957, - [SMALL_STATE(2120)] = 95004, - [SMALL_STATE(2121)] = 95051, - [SMALL_STATE(2122)] = 95098, - [SMALL_STATE(2123)] = 95145, - [SMALL_STATE(2124)] = 95192, - [SMALL_STATE(2125)] = 95239, - [SMALL_STATE(2126)] = 95286, - [SMALL_STATE(2127)] = 95333, - [SMALL_STATE(2128)] = 95414, - [SMALL_STATE(2129)] = 95465, - [SMALL_STATE(2130)] = 95512, - [SMALL_STATE(2131)] = 95559, - [SMALL_STATE(2132)] = 95606, - [SMALL_STATE(2133)] = 95653, - [SMALL_STATE(2134)] = 95700, - [SMALL_STATE(2135)] = 95747, - [SMALL_STATE(2136)] = 95798, - [SMALL_STATE(2137)] = 95854, - [SMALL_STATE(2138)] = 95906, - [SMALL_STATE(2139)] = 95956, - [SMALL_STATE(2140)] = 96012, - [SMALL_STATE(2141)] = 96074, - [SMALL_STATE(2142)] = 96144, - [SMALL_STATE(2143)] = 96200, - [SMALL_STATE(2144)] = 96250, - [SMALL_STATE(2145)] = 96310, - [SMALL_STATE(2146)] = 96378, - [SMALL_STATE(2147)] = 96444, - [SMALL_STATE(2148)] = 96494, - [SMALL_STATE(2149)] = 96558, - [SMALL_STATE(2150)] = 96638, - [SMALL_STATE(2151)] = 96696, - [SMALL_STATE(2152)] = 96746, - [SMALL_STATE(2153)] = 96796, - [SMALL_STATE(2154)] = 96846, - [SMALL_STATE(2155)] = 96904, - [SMALL_STATE(2156)] = 96984, - [SMALL_STATE(2157)] = 97034, - [SMALL_STATE(2158)] = 97092, - [SMALL_STATE(2159)] = 97142, - [SMALL_STATE(2160)] = 97198, - [SMALL_STATE(2161)] = 97260, - [SMALL_STATE(2162)] = 97316, - [SMALL_STATE(2163)] = 97376, - [SMALL_STATE(2164)] = 97444, - [SMALL_STATE(2165)] = 97510, - [SMALL_STATE(2166)] = 97574, - [SMALL_STATE(2167)] = 97624, - [SMALL_STATE(2168)] = 97704, - [SMALL_STATE(2169)] = 97784, - [SMALL_STATE(2170)] = 97834, - [SMALL_STATE(2171)] = 97890, - [SMALL_STATE(2172)] = 97960, - [SMALL_STATE(2173)] = 98016, - [SMALL_STATE(2174)] = 98096, - [SMALL_STATE(2175)] = 98152, + [SMALL_STATE(1079)] = 0, + [SMALL_STATE(1080)] = 119, + [SMALL_STATE(1081)] = 238, + [SMALL_STATE(1082)] = 359, + [SMALL_STATE(1083)] = 480, + [SMALL_STATE(1084)] = 553, + [SMALL_STATE(1085)] = 672, + [SMALL_STATE(1086)] = 747, + [SMALL_STATE(1087)] = 822, + [SMALL_STATE(1088)] = 941, + [SMALL_STATE(1089)] = 1016, + [SMALL_STATE(1090)] = 1091, + [SMALL_STATE(1091)] = 1162, + [SMALL_STATE(1092)] = 1237, + [SMALL_STATE(1093)] = 1312, + [SMALL_STATE(1094)] = 1387, + [SMALL_STATE(1095)] = 1506, + [SMALL_STATE(1096)] = 1627, + [SMALL_STATE(1097)] = 1746, + [SMALL_STATE(1098)] = 1865, + [SMALL_STATE(1099)] = 1938, + [SMALL_STATE(1100)] = 2057, + [SMALL_STATE(1101)] = 2128, + [SMALL_STATE(1102)] = 2203, + [SMALL_STATE(1103)] = 2274, + [SMALL_STATE(1104)] = 2349, + [SMALL_STATE(1105)] = 2468, + [SMALL_STATE(1106)] = 2541, + [SMALL_STATE(1107)] = 2660, + [SMALL_STATE(1108)] = 2731, + [SMALL_STATE(1109)] = 2806, + [SMALL_STATE(1110)] = 2881, + [SMALL_STATE(1111)] = 3000, + [SMALL_STATE(1112)] = 3121, + [SMALL_STATE(1113)] = 3240, + [SMALL_STATE(1114)] = 3315, + [SMALL_STATE(1115)] = 3434, + [SMALL_STATE(1116)] = 3507, + [SMALL_STATE(1117)] = 3582, + [SMALL_STATE(1118)] = 3657, + [SMALL_STATE(1119)] = 3776, + [SMALL_STATE(1120)] = 3895, + [SMALL_STATE(1121)] = 4014, + [SMALL_STATE(1122)] = 4085, + [SMALL_STATE(1123)] = 4160, + [SMALL_STATE(1124)] = 4235, + [SMALL_STATE(1125)] = 4310, + [SMALL_STATE(1126)] = 4431, + [SMALL_STATE(1127)] = 4506, + [SMALL_STATE(1128)] = 4625, + [SMALL_STATE(1129)] = 4744, + [SMALL_STATE(1130)] = 4865, + [SMALL_STATE(1131)] = 4984, + [SMALL_STATE(1132)] = 5103, + [SMALL_STATE(1133)] = 5212, + [SMALL_STATE(1134)] = 5287, + [SMALL_STATE(1135)] = 5406, + [SMALL_STATE(1136)] = 5525, + [SMALL_STATE(1137)] = 5600, + [SMALL_STATE(1138)] = 5721, + [SMALL_STATE(1139)] = 5796, + [SMALL_STATE(1140)] = 5915, + [SMALL_STATE(1141)] = 6026, + [SMALL_STATE(1142)] = 6137, + [SMALL_STATE(1143)] = 6246, + [SMALL_STATE(1144)] = 6367, + [SMALL_STATE(1145)] = 6442, + [SMALL_STATE(1146)] = 6517, + [SMALL_STATE(1147)] = 6636, + [SMALL_STATE(1148)] = 6709, + [SMALL_STATE(1149)] = 6784, + [SMALL_STATE(1150)] = 6857, + [SMALL_STATE(1151)] = 6928, + [SMALL_STATE(1152)] = 7047, + [SMALL_STATE(1153)] = 7118, + [SMALL_STATE(1154)] = 7193, + [SMALL_STATE(1155)] = 7268, + [SMALL_STATE(1156)] = 7343, + [SMALL_STATE(1157)] = 7418, + [SMALL_STATE(1158)] = 7537, + [SMALL_STATE(1159)] = 7656, + [SMALL_STATE(1160)] = 7731, + [SMALL_STATE(1161)] = 7850, + [SMALL_STATE(1162)] = 7925, + [SMALL_STATE(1163)] = 7998, + [SMALL_STATE(1164)] = 8073, + [SMALL_STATE(1165)] = 8148, + [SMALL_STATE(1166)] = 8269, + [SMALL_STATE(1167)] = 8388, + [SMALL_STATE(1168)] = 8459, + [SMALL_STATE(1169)] = 8534, + [SMALL_STATE(1170)] = 8655, + [SMALL_STATE(1171)] = 8730, + [SMALL_STATE(1172)] = 8805, + [SMALL_STATE(1173)] = 8926, + [SMALL_STATE(1174)] = 9047, + [SMALL_STATE(1175)] = 9166, + [SMALL_STATE(1176)] = 9287, + [SMALL_STATE(1177)] = 9408, + [SMALL_STATE(1178)] = 9529, + [SMALL_STATE(1179)] = 9650, + [SMALL_STATE(1180)] = 9771, + [SMALL_STATE(1181)] = 9892, + [SMALL_STATE(1182)] = 10013, + [SMALL_STATE(1183)] = 10134, + [SMALL_STATE(1184)] = 10255, + [SMALL_STATE(1185)] = 10330, + [SMALL_STATE(1186)] = 10451, + [SMALL_STATE(1187)] = 10526, + [SMALL_STATE(1188)] = 10601, + [SMALL_STATE(1189)] = 10676, + [SMALL_STATE(1190)] = 10795, + [SMALL_STATE(1191)] = 10914, + [SMALL_STATE(1192)] = 10989, + [SMALL_STATE(1193)] = 11110, + [SMALL_STATE(1194)] = 11183, + [SMALL_STATE(1195)] = 11253, + [SMALL_STATE(1196)] = 11323, + [SMALL_STATE(1197)] = 11393, + [SMALL_STATE(1198)] = 11463, + [SMALL_STATE(1199)] = 11533, + [SMALL_STATE(1200)] = 11603, + [SMALL_STATE(1201)] = 11673, + [SMALL_STATE(1202)] = 11743, + [SMALL_STATE(1203)] = 11813, + [SMALL_STATE(1204)] = 11931, + [SMALL_STATE(1205)] = 12001, + [SMALL_STATE(1206)] = 12071, + [SMALL_STATE(1207)] = 12141, + [SMALL_STATE(1208)] = 12211, + [SMALL_STATE(1209)] = 12281, + [SMALL_STATE(1210)] = 12351, + [SMALL_STATE(1211)] = 12421, + [SMALL_STATE(1212)] = 12491, + [SMALL_STATE(1213)] = 12561, + [SMALL_STATE(1214)] = 12631, + [SMALL_STATE(1215)] = 12703, + [SMALL_STATE(1216)] = 12773, + [SMALL_STATE(1217)] = 12891, + [SMALL_STATE(1218)] = 12961, + [SMALL_STATE(1219)] = 13031, + [SMALL_STATE(1220)] = 13101, + [SMALL_STATE(1221)] = 13219, + [SMALL_STATE(1222)] = 13289, + [SMALL_STATE(1223)] = 13359, + [SMALL_STATE(1224)] = 13429, + [SMALL_STATE(1225)] = 13499, + [SMALL_STATE(1226)] = 13569, + [SMALL_STATE(1227)] = 13639, + [SMALL_STATE(1228)] = 13709, + [SMALL_STATE(1229)] = 13779, + [SMALL_STATE(1230)] = 13849, + [SMALL_STATE(1231)] = 13919, + [SMALL_STATE(1232)] = 13989, + [SMALL_STATE(1233)] = 14059, + [SMALL_STATE(1234)] = 14129, + [SMALL_STATE(1235)] = 14199, + [SMALL_STATE(1236)] = 14269, + [SMALL_STATE(1237)] = 14339, + [SMALL_STATE(1238)] = 14409, + [SMALL_STATE(1239)] = 14479, + [SMALL_STATE(1240)] = 14549, + [SMALL_STATE(1241)] = 14619, + [SMALL_STATE(1242)] = 14737, + [SMALL_STATE(1243)] = 14807, + [SMALL_STATE(1244)] = 14877, + [SMALL_STATE(1245)] = 14947, + [SMALL_STATE(1246)] = 15017, + [SMALL_STATE(1247)] = 15087, + [SMALL_STATE(1248)] = 15157, + [SMALL_STATE(1249)] = 15227, + [SMALL_STATE(1250)] = 15297, + [SMALL_STATE(1251)] = 15367, + [SMALL_STATE(1252)] = 15437, + [SMALL_STATE(1253)] = 15507, + [SMALL_STATE(1254)] = 15577, + [SMALL_STATE(1255)] = 15695, + [SMALL_STATE(1256)] = 15765, + [SMALL_STATE(1257)] = 15835, + [SMALL_STATE(1258)] = 15905, + [SMALL_STATE(1259)] = 15975, + [SMALL_STATE(1260)] = 16045, + [SMALL_STATE(1261)] = 16115, + [SMALL_STATE(1262)] = 16233, + [SMALL_STATE(1263)] = 16303, + [SMALL_STATE(1264)] = 16373, + [SMALL_STATE(1265)] = 16443, + [SMALL_STATE(1266)] = 16513, + [SMALL_STATE(1267)] = 16631, + [SMALL_STATE(1268)] = 16701, + [SMALL_STATE(1269)] = 16771, + [SMALL_STATE(1270)] = 16841, + [SMALL_STATE(1271)] = 16911, + [SMALL_STATE(1272)] = 17029, + [SMALL_STATE(1273)] = 17099, + [SMALL_STATE(1274)] = 17169, + [SMALL_STATE(1275)] = 17239, + [SMALL_STATE(1276)] = 17357, + [SMALL_STATE(1277)] = 17427, + [SMALL_STATE(1278)] = 17545, + [SMALL_STATE(1279)] = 17615, + [SMALL_STATE(1280)] = 17685, + [SMALL_STATE(1281)] = 17755, + [SMALL_STATE(1282)] = 17825, + [SMALL_STATE(1283)] = 17895, + [SMALL_STATE(1284)] = 18013, + [SMALL_STATE(1285)] = 18083, + [SMALL_STATE(1286)] = 18153, + [SMALL_STATE(1287)] = 18223, + [SMALL_STATE(1288)] = 18293, + [SMALL_STATE(1289)] = 18363, + [SMALL_STATE(1290)] = 18433, + [SMALL_STATE(1291)] = 18503, + [SMALL_STATE(1292)] = 18573, + [SMALL_STATE(1293)] = 18643, + [SMALL_STATE(1294)] = 18713, + [SMALL_STATE(1295)] = 18783, + [SMALL_STATE(1296)] = 18853, + [SMALL_STATE(1297)] = 18923, + [SMALL_STATE(1298)] = 18993, + [SMALL_STATE(1299)] = 19063, + [SMALL_STATE(1300)] = 19133, + [SMALL_STATE(1301)] = 19203, + [SMALL_STATE(1302)] = 19273, + [SMALL_STATE(1303)] = 19343, + [SMALL_STATE(1304)] = 19413, + [SMALL_STATE(1305)] = 19483, + [SMALL_STATE(1306)] = 19553, + [SMALL_STATE(1307)] = 19623, + [SMALL_STATE(1308)] = 19693, + [SMALL_STATE(1309)] = 19763, + [SMALL_STATE(1310)] = 19833, + [SMALL_STATE(1311)] = 19903, + [SMALL_STATE(1312)] = 19973, + [SMALL_STATE(1313)] = 20043, + [SMALL_STATE(1314)] = 20113, + [SMALL_STATE(1315)] = 20183, + [SMALL_STATE(1316)] = 20253, + [SMALL_STATE(1317)] = 20323, + [SMALL_STATE(1318)] = 20393, + [SMALL_STATE(1319)] = 20511, + [SMALL_STATE(1320)] = 20581, + [SMALL_STATE(1321)] = 20651, + [SMALL_STATE(1322)] = 20721, + [SMALL_STATE(1323)] = 20791, + [SMALL_STATE(1324)] = 20861, + [SMALL_STATE(1325)] = 20931, + [SMALL_STATE(1326)] = 21001, + [SMALL_STATE(1327)] = 21121, + [SMALL_STATE(1328)] = 21191, + [SMALL_STATE(1329)] = 21261, + [SMALL_STATE(1330)] = 21331, + [SMALL_STATE(1331)] = 21401, + [SMALL_STATE(1332)] = 21471, + [SMALL_STATE(1333)] = 21541, + [SMALL_STATE(1334)] = 21611, + [SMALL_STATE(1335)] = 21681, + [SMALL_STATE(1336)] = 21751, + [SMALL_STATE(1337)] = 21821, + [SMALL_STATE(1338)] = 21891, + [SMALL_STATE(1339)] = 21961, + [SMALL_STATE(1340)] = 22031, + [SMALL_STATE(1341)] = 22101, + [SMALL_STATE(1342)] = 22171, + [SMALL_STATE(1343)] = 22241, + [SMALL_STATE(1344)] = 22313, + [SMALL_STATE(1345)] = 22383, + [SMALL_STATE(1346)] = 22453, + [SMALL_STATE(1347)] = 22523, + [SMALL_STATE(1348)] = 22593, + [SMALL_STATE(1349)] = 22663, + [SMALL_STATE(1350)] = 22733, + [SMALL_STATE(1351)] = 22803, + [SMALL_STATE(1352)] = 22873, + [SMALL_STATE(1353)] = 22943, + [SMALL_STATE(1354)] = 23013, + [SMALL_STATE(1355)] = 23123, + [SMALL_STATE(1356)] = 23193, + [SMALL_STATE(1357)] = 23263, + [SMALL_STATE(1358)] = 23333, + [SMALL_STATE(1359)] = 23403, + [SMALL_STATE(1360)] = 23473, + [SMALL_STATE(1361)] = 23543, + [SMALL_STATE(1362)] = 23613, + [SMALL_STATE(1363)] = 23683, + [SMALL_STATE(1364)] = 23753, + [SMALL_STATE(1365)] = 23823, + [SMALL_STATE(1366)] = 23893, + [SMALL_STATE(1367)] = 23963, + [SMALL_STATE(1368)] = 24033, + [SMALL_STATE(1369)] = 24103, + [SMALL_STATE(1370)] = 24173, + [SMALL_STATE(1371)] = 24291, + [SMALL_STATE(1372)] = 24361, + [SMALL_STATE(1373)] = 24471, + [SMALL_STATE(1374)] = 24541, + [SMALL_STATE(1375)] = 24659, + [SMALL_STATE(1376)] = 24729, + [SMALL_STATE(1377)] = 24799, + [SMALL_STATE(1378)] = 24869, + [SMALL_STATE(1379)] = 24939, + [SMALL_STATE(1380)] = 25009, + [SMALL_STATE(1381)] = 25079, + [SMALL_STATE(1382)] = 25149, + [SMALL_STATE(1383)] = 25219, + [SMALL_STATE(1384)] = 25289, + [SMALL_STATE(1385)] = 25359, + [SMALL_STATE(1386)] = 25429, + [SMALL_STATE(1387)] = 25499, + [SMALL_STATE(1388)] = 25569, + [SMALL_STATE(1389)] = 25639, + [SMALL_STATE(1390)] = 25709, + [SMALL_STATE(1391)] = 25779, + [SMALL_STATE(1392)] = 25849, + [SMALL_STATE(1393)] = 25967, + [SMALL_STATE(1394)] = 26037, + [SMALL_STATE(1395)] = 26107, + [SMALL_STATE(1396)] = 26177, + [SMALL_STATE(1397)] = 26247, + [SMALL_STATE(1398)] = 26365, + [SMALL_STATE(1399)] = 26483, + [SMALL_STATE(1400)] = 26553, + [SMALL_STATE(1401)] = 26623, + [SMALL_STATE(1402)] = 26693, + [SMALL_STATE(1403)] = 26811, + [SMALL_STATE(1404)] = 26929, + [SMALL_STATE(1405)] = 26999, + [SMALL_STATE(1406)] = 27069, + [SMALL_STATE(1407)] = 27139, + [SMALL_STATE(1408)] = 27209, + [SMALL_STATE(1409)] = 27327, + [SMALL_STATE(1410)] = 27397, + [SMALL_STATE(1411)] = 27467, + [SMALL_STATE(1412)] = 27585, + [SMALL_STATE(1413)] = 27655, + [SMALL_STATE(1414)] = 27725, + [SMALL_STATE(1415)] = 27795, + [SMALL_STATE(1416)] = 27865, + [SMALL_STATE(1417)] = 27935, + [SMALL_STATE(1418)] = 28005, + [SMALL_STATE(1419)] = 28075, + [SMALL_STATE(1420)] = 28145, + [SMALL_STATE(1421)] = 28215, + [SMALL_STATE(1422)] = 28285, + [SMALL_STATE(1423)] = 28355, + [SMALL_STATE(1424)] = 28425, + [SMALL_STATE(1425)] = 28540, + [SMALL_STATE(1426)] = 28655, + [SMALL_STATE(1427)] = 28770, + [SMALL_STATE(1428)] = 28885, + [SMALL_STATE(1429)] = 29000, + [SMALL_STATE(1430)] = 29115, + [SMALL_STATE(1431)] = 29230, + [SMALL_STATE(1432)] = 29345, + [SMALL_STATE(1433)] = 29460, + [SMALL_STATE(1434)] = 29575, + [SMALL_STATE(1435)] = 29690, + [SMALL_STATE(1436)] = 29805, + [SMALL_STATE(1437)] = 29920, + [SMALL_STATE(1438)] = 30035, + [SMALL_STATE(1439)] = 30150, + [SMALL_STATE(1440)] = 30219, + [SMALL_STATE(1441)] = 30288, + [SMALL_STATE(1442)] = 30403, + [SMALL_STATE(1443)] = 30518, + [SMALL_STATE(1444)] = 30633, + [SMALL_STATE(1445)] = 30748, + [SMALL_STATE(1446)] = 30863, + [SMALL_STATE(1447)] = 30978, + [SMALL_STATE(1448)] = 31093, + [SMALL_STATE(1449)] = 31208, + [SMALL_STATE(1450)] = 31323, + [SMALL_STATE(1451)] = 31438, + [SMALL_STATE(1452)] = 31553, + [SMALL_STATE(1453)] = 31668, + [SMALL_STATE(1454)] = 31783, + [SMALL_STATE(1455)] = 31898, + [SMALL_STATE(1456)] = 32013, + [SMALL_STATE(1457)] = 32128, + [SMALL_STATE(1458)] = 32243, + [SMALL_STATE(1459)] = 32358, + [SMALL_STATE(1460)] = 32473, + [SMALL_STATE(1461)] = 32588, + [SMALL_STATE(1462)] = 32703, + [SMALL_STATE(1463)] = 32818, + [SMALL_STATE(1464)] = 32933, + [SMALL_STATE(1465)] = 33048, + [SMALL_STATE(1466)] = 33163, + [SMALL_STATE(1467)] = 33278, + [SMALL_STATE(1468)] = 33393, + [SMALL_STATE(1469)] = 33508, + [SMALL_STATE(1470)] = 33623, + [SMALL_STATE(1471)] = 33738, + [SMALL_STATE(1472)] = 33853, + [SMALL_STATE(1473)] = 33968, + [SMALL_STATE(1474)] = 34085, + [SMALL_STATE(1475)] = 34154, + [SMALL_STATE(1476)] = 34223, + [SMALL_STATE(1477)] = 34292, + [SMALL_STATE(1478)] = 34407, + [SMALL_STATE(1479)] = 34476, + [SMALL_STATE(1480)] = 34591, + [SMALL_STATE(1481)] = 34706, + [SMALL_STATE(1482)] = 34821, + [SMALL_STATE(1483)] = 34936, + [SMALL_STATE(1484)] = 35051, + [SMALL_STATE(1485)] = 35166, + [SMALL_STATE(1486)] = 35281, + [SMALL_STATE(1487)] = 35350, + [SMALL_STATE(1488)] = 35419, + [SMALL_STATE(1489)] = 35488, + [SMALL_STATE(1490)] = 35557, + [SMALL_STATE(1491)] = 35672, + [SMALL_STATE(1492)] = 35787, + [SMALL_STATE(1493)] = 35902, + [SMALL_STATE(1494)] = 35971, + [SMALL_STATE(1495)] = 36086, + [SMALL_STATE(1496)] = 36201, + [SMALL_STATE(1497)] = 36316, + [SMALL_STATE(1498)] = 36385, + [SMALL_STATE(1499)] = 36500, + [SMALL_STATE(1500)] = 36615, + [SMALL_STATE(1501)] = 36730, + [SMALL_STATE(1502)] = 36845, + [SMALL_STATE(1503)] = 36914, + [SMALL_STATE(1504)] = 37029, + [SMALL_STATE(1505)] = 37144, + [SMALL_STATE(1506)] = 37213, + [SMALL_STATE(1507)] = 37282, + [SMALL_STATE(1508)] = 37351, + [SMALL_STATE(1509)] = 37466, + [SMALL_STATE(1510)] = 37535, + [SMALL_STATE(1511)] = 37604, + [SMALL_STATE(1512)] = 37719, + [SMALL_STATE(1513)] = 37788, + [SMALL_STATE(1514)] = 37857, + [SMALL_STATE(1515)] = 37926, + [SMALL_STATE(1516)] = 38041, + [SMALL_STATE(1517)] = 38156, + [SMALL_STATE(1518)] = 38225, + [SMALL_STATE(1519)] = 38294, + [SMALL_STATE(1520)] = 38363, + [SMALL_STATE(1521)] = 38478, + [SMALL_STATE(1522)] = 38593, + [SMALL_STATE(1523)] = 38708, + [SMALL_STATE(1524)] = 38777, + [SMALL_STATE(1525)] = 38846, + [SMALL_STATE(1526)] = 38915, + [SMALL_STATE(1527)] = 39030, + [SMALL_STATE(1528)] = 39099, + [SMALL_STATE(1529)] = 39168, + [SMALL_STATE(1530)] = 39237, + [SMALL_STATE(1531)] = 39352, + [SMALL_STATE(1532)] = 39421, + [SMALL_STATE(1533)] = 39490, + [SMALL_STATE(1534)] = 39559, + [SMALL_STATE(1535)] = 39628, + [SMALL_STATE(1536)] = 39697, + [SMALL_STATE(1537)] = 39766, + [SMALL_STATE(1538)] = 39835, + [SMALL_STATE(1539)] = 39950, + [SMALL_STATE(1540)] = 40065, + [SMALL_STATE(1541)] = 40134, + [SMALL_STATE(1542)] = 40249, + [SMALL_STATE(1543)] = 40318, + [SMALL_STATE(1544)] = 40387, + [SMALL_STATE(1545)] = 40456, + [SMALL_STATE(1546)] = 40525, + [SMALL_STATE(1547)] = 40594, + [SMALL_STATE(1548)] = 40663, + [SMALL_STATE(1549)] = 40778, + [SMALL_STATE(1550)] = 40847, + [SMALL_STATE(1551)] = 40962, + [SMALL_STATE(1552)] = 41077, + [SMALL_STATE(1553)] = 41146, + [SMALL_STATE(1554)] = 41215, + [SMALL_STATE(1555)] = 41284, + [SMALL_STATE(1556)] = 41353, + [SMALL_STATE(1557)] = 41422, + [SMALL_STATE(1558)] = 41491, + [SMALL_STATE(1559)] = 41560, + [SMALL_STATE(1560)] = 41629, + [SMALL_STATE(1561)] = 41698, + [SMALL_STATE(1562)] = 41767, + [SMALL_STATE(1563)] = 41882, + [SMALL_STATE(1564)] = 41951, + [SMALL_STATE(1565)] = 42020, + [SMALL_STATE(1566)] = 42089, + [SMALL_STATE(1567)] = 42158, + [SMALL_STATE(1568)] = 42227, + [SMALL_STATE(1569)] = 42296, + [SMALL_STATE(1570)] = 42365, + [SMALL_STATE(1571)] = 42434, + [SMALL_STATE(1572)] = 42503, + [SMALL_STATE(1573)] = 42572, + [SMALL_STATE(1574)] = 42641, + [SMALL_STATE(1575)] = 42758, + [SMALL_STATE(1576)] = 42827, + [SMALL_STATE(1577)] = 42896, + [SMALL_STATE(1578)] = 42965, + [SMALL_STATE(1579)] = 43034, + [SMALL_STATE(1580)] = 43103, + [SMALL_STATE(1581)] = 43172, + [SMALL_STATE(1582)] = 43241, + [SMALL_STATE(1583)] = 43310, + [SMALL_STATE(1584)] = 43379, + [SMALL_STATE(1585)] = 43494, + [SMALL_STATE(1586)] = 43609, + [SMALL_STATE(1587)] = 43678, + [SMALL_STATE(1588)] = 43793, + [SMALL_STATE(1589)] = 43908, + [SMALL_STATE(1590)] = 43977, + [SMALL_STATE(1591)] = 44046, + [SMALL_STATE(1592)] = 44161, + [SMALL_STATE(1593)] = 44230, + [SMALL_STATE(1594)] = 44299, + [SMALL_STATE(1595)] = 44368, + [SMALL_STATE(1596)] = 44437, + [SMALL_STATE(1597)] = 44552, + [SMALL_STATE(1598)] = 44667, + [SMALL_STATE(1599)] = 44736, + [SMALL_STATE(1600)] = 44851, + [SMALL_STATE(1601)] = 44966, + [SMALL_STATE(1602)] = 45081, + [SMALL_STATE(1603)] = 45196, + [SMALL_STATE(1604)] = 45311, + [SMALL_STATE(1605)] = 45426, + [SMALL_STATE(1606)] = 45541, + [SMALL_STATE(1607)] = 45656, + [SMALL_STATE(1608)] = 45725, + [SMALL_STATE(1609)] = 45840, + [SMALL_STATE(1610)] = 45955, + [SMALL_STATE(1611)] = 46070, + [SMALL_STATE(1612)] = 46185, + [SMALL_STATE(1613)] = 46300, + [SMALL_STATE(1614)] = 46415, + [SMALL_STATE(1615)] = 46530, + [SMALL_STATE(1616)] = 46645, + [SMALL_STATE(1617)] = 46760, + [SMALL_STATE(1618)] = 46875, + [SMALL_STATE(1619)] = 46990, + [SMALL_STATE(1620)] = 47105, + [SMALL_STATE(1621)] = 47220, + [SMALL_STATE(1622)] = 47335, + [SMALL_STATE(1623)] = 47450, + [SMALL_STATE(1624)] = 47565, + [SMALL_STATE(1625)] = 47680, + [SMALL_STATE(1626)] = 47795, + [SMALL_STATE(1627)] = 47910, + [SMALL_STATE(1628)] = 48025, + [SMALL_STATE(1629)] = 48140, + [SMALL_STATE(1630)] = 48255, + [SMALL_STATE(1631)] = 48370, + [SMALL_STATE(1632)] = 48485, + [SMALL_STATE(1633)] = 48600, + [SMALL_STATE(1634)] = 48715, + [SMALL_STATE(1635)] = 48830, + [SMALL_STATE(1636)] = 48945, + [SMALL_STATE(1637)] = 49060, + [SMALL_STATE(1638)] = 49175, + [SMALL_STATE(1639)] = 49290, + [SMALL_STATE(1640)] = 49405, + [SMALL_STATE(1641)] = 49520, + [SMALL_STATE(1642)] = 49635, + [SMALL_STATE(1643)] = 49750, + [SMALL_STATE(1644)] = 49865, + [SMALL_STATE(1645)] = 49980, + [SMALL_STATE(1646)] = 50095, + [SMALL_STATE(1647)] = 50210, + [SMALL_STATE(1648)] = 50325, + [SMALL_STATE(1649)] = 50440, + [SMALL_STATE(1650)] = 50555, + [SMALL_STATE(1651)] = 50670, + [SMALL_STATE(1652)] = 50785, + [SMALL_STATE(1653)] = 50900, + [SMALL_STATE(1654)] = 50969, + [SMALL_STATE(1655)] = 51084, + [SMALL_STATE(1656)] = 51201, + [SMALL_STATE(1657)] = 51270, + [SMALL_STATE(1658)] = 51339, + [SMALL_STATE(1659)] = 51454, + [SMALL_STATE(1660)] = 51523, + [SMALL_STATE(1661)] = 51592, + [SMALL_STATE(1662)] = 51707, + [SMALL_STATE(1663)] = 51776, + [SMALL_STATE(1664)] = 51891, + [SMALL_STATE(1665)] = 51960, + [SMALL_STATE(1666)] = 52029, + [SMALL_STATE(1667)] = 52098, + [SMALL_STATE(1668)] = 52167, + [SMALL_STATE(1669)] = 52236, + [SMALL_STATE(1670)] = 52351, + [SMALL_STATE(1671)] = 52466, + [SMALL_STATE(1672)] = 52581, + [SMALL_STATE(1673)] = 52650, + [SMALL_STATE(1674)] = 52719, + [SMALL_STATE(1675)] = 52788, + [SMALL_STATE(1676)] = 52857, + [SMALL_STATE(1677)] = 52926, + [SMALL_STATE(1678)] = 52995, + [SMALL_STATE(1679)] = 53110, + [SMALL_STATE(1680)] = 53179, + [SMALL_STATE(1681)] = 53248, + [SMALL_STATE(1682)] = 53317, + [SMALL_STATE(1683)] = 53386, + [SMALL_STATE(1684)] = 53501, + [SMALL_STATE(1685)] = 53616, + [SMALL_STATE(1686)] = 53731, + [SMALL_STATE(1687)] = 53846, + [SMALL_STATE(1688)] = 53915, + [SMALL_STATE(1689)] = 53984, + [SMALL_STATE(1690)] = 54099, + [SMALL_STATE(1691)] = 54214, + [SMALL_STATE(1692)] = 54329, + [SMALL_STATE(1693)] = 54398, + [SMALL_STATE(1694)] = 54467, + [SMALL_STATE(1695)] = 54536, + [SMALL_STATE(1696)] = 54651, + [SMALL_STATE(1697)] = 54766, + [SMALL_STATE(1698)] = 54881, + [SMALL_STATE(1699)] = 54996, + [SMALL_STATE(1700)] = 55111, + [SMALL_STATE(1701)] = 55226, + [SMALL_STATE(1702)] = 55341, + [SMALL_STATE(1703)] = 55456, + [SMALL_STATE(1704)] = 55525, + [SMALL_STATE(1705)] = 55594, + [SMALL_STATE(1706)] = 55663, + [SMALL_STATE(1707)] = 55732, + [SMALL_STATE(1708)] = 55847, + [SMALL_STATE(1709)] = 55916, + [SMALL_STATE(1710)] = 56031, + [SMALL_STATE(1711)] = 56146, + [SMALL_STATE(1712)] = 56261, + [SMALL_STATE(1713)] = 56376, + [SMALL_STATE(1714)] = 56445, + [SMALL_STATE(1715)] = 56514, + [SMALL_STATE(1716)] = 56583, + [SMALL_STATE(1717)] = 56652, + [SMALL_STATE(1718)] = 56767, + [SMALL_STATE(1719)] = 56882, + [SMALL_STATE(1720)] = 56997, + [SMALL_STATE(1721)] = 57112, + [SMALL_STATE(1722)] = 57227, + [SMALL_STATE(1723)] = 57342, + [SMALL_STATE(1724)] = 57457, + [SMALL_STATE(1725)] = 57572, + [SMALL_STATE(1726)] = 57687, + [SMALL_STATE(1727)] = 57802, + [SMALL_STATE(1728)] = 57917, + [SMALL_STATE(1729)] = 58034, + [SMALL_STATE(1730)] = 58103, + [SMALL_STATE(1731)] = 58218, + [SMALL_STATE(1732)] = 58333, + [SMALL_STATE(1733)] = 58448, + [SMALL_STATE(1734)] = 58563, + [SMALL_STATE(1735)] = 58678, + [SMALL_STATE(1736)] = 58793, + [SMALL_STATE(1737)] = 58910, + [SMALL_STATE(1738)] = 59025, + [SMALL_STATE(1739)] = 59094, + [SMALL_STATE(1740)] = 59209, + [SMALL_STATE(1741)] = 59278, + [SMALL_STATE(1742)] = 59393, + [SMALL_STATE(1743)] = 59462, + [SMALL_STATE(1744)] = 59577, + [SMALL_STATE(1745)] = 59686, + [SMALL_STATE(1746)] = 59801, + [SMALL_STATE(1747)] = 59870, + [SMALL_STATE(1748)] = 59939, + [SMALL_STATE(1749)] = 60008, + [SMALL_STATE(1750)] = 60123, + [SMALL_STATE(1751)] = 60240, + [SMALL_STATE(1752)] = 60355, + [SMALL_STATE(1753)] = 60424, + [SMALL_STATE(1754)] = 60539, + [SMALL_STATE(1755)] = 60608, + [SMALL_STATE(1756)] = 60723, + [SMALL_STATE(1757)] = 60792, + [SMALL_STATE(1758)] = 60861, + [SMALL_STATE(1759)] = 60976, + [SMALL_STATE(1760)] = 61091, + [SMALL_STATE(1761)] = 61206, + [SMALL_STATE(1762)] = 61275, + [SMALL_STATE(1763)] = 61390, + [SMALL_STATE(1764)] = 61459, + [SMALL_STATE(1765)] = 61528, + [SMALL_STATE(1766)] = 61597, + [SMALL_STATE(1767)] = 61666, + [SMALL_STATE(1768)] = 61735, + [SMALL_STATE(1769)] = 61804, + [SMALL_STATE(1770)] = 61873, + [SMALL_STATE(1771)] = 61942, + [SMALL_STATE(1772)] = 62057, + [SMALL_STATE(1773)] = 62126, + [SMALL_STATE(1774)] = 62195, + [SMALL_STATE(1775)] = 62264, + [SMALL_STATE(1776)] = 62379, + [SMALL_STATE(1777)] = 62494, + [SMALL_STATE(1778)] = 62603, + [SMALL_STATE(1779)] = 62718, + [SMALL_STATE(1780)] = 62833, + [SMALL_STATE(1781)] = 62948, + [SMALL_STATE(1782)] = 63063, + [SMALL_STATE(1783)] = 63178, + [SMALL_STATE(1784)] = 63293, + [SMALL_STATE(1785)] = 63408, + [SMALL_STATE(1786)] = 63477, + [SMALL_STATE(1787)] = 63592, + [SMALL_STATE(1788)] = 63707, + [SMALL_STATE(1789)] = 63822, + [SMALL_STATE(1790)] = 63937, + [SMALL_STATE(1791)] = 64052, + [SMALL_STATE(1792)] = 64167, + [SMALL_STATE(1793)] = 64282, + [SMALL_STATE(1794)] = 64397, + [SMALL_STATE(1795)] = 64512, + [SMALL_STATE(1796)] = 64627, + [SMALL_STATE(1797)] = 64742, + [SMALL_STATE(1798)] = 64857, + [SMALL_STATE(1799)] = 64972, + [SMALL_STATE(1800)] = 65087, + [SMALL_STATE(1801)] = 65202, + [SMALL_STATE(1802)] = 65317, + [SMALL_STATE(1803)] = 65432, + [SMALL_STATE(1804)] = 65547, + [SMALL_STATE(1805)] = 65662, + [SMALL_STATE(1806)] = 65777, + [SMALL_STATE(1807)] = 65892, + [SMALL_STATE(1808)] = 66007, + [SMALL_STATE(1809)] = 66122, + [SMALL_STATE(1810)] = 66237, + [SMALL_STATE(1811)] = 66352, + [SMALL_STATE(1812)] = 66467, + [SMALL_STATE(1813)] = 66582, + [SMALL_STATE(1814)] = 66697, + [SMALL_STATE(1815)] = 66812, + [SMALL_STATE(1816)] = 66927, + [SMALL_STATE(1817)] = 67042, + [SMALL_STATE(1818)] = 67157, + [SMALL_STATE(1819)] = 67272, + [SMALL_STATE(1820)] = 67387, + [SMALL_STATE(1821)] = 67502, + [SMALL_STATE(1822)] = 67617, + [SMALL_STATE(1823)] = 67732, + [SMALL_STATE(1824)] = 67847, + [SMALL_STATE(1825)] = 67962, + [SMALL_STATE(1826)] = 68077, + [SMALL_STATE(1827)] = 68192, + [SMALL_STATE(1828)] = 68307, + [SMALL_STATE(1829)] = 68422, + [SMALL_STATE(1830)] = 68537, + [SMALL_STATE(1831)] = 68652, + [SMALL_STATE(1832)] = 68767, + [SMALL_STATE(1833)] = 68882, + [SMALL_STATE(1834)] = 68997, + [SMALL_STATE(1835)] = 69112, + [SMALL_STATE(1836)] = 69227, + [SMALL_STATE(1837)] = 69342, + [SMALL_STATE(1838)] = 69457, + [SMALL_STATE(1839)] = 69572, + [SMALL_STATE(1840)] = 69687, + [SMALL_STATE(1841)] = 69802, + [SMALL_STATE(1842)] = 69917, + [SMALL_STATE(1843)] = 70032, + [SMALL_STATE(1844)] = 70147, + [SMALL_STATE(1845)] = 70262, + [SMALL_STATE(1846)] = 70377, + [SMALL_STATE(1847)] = 70492, + [SMALL_STATE(1848)] = 70607, + [SMALL_STATE(1849)] = 70722, + [SMALL_STATE(1850)] = 70837, + [SMALL_STATE(1851)] = 70952, + [SMALL_STATE(1852)] = 71067, + [SMALL_STATE(1853)] = 71182, + [SMALL_STATE(1854)] = 71297, + [SMALL_STATE(1855)] = 71412, + [SMALL_STATE(1856)] = 71527, + [SMALL_STATE(1857)] = 71642, + [SMALL_STATE(1858)] = 71757, + [SMALL_STATE(1859)] = 71872, + [SMALL_STATE(1860)] = 71987, + [SMALL_STATE(1861)] = 72102, + [SMALL_STATE(1862)] = 72217, + [SMALL_STATE(1863)] = 72332, + [SMALL_STATE(1864)] = 72447, + [SMALL_STATE(1865)] = 72562, + [SMALL_STATE(1866)] = 72677, + [SMALL_STATE(1867)] = 72792, + [SMALL_STATE(1868)] = 72907, + [SMALL_STATE(1869)] = 73022, + [SMALL_STATE(1870)] = 73137, + [SMALL_STATE(1871)] = 73252, + [SMALL_STATE(1872)] = 73367, + [SMALL_STATE(1873)] = 73482, + [SMALL_STATE(1874)] = 73597, + [SMALL_STATE(1875)] = 73712, + [SMALL_STATE(1876)] = 73827, + [SMALL_STATE(1877)] = 73942, + [SMALL_STATE(1878)] = 74057, + [SMALL_STATE(1879)] = 74172, + [SMALL_STATE(1880)] = 74287, + [SMALL_STATE(1881)] = 74356, + [SMALL_STATE(1882)] = 74471, + [SMALL_STATE(1883)] = 74586, + [SMALL_STATE(1884)] = 74701, + [SMALL_STATE(1885)] = 74816, + [SMALL_STATE(1886)] = 74931, + [SMALL_STATE(1887)] = 75046, + [SMALL_STATE(1888)] = 75161, + [SMALL_STATE(1889)] = 75276, + [SMALL_STATE(1890)] = 75345, + [SMALL_STATE(1891)] = 75451, + [SMALL_STATE(1892)] = 75557, + [SMALL_STATE(1893)] = 75663, + [SMALL_STATE(1894)] = 75769, + [SMALL_STATE(1895)] = 75871, + [SMALL_STATE(1896)] = 75946, + [SMALL_STATE(1897)] = 76038, + [SMALL_STATE(1898)] = 76105, + [SMALL_STATE(1899)] = 76210, + [SMALL_STATE(1900)] = 76315, + [SMALL_STATE(1901)] = 76382, + [SMALL_STATE(1902)] = 76457, + [SMALL_STATE(1903)] = 76532, + [SMALL_STATE(1904)] = 76635, + [SMALL_STATE(1905)] = 76710, + [SMALL_STATE(1906)] = 76787, + [SMALL_STATE(1907)] = 76890, + [SMALL_STATE(1908)] = 76992, + [SMALL_STATE(1909)] = 77094, + [SMALL_STATE(1910)] = 77196, + [SMALL_STATE(1911)] = 77298, + [SMALL_STATE(1912)] = 77400, + [SMALL_STATE(1913)] = 77500, + [SMALL_STATE(1914)] = 77602, + [SMALL_STATE(1915)] = 77704, + [SMALL_STATE(1916)] = 77802, + [SMALL_STATE(1917)] = 77904, + [SMALL_STATE(1918)] = 78006, + [SMALL_STATE(1919)] = 78108, + [SMALL_STATE(1920)] = 78207, + [SMALL_STATE(1921)] = 78306, + [SMALL_STATE(1922)] = 78405, + [SMALL_STATE(1923)] = 78504, + [SMALL_STATE(1924)] = 78603, + [SMALL_STATE(1925)] = 78702, + [SMALL_STATE(1926)] = 78775, + [SMALL_STATE(1927)] = 78841, + [SMALL_STATE(1928)] = 78937, + [SMALL_STATE(1929)] = 79033, + [SMALL_STATE(1930)] = 79101, + [SMALL_STATE(1931)] = 79197, + [SMALL_STATE(1932)] = 79293, + [SMALL_STATE(1933)] = 79359, + [SMALL_STATE(1934)] = 79424, + [SMALL_STATE(1935)] = 79481, + [SMALL_STATE(1936)] = 79538, + [SMALL_STATE(1937)] = 79599, + [SMALL_STATE(1938)] = 79662, + [SMALL_STATE(1939)] = 79719, + [SMALL_STATE(1940)] = 79776, + [SMALL_STATE(1941)] = 79833, + [SMALL_STATE(1942)] = 79894, + [SMALL_STATE(1943)] = 79957, + [SMALL_STATE(1944)] = 80020, + [SMALL_STATE(1945)] = 80083, + [SMALL_STATE(1946)] = 80140, + [SMALL_STATE(1947)] = 80203, + [SMALL_STATE(1948)] = 80294, + [SMALL_STATE(1949)] = 80385, + [SMALL_STATE(1950)] = 80476, + [SMALL_STATE(1951)] = 80567, + [SMALL_STATE(1952)] = 80630, + [SMALL_STATE(1953)] = 80693, + [SMALL_STATE(1954)] = 80784, + [SMALL_STATE(1955)] = 80875, + [SMALL_STATE(1956)] = 80966, + [SMALL_STATE(1957)] = 81057, + [SMALL_STATE(1958)] = 81120, + [SMALL_STATE(1959)] = 81177, + [SMALL_STATE(1960)] = 81265, + [SMALL_STATE(1961)] = 81353, + [SMALL_STATE(1962)] = 81445, + [SMALL_STATE(1963)] = 81533, + [SMALL_STATE(1964)] = 81621, + [SMALL_STATE(1965)] = 81709, + [SMALL_STATE(1966)] = 81797, + [SMALL_STATE(1967)] = 81885, + [SMALL_STATE(1968)] = 81973, + [SMALL_STATE(1969)] = 82061, + [SMALL_STATE(1970)] = 82149, + [SMALL_STATE(1971)] = 82237, + [SMALL_STATE(1972)] = 82325, + [SMALL_STATE(1973)] = 82413, + [SMALL_STATE(1974)] = 82501, + [SMALL_STATE(1975)] = 82589, + [SMALL_STATE(1976)] = 82677, + [SMALL_STATE(1977)] = 82765, + [SMALL_STATE(1978)] = 82857, + [SMALL_STATE(1979)] = 82945, + [SMALL_STATE(1980)] = 83049, + [SMALL_STATE(1981)] = 83137, + [SMALL_STATE(1982)] = 83225, + [SMALL_STATE(1983)] = 83313, + [SMALL_STATE(1984)] = 83401, + [SMALL_STATE(1985)] = 83489, + [SMALL_STATE(1986)] = 83577, + [SMALL_STATE(1987)] = 83665, + [SMALL_STATE(1988)] = 83753, + [SMALL_STATE(1989)] = 83841, + [SMALL_STATE(1990)] = 83929, + [SMALL_STATE(1991)] = 84017, + [SMALL_STATE(1992)] = 84109, + [SMALL_STATE(1993)] = 84197, + [SMALL_STATE(1994)] = 84285, + [SMALL_STATE(1995)] = 84373, + [SMALL_STATE(1996)] = 84465, + [SMALL_STATE(1997)] = 84553, + [SMALL_STATE(1998)] = 84641, + [SMALL_STATE(1999)] = 84729, + [SMALL_STATE(2000)] = 84817, + [SMALL_STATE(2001)] = 84905, + [SMALL_STATE(2002)] = 84993, + [SMALL_STATE(2003)] = 85081, + [SMALL_STATE(2004)] = 85173, + [SMALL_STATE(2005)] = 85261, + [SMALL_STATE(2006)] = 85353, + [SMALL_STATE(2007)] = 85441, + [SMALL_STATE(2008)] = 85529, + [SMALL_STATE(2009)] = 85617, + [SMALL_STATE(2010)] = 85705, + [SMALL_STATE(2011)] = 85793, + [SMALL_STATE(2012)] = 85885, + [SMALL_STATE(2013)] = 85973, + [SMALL_STATE(2014)] = 86061, + [SMALL_STATE(2015)] = 86149, + [SMALL_STATE(2016)] = 86237, + [SMALL_STATE(2017)] = 86329, + [SMALL_STATE(2018)] = 86417, + [SMALL_STATE(2019)] = 86509, + [SMALL_STATE(2020)] = 86601, + [SMALL_STATE(2021)] = 86693, + [SMALL_STATE(2022)] = 86785, + [SMALL_STATE(2023)] = 86877, + [SMALL_STATE(2024)] = 86969, + [SMALL_STATE(2025)] = 87061, + [SMALL_STATE(2026)] = 87153, + [SMALL_STATE(2027)] = 87245, + [SMALL_STATE(2028)] = 87337, + [SMALL_STATE(2029)] = 87425, + [SMALL_STATE(2030)] = 87513, + [SMALL_STATE(2031)] = 87601, + [SMALL_STATE(2032)] = 87689, + [SMALL_STATE(2033)] = 87777, + [SMALL_STATE(2034)] = 87865, + [SMALL_STATE(2035)] = 87953, + [SMALL_STATE(2036)] = 88057, + [SMALL_STATE(2037)] = 88149, + [SMALL_STATE(2038)] = 88237, + [SMALL_STATE(2039)] = 88325, + [SMALL_STATE(2040)] = 88413, + [SMALL_STATE(2041)] = 88517, + [SMALL_STATE(2042)] = 88605, + [SMALL_STATE(2043)] = 88693, + [SMALL_STATE(2044)] = 88781, + [SMALL_STATE(2045)] = 88869, + [SMALL_STATE(2046)] = 88961, + [SMALL_STATE(2047)] = 89049, + [SMALL_STATE(2048)] = 89141, + [SMALL_STATE(2049)] = 89229, + [SMALL_STATE(2050)] = 89333, + [SMALL_STATE(2051)] = 89421, + [SMALL_STATE(2052)] = 89509, + [SMALL_STATE(2053)] = 89597, + [SMALL_STATE(2054)] = 89685, + [SMALL_STATE(2055)] = 89773, + [SMALL_STATE(2056)] = 89877, + [SMALL_STATE(2057)] = 89965, + [SMALL_STATE(2058)] = 90053, + [SMALL_STATE(2059)] = 90141, + [SMALL_STATE(2060)] = 90233, + [SMALL_STATE(2061)] = 90325, + [SMALL_STATE(2062)] = 90413, + [SMALL_STATE(2063)] = 90501, + [SMALL_STATE(2064)] = 90589, + [SMALL_STATE(2065)] = 90677, + [SMALL_STATE(2066)] = 90765, + [SMALL_STATE(2067)] = 90853, + [SMALL_STATE(2068)] = 90954, + [SMALL_STATE(2069)] = 91055, + [SMALL_STATE(2070)] = 91156, + [SMALL_STATE(2071)] = 91257, + [SMALL_STATE(2072)] = 91356, + [SMALL_STATE(2073)] = 91455, + [SMALL_STATE(2074)] = 91554, + [SMALL_STATE(2075)] = 91653, + [SMALL_STATE(2076)] = 91752, + [SMALL_STATE(2077)] = 91851, + [SMALL_STATE(2078)] = 91950, + [SMALL_STATE(2079)] = 92049, + [SMALL_STATE(2080)] = 92148, + [SMALL_STATE(2081)] = 92247, + [SMALL_STATE(2082)] = 92346, + [SMALL_STATE(2083)] = 92442, + [SMALL_STATE(2084)] = 92538, + [SMALL_STATE(2085)] = 92634, + [SMALL_STATE(2086)] = 92730, + [SMALL_STATE(2087)] = 92826, + [SMALL_STATE(2088)] = 92922, + [SMALL_STATE(2089)] = 93018, + [SMALL_STATE(2090)] = 93114, + [SMALL_STATE(2091)] = 93210, + [SMALL_STATE(2092)] = 93298, + [SMALL_STATE(2093)] = 93394, + [SMALL_STATE(2094)] = 93482, + [SMALL_STATE(2095)] = 93552, + [SMALL_STATE(2096)] = 93624, + [SMALL_STATE(2097)] = 93678, + [SMALL_STATE(2098)] = 93732, + [SMALL_STATE(2099)] = 93786, + [SMALL_STATE(2100)] = 93848, + [SMALL_STATE(2101)] = 93902, + [SMALL_STATE(2102)] = 93975, + [SMALL_STATE(2103)] = 94038, + [SMALL_STATE(2104)] = 94097, + [SMALL_STATE(2105)] = 94156, + [SMALL_STATE(2106)] = 94221, + [SMALL_STATE(2107)] = 94290, + [SMALL_STATE(2108)] = 94361, + [SMALL_STATE(2109)] = 94446, + [SMALL_STATE(2110)] = 94501, + [SMALL_STATE(2111)] = 94560, + [SMALL_STATE(2112)] = 94645, + [SMALL_STATE(2113)] = 94712, + [SMALL_STATE(2114)] = 94783, + [SMALL_STATE(2115)] = 94868, + [SMALL_STATE(2116)] = 94939, + [SMALL_STATE(2117)] = 95024, + [SMALL_STATE(2118)] = 95109, + [SMALL_STATE(2119)] = 95168, + [SMALL_STATE(2120)] = 95253, + [SMALL_STATE(2121)] = 95337, + [SMALL_STATE(2122)] = 95419, + [SMALL_STATE(2123)] = 95503, + [SMALL_STATE(2124)] = 95551, + [SMALL_STATE(2125)] = 95601, + [SMALL_STATE(2126)] = 95651, + [SMALL_STATE(2127)] = 95699, + [SMALL_STATE(2128)] = 95783, + [SMALL_STATE(2129)] = 95867, + [SMALL_STATE(2130)] = 95914, + [SMALL_STATE(2131)] = 95961, + [SMALL_STATE(2132)] = 96012, + [SMALL_STATE(2133)] = 96059, + [SMALL_STATE(2134)] = 96106, + [SMALL_STATE(2135)] = 96153, + [SMALL_STATE(2136)] = 96200, + [SMALL_STATE(2137)] = 96247, + [SMALL_STATE(2138)] = 96294, + [SMALL_STATE(2139)] = 96341, + [SMALL_STATE(2140)] = 96388, + [SMALL_STATE(2141)] = 96435, + [SMALL_STATE(2142)] = 96482, + [SMALL_STATE(2143)] = 96529, + [SMALL_STATE(2144)] = 96580, + [SMALL_STATE(2145)] = 96631, + [SMALL_STATE(2146)] = 96678, + [SMALL_STATE(2147)] = 96725, + [SMALL_STATE(2148)] = 96772, + [SMALL_STATE(2149)] = 96819, + [SMALL_STATE(2150)] = 96870, + [SMALL_STATE(2151)] = 96921, + [SMALL_STATE(2152)] = 96968, + [SMALL_STATE(2153)] = 97019, + [SMALL_STATE(2154)] = 97070, + [SMALL_STATE(2155)] = 97117, + [SMALL_STATE(2156)] = 97164, + [SMALL_STATE(2157)] = 97211, + [SMALL_STATE(2158)] = 97278, + [SMALL_STATE(2159)] = 97325, + [SMALL_STATE(2160)] = 97372, + [SMALL_STATE(2161)] = 97419, + [SMALL_STATE(2162)] = 97466, + [SMALL_STATE(2163)] = 97517, + [SMALL_STATE(2164)] = 97564, + [SMALL_STATE(2165)] = 97611, + [SMALL_STATE(2166)] = 97696, + [SMALL_STATE(2167)] = 97743, + [SMALL_STATE(2168)] = 97790, + [SMALL_STATE(2169)] = 97845, + [SMALL_STATE(2170)] = 97892, + [SMALL_STATE(2171)] = 97945, + [SMALL_STATE(2172)] = 97996, + [SMALL_STATE(2173)] = 98043, + [SMALL_STATE(2174)] = 98092, + [SMALL_STATE(2175)] = 98147, [SMALL_STATE(2176)] = 98202, - [SMALL_STATE(2177)] = 98254, - [SMALL_STATE(2178)] = 98304, - [SMALL_STATE(2179)] = 98373, + [SMALL_STATE(2177)] = 98261, + [SMALL_STATE(2178)] = 98342, + [SMALL_STATE(2179)] = 98393, [SMALL_STATE(2180)] = 98452, - [SMALL_STATE(2181)] = 98497, - [SMALL_STATE(2182)] = 98548, - [SMALL_STATE(2183)] = 98593, - [SMALL_STATE(2184)] = 98658, - [SMALL_STATE(2185)] = 98737, - [SMALL_STATE(2186)] = 98786, - [SMALL_STATE(2187)] = 98833, - [SMALL_STATE(2188)] = 98882, - [SMALL_STATE(2189)] = 98927, - [SMALL_STATE(2190)] = 98982, - [SMALL_STATE(2191)] = 99043, - [SMALL_STATE(2192)] = 99090, - [SMALL_STATE(2193)] = 99145, - [SMALL_STATE(2194)] = 99204, - [SMALL_STATE(2195)] = 99271, - [SMALL_STATE(2196)] = 99336, - [SMALL_STATE(2197)] = 99399, - [SMALL_STATE(2198)] = 99454, - [SMALL_STATE(2199)] = 99501, - [SMALL_STATE(2200)] = 99552, - [SMALL_STATE(2201)] = 99611, - [SMALL_STATE(2202)] = 99690, - [SMALL_STATE(2203)] = 99745, - [SMALL_STATE(2204)] = 99824, - [SMALL_STATE(2205)] = 99875, - [SMALL_STATE(2206)] = 99932, - [SMALL_STATE(2207)] = 99981, - [SMALL_STATE(2208)] = 100036, - [SMALL_STATE(2209)] = 100087, - [SMALL_STATE(2210)] = 100150, - [SMALL_STATE(2211)] = 100199, - [SMALL_STATE(2212)] = 100250, - [SMALL_STATE(2213)] = 100305, - [SMALL_STATE(2214)] = 100356, - [SMALL_STATE(2215)] = 100435, - [SMALL_STATE(2216)] = 100490, - [SMALL_STATE(2217)] = 100535, - [SMALL_STATE(2218)] = 100590, - [SMALL_STATE(2219)] = 100659, - [SMALL_STATE(2220)] = 100708, - [SMALL_STATE(2221)] = 100757, - [SMALL_STATE(2222)] = 100836, - [SMALL_STATE(2223)] = 100897, - [SMALL_STATE(2224)] = 100964, - [SMALL_STATE(2225)] = 101013, - [SMALL_STATE(2226)] = 101068, - [SMALL_STATE(2227)] = 101129, - [SMALL_STATE(2228)] = 101198, - [SMALL_STATE(2229)] = 101253, - [SMALL_STATE(2230)] = 101312, - [SMALL_STATE(2231)] = 101379, - [SMALL_STATE(2232)] = 101444, - [SMALL_STATE(2233)] = 101507, - [SMALL_STATE(2234)] = 101562, - [SMALL_STATE(2235)] = 101611, - [SMALL_STATE(2236)] = 101658, - [SMALL_STATE(2237)] = 101713, - [SMALL_STATE(2238)] = 101761, - [SMALL_STATE(2239)] = 101805, - [SMALL_STATE(2240)] = 101853, - [SMALL_STATE(2241)] = 101897, - [SMALL_STATE(2242)] = 101943, - [SMALL_STATE(2243)] = 101991, - [SMALL_STATE(2244)] = 102035, - [SMALL_STATE(2245)] = 102079, - [SMALL_STATE(2246)] = 102123, - [SMALL_STATE(2247)] = 102171, - [SMALL_STATE(2248)] = 102215, - [SMALL_STATE(2249)] = 102259, - [SMALL_STATE(2250)] = 102303, - [SMALL_STATE(2251)] = 102347, - [SMALL_STATE(2252)] = 102391, - [SMALL_STATE(2253)] = 102435, - [SMALL_STATE(2254)] = 102483, - [SMALL_STATE(2255)] = 102527, - [SMALL_STATE(2256)] = 102571, - [SMALL_STATE(2257)] = 102615, - [SMALL_STATE(2258)] = 102659, - [SMALL_STATE(2259)] = 102703, - [SMALL_STATE(2260)] = 102747, - [SMALL_STATE(2261)] = 102791, - [SMALL_STATE(2262)] = 102835, - [SMALL_STATE(2263)] = 102883, - [SMALL_STATE(2264)] = 102927, - [SMALL_STATE(2265)] = 103005, - [SMALL_STATE(2266)] = 103049, - [SMALL_STATE(2267)] = 103093, - [SMALL_STATE(2268)] = 103141, - [SMALL_STATE(2269)] = 103185, - [SMALL_STATE(2270)] = 103233, - [SMALL_STATE(2271)] = 103277, - [SMALL_STATE(2272)] = 103321, - [SMALL_STATE(2273)] = 103367, - [SMALL_STATE(2274)] = 103411, - [SMALL_STATE(2275)] = 103457, - [SMALL_STATE(2276)] = 103511, - [SMALL_STATE(2277)] = 103563, - [SMALL_STATE(2278)] = 103617, - [SMALL_STATE(2279)] = 103667, - [SMALL_STATE(2280)] = 103715, - [SMALL_STATE(2281)] = 103761, - [SMALL_STATE(2282)] = 103813, - [SMALL_STATE(2283)] = 103857, - [SMALL_STATE(2284)] = 103909, - [SMALL_STATE(2285)] = 103953, - [SMALL_STATE(2286)] = 104001, - [SMALL_STATE(2287)] = 104045, - [SMALL_STATE(2288)] = 104093, - [SMALL_STATE(2289)] = 104137, - [SMALL_STATE(2290)] = 104181, - [SMALL_STATE(2291)] = 104225, - [SMALL_STATE(2292)] = 104271, - [SMALL_STATE(2293)] = 104321, - [SMALL_STATE(2294)] = 104367, - [SMALL_STATE(2295)] = 104411, - [SMALL_STATE(2296)] = 104455, - [SMALL_STATE(2297)] = 104523, - [SMALL_STATE(2298)] = 104569, - [SMALL_STATE(2299)] = 104617, - [SMALL_STATE(2300)] = 104661, - [SMALL_STATE(2301)] = 104705, - [SMALL_STATE(2302)] = 104749, - [SMALL_STATE(2303)] = 104793, - [SMALL_STATE(2304)] = 104837, - [SMALL_STATE(2305)] = 104881, - [SMALL_STATE(2306)] = 104925, - [SMALL_STATE(2307)] = 104969, - [SMALL_STATE(2308)] = 105021, - [SMALL_STATE(2309)] = 105065, - [SMALL_STATE(2310)] = 105115, - [SMALL_STATE(2311)] = 105163, - [SMALL_STATE(2312)] = 105207, - [SMALL_STATE(2313)] = 105251, - [SMALL_STATE(2314)] = 105299, - [SMALL_STATE(2315)] = 105347, - [SMALL_STATE(2316)] = 105393, - [SMALL_STATE(2317)] = 105447, - [SMALL_STATE(2318)] = 105507, - [SMALL_STATE(2319)] = 105561, - [SMALL_STATE(2320)] = 105619, - [SMALL_STATE(2321)] = 105685, - [SMALL_STATE(2322)] = 105733, - [SMALL_STATE(2323)] = 105795, - [SMALL_STATE(2324)] = 105839, - [SMALL_STATE(2325)] = 105891, - [SMALL_STATE(2326)] = 105935, - [SMALL_STATE(2327)] = 105987, - [SMALL_STATE(2328)] = 106031, - [SMALL_STATE(2329)] = 106075, - [SMALL_STATE(2330)] = 106123, - [SMALL_STATE(2331)] = 106169, - [SMALL_STATE(2332)] = 106213, - [SMALL_STATE(2333)] = 106257, - [SMALL_STATE(2334)] = 106301, - [SMALL_STATE(2335)] = 106345, - [SMALL_STATE(2336)] = 106389, - [SMALL_STATE(2337)] = 106433, - [SMALL_STATE(2338)] = 106477, - [SMALL_STATE(2339)] = 106521, - [SMALL_STATE(2340)] = 106565, - [SMALL_STATE(2341)] = 106609, - [SMALL_STATE(2342)] = 106653, - [SMALL_STATE(2343)] = 106697, - [SMALL_STATE(2344)] = 106741, - [SMALL_STATE(2345)] = 106785, - [SMALL_STATE(2346)] = 106833, - [SMALL_STATE(2347)] = 106877, - [SMALL_STATE(2348)] = 106921, - [SMALL_STATE(2349)] = 106969, - [SMALL_STATE(2350)] = 107013, - [SMALL_STATE(2351)] = 107057, - [SMALL_STATE(2352)] = 107101, - [SMALL_STATE(2353)] = 107145, - [SMALL_STATE(2354)] = 107189, - [SMALL_STATE(2355)] = 107235, - [SMALL_STATE(2356)] = 107281, - [SMALL_STATE(2357)] = 107325, - [SMALL_STATE(2358)] = 107369, - [SMALL_STATE(2359)] = 107425, - [SMALL_STATE(2360)] = 107473, - [SMALL_STATE(2361)] = 107517, - [SMALL_STATE(2362)] = 107567, - [SMALL_STATE(2363)] = 107611, - [SMALL_STATE(2364)] = 107655, - [SMALL_STATE(2365)] = 107699, - [SMALL_STATE(2366)] = 107743, - [SMALL_STATE(2367)] = 107787, - [SMALL_STATE(2368)] = 107831, - [SMALL_STATE(2369)] = 107875, - [SMALL_STATE(2370)] = 107919, - [SMALL_STATE(2371)] = 107963, - [SMALL_STATE(2372)] = 108007, - [SMALL_STATE(2373)] = 108051, - [SMALL_STATE(2374)] = 108095, - [SMALL_STATE(2375)] = 108139, - [SMALL_STATE(2376)] = 108183, - [SMALL_STATE(2377)] = 108227, - [SMALL_STATE(2378)] = 108271, - [SMALL_STATE(2379)] = 108315, - [SMALL_STATE(2380)] = 108359, - [SMALL_STATE(2381)] = 108403, - [SMALL_STATE(2382)] = 108447, - [SMALL_STATE(2383)] = 108491, - [SMALL_STATE(2384)] = 108535, - [SMALL_STATE(2385)] = 108579, - [SMALL_STATE(2386)] = 108623, - [SMALL_STATE(2387)] = 108667, - [SMALL_STATE(2388)] = 108711, - [SMALL_STATE(2389)] = 108755, - [SMALL_STATE(2390)] = 108801, - [SMALL_STATE(2391)] = 108845, - [SMALL_STATE(2392)] = 108891, - [SMALL_STATE(2393)] = 108935, - [SMALL_STATE(2394)] = 108999, - [SMALL_STATE(2395)] = 109042, - [SMALL_STATE(2396)] = 109087, - [SMALL_STATE(2397)] = 109130, - [SMALL_STATE(2398)] = 109177, - [SMALL_STATE(2399)] = 109220, - [SMALL_STATE(2400)] = 109263, - [SMALL_STATE(2401)] = 109306, - [SMALL_STATE(2402)] = 109349, - [SMALL_STATE(2403)] = 109394, - [SMALL_STATE(2404)] = 109437, - [SMALL_STATE(2405)] = 109480, - [SMALL_STATE(2406)] = 109527, - [SMALL_STATE(2407)] = 109570, - [SMALL_STATE(2408)] = 109613, - [SMALL_STATE(2409)] = 109656, - [SMALL_STATE(2410)] = 109699, - [SMALL_STATE(2411)] = 109744, - [SMALL_STATE(2412)] = 109789, - [SMALL_STATE(2413)] = 109834, - [SMALL_STATE(2414)] = 109879, - [SMALL_STATE(2415)] = 109922, - [SMALL_STATE(2416)] = 109973, - [SMALL_STATE(2417)] = 110016, - [SMALL_STATE(2418)] = 110065, - [SMALL_STATE(2419)] = 110112, - [SMALL_STATE(2420)] = 110155, - [SMALL_STATE(2421)] = 110200, - [SMALL_STATE(2422)] = 110243, - [SMALL_STATE(2423)] = 110294, - [SMALL_STATE(2424)] = 110337, - [SMALL_STATE(2425)] = 110388, - [SMALL_STATE(2426)] = 110435, - [SMALL_STATE(2427)] = 110478, - [SMALL_STATE(2428)] = 110521, - [SMALL_STATE(2429)] = 110564, - [SMALL_STATE(2430)] = 110607, - [SMALL_STATE(2431)] = 110650, - [SMALL_STATE(2432)] = 110693, - [SMALL_STATE(2433)] = 110736, - [SMALL_STATE(2434)] = 110779, - [SMALL_STATE(2435)] = 110822, - [SMALL_STATE(2436)] = 110865, - [SMALL_STATE(2437)] = 110910, - [SMALL_STATE(2438)] = 110953, - [SMALL_STATE(2439)] = 110996, - [SMALL_STATE(2440)] = 111045, - [SMALL_STATE(2441)] = 111090, - [SMALL_STATE(2442)] = 111133, - [SMALL_STATE(2443)] = 111176, - [SMALL_STATE(2444)] = 111223, - [SMALL_STATE(2445)] = 111268, - [SMALL_STATE(2446)] = 111313, - [SMALL_STATE(2447)] = 111358, - [SMALL_STATE(2448)] = 111411, - [SMALL_STATE(2449)] = 111464, - [SMALL_STATE(2450)] = 111507, - [SMALL_STATE(2451)] = 111550, - [SMALL_STATE(2452)] = 111593, - [SMALL_STATE(2453)] = 111672, - [SMALL_STATE(2454)] = 111715, - [SMALL_STATE(2455)] = 111758, - [SMALL_STATE(2456)] = 111801, - [SMALL_STATE(2457)] = 111844, - [SMALL_STATE(2458)] = 111895, - [SMALL_STATE(2459)] = 111940, - [SMALL_STATE(2460)] = 111989, - [SMALL_STATE(2461)] = 112036, - [SMALL_STATE(2462)] = 112081, - [SMALL_STATE(2463)] = 112132, - [SMALL_STATE(2464)] = 112183, - [SMALL_STATE(2465)] = 112228, - [SMALL_STATE(2466)] = 112273, - [SMALL_STATE(2467)] = 112322, - [SMALL_STATE(2468)] = 112367, - [SMALL_STATE(2469)] = 112410, - [SMALL_STATE(2470)] = 112453, - [SMALL_STATE(2471)] = 112504, - [SMALL_STATE(2472)] = 112547, - [SMALL_STATE(2473)] = 112596, - [SMALL_STATE(2474)] = 112643, - [SMALL_STATE(2475)] = 112688, - [SMALL_STATE(2476)] = 112739, - [SMALL_STATE(2477)] = 112788, - [SMALL_STATE(2478)] = 112839, - [SMALL_STATE(2479)] = 112906, - [SMALL_STATE(2480)] = 112949, - [SMALL_STATE(2481)] = 112992, - [SMALL_STATE(2482)] = 113035, - [SMALL_STATE(2483)] = 113080, - [SMALL_STATE(2484)] = 113123, - [SMALL_STATE(2485)] = 113166, - [SMALL_STATE(2486)] = 113209, - [SMALL_STATE(2487)] = 113252, - [SMALL_STATE(2488)] = 113295, - [SMALL_STATE(2489)] = 113338, - [SMALL_STATE(2490)] = 113381, - [SMALL_STATE(2491)] = 113424, - [SMALL_STATE(2492)] = 113467, - [SMALL_STATE(2493)] = 113510, - [SMALL_STATE(2494)] = 113553, - [SMALL_STATE(2495)] = 113596, - [SMALL_STATE(2496)] = 113639, - [SMALL_STATE(2497)] = 113682, - [SMALL_STATE(2498)] = 113725, - [SMALL_STATE(2499)] = 113768, - [SMALL_STATE(2500)] = 113811, - [SMALL_STATE(2501)] = 113854, - [SMALL_STATE(2502)] = 113897, - [SMALL_STATE(2503)] = 113940, - [SMALL_STATE(2504)] = 113983, - [SMALL_STATE(2505)] = 114026, - [SMALL_STATE(2506)] = 114077, - [SMALL_STATE(2507)] = 114126, - [SMALL_STATE(2508)] = 114169, - [SMALL_STATE(2509)] = 114212, - [SMALL_STATE(2510)] = 114255, - [SMALL_STATE(2511)] = 114298, - [SMALL_STATE(2512)] = 114341, - [SMALL_STATE(2513)] = 114384, - [SMALL_STATE(2514)] = 114427, - [SMALL_STATE(2515)] = 114470, - [SMALL_STATE(2516)] = 114513, - [SMALL_STATE(2517)] = 114556, - [SMALL_STATE(2518)] = 114599, - [SMALL_STATE(2519)] = 114646, - [SMALL_STATE(2520)] = 114693, - [SMALL_STATE(2521)] = 114736, - [SMALL_STATE(2522)] = 114779, - [SMALL_STATE(2523)] = 114858, - [SMALL_STATE(2524)] = 114901, - [SMALL_STATE(2525)] = 114944, - [SMALL_STATE(2526)] = 114987, - [SMALL_STATE(2527)] = 115030, - [SMALL_STATE(2528)] = 115073, - [SMALL_STATE(2529)] = 115118, - [SMALL_STATE(2530)] = 115163, - [SMALL_STATE(2531)] = 115208, - [SMALL_STATE(2532)] = 115253, - [SMALL_STATE(2533)] = 115296, - [SMALL_STATE(2534)] = 115339, - [SMALL_STATE(2535)] = 115382, - [SMALL_STATE(2536)] = 115425, - [SMALL_STATE(2537)] = 115468, - [SMALL_STATE(2538)] = 115511, - [SMALL_STATE(2539)] = 115554, - [SMALL_STATE(2540)] = 115597, - [SMALL_STATE(2541)] = 115640, - [SMALL_STATE(2542)] = 115683, - [SMALL_STATE(2543)] = 115726, - [SMALL_STATE(2544)] = 115769, - [SMALL_STATE(2545)] = 115812, - [SMALL_STATE(2546)] = 115855, - [SMALL_STATE(2547)] = 115898, - [SMALL_STATE(2548)] = 115941, - [SMALL_STATE(2549)] = 115984, - [SMALL_STATE(2550)] = 116037, - [SMALL_STATE(2551)] = 116080, - [SMALL_STATE(2552)] = 116139, - [SMALL_STATE(2553)] = 116192, - [SMALL_STATE(2554)] = 116249, - [SMALL_STATE(2555)] = 116314, - [SMALL_STATE(2556)] = 116377, - [SMALL_STATE(2557)] = 116438, - [SMALL_STATE(2558)] = 116481, - [SMALL_STATE(2559)] = 116524, - [SMALL_STATE(2560)] = 116567, - [SMALL_STATE(2561)] = 116610, - [SMALL_STATE(2562)] = 116653, - [SMALL_STATE(2563)] = 116696, - [SMALL_STATE(2564)] = 116739, - [SMALL_STATE(2565)] = 116782, - [SMALL_STATE(2566)] = 116825, - [SMALL_STATE(2567)] = 116868, - [SMALL_STATE(2568)] = 116911, - [SMALL_STATE(2569)] = 116954, - [SMALL_STATE(2570)] = 116997, - [SMALL_STATE(2571)] = 117040, - [SMALL_STATE(2572)] = 117083, - [SMALL_STATE(2573)] = 117126, - [SMALL_STATE(2574)] = 117168, - [SMALL_STATE(2575)] = 117212, - [SMALL_STATE(2576)] = 117256, - [SMALL_STATE(2577)] = 117300, - [SMALL_STATE(2578)] = 117342, - [SMALL_STATE(2579)] = 117384, - [SMALL_STATE(2580)] = 117426, - [SMALL_STATE(2581)] = 117468, - [SMALL_STATE(2582)] = 117510, - [SMALL_STATE(2583)] = 117552, - [SMALL_STATE(2584)] = 117594, - [SMALL_STATE(2585)] = 117636, - [SMALL_STATE(2586)] = 117678, - [SMALL_STATE(2587)] = 117720, - [SMALL_STATE(2588)] = 117762, - [SMALL_STATE(2589)] = 117804, - [SMALL_STATE(2590)] = 117848, - [SMALL_STATE(2591)] = 117894, - [SMALL_STATE(2592)] = 117940, - [SMALL_STATE(2593)] = 117986, - [SMALL_STATE(2594)] = 118032, - [SMALL_STATE(2595)] = 118082, - [SMALL_STATE(2596)] = 118130, - [SMALL_STATE(2597)] = 118176, - [SMALL_STATE(2598)] = 118220, - [SMALL_STATE(2599)] = 118270, - [SMALL_STATE(2600)] = 118320, - [SMALL_STATE(2601)] = 118368, - [SMALL_STATE(2602)] = 118410, - [SMALL_STATE(2603)] = 118452, - [SMALL_STATE(2604)] = 118494, - [SMALL_STATE(2605)] = 118536, - [SMALL_STATE(2606)] = 118578, - [SMALL_STATE(2607)] = 118624, - [SMALL_STATE(2608)] = 118666, - [SMALL_STATE(2609)] = 118708, - [SMALL_STATE(2610)] = 118750, - [SMALL_STATE(2611)] = 118792, - [SMALL_STATE(2612)] = 118834, - [SMALL_STATE(2613)] = 118876, - [SMALL_STATE(2614)] = 118918, - [SMALL_STATE(2615)] = 118960, - [SMALL_STATE(2616)] = 119002, - [SMALL_STATE(2617)] = 119044, - [SMALL_STATE(2618)] = 119086, - [SMALL_STATE(2619)] = 119128, - [SMALL_STATE(2620)] = 119170, - [SMALL_STATE(2621)] = 119212, - [SMALL_STATE(2622)] = 119256, - [SMALL_STATE(2623)] = 119300, - [SMALL_STATE(2624)] = 119342, - [SMALL_STATE(2625)] = 119384, - [SMALL_STATE(2626)] = 119428, - [SMALL_STATE(2627)] = 119472, - [SMALL_STATE(2628)] = 119518, - [SMALL_STATE(2629)] = 119560, - [SMALL_STATE(2630)] = 119602, - [SMALL_STATE(2631)] = 119644, - [SMALL_STATE(2632)] = 119686, - [SMALL_STATE(2633)] = 119728, - [SMALL_STATE(2634)] = 119770, - [SMALL_STATE(2635)] = 119812, - [SMALL_STATE(2636)] = 119866, - [SMALL_STATE(2637)] = 119908, - [SMALL_STATE(2638)] = 119950, - [SMALL_STATE(2639)] = 119995, - [SMALL_STATE(2640)] = 120036, - [SMALL_STATE(2641)] = 120077, - [SMALL_STATE(2642)] = 120118, - [SMALL_STATE(2643)] = 120159, - [SMALL_STATE(2644)] = 120236, - [SMALL_STATE(2645)] = 120277, - [SMALL_STATE(2646)] = 120318, - [SMALL_STATE(2647)] = 120359, - [SMALL_STATE(2648)] = 120400, - [SMALL_STATE(2649)] = 120441, - [SMALL_STATE(2650)] = 120482, - [SMALL_STATE(2651)] = 120523, - [SMALL_STATE(2652)] = 120564, - [SMALL_STATE(2653)] = 120613, - [SMALL_STATE(2654)] = 120654, - [SMALL_STATE(2655)] = 120695, - [SMALL_STATE(2656)] = 120736, - [SMALL_STATE(2657)] = 120815, - [SMALL_STATE(2658)] = 120856, - [SMALL_STATE(2659)] = 120899, - [SMALL_STATE(2660)] = 120940, - [SMALL_STATE(2661)] = 120981, - [SMALL_STATE(2662)] = 121022, - [SMALL_STATE(2663)] = 121067, - [SMALL_STATE(2664)] = 121110, - [SMALL_STATE(2665)] = 121151, - [SMALL_STATE(2666)] = 121192, - [SMALL_STATE(2667)] = 121235, - [SMALL_STATE(2668)] = 121276, - [SMALL_STATE(2669)] = 121355, - [SMALL_STATE(2670)] = 121398, - [SMALL_STATE(2671)] = 121477, - [SMALL_STATE(2672)] = 121556, - [SMALL_STATE(2673)] = 121635, - [SMALL_STATE(2674)] = 121714, - [SMALL_STATE(2675)] = 121755, - [SMALL_STATE(2676)] = 121834, - [SMALL_STATE(2677)] = 121875, - [SMALL_STATE(2678)] = 121954, - [SMALL_STATE(2679)] = 121995, - [SMALL_STATE(2680)] = 122074, - [SMALL_STATE(2681)] = 122153, - [SMALL_STATE(2682)] = 122232, - [SMALL_STATE(2683)] = 122311, - [SMALL_STATE(2684)] = 122352, - [SMALL_STATE(2685)] = 122431, - [SMALL_STATE(2686)] = 122510, - [SMALL_STATE(2687)] = 122589, - [SMALL_STATE(2688)] = 122668, - [SMALL_STATE(2689)] = 122753, - [SMALL_STATE(2690)] = 122794, - [SMALL_STATE(2691)] = 122835, - [SMALL_STATE(2692)] = 122876, - [SMALL_STATE(2693)] = 122917, - [SMALL_STATE(2694)] = 122958, - [SMALL_STATE(2695)] = 122999, - [SMALL_STATE(2696)] = 123040, - [SMALL_STATE(2697)] = 123119, - [SMALL_STATE(2698)] = 123160, - [SMALL_STATE(2699)] = 123203, - [SMALL_STATE(2700)] = 123244, - [SMALL_STATE(2701)] = 123323, - [SMALL_STATE(2702)] = 123364, - [SMALL_STATE(2703)] = 123405, - [SMALL_STATE(2704)] = 123454, - [SMALL_STATE(2705)] = 123501, - [SMALL_STATE(2706)] = 123546, - [SMALL_STATE(2707)] = 123589, - [SMALL_STATE(2708)] = 123630, - [SMALL_STATE(2709)] = 123671, - [SMALL_STATE(2710)] = 123712, - [SMALL_STATE(2711)] = 123761, - [SMALL_STATE(2712)] = 123838, - [SMALL_STATE(2713)] = 123887, - [SMALL_STATE(2714)] = 123928, - [SMALL_STATE(2715)] = 123969, - [SMALL_STATE(2716)] = 124012, - [SMALL_STATE(2717)] = 124053, - [SMALL_STATE(2718)] = 124094, - [SMALL_STATE(2719)] = 124135, - [SMALL_STATE(2720)] = 124176, - [SMALL_STATE(2721)] = 124255, - [SMALL_STATE(2722)] = 124296, - [SMALL_STATE(2723)] = 124375, - [SMALL_STATE(2724)] = 124416, - [SMALL_STATE(2725)] = 124457, - [SMALL_STATE(2726)] = 124498, - [SMALL_STATE(2727)] = 124541, - [SMALL_STATE(2728)] = 124582, - [SMALL_STATE(2729)] = 124661, - [SMALL_STATE(2730)] = 124740, - [SMALL_STATE(2731)] = 124819, - [SMALL_STATE(2732)] = 124891, - [SMALL_STATE(2733)] = 124963, - [SMALL_STATE(2734)] = 125035, - [SMALL_STATE(2735)] = 125107, - [SMALL_STATE(2736)] = 125183, - [SMALL_STATE(2737)] = 125227, - [SMALL_STATE(2738)] = 125299, - [SMALL_STATE(2739)] = 125371, - [SMALL_STATE(2740)] = 125443, - [SMALL_STATE(2741)] = 125514, - [SMALL_STATE(2742)] = 125585, - [SMALL_STATE(2743)] = 125658, - [SMALL_STATE(2744)] = 125731, - [SMALL_STATE(2745)] = 125802, - [SMALL_STATE(2746)] = 125873, - [SMALL_STATE(2747)] = 125944, - [SMALL_STATE(2748)] = 126017, - [SMALL_STATE(2749)] = 126088, - [SMALL_STATE(2750)] = 126159, - [SMALL_STATE(2751)] = 126230, - [SMALL_STATE(2752)] = 126301, - [SMALL_STATE(2753)] = 126372, - [SMALL_STATE(2754)] = 126443, - [SMALL_STATE(2755)] = 126516, - [SMALL_STATE(2756)] = 126587, - [SMALL_STATE(2757)] = 126658, - [SMALL_STATE(2758)] = 126729, - [SMALL_STATE(2759)] = 126800, - [SMALL_STATE(2760)] = 126871, - [SMALL_STATE(2761)] = 126944, - [SMALL_STATE(2762)] = 127015, - [SMALL_STATE(2763)] = 127086, - [SMALL_STATE(2764)] = 127159, - [SMALL_STATE(2765)] = 127230, - [SMALL_STATE(2766)] = 127301, - [SMALL_STATE(2767)] = 127372, - [SMALL_STATE(2768)] = 127443, - [SMALL_STATE(2769)] = 127514, - [SMALL_STATE(2770)] = 127585, - [SMALL_STATE(2771)] = 127656, - [SMALL_STATE(2772)] = 127727, - [SMALL_STATE(2773)] = 127798, - [SMALL_STATE(2774)] = 127869, - [SMALL_STATE(2775)] = 127942, - [SMALL_STATE(2776)] = 128013, - [SMALL_STATE(2777)] = 128084, - [SMALL_STATE(2778)] = 128155, - [SMALL_STATE(2779)] = 128226, - [SMALL_STATE(2780)] = 128297, - [SMALL_STATE(2781)] = 128368, - [SMALL_STATE(2782)] = 128439, - [SMALL_STATE(2783)] = 128510, - [SMALL_STATE(2784)] = 128578, - [SMALL_STATE(2785)] = 128648, - [SMALL_STATE(2786)] = 128718, - [SMALL_STATE(2787)] = 128788, - [SMALL_STATE(2788)] = 128826, - [SMALL_STATE(2789)] = 128894, - [SMALL_STATE(2790)] = 128962, - [SMALL_STATE(2791)] = 129000, - [SMALL_STATE(2792)] = 129038, - [SMALL_STATE(2793)] = 129106, - [SMALL_STATE(2794)] = 129174, - [SMALL_STATE(2795)] = 129244, - [SMALL_STATE(2796)] = 129282, - [SMALL_STATE(2797)] = 129352, - [SMALL_STATE(2798)] = 129390, - [SMALL_STATE(2799)] = 129458, - [SMALL_STATE(2800)] = 129528, - [SMALL_STATE(2801)] = 129596, - [SMALL_STATE(2802)] = 129666, - [SMALL_STATE(2803)] = 129704, - [SMALL_STATE(2804)] = 129772, - [SMALL_STATE(2805)] = 129840, - [SMALL_STATE(2806)] = 129910, - [SMALL_STATE(2807)] = 129980, - [SMALL_STATE(2808)] = 130045, - [SMALL_STATE(2809)] = 130082, - [SMALL_STATE(2810)] = 130119, - [SMALL_STATE(2811)] = 130156, - [SMALL_STATE(2812)] = 130193, - [SMALL_STATE(2813)] = 130230, - [SMALL_STATE(2814)] = 130267, - [SMALL_STATE(2815)] = 130304, - [SMALL_STATE(2816)] = 130373, - [SMALL_STATE(2817)] = 130410, - [SMALL_STATE(2818)] = 130447, - [SMALL_STATE(2819)] = 130484, - [SMALL_STATE(2820)] = 130521, - [SMALL_STATE(2821)] = 130558, - [SMALL_STATE(2822)] = 130595, - [SMALL_STATE(2823)] = 130632, - [SMALL_STATE(2824)] = 130669, - [SMALL_STATE(2825)] = 130706, - [SMALL_STATE(2826)] = 130775, - [SMALL_STATE(2827)] = 130812, - [SMALL_STATE(2828)] = 130877, - [SMALL_STATE(2829)] = 130914, - [SMALL_STATE(2830)] = 130951, - [SMALL_STATE(2831)] = 130988, - [SMALL_STATE(2832)] = 131025, - [SMALL_STATE(2833)] = 131062, - [SMALL_STATE(2834)] = 131099, - [SMALL_STATE(2835)] = 131168, - [SMALL_STATE(2836)] = 131205, - [SMALL_STATE(2837)] = 131274, - [SMALL_STATE(2838)] = 131311, - [SMALL_STATE(2839)] = 131348, - [SMALL_STATE(2840)] = 131385, - [SMALL_STATE(2841)] = 131422, - [SMALL_STATE(2842)] = 131459, - [SMALL_STATE(2843)] = 131498, - [SMALL_STATE(2844)] = 131535, - [SMALL_STATE(2845)] = 131572, - [SMALL_STATE(2846)] = 131609, - [SMALL_STATE(2847)] = 131648, - [SMALL_STATE(2848)] = 131715, - [SMALL_STATE(2849)] = 131754, - [SMALL_STATE(2850)] = 131823, - [SMALL_STATE(2851)] = 131860, - [SMALL_STATE(2852)] = 131897, - [SMALL_STATE(2853)] = 131934, - [SMALL_STATE(2854)] = 131971, - [SMALL_STATE(2855)] = 132040, - [SMALL_STATE(2856)] = 132077, - [SMALL_STATE(2857)] = 132144, - [SMALL_STATE(2858)] = 132213, - [SMALL_STATE(2859)] = 132282, - [SMALL_STATE(2860)] = 132319, - [SMALL_STATE(2861)] = 132358, - [SMALL_STATE(2862)] = 132427, - [SMALL_STATE(2863)] = 132464, - [SMALL_STATE(2864)] = 132501, - [SMALL_STATE(2865)] = 132538, - [SMALL_STATE(2866)] = 132575, - [SMALL_STATE(2867)] = 132612, - [SMALL_STATE(2868)] = 132649, - [SMALL_STATE(2869)] = 132686, - [SMALL_STATE(2870)] = 132753, - [SMALL_STATE(2871)] = 132790, - [SMALL_STATE(2872)] = 132857, - [SMALL_STATE(2873)] = 132894, - [SMALL_STATE(2874)] = 132931, - [SMALL_STATE(2875)] = 132968, - [SMALL_STATE(2876)] = 133005, - [SMALL_STATE(2877)] = 133042, - [SMALL_STATE(2878)] = 133111, - [SMALL_STATE(2879)] = 133148, - [SMALL_STATE(2880)] = 133185, - [SMALL_STATE(2881)] = 133254, - [SMALL_STATE(2882)] = 133293, - [SMALL_STATE(2883)] = 133330, - [SMALL_STATE(2884)] = 133367, - [SMALL_STATE(2885)] = 133404, - [SMALL_STATE(2886)] = 133443, - [SMALL_STATE(2887)] = 133480, - [SMALL_STATE(2888)] = 133517, - [SMALL_STATE(2889)] = 133554, - [SMALL_STATE(2890)] = 133591, - [SMALL_STATE(2891)] = 133628, - [SMALL_STATE(2892)] = 133697, - [SMALL_STATE(2893)] = 133734, - [SMALL_STATE(2894)] = 133773, - [SMALL_STATE(2895)] = 133842, - [SMALL_STATE(2896)] = 133911, - [SMALL_STATE(2897)] = 133980, - [SMALL_STATE(2898)] = 134049, - [SMALL_STATE(2899)] = 134088, - [SMALL_STATE(2900)] = 134125, - [SMALL_STATE(2901)] = 134192, - [SMALL_STATE(2902)] = 134229, - [SMALL_STATE(2903)] = 134266, - [SMALL_STATE(2904)] = 134303, - [SMALL_STATE(2905)] = 134340, - [SMALL_STATE(2906)] = 134405, - [SMALL_STATE(2907)] = 134442, - [SMALL_STATE(2908)] = 134479, - [SMALL_STATE(2909)] = 134548, - [SMALL_STATE(2910)] = 134617, - [SMALL_STATE(2911)] = 134654, - [SMALL_STATE(2912)] = 134691, - [SMALL_STATE(2913)] = 134728, - [SMALL_STATE(2914)] = 134765, - [SMALL_STATE(2915)] = 134802, - [SMALL_STATE(2916)] = 134871, - [SMALL_STATE(2917)] = 134908, - [SMALL_STATE(2918)] = 134977, - [SMALL_STATE(2919)] = 135014, - [SMALL_STATE(2920)] = 135051, - [SMALL_STATE(2921)] = 135088, - [SMALL_STATE(2922)] = 135125, - [SMALL_STATE(2923)] = 135192, - [SMALL_STATE(2924)] = 135229, - [SMALL_STATE(2925)] = 135266, - [SMALL_STATE(2926)] = 135303, - [SMALL_STATE(2927)] = 135340, - [SMALL_STATE(2928)] = 135376, - [SMALL_STATE(2929)] = 135412, - [SMALL_STATE(2930)] = 135474, - [SMALL_STATE(2931)] = 135510, - [SMALL_STATE(2932)] = 135572, - [SMALL_STATE(2933)] = 135608, - [SMALL_STATE(2934)] = 135644, - [SMALL_STATE(2935)] = 135692, - [SMALL_STATE(2936)] = 135754, - [SMALL_STATE(2937)] = 135792, - [SMALL_STATE(2938)] = 135828, - [SMALL_STATE(2939)] = 135864, - [SMALL_STATE(2940)] = 135900, - [SMALL_STATE(2941)] = 135936, - [SMALL_STATE(2942)] = 135998, - [SMALL_STATE(2943)] = 136034, - [SMALL_STATE(2944)] = 136070, - [SMALL_STATE(2945)] = 136106, - [SMALL_STATE(2946)] = 136142, - [SMALL_STATE(2947)] = 136178, - [SMALL_STATE(2948)] = 136214, - [SMALL_STATE(2949)] = 136250, - [SMALL_STATE(2950)] = 136286, - [SMALL_STATE(2951)] = 136322, - [SMALL_STATE(2952)] = 136358, - [SMALL_STATE(2953)] = 136424, - [SMALL_STATE(2954)] = 136460, - [SMALL_STATE(2955)] = 136496, - [SMALL_STATE(2956)] = 136532, - [SMALL_STATE(2957)] = 136568, - [SMALL_STATE(2958)] = 136604, - [SMALL_STATE(2959)] = 136640, - [SMALL_STATE(2960)] = 136676, - [SMALL_STATE(2961)] = 136712, - [SMALL_STATE(2962)] = 136748, - [SMALL_STATE(2963)] = 136784, - [SMALL_STATE(2964)] = 136820, - [SMALL_STATE(2965)] = 136856, - [SMALL_STATE(2966)] = 136892, - [SMALL_STATE(2967)] = 136928, - [SMALL_STATE(2968)] = 136964, - [SMALL_STATE(2969)] = 137000, - [SMALL_STATE(2970)] = 137048, - [SMALL_STATE(2971)] = 137084, - [SMALL_STATE(2972)] = 137120, - [SMALL_STATE(2973)] = 137156, - [SMALL_STATE(2974)] = 137192, - [SMALL_STATE(2975)] = 137228, - [SMALL_STATE(2976)] = 137264, - [SMALL_STATE(2977)] = 137300, - [SMALL_STATE(2978)] = 137336, - [SMALL_STATE(2979)] = 137372, - [SMALL_STATE(2980)] = 137408, - [SMALL_STATE(2981)] = 137444, - [SMALL_STATE(2982)] = 137480, - [SMALL_STATE(2983)] = 137516, - [SMALL_STATE(2984)] = 137552, - [SMALL_STATE(2985)] = 137588, - [SMALL_STATE(2986)] = 137624, - [SMALL_STATE(2987)] = 137660, - [SMALL_STATE(2988)] = 137696, - [SMALL_STATE(2989)] = 137732, - [SMALL_STATE(2990)] = 137768, - [SMALL_STATE(2991)] = 137804, - [SMALL_STATE(2992)] = 137840, - [SMALL_STATE(2993)] = 137876, - [SMALL_STATE(2994)] = 137912, - [SMALL_STATE(2995)] = 137948, - [SMALL_STATE(2996)] = 137984, - [SMALL_STATE(2997)] = 138020, - [SMALL_STATE(2998)] = 138056, - [SMALL_STATE(2999)] = 138092, - [SMALL_STATE(3000)] = 138128, - [SMALL_STATE(3001)] = 138164, - [SMALL_STATE(3002)] = 138200, - [SMALL_STATE(3003)] = 138236, - [SMALL_STATE(3004)] = 138272, - [SMALL_STATE(3005)] = 138308, - [SMALL_STATE(3006)] = 138344, - [SMALL_STATE(3007)] = 138380, - [SMALL_STATE(3008)] = 138416, - [SMALL_STATE(3009)] = 138452, - [SMALL_STATE(3010)] = 138488, - [SMALL_STATE(3011)] = 138524, - [SMALL_STATE(3012)] = 138560, - [SMALL_STATE(3013)] = 138596, - [SMALL_STATE(3014)] = 138632, - [SMALL_STATE(3015)] = 138668, - [SMALL_STATE(3016)] = 138704, - [SMALL_STATE(3017)] = 138740, - [SMALL_STATE(3018)] = 138776, - [SMALL_STATE(3019)] = 138812, - [SMALL_STATE(3020)] = 138848, - [SMALL_STATE(3021)] = 138884, - [SMALL_STATE(3022)] = 138920, - [SMALL_STATE(3023)] = 138956, - [SMALL_STATE(3024)] = 138992, - [SMALL_STATE(3025)] = 139028, - [SMALL_STATE(3026)] = 139064, - [SMALL_STATE(3027)] = 139100, - [SMALL_STATE(3028)] = 139136, - [SMALL_STATE(3029)] = 139172, - [SMALL_STATE(3030)] = 139208, - [SMALL_STATE(3031)] = 139244, - [SMALL_STATE(3032)] = 139280, - [SMALL_STATE(3033)] = 139316, - [SMALL_STATE(3034)] = 139352, - [SMALL_STATE(3035)] = 139388, - [SMALL_STATE(3036)] = 139424, - [SMALL_STATE(3037)] = 139460, - [SMALL_STATE(3038)] = 139496, - [SMALL_STATE(3039)] = 139532, - [SMALL_STATE(3040)] = 139568, - [SMALL_STATE(3041)] = 139604, - [SMALL_STATE(3042)] = 139640, - [SMALL_STATE(3043)] = 139676, - [SMALL_STATE(3044)] = 139712, - [SMALL_STATE(3045)] = 139748, - [SMALL_STATE(3046)] = 139784, - [SMALL_STATE(3047)] = 139820, - [SMALL_STATE(3048)] = 139856, - [SMALL_STATE(3049)] = 139892, - [SMALL_STATE(3050)] = 139928, - [SMALL_STATE(3051)] = 139964, - [SMALL_STATE(3052)] = 140000, - [SMALL_STATE(3053)] = 140036, - [SMALL_STATE(3054)] = 140072, - [SMALL_STATE(3055)] = 140108, - [SMALL_STATE(3056)] = 140144, - [SMALL_STATE(3057)] = 140180, - [SMALL_STATE(3058)] = 140216, - [SMALL_STATE(3059)] = 140254, - [SMALL_STATE(3060)] = 140290, - [SMALL_STATE(3061)] = 140351, - [SMALL_STATE(3062)] = 140386, - [SMALL_STATE(3063)] = 140421, - [SMALL_STATE(3064)] = 140456, - [SMALL_STATE(3065)] = 140491, - [SMALL_STATE(3066)] = 140526, - [SMALL_STATE(3067)] = 140587, - [SMALL_STATE(3068)] = 140622, - [SMALL_STATE(3069)] = 140683, - [SMALL_STATE(3070)] = 140744, - [SMALL_STATE(3071)] = 140779, - [SMALL_STATE(3072)] = 140814, - [SMALL_STATE(3073)] = 140849, - [SMALL_STATE(3074)] = 140910, - [SMALL_STATE(3075)] = 140971, - [SMALL_STATE(3076)] = 141032, - [SMALL_STATE(3077)] = 141093, - [SMALL_STATE(3078)] = 141128, - [SMALL_STATE(3079)] = 141188, - [SMALL_STATE(3080)] = 141248, - [SMALL_STATE(3081)] = 141308, - [SMALL_STATE(3082)] = 141368, - [SMALL_STATE(3083)] = 141436, - [SMALL_STATE(3084)] = 141504, - [SMALL_STATE(3085)] = 141537, - [SMALL_STATE(3086)] = 141570, - [SMALL_STATE(3087)] = 141603, - [SMALL_STATE(3088)] = 141636, - [SMALL_STATE(3089)] = 141701, - [SMALL_STATE(3090)] = 141734, - [SMALL_STATE(3091)] = 141767, - [SMALL_STATE(3092)] = 141800, - [SMALL_STATE(3093)] = 141855, - [SMALL_STATE(3094)] = 141888, - [SMALL_STATE(3095)] = 141953, - [SMALL_STATE(3096)] = 142006, - [SMALL_STATE(3097)] = 142050, - [SMALL_STATE(3098)] = 142094, - [SMALL_STATE(3099)] = 142137, - [SMALL_STATE(3100)] = 142178, - [SMALL_STATE(3101)] = 142221, - [SMALL_STATE(3102)] = 142264, - [SMALL_STATE(3103)] = 142323, - [SMALL_STATE(3104)] = 142364, - [SMALL_STATE(3105)] = 142407, - [SMALL_STATE(3106)] = 142466, - [SMALL_STATE(3107)] = 142496, - [SMALL_STATE(3108)] = 142552, - [SMALL_STATE(3109)] = 142584, - [SMALL_STATE(3110)] = 142616, - [SMALL_STATE(3111)] = 142648, - [SMALL_STATE(3112)] = 142690, - [SMALL_STATE(3113)] = 142722, - [SMALL_STATE(3114)] = 142778, - [SMALL_STATE(3115)] = 142834, - [SMALL_STATE(3116)] = 142864, - [SMALL_STATE(3117)] = 142896, - [SMALL_STATE(3118)] = 142938, - [SMALL_STATE(3119)] = 142970, - [SMALL_STATE(3120)] = 143026, - [SMALL_STATE(3121)] = 143068, - [SMALL_STATE(3122)] = 143098, - [SMALL_STATE(3123)] = 143128, - [SMALL_STATE(3124)] = 143158, - [SMALL_STATE(3125)] = 143188, - [SMALL_STATE(3126)] = 143220, - [SMALL_STATE(3127)] = 143250, - [SMALL_STATE(3128)] = 143282, - [SMALL_STATE(3129)] = 143324, - [SMALL_STATE(3130)] = 143356, - [SMALL_STATE(3131)] = 143388, - [SMALL_STATE(3132)] = 143420, - [SMALL_STATE(3133)] = 143452, - [SMALL_STATE(3134)] = 143489, - [SMALL_STATE(3135)] = 143526, - [SMALL_STATE(3136)] = 143577, - [SMALL_STATE(3137)] = 143614, - [SMALL_STATE(3138)] = 143665, - [SMALL_STATE(3139)] = 143718, - [SMALL_STATE(3140)] = 143769, - [SMALL_STATE(3141)] = 143800, - [SMALL_STATE(3142)] = 143851, - [SMALL_STATE(3143)] = 143904, - [SMALL_STATE(3144)] = 143941, - [SMALL_STATE(3145)] = 143994, - [SMALL_STATE(3146)] = 144031, - [SMALL_STATE(3147)] = 144082, - [SMALL_STATE(3148)] = 144133, - [SMALL_STATE(3149)] = 144186, - [SMALL_STATE(3150)] = 144217, - [SMALL_STATE(3151)] = 144248, - [SMALL_STATE(3152)] = 144283, - [SMALL_STATE(3153)] = 144316, - [SMALL_STATE(3154)] = 144347, - [SMALL_STATE(3155)] = 144378, - [SMALL_STATE(3156)] = 144431, - [SMALL_STATE(3157)] = 144468, - [SMALL_STATE(3158)] = 144519, - [SMALL_STATE(3159)] = 144570, - [SMALL_STATE(3160)] = 144607, - [SMALL_STATE(3161)] = 144658, - [SMALL_STATE(3162)] = 144709, - [SMALL_STATE(3163)] = 144762, - [SMALL_STATE(3164)] = 144813, - [SMALL_STATE(3165)] = 144866, - [SMALL_STATE(3166)] = 144896, - [SMALL_STATE(3167)] = 144946, - [SMALL_STATE(3168)] = 144996, - [SMALL_STATE(3169)] = 145046, - [SMALL_STATE(3170)] = 145096, - [SMALL_STATE(3171)] = 145126, - [SMALL_STATE(3172)] = 145178, - [SMALL_STATE(3173)] = 145208, - [SMALL_STATE(3174)] = 145258, - [SMALL_STATE(3175)] = 145288, - [SMALL_STATE(3176)] = 145338, - [SMALL_STATE(3177)] = 145388, - [SMALL_STATE(3178)] = 145438, - [SMALL_STATE(3179)] = 145488, - [SMALL_STATE(3180)] = 145526, - [SMALL_STATE(3181)] = 145576, - [SMALL_STATE(3182)] = 145606, - [SMALL_STATE(3183)] = 145656, - [SMALL_STATE(3184)] = 145688, - [SMALL_STATE(3185)] = 145740, - [SMALL_STATE(3186)] = 145790, - [SMALL_STATE(3187)] = 145820, - [SMALL_STATE(3188)] = 145870, - [SMALL_STATE(3189)] = 145920, - [SMALL_STATE(3190)] = 145950, - [SMALL_STATE(3191)] = 146000, - [SMALL_STATE(3192)] = 146038, - [SMALL_STATE(3193)] = 146085, - [SMALL_STATE(3194)] = 146126, - [SMALL_STATE(3195)] = 146173, - [SMALL_STATE(3196)] = 146210, - [SMALL_STATE(3197)] = 146251, - [SMALL_STATE(3198)] = 146288, - [SMALL_STATE(3199)] = 146327, - [SMALL_STATE(3200)] = 146372, - [SMALL_STATE(3201)] = 146415, - [SMALL_STATE(3202)] = 146444, - [SMALL_STATE(3203)] = 146491, - [SMALL_STATE(3204)] = 146518, - [SMALL_STATE(3205)] = 146547, - [SMALL_STATE(3206)] = 146576, - [SMALL_STATE(3207)] = 146605, - [SMALL_STATE(3208)] = 146630, - [SMALL_STATE(3209)] = 146677, - [SMALL_STATE(3210)] = 146702, - [SMALL_STATE(3211)] = 146727, - [SMALL_STATE(3212)] = 146752, - [SMALL_STATE(3213)] = 146777, - [SMALL_STATE(3214)] = 146824, - [SMALL_STATE(3215)] = 146853, - [SMALL_STATE(3216)] = 146900, - [SMALL_STATE(3217)] = 146929, - [SMALL_STATE(3218)] = 146954, - [SMALL_STATE(3219)] = 146979, - [SMALL_STATE(3220)] = 147026, - [SMALL_STATE(3221)] = 147051, - [SMALL_STATE(3222)] = 147098, - [SMALL_STATE(3223)] = 147145, - [SMALL_STATE(3224)] = 147192, - [SMALL_STATE(3225)] = 147239, - [SMALL_STATE(3226)] = 147286, - [SMALL_STATE(3227)] = 147327, - [SMALL_STATE(3228)] = 147374, - [SMALL_STATE(3229)] = 147421, - [SMALL_STATE(3230)] = 147450, - [SMALL_STATE(3231)] = 147497, - [SMALL_STATE(3232)] = 147526, - [SMALL_STATE(3233)] = 147555, - [SMALL_STATE(3234)] = 147592, - [SMALL_STATE(3235)] = 147639, - [SMALL_STATE(3236)] = 147674, - [SMALL_STATE(3237)] = 147711, - [SMALL_STATE(3238)] = 147740, - [SMALL_STATE(3239)] = 147787, - [SMALL_STATE(3240)] = 147815, - [SMALL_STATE(3241)] = 147857, - [SMALL_STATE(3242)] = 147889, - [SMALL_STATE(3243)] = 147931, - [SMALL_STATE(3244)] = 147975, - [SMALL_STATE(3245)] = 148017, - [SMALL_STATE(3246)] = 148061, - [SMALL_STATE(3247)] = 148109, - [SMALL_STATE(3248)] = 148141, - [SMALL_STATE(3249)] = 148185, - [SMALL_STATE(3250)] = 148229, - [SMALL_STATE(3251)] = 148257, - [SMALL_STATE(3252)] = 148299, - [SMALL_STATE(3253)] = 148343, - [SMALL_STATE(3254)] = 148387, - [SMALL_STATE(3255)] = 148429, - [SMALL_STATE(3256)] = 148459, - [SMALL_STATE(3257)] = 148503, - [SMALL_STATE(3258)] = 148547, - [SMALL_STATE(3259)] = 148591, - [SMALL_STATE(3260)] = 148633, - [SMALL_STATE(3261)] = 148661, - [SMALL_STATE(3262)] = 148703, - [SMALL_STATE(3263)] = 148747, - [SMALL_STATE(3264)] = 148791, - [SMALL_STATE(3265)] = 148835, - [SMALL_STATE(3266)] = 148879, - [SMALL_STATE(3267)] = 148921, - [SMALL_STATE(3268)] = 148965, - [SMALL_STATE(3269)] = 149009, - [SMALL_STATE(3270)] = 149053, - [SMALL_STATE(3271)] = 149097, - [SMALL_STATE(3272)] = 149141, - [SMALL_STATE(3273)] = 149185, - [SMALL_STATE(3274)] = 149229, - [SMALL_STATE(3275)] = 149273, - [SMALL_STATE(3276)] = 149315, - [SMALL_STATE(3277)] = 149357, - [SMALL_STATE(3278)] = 149401, - [SMALL_STATE(3279)] = 149445, - [SMALL_STATE(3280)] = 149489, - [SMALL_STATE(3281)] = 149531, - [SMALL_STATE(3282)] = 149559, - [SMALL_STATE(3283)] = 149601, - [SMALL_STATE(3284)] = 149645, - [SMALL_STATE(3285)] = 149689, - [SMALL_STATE(3286)] = 149733, - [SMALL_STATE(3287)] = 149777, - [SMALL_STATE(3288)] = 149807, - [SMALL_STATE(3289)] = 149851, - [SMALL_STATE(3290)] = 149895, - [SMALL_STATE(3291)] = 149939, - [SMALL_STATE(3292)] = 149983, - [SMALL_STATE(3293)] = 150027, - [SMALL_STATE(3294)] = 150071, - [SMALL_STATE(3295)] = 150115, - [SMALL_STATE(3296)] = 150159, - [SMALL_STATE(3297)] = 150203, - [SMALL_STATE(3298)] = 150247, - [SMALL_STATE(3299)] = 150289, - [SMALL_STATE(3300)] = 150333, - [SMALL_STATE(3301)] = 150377, - [SMALL_STATE(3302)] = 150421, - [SMALL_STATE(3303)] = 150465, - [SMALL_STATE(3304)] = 150509, - [SMALL_STATE(3305)] = 150553, - [SMALL_STATE(3306)] = 150583, - [SMALL_STATE(3307)] = 150627, - [SMALL_STATE(3308)] = 150669, - [SMALL_STATE(3309)] = 150713, - [SMALL_STATE(3310)] = 150757, - [SMALL_STATE(3311)] = 150801, - [SMALL_STATE(3312)] = 150845, - [SMALL_STATE(3313)] = 150889, - [SMALL_STATE(3314)] = 150933, - [SMALL_STATE(3315)] = 150977, - [SMALL_STATE(3316)] = 151021, - [SMALL_STATE(3317)] = 151065, - [SMALL_STATE(3318)] = 151109, - [SMALL_STATE(3319)] = 151151, - [SMALL_STATE(3320)] = 151193, - [SMALL_STATE(3321)] = 151235, - [SMALL_STATE(3322)] = 151279, - [SMALL_STATE(3323)] = 151321, - [SMALL_STATE(3324)] = 151363, - [SMALL_STATE(3325)] = 151405, - [SMALL_STATE(3326)] = 151449, - [SMALL_STATE(3327)] = 151491, - [SMALL_STATE(3328)] = 151533, - [SMALL_STATE(3329)] = 151575, - [SMALL_STATE(3330)] = 151619, - [SMALL_STATE(3331)] = 151661, - [SMALL_STATE(3332)] = 151705, - [SMALL_STATE(3333)] = 151747, - [SMALL_STATE(3334)] = 151791, - [SMALL_STATE(3335)] = 151835, - [SMALL_STATE(3336)] = 151877, - [SMALL_STATE(3337)] = 151921, - [SMALL_STATE(3338)] = 151963, - [SMALL_STATE(3339)] = 152007, - [SMALL_STATE(3340)] = 152049, - [SMALL_STATE(3341)] = 152091, - [SMALL_STATE(3342)] = 152133, - [SMALL_STATE(3343)] = 152177, - [SMALL_STATE(3344)] = 152221, - [SMALL_STATE(3345)] = 152265, - [SMALL_STATE(3346)] = 152309, - [SMALL_STATE(3347)] = 152353, - [SMALL_STATE(3348)] = 152397, - [SMALL_STATE(3349)] = 152425, - [SMALL_STATE(3350)] = 152469, - [SMALL_STATE(3351)] = 152513, - [SMALL_STATE(3352)] = 152557, - [SMALL_STATE(3353)] = 152582, - [SMALL_STATE(3354)] = 152607, - [SMALL_STATE(3355)] = 152648, - [SMALL_STATE(3356)] = 152695, - [SMALL_STATE(3357)] = 152722, - [SMALL_STATE(3358)] = 152749, - [SMALL_STATE(3359)] = 152790, - [SMALL_STATE(3360)] = 152823, - [SMALL_STATE(3361)] = 152864, - [SMALL_STATE(3362)] = 152909, - [SMALL_STATE(3363)] = 152948, - [SMALL_STATE(3364)] = 152977, - [SMALL_STATE(3365)] = 153004, - [SMALL_STATE(3366)] = 153045, - [SMALL_STATE(3367)] = 153086, - [SMALL_STATE(3368)] = 153127, - [SMALL_STATE(3369)] = 153168, - [SMALL_STATE(3370)] = 153209, - [SMALL_STATE(3371)] = 153250, - [SMALL_STATE(3372)] = 153275, - [SMALL_STATE(3373)] = 153316, - [SMALL_STATE(3374)] = 153341, - [SMALL_STATE(3375)] = 153382, - [SMALL_STATE(3376)] = 153409, - [SMALL_STATE(3377)] = 153436, - [SMALL_STATE(3378)] = 153477, - [SMALL_STATE(3379)] = 153518, - [SMALL_STATE(3380)] = 153545, - [SMALL_STATE(3381)] = 153586, - [SMALL_STATE(3382)] = 153625, - [SMALL_STATE(3383)] = 153666, - [SMALL_STATE(3384)] = 153702, - [SMALL_STATE(3385)] = 153726, - [SMALL_STATE(3386)] = 153762, - [SMALL_STATE(3387)] = 153802, - [SMALL_STATE(3388)] = 153836, - [SMALL_STATE(3389)] = 153860, - [SMALL_STATE(3390)] = 153884, - [SMALL_STATE(3391)] = 153918, - [SMALL_STATE(3392)] = 153958, - [SMALL_STATE(3393)] = 153998, - [SMALL_STATE(3394)] = 154034, - [SMALL_STATE(3395)] = 154060, - [SMALL_STATE(3396)] = 154084, - [SMALL_STATE(3397)] = 154122, - [SMALL_STATE(3398)] = 154158, - [SMALL_STATE(3399)] = 154184, - [SMALL_STATE(3400)] = 154220, - [SMALL_STATE(3401)] = 154244, - [SMALL_STATE(3402)] = 154282, - [SMALL_STATE(3403)] = 154322, - [SMALL_STATE(3404)] = 154358, - [SMALL_STATE(3405)] = 154386, - [SMALL_STATE(3406)] = 154410, - [SMALL_STATE(3407)] = 154434, - [SMALL_STATE(3408)] = 154458, - [SMALL_STATE(3409)] = 154482, - [SMALL_STATE(3410)] = 154520, - [SMALL_STATE(3411)] = 154544, - [SMALL_STATE(3412)] = 154572, - [SMALL_STATE(3413)] = 154610, - [SMALL_STATE(3414)] = 154637, - [SMALL_STATE(3415)] = 154660, - [SMALL_STATE(3416)] = 154683, - [SMALL_STATE(3417)] = 154708, - [SMALL_STATE(3418)] = 154735, - [SMALL_STATE(3419)] = 154768, - [SMALL_STATE(3420)] = 154795, - [SMALL_STATE(3421)] = 154832, - [SMALL_STATE(3422)] = 154865, - [SMALL_STATE(3423)] = 154904, - [SMALL_STATE(3424)] = 154929, - [SMALL_STATE(3425)] = 154950, - [SMALL_STATE(3426)] = 154977, - [SMALL_STATE(3427)] = 155016, - [SMALL_STATE(3428)] = 155039, - [SMALL_STATE(3429)] = 155066, - [SMALL_STATE(3430)] = 155099, - [SMALL_STATE(3431)] = 155120, - [SMALL_STATE(3432)] = 155153, - [SMALL_STATE(3433)] = 155192, - [SMALL_STATE(3434)] = 155219, - [SMALL_STATE(3435)] = 155252, - [SMALL_STATE(3436)] = 155285, - [SMALL_STATE(3437)] = 155320, - [SMALL_STATE(3438)] = 155347, - [SMALL_STATE(3439)] = 155380, - [SMALL_STATE(3440)] = 155413, - [SMALL_STATE(3441)] = 155436, - [SMALL_STATE(3442)] = 155459, - [SMALL_STATE(3443)] = 155486, - [SMALL_STATE(3444)] = 155507, - [SMALL_STATE(3445)] = 155540, - [SMALL_STATE(3446)] = 155563, - [SMALL_STATE(3447)] = 155584, - [SMALL_STATE(3448)] = 155611, - [SMALL_STATE(3449)] = 155638, - [SMALL_STATE(3450)] = 155673, - [SMALL_STATE(3451)] = 155696, - [SMALL_STATE(3452)] = 155726, - [SMALL_STATE(3453)] = 155752, - [SMALL_STATE(3454)] = 155790, - [SMALL_STATE(3455)] = 155816, - [SMALL_STATE(3456)] = 155848, - [SMALL_STATE(3457)] = 155888, - [SMALL_STATE(3458)] = 155910, - [SMALL_STATE(3459)] = 155948, - [SMALL_STATE(3460)] = 155970, - [SMALL_STATE(3461)] = 155996, - [SMALL_STATE(3462)] = 156028, - [SMALL_STATE(3463)] = 156054, - [SMALL_STATE(3464)] = 156092, - [SMALL_STATE(3465)] = 156122, - [SMALL_STATE(3466)] = 156152, - [SMALL_STATE(3467)] = 156174, - [SMALL_STATE(3468)] = 156204, - [SMALL_STATE(3469)] = 156236, - [SMALL_STATE(3470)] = 156268, - [SMALL_STATE(3471)] = 156296, - [SMALL_STATE(3472)] = 156318, - [SMALL_STATE(3473)] = 156358, - [SMALL_STATE(3474)] = 156392, - [SMALL_STATE(3475)] = 156426, - [SMALL_STATE(3476)] = 156462, - [SMALL_STATE(3477)] = 156486, - [SMALL_STATE(3478)] = 156512, - [SMALL_STATE(3479)] = 156544, - [SMALL_STATE(3480)] = 156572, - [SMALL_STATE(3481)] = 156594, - [SMALL_STATE(3482)] = 156622, - [SMALL_STATE(3483)] = 156644, - [SMALL_STATE(3484)] = 156674, - [SMALL_STATE(3485)] = 156696, - [SMALL_STATE(3486)] = 156720, - [SMALL_STATE(3487)] = 156758, - [SMALL_STATE(3488)] = 156790, - [SMALL_STATE(3489)] = 156820, - [SMALL_STATE(3490)] = 156852, - [SMALL_STATE(3491)] = 156892, - [SMALL_STATE(3492)] = 156932, - [SMALL_STATE(3493)] = 156972, - [SMALL_STATE(3494)] = 156996, - [SMALL_STATE(3495)] = 157020, - [SMALL_STATE(3496)] = 157050, - [SMALL_STATE(3497)] = 157072, - [SMALL_STATE(3498)] = 157110, - [SMALL_STATE(3499)] = 157144, - [SMALL_STATE(3500)] = 157174, - [SMALL_STATE(3501)] = 157208, - [SMALL_STATE(3502)] = 157240, - [SMALL_STATE(3503)] = 157270, - [SMALL_STATE(3504)] = 157302, - [SMALL_STATE(3505)] = 157324, - [SMALL_STATE(3506)] = 157356, - [SMALL_STATE(3507)] = 157386, - [SMALL_STATE(3508)] = 157418, - [SMALL_STATE(3509)] = 157450, - [SMALL_STATE(3510)] = 157490, - [SMALL_STATE(3511)] = 157522, - [SMALL_STATE(3512)] = 157554, - [SMALL_STATE(3513)] = 157592, - [SMALL_STATE(3514)] = 157630, - [SMALL_STATE(3515)] = 157660, - [SMALL_STATE(3516)] = 157692, - [SMALL_STATE(3517)] = 157714, - [SMALL_STATE(3518)] = 157735, - [SMALL_STATE(3519)] = 157764, - [SMALL_STATE(3520)] = 157793, - [SMALL_STATE(3521)] = 157814, - [SMALL_STATE(3522)] = 157843, - [SMALL_STATE(3523)] = 157872, - [SMALL_STATE(3524)] = 157901, - [SMALL_STATE(3525)] = 157930, - [SMALL_STATE(3526)] = 157951, - [SMALL_STATE(3527)] = 157980, - [SMALL_STATE(3528)] = 158009, - [SMALL_STATE(3529)] = 158038, - [SMALL_STATE(3530)] = 158069, - [SMALL_STATE(3531)] = 158100, - [SMALL_STATE(3532)] = 158129, - [SMALL_STATE(3533)] = 158160, - [SMALL_STATE(3534)] = 158191, - [SMALL_STATE(3535)] = 158232, - [SMALL_STATE(3536)] = 158261, - [SMALL_STATE(3537)] = 158282, - [SMALL_STATE(3538)] = 158303, - [SMALL_STATE(3539)] = 158332, - [SMALL_STATE(3540)] = 158361, - [SMALL_STATE(3541)] = 158390, - [SMALL_STATE(3542)] = 158419, - [SMALL_STATE(3543)] = 158440, - [SMALL_STATE(3544)] = 158469, - [SMALL_STATE(3545)] = 158490, - [SMALL_STATE(3546)] = 158519, - [SMALL_STATE(3547)] = 158548, - [SMALL_STATE(3548)] = 158577, - [SMALL_STATE(3549)] = 158606, - [SMALL_STATE(3550)] = 158637, - [SMALL_STATE(3551)] = 158660, - [SMALL_STATE(3552)] = 158681, - [SMALL_STATE(3553)] = 158710, - [SMALL_STATE(3554)] = 158741, - [SMALL_STATE(3555)] = 158770, - [SMALL_STATE(3556)] = 158791, - [SMALL_STATE(3557)] = 158822, - [SMALL_STATE(3558)] = 158855, - [SMALL_STATE(3559)] = 158884, - [SMALL_STATE(3560)] = 158907, - [SMALL_STATE(3561)] = 158936, - [SMALL_STATE(3562)] = 158965, - [SMALL_STATE(3563)] = 158994, - [SMALL_STATE(3564)] = 159023, - [SMALL_STATE(3565)] = 159054, - [SMALL_STATE(3566)] = 159083, - [SMALL_STATE(3567)] = 159112, - [SMALL_STATE(3568)] = 159143, - [SMALL_STATE(3569)] = 159174, - [SMALL_STATE(3570)] = 159203, - [SMALL_STATE(3571)] = 159232, - [SMALL_STATE(3572)] = 159261, - [SMALL_STATE(3573)] = 159290, - [SMALL_STATE(3574)] = 159319, - [SMALL_STATE(3575)] = 159350, - [SMALL_STATE(3576)] = 159381, - [SMALL_STATE(3577)] = 159410, - [SMALL_STATE(3578)] = 159439, - [SMALL_STATE(3579)] = 159470, - [SMALL_STATE(3580)] = 159501, - [SMALL_STATE(3581)] = 159532, - [SMALL_STATE(3582)] = 159561, - [SMALL_STATE(3583)] = 159590, - [SMALL_STATE(3584)] = 159619, - [SMALL_STATE(3585)] = 159650, - [SMALL_STATE(3586)] = 159679, - [SMALL_STATE(3587)] = 159708, - [SMALL_STATE(3588)] = 159737, - [SMALL_STATE(3589)] = 159766, - [SMALL_STATE(3590)] = 159787, - [SMALL_STATE(3591)] = 159816, - [SMALL_STATE(3592)] = 159845, - [SMALL_STATE(3593)] = 159874, - [SMALL_STATE(3594)] = 159905, - [SMALL_STATE(3595)] = 159936, - [SMALL_STATE(3596)] = 159965, - [SMALL_STATE(3597)] = 159994, - [SMALL_STATE(3598)] = 160023, - [SMALL_STATE(3599)] = 160054, - [SMALL_STATE(3600)] = 160085, - [SMALL_STATE(3601)] = 160126, - [SMALL_STATE(3602)] = 160155, - [SMALL_STATE(3603)] = 160186, - [SMALL_STATE(3604)] = 160217, - [SMALL_STATE(3605)] = 160248, - [SMALL_STATE(3606)] = 160279, - [SMALL_STATE(3607)] = 160320, - [SMALL_STATE(3608)] = 160349, - [SMALL_STATE(3609)] = 160378, - [SMALL_STATE(3610)] = 160407, - [SMALL_STATE(3611)] = 160436, - [SMALL_STATE(3612)] = 160465, - [SMALL_STATE(3613)] = 160506, - [SMALL_STATE(3614)] = 160535, - [SMALL_STATE(3615)] = 160576, - [SMALL_STATE(3616)] = 160605, - [SMALL_STATE(3617)] = 160634, - [SMALL_STATE(3618)] = 160675, - [SMALL_STATE(3619)] = 160716, - [SMALL_STATE(3620)] = 160757, - [SMALL_STATE(3621)] = 160786, - [SMALL_STATE(3622)] = 160815, - [SMALL_STATE(3623)] = 160844, - [SMALL_STATE(3624)] = 160873, - [SMALL_STATE(3625)] = 160902, - [SMALL_STATE(3626)] = 160935, - [SMALL_STATE(3627)] = 160965, - [SMALL_STATE(3628)] = 160995, - [SMALL_STATE(3629)] = 161033, - [SMALL_STATE(3630)] = 161071, - [SMALL_STATE(3631)] = 161101, - [SMALL_STATE(3632)] = 161131, - [SMALL_STATE(3633)] = 161169, - [SMALL_STATE(3634)] = 161207, - [SMALL_STATE(3635)] = 161245, - [SMALL_STATE(3636)] = 161277, - [SMALL_STATE(3637)] = 161311, - [SMALL_STATE(3638)] = 161349, - [SMALL_STATE(3639)] = 161381, - [SMALL_STATE(3640)] = 161415, - [SMALL_STATE(3641)] = 161445, - [SMALL_STATE(3642)] = 161477, - [SMALL_STATE(3643)] = 161505, - [SMALL_STATE(3644)] = 161529, - [SMALL_STATE(3645)] = 161563, - [SMALL_STATE(3646)] = 161593, - [SMALL_STATE(3647)] = 161621, - [SMALL_STATE(3648)] = 161651, - [SMALL_STATE(3649)] = 161689, - [SMALL_STATE(3650)] = 161721, - [SMALL_STATE(3651)] = 161745, - [SMALL_STATE(3652)] = 161773, - [SMALL_STATE(3653)] = 161803, - [SMALL_STATE(3654)] = 161833, - [SMALL_STATE(3655)] = 161863, - [SMALL_STATE(3656)] = 161881, - [SMALL_STATE(3657)] = 161911, - [SMALL_STATE(3658)] = 161949, - [SMALL_STATE(3659)] = 161987, - [SMALL_STATE(3660)] = 162015, - [SMALL_STATE(3661)] = 162047, - [SMALL_STATE(3662)] = 162071, - [SMALL_STATE(3663)] = 162105, - [SMALL_STATE(3664)] = 162135, - [SMALL_STATE(3665)] = 162173, - [SMALL_STATE(3666)] = 162203, - [SMALL_STATE(3667)] = 162235, - [SMALL_STATE(3668)] = 162265, - [SMALL_STATE(3669)] = 162303, - [SMALL_STATE(3670)] = 162341, - [SMALL_STATE(3671)] = 162371, - [SMALL_STATE(3672)] = 162401, - [SMALL_STATE(3673)] = 162439, - [SMALL_STATE(3674)] = 162477, - [SMALL_STATE(3675)] = 162507, - [SMALL_STATE(3676)] = 162527, - [SMALL_STATE(3677)] = 162557, - [SMALL_STATE(3678)] = 162595, - [SMALL_STATE(3679)] = 162633, - [SMALL_STATE(3680)] = 162663, - [SMALL_STATE(3681)] = 162693, - [SMALL_STATE(3682)] = 162731, - [SMALL_STATE(3683)] = 162769, - [SMALL_STATE(3684)] = 162799, - [SMALL_STATE(3685)] = 162829, - [SMALL_STATE(3686)] = 162863, - [SMALL_STATE(3687)] = 162893, - [SMALL_STATE(3688)] = 162923, - [SMALL_STATE(3689)] = 162953, - [SMALL_STATE(3690)] = 162983, - [SMALL_STATE(3691)] = 163015, - [SMALL_STATE(3692)] = 163039, - [SMALL_STATE(3693)] = 163077, - [SMALL_STATE(3694)] = 163107, - [SMALL_STATE(3695)] = 163145, - [SMALL_STATE(3696)] = 163177, - [SMALL_STATE(3697)] = 163205, - [SMALL_STATE(3698)] = 163233, - [SMALL_STATE(3699)] = 163271, - [SMALL_STATE(3700)] = 163305, - [SMALL_STATE(3701)] = 163343, - [SMALL_STATE(3702)] = 163373, - [SMALL_STATE(3703)] = 163401, - [SMALL_STATE(3704)] = 163439, - [SMALL_STATE(3705)] = 163469, - [SMALL_STATE(3706)] = 163499, - [SMALL_STATE(3707)] = 163527, - [SMALL_STATE(3708)] = 163565, - [SMALL_STATE(3709)] = 163603, - [SMALL_STATE(3710)] = 163631, - [SMALL_STATE(3711)] = 163659, - [SMALL_STATE(3712)] = 163689, - [SMALL_STATE(3713)] = 163719, - [SMALL_STATE(3714)] = 163747, - [SMALL_STATE(3715)] = 163777, - [SMALL_STATE(3716)] = 163807, - [SMALL_STATE(3717)] = 163839, - [SMALL_STATE(3718)] = 163862, - [SMALL_STATE(3719)] = 163887, - [SMALL_STATE(3720)] = 163916, - [SMALL_STATE(3721)] = 163945, - [SMALL_STATE(3722)] = 163962, - [SMALL_STATE(3723)] = 163991, - [SMALL_STATE(3724)] = 164020, - [SMALL_STATE(3725)] = 164051, - [SMALL_STATE(3726)] = 164082, - [SMALL_STATE(3727)] = 164101, - [SMALL_STATE(3728)] = 164130, - [SMALL_STATE(3729)] = 164155, - [SMALL_STATE(3730)] = 164174, - [SMALL_STATE(3731)] = 164197, - [SMALL_STATE(3732)] = 164216, - [SMALL_STATE(3733)] = 164245, - [SMALL_STATE(3734)] = 164262, - [SMALL_STATE(3735)] = 164291, - [SMALL_STATE(3736)] = 164310, - [SMALL_STATE(3737)] = 164339, - [SMALL_STATE(3738)] = 164368, - [SMALL_STATE(3739)] = 164397, - [SMALL_STATE(3740)] = 164416, - [SMALL_STATE(3741)] = 164445, - [SMALL_STATE(3742)] = 164468, - [SMALL_STATE(3743)] = 164497, - [SMALL_STATE(3744)] = 164520, - [SMALL_STATE(3745)] = 164545, - [SMALL_STATE(3746)] = 164574, - [SMALL_STATE(3747)] = 164599, - [SMALL_STATE(3748)] = 164618, - [SMALL_STATE(3749)] = 164635, - [SMALL_STATE(3750)] = 164664, - [SMALL_STATE(3751)] = 164695, - [SMALL_STATE(3752)] = 164726, - [SMALL_STATE(3753)] = 164745, - [SMALL_STATE(3754)] = 164776, - [SMALL_STATE(3755)] = 164805, - [SMALL_STATE(3756)] = 164826, - [SMALL_STATE(3757)] = 164855, - [SMALL_STATE(3758)] = 164872, - [SMALL_STATE(3759)] = 164891, - [SMALL_STATE(3760)] = 164910, - [SMALL_STATE(3761)] = 164933, - [SMALL_STATE(3762)] = 164958, - [SMALL_STATE(3763)] = 164975, - [SMALL_STATE(3764)] = 165000, - [SMALL_STATE(3765)] = 165019, - [SMALL_STATE(3766)] = 165048, - [SMALL_STATE(3767)] = 165071, - [SMALL_STATE(3768)] = 165090, - [SMALL_STATE(3769)] = 165109, - [SMALL_STATE(3770)] = 165138, - [SMALL_STATE(3771)] = 165169, - [SMALL_STATE(3772)] = 165188, - [SMALL_STATE(3773)] = 165209, - [SMALL_STATE(3774)] = 165238, - [SMALL_STATE(3775)] = 165263, - [SMALL_STATE(3776)] = 165282, - [SMALL_STATE(3777)] = 165311, - [SMALL_STATE(3778)] = 165340, - [SMALL_STATE(3779)] = 165369, - [SMALL_STATE(3780)] = 165388, - [SMALL_STATE(3781)] = 165417, - [SMALL_STATE(3782)] = 165446, - [SMALL_STATE(3783)] = 165463, - [SMALL_STATE(3784)] = 165488, - [SMALL_STATE(3785)] = 165519, - [SMALL_STATE(3786)] = 165548, - [SMALL_STATE(3787)] = 165569, - [SMALL_STATE(3788)] = 165590, - [SMALL_STATE(3789)] = 165615, - [SMALL_STATE(3790)] = 165638, - [SMALL_STATE(3791)] = 165659, - [SMALL_STATE(3792)] = 165678, - [SMALL_STATE(3793)] = 165703, - [SMALL_STATE(3794)] = 165728, - [SMALL_STATE(3795)] = 165751, - [SMALL_STATE(3796)] = 165773, - [SMALL_STATE(3797)] = 165791, - [SMALL_STATE(3798)] = 165813, - [SMALL_STATE(3799)] = 165837, - [SMALL_STATE(3800)] = 165859, - [SMALL_STATE(3801)] = 165875, - [SMALL_STATE(3802)] = 165905, - [SMALL_STATE(3803)] = 165935, - [SMALL_STATE(3804)] = 165967, - [SMALL_STATE(3805)] = 165985, - [SMALL_STATE(3806)] = 166001, - [SMALL_STATE(3807)] = 166033, - [SMALL_STATE(3808)] = 166061, - [SMALL_STATE(3809)] = 166077, - [SMALL_STATE(3810)] = 166105, - [SMALL_STATE(3811)] = 166135, - [SMALL_STATE(3812)] = 166159, - [SMALL_STATE(3813)] = 166177, - [SMALL_STATE(3814)] = 166195, - [SMALL_STATE(3815)] = 166213, - [SMALL_STATE(3816)] = 166243, - [SMALL_STATE(3817)] = 166261, - [SMALL_STATE(3818)] = 166285, - [SMALL_STATE(3819)] = 166313, - [SMALL_STATE(3820)] = 166343, - [SMALL_STATE(3821)] = 166371, - [SMALL_STATE(3822)] = 166403, - [SMALL_STATE(3823)] = 166433, - [SMALL_STATE(3824)] = 166461, - [SMALL_STATE(3825)] = 166491, - [SMALL_STATE(3826)] = 166515, - [SMALL_STATE(3827)] = 166539, - [SMALL_STATE(3828)] = 166555, - [SMALL_STATE(3829)] = 166577, - [SMALL_STATE(3830)] = 166597, - [SMALL_STATE(3831)] = 166613, - [SMALL_STATE(3832)] = 166631, - [SMALL_STATE(3833)] = 166661, - [SMALL_STATE(3834)] = 166691, - [SMALL_STATE(3835)] = 166707, - [SMALL_STATE(3836)] = 166737, - [SMALL_STATE(3837)] = 166755, - [SMALL_STATE(3838)] = 166779, - [SMALL_STATE(3839)] = 166801, - [SMALL_STATE(3840)] = 166829, - [SMALL_STATE(3841)] = 166845, - [SMALL_STATE(3842)] = 166877, - [SMALL_STATE(3843)] = 166897, - [SMALL_STATE(3844)] = 166925, - [SMALL_STATE(3845)] = 166953, - [SMALL_STATE(3846)] = 166971, - [SMALL_STATE(3847)] = 166989, - [SMALL_STATE(3848)] = 167013, - [SMALL_STATE(3849)] = 167041, - [SMALL_STATE(3850)] = 167065, - [SMALL_STATE(3851)] = 167089, - [SMALL_STATE(3852)] = 167113, - [SMALL_STATE(3853)] = 167141, - [SMALL_STATE(3854)] = 167171, - [SMALL_STATE(3855)] = 167199, - [SMALL_STATE(3856)] = 167217, - [SMALL_STATE(3857)] = 167241, - [SMALL_STATE(3858)] = 167265, - [SMALL_STATE(3859)] = 167287, - [SMALL_STATE(3860)] = 167309, - [SMALL_STATE(3861)] = 167331, - [SMALL_STATE(3862)] = 167359, - [SMALL_STATE(3863)] = 167389, - [SMALL_STATE(3864)] = 167409, - [SMALL_STATE(3865)] = 167433, - [SMALL_STATE(3866)] = 167461, - [SMALL_STATE(3867)] = 167477, - [SMALL_STATE(3868)] = 167493, - [SMALL_STATE(3869)] = 167511, - [SMALL_STATE(3870)] = 167541, - [SMALL_STATE(3871)] = 167559, - [SMALL_STATE(3872)] = 167583, - [SMALL_STATE(3873)] = 167611, - [SMALL_STATE(3874)] = 167627, - [SMALL_STATE(3875)] = 167651, - [SMALL_STATE(3876)] = 167671, - [SMALL_STATE(3877)] = 167703, - [SMALL_STATE(3878)] = 167735, - [SMALL_STATE(3879)] = 167763, - [SMALL_STATE(3880)] = 167786, - [SMALL_STATE(3881)] = 167809, - [SMALL_STATE(3882)] = 167832, - [SMALL_STATE(3883)] = 167847, - [SMALL_STATE(3884)] = 167876, - [SMALL_STATE(3885)] = 167891, - [SMALL_STATE(3886)] = 167920, - [SMALL_STATE(3887)] = 167949, - [SMALL_STATE(3888)] = 167970, - [SMALL_STATE(3889)] = 167993, - [SMALL_STATE(3890)] = 168016, - [SMALL_STATE(3891)] = 168043, - [SMALL_STATE(3892)] = 168072, - [SMALL_STATE(3893)] = 168087, - [SMALL_STATE(3894)] = 168116, - [SMALL_STATE(3895)] = 168145, - [SMALL_STATE(3896)] = 168164, - [SMALL_STATE(3897)] = 168187, - [SMALL_STATE(3898)] = 168208, - [SMALL_STATE(3899)] = 168233, - [SMALL_STATE(3900)] = 168258, - [SMALL_STATE(3901)] = 168281, - [SMALL_STATE(3902)] = 168302, - [SMALL_STATE(3903)] = 168329, - [SMALL_STATE(3904)] = 168344, - [SMALL_STATE(3905)] = 168373, - [SMALL_STATE(3906)] = 168394, - [SMALL_STATE(3907)] = 168409, - [SMALL_STATE(3908)] = 168434, - [SMALL_STATE(3909)] = 168449, - [SMALL_STATE(3910)] = 168478, - [SMALL_STATE(3911)] = 168501, - [SMALL_STATE(3912)] = 168528, - [SMALL_STATE(3913)] = 168551, - [SMALL_STATE(3914)] = 168574, - [SMALL_STATE(3915)] = 168597, - [SMALL_STATE(3916)] = 168626, - [SMALL_STATE(3917)] = 168655, - [SMALL_STATE(3918)] = 168684, - [SMALL_STATE(3919)] = 168703, - [SMALL_STATE(3920)] = 168728, - [SMALL_STATE(3921)] = 168757, - [SMALL_STATE(3922)] = 168786, - [SMALL_STATE(3923)] = 168815, - [SMALL_STATE(3924)] = 168844, - [SMALL_STATE(3925)] = 168871, - [SMALL_STATE(3926)] = 168892, - [SMALL_STATE(3927)] = 168921, - [SMALL_STATE(3928)] = 168950, - [SMALL_STATE(3929)] = 168979, - [SMALL_STATE(3930)] = 169008, - [SMALL_STATE(3931)] = 169037, - [SMALL_STATE(3932)] = 169066, - [SMALL_STATE(3933)] = 169095, - [SMALL_STATE(3934)] = 169124, - [SMALL_STATE(3935)] = 169145, - [SMALL_STATE(3936)] = 169166, - [SMALL_STATE(3937)] = 169195, - [SMALL_STATE(3938)] = 169224, - [SMALL_STATE(3939)] = 169247, - [SMALL_STATE(3940)] = 169266, - [SMALL_STATE(3941)] = 169287, - [SMALL_STATE(3942)] = 169316, - [SMALL_STATE(3943)] = 169345, - [SMALL_STATE(3944)] = 169368, - [SMALL_STATE(3945)] = 169389, - [SMALL_STATE(3946)] = 169418, - [SMALL_STATE(3947)] = 169437, - [SMALL_STATE(3948)] = 169466, - [SMALL_STATE(3949)] = 169495, - [SMALL_STATE(3950)] = 169524, - [SMALL_STATE(3951)] = 169553, - [SMALL_STATE(3952)] = 169582, - [SMALL_STATE(3953)] = 169611, - [SMALL_STATE(3954)] = 169640, - [SMALL_STATE(3955)] = 169669, - [SMALL_STATE(3956)] = 169698, - [SMALL_STATE(3957)] = 169725, - [SMALL_STATE(3958)] = 169752, - [SMALL_STATE(3959)] = 169781, - [SMALL_STATE(3960)] = 169810, - [SMALL_STATE(3961)] = 169831, - [SMALL_STATE(3962)] = 169858, - [SMALL_STATE(3963)] = 169885, - [SMALL_STATE(3964)] = 169910, - [SMALL_STATE(3965)] = 169939, - [SMALL_STATE(3966)] = 169960, - [SMALL_STATE(3967)] = 169981, - [SMALL_STATE(3968)] = 170010, - [SMALL_STATE(3969)] = 170039, - [SMALL_STATE(3970)] = 170062, - [SMALL_STATE(3971)] = 170083, - [SMALL_STATE(3972)] = 170102, - [SMALL_STATE(3973)] = 170119, - [SMALL_STATE(3974)] = 170142, - [SMALL_STATE(3975)] = 170165, - [SMALL_STATE(3976)] = 170186, - [SMALL_STATE(3977)] = 170209, - [SMALL_STATE(3978)] = 170230, - [SMALL_STATE(3979)] = 170251, - [SMALL_STATE(3980)] = 170270, - [SMALL_STATE(3981)] = 170291, - [SMALL_STATE(3982)] = 170315, - [SMALL_STATE(3983)] = 170341, - [SMALL_STATE(3984)] = 170359, - [SMALL_STATE(3985)] = 170383, - [SMALL_STATE(3986)] = 170407, - [SMALL_STATE(3987)] = 170431, - [SMALL_STATE(3988)] = 170457, - [SMALL_STATE(3989)] = 170473, - [SMALL_STATE(3990)] = 170499, - [SMALL_STATE(3991)] = 170523, - [SMALL_STATE(3992)] = 170541, - [SMALL_STATE(3993)] = 170563, - [SMALL_STATE(3994)] = 170589, - [SMALL_STATE(3995)] = 170615, - [SMALL_STATE(3996)] = 170641, - [SMALL_STATE(3997)] = 170665, - [SMALL_STATE(3998)] = 170689, - [SMALL_STATE(3999)] = 170715, - [SMALL_STATE(4000)] = 170741, - [SMALL_STATE(4001)] = 170767, - [SMALL_STATE(4002)] = 170793, - [SMALL_STATE(4003)] = 170819, - [SMALL_STATE(4004)] = 170845, - [SMALL_STATE(4005)] = 170871, - [SMALL_STATE(4006)] = 170889, - [SMALL_STATE(4007)] = 170915, - [SMALL_STATE(4008)] = 170941, - [SMALL_STATE(4009)] = 170967, - [SMALL_STATE(4010)] = 170993, - [SMALL_STATE(4011)] = 171019, - [SMALL_STATE(4012)] = 171045, - [SMALL_STATE(4013)] = 171071, - [SMALL_STATE(4014)] = 171095, - [SMALL_STATE(4015)] = 171119, - [SMALL_STATE(4016)] = 171145, - [SMALL_STATE(4017)] = 171163, - [SMALL_STATE(4018)] = 171187, - [SMALL_STATE(4019)] = 171211, - [SMALL_STATE(4020)] = 171227, - [SMALL_STATE(4021)] = 171253, - [SMALL_STATE(4022)] = 171275, - [SMALL_STATE(4023)] = 171299, - [SMALL_STATE(4024)] = 171323, - [SMALL_STATE(4025)] = 171345, - [SMALL_STATE(4026)] = 171371, - [SMALL_STATE(4027)] = 171391, - [SMALL_STATE(4028)] = 171417, - [SMALL_STATE(4029)] = 171443, - [SMALL_STATE(4030)] = 171469, - [SMALL_STATE(4031)] = 171491, - [SMALL_STATE(4032)] = 171515, - [SMALL_STATE(4033)] = 171539, - [SMALL_STATE(4034)] = 171565, - [SMALL_STATE(4035)] = 171591, - [SMALL_STATE(4036)] = 171611, - [SMALL_STATE(4037)] = 171637, - [SMALL_STATE(4038)] = 171663, - [SMALL_STATE(4039)] = 171685, - [SMALL_STATE(4040)] = 171711, - [SMALL_STATE(4041)] = 171737, - [SMALL_STATE(4042)] = 171759, - [SMALL_STATE(4043)] = 171785, - [SMALL_STATE(4044)] = 171803, - [SMALL_STATE(4045)] = 171829, - [SMALL_STATE(4046)] = 171855, - [SMALL_STATE(4047)] = 171881, - [SMALL_STATE(4048)] = 171907, - [SMALL_STATE(4049)] = 171933, - [SMALL_STATE(4050)] = 171959, - [SMALL_STATE(4051)] = 171985, - [SMALL_STATE(4052)] = 172007, - [SMALL_STATE(4053)] = 172031, - [SMALL_STATE(4054)] = 172055, - [SMALL_STATE(4055)] = 172081, - [SMALL_STATE(4056)] = 172095, - [SMALL_STATE(4057)] = 172113, - [SMALL_STATE(4058)] = 172139, - [SMALL_STATE(4059)] = 172165, - [SMALL_STATE(4060)] = 172191, - [SMALL_STATE(4061)] = 172217, - [SMALL_STATE(4062)] = 172241, - [SMALL_STATE(4063)] = 172265, - [SMALL_STATE(4064)] = 172289, - [SMALL_STATE(4065)] = 172315, - [SMALL_STATE(4066)] = 172341, - [SMALL_STATE(4067)] = 172363, - [SMALL_STATE(4068)] = 172389, - [SMALL_STATE(4069)] = 172415, - [SMALL_STATE(4070)] = 172441, - [SMALL_STATE(4071)] = 172467, - [SMALL_STATE(4072)] = 172491, - [SMALL_STATE(4073)] = 172517, - [SMALL_STATE(4074)] = 172543, - [SMALL_STATE(4075)] = 172567, - [SMALL_STATE(4076)] = 172591, - [SMALL_STATE(4077)] = 172615, - [SMALL_STATE(4078)] = 172641, - [SMALL_STATE(4079)] = 172667, - [SMALL_STATE(4080)] = 172691, - [SMALL_STATE(4081)] = 172715, - [SMALL_STATE(4082)] = 172739, - [SMALL_STATE(4083)] = 172763, - [SMALL_STATE(4084)] = 172789, - [SMALL_STATE(4085)] = 172815, - [SMALL_STATE(4086)] = 172837, - [SMALL_STATE(4087)] = 172861, - [SMALL_STATE(4088)] = 172887, - [SMALL_STATE(4089)] = 172901, - [SMALL_STATE(4090)] = 172923, - [SMALL_STATE(4091)] = 172941, - [SMALL_STATE(4092)] = 172967, - [SMALL_STATE(4093)] = 172993, - [SMALL_STATE(4094)] = 173019, - [SMALL_STATE(4095)] = 173045, - [SMALL_STATE(4096)] = 173071, - [SMALL_STATE(4097)] = 173095, - [SMALL_STATE(4098)] = 173119, - [SMALL_STATE(4099)] = 173143, - [SMALL_STATE(4100)] = 173167, - [SMALL_STATE(4101)] = 173193, - [SMALL_STATE(4102)] = 173219, - [SMALL_STATE(4103)] = 173245, - [SMALL_STATE(4104)] = 173271, - [SMALL_STATE(4105)] = 173297, - [SMALL_STATE(4106)] = 173323, - [SMALL_STATE(4107)] = 173349, - [SMALL_STATE(4108)] = 173375, - [SMALL_STATE(4109)] = 173393, - [SMALL_STATE(4110)] = 173419, - [SMALL_STATE(4111)] = 173443, - [SMALL_STATE(4112)] = 173469, - [SMALL_STATE(4113)] = 173487, - [SMALL_STATE(4114)] = 173511, - [SMALL_STATE(4115)] = 173537, - [SMALL_STATE(4116)] = 173563, - [SMALL_STATE(4117)] = 173587, - [SMALL_STATE(4118)] = 173613, - [SMALL_STATE(4119)] = 173637, - [SMALL_STATE(4120)] = 173661, - [SMALL_STATE(4121)] = 173687, - [SMALL_STATE(4122)] = 173713, - [SMALL_STATE(4123)] = 173739, - [SMALL_STATE(4124)] = 173765, - [SMALL_STATE(4125)] = 173791, - [SMALL_STATE(4126)] = 173817, - [SMALL_STATE(4127)] = 173843, - [SMALL_STATE(4128)] = 173869, - [SMALL_STATE(4129)] = 173893, - [SMALL_STATE(4130)] = 173917, - [SMALL_STATE(4131)] = 173941, - [SMALL_STATE(4132)] = 173965, - [SMALL_STATE(4133)] = 173991, - [SMALL_STATE(4134)] = 174009, - [SMALL_STATE(4135)] = 174033, - [SMALL_STATE(4136)] = 174059, - [SMALL_STATE(4137)] = 174079, - [SMALL_STATE(4138)] = 174101, - [SMALL_STATE(4139)] = 174125, - [SMALL_STATE(4140)] = 174149, - [SMALL_STATE(4141)] = 174173, - [SMALL_STATE(4142)] = 174197, - [SMALL_STATE(4143)] = 174221, - [SMALL_STATE(4144)] = 174247, - [SMALL_STATE(4145)] = 174269, - [SMALL_STATE(4146)] = 174291, - [SMALL_STATE(4147)] = 174315, - [SMALL_STATE(4148)] = 174341, - [SMALL_STATE(4149)] = 174367, - [SMALL_STATE(4150)] = 174389, - [SMALL_STATE(4151)] = 174413, - [SMALL_STATE(4152)] = 174439, - [SMALL_STATE(4153)] = 174465, - [SMALL_STATE(4154)] = 174486, - [SMALL_STATE(4155)] = 174507, - [SMALL_STATE(4156)] = 174522, - [SMALL_STATE(4157)] = 174545, - [SMALL_STATE(4158)] = 174566, - [SMALL_STATE(4159)] = 174587, - [SMALL_STATE(4160)] = 174608, - [SMALL_STATE(4161)] = 174621, - [SMALL_STATE(4162)] = 174638, - [SMALL_STATE(4163)] = 174661, - [SMALL_STATE(4164)] = 174682, - [SMALL_STATE(4165)] = 174703, - [SMALL_STATE(4166)] = 174720, - [SMALL_STATE(4167)] = 174741, - [SMALL_STATE(4168)] = 174762, - [SMALL_STATE(4169)] = 174783, - [SMALL_STATE(4170)] = 174800, - [SMALL_STATE(4171)] = 174821, - [SMALL_STATE(4172)] = 174838, - [SMALL_STATE(4173)] = 174861, - [SMALL_STATE(4174)] = 174878, - [SMALL_STATE(4175)] = 174895, - [SMALL_STATE(4176)] = 174912, - [SMALL_STATE(4177)] = 174933, - [SMALL_STATE(4178)] = 174950, - [SMALL_STATE(4179)] = 174967, - [SMALL_STATE(4180)] = 174988, - [SMALL_STATE(4181)] = 175003, - [SMALL_STATE(4182)] = 175024, - [SMALL_STATE(4183)] = 175047, - [SMALL_STATE(4184)] = 175068, - [SMALL_STATE(4185)] = 175081, - [SMALL_STATE(4186)] = 175096, - [SMALL_STATE(4187)] = 175117, - [SMALL_STATE(4188)] = 175132, - [SMALL_STATE(4189)] = 175155, - [SMALL_STATE(4190)] = 175172, - [SMALL_STATE(4191)] = 175195, - [SMALL_STATE(4192)] = 175210, - [SMALL_STATE(4193)] = 175231, - [SMALL_STATE(4194)] = 175248, - [SMALL_STATE(4195)] = 175265, - [SMALL_STATE(4196)] = 175282, - [SMALL_STATE(4197)] = 175305, - [SMALL_STATE(4198)] = 175318, - [SMALL_STATE(4199)] = 175339, - [SMALL_STATE(4200)] = 175360, - [SMALL_STATE(4201)] = 175381, - [SMALL_STATE(4202)] = 175404, - [SMALL_STATE(4203)] = 175417, - [SMALL_STATE(4204)] = 175430, - [SMALL_STATE(4205)] = 175451, - [SMALL_STATE(4206)] = 175474, - [SMALL_STATE(4207)] = 175497, - [SMALL_STATE(4208)] = 175512, - [SMALL_STATE(4209)] = 175529, - [SMALL_STATE(4210)] = 175550, - [SMALL_STATE(4211)] = 175563, - [SMALL_STATE(4212)] = 175580, - [SMALL_STATE(4213)] = 175597, - [SMALL_STATE(4214)] = 175618, - [SMALL_STATE(4215)] = 175639, - [SMALL_STATE(4216)] = 175656, - [SMALL_STATE(4217)] = 175669, - [SMALL_STATE(4218)] = 175686, - [SMALL_STATE(4219)] = 175707, - [SMALL_STATE(4220)] = 175728, - [SMALL_STATE(4221)] = 175745, - [SMALL_STATE(4222)] = 175758, - [SMALL_STATE(4223)] = 175773, - [SMALL_STATE(4224)] = 175790, - [SMALL_STATE(4225)] = 175807, - [SMALL_STATE(4226)] = 175830, - [SMALL_STATE(4227)] = 175853, - [SMALL_STATE(4228)] = 175866, - [SMALL_STATE(4229)] = 175879, - [SMALL_STATE(4230)] = 175896, - [SMALL_STATE(4231)] = 175919, - [SMALL_STATE(4232)] = 175936, - [SMALL_STATE(4233)] = 175957, - [SMALL_STATE(4234)] = 175974, - [SMALL_STATE(4235)] = 175995, - [SMALL_STATE(4236)] = 176016, - [SMALL_STATE(4237)] = 176039, - [SMALL_STATE(4238)] = 176060, - [SMALL_STATE(4239)] = 176083, - [SMALL_STATE(4240)] = 176100, - [SMALL_STATE(4241)] = 176123, - [SMALL_STATE(4242)] = 176146, - [SMALL_STATE(4243)] = 176167, - [SMALL_STATE(4244)] = 176190, - [SMALL_STATE(4245)] = 176211, - [SMALL_STATE(4246)] = 176232, - [SMALL_STATE(4247)] = 176249, - [SMALL_STATE(4248)] = 176266, - [SMALL_STATE(4249)] = 176283, - [SMALL_STATE(4250)] = 176306, - [SMALL_STATE(4251)] = 176323, - [SMALL_STATE(4252)] = 176344, - [SMALL_STATE(4253)] = 176359, - [SMALL_STATE(4254)] = 176380, - [SMALL_STATE(4255)] = 176393, - [SMALL_STATE(4256)] = 176416, - [SMALL_STATE(4257)] = 176439, - [SMALL_STATE(4258)] = 176456, - [SMALL_STATE(4259)] = 176473, - [SMALL_STATE(4260)] = 176490, - [SMALL_STATE(4261)] = 176511, - [SMALL_STATE(4262)] = 176534, - [SMALL_STATE(4263)] = 176555, - [SMALL_STATE(4264)] = 176576, - [SMALL_STATE(4265)] = 176597, - [SMALL_STATE(4266)] = 176620, - [SMALL_STATE(4267)] = 176633, - [SMALL_STATE(4268)] = 176654, - [SMALL_STATE(4269)] = 176673, - [SMALL_STATE(4270)] = 176692, - [SMALL_STATE(4271)] = 176709, - [SMALL_STATE(4272)] = 176724, - [SMALL_STATE(4273)] = 176745, - [SMALL_STATE(4274)] = 176762, - [SMALL_STATE(4275)] = 176783, - [SMALL_STATE(4276)] = 176802, - [SMALL_STATE(4277)] = 176817, - [SMALL_STATE(4278)] = 176830, - [SMALL_STATE(4279)] = 176851, - [SMALL_STATE(4280)] = 176868, - [SMALL_STATE(4281)] = 176889, - [SMALL_STATE(4282)] = 176906, - [SMALL_STATE(4283)] = 176927, - [SMALL_STATE(4284)] = 176948, - [SMALL_STATE(4285)] = 176969, - [SMALL_STATE(4286)] = 176990, - [SMALL_STATE(4287)] = 177013, - [SMALL_STATE(4288)] = 177034, - [SMALL_STATE(4289)] = 177055, - [SMALL_STATE(4290)] = 177076, - [SMALL_STATE(4291)] = 177097, - [SMALL_STATE(4292)] = 177114, - [SMALL_STATE(4293)] = 177132, - [SMALL_STATE(4294)] = 177148, - [SMALL_STATE(4295)] = 177164, - [SMALL_STATE(4296)] = 177176, - [SMALL_STATE(4297)] = 177196, - [SMALL_STATE(4298)] = 177212, - [SMALL_STATE(4299)] = 177226, - [SMALL_STATE(4300)] = 177242, - [SMALL_STATE(4301)] = 177254, - [SMALL_STATE(4302)] = 177266, - [SMALL_STATE(4303)] = 177286, - [SMALL_STATE(4304)] = 177306, - [SMALL_STATE(4305)] = 177318, - [SMALL_STATE(4306)] = 177334, - [SMALL_STATE(4307)] = 177348, - [SMALL_STATE(4308)] = 177364, - [SMALL_STATE(4309)] = 177376, - [SMALL_STATE(4310)] = 177396, - [SMALL_STATE(4311)] = 177416, - [SMALL_STATE(4312)] = 177436, - [SMALL_STATE(4313)] = 177448, - [SMALL_STATE(4314)] = 177466, - [SMALL_STATE(4315)] = 177478, - [SMALL_STATE(4316)] = 177490, - [SMALL_STATE(4317)] = 177508, - [SMALL_STATE(4318)] = 177526, - [SMALL_STATE(4319)] = 177546, - [SMALL_STATE(4320)] = 177566, - [SMALL_STATE(4321)] = 177578, - [SMALL_STATE(4322)] = 177590, - [SMALL_STATE(4323)] = 177610, - [SMALL_STATE(4324)] = 177622, - [SMALL_STATE(4325)] = 177642, - [SMALL_STATE(4326)] = 177662, - [SMALL_STATE(4327)] = 177682, - [SMALL_STATE(4328)] = 177694, - [SMALL_STATE(4329)] = 177714, - [SMALL_STATE(4330)] = 177730, - [SMALL_STATE(4331)] = 177750, - [SMALL_STATE(4332)] = 177770, - [SMALL_STATE(4333)] = 177786, - [SMALL_STATE(4334)] = 177806, - [SMALL_STATE(4335)] = 177826, - [SMALL_STATE(4336)] = 177846, - [SMALL_STATE(4337)] = 177866, - [SMALL_STATE(4338)] = 177886, - [SMALL_STATE(4339)] = 177904, - [SMALL_STATE(4340)] = 177924, - [SMALL_STATE(4341)] = 177936, - [SMALL_STATE(4342)] = 177956, - [SMALL_STATE(4343)] = 177968, - [SMALL_STATE(4344)] = 177986, - [SMALL_STATE(4345)] = 177998, - [SMALL_STATE(4346)] = 178018, - [SMALL_STATE(4347)] = 178038, - [SMALL_STATE(4348)] = 178050, - [SMALL_STATE(4349)] = 178070, - [SMALL_STATE(4350)] = 178082, - [SMALL_STATE(4351)] = 178102, - [SMALL_STATE(4352)] = 178118, - [SMALL_STATE(4353)] = 178130, - [SMALL_STATE(4354)] = 178150, - [SMALL_STATE(4355)] = 178162, - [SMALL_STATE(4356)] = 178182, - [SMALL_STATE(4357)] = 178194, - [SMALL_STATE(4358)] = 178214, - [SMALL_STATE(4359)] = 178226, - [SMALL_STATE(4360)] = 178244, - [SMALL_STATE(4361)] = 178264, - [SMALL_STATE(4362)] = 178282, - [SMALL_STATE(4363)] = 178302, - [SMALL_STATE(4364)] = 178322, - [SMALL_STATE(4365)] = 178342, - [SMALL_STATE(4366)] = 178354, - [SMALL_STATE(4367)] = 178374, - [SMALL_STATE(4368)] = 178386, - [SMALL_STATE(4369)] = 178398, - [SMALL_STATE(4370)] = 178418, - [SMALL_STATE(4371)] = 178430, - [SMALL_STATE(4372)] = 178442, - [SMALL_STATE(4373)] = 178462, - [SMALL_STATE(4374)] = 178482, - [SMALL_STATE(4375)] = 178502, - [SMALL_STATE(4376)] = 178516, - [SMALL_STATE(4377)] = 178536, - [SMALL_STATE(4378)] = 178554, - [SMALL_STATE(4379)] = 178570, - [SMALL_STATE(4380)] = 178582, - [SMALL_STATE(4381)] = 178594, - [SMALL_STATE(4382)] = 178614, - [SMALL_STATE(4383)] = 178634, - [SMALL_STATE(4384)] = 178646, - [SMALL_STATE(4385)] = 178666, - [SMALL_STATE(4386)] = 178686, - [SMALL_STATE(4387)] = 178706, - [SMALL_STATE(4388)] = 178726, - [SMALL_STATE(4389)] = 178740, - [SMALL_STATE(4390)] = 178760, - [SMALL_STATE(4391)] = 178780, - [SMALL_STATE(4392)] = 178800, - [SMALL_STATE(4393)] = 178812, - [SMALL_STATE(4394)] = 178832, - [SMALL_STATE(4395)] = 178852, - [SMALL_STATE(4396)] = 178872, - [SMALL_STATE(4397)] = 178892, - [SMALL_STATE(4398)] = 178908, - [SMALL_STATE(4399)] = 178920, - [SMALL_STATE(4400)] = 178940, - [SMALL_STATE(4401)] = 178954, - [SMALL_STATE(4402)] = 178974, - [SMALL_STATE(4403)] = 178994, - [SMALL_STATE(4404)] = 179012, - [SMALL_STATE(4405)] = 179032, - [SMALL_STATE(4406)] = 179052, - [SMALL_STATE(4407)] = 179072, - [SMALL_STATE(4408)] = 179084, - [SMALL_STATE(4409)] = 179104, - [SMALL_STATE(4410)] = 179124, - [SMALL_STATE(4411)] = 179142, - [SMALL_STATE(4412)] = 179154, - [SMALL_STATE(4413)] = 179174, - [SMALL_STATE(4414)] = 179194, - [SMALL_STATE(4415)] = 179214, - [SMALL_STATE(4416)] = 179234, - [SMALL_STATE(4417)] = 179254, - [SMALL_STATE(4418)] = 179274, - [SMALL_STATE(4419)] = 179294, - [SMALL_STATE(4420)] = 179306, - [SMALL_STATE(4421)] = 179326, - [SMALL_STATE(4422)] = 179338, - [SMALL_STATE(4423)] = 179354, - [SMALL_STATE(4424)] = 179370, - [SMALL_STATE(4425)] = 179390, - [SMALL_STATE(4426)] = 179410, - [SMALL_STATE(4427)] = 179430, - [SMALL_STATE(4428)] = 179450, - [SMALL_STATE(4429)] = 179470, - [SMALL_STATE(4430)] = 179482, - [SMALL_STATE(4431)] = 179494, - [SMALL_STATE(4432)] = 179510, - [SMALL_STATE(4433)] = 179522, - [SMALL_STATE(4434)] = 179538, - [SMALL_STATE(4435)] = 179558, - [SMALL_STATE(4436)] = 179578, - [SMALL_STATE(4437)] = 179598, - [SMALL_STATE(4438)] = 179616, - [SMALL_STATE(4439)] = 179628, - [SMALL_STATE(4440)] = 179648, - [SMALL_STATE(4441)] = 179666, - [SMALL_STATE(4442)] = 179686, - [SMALL_STATE(4443)] = 179706, - [SMALL_STATE(4444)] = 179726, - [SMALL_STATE(4445)] = 179746, - [SMALL_STATE(4446)] = 179766, - [SMALL_STATE(4447)] = 179784, - [SMALL_STATE(4448)] = 179804, - [SMALL_STATE(4449)] = 179816, - [SMALL_STATE(4450)] = 179836, - [SMALL_STATE(4451)] = 179856, - [SMALL_STATE(4452)] = 179874, - [SMALL_STATE(4453)] = 179892, - [SMALL_STATE(4454)] = 179906, - [SMALL_STATE(4455)] = 179922, - [SMALL_STATE(4456)] = 179934, - [SMALL_STATE(4457)] = 179946, - [SMALL_STATE(4458)] = 179962, - [SMALL_STATE(4459)] = 179982, - [SMALL_STATE(4460)] = 179994, - [SMALL_STATE(4461)] = 180014, - [SMALL_STATE(4462)] = 180034, - [SMALL_STATE(4463)] = 180054, - [SMALL_STATE(4464)] = 180066, - [SMALL_STATE(4465)] = 180082, - [SMALL_STATE(4466)] = 180094, - [SMALL_STATE(4467)] = 180112, - [SMALL_STATE(4468)] = 180124, - [SMALL_STATE(4469)] = 180136, - [SMALL_STATE(4470)] = 180148, - [SMALL_STATE(4471)] = 180160, - [SMALL_STATE(4472)] = 180180, - [SMALL_STATE(4473)] = 180200, - [SMALL_STATE(4474)] = 180220, - [SMALL_STATE(4475)] = 180236, - [SMALL_STATE(4476)] = 180254, - [SMALL_STATE(4477)] = 180272, - [SMALL_STATE(4478)] = 180292, - [SMALL_STATE(4479)] = 180304, - [SMALL_STATE(4480)] = 180315, - [SMALL_STATE(4481)] = 180326, - [SMALL_STATE(4482)] = 180337, - [SMALL_STATE(4483)] = 180352, - [SMALL_STATE(4484)] = 180363, - [SMALL_STATE(4485)] = 180374, - [SMALL_STATE(4486)] = 180385, - [SMALL_STATE(4487)] = 180402, - [SMALL_STATE(4488)] = 180419, - [SMALL_STATE(4489)] = 180430, - [SMALL_STATE(4490)] = 180441, - [SMALL_STATE(4491)] = 180452, - [SMALL_STATE(4492)] = 180463, - [SMALL_STATE(4493)] = 180478, - [SMALL_STATE(4494)] = 180489, - [SMALL_STATE(4495)] = 180500, - [SMALL_STATE(4496)] = 180515, - [SMALL_STATE(4497)] = 180532, - [SMALL_STATE(4498)] = 180543, - [SMALL_STATE(4499)] = 180554, - [SMALL_STATE(4500)] = 180571, - [SMALL_STATE(4501)] = 180582, - [SMALL_STATE(4502)] = 180597, - [SMALL_STATE(4503)] = 180614, - [SMALL_STATE(4504)] = 180629, - [SMALL_STATE(4505)] = 180640, - [SMALL_STATE(4506)] = 180651, - [SMALL_STATE(4507)] = 180668, - [SMALL_STATE(4508)] = 180683, - [SMALL_STATE(4509)] = 180700, - [SMALL_STATE(4510)] = 180715, - [SMALL_STATE(4511)] = 180730, - [SMALL_STATE(4512)] = 180747, - [SMALL_STATE(4513)] = 180764, - [SMALL_STATE(4514)] = 180779, - [SMALL_STATE(4515)] = 180794, - [SMALL_STATE(4516)] = 180805, - [SMALL_STATE(4517)] = 180822, - [SMALL_STATE(4518)] = 180839, - [SMALL_STATE(4519)] = 180854, - [SMALL_STATE(4520)] = 180871, - [SMALL_STATE(4521)] = 180882, - [SMALL_STATE(4522)] = 180893, - [SMALL_STATE(4523)] = 180910, - [SMALL_STATE(4524)] = 180925, - [SMALL_STATE(4525)] = 180936, - [SMALL_STATE(4526)] = 180953, - [SMALL_STATE(4527)] = 180968, - [SMALL_STATE(4528)] = 180979, - [SMALL_STATE(4529)] = 180996, - [SMALL_STATE(4530)] = 181013, - [SMALL_STATE(4531)] = 181028, - [SMALL_STATE(4532)] = 181041, - [SMALL_STATE(4533)] = 181052, - [SMALL_STATE(4534)] = 181063, - [SMALL_STATE(4535)] = 181076, - [SMALL_STATE(4536)] = 181093, - [SMALL_STATE(4537)] = 181104, - [SMALL_STATE(4538)] = 181119, - [SMALL_STATE(4539)] = 181130, - [SMALL_STATE(4540)] = 181145, - [SMALL_STATE(4541)] = 181156, - [SMALL_STATE(4542)] = 181173, - [SMALL_STATE(4543)] = 181188, - [SMALL_STATE(4544)] = 181199, - [SMALL_STATE(4545)] = 181216, - [SMALL_STATE(4546)] = 181227, - [SMALL_STATE(4547)] = 181238, - [SMALL_STATE(4548)] = 181255, - [SMALL_STATE(4549)] = 181270, - [SMALL_STATE(4550)] = 181281, - [SMALL_STATE(4551)] = 181298, - [SMALL_STATE(4552)] = 181315, - [SMALL_STATE(4553)] = 181328, - [SMALL_STATE(4554)] = 181345, - [SMALL_STATE(4555)] = 181356, - [SMALL_STATE(4556)] = 181367, - [SMALL_STATE(4557)] = 181378, - [SMALL_STATE(4558)] = 181389, - [SMALL_STATE(4559)] = 181400, - [SMALL_STATE(4560)] = 181411, - [SMALL_STATE(4561)] = 181428, - [SMALL_STATE(4562)] = 181439, - [SMALL_STATE(4563)] = 181454, - [SMALL_STATE(4564)] = 181465, - [SMALL_STATE(4565)] = 181480, - [SMALL_STATE(4566)] = 181491, - [SMALL_STATE(4567)] = 181502, - [SMALL_STATE(4568)] = 181515, - [SMALL_STATE(4569)] = 181526, - [SMALL_STATE(4570)] = 181537, - [SMALL_STATE(4571)] = 181548, - [SMALL_STATE(4572)] = 181565, - [SMALL_STATE(4573)] = 181582, - [SMALL_STATE(4574)] = 181597, - [SMALL_STATE(4575)] = 181612, - [SMALL_STATE(4576)] = 181629, - [SMALL_STATE(4577)] = 181646, - [SMALL_STATE(4578)] = 181663, - [SMALL_STATE(4579)] = 181674, - [SMALL_STATE(4580)] = 181691, - [SMALL_STATE(4581)] = 181702, - [SMALL_STATE(4582)] = 181713, - [SMALL_STATE(4583)] = 181724, - [SMALL_STATE(4584)] = 181737, - [SMALL_STATE(4585)] = 181752, - [SMALL_STATE(4586)] = 181767, - [SMALL_STATE(4587)] = 181782, - [SMALL_STATE(4588)] = 181797, - [SMALL_STATE(4589)] = 181808, - [SMALL_STATE(4590)] = 181825, - [SMALL_STATE(4591)] = 181836, - [SMALL_STATE(4592)] = 181853, - [SMALL_STATE(4593)] = 181870, - [SMALL_STATE(4594)] = 181887, - [SMALL_STATE(4595)] = 181898, - [SMALL_STATE(4596)] = 181915, - [SMALL_STATE(4597)] = 181930, - [SMALL_STATE(4598)] = 181941, - [SMALL_STATE(4599)] = 181958, - [SMALL_STATE(4600)] = 181969, - [SMALL_STATE(4601)] = 181984, - [SMALL_STATE(4602)] = 181995, - [SMALL_STATE(4603)] = 182012, - [SMALL_STATE(4604)] = 182023, - [SMALL_STATE(4605)] = 182038, - [SMALL_STATE(4606)] = 182049, - [SMALL_STATE(4607)] = 182060, - [SMALL_STATE(4608)] = 182071, - [SMALL_STATE(4609)] = 182082, - [SMALL_STATE(4610)] = 182099, - [SMALL_STATE(4611)] = 182110, - [SMALL_STATE(4612)] = 182121, - [SMALL_STATE(4613)] = 182138, - [SMALL_STATE(4614)] = 182153, - [SMALL_STATE(4615)] = 182164, - [SMALL_STATE(4616)] = 182181, - [SMALL_STATE(4617)] = 182198, - [SMALL_STATE(4618)] = 182209, - [SMALL_STATE(4619)] = 182224, - [SMALL_STATE(4620)] = 182241, - [SMALL_STATE(4621)] = 182252, - [SMALL_STATE(4622)] = 182269, - [SMALL_STATE(4623)] = 182284, - [SMALL_STATE(4624)] = 182299, - [SMALL_STATE(4625)] = 182310, - [SMALL_STATE(4626)] = 182327, - [SMALL_STATE(4627)] = 182342, - [SMALL_STATE(4628)] = 182359, - [SMALL_STATE(4629)] = 182370, - [SMALL_STATE(4630)] = 182387, - [SMALL_STATE(4631)] = 182398, - [SMALL_STATE(4632)] = 182409, - [SMALL_STATE(4633)] = 182424, - [SMALL_STATE(4634)] = 182435, - [SMALL_STATE(4635)] = 182446, - [SMALL_STATE(4636)] = 182461, - [SMALL_STATE(4637)] = 182472, - [SMALL_STATE(4638)] = 182489, - [SMALL_STATE(4639)] = 182504, - [SMALL_STATE(4640)] = 182515, - [SMALL_STATE(4641)] = 182526, - [SMALL_STATE(4642)] = 182537, - [SMALL_STATE(4643)] = 182548, - [SMALL_STATE(4644)] = 182559, - [SMALL_STATE(4645)] = 182570, - [SMALL_STATE(4646)] = 182581, - [SMALL_STATE(4647)] = 182592, - [SMALL_STATE(4648)] = 182607, - [SMALL_STATE(4649)] = 182618, - [SMALL_STATE(4650)] = 182629, - [SMALL_STATE(4651)] = 182643, - [SMALL_STATE(4652)] = 182657, - [SMALL_STATE(4653)] = 182671, - [SMALL_STATE(4654)] = 182685, - [SMALL_STATE(4655)] = 182699, - [SMALL_STATE(4656)] = 182711, - [SMALL_STATE(4657)] = 182725, - [SMALL_STATE(4658)] = 182737, - [SMALL_STATE(4659)] = 182751, - [SMALL_STATE(4660)] = 182765, - [SMALL_STATE(4661)] = 182779, - [SMALL_STATE(4662)] = 182793, - [SMALL_STATE(4663)] = 182807, - [SMALL_STATE(4664)] = 182821, - [SMALL_STATE(4665)] = 182835, - [SMALL_STATE(4666)] = 182849, - [SMALL_STATE(4667)] = 182863, - [SMALL_STATE(4668)] = 182877, - [SMALL_STATE(4669)] = 182891, - [SMALL_STATE(4670)] = 182905, - [SMALL_STATE(4671)] = 182919, - [SMALL_STATE(4672)] = 182933, - [SMALL_STATE(4673)] = 182947, - [SMALL_STATE(4674)] = 182961, - [SMALL_STATE(4675)] = 182975, - [SMALL_STATE(4676)] = 182989, - [SMALL_STATE(4677)] = 183003, - [SMALL_STATE(4678)] = 183017, - [SMALL_STATE(4679)] = 183031, - [SMALL_STATE(4680)] = 183045, - [SMALL_STATE(4681)] = 183059, - [SMALL_STATE(4682)] = 183073, - [SMALL_STATE(4683)] = 183087, - [SMALL_STATE(4684)] = 183101, - [SMALL_STATE(4685)] = 183115, - [SMALL_STATE(4686)] = 183129, - [SMALL_STATE(4687)] = 183143, - [SMALL_STATE(4688)] = 183157, - [SMALL_STATE(4689)] = 183171, - [SMALL_STATE(4690)] = 183185, - [SMALL_STATE(4691)] = 183199, - [SMALL_STATE(4692)] = 183213, - [SMALL_STATE(4693)] = 183227, - [SMALL_STATE(4694)] = 183241, - [SMALL_STATE(4695)] = 183255, - [SMALL_STATE(4696)] = 183269, - [SMALL_STATE(4697)] = 183283, - [SMALL_STATE(4698)] = 183297, - [SMALL_STATE(4699)] = 183311, - [SMALL_STATE(4700)] = 183325, - [SMALL_STATE(4701)] = 183339, - [SMALL_STATE(4702)] = 183353, - [SMALL_STATE(4703)] = 183367, - [SMALL_STATE(4704)] = 183381, - [SMALL_STATE(4705)] = 183395, - [SMALL_STATE(4706)] = 183409, - [SMALL_STATE(4707)] = 183421, - [SMALL_STATE(4708)] = 183435, - [SMALL_STATE(4709)] = 183449, - [SMALL_STATE(4710)] = 183463, - [SMALL_STATE(4711)] = 183477, - [SMALL_STATE(4712)] = 183491, - [SMALL_STATE(4713)] = 183505, - [SMALL_STATE(4714)] = 183519, - [SMALL_STATE(4715)] = 183533, - [SMALL_STATE(4716)] = 183547, - [SMALL_STATE(4717)] = 183561, - [SMALL_STATE(4718)] = 183575, - [SMALL_STATE(4719)] = 183589, - [SMALL_STATE(4720)] = 183603, - [SMALL_STATE(4721)] = 183617, - [SMALL_STATE(4722)] = 183631, - [SMALL_STATE(4723)] = 183645, - [SMALL_STATE(4724)] = 183659, - [SMALL_STATE(4725)] = 183673, - [SMALL_STATE(4726)] = 183687, - [SMALL_STATE(4727)] = 183701, - [SMALL_STATE(4728)] = 183715, - [SMALL_STATE(4729)] = 183729, - [SMALL_STATE(4730)] = 183743, - [SMALL_STATE(4731)] = 183757, - [SMALL_STATE(4732)] = 183771, - [SMALL_STATE(4733)] = 183785, - [SMALL_STATE(4734)] = 183799, - [SMALL_STATE(4735)] = 183813, - [SMALL_STATE(4736)] = 183827, - [SMALL_STATE(4737)] = 183841, - [SMALL_STATE(4738)] = 183855, - [SMALL_STATE(4739)] = 183869, - [SMALL_STATE(4740)] = 183883, - [SMALL_STATE(4741)] = 183897, - [SMALL_STATE(4742)] = 183911, - [SMALL_STATE(4743)] = 183925, - [SMALL_STATE(4744)] = 183939, - [SMALL_STATE(4745)] = 183953, - [SMALL_STATE(4746)] = 183967, - [SMALL_STATE(4747)] = 183981, - [SMALL_STATE(4748)] = 183995, - [SMALL_STATE(4749)] = 184009, - [SMALL_STATE(4750)] = 184023, - [SMALL_STATE(4751)] = 184037, - [SMALL_STATE(4752)] = 184051, - [SMALL_STATE(4753)] = 184065, - [SMALL_STATE(4754)] = 184079, - [SMALL_STATE(4755)] = 184093, - [SMALL_STATE(4756)] = 184107, - [SMALL_STATE(4757)] = 184121, - [SMALL_STATE(4758)] = 184133, - [SMALL_STATE(4759)] = 184147, - [SMALL_STATE(4760)] = 184161, - [SMALL_STATE(4761)] = 184175, - [SMALL_STATE(4762)] = 184189, - [SMALL_STATE(4763)] = 184203, - [SMALL_STATE(4764)] = 184217, - [SMALL_STATE(4765)] = 184231, - [SMALL_STATE(4766)] = 184245, - [SMALL_STATE(4767)] = 184259, - [SMALL_STATE(4768)] = 184273, - [SMALL_STATE(4769)] = 184287, - [SMALL_STATE(4770)] = 184301, - [SMALL_STATE(4771)] = 184315, - [SMALL_STATE(4772)] = 184329, - [SMALL_STATE(4773)] = 184343, - [SMALL_STATE(4774)] = 184357, - [SMALL_STATE(4775)] = 184371, - [SMALL_STATE(4776)] = 184383, - [SMALL_STATE(4777)] = 184397, - [SMALL_STATE(4778)] = 184411, - [SMALL_STATE(4779)] = 184425, - [SMALL_STATE(4780)] = 184439, - [SMALL_STATE(4781)] = 184453, - [SMALL_STATE(4782)] = 184467, - [SMALL_STATE(4783)] = 184481, - [SMALL_STATE(4784)] = 184495, - [SMALL_STATE(4785)] = 184509, - [SMALL_STATE(4786)] = 184523, - [SMALL_STATE(4787)] = 184537, - [SMALL_STATE(4788)] = 184551, - [SMALL_STATE(4789)] = 184565, - [SMALL_STATE(4790)] = 184579, - [SMALL_STATE(4791)] = 184593, - [SMALL_STATE(4792)] = 184607, - [SMALL_STATE(4793)] = 184621, - [SMALL_STATE(4794)] = 184635, - [SMALL_STATE(4795)] = 184645, - [SMALL_STATE(4796)] = 184659, - [SMALL_STATE(4797)] = 184673, - [SMALL_STATE(4798)] = 184687, - [SMALL_STATE(4799)] = 184701, - [SMALL_STATE(4800)] = 184715, - [SMALL_STATE(4801)] = 184727, - [SMALL_STATE(4802)] = 184739, - [SMALL_STATE(4803)] = 184753, - [SMALL_STATE(4804)] = 184765, - [SMALL_STATE(4805)] = 184779, - [SMALL_STATE(4806)] = 184791, - [SMALL_STATE(4807)] = 184803, - [SMALL_STATE(4808)] = 184817, - [SMALL_STATE(4809)] = 184831, - [SMALL_STATE(4810)] = 184845, - [SMALL_STATE(4811)] = 184859, - [SMALL_STATE(4812)] = 184873, - [SMALL_STATE(4813)] = 184887, - [SMALL_STATE(4814)] = 184901, - [SMALL_STATE(4815)] = 184915, - [SMALL_STATE(4816)] = 184929, - [SMALL_STATE(4817)] = 184943, - [SMALL_STATE(4818)] = 184957, - [SMALL_STATE(4819)] = 184971, - [SMALL_STATE(4820)] = 184985, - [SMALL_STATE(4821)] = 184999, - [SMALL_STATE(4822)] = 185013, - [SMALL_STATE(4823)] = 185025, - [SMALL_STATE(4824)] = 185039, - [SMALL_STATE(4825)] = 185053, - [SMALL_STATE(4826)] = 185067, - [SMALL_STATE(4827)] = 185081, - [SMALL_STATE(4828)] = 185095, - [SMALL_STATE(4829)] = 185109, - [SMALL_STATE(4830)] = 185123, - [SMALL_STATE(4831)] = 185137, - [SMALL_STATE(4832)] = 185151, - [SMALL_STATE(4833)] = 185161, - [SMALL_STATE(4834)] = 185175, - [SMALL_STATE(4835)] = 185189, - [SMALL_STATE(4836)] = 185203, - [SMALL_STATE(4837)] = 185217, - [SMALL_STATE(4838)] = 185231, - [SMALL_STATE(4839)] = 185245, - [SMALL_STATE(4840)] = 185259, - [SMALL_STATE(4841)] = 185273, - [SMALL_STATE(4842)] = 185285, - [SMALL_STATE(4843)] = 185299, - [SMALL_STATE(4844)] = 185309, - [SMALL_STATE(4845)] = 185323, - [SMALL_STATE(4846)] = 185337, - [SMALL_STATE(4847)] = 185351, - [SMALL_STATE(4848)] = 185365, - [SMALL_STATE(4849)] = 185379, - [SMALL_STATE(4850)] = 185393, - [SMALL_STATE(4851)] = 185405, - [SMALL_STATE(4852)] = 185419, - [SMALL_STATE(4853)] = 185433, - [SMALL_STATE(4854)] = 185447, - [SMALL_STATE(4855)] = 185461, - [SMALL_STATE(4856)] = 185475, - [SMALL_STATE(4857)] = 185485, - [SMALL_STATE(4858)] = 185499, - [SMALL_STATE(4859)] = 185513, - [SMALL_STATE(4860)] = 185527, - [SMALL_STATE(4861)] = 185541, - [SMALL_STATE(4862)] = 185555, - [SMALL_STATE(4863)] = 185567, - [SMALL_STATE(4864)] = 185581, - [SMALL_STATE(4865)] = 185595, - [SMALL_STATE(4866)] = 185609, - [SMALL_STATE(4867)] = 185623, - [SMALL_STATE(4868)] = 185633, - [SMALL_STATE(4869)] = 185647, - [SMALL_STATE(4870)] = 185661, - [SMALL_STATE(4871)] = 185675, - [SMALL_STATE(4872)] = 185689, - [SMALL_STATE(4873)] = 185703, - [SMALL_STATE(4874)] = 185717, - [SMALL_STATE(4875)] = 185731, - [SMALL_STATE(4876)] = 185745, - [SMALL_STATE(4877)] = 185759, - [SMALL_STATE(4878)] = 185773, - [SMALL_STATE(4879)] = 185787, - [SMALL_STATE(4880)] = 185801, - [SMALL_STATE(4881)] = 185815, - [SMALL_STATE(4882)] = 185829, - [SMALL_STATE(4883)] = 185843, - [SMALL_STATE(4884)] = 185853, - [SMALL_STATE(4885)] = 185867, - [SMALL_STATE(4886)] = 185881, - [SMALL_STATE(4887)] = 185895, - [SMALL_STATE(4888)] = 185909, - [SMALL_STATE(4889)] = 185923, - [SMALL_STATE(4890)] = 185937, - [SMALL_STATE(4891)] = 185951, - [SMALL_STATE(4892)] = 185965, - [SMALL_STATE(4893)] = 185979, - [SMALL_STATE(4894)] = 185993, - [SMALL_STATE(4895)] = 186007, - [SMALL_STATE(4896)] = 186021, - [SMALL_STATE(4897)] = 186035, - [SMALL_STATE(4898)] = 186049, - [SMALL_STATE(4899)] = 186059, - [SMALL_STATE(4900)] = 186073, - [SMALL_STATE(4901)] = 186087, - [SMALL_STATE(4902)] = 186101, - [SMALL_STATE(4903)] = 186115, - [SMALL_STATE(4904)] = 186129, - [SMALL_STATE(4905)] = 186143, - [SMALL_STATE(4906)] = 186157, - [SMALL_STATE(4907)] = 186171, - [SMALL_STATE(4908)] = 186185, - [SMALL_STATE(4909)] = 186199, - [SMALL_STATE(4910)] = 186213, - [SMALL_STATE(4911)] = 186227, - [SMALL_STATE(4912)] = 186241, - [SMALL_STATE(4913)] = 186255, - [SMALL_STATE(4914)] = 186269, - [SMALL_STATE(4915)] = 186283, - [SMALL_STATE(4916)] = 186297, - [SMALL_STATE(4917)] = 186311, - [SMALL_STATE(4918)] = 186325, - [SMALL_STATE(4919)] = 186339, - [SMALL_STATE(4920)] = 186353, - [SMALL_STATE(4921)] = 186367, - [SMALL_STATE(4922)] = 186381, - [SMALL_STATE(4923)] = 186395, - [SMALL_STATE(4924)] = 186409, - [SMALL_STATE(4925)] = 186423, - [SMALL_STATE(4926)] = 186437, - [SMALL_STATE(4927)] = 186451, - [SMALL_STATE(4928)] = 186465, - [SMALL_STATE(4929)] = 186479, - [SMALL_STATE(4930)] = 186493, - [SMALL_STATE(4931)] = 186507, - [SMALL_STATE(4932)] = 186521, - [SMALL_STATE(4933)] = 186535, - [SMALL_STATE(4934)] = 186549, - [SMALL_STATE(4935)] = 186563, - [SMALL_STATE(4936)] = 186577, - [SMALL_STATE(4937)] = 186587, - [SMALL_STATE(4938)] = 186601, - [SMALL_STATE(4939)] = 186615, - [SMALL_STATE(4940)] = 186629, - [SMALL_STATE(4941)] = 186643, - [SMALL_STATE(4942)] = 186657, - [SMALL_STATE(4943)] = 186669, - [SMALL_STATE(4944)] = 186683, - [SMALL_STATE(4945)] = 186697, - [SMALL_STATE(4946)] = 186711, - [SMALL_STATE(4947)] = 186725, - [SMALL_STATE(4948)] = 186739, - [SMALL_STATE(4949)] = 186753, - [SMALL_STATE(4950)] = 186767, - [SMALL_STATE(4951)] = 186781, - [SMALL_STATE(4952)] = 186795, - [SMALL_STATE(4953)] = 186809, - [SMALL_STATE(4954)] = 186823, - [SMALL_STATE(4955)] = 186837, - [SMALL_STATE(4956)] = 186851, - [SMALL_STATE(4957)] = 186865, - [SMALL_STATE(4958)] = 186879, - [SMALL_STATE(4959)] = 186893, - [SMALL_STATE(4960)] = 186907, - [SMALL_STATE(4961)] = 186921, - [SMALL_STATE(4962)] = 186935, - [SMALL_STATE(4963)] = 186949, - [SMALL_STATE(4964)] = 186963, - [SMALL_STATE(4965)] = 186977, - [SMALL_STATE(4966)] = 186991, - [SMALL_STATE(4967)] = 187005, - [SMALL_STATE(4968)] = 187019, - [SMALL_STATE(4969)] = 187033, - [SMALL_STATE(4970)] = 187043, - [SMALL_STATE(4971)] = 187057, - [SMALL_STATE(4972)] = 187071, - [SMALL_STATE(4973)] = 187085, - [SMALL_STATE(4974)] = 187099, - [SMALL_STATE(4975)] = 187113, - [SMALL_STATE(4976)] = 187127, - [SMALL_STATE(4977)] = 187141, - [SMALL_STATE(4978)] = 187155, - [SMALL_STATE(4979)] = 187169, - [SMALL_STATE(4980)] = 187183, - [SMALL_STATE(4981)] = 187197, - [SMALL_STATE(4982)] = 187211, - [SMALL_STATE(4983)] = 187225, - [SMALL_STATE(4984)] = 187239, - [SMALL_STATE(4985)] = 187253, - [SMALL_STATE(4986)] = 187267, - [SMALL_STATE(4987)] = 187279, - [SMALL_STATE(4988)] = 187291, - [SMALL_STATE(4989)] = 187303, - [SMALL_STATE(4990)] = 187317, - [SMALL_STATE(4991)] = 187329, - [SMALL_STATE(4992)] = 187343, - [SMALL_STATE(4993)] = 187357, - [SMALL_STATE(4994)] = 187371, - [SMALL_STATE(4995)] = 187385, - [SMALL_STATE(4996)] = 187399, - [SMALL_STATE(4997)] = 187413, - [SMALL_STATE(4998)] = 187427, - [SMALL_STATE(4999)] = 187441, - [SMALL_STATE(5000)] = 187455, - [SMALL_STATE(5001)] = 187465, - [SMALL_STATE(5002)] = 187479, - [SMALL_STATE(5003)] = 187493, - [SMALL_STATE(5004)] = 187507, - [SMALL_STATE(5005)] = 187519, - [SMALL_STATE(5006)] = 187533, - [SMALL_STATE(5007)] = 187547, - [SMALL_STATE(5008)] = 187561, - [SMALL_STATE(5009)] = 187575, - [SMALL_STATE(5010)] = 187589, - [SMALL_STATE(5011)] = 187603, - [SMALL_STATE(5012)] = 187617, - [SMALL_STATE(5013)] = 187631, - [SMALL_STATE(5014)] = 187645, - [SMALL_STATE(5015)] = 187659, - [SMALL_STATE(5016)] = 187673, - [SMALL_STATE(5017)] = 187683, - [SMALL_STATE(5018)] = 187697, - [SMALL_STATE(5019)] = 187711, - [SMALL_STATE(5020)] = 187725, - [SMALL_STATE(5021)] = 187739, - [SMALL_STATE(5022)] = 187753, - [SMALL_STATE(5023)] = 187767, - [SMALL_STATE(5024)] = 187779, - [SMALL_STATE(5025)] = 187793, - [SMALL_STATE(5026)] = 187807, - [SMALL_STATE(5027)] = 187821, - [SMALL_STATE(5028)] = 187835, - [SMALL_STATE(5029)] = 187849, - [SMALL_STATE(5030)] = 187863, - [SMALL_STATE(5031)] = 187877, - [SMALL_STATE(5032)] = 187891, - [SMALL_STATE(5033)] = 187905, - [SMALL_STATE(5034)] = 187919, - [SMALL_STATE(5035)] = 187933, - [SMALL_STATE(5036)] = 187947, - [SMALL_STATE(5037)] = 187961, - [SMALL_STATE(5038)] = 187975, - [SMALL_STATE(5039)] = 187989, - [SMALL_STATE(5040)] = 188003, - [SMALL_STATE(5041)] = 188017, - [SMALL_STATE(5042)] = 188031, - [SMALL_STATE(5043)] = 188045, - [SMALL_STATE(5044)] = 188059, - [SMALL_STATE(5045)] = 188073, - [SMALL_STATE(5046)] = 188087, - [SMALL_STATE(5047)] = 188101, - [SMALL_STATE(5048)] = 188113, - [SMALL_STATE(5049)] = 188127, - [SMALL_STATE(5050)] = 188141, - [SMALL_STATE(5051)] = 188155, - [SMALL_STATE(5052)] = 188169, - [SMALL_STATE(5053)] = 188183, - [SMALL_STATE(5054)] = 188197, - [SMALL_STATE(5055)] = 188211, - [SMALL_STATE(5056)] = 188225, - [SMALL_STATE(5057)] = 188239, - [SMALL_STATE(5058)] = 188253, - [SMALL_STATE(5059)] = 188267, - [SMALL_STATE(5060)] = 188281, - [SMALL_STATE(5061)] = 188295, - [SMALL_STATE(5062)] = 188309, - [SMALL_STATE(5063)] = 188323, - [SMALL_STATE(5064)] = 188337, - [SMALL_STATE(5065)] = 188351, - [SMALL_STATE(5066)] = 188365, - [SMALL_STATE(5067)] = 188379, - [SMALL_STATE(5068)] = 188393, - [SMALL_STATE(5069)] = 188407, - [SMALL_STATE(5070)] = 188421, - [SMALL_STATE(5071)] = 188435, - [SMALL_STATE(5072)] = 188445, - [SMALL_STATE(5073)] = 188459, - [SMALL_STATE(5074)] = 188473, - [SMALL_STATE(5075)] = 188487, - [SMALL_STATE(5076)] = 188501, - [SMALL_STATE(5077)] = 188515, - [SMALL_STATE(5078)] = 188529, - [SMALL_STATE(5079)] = 188543, - [SMALL_STATE(5080)] = 188557, - [SMALL_STATE(5081)] = 188571, - [SMALL_STATE(5082)] = 188583, - [SMALL_STATE(5083)] = 188597, - [SMALL_STATE(5084)] = 188611, - [SMALL_STATE(5085)] = 188625, - [SMALL_STATE(5086)] = 188639, - [SMALL_STATE(5087)] = 188653, - [SMALL_STATE(5088)] = 188665, - [SMALL_STATE(5089)] = 188677, - [SMALL_STATE(5090)] = 188691, - [SMALL_STATE(5091)] = 188705, - [SMALL_STATE(5092)] = 188719, - [SMALL_STATE(5093)] = 188733, - [SMALL_STATE(5094)] = 188747, - [SMALL_STATE(5095)] = 188761, - [SMALL_STATE(5096)] = 188775, - [SMALL_STATE(5097)] = 188787, - [SMALL_STATE(5098)] = 188801, - [SMALL_STATE(5099)] = 188815, - [SMALL_STATE(5100)] = 188829, - [SMALL_STATE(5101)] = 188843, - [SMALL_STATE(5102)] = 188857, - [SMALL_STATE(5103)] = 188869, - [SMALL_STATE(5104)] = 188883, - [SMALL_STATE(5105)] = 188897, - [SMALL_STATE(5106)] = 188911, - [SMALL_STATE(5107)] = 188925, - [SMALL_STATE(5108)] = 188939, - [SMALL_STATE(5109)] = 188951, - [SMALL_STATE(5110)] = 188965, - [SMALL_STATE(5111)] = 188979, - [SMALL_STATE(5112)] = 188993, - [SMALL_STATE(5113)] = 189007, - [SMALL_STATE(5114)] = 189021, - [SMALL_STATE(5115)] = 189035, - [SMALL_STATE(5116)] = 189049, - [SMALL_STATE(5117)] = 189063, - [SMALL_STATE(5118)] = 189077, - [SMALL_STATE(5119)] = 189091, - [SMALL_STATE(5120)] = 189105, - [SMALL_STATE(5121)] = 189119, - [SMALL_STATE(5122)] = 189133, - [SMALL_STATE(5123)] = 189147, - [SMALL_STATE(5124)] = 189161, - [SMALL_STATE(5125)] = 189175, - [SMALL_STATE(5126)] = 189189, - [SMALL_STATE(5127)] = 189203, - [SMALL_STATE(5128)] = 189213, - [SMALL_STATE(5129)] = 189227, - [SMALL_STATE(5130)] = 189241, - [SMALL_STATE(5131)] = 189255, - [SMALL_STATE(5132)] = 189269, - [SMALL_STATE(5133)] = 189283, - [SMALL_STATE(5134)] = 189297, - [SMALL_STATE(5135)] = 189311, - [SMALL_STATE(5136)] = 189325, - [SMALL_STATE(5137)] = 189339, - [SMALL_STATE(5138)] = 189353, - [SMALL_STATE(5139)] = 189367, - [SMALL_STATE(5140)] = 189381, - [SMALL_STATE(5141)] = 189395, - [SMALL_STATE(5142)] = 189409, - [SMALL_STATE(5143)] = 189423, - [SMALL_STATE(5144)] = 189437, - [SMALL_STATE(5145)] = 189451, - [SMALL_STATE(5146)] = 189465, - [SMALL_STATE(5147)] = 189479, - [SMALL_STATE(5148)] = 189493, - [SMALL_STATE(5149)] = 189507, - [SMALL_STATE(5150)] = 189521, - [SMALL_STATE(5151)] = 189535, - [SMALL_STATE(5152)] = 189549, - [SMALL_STATE(5153)] = 189563, - [SMALL_STATE(5154)] = 189575, - [SMALL_STATE(5155)] = 189589, - [SMALL_STATE(5156)] = 189603, - [SMALL_STATE(5157)] = 189617, - [SMALL_STATE(5158)] = 189631, - [SMALL_STATE(5159)] = 189645, - [SMALL_STATE(5160)] = 189659, - [SMALL_STATE(5161)] = 189673, - [SMALL_STATE(5162)] = 189685, - [SMALL_STATE(5163)] = 189699, - [SMALL_STATE(5164)] = 189709, - [SMALL_STATE(5165)] = 189723, - [SMALL_STATE(5166)] = 189732, - [SMALL_STATE(5167)] = 189743, - [SMALL_STATE(5168)] = 189752, - [SMALL_STATE(5169)] = 189761, - [SMALL_STATE(5170)] = 189770, - [SMALL_STATE(5171)] = 189781, - [SMALL_STATE(5172)] = 189792, - [SMALL_STATE(5173)] = 189801, - [SMALL_STATE(5174)] = 189810, - [SMALL_STATE(5175)] = 189821, - [SMALL_STATE(5176)] = 189832, - [SMALL_STATE(5177)] = 189843, - [SMALL_STATE(5178)] = 189852, - [SMALL_STATE(5179)] = 189863, - [SMALL_STATE(5180)] = 189874, - [SMALL_STATE(5181)] = 189883, - [SMALL_STATE(5182)] = 189892, - [SMALL_STATE(5183)] = 189903, - [SMALL_STATE(5184)] = 189914, - [SMALL_STATE(5185)] = 189925, - [SMALL_STATE(5186)] = 189934, - [SMALL_STATE(5187)] = 189945, - [SMALL_STATE(5188)] = 189954, - [SMALL_STATE(5189)] = 189965, - [SMALL_STATE(5190)] = 189976, - [SMALL_STATE(5191)] = 189987, - [SMALL_STATE(5192)] = 189996, - [SMALL_STATE(5193)] = 190005, - [SMALL_STATE(5194)] = 190014, - [SMALL_STATE(5195)] = 190025, - [SMALL_STATE(5196)] = 190034, - [SMALL_STATE(5197)] = 190043, - [SMALL_STATE(5198)] = 190054, - [SMALL_STATE(5199)] = 190065, - [SMALL_STATE(5200)] = 190074, - [SMALL_STATE(5201)] = 190085, - [SMALL_STATE(5202)] = 190094, - [SMALL_STATE(5203)] = 190103, - [SMALL_STATE(5204)] = 190114, - [SMALL_STATE(5205)] = 190125, - [SMALL_STATE(5206)] = 190134, - [SMALL_STATE(5207)] = 190143, - [SMALL_STATE(5208)] = 190154, - [SMALL_STATE(5209)] = 190165, - [SMALL_STATE(5210)] = 190174, - [SMALL_STATE(5211)] = 190185, - [SMALL_STATE(5212)] = 190196, - [SMALL_STATE(5213)] = 190207, - [SMALL_STATE(5214)] = 190218, - [SMALL_STATE(5215)] = 190229, - [SMALL_STATE(5216)] = 190240, - [SMALL_STATE(5217)] = 190251, - [SMALL_STATE(5218)] = 190262, - [SMALL_STATE(5219)] = 190273, - [SMALL_STATE(5220)] = 190282, - [SMALL_STATE(5221)] = 190293, - [SMALL_STATE(5222)] = 190302, - [SMALL_STATE(5223)] = 190313, - [SMALL_STATE(5224)] = 190324, - [SMALL_STATE(5225)] = 190335, - [SMALL_STATE(5226)] = 190346, - [SMALL_STATE(5227)] = 190357, - [SMALL_STATE(5228)] = 190368, - [SMALL_STATE(5229)] = 190379, - [SMALL_STATE(5230)] = 190390, - [SMALL_STATE(5231)] = 190401, - [SMALL_STATE(5232)] = 190410, - [SMALL_STATE(5233)] = 190419, - [SMALL_STATE(5234)] = 190430, - [SMALL_STATE(5235)] = 190441, - [SMALL_STATE(5236)] = 190452, - [SMALL_STATE(5237)] = 190463, - [SMALL_STATE(5238)] = 190474, - [SMALL_STATE(5239)] = 190485, - [SMALL_STATE(5240)] = 190496, - [SMALL_STATE(5241)] = 190505, - [SMALL_STATE(5242)] = 190514, - [SMALL_STATE(5243)] = 190525, - [SMALL_STATE(5244)] = 190536, - [SMALL_STATE(5245)] = 190547, - [SMALL_STATE(5246)] = 190558, - [SMALL_STATE(5247)] = 190567, - [SMALL_STATE(5248)] = 190578, - [SMALL_STATE(5249)] = 190589, - [SMALL_STATE(5250)] = 190600, - [SMALL_STATE(5251)] = 190611, - [SMALL_STATE(5252)] = 190620, - [SMALL_STATE(5253)] = 190629, - [SMALL_STATE(5254)] = 190638, - [SMALL_STATE(5255)] = 190647, - [SMALL_STATE(5256)] = 190658, - [SMALL_STATE(5257)] = 190667, - [SMALL_STATE(5258)] = 190678, - [SMALL_STATE(5259)] = 190689, - [SMALL_STATE(5260)] = 190700, - [SMALL_STATE(5261)] = 190711, - [SMALL_STATE(5262)] = 190722, - [SMALL_STATE(5263)] = 190733, - [SMALL_STATE(5264)] = 190744, - [SMALL_STATE(5265)] = 190753, - [SMALL_STATE(5266)] = 190762, - [SMALL_STATE(5267)] = 190771, - [SMALL_STATE(5268)] = 190782, - [SMALL_STATE(5269)] = 190791, - [SMALL_STATE(5270)] = 190802, - [SMALL_STATE(5271)] = 190813, - [SMALL_STATE(5272)] = 190824, - [SMALL_STATE(5273)] = 190835, - [SMALL_STATE(5274)] = 190844, - [SMALL_STATE(5275)] = 190855, - [SMALL_STATE(5276)] = 190866, - [SMALL_STATE(5277)] = 190877, - [SMALL_STATE(5278)] = 190886, - [SMALL_STATE(5279)] = 190897, - [SMALL_STATE(5280)] = 190908, - [SMALL_STATE(5281)] = 190917, - [SMALL_STATE(5282)] = 190926, - [SMALL_STATE(5283)] = 190937, - [SMALL_STATE(5284)] = 190948, - [SMALL_STATE(5285)] = 190959, - [SMALL_STATE(5286)] = 190970, - [SMALL_STATE(5287)] = 190979, - [SMALL_STATE(5288)] = 190990, - [SMALL_STATE(5289)] = 191001, - [SMALL_STATE(5290)] = 191010, - [SMALL_STATE(5291)] = 191019, - [SMALL_STATE(5292)] = 191030, - [SMALL_STATE(5293)] = 191039, - [SMALL_STATE(5294)] = 191050, - [SMALL_STATE(5295)] = 191061, - [SMALL_STATE(5296)] = 191070, - [SMALL_STATE(5297)] = 191081, - [SMALL_STATE(5298)] = 191090, - [SMALL_STATE(5299)] = 191099, - [SMALL_STATE(5300)] = 191110, - [SMALL_STATE(5301)] = 191119, - [SMALL_STATE(5302)] = 191130, - [SMALL_STATE(5303)] = 191141, - [SMALL_STATE(5304)] = 191150, - [SMALL_STATE(5305)] = 191161, - [SMALL_STATE(5306)] = 191172, - [SMALL_STATE(5307)] = 191181, - [SMALL_STATE(5308)] = 191190, - [SMALL_STATE(5309)] = 191201, - [SMALL_STATE(5310)] = 191210, - [SMALL_STATE(5311)] = 191219, - [SMALL_STATE(5312)] = 191228, - [SMALL_STATE(5313)] = 191237, - [SMALL_STATE(5314)] = 191248, - [SMALL_STATE(5315)] = 191257, - [SMALL_STATE(5316)] = 191266, - [SMALL_STATE(5317)] = 191277, - [SMALL_STATE(5318)] = 191286, - [SMALL_STATE(5319)] = 191297, - [SMALL_STATE(5320)] = 191306, - [SMALL_STATE(5321)] = 191317, - [SMALL_STATE(5322)] = 191326, - [SMALL_STATE(5323)] = 191335, - [SMALL_STATE(5324)] = 191344, - [SMALL_STATE(5325)] = 191355, - [SMALL_STATE(5326)] = 191366, - [SMALL_STATE(5327)] = 191375, - [SMALL_STATE(5328)] = 191384, - [SMALL_STATE(5329)] = 191395, - [SMALL_STATE(5330)] = 191406, - [SMALL_STATE(5331)] = 191415, - [SMALL_STATE(5332)] = 191424, - [SMALL_STATE(5333)] = 191433, - [SMALL_STATE(5334)] = 191442, - [SMALL_STATE(5335)] = 191453, - [SMALL_STATE(5336)] = 191462, - [SMALL_STATE(5337)] = 191471, - [SMALL_STATE(5338)] = 191482, - [SMALL_STATE(5339)] = 191491, - [SMALL_STATE(5340)] = 191502, - [SMALL_STATE(5341)] = 191513, - [SMALL_STATE(5342)] = 191524, - [SMALL_STATE(5343)] = 191535, - [SMALL_STATE(5344)] = 191544, - [SMALL_STATE(5345)] = 191555, - [SMALL_STATE(5346)] = 191566, - [SMALL_STATE(5347)] = 191577, - [SMALL_STATE(5348)] = 191588, - [SMALL_STATE(5349)] = 191599, - [SMALL_STATE(5350)] = 191608, - [SMALL_STATE(5351)] = 191619, - [SMALL_STATE(5352)] = 191628, - [SMALL_STATE(5353)] = 191639, - [SMALL_STATE(5354)] = 191648, - [SMALL_STATE(5355)] = 191659, - [SMALL_STATE(5356)] = 191668, - [SMALL_STATE(5357)] = 191677, - [SMALL_STATE(5358)] = 191688, - [SMALL_STATE(5359)] = 191699, - [SMALL_STATE(5360)] = 191708, - [SMALL_STATE(5361)] = 191717, - [SMALL_STATE(5362)] = 191728, - [SMALL_STATE(5363)] = 191737, - [SMALL_STATE(5364)] = 191748, - [SMALL_STATE(5365)] = 191757, - [SMALL_STATE(5366)] = 191768, - [SMALL_STATE(5367)] = 191777, - [SMALL_STATE(5368)] = 191786, - [SMALL_STATE(5369)] = 191797, - [SMALL_STATE(5370)] = 191808, - [SMALL_STATE(5371)] = 191819, - [SMALL_STATE(5372)] = 191830, - [SMALL_STATE(5373)] = 191841, - [SMALL_STATE(5374)] = 191852, - [SMALL_STATE(5375)] = 191863, - [SMALL_STATE(5376)] = 191872, - [SMALL_STATE(5377)] = 191881, - [SMALL_STATE(5378)] = 191892, - [SMALL_STATE(5379)] = 191903, - [SMALL_STATE(5380)] = 191912, - [SMALL_STATE(5381)] = 191923, - [SMALL_STATE(5382)] = 191932, - [SMALL_STATE(5383)] = 191943, - [SMALL_STATE(5384)] = 191952, - [SMALL_STATE(5385)] = 191961, - [SMALL_STATE(5386)] = 191972, - [SMALL_STATE(5387)] = 191981, - [SMALL_STATE(5388)] = 191990, - [SMALL_STATE(5389)] = 191999, - [SMALL_STATE(5390)] = 192008, - [SMALL_STATE(5391)] = 192017, - [SMALL_STATE(5392)] = 192026, - [SMALL_STATE(5393)] = 192035, - [SMALL_STATE(5394)] = 192044, - [SMALL_STATE(5395)] = 192053, - [SMALL_STATE(5396)] = 192064, - [SMALL_STATE(5397)] = 192072, - [SMALL_STATE(5398)] = 192080, - [SMALL_STATE(5399)] = 192088, - [SMALL_STATE(5400)] = 192096, - [SMALL_STATE(5401)] = 192104, - [SMALL_STATE(5402)] = 192112, - [SMALL_STATE(5403)] = 192120, - [SMALL_STATE(5404)] = 192128, - [SMALL_STATE(5405)] = 192136, - [SMALL_STATE(5406)] = 192144, - [SMALL_STATE(5407)] = 192152, - [SMALL_STATE(5408)] = 192160, - [SMALL_STATE(5409)] = 192168, - [SMALL_STATE(5410)] = 192176, - [SMALL_STATE(5411)] = 192184, - [SMALL_STATE(5412)] = 192192, - [SMALL_STATE(5413)] = 192200, - [SMALL_STATE(5414)] = 192208, - [SMALL_STATE(5415)] = 192216, - [SMALL_STATE(5416)] = 192224, - [SMALL_STATE(5417)] = 192232, - [SMALL_STATE(5418)] = 192240, - [SMALL_STATE(5419)] = 192248, - [SMALL_STATE(5420)] = 192256, - [SMALL_STATE(5421)] = 192264, - [SMALL_STATE(5422)] = 192272, - [SMALL_STATE(5423)] = 192280, - [SMALL_STATE(5424)] = 192288, - [SMALL_STATE(5425)] = 192296, - [SMALL_STATE(5426)] = 192304, - [SMALL_STATE(5427)] = 192312, - [SMALL_STATE(5428)] = 192320, - [SMALL_STATE(5429)] = 192328, - [SMALL_STATE(5430)] = 192336, - [SMALL_STATE(5431)] = 192344, - [SMALL_STATE(5432)] = 192352, - [SMALL_STATE(5433)] = 192360, - [SMALL_STATE(5434)] = 192368, - [SMALL_STATE(5435)] = 192376, - [SMALL_STATE(5436)] = 192384, - [SMALL_STATE(5437)] = 192392, - [SMALL_STATE(5438)] = 192400, - [SMALL_STATE(5439)] = 192408, - [SMALL_STATE(5440)] = 192416, - [SMALL_STATE(5441)] = 192424, - [SMALL_STATE(5442)] = 192432, - [SMALL_STATE(5443)] = 192440, - [SMALL_STATE(5444)] = 192448, - [SMALL_STATE(5445)] = 192456, - [SMALL_STATE(5446)] = 192464, - [SMALL_STATE(5447)] = 192472, - [SMALL_STATE(5448)] = 192480, - [SMALL_STATE(5449)] = 192488, - [SMALL_STATE(5450)] = 192496, - [SMALL_STATE(5451)] = 192504, - [SMALL_STATE(5452)] = 192512, - [SMALL_STATE(5453)] = 192520, - [SMALL_STATE(5454)] = 192528, - [SMALL_STATE(5455)] = 192536, - [SMALL_STATE(5456)] = 192544, - [SMALL_STATE(5457)] = 192552, - [SMALL_STATE(5458)] = 192560, - [SMALL_STATE(5459)] = 192568, - [SMALL_STATE(5460)] = 192576, - [SMALL_STATE(5461)] = 192584, - [SMALL_STATE(5462)] = 192592, - [SMALL_STATE(5463)] = 192600, - [SMALL_STATE(5464)] = 192608, - [SMALL_STATE(5465)] = 192616, - [SMALL_STATE(5466)] = 192624, - [SMALL_STATE(5467)] = 192632, - [SMALL_STATE(5468)] = 192640, - [SMALL_STATE(5469)] = 192648, - [SMALL_STATE(5470)] = 192656, - [SMALL_STATE(5471)] = 192664, - [SMALL_STATE(5472)] = 192672, - [SMALL_STATE(5473)] = 192680, - [SMALL_STATE(5474)] = 192688, - [SMALL_STATE(5475)] = 192696, - [SMALL_STATE(5476)] = 192704, - [SMALL_STATE(5477)] = 192712, - [SMALL_STATE(5478)] = 192720, - [SMALL_STATE(5479)] = 192728, - [SMALL_STATE(5480)] = 192736, - [SMALL_STATE(5481)] = 192744, - [SMALL_STATE(5482)] = 192752, - [SMALL_STATE(5483)] = 192760, - [SMALL_STATE(5484)] = 192768, - [SMALL_STATE(5485)] = 192776, - [SMALL_STATE(5486)] = 192784, - [SMALL_STATE(5487)] = 192792, - [SMALL_STATE(5488)] = 192800, - [SMALL_STATE(5489)] = 192808, - [SMALL_STATE(5490)] = 192816, - [SMALL_STATE(5491)] = 192824, - [SMALL_STATE(5492)] = 192832, - [SMALL_STATE(5493)] = 192840, - [SMALL_STATE(5494)] = 192848, - [SMALL_STATE(5495)] = 192856, - [SMALL_STATE(5496)] = 192864, - [SMALL_STATE(5497)] = 192872, - [SMALL_STATE(5498)] = 192880, - [SMALL_STATE(5499)] = 192888, - [SMALL_STATE(5500)] = 192896, - [SMALL_STATE(5501)] = 192904, - [SMALL_STATE(5502)] = 192912, - [SMALL_STATE(5503)] = 192920, - [SMALL_STATE(5504)] = 192928, - [SMALL_STATE(5505)] = 192936, - [SMALL_STATE(5506)] = 192944, - [SMALL_STATE(5507)] = 192952, - [SMALL_STATE(5508)] = 192960, - [SMALL_STATE(5509)] = 192968, - [SMALL_STATE(5510)] = 192976, - [SMALL_STATE(5511)] = 192984, - [SMALL_STATE(5512)] = 192992, - [SMALL_STATE(5513)] = 193000, - [SMALL_STATE(5514)] = 193008, - [SMALL_STATE(5515)] = 193016, - [SMALL_STATE(5516)] = 193024, - [SMALL_STATE(5517)] = 193032, - [SMALL_STATE(5518)] = 193040, - [SMALL_STATE(5519)] = 193048, - [SMALL_STATE(5520)] = 193056, - [SMALL_STATE(5521)] = 193064, - [SMALL_STATE(5522)] = 193072, - [SMALL_STATE(5523)] = 193080, - [SMALL_STATE(5524)] = 193088, - [SMALL_STATE(5525)] = 193096, - [SMALL_STATE(5526)] = 193104, - [SMALL_STATE(5527)] = 193112, - [SMALL_STATE(5528)] = 193120, - [SMALL_STATE(5529)] = 193128, - [SMALL_STATE(5530)] = 193136, - [SMALL_STATE(5531)] = 193144, - [SMALL_STATE(5532)] = 193152, - [SMALL_STATE(5533)] = 193160, - [SMALL_STATE(5534)] = 193168, - [SMALL_STATE(5535)] = 193176, - [SMALL_STATE(5536)] = 193184, - [SMALL_STATE(5537)] = 193192, - [SMALL_STATE(5538)] = 193200, - [SMALL_STATE(5539)] = 193208, - [SMALL_STATE(5540)] = 193216, - [SMALL_STATE(5541)] = 193224, - [SMALL_STATE(5542)] = 193232, - [SMALL_STATE(5543)] = 193240, - [SMALL_STATE(5544)] = 193248, - [SMALL_STATE(5545)] = 193256, - [SMALL_STATE(5546)] = 193264, - [SMALL_STATE(5547)] = 193272, - [SMALL_STATE(5548)] = 193280, - [SMALL_STATE(5549)] = 193288, - [SMALL_STATE(5550)] = 193296, - [SMALL_STATE(5551)] = 193304, - [SMALL_STATE(5552)] = 193312, - [SMALL_STATE(5553)] = 193320, - [SMALL_STATE(5554)] = 193328, - [SMALL_STATE(5555)] = 193336, - [SMALL_STATE(5556)] = 193344, - [SMALL_STATE(5557)] = 193352, - [SMALL_STATE(5558)] = 193360, - [SMALL_STATE(5559)] = 193368, - [SMALL_STATE(5560)] = 193376, - [SMALL_STATE(5561)] = 193384, - [SMALL_STATE(5562)] = 193392, - [SMALL_STATE(5563)] = 193400, - [SMALL_STATE(5564)] = 193408, - [SMALL_STATE(5565)] = 193416, - [SMALL_STATE(5566)] = 193424, - [SMALL_STATE(5567)] = 193432, - [SMALL_STATE(5568)] = 193440, - [SMALL_STATE(5569)] = 193448, - [SMALL_STATE(5570)] = 193456, - [SMALL_STATE(5571)] = 193464, - [SMALL_STATE(5572)] = 193472, - [SMALL_STATE(5573)] = 193480, - [SMALL_STATE(5574)] = 193488, - [SMALL_STATE(5575)] = 193496, - [SMALL_STATE(5576)] = 193504, - [SMALL_STATE(5577)] = 193512, - [SMALL_STATE(5578)] = 193520, - [SMALL_STATE(5579)] = 193528, - [SMALL_STATE(5580)] = 193536, - [SMALL_STATE(5581)] = 193544, - [SMALL_STATE(5582)] = 193552, - [SMALL_STATE(5583)] = 193560, - [SMALL_STATE(5584)] = 193568, - [SMALL_STATE(5585)] = 193576, - [SMALL_STATE(5586)] = 193584, - [SMALL_STATE(5587)] = 193592, - [SMALL_STATE(5588)] = 193600, - [SMALL_STATE(5589)] = 193608, - [SMALL_STATE(5590)] = 193616, - [SMALL_STATE(5591)] = 193624, - [SMALL_STATE(5592)] = 193632, - [SMALL_STATE(5593)] = 193640, - [SMALL_STATE(5594)] = 193648, - [SMALL_STATE(5595)] = 193656, - [SMALL_STATE(5596)] = 193664, - [SMALL_STATE(5597)] = 193672, - [SMALL_STATE(5598)] = 193680, - [SMALL_STATE(5599)] = 193688, - [SMALL_STATE(5600)] = 193696, - [SMALL_STATE(5601)] = 193704, - [SMALL_STATE(5602)] = 193712, - [SMALL_STATE(5603)] = 193720, - [SMALL_STATE(5604)] = 193728, - [SMALL_STATE(5605)] = 193736, - [SMALL_STATE(5606)] = 193744, - [SMALL_STATE(5607)] = 193752, - [SMALL_STATE(5608)] = 193760, - [SMALL_STATE(5609)] = 193768, - [SMALL_STATE(5610)] = 193776, - [SMALL_STATE(5611)] = 193784, - [SMALL_STATE(5612)] = 193792, - [SMALL_STATE(5613)] = 193800, - [SMALL_STATE(5614)] = 193808, - [SMALL_STATE(5615)] = 193816, - [SMALL_STATE(5616)] = 193824, - [SMALL_STATE(5617)] = 193832, - [SMALL_STATE(5618)] = 193840, - [SMALL_STATE(5619)] = 193848, - [SMALL_STATE(5620)] = 193856, - [SMALL_STATE(5621)] = 193864, - [SMALL_STATE(5622)] = 193872, - [SMALL_STATE(5623)] = 193880, - [SMALL_STATE(5624)] = 193888, - [SMALL_STATE(5625)] = 193896, - [SMALL_STATE(5626)] = 193904, - [SMALL_STATE(5627)] = 193912, - [SMALL_STATE(5628)] = 193920, - [SMALL_STATE(5629)] = 193928, - [SMALL_STATE(5630)] = 193936, - [SMALL_STATE(5631)] = 193944, - [SMALL_STATE(5632)] = 193952, - [SMALL_STATE(5633)] = 193960, - [SMALL_STATE(5634)] = 193968, - [SMALL_STATE(5635)] = 193976, - [SMALL_STATE(5636)] = 193984, - [SMALL_STATE(5637)] = 193992, - [SMALL_STATE(5638)] = 194000, - [SMALL_STATE(5639)] = 194008, - [SMALL_STATE(5640)] = 194016, - [SMALL_STATE(5641)] = 194024, - [SMALL_STATE(5642)] = 194032, - [SMALL_STATE(5643)] = 194040, - [SMALL_STATE(5644)] = 194048, - [SMALL_STATE(5645)] = 194056, - [SMALL_STATE(5646)] = 194064, - [SMALL_STATE(5647)] = 194072, - [SMALL_STATE(5648)] = 194080, - [SMALL_STATE(5649)] = 194088, - [SMALL_STATE(5650)] = 194096, - [SMALL_STATE(5651)] = 194104, - [SMALL_STATE(5652)] = 194112, - [SMALL_STATE(5653)] = 194120, - [SMALL_STATE(5654)] = 194128, - [SMALL_STATE(5655)] = 194136, - [SMALL_STATE(5656)] = 194144, - [SMALL_STATE(5657)] = 194152, - [SMALL_STATE(5658)] = 194160, - [SMALL_STATE(5659)] = 194168, - [SMALL_STATE(5660)] = 194176, - [SMALL_STATE(5661)] = 194184, - [SMALL_STATE(5662)] = 194192, - [SMALL_STATE(5663)] = 194200, - [SMALL_STATE(5664)] = 194208, - [SMALL_STATE(5665)] = 194216, - [SMALL_STATE(5666)] = 194224, - [SMALL_STATE(5667)] = 194232, - [SMALL_STATE(5668)] = 194240, - [SMALL_STATE(5669)] = 194248, - [SMALL_STATE(5670)] = 194256, - [SMALL_STATE(5671)] = 194264, - [SMALL_STATE(5672)] = 194272, - [SMALL_STATE(5673)] = 194280, - [SMALL_STATE(5674)] = 194288, - [SMALL_STATE(5675)] = 194296, - [SMALL_STATE(5676)] = 194304, - [SMALL_STATE(5677)] = 194312, - [SMALL_STATE(5678)] = 194320, - [SMALL_STATE(5679)] = 194328, - [SMALL_STATE(5680)] = 194336, - [SMALL_STATE(5681)] = 194344, - [SMALL_STATE(5682)] = 194352, - [SMALL_STATE(5683)] = 194360, - [SMALL_STATE(5684)] = 194368, - [SMALL_STATE(5685)] = 194376, - [SMALL_STATE(5686)] = 194384, - [SMALL_STATE(5687)] = 194392, - [SMALL_STATE(5688)] = 194400, - [SMALL_STATE(5689)] = 194408, - [SMALL_STATE(5690)] = 194416, - [SMALL_STATE(5691)] = 194424, - [SMALL_STATE(5692)] = 194432, - [SMALL_STATE(5693)] = 194440, - [SMALL_STATE(5694)] = 194448, - [SMALL_STATE(5695)] = 194456, - [SMALL_STATE(5696)] = 194464, - [SMALL_STATE(5697)] = 194472, - [SMALL_STATE(5698)] = 194480, - [SMALL_STATE(5699)] = 194488, - [SMALL_STATE(5700)] = 194496, - [SMALL_STATE(5701)] = 194504, - [SMALL_STATE(5702)] = 194512, - [SMALL_STATE(5703)] = 194520, - [SMALL_STATE(5704)] = 194528, - [SMALL_STATE(5705)] = 194536, - [SMALL_STATE(5706)] = 194544, - [SMALL_STATE(5707)] = 194552, - [SMALL_STATE(5708)] = 194560, - [SMALL_STATE(5709)] = 194568, - [SMALL_STATE(5710)] = 194576, - [SMALL_STATE(5711)] = 194584, - [SMALL_STATE(5712)] = 194592, - [SMALL_STATE(5713)] = 194600, - [SMALL_STATE(5714)] = 194608, - [SMALL_STATE(5715)] = 194616, - [SMALL_STATE(5716)] = 194624, - [SMALL_STATE(5717)] = 194632, - [SMALL_STATE(5718)] = 194640, - [SMALL_STATE(5719)] = 194648, - [SMALL_STATE(5720)] = 194656, - [SMALL_STATE(5721)] = 194664, - [SMALL_STATE(5722)] = 194672, - [SMALL_STATE(5723)] = 194680, - [SMALL_STATE(5724)] = 194688, - [SMALL_STATE(5725)] = 194696, - [SMALL_STATE(5726)] = 194704, - [SMALL_STATE(5727)] = 194712, - [SMALL_STATE(5728)] = 194720, - [SMALL_STATE(5729)] = 194728, - [SMALL_STATE(5730)] = 194736, - [SMALL_STATE(5731)] = 194744, - [SMALL_STATE(5732)] = 194752, - [SMALL_STATE(5733)] = 194760, - [SMALL_STATE(5734)] = 194768, - [SMALL_STATE(5735)] = 194776, - [SMALL_STATE(5736)] = 194784, - [SMALL_STATE(5737)] = 194792, - [SMALL_STATE(5738)] = 194800, - [SMALL_STATE(5739)] = 194808, - [SMALL_STATE(5740)] = 194816, - [SMALL_STATE(5741)] = 194824, - [SMALL_STATE(5742)] = 194832, - [SMALL_STATE(5743)] = 194840, - [SMALL_STATE(5744)] = 194848, - [SMALL_STATE(5745)] = 194856, - [SMALL_STATE(5746)] = 194864, - [SMALL_STATE(5747)] = 194872, - [SMALL_STATE(5748)] = 194880, - [SMALL_STATE(5749)] = 194888, - [SMALL_STATE(5750)] = 194896, - [SMALL_STATE(5751)] = 194904, - [SMALL_STATE(5752)] = 194912, - [SMALL_STATE(5753)] = 194920, - [SMALL_STATE(5754)] = 194928, + [SMALL_STATE(2181)] = 98503, + [SMALL_STATE(2182)] = 98562, + [SMALL_STATE(2183)] = 98613, + [SMALL_STATE(2184)] = 98664, + [SMALL_STATE(2185)] = 98711, + [SMALL_STATE(2186)] = 98758, + [SMALL_STATE(2187)] = 98805, + [SMALL_STATE(2188)] = 98852, + [SMALL_STATE(2189)] = 98899, + [SMALL_STATE(2190)] = 98946, + [SMALL_STATE(2191)] = 98993, + [SMALL_STATE(2192)] = 99044, + [SMALL_STATE(2193)] = 99091, + [SMALL_STATE(2194)] = 99142, + [SMALL_STATE(2195)] = 99189, + [SMALL_STATE(2196)] = 99270, + [SMALL_STATE(2197)] = 99317, + [SMALL_STATE(2198)] = 99397, + [SMALL_STATE(2199)] = 99453, + [SMALL_STATE(2200)] = 99519, + [SMALL_STATE(2201)] = 99583, + [SMALL_STATE(2202)] = 99643, + [SMALL_STATE(2203)] = 99693, + [SMALL_STATE(2204)] = 99749, + [SMALL_STATE(2205)] = 99817, + [SMALL_STATE(2206)] = 99883, + [SMALL_STATE(2207)] = 99933, + [SMALL_STATE(2208)] = 99989, + [SMALL_STATE(2209)] = 100069, + [SMALL_STATE(2210)] = 100149, + [SMALL_STATE(2211)] = 100213, + [SMALL_STATE(2212)] = 100271, + [SMALL_STATE(2213)] = 100327, + [SMALL_STATE(2214)] = 100383, + [SMALL_STATE(2215)] = 100445, + [SMALL_STATE(2216)] = 100495, + [SMALL_STATE(2217)] = 100565, + [SMALL_STATE(2218)] = 100621, + [SMALL_STATE(2219)] = 100683, + [SMALL_STATE(2220)] = 100735, + [SMALL_STATE(2221)] = 100815, + [SMALL_STATE(2222)] = 100895, + [SMALL_STATE(2223)] = 100953, + [SMALL_STATE(2224)] = 101003, + [SMALL_STATE(2225)] = 101055, + [SMALL_STATE(2226)] = 101105, + [SMALL_STATE(2227)] = 101161, + [SMALL_STATE(2228)] = 101213, + [SMALL_STATE(2229)] = 101269, + [SMALL_STATE(2230)] = 101319, + [SMALL_STATE(2231)] = 101389, + [SMALL_STATE(2232)] = 101449, + [SMALL_STATE(2233)] = 101517, + [SMALL_STATE(2234)] = 101579, + [SMALL_STATE(2235)] = 101639, + [SMALL_STATE(2236)] = 101707, + [SMALL_STATE(2237)] = 101757, + [SMALL_STATE(2238)] = 101823, + [SMALL_STATE(2239)] = 101887, + [SMALL_STATE(2240)] = 101943, + [SMALL_STATE(2241)] = 102013, + [SMALL_STATE(2242)] = 102069, + [SMALL_STATE(2243)] = 102119, + [SMALL_STATE(2244)] = 102175, + [SMALL_STATE(2245)] = 102231, + [SMALL_STATE(2246)] = 102276, + [SMALL_STATE(2247)] = 102321, + [SMALL_STATE(2248)] = 102380, + [SMALL_STATE(2249)] = 102427, + [SMALL_STATE(2250)] = 102496, + [SMALL_STATE(2251)] = 102561, + [SMALL_STATE(2252)] = 102608, + [SMALL_STATE(2253)] = 102653, + [SMALL_STATE(2254)] = 102704, + [SMALL_STATE(2255)] = 102753, + [SMALL_STATE(2256)] = 102802, + [SMALL_STATE(2257)] = 102853, + [SMALL_STATE(2258)] = 102902, + [SMALL_STATE(2259)] = 102963, + [SMALL_STATE(2260)] = 103018, + [SMALL_STATE(2261)] = 103069, + [SMALL_STATE(2262)] = 103132, + [SMALL_STATE(2263)] = 103179, + [SMALL_STATE(2264)] = 103248, + [SMALL_STATE(2265)] = 103315, + [SMALL_STATE(2266)] = 103364, + [SMALL_STATE(2267)] = 103413, + [SMALL_STATE(2268)] = 103468, + [SMALL_STATE(2269)] = 103527, + [SMALL_STATE(2270)] = 103582, + [SMALL_STATE(2271)] = 103629, + [SMALL_STATE(2272)] = 103674, + [SMALL_STATE(2273)] = 103719, + [SMALL_STATE(2274)] = 103768, + [SMALL_STATE(2275)] = 103823, + [SMALL_STATE(2276)] = 103868, + [SMALL_STATE(2277)] = 103925, + [SMALL_STATE(2278)] = 103992, + [SMALL_STATE(2279)] = 104041, + [SMALL_STATE(2280)] = 104090, + [SMALL_STATE(2281)] = 104169, + [SMALL_STATE(2282)] = 104224, + [SMALL_STATE(2283)] = 104271, + [SMALL_STATE(2284)] = 104316, + [SMALL_STATE(2285)] = 104371, + [SMALL_STATE(2286)] = 104416, + [SMALL_STATE(2287)] = 104463, + [SMALL_STATE(2288)] = 104518, + [SMALL_STATE(2289)] = 104563, + [SMALL_STATE(2290)] = 104642, + [SMALL_STATE(2291)] = 104705, + [SMALL_STATE(2292)] = 104784, + [SMALL_STATE(2293)] = 104833, + [SMALL_STATE(2294)] = 104878, + [SMALL_STATE(2295)] = 104943, + [SMALL_STATE(2296)] = 105004, + [SMALL_STATE(2297)] = 105049, + [SMALL_STATE(2298)] = 105094, + [SMALL_STATE(2299)] = 105145, + [SMALL_STATE(2300)] = 105224, + [SMALL_STATE(2301)] = 105275, + [SMALL_STATE(2302)] = 105354, + [SMALL_STATE(2303)] = 105433, + [SMALL_STATE(2304)] = 105488, + [SMALL_STATE(2305)] = 105533, + [SMALL_STATE(2306)] = 105582, + [SMALL_STATE(2307)] = 105636, + [SMALL_STATE(2308)] = 105684, + [SMALL_STATE(2309)] = 105728, + [SMALL_STATE(2310)] = 105772, + [SMALL_STATE(2311)] = 105816, + [SMALL_STATE(2312)] = 105860, + [SMALL_STATE(2313)] = 105904, + [SMALL_STATE(2314)] = 105948, + [SMALL_STATE(2315)] = 105992, + [SMALL_STATE(2316)] = 106036, + [SMALL_STATE(2317)] = 106080, + [SMALL_STATE(2318)] = 106124, + [SMALL_STATE(2319)] = 106168, + [SMALL_STATE(2320)] = 106212, + [SMALL_STATE(2321)] = 106256, + [SMALL_STATE(2322)] = 106300, + [SMALL_STATE(2323)] = 106344, + [SMALL_STATE(2324)] = 106388, + [SMALL_STATE(2325)] = 106432, + [SMALL_STATE(2326)] = 106476, + [SMALL_STATE(2327)] = 106520, + [SMALL_STATE(2328)] = 106564, + [SMALL_STATE(2329)] = 106608, + [SMALL_STATE(2330)] = 106652, + [SMALL_STATE(2331)] = 106696, + [SMALL_STATE(2332)] = 106740, + [SMALL_STATE(2333)] = 106784, + [SMALL_STATE(2334)] = 106828, + [SMALL_STATE(2335)] = 106872, + [SMALL_STATE(2336)] = 106920, + [SMALL_STATE(2337)] = 106964, + [SMALL_STATE(2338)] = 107016, + [SMALL_STATE(2339)] = 107060, + [SMALL_STATE(2340)] = 107104, + [SMALL_STATE(2341)] = 107148, + [SMALL_STATE(2342)] = 107192, + [SMALL_STATE(2343)] = 107236, + [SMALL_STATE(2344)] = 107280, + [SMALL_STATE(2345)] = 107324, + [SMALL_STATE(2346)] = 107368, + [SMALL_STATE(2347)] = 107412, + [SMALL_STATE(2348)] = 107456, + [SMALL_STATE(2349)] = 107500, + [SMALL_STATE(2350)] = 107544, + [SMALL_STATE(2351)] = 107594, + [SMALL_STATE(2352)] = 107642, + [SMALL_STATE(2353)] = 107688, + [SMALL_STATE(2354)] = 107740, + [SMALL_STATE(2355)] = 107784, + [SMALL_STATE(2356)] = 107828, + [SMALL_STATE(2357)] = 107880, + [SMALL_STATE(2358)] = 107924, + [SMALL_STATE(2359)] = 107968, + [SMALL_STATE(2360)] = 108012, + [SMALL_STATE(2361)] = 108062, + [SMALL_STATE(2362)] = 108106, + [SMALL_STATE(2363)] = 108154, + [SMALL_STATE(2364)] = 108198, + [SMALL_STATE(2365)] = 108244, + [SMALL_STATE(2366)] = 108296, + [SMALL_STATE(2367)] = 108356, + [SMALL_STATE(2368)] = 108400, + [SMALL_STATE(2369)] = 108454, + [SMALL_STATE(2370)] = 108498, + [SMALL_STATE(2371)] = 108556, + [SMALL_STATE(2372)] = 108622, + [SMALL_STATE(2373)] = 108666, + [SMALL_STATE(2374)] = 108730, + [SMALL_STATE(2375)] = 108792, + [SMALL_STATE(2376)] = 108836, + [SMALL_STATE(2377)] = 108880, + [SMALL_STATE(2378)] = 108924, + [SMALL_STATE(2379)] = 108968, + [SMALL_STATE(2380)] = 109012, + [SMALL_STATE(2381)] = 109056, + [SMALL_STATE(2382)] = 109102, + [SMALL_STATE(2383)] = 109150, + [SMALL_STATE(2384)] = 109196, + [SMALL_STATE(2385)] = 109242, + [SMALL_STATE(2386)] = 109294, + [SMALL_STATE(2387)] = 109342, + [SMALL_STATE(2388)] = 109386, + [SMALL_STATE(2389)] = 109430, + [SMALL_STATE(2390)] = 109474, + [SMALL_STATE(2391)] = 109518, + [SMALL_STATE(2392)] = 109562, + [SMALL_STATE(2393)] = 109606, + [SMALL_STATE(2394)] = 109650, + [SMALL_STATE(2395)] = 109694, + [SMALL_STATE(2396)] = 109738, + [SMALL_STATE(2397)] = 109788, + [SMALL_STATE(2398)] = 109832, + [SMALL_STATE(2399)] = 109884, + [SMALL_STATE(2400)] = 109928, + [SMALL_STATE(2401)] = 109972, + [SMALL_STATE(2402)] = 110016, + [SMALL_STATE(2403)] = 110060, + [SMALL_STATE(2404)] = 110108, + [SMALL_STATE(2405)] = 110152, + [SMALL_STATE(2406)] = 110196, + [SMALL_STATE(2407)] = 110240, + [SMALL_STATE(2408)] = 110284, + [SMALL_STATE(2409)] = 110328, + [SMALL_STATE(2410)] = 110376, + [SMALL_STATE(2411)] = 110424, + [SMALL_STATE(2412)] = 110468, + [SMALL_STATE(2413)] = 110512, + [SMALL_STATE(2414)] = 110590, + [SMALL_STATE(2415)] = 110638, + [SMALL_STATE(2416)] = 110682, + [SMALL_STATE(2417)] = 110726, + [SMALL_STATE(2418)] = 110770, + [SMALL_STATE(2419)] = 110814, + [SMALL_STATE(2420)] = 110858, + [SMALL_STATE(2421)] = 110902, + [SMALL_STATE(2422)] = 110946, + [SMALL_STATE(2423)] = 110990, + [SMALL_STATE(2424)] = 111044, + [SMALL_STATE(2425)] = 111088, + [SMALL_STATE(2426)] = 111142, + [SMALL_STATE(2427)] = 111186, + [SMALL_STATE(2428)] = 111238, + [SMALL_STATE(2429)] = 111282, + [SMALL_STATE(2430)] = 111332, + [SMALL_STATE(2431)] = 111380, + [SMALL_STATE(2432)] = 111424, + [SMALL_STATE(2433)] = 111470, + [SMALL_STATE(2434)] = 111522, + [SMALL_STATE(2435)] = 111574, + [SMALL_STATE(2436)] = 111622, + [SMALL_STATE(2437)] = 111670, + [SMALL_STATE(2438)] = 111714, + [SMALL_STATE(2439)] = 111758, + [SMALL_STATE(2440)] = 111806, + [SMALL_STATE(2441)] = 111854, + [SMALL_STATE(2442)] = 111898, + [SMALL_STATE(2443)] = 111942, + [SMALL_STATE(2444)] = 111986, + [SMALL_STATE(2445)] = 112036, + [SMALL_STATE(2446)] = 112084, + [SMALL_STATE(2447)] = 112128, + [SMALL_STATE(2448)] = 112172, + [SMALL_STATE(2449)] = 112220, + [SMALL_STATE(2450)] = 112264, + [SMALL_STATE(2451)] = 112320, + [SMALL_STATE(2452)] = 112364, + [SMALL_STATE(2453)] = 112408, + [SMALL_STATE(2454)] = 112456, + [SMALL_STATE(2455)] = 112502, + [SMALL_STATE(2456)] = 112552, + [SMALL_STATE(2457)] = 112598, + [SMALL_STATE(2458)] = 112648, + [SMALL_STATE(2459)] = 112692, + [SMALL_STATE(2460)] = 112736, + [SMALL_STATE(2461)] = 112780, + [SMALL_STATE(2462)] = 112824, + [SMALL_STATE(2463)] = 112868, + [SMALL_STATE(2464)] = 112912, + [SMALL_STATE(2465)] = 112956, + [SMALL_STATE(2466)] = 113000, + [SMALL_STATE(2467)] = 113044, + [SMALL_STATE(2468)] = 113088, + [SMALL_STATE(2469)] = 113132, + [SMALL_STATE(2470)] = 113178, + [SMALL_STATE(2471)] = 113222, + [SMALL_STATE(2472)] = 113266, + [SMALL_STATE(2473)] = 113310, + [SMALL_STATE(2474)] = 113354, + [SMALL_STATE(2475)] = 113400, + [SMALL_STATE(2476)] = 113444, + [SMALL_STATE(2477)] = 113488, + [SMALL_STATE(2478)] = 113534, + [SMALL_STATE(2479)] = 113578, + [SMALL_STATE(2480)] = 113622, + [SMALL_STATE(2481)] = 113670, + [SMALL_STATE(2482)] = 113714, + [SMALL_STATE(2483)] = 113760, + [SMALL_STATE(2484)] = 113804, + [SMALL_STATE(2485)] = 113848, + [SMALL_STATE(2486)] = 113892, + [SMALL_STATE(2487)] = 113936, + [SMALL_STATE(2488)] = 113980, + [SMALL_STATE(2489)] = 114024, + [SMALL_STATE(2490)] = 114068, + [SMALL_STATE(2491)] = 114136, + [SMALL_STATE(2492)] = 114180, + [SMALL_STATE(2493)] = 114223, + [SMALL_STATE(2494)] = 114274, + [SMALL_STATE(2495)] = 114317, + [SMALL_STATE(2496)] = 114360, + [SMALL_STATE(2497)] = 114405, + [SMALL_STATE(2498)] = 114448, + [SMALL_STATE(2499)] = 114499, + [SMALL_STATE(2500)] = 114544, + [SMALL_STATE(2501)] = 114591, + [SMALL_STATE(2502)] = 114634, + [SMALL_STATE(2503)] = 114687, + [SMALL_STATE(2504)] = 114730, + [SMALL_STATE(2505)] = 114775, + [SMALL_STATE(2506)] = 114818, + [SMALL_STATE(2507)] = 114879, + [SMALL_STATE(2508)] = 114922, + [SMALL_STATE(2509)] = 114965, + [SMALL_STATE(2510)] = 115016, + [SMALL_STATE(2511)] = 115059, + [SMALL_STATE(2512)] = 115106, + [SMALL_STATE(2513)] = 115149, + [SMALL_STATE(2514)] = 115192, + [SMALL_STATE(2515)] = 115271, + [SMALL_STATE(2516)] = 115314, + [SMALL_STATE(2517)] = 115357, + [SMALL_STATE(2518)] = 115402, + [SMALL_STATE(2519)] = 115445, + [SMALL_STATE(2520)] = 115488, + [SMALL_STATE(2521)] = 115531, + [SMALL_STATE(2522)] = 115574, + [SMALL_STATE(2523)] = 115617, + [SMALL_STATE(2524)] = 115660, + [SMALL_STATE(2525)] = 115703, + [SMALL_STATE(2526)] = 115746, + [SMALL_STATE(2527)] = 115789, + [SMALL_STATE(2528)] = 115856, + [SMALL_STATE(2529)] = 115899, + [SMALL_STATE(2530)] = 115946, + [SMALL_STATE(2531)] = 115989, + [SMALL_STATE(2532)] = 116036, + [SMALL_STATE(2533)] = 116081, + [SMALL_STATE(2534)] = 116134, + [SMALL_STATE(2535)] = 116177, + [SMALL_STATE(2536)] = 116224, + [SMALL_STATE(2537)] = 116267, + [SMALL_STATE(2538)] = 116314, + [SMALL_STATE(2539)] = 116359, + [SMALL_STATE(2540)] = 116402, + [SMALL_STATE(2541)] = 116453, + [SMALL_STATE(2542)] = 116498, + [SMALL_STATE(2543)] = 116541, + [SMALL_STATE(2544)] = 116584, + [SMALL_STATE(2545)] = 116629, + [SMALL_STATE(2546)] = 116672, + [SMALL_STATE(2547)] = 116715, + [SMALL_STATE(2548)] = 116758, + [SMALL_STATE(2549)] = 116807, + [SMALL_STATE(2550)] = 116852, + [SMALL_STATE(2551)] = 116895, + [SMALL_STATE(2552)] = 116944, + [SMALL_STATE(2553)] = 116987, + [SMALL_STATE(2554)] = 117030, + [SMALL_STATE(2555)] = 117073, + [SMALL_STATE(2556)] = 117120, + [SMALL_STATE(2557)] = 117163, + [SMALL_STATE(2558)] = 117208, + [SMALL_STATE(2559)] = 117253, + [SMALL_STATE(2560)] = 117296, + [SMALL_STATE(2561)] = 117347, + [SMALL_STATE(2562)] = 117396, + [SMALL_STATE(2563)] = 117439, + [SMALL_STATE(2564)] = 117482, + [SMALL_STATE(2565)] = 117525, + [SMALL_STATE(2566)] = 117572, + [SMALL_STATE(2567)] = 117615, + [SMALL_STATE(2568)] = 117658, + [SMALL_STATE(2569)] = 117703, + [SMALL_STATE(2570)] = 117746, + [SMALL_STATE(2571)] = 117793, + [SMALL_STATE(2572)] = 117840, + [SMALL_STATE(2573)] = 117885, + [SMALL_STATE(2574)] = 117936, + [SMALL_STATE(2575)] = 117979, + [SMALL_STATE(2576)] = 118022, + [SMALL_STATE(2577)] = 118069, + [SMALL_STATE(2578)] = 118114, + [SMALL_STATE(2579)] = 118157, + [SMALL_STATE(2580)] = 118200, + [SMALL_STATE(2581)] = 118243, + [SMALL_STATE(2582)] = 118288, + [SMALL_STATE(2583)] = 118333, + [SMALL_STATE(2584)] = 118384, + [SMALL_STATE(2585)] = 118427, + [SMALL_STATE(2586)] = 118470, + [SMALL_STATE(2587)] = 118513, + [SMALL_STATE(2588)] = 118566, + [SMALL_STATE(2589)] = 118645, + [SMALL_STATE(2590)] = 118702, + [SMALL_STATE(2591)] = 118745, + [SMALL_STATE(2592)] = 118810, + [SMALL_STATE(2593)] = 118855, + [SMALL_STATE(2594)] = 118898, + [SMALL_STATE(2595)] = 118941, + [SMALL_STATE(2596)] = 118990, + [SMALL_STATE(2597)] = 119053, + [SMALL_STATE(2598)] = 119096, + [SMALL_STATE(2599)] = 119139, + [SMALL_STATE(2600)] = 119182, + [SMALL_STATE(2601)] = 119225, + [SMALL_STATE(2602)] = 119270, + [SMALL_STATE(2603)] = 119315, + [SMALL_STATE(2604)] = 119358, + [SMALL_STATE(2605)] = 119401, + [SMALL_STATE(2606)] = 119444, + [SMALL_STATE(2607)] = 119497, + [SMALL_STATE(2608)] = 119540, + [SMALL_STATE(2609)] = 119583, + [SMALL_STATE(2610)] = 119626, + [SMALL_STATE(2611)] = 119669, + [SMALL_STATE(2612)] = 119728, + [SMALL_STATE(2613)] = 119771, + [SMALL_STATE(2614)] = 119814, + [SMALL_STATE(2615)] = 119861, + [SMALL_STATE(2616)] = 119904, + [SMALL_STATE(2617)] = 119947, + [SMALL_STATE(2618)] = 119990, + [SMALL_STATE(2619)] = 120035, + [SMALL_STATE(2620)] = 120080, + [SMALL_STATE(2621)] = 120123, + [SMALL_STATE(2622)] = 120166, + [SMALL_STATE(2623)] = 120209, + [SMALL_STATE(2624)] = 120254, + [SMALL_STATE(2625)] = 120297, + [SMALL_STATE(2626)] = 120340, + [SMALL_STATE(2627)] = 120383, + [SMALL_STATE(2628)] = 120426, + [SMALL_STATE(2629)] = 120469, + [SMALL_STATE(2630)] = 120512, + [SMALL_STATE(2631)] = 120555, + [SMALL_STATE(2632)] = 120598, + [SMALL_STATE(2633)] = 120641, + [SMALL_STATE(2634)] = 120683, + [SMALL_STATE(2635)] = 120727, + [SMALL_STATE(2636)] = 120771, + [SMALL_STATE(2637)] = 120815, + [SMALL_STATE(2638)] = 120859, + [SMALL_STATE(2639)] = 120903, + [SMALL_STATE(2640)] = 120947, + [SMALL_STATE(2641)] = 120991, + [SMALL_STATE(2642)] = 121035, + [SMALL_STATE(2643)] = 121077, + [SMALL_STATE(2644)] = 121119, + [SMALL_STATE(2645)] = 121161, + [SMALL_STATE(2646)] = 121203, + [SMALL_STATE(2647)] = 121245, + [SMALL_STATE(2648)] = 121287, + [SMALL_STATE(2649)] = 121329, + [SMALL_STATE(2650)] = 121371, + [SMALL_STATE(2651)] = 121417, + [SMALL_STATE(2652)] = 121459, + [SMALL_STATE(2653)] = 121501, + [SMALL_STATE(2654)] = 121543, + [SMALL_STATE(2655)] = 121585, + [SMALL_STATE(2656)] = 121627, + [SMALL_STATE(2657)] = 121669, + [SMALL_STATE(2658)] = 121711, + [SMALL_STATE(2659)] = 121753, + [SMALL_STATE(2660)] = 121795, + [SMALL_STATE(2661)] = 121837, + [SMALL_STATE(2662)] = 121885, + [SMALL_STATE(2663)] = 121927, + [SMALL_STATE(2664)] = 121969, + [SMALL_STATE(2665)] = 122011, + [SMALL_STATE(2666)] = 122053, + [SMALL_STATE(2667)] = 122095, + [SMALL_STATE(2668)] = 122137, + [SMALL_STATE(2669)] = 122179, + [SMALL_STATE(2670)] = 122221, + [SMALL_STATE(2671)] = 122263, + [SMALL_STATE(2672)] = 122305, + [SMALL_STATE(2673)] = 122347, + [SMALL_STATE(2674)] = 122389, + [SMALL_STATE(2675)] = 122431, + [SMALL_STATE(2676)] = 122473, + [SMALL_STATE(2677)] = 122515, + [SMALL_STATE(2678)] = 122557, + [SMALL_STATE(2679)] = 122599, + [SMALL_STATE(2680)] = 122641, + [SMALL_STATE(2681)] = 122683, + [SMALL_STATE(2682)] = 122725, + [SMALL_STATE(2683)] = 122767, + [SMALL_STATE(2684)] = 122809, + [SMALL_STATE(2685)] = 122851, + [SMALL_STATE(2686)] = 122897, + [SMALL_STATE(2687)] = 122951, + [SMALL_STATE(2688)] = 123001, + [SMALL_STATE(2689)] = 123049, + [SMALL_STATE(2690)] = 123095, + [SMALL_STATE(2691)] = 123139, + [SMALL_STATE(2692)] = 123189, + [SMALL_STATE(2693)] = 123239, + [SMALL_STATE(2694)] = 123281, + [SMALL_STATE(2695)] = 123322, + [SMALL_STATE(2696)] = 123363, + [SMALL_STATE(2697)] = 123404, + [SMALL_STATE(2698)] = 123445, + [SMALL_STATE(2699)] = 123486, + [SMALL_STATE(2700)] = 123527, + [SMALL_STATE(2701)] = 123568, + [SMALL_STATE(2702)] = 123609, + [SMALL_STATE(2703)] = 123686, + [SMALL_STATE(2704)] = 123727, + [SMALL_STATE(2705)] = 123768, + [SMALL_STATE(2706)] = 123813, + [SMALL_STATE(2707)] = 123854, + [SMALL_STATE(2708)] = 123895, + [SMALL_STATE(2709)] = 123936, + [SMALL_STATE(2710)] = 123977, + [SMALL_STATE(2711)] = 124018, + [SMALL_STATE(2712)] = 124059, + [SMALL_STATE(2713)] = 124100, + [SMALL_STATE(2714)] = 124143, + [SMALL_STATE(2715)] = 124186, + [SMALL_STATE(2716)] = 124227, + [SMALL_STATE(2717)] = 124270, + [SMALL_STATE(2718)] = 124311, + [SMALL_STATE(2719)] = 124354, + [SMALL_STATE(2720)] = 124395, + [SMALL_STATE(2721)] = 124436, + [SMALL_STATE(2722)] = 124477, + [SMALL_STATE(2723)] = 124518, + [SMALL_STATE(2724)] = 124559, + [SMALL_STATE(2725)] = 124600, + [SMALL_STATE(2726)] = 124641, + [SMALL_STATE(2727)] = 124686, + [SMALL_STATE(2728)] = 124727, + [SMALL_STATE(2729)] = 124776, + [SMALL_STATE(2730)] = 124817, + [SMALL_STATE(2731)] = 124858, + [SMALL_STATE(2732)] = 124899, + [SMALL_STATE(2733)] = 124940, + [SMALL_STATE(2734)] = 124981, + [SMALL_STATE(2735)] = 125022, + [SMALL_STATE(2736)] = 125063, + [SMALL_STATE(2737)] = 125142, + [SMALL_STATE(2738)] = 125183, + [SMALL_STATE(2739)] = 125224, + [SMALL_STATE(2740)] = 125265, + [SMALL_STATE(2741)] = 125306, + [SMALL_STATE(2742)] = 125347, + [SMALL_STATE(2743)] = 125388, + [SMALL_STATE(2744)] = 125429, + [SMALL_STATE(2745)] = 125508, + [SMALL_STATE(2746)] = 125551, + [SMALL_STATE(2747)] = 125592, + [SMALL_STATE(2748)] = 125633, + [SMALL_STATE(2749)] = 125674, + [SMALL_STATE(2750)] = 125753, + [SMALL_STATE(2751)] = 125796, + [SMALL_STATE(2752)] = 125845, + [SMALL_STATE(2753)] = 125892, + [SMALL_STATE(2754)] = 125937, + [SMALL_STATE(2755)] = 125980, + [SMALL_STATE(2756)] = 126029, + [SMALL_STATE(2757)] = 126078, + [SMALL_STATE(2758)] = 126119, + [SMALL_STATE(2759)] = 126160, + [SMALL_STATE(2760)] = 126201, + [SMALL_STATE(2761)] = 126242, + [SMALL_STATE(2762)] = 126283, + [SMALL_STATE(2763)] = 126324, + [SMALL_STATE(2764)] = 126403, + [SMALL_STATE(2765)] = 126482, + [SMALL_STATE(2766)] = 126561, + [SMALL_STATE(2767)] = 126646, + [SMALL_STATE(2768)] = 126725, + [SMALL_STATE(2769)] = 126804, + [SMALL_STATE(2770)] = 126883, + [SMALL_STATE(2771)] = 126962, + [SMALL_STATE(2772)] = 127041, + [SMALL_STATE(2773)] = 127120, + [SMALL_STATE(2774)] = 127199, + [SMALL_STATE(2775)] = 127278, + [SMALL_STATE(2776)] = 127357, + [SMALL_STATE(2777)] = 127436, + [SMALL_STATE(2778)] = 127515, + [SMALL_STATE(2779)] = 127594, + [SMALL_STATE(2780)] = 127673, + [SMALL_STATE(2781)] = 127752, + [SMALL_STATE(2782)] = 127831, + [SMALL_STATE(2783)] = 127872, + [SMALL_STATE(2784)] = 127951, + [SMALL_STATE(2785)] = 128030, + [SMALL_STATE(2786)] = 128107, + [SMALL_STATE(2787)] = 128150, + [SMALL_STATE(2788)] = 128222, + [SMALL_STATE(2789)] = 128294, + [SMALL_STATE(2790)] = 128338, + [SMALL_STATE(2791)] = 128410, + [SMALL_STATE(2792)] = 128482, + [SMALL_STATE(2793)] = 128558, + [SMALL_STATE(2794)] = 128630, + [SMALL_STATE(2795)] = 128702, + [SMALL_STATE(2796)] = 128774, + [SMALL_STATE(2797)] = 128845, + [SMALL_STATE(2798)] = 128916, + [SMALL_STATE(2799)] = 128987, + [SMALL_STATE(2800)] = 129058, + [SMALL_STATE(2801)] = 129129, + [SMALL_STATE(2802)] = 129200, + [SMALL_STATE(2803)] = 129273, + [SMALL_STATE(2804)] = 129344, + [SMALL_STATE(2805)] = 129415, + [SMALL_STATE(2806)] = 129488, + [SMALL_STATE(2807)] = 129559, + [SMALL_STATE(2808)] = 129630, + [SMALL_STATE(2809)] = 129701, + [SMALL_STATE(2810)] = 129774, + [SMALL_STATE(2811)] = 129845, + [SMALL_STATE(2812)] = 129916, + [SMALL_STATE(2813)] = 129987, + [SMALL_STATE(2814)] = 130058, + [SMALL_STATE(2815)] = 130129, + [SMALL_STATE(2816)] = 130200, + [SMALL_STATE(2817)] = 130271, + [SMALL_STATE(2818)] = 130342, + [SMALL_STATE(2819)] = 130413, + [SMALL_STATE(2820)] = 130484, + [SMALL_STATE(2821)] = 130555, + [SMALL_STATE(2822)] = 130626, + [SMALL_STATE(2823)] = 130697, + [SMALL_STATE(2824)] = 130768, + [SMALL_STATE(2825)] = 130839, + [SMALL_STATE(2826)] = 130910, + [SMALL_STATE(2827)] = 130981, + [SMALL_STATE(2828)] = 131052, + [SMALL_STATE(2829)] = 131123, + [SMALL_STATE(2830)] = 131194, + [SMALL_STATE(2831)] = 131267, + [SMALL_STATE(2832)] = 131338, + [SMALL_STATE(2833)] = 131411, + [SMALL_STATE(2834)] = 131484, + [SMALL_STATE(2835)] = 131557, + [SMALL_STATE(2836)] = 131628, + [SMALL_STATE(2837)] = 131699, + [SMALL_STATE(2838)] = 131770, + [SMALL_STATE(2839)] = 131841, + [SMALL_STATE(2840)] = 131879, + [SMALL_STATE(2841)] = 131949, + [SMALL_STATE(2842)] = 131987, + [SMALL_STATE(2843)] = 132057, + [SMALL_STATE(2844)] = 132125, + [SMALL_STATE(2845)] = 132195, + [SMALL_STATE(2846)] = 132233, + [SMALL_STATE(2847)] = 132303, + [SMALL_STATE(2848)] = 132341, + [SMALL_STATE(2849)] = 132409, + [SMALL_STATE(2850)] = 132477, + [SMALL_STATE(2851)] = 132515, + [SMALL_STATE(2852)] = 132583, + [SMALL_STATE(2853)] = 132651, + [SMALL_STATE(2854)] = 132719, + [SMALL_STATE(2855)] = 132789, + [SMALL_STATE(2856)] = 132859, + [SMALL_STATE(2857)] = 132929, + [SMALL_STATE(2858)] = 132997, + [SMALL_STATE(2859)] = 133067, + [SMALL_STATE(2860)] = 133137, + [SMALL_STATE(2861)] = 133205, + [SMALL_STATE(2862)] = 133243, + [SMALL_STATE(2863)] = 133311, + [SMALL_STATE(2864)] = 133376, + [SMALL_STATE(2865)] = 133415, + [SMALL_STATE(2866)] = 133452, + [SMALL_STATE(2867)] = 133489, + [SMALL_STATE(2868)] = 133526, + [SMALL_STATE(2869)] = 133563, + [SMALL_STATE(2870)] = 133600, + [SMALL_STATE(2871)] = 133637, + [SMALL_STATE(2872)] = 133674, + [SMALL_STATE(2873)] = 133711, + [SMALL_STATE(2874)] = 133748, + [SMALL_STATE(2875)] = 133785, + [SMALL_STATE(2876)] = 133822, + [SMALL_STATE(2877)] = 133861, + [SMALL_STATE(2878)] = 133898, + [SMALL_STATE(2879)] = 133935, + [SMALL_STATE(2880)] = 133972, + [SMALL_STATE(2881)] = 134009, + [SMALL_STATE(2882)] = 134046, + [SMALL_STATE(2883)] = 134083, + [SMALL_STATE(2884)] = 134120, + [SMALL_STATE(2885)] = 134157, + [SMALL_STATE(2886)] = 134194, + [SMALL_STATE(2887)] = 134231, + [SMALL_STATE(2888)] = 134268, + [SMALL_STATE(2889)] = 134305, + [SMALL_STATE(2890)] = 134342, + [SMALL_STATE(2891)] = 134379, + [SMALL_STATE(2892)] = 134418, + [SMALL_STATE(2893)] = 134455, + [SMALL_STATE(2894)] = 134492, + [SMALL_STATE(2895)] = 134529, + [SMALL_STATE(2896)] = 134566, + [SMALL_STATE(2897)] = 134603, + [SMALL_STATE(2898)] = 134640, + [SMALL_STATE(2899)] = 134677, + [SMALL_STATE(2900)] = 134714, + [SMALL_STATE(2901)] = 134751, + [SMALL_STATE(2902)] = 134788, + [SMALL_STATE(2903)] = 134825, + [SMALL_STATE(2904)] = 134862, + [SMALL_STATE(2905)] = 134899, + [SMALL_STATE(2906)] = 134936, + [SMALL_STATE(2907)] = 134973, + [SMALL_STATE(2908)] = 135010, + [SMALL_STATE(2909)] = 135047, + [SMALL_STATE(2910)] = 135084, + [SMALL_STATE(2911)] = 135121, + [SMALL_STATE(2912)] = 135158, + [SMALL_STATE(2913)] = 135195, + [SMALL_STATE(2914)] = 135232, + [SMALL_STATE(2915)] = 135269, + [SMALL_STATE(2916)] = 135306, + [SMALL_STATE(2917)] = 135343, + [SMALL_STATE(2918)] = 135410, + [SMALL_STATE(2919)] = 135477, + [SMALL_STATE(2920)] = 135514, + [SMALL_STATE(2921)] = 135551, + [SMALL_STATE(2922)] = 135588, + [SMALL_STATE(2923)] = 135657, + [SMALL_STATE(2924)] = 135694, + [SMALL_STATE(2925)] = 135731, + [SMALL_STATE(2926)] = 135798, + [SMALL_STATE(2927)] = 135867, + [SMALL_STATE(2928)] = 135936, + [SMALL_STATE(2929)] = 135973, + [SMALL_STATE(2930)] = 136010, + [SMALL_STATE(2931)] = 136079, + [SMALL_STATE(2932)] = 136148, + [SMALL_STATE(2933)] = 136185, + [SMALL_STATE(2934)] = 136222, + [SMALL_STATE(2935)] = 136261, + [SMALL_STATE(2936)] = 136298, + [SMALL_STATE(2937)] = 136337, + [SMALL_STATE(2938)] = 136406, + [SMALL_STATE(2939)] = 136475, + [SMALL_STATE(2940)] = 136512, + [SMALL_STATE(2941)] = 136579, + [SMALL_STATE(2942)] = 136616, + [SMALL_STATE(2943)] = 136685, + [SMALL_STATE(2944)] = 136722, + [SMALL_STATE(2945)] = 136759, + [SMALL_STATE(2946)] = 136796, + [SMALL_STATE(2947)] = 136833, + [SMALL_STATE(2948)] = 136900, + [SMALL_STATE(2949)] = 136937, + [SMALL_STATE(2950)] = 137002, + [SMALL_STATE(2951)] = 137071, + [SMALL_STATE(2952)] = 137140, + [SMALL_STATE(2953)] = 137209, + [SMALL_STATE(2954)] = 137248, + [SMALL_STATE(2955)] = 137317, + [SMALL_STATE(2956)] = 137386, + [SMALL_STATE(2957)] = 137423, + [SMALL_STATE(2958)] = 137460, + [SMALL_STATE(2959)] = 137499, + [SMALL_STATE(2960)] = 137568, + [SMALL_STATE(2961)] = 137637, + [SMALL_STATE(2962)] = 137706, + [SMALL_STATE(2963)] = 137775, + [SMALL_STATE(2964)] = 137844, + [SMALL_STATE(2965)] = 137913, + [SMALL_STATE(2966)] = 137982, + [SMALL_STATE(2967)] = 138019, + [SMALL_STATE(2968)] = 138056, + [SMALL_STATE(2969)] = 138093, + [SMALL_STATE(2970)] = 138130, + [SMALL_STATE(2971)] = 138167, + [SMALL_STATE(2972)] = 138204, + [SMALL_STATE(2973)] = 138241, + [SMALL_STATE(2974)] = 138278, + [SMALL_STATE(2975)] = 138315, + [SMALL_STATE(2976)] = 138352, + [SMALL_STATE(2977)] = 138389, + [SMALL_STATE(2978)] = 138426, + [SMALL_STATE(2979)] = 138463, + [SMALL_STATE(2980)] = 138528, + [SMALL_STATE(2981)] = 138595, + [SMALL_STATE(2982)] = 138634, + [SMALL_STATE(2983)] = 138671, + [SMALL_STATE(2984)] = 138707, + [SMALL_STATE(2985)] = 138743, + [SMALL_STATE(2986)] = 138779, + [SMALL_STATE(2987)] = 138815, + [SMALL_STATE(2988)] = 138851, + [SMALL_STATE(2989)] = 138887, + [SMALL_STATE(2990)] = 138923, + [SMALL_STATE(2991)] = 138959, + [SMALL_STATE(2992)] = 138997, + [SMALL_STATE(2993)] = 139033, + [SMALL_STATE(2994)] = 139069, + [SMALL_STATE(2995)] = 139105, + [SMALL_STATE(2996)] = 139141, + [SMALL_STATE(2997)] = 139177, + [SMALL_STATE(2998)] = 139213, + [SMALL_STATE(2999)] = 139249, + [SMALL_STATE(3000)] = 139285, + [SMALL_STATE(3001)] = 139321, + [SMALL_STATE(3002)] = 139357, + [SMALL_STATE(3003)] = 139419, + [SMALL_STATE(3004)] = 139455, + [SMALL_STATE(3005)] = 139491, + [SMALL_STATE(3006)] = 139527, + [SMALL_STATE(3007)] = 139563, + [SMALL_STATE(3008)] = 139599, + [SMALL_STATE(3009)] = 139635, + [SMALL_STATE(3010)] = 139671, + [SMALL_STATE(3011)] = 139707, + [SMALL_STATE(3012)] = 139743, + [SMALL_STATE(3013)] = 139779, + [SMALL_STATE(3014)] = 139815, + [SMALL_STATE(3015)] = 139851, + [SMALL_STATE(3016)] = 139887, + [SMALL_STATE(3017)] = 139923, + [SMALL_STATE(3018)] = 139959, + [SMALL_STATE(3019)] = 139995, + [SMALL_STATE(3020)] = 140031, + [SMALL_STATE(3021)] = 140067, + [SMALL_STATE(3022)] = 140103, + [SMALL_STATE(3023)] = 140139, + [SMALL_STATE(3024)] = 140175, + [SMALL_STATE(3025)] = 140211, + [SMALL_STATE(3026)] = 140247, + [SMALL_STATE(3027)] = 140283, + [SMALL_STATE(3028)] = 140331, + [SMALL_STATE(3029)] = 140367, + [SMALL_STATE(3030)] = 140403, + [SMALL_STATE(3031)] = 140439, + [SMALL_STATE(3032)] = 140475, + [SMALL_STATE(3033)] = 140511, + [SMALL_STATE(3034)] = 140547, + [SMALL_STATE(3035)] = 140609, + [SMALL_STATE(3036)] = 140645, + [SMALL_STATE(3037)] = 140681, + [SMALL_STATE(3038)] = 140717, + [SMALL_STATE(3039)] = 140753, + [SMALL_STATE(3040)] = 140789, + [SMALL_STATE(3041)] = 140825, + [SMALL_STATE(3042)] = 140861, + [SMALL_STATE(3043)] = 140897, + [SMALL_STATE(3044)] = 140933, + [SMALL_STATE(3045)] = 140969, + [SMALL_STATE(3046)] = 141005, + [SMALL_STATE(3047)] = 141041, + [SMALL_STATE(3048)] = 141077, + [SMALL_STATE(3049)] = 141113, + [SMALL_STATE(3050)] = 141149, + [SMALL_STATE(3051)] = 141185, + [SMALL_STATE(3052)] = 141221, + [SMALL_STATE(3053)] = 141257, + [SMALL_STATE(3054)] = 141293, + [SMALL_STATE(3055)] = 141329, + [SMALL_STATE(3056)] = 141365, + [SMALL_STATE(3057)] = 141401, + [SMALL_STATE(3058)] = 141437, + [SMALL_STATE(3059)] = 141473, + [SMALL_STATE(3060)] = 141509, + [SMALL_STATE(3061)] = 141545, + [SMALL_STATE(3062)] = 141581, + [SMALL_STATE(3063)] = 141617, + [SMALL_STATE(3064)] = 141653, + [SMALL_STATE(3065)] = 141689, + [SMALL_STATE(3066)] = 141725, + [SMALL_STATE(3067)] = 141761, + [SMALL_STATE(3068)] = 141797, + [SMALL_STATE(3069)] = 141833, + [SMALL_STATE(3070)] = 141869, + [SMALL_STATE(3071)] = 141905, + [SMALL_STATE(3072)] = 141941, + [SMALL_STATE(3073)] = 141977, + [SMALL_STATE(3074)] = 142013, + [SMALL_STATE(3075)] = 142049, + [SMALL_STATE(3076)] = 142085, + [SMALL_STATE(3077)] = 142121, + [SMALL_STATE(3078)] = 142157, + [SMALL_STATE(3079)] = 142193, + [SMALL_STATE(3080)] = 142229, + [SMALL_STATE(3081)] = 142265, + [SMALL_STATE(3082)] = 142301, + [SMALL_STATE(3083)] = 142363, + [SMALL_STATE(3084)] = 142399, + [SMALL_STATE(3085)] = 142435, + [SMALL_STATE(3086)] = 142471, + [SMALL_STATE(3087)] = 142507, + [SMALL_STATE(3088)] = 142543, + [SMALL_STATE(3089)] = 142579, + [SMALL_STATE(3090)] = 142615, + [SMALL_STATE(3091)] = 142651, + [SMALL_STATE(3092)] = 142687, + [SMALL_STATE(3093)] = 142723, + [SMALL_STATE(3094)] = 142759, + [SMALL_STATE(3095)] = 142795, + [SMALL_STATE(3096)] = 142831, + [SMALL_STATE(3097)] = 142867, + [SMALL_STATE(3098)] = 142903, + [SMALL_STATE(3099)] = 142939, + [SMALL_STATE(3100)] = 142975, + [SMALL_STATE(3101)] = 143011, + [SMALL_STATE(3102)] = 143047, + [SMALL_STATE(3103)] = 143083, + [SMALL_STATE(3104)] = 143119, + [SMALL_STATE(3105)] = 143155, + [SMALL_STATE(3106)] = 143203, + [SMALL_STATE(3107)] = 143239, + [SMALL_STATE(3108)] = 143277, + [SMALL_STATE(3109)] = 143313, + [SMALL_STATE(3110)] = 143349, + [SMALL_STATE(3111)] = 143385, + [SMALL_STATE(3112)] = 143421, + [SMALL_STATE(3113)] = 143483, + [SMALL_STATE(3114)] = 143519, + [SMALL_STATE(3115)] = 143585, + [SMALL_STATE(3116)] = 143621, + [SMALL_STATE(3117)] = 143682, + [SMALL_STATE(3118)] = 143717, + [SMALL_STATE(3119)] = 143752, + [SMALL_STATE(3120)] = 143813, + [SMALL_STATE(3121)] = 143874, + [SMALL_STATE(3122)] = 143935, + [SMALL_STATE(3123)] = 143970, + [SMALL_STATE(3124)] = 144005, + [SMALL_STATE(3125)] = 144040, + [SMALL_STATE(3126)] = 144075, + [SMALL_STATE(3127)] = 144110, + [SMALL_STATE(3128)] = 144145, + [SMALL_STATE(3129)] = 144180, + [SMALL_STATE(3130)] = 144241, + [SMALL_STATE(3131)] = 144302, + [SMALL_STATE(3132)] = 144363, + [SMALL_STATE(3133)] = 144424, + [SMALL_STATE(3134)] = 144459, + [SMALL_STATE(3135)] = 144519, + [SMALL_STATE(3136)] = 144579, + [SMALL_STATE(3137)] = 144647, + [SMALL_STATE(3138)] = 144715, + [SMALL_STATE(3139)] = 144749, + [SMALL_STATE(3140)] = 144783, + [SMALL_STATE(3141)] = 144843, + [SMALL_STATE(3142)] = 144877, + [SMALL_STATE(3143)] = 144937, + [SMALL_STATE(3144)] = 144971, + [SMALL_STATE(3145)] = 145036, + [SMALL_STATE(3146)] = 145069, + [SMALL_STATE(3147)] = 145102, + [SMALL_STATE(3148)] = 145147, + [SMALL_STATE(3149)] = 145192, + [SMALL_STATE(3150)] = 145257, + [SMALL_STATE(3151)] = 145290, + [SMALL_STATE(3152)] = 145345, + [SMALL_STATE(3153)] = 145378, + [SMALL_STATE(3154)] = 145431, + [SMALL_STATE(3155)] = 145474, + [SMALL_STATE(3156)] = 145517, + [SMALL_STATE(3157)] = 145558, + [SMALL_STATE(3158)] = 145599, + [SMALL_STATE(3159)] = 145642, + [SMALL_STATE(3160)] = 145685, + [SMALL_STATE(3161)] = 145744, + [SMALL_STATE(3162)] = 145803, + [SMALL_STATE(3163)] = 145845, + [SMALL_STATE(3164)] = 145901, + [SMALL_STATE(3165)] = 145931, + [SMALL_STATE(3166)] = 145961, + [SMALL_STATE(3167)] = 145991, + [SMALL_STATE(3168)] = 146021, + [SMALL_STATE(3169)] = 146053, + [SMALL_STATE(3170)] = 146095, + [SMALL_STATE(3171)] = 146127, + [SMALL_STATE(3172)] = 146159, + [SMALL_STATE(3173)] = 146191, + [SMALL_STATE(3174)] = 146233, + [SMALL_STATE(3175)] = 146265, + [SMALL_STATE(3176)] = 146307, + [SMALL_STATE(3177)] = 146339, + [SMALL_STATE(3178)] = 146371, + [SMALL_STATE(3179)] = 146403, + [SMALL_STATE(3180)] = 146435, + [SMALL_STATE(3181)] = 146467, + [SMALL_STATE(3182)] = 146523, + [SMALL_STATE(3183)] = 146553, + [SMALL_STATE(3184)] = 146583, + [SMALL_STATE(3185)] = 146639, + [SMALL_STATE(3186)] = 146671, + [SMALL_STATE(3187)] = 146703, + [SMALL_STATE(3188)] = 146759, + [SMALL_STATE(3189)] = 146789, + [SMALL_STATE(3190)] = 146840, + [SMALL_STATE(3191)] = 146875, + [SMALL_STATE(3192)] = 146908, + [SMALL_STATE(3193)] = 146939, + [SMALL_STATE(3194)] = 146976, + [SMALL_STATE(3195)] = 147013, + [SMALL_STATE(3196)] = 147064, + [SMALL_STATE(3197)] = 147115, + [SMALL_STATE(3198)] = 147166, + [SMALL_STATE(3199)] = 147217, + [SMALL_STATE(3200)] = 147268, + [SMALL_STATE(3201)] = 147299, + [SMALL_STATE(3202)] = 147352, + [SMALL_STATE(3203)] = 147405, + [SMALL_STATE(3204)] = 147456, + [SMALL_STATE(3205)] = 147493, + [SMALL_STATE(3206)] = 147524, + [SMALL_STATE(3207)] = 147575, + [SMALL_STATE(3208)] = 147612, + [SMALL_STATE(3209)] = 147665, + [SMALL_STATE(3210)] = 147702, + [SMALL_STATE(3211)] = 147739, + [SMALL_STATE(3212)] = 147770, + [SMALL_STATE(3213)] = 147823, + [SMALL_STATE(3214)] = 147876, + [SMALL_STATE(3215)] = 147907, + [SMALL_STATE(3216)] = 147958, + [SMALL_STATE(3217)] = 147995, + [SMALL_STATE(3218)] = 148046, + [SMALL_STATE(3219)] = 148099, + [SMALL_STATE(3220)] = 148152, + [SMALL_STATE(3221)] = 148203, + [SMALL_STATE(3222)] = 148253, + [SMALL_STATE(3223)] = 148283, + [SMALL_STATE(3224)] = 148333, + [SMALL_STATE(3225)] = 148363, + [SMALL_STATE(3226)] = 148393, + [SMALL_STATE(3227)] = 148445, + [SMALL_STATE(3228)] = 148475, + [SMALL_STATE(3229)] = 148525, + [SMALL_STATE(3230)] = 148555, + [SMALL_STATE(3231)] = 148605, + [SMALL_STATE(3232)] = 148643, + [SMALL_STATE(3233)] = 148693, + [SMALL_STATE(3234)] = 148743, + [SMALL_STATE(3235)] = 148793, + [SMALL_STATE(3236)] = 148823, + [SMALL_STATE(3237)] = 148873, + [SMALL_STATE(3238)] = 148923, + [SMALL_STATE(3239)] = 148973, + [SMALL_STATE(3240)] = 149023, + [SMALL_STATE(3241)] = 149053, + [SMALL_STATE(3242)] = 149103, + [SMALL_STATE(3243)] = 149153, + [SMALL_STATE(3244)] = 149205, + [SMALL_STATE(3245)] = 149237, + [SMALL_STATE(3246)] = 149287, + [SMALL_STATE(3247)] = 149325, + [SMALL_STATE(3248)] = 149375, + [SMALL_STATE(3249)] = 149422, + [SMALL_STATE(3250)] = 149447, + [SMALL_STATE(3251)] = 149472, + [SMALL_STATE(3252)] = 149513, + [SMALL_STATE(3253)] = 149560, + [SMALL_STATE(3254)] = 149585, + [SMALL_STATE(3255)] = 149610, + [SMALL_STATE(3256)] = 149635, + [SMALL_STATE(3257)] = 149662, + [SMALL_STATE(3258)] = 149691, + [SMALL_STATE(3259)] = 149738, + [SMALL_STATE(3260)] = 149767, + [SMALL_STATE(3261)] = 149796, + [SMALL_STATE(3262)] = 149835, + [SMALL_STATE(3263)] = 149864, + [SMALL_STATE(3264)] = 149893, + [SMALL_STATE(3265)] = 149922, + [SMALL_STATE(3266)] = 149969, + [SMALL_STATE(3267)] = 150016, + [SMALL_STATE(3268)] = 150061, + [SMALL_STATE(3269)] = 150108, + [SMALL_STATE(3270)] = 150145, + [SMALL_STATE(3271)] = 150170, + [SMALL_STATE(3272)] = 150207, + [SMALL_STATE(3273)] = 150254, + [SMALL_STATE(3274)] = 150289, + [SMALL_STATE(3275)] = 150314, + [SMALL_STATE(3276)] = 150343, + [SMALL_STATE(3277)] = 150390, + [SMALL_STATE(3278)] = 150431, + [SMALL_STATE(3279)] = 150456, + [SMALL_STATE(3280)] = 150485, + [SMALL_STATE(3281)] = 150514, + [SMALL_STATE(3282)] = 150543, + [SMALL_STATE(3283)] = 150572, + [SMALL_STATE(3284)] = 150613, + [SMALL_STATE(3285)] = 150660, + [SMALL_STATE(3286)] = 150697, + [SMALL_STATE(3287)] = 150744, + [SMALL_STATE(3288)] = 150791, + [SMALL_STATE(3289)] = 150838, + [SMALL_STATE(3290)] = 150885, + [SMALL_STATE(3291)] = 150922, + [SMALL_STATE(3292)] = 150969, + [SMALL_STATE(3293)] = 151016, + [SMALL_STATE(3294)] = 151063, + [SMALL_STATE(3295)] = 151110, + [SMALL_STATE(3296)] = 151153, + [SMALL_STATE(3297)] = 151197, + [SMALL_STATE(3298)] = 151239, + [SMALL_STATE(3299)] = 151281, + [SMALL_STATE(3300)] = 151323, + [SMALL_STATE(3301)] = 151365, + [SMALL_STATE(3302)] = 151407, + [SMALL_STATE(3303)] = 151451, + [SMALL_STATE(3304)] = 151493, + [SMALL_STATE(3305)] = 151535, + [SMALL_STATE(3306)] = 151579, + [SMALL_STATE(3307)] = 151623, + [SMALL_STATE(3308)] = 151667, + [SMALL_STATE(3309)] = 151711, + [SMALL_STATE(3310)] = 151755, + [SMALL_STATE(3311)] = 151783, + [SMALL_STATE(3312)] = 151825, + [SMALL_STATE(3313)] = 151867, + [SMALL_STATE(3314)] = 151909, + [SMALL_STATE(3315)] = 151951, + [SMALL_STATE(3316)] = 151993, + [SMALL_STATE(3317)] = 152035, + [SMALL_STATE(3318)] = 152077, + [SMALL_STATE(3319)] = 152121, + [SMALL_STATE(3320)] = 152163, + [SMALL_STATE(3321)] = 152207, + [SMALL_STATE(3322)] = 152255, + [SMALL_STATE(3323)] = 152297, + [SMALL_STATE(3324)] = 152327, + [SMALL_STATE(3325)] = 152359, + [SMALL_STATE(3326)] = 152391, + [SMALL_STATE(3327)] = 152433, + [SMALL_STATE(3328)] = 152475, + [SMALL_STATE(3329)] = 152519, + [SMALL_STATE(3330)] = 152563, + [SMALL_STATE(3331)] = 152607, + [SMALL_STATE(3332)] = 152651, + [SMALL_STATE(3333)] = 152693, + [SMALL_STATE(3334)] = 152737, + [SMALL_STATE(3335)] = 152781, + [SMALL_STATE(3336)] = 152825, + [SMALL_STATE(3337)] = 152867, + [SMALL_STATE(3338)] = 152911, + [SMALL_STATE(3339)] = 152955, + [SMALL_STATE(3340)] = 152983, + [SMALL_STATE(3341)] = 153025, + [SMALL_STATE(3342)] = 153055, + [SMALL_STATE(3343)] = 153099, + [SMALL_STATE(3344)] = 153127, + [SMALL_STATE(3345)] = 153169, + [SMALL_STATE(3346)] = 153213, + [SMALL_STATE(3347)] = 153255, + [SMALL_STATE(3348)] = 153297, + [SMALL_STATE(3349)] = 153339, + [SMALL_STATE(3350)] = 153381, + [SMALL_STATE(3351)] = 153423, + [SMALL_STATE(3352)] = 153465, + [SMALL_STATE(3353)] = 153509, + [SMALL_STATE(3354)] = 153553, + [SMALL_STATE(3355)] = 153597, + [SMALL_STATE(3356)] = 153641, + [SMALL_STATE(3357)] = 153685, + [SMALL_STATE(3358)] = 153729, + [SMALL_STATE(3359)] = 153773, + [SMALL_STATE(3360)] = 153817, + [SMALL_STATE(3361)] = 153861, + [SMALL_STATE(3362)] = 153905, + [SMALL_STATE(3363)] = 153949, + [SMALL_STATE(3364)] = 153993, + [SMALL_STATE(3365)] = 154037, + [SMALL_STATE(3366)] = 154081, + [SMALL_STATE(3367)] = 154125, + [SMALL_STATE(3368)] = 154169, + [SMALL_STATE(3369)] = 154213, + [SMALL_STATE(3370)] = 154257, + [SMALL_STATE(3371)] = 154301, + [SMALL_STATE(3372)] = 154329, + [SMALL_STATE(3373)] = 154373, + [SMALL_STATE(3374)] = 154417, + [SMALL_STATE(3375)] = 154461, + [SMALL_STATE(3376)] = 154505, + [SMALL_STATE(3377)] = 154549, + [SMALL_STATE(3378)] = 154593, + [SMALL_STATE(3379)] = 154637, + [SMALL_STATE(3380)] = 154681, + [SMALL_STATE(3381)] = 154725, + [SMALL_STATE(3382)] = 154769, + [SMALL_STATE(3383)] = 154813, + [SMALL_STATE(3384)] = 154857, + [SMALL_STATE(3385)] = 154887, + [SMALL_STATE(3386)] = 154931, + [SMALL_STATE(3387)] = 154975, + [SMALL_STATE(3388)] = 155019, + [SMALL_STATE(3389)] = 155063, + [SMALL_STATE(3390)] = 155107, + [SMALL_STATE(3391)] = 155151, + [SMALL_STATE(3392)] = 155195, + [SMALL_STATE(3393)] = 155239, + [SMALL_STATE(3394)] = 155283, + [SMALL_STATE(3395)] = 155327, + [SMALL_STATE(3396)] = 155371, + [SMALL_STATE(3397)] = 155415, + [SMALL_STATE(3398)] = 155459, + [SMALL_STATE(3399)] = 155503, + [SMALL_STATE(3400)] = 155547, + [SMALL_STATE(3401)] = 155591, + [SMALL_STATE(3402)] = 155635, + [SMALL_STATE(3403)] = 155679, + [SMALL_STATE(3404)] = 155721, + [SMALL_STATE(3405)] = 155765, + [SMALL_STATE(3406)] = 155809, + [SMALL_STATE(3407)] = 155853, + [SMALL_STATE(3408)] = 155895, + [SMALL_STATE(3409)] = 155936, + [SMALL_STATE(3410)] = 155963, + [SMALL_STATE(3411)] = 155988, + [SMALL_STATE(3412)] = 156029, + [SMALL_STATE(3413)] = 156070, + [SMALL_STATE(3414)] = 156109, + [SMALL_STATE(3415)] = 156150, + [SMALL_STATE(3416)] = 156191, + [SMALL_STATE(3417)] = 156218, + [SMALL_STATE(3418)] = 156245, + [SMALL_STATE(3419)] = 156286, + [SMALL_STATE(3420)] = 156333, + [SMALL_STATE(3421)] = 156372, + [SMALL_STATE(3422)] = 156399, + [SMALL_STATE(3423)] = 156424, + [SMALL_STATE(3424)] = 156465, + [SMALL_STATE(3425)] = 156490, + [SMALL_STATE(3426)] = 156517, + [SMALL_STATE(3427)] = 156558, + [SMALL_STATE(3428)] = 156599, + [SMALL_STATE(3429)] = 156640, + [SMALL_STATE(3430)] = 156681, + [SMALL_STATE(3431)] = 156722, + [SMALL_STATE(3432)] = 156767, + [SMALL_STATE(3433)] = 156808, + [SMALL_STATE(3434)] = 156849, + [SMALL_STATE(3435)] = 156874, + [SMALL_STATE(3436)] = 156901, + [SMALL_STATE(3437)] = 156930, + [SMALL_STATE(3438)] = 156971, + [SMALL_STATE(3439)] = 157004, + [SMALL_STATE(3440)] = 157040, + [SMALL_STATE(3441)] = 157080, + [SMALL_STATE(3442)] = 157118, + [SMALL_STATE(3443)] = 157146, + [SMALL_STATE(3444)] = 157170, + [SMALL_STATE(3445)] = 157206, + [SMALL_STATE(3446)] = 157244, + [SMALL_STATE(3447)] = 157268, + [SMALL_STATE(3448)] = 157304, + [SMALL_STATE(3449)] = 157340, + [SMALL_STATE(3450)] = 157364, + [SMALL_STATE(3451)] = 157402, + [SMALL_STATE(3452)] = 157426, + [SMALL_STATE(3453)] = 157452, + [SMALL_STATE(3454)] = 157480, + [SMALL_STATE(3455)] = 157514, + [SMALL_STATE(3456)] = 157550, + [SMALL_STATE(3457)] = 157584, + [SMALL_STATE(3458)] = 157620, + [SMALL_STATE(3459)] = 157658, + [SMALL_STATE(3460)] = 157684, + [SMALL_STATE(3461)] = 157724, + [SMALL_STATE(3462)] = 157748, + [SMALL_STATE(3463)] = 157772, + [SMALL_STATE(3464)] = 157812, + [SMALL_STATE(3465)] = 157852, + [SMALL_STATE(3466)] = 157876, + [SMALL_STATE(3467)] = 157900, + [SMALL_STATE(3468)] = 157924, + [SMALL_STATE(3469)] = 157948, + [SMALL_STATE(3470)] = 157987, + [SMALL_STATE(3471)] = 158026, + [SMALL_STATE(3472)] = 158053, + [SMALL_STATE(3473)] = 158080, + [SMALL_STATE(3474)] = 158113, + [SMALL_STATE(3475)] = 158146, + [SMALL_STATE(3476)] = 158173, + [SMALL_STATE(3477)] = 158208, + [SMALL_STATE(3478)] = 158231, + [SMALL_STATE(3479)] = 158264, + [SMALL_STATE(3480)] = 158297, + [SMALL_STATE(3481)] = 158330, + [SMALL_STATE(3482)] = 158351, + [SMALL_STATE(3483)] = 158376, + [SMALL_STATE(3484)] = 158413, + [SMALL_STATE(3485)] = 158448, + [SMALL_STATE(3486)] = 158469, + [SMALL_STATE(3487)] = 158492, + [SMALL_STATE(3488)] = 158519, + [SMALL_STATE(3489)] = 158546, + [SMALL_STATE(3490)] = 158569, + [SMALL_STATE(3491)] = 158594, + [SMALL_STATE(3492)] = 158621, + [SMALL_STATE(3493)] = 158642, + [SMALL_STATE(3494)] = 158669, + [SMALL_STATE(3495)] = 158696, + [SMALL_STATE(3496)] = 158723, + [SMALL_STATE(3497)] = 158746, + [SMALL_STATE(3498)] = 158769, + [SMALL_STATE(3499)] = 158802, + [SMALL_STATE(3500)] = 158823, + [SMALL_STATE(3501)] = 158856, + [SMALL_STATE(3502)] = 158879, + [SMALL_STATE(3503)] = 158912, + [SMALL_STATE(3504)] = 158935, + [SMALL_STATE(3505)] = 158962, + [SMALL_STATE(3506)] = 158995, + [SMALL_STATE(3507)] = 159034, + [SMALL_STATE(3508)] = 159060, + [SMALL_STATE(3509)] = 159082, + [SMALL_STATE(3510)] = 159116, + [SMALL_STATE(3511)] = 159154, + [SMALL_STATE(3512)] = 159192, + [SMALL_STATE(3513)] = 159214, + [SMALL_STATE(3514)] = 159248, + [SMALL_STATE(3515)] = 159280, + [SMALL_STATE(3516)] = 159308, + [SMALL_STATE(3517)] = 159348, + [SMALL_STATE(3518)] = 159388, + [SMALL_STATE(3519)] = 159426, + [SMALL_STATE(3520)] = 159464, + [SMALL_STATE(3521)] = 159504, + [SMALL_STATE(3522)] = 159542, + [SMALL_STATE(3523)] = 159564, + [SMALL_STATE(3524)] = 159586, + [SMALL_STATE(3525)] = 159608, + [SMALL_STATE(3526)] = 159638, + [SMALL_STATE(3527)] = 159668, + [SMALL_STATE(3528)] = 159700, + [SMALL_STATE(3529)] = 159738, + [SMALL_STATE(3530)] = 159770, + [SMALL_STATE(3531)] = 159802, + [SMALL_STATE(3532)] = 159838, + [SMALL_STATE(3533)] = 159862, + [SMALL_STATE(3534)] = 159886, + [SMALL_STATE(3535)] = 159920, + [SMALL_STATE(3536)] = 159950, + [SMALL_STATE(3537)] = 159972, + [SMALL_STATE(3538)] = 160000, + [SMALL_STATE(3539)] = 160026, + [SMALL_STATE(3540)] = 160052, + [SMALL_STATE(3541)] = 160078, + [SMALL_STATE(3542)] = 160108, + [SMALL_STATE(3543)] = 160138, + [SMALL_STATE(3544)] = 160166, + [SMALL_STATE(3545)] = 160198, + [SMALL_STATE(3546)] = 160220, + [SMALL_STATE(3547)] = 160260, + [SMALL_STATE(3548)] = 160286, + [SMALL_STATE(3549)] = 160308, + [SMALL_STATE(3550)] = 160340, + [SMALL_STATE(3551)] = 160370, + [SMALL_STATE(3552)] = 160402, + [SMALL_STATE(3553)] = 160434, + [SMALL_STATE(3554)] = 160466, + [SMALL_STATE(3555)] = 160490, + [SMALL_STATE(3556)] = 160522, + [SMALL_STATE(3557)] = 160544, + [SMALL_STATE(3558)] = 160568, + [SMALL_STATE(3559)] = 160598, + [SMALL_STATE(3560)] = 160630, + [SMALL_STATE(3561)] = 160660, + [SMALL_STATE(3562)] = 160692, + [SMALL_STATE(3563)] = 160714, + [SMALL_STATE(3564)] = 160746, + [SMALL_STATE(3565)] = 160778, + [SMALL_STATE(3566)] = 160810, + [SMALL_STATE(3567)] = 160848, + [SMALL_STATE(3568)] = 160888, + [SMALL_STATE(3569)] = 160928, + [SMALL_STATE(3570)] = 160958, + [SMALL_STATE(3571)] = 160992, + [SMALL_STATE(3572)] = 161022, + [SMALL_STATE(3573)] = 161052, + [SMALL_STATE(3574)] = 161081, + [SMALL_STATE(3575)] = 161110, + [SMALL_STATE(3576)] = 161139, + [SMALL_STATE(3577)] = 161168, + [SMALL_STATE(3578)] = 161197, + [SMALL_STATE(3579)] = 161226, + [SMALL_STATE(3580)] = 161255, + [SMALL_STATE(3581)] = 161286, + [SMALL_STATE(3582)] = 161315, + [SMALL_STATE(3583)] = 161344, + [SMALL_STATE(3584)] = 161373, + [SMALL_STATE(3585)] = 161402, + [SMALL_STATE(3586)] = 161431, + [SMALL_STATE(3587)] = 161460, + [SMALL_STATE(3588)] = 161491, + [SMALL_STATE(3589)] = 161520, + [SMALL_STATE(3590)] = 161543, + [SMALL_STATE(3591)] = 161572, + [SMALL_STATE(3592)] = 161601, + [SMALL_STATE(3593)] = 161630, + [SMALL_STATE(3594)] = 161659, + [SMALL_STATE(3595)] = 161688, + [SMALL_STATE(3596)] = 161717, + [SMALL_STATE(3597)] = 161746, + [SMALL_STATE(3598)] = 161775, + [SMALL_STATE(3599)] = 161796, + [SMALL_STATE(3600)] = 161829, + [SMALL_STATE(3601)] = 161858, + [SMALL_STATE(3602)] = 161881, + [SMALL_STATE(3603)] = 161912, + [SMALL_STATE(3604)] = 161943, + [SMALL_STATE(3605)] = 161974, + [SMALL_STATE(3606)] = 162003, + [SMALL_STATE(3607)] = 162024, + [SMALL_STATE(3608)] = 162053, + [SMALL_STATE(3609)] = 162082, + [SMALL_STATE(3610)] = 162113, + [SMALL_STATE(3611)] = 162142, + [SMALL_STATE(3612)] = 162163, + [SMALL_STATE(3613)] = 162192, + [SMALL_STATE(3614)] = 162213, + [SMALL_STATE(3615)] = 162242, + [SMALL_STATE(3616)] = 162271, + [SMALL_STATE(3617)] = 162300, + [SMALL_STATE(3618)] = 162329, + [SMALL_STATE(3619)] = 162358, + [SMALL_STATE(3620)] = 162389, + [SMALL_STATE(3621)] = 162420, + [SMALL_STATE(3622)] = 162441, + [SMALL_STATE(3623)] = 162470, + [SMALL_STATE(3624)] = 162499, + [SMALL_STATE(3625)] = 162528, + [SMALL_STATE(3626)] = 162557, + [SMALL_STATE(3627)] = 162586, + [SMALL_STATE(3628)] = 162607, + [SMALL_STATE(3629)] = 162636, + [SMALL_STATE(3630)] = 162665, + [SMALL_STATE(3631)] = 162706, + [SMALL_STATE(3632)] = 162735, + [SMALL_STATE(3633)] = 162764, + [SMALL_STATE(3634)] = 162797, + [SMALL_STATE(3635)] = 162828, + [SMALL_STATE(3636)] = 162859, + [SMALL_STATE(3637)] = 162890, + [SMALL_STATE(3638)] = 162921, + [SMALL_STATE(3639)] = 162950, + [SMALL_STATE(3640)] = 162991, + [SMALL_STATE(3641)] = 163020, + [SMALL_STATE(3642)] = 163041, + [SMALL_STATE(3643)] = 163070, + [SMALL_STATE(3644)] = 163101, + [SMALL_STATE(3645)] = 163142, + [SMALL_STATE(3646)] = 163171, + [SMALL_STATE(3647)] = 163202, + [SMALL_STATE(3648)] = 163231, + [SMALL_STATE(3649)] = 163262, + [SMALL_STATE(3650)] = 163293, + [SMALL_STATE(3651)] = 163334, + [SMALL_STATE(3652)] = 163375, + [SMALL_STATE(3653)] = 163404, + [SMALL_STATE(3654)] = 163445, + [SMALL_STATE(3655)] = 163474, + [SMALL_STATE(3656)] = 163515, + [SMALL_STATE(3657)] = 163544, + [SMALL_STATE(3658)] = 163573, + [SMALL_STATE(3659)] = 163604, + [SMALL_STATE(3660)] = 163635, + [SMALL_STATE(3661)] = 163664, + [SMALL_STATE(3662)] = 163693, + [SMALL_STATE(3663)] = 163722, + [SMALL_STATE(3664)] = 163753, + [SMALL_STATE(3665)] = 163784, + [SMALL_STATE(3666)] = 163815, + [SMALL_STATE(3667)] = 163846, + [SMALL_STATE(3668)] = 163875, + [SMALL_STATE(3669)] = 163904, + [SMALL_STATE(3670)] = 163933, + [SMALL_STATE(3671)] = 163964, + [SMALL_STATE(3672)] = 163985, + [SMALL_STATE(3673)] = 164014, + [SMALL_STATE(3674)] = 164035, + [SMALL_STATE(3675)] = 164064, + [SMALL_STATE(3676)] = 164093, + [SMALL_STATE(3677)] = 164122, + [SMALL_STATE(3678)] = 164153, + [SMALL_STATE(3679)] = 164194, + [SMALL_STATE(3680)] = 164223, + [SMALL_STATE(3681)] = 164244, + [SMALL_STATE(3682)] = 164273, + [SMALL_STATE(3683)] = 164303, + [SMALL_STATE(3684)] = 164333, + [SMALL_STATE(3685)] = 164363, + [SMALL_STATE(3686)] = 164395, + [SMALL_STATE(3687)] = 164425, + [SMALL_STATE(3688)] = 164453, + [SMALL_STATE(3689)] = 164481, + [SMALL_STATE(3690)] = 164509, + [SMALL_STATE(3691)] = 164543, + [SMALL_STATE(3692)] = 164581, + [SMALL_STATE(3693)] = 164611, + [SMALL_STATE(3694)] = 164641, + [SMALL_STATE(3695)] = 164679, + [SMALL_STATE(3696)] = 164707, + [SMALL_STATE(3697)] = 164745, + [SMALL_STATE(3698)] = 164783, + [SMALL_STATE(3699)] = 164815, + [SMALL_STATE(3700)] = 164845, + [SMALL_STATE(3701)] = 164879, + [SMALL_STATE(3702)] = 164903, + [SMALL_STATE(3703)] = 164941, + [SMALL_STATE(3704)] = 164975, + [SMALL_STATE(3705)] = 164995, + [SMALL_STATE(3706)] = 165025, + [SMALL_STATE(3707)] = 165055, + [SMALL_STATE(3708)] = 165093, + [SMALL_STATE(3709)] = 165123, + [SMALL_STATE(3710)] = 165157, + [SMALL_STATE(3711)] = 165195, + [SMALL_STATE(3712)] = 165213, + [SMALL_STATE(3713)] = 165251, + [SMALL_STATE(3714)] = 165281, + [SMALL_STATE(3715)] = 165311, + [SMALL_STATE(3716)] = 165341, + [SMALL_STATE(3717)] = 165379, + [SMALL_STATE(3718)] = 165417, + [SMALL_STATE(3719)] = 165455, + [SMALL_STATE(3720)] = 165479, + [SMALL_STATE(3721)] = 165511, + [SMALL_STATE(3722)] = 165539, + [SMALL_STATE(3723)] = 165569, + [SMALL_STATE(3724)] = 165601, + [SMALL_STATE(3725)] = 165629, + [SMALL_STATE(3726)] = 165659, + [SMALL_STATE(3727)] = 165689, + [SMALL_STATE(3728)] = 165727, + [SMALL_STATE(3729)] = 165759, + [SMALL_STATE(3730)] = 165789, + [SMALL_STATE(3731)] = 165819, + [SMALL_STATE(3732)] = 165857, + [SMALL_STATE(3733)] = 165887, + [SMALL_STATE(3734)] = 165925, + [SMALL_STATE(3735)] = 165963, + [SMALL_STATE(3736)] = 165993, + [SMALL_STATE(3737)] = 166017, + [SMALL_STATE(3738)] = 166047, + [SMALL_STATE(3739)] = 166077, + [SMALL_STATE(3740)] = 166115, + [SMALL_STATE(3741)] = 166143, + [SMALL_STATE(3742)] = 166175, + [SMALL_STATE(3743)] = 166199, + [SMALL_STATE(3744)] = 166231, + [SMALL_STATE(3745)] = 166259, + [SMALL_STATE(3746)] = 166297, + [SMALL_STATE(3747)] = 166335, + [SMALL_STATE(3748)] = 166367, + [SMALL_STATE(3749)] = 166397, + [SMALL_STATE(3750)] = 166431, + [SMALL_STATE(3751)] = 166461, + [SMALL_STATE(3752)] = 166491, + [SMALL_STATE(3753)] = 166523, + [SMALL_STATE(3754)] = 166557, + [SMALL_STATE(3755)] = 166587, + [SMALL_STATE(3756)] = 166617, + [SMALL_STATE(3757)] = 166655, + [SMALL_STATE(3758)] = 166685, + [SMALL_STATE(3759)] = 166713, + [SMALL_STATE(3760)] = 166751, + [SMALL_STATE(3761)] = 166781, + [SMALL_STATE(3762)] = 166811, + [SMALL_STATE(3763)] = 166841, + [SMALL_STATE(3764)] = 166879, + [SMALL_STATE(3765)] = 166907, + [SMALL_STATE(3766)] = 166937, + [SMALL_STATE(3767)] = 166975, + [SMALL_STATE(3768)] = 167003, + [SMALL_STATE(3769)] = 167041, + [SMALL_STATE(3770)] = 167071, + [SMALL_STATE(3771)] = 167101, + [SMALL_STATE(3772)] = 167139, + [SMALL_STATE(3773)] = 167177, + [SMALL_STATE(3774)] = 167202, + [SMALL_STATE(3775)] = 167225, + [SMALL_STATE(3776)] = 167254, + [SMALL_STATE(3777)] = 167283, + [SMALL_STATE(3778)] = 167302, + [SMALL_STATE(3779)] = 167331, + [SMALL_STATE(3780)] = 167360, + [SMALL_STATE(3781)] = 167383, + [SMALL_STATE(3782)] = 167402, + [SMALL_STATE(3783)] = 167431, + [SMALL_STATE(3784)] = 167460, + [SMALL_STATE(3785)] = 167489, + [SMALL_STATE(3786)] = 167518, + [SMALL_STATE(3787)] = 167547, + [SMALL_STATE(3788)] = 167576, + [SMALL_STATE(3789)] = 167605, + [SMALL_STATE(3790)] = 167626, + [SMALL_STATE(3791)] = 167655, + [SMALL_STATE(3792)] = 167680, + [SMALL_STATE(3793)] = 167699, + [SMALL_STATE(3794)] = 167718, + [SMALL_STATE(3795)] = 167739, + [SMALL_STATE(3796)] = 167768, + [SMALL_STATE(3797)] = 167787, + [SMALL_STATE(3798)] = 167812, + [SMALL_STATE(3799)] = 167833, + [SMALL_STATE(3800)] = 167856, + [SMALL_STATE(3801)] = 167881, + [SMALL_STATE(3802)] = 167904, + [SMALL_STATE(3803)] = 167933, + [SMALL_STATE(3804)] = 167958, + [SMALL_STATE(3805)] = 167979, + [SMALL_STATE(3806)] = 168004, + [SMALL_STATE(3807)] = 168029, + [SMALL_STATE(3808)] = 168058, + [SMALL_STATE(3809)] = 168089, + [SMALL_STATE(3810)] = 168118, + [SMALL_STATE(3811)] = 168149, + [SMALL_STATE(3812)] = 168178, + [SMALL_STATE(3813)] = 168207, + [SMALL_STATE(3814)] = 168236, + [SMALL_STATE(3815)] = 168267, + [SMALL_STATE(3816)] = 168298, + [SMALL_STATE(3817)] = 168329, + [SMALL_STATE(3818)] = 168348, + [SMALL_STATE(3819)] = 168367, + [SMALL_STATE(3820)] = 168386, + [SMALL_STATE(3821)] = 168405, + [SMALL_STATE(3822)] = 168434, + [SMALL_STATE(3823)] = 168457, + [SMALL_STATE(3824)] = 168486, + [SMALL_STATE(3825)] = 168517, + [SMALL_STATE(3826)] = 168548, + [SMALL_STATE(3827)] = 168567, + [SMALL_STATE(3828)] = 168596, + [SMALL_STATE(3829)] = 168625, + [SMALL_STATE(3830)] = 168644, + [SMALL_STATE(3831)] = 168663, + [SMALL_STATE(3832)] = 168682, + [SMALL_STATE(3833)] = 168707, + [SMALL_STATE(3834)] = 168726, + [SMALL_STATE(3835)] = 168749, + [SMALL_STATE(3836)] = 168774, + [SMALL_STATE(3837)] = 168803, + [SMALL_STATE(3838)] = 168828, + [SMALL_STATE(3839)] = 168851, + [SMALL_STATE(3840)] = 168870, + [SMALL_STATE(3841)] = 168895, + [SMALL_STATE(3842)] = 168912, + [SMALL_STATE(3843)] = 168929, + [SMALL_STATE(3844)] = 168946, + [SMALL_STATE(3845)] = 168963, + [SMALL_STATE(3846)] = 168986, + [SMALL_STATE(3847)] = 169011, + [SMALL_STATE(3848)] = 169036, + [SMALL_STATE(3849)] = 169057, + [SMALL_STATE(3850)] = 169080, + [SMALL_STATE(3851)] = 169101, + [SMALL_STATE(3852)] = 169120, + [SMALL_STATE(3853)] = 169137, + [SMALL_STATE(3854)] = 169162, + [SMALL_STATE(3855)] = 169181, + [SMALL_STATE(3856)] = 169198, + [SMALL_STATE(3857)] = 169227, + [SMALL_STATE(3858)] = 169257, + [SMALL_STATE(3859)] = 169285, + [SMALL_STATE(3860)] = 169303, + [SMALL_STATE(3861)] = 169325, + [SMALL_STATE(3862)] = 169353, + [SMALL_STATE(3863)] = 169375, + [SMALL_STATE(3864)] = 169397, + [SMALL_STATE(3865)] = 169425, + [SMALL_STATE(3866)] = 169455, + [SMALL_STATE(3867)] = 169475, + [SMALL_STATE(3868)] = 169491, + [SMALL_STATE(3869)] = 169523, + [SMALL_STATE(3870)] = 169541, + [SMALL_STATE(3871)] = 169563, + [SMALL_STATE(3872)] = 169579, + [SMALL_STATE(3873)] = 169595, + [SMALL_STATE(3874)] = 169627, + [SMALL_STATE(3875)] = 169643, + [SMALL_STATE(3876)] = 169659, + [SMALL_STATE(3877)] = 169689, + [SMALL_STATE(3878)] = 169717, + [SMALL_STATE(3879)] = 169745, + [SMALL_STATE(3880)] = 169763, + [SMALL_STATE(3881)] = 169793, + [SMALL_STATE(3882)] = 169809, + [SMALL_STATE(3883)] = 169825, + [SMALL_STATE(3884)] = 169849, + [SMALL_STATE(3885)] = 169879, + [SMALL_STATE(3886)] = 169907, + [SMALL_STATE(3887)] = 169931, + [SMALL_STATE(3888)] = 169949, + [SMALL_STATE(3889)] = 169977, + [SMALL_STATE(3890)] = 170001, + [SMALL_STATE(3891)] = 170019, + [SMALL_STATE(3892)] = 170047, + [SMALL_STATE(3893)] = 170077, + [SMALL_STATE(3894)] = 170107, + [SMALL_STATE(3895)] = 170137, + [SMALL_STATE(3896)] = 170161, + [SMALL_STATE(3897)] = 170189, + [SMALL_STATE(3898)] = 170219, + [SMALL_STATE(3899)] = 170241, + [SMALL_STATE(3900)] = 170261, + [SMALL_STATE(3901)] = 170293, + [SMALL_STATE(3902)] = 170317, + [SMALL_STATE(3903)] = 170335, + [SMALL_STATE(3904)] = 170359, + [SMALL_STATE(3905)] = 170383, + [SMALL_STATE(3906)] = 170415, + [SMALL_STATE(3907)] = 170431, + [SMALL_STATE(3908)] = 170459, + [SMALL_STATE(3909)] = 170489, + [SMALL_STATE(3910)] = 170513, + [SMALL_STATE(3911)] = 170531, + [SMALL_STATE(3912)] = 170559, + [SMALL_STATE(3913)] = 170581, + [SMALL_STATE(3914)] = 170601, + [SMALL_STATE(3915)] = 170629, + [SMALL_STATE(3916)] = 170659, + [SMALL_STATE(3917)] = 170683, + [SMALL_STATE(3918)] = 170705, + [SMALL_STATE(3919)] = 170723, + [SMALL_STATE(3920)] = 170751, + [SMALL_STATE(3921)] = 170779, + [SMALL_STATE(3922)] = 170803, + [SMALL_STATE(3923)] = 170821, + [SMALL_STATE(3924)] = 170839, + [SMALL_STATE(3925)] = 170863, + [SMALL_STATE(3926)] = 170891, + [SMALL_STATE(3927)] = 170907, + [SMALL_STATE(3928)] = 170925, + [SMALL_STATE(3929)] = 170941, + [SMALL_STATE(3930)] = 170973, + [SMALL_STATE(3931)] = 170997, + [SMALL_STATE(3932)] = 171029, + [SMALL_STATE(3933)] = 171059, + [SMALL_STATE(3934)] = 171089, + [SMALL_STATE(3935)] = 171107, + [SMALL_STATE(3936)] = 171128, + [SMALL_STATE(3937)] = 171157, + [SMALL_STATE(3938)] = 171186, + [SMALL_STATE(3939)] = 171207, + [SMALL_STATE(3940)] = 171234, + [SMALL_STATE(3941)] = 171253, + [SMALL_STATE(3942)] = 171282, + [SMALL_STATE(3943)] = 171311, + [SMALL_STATE(3944)] = 171332, + [SMALL_STATE(3945)] = 171361, + [SMALL_STATE(3946)] = 171384, + [SMALL_STATE(3947)] = 171413, + [SMALL_STATE(3948)] = 171442, + [SMALL_STATE(3949)] = 171463, + [SMALL_STATE(3950)] = 171492, + [SMALL_STATE(3951)] = 171521, + [SMALL_STATE(3952)] = 171548, + [SMALL_STATE(3953)] = 171571, + [SMALL_STATE(3954)] = 171600, + [SMALL_STATE(3955)] = 171629, + [SMALL_STATE(3956)] = 171650, + [SMALL_STATE(3957)] = 171671, + [SMALL_STATE(3958)] = 171690, + [SMALL_STATE(3959)] = 171719, + [SMALL_STATE(3960)] = 171740, + [SMALL_STATE(3961)] = 171769, + [SMALL_STATE(3962)] = 171792, + [SMALL_STATE(3963)] = 171815, + [SMALL_STATE(3964)] = 171844, + [SMALL_STATE(3965)] = 171867, + [SMALL_STATE(3966)] = 171896, + [SMALL_STATE(3967)] = 171925, + [SMALL_STATE(3968)] = 171948, + [SMALL_STATE(3969)] = 171977, + [SMALL_STATE(3970)] = 171998, + [SMALL_STATE(3971)] = 172019, + [SMALL_STATE(3972)] = 172046, + [SMALL_STATE(3973)] = 172071, + [SMALL_STATE(3974)] = 172100, + [SMALL_STATE(3975)] = 172127, + [SMALL_STATE(3976)] = 172156, + [SMALL_STATE(3977)] = 172175, + [SMALL_STATE(3978)] = 172198, + [SMALL_STATE(3979)] = 172219, + [SMALL_STATE(3980)] = 172246, + [SMALL_STATE(3981)] = 172271, + [SMALL_STATE(3982)] = 172298, + [SMALL_STATE(3983)] = 172327, + [SMALL_STATE(3984)] = 172356, + [SMALL_STATE(3985)] = 172385, + [SMALL_STATE(3986)] = 172406, + [SMALL_STATE(3987)] = 172429, + [SMALL_STATE(3988)] = 172458, + [SMALL_STATE(3989)] = 172487, + [SMALL_STATE(3990)] = 172502, + [SMALL_STATE(3991)] = 172517, + [SMALL_STATE(3992)] = 172546, + [SMALL_STATE(3993)] = 172575, + [SMALL_STATE(3994)] = 172598, + [SMALL_STATE(3995)] = 172627, + [SMALL_STATE(3996)] = 172642, + [SMALL_STATE(3997)] = 172665, + [SMALL_STATE(3998)] = 172694, + [SMALL_STATE(3999)] = 172715, + [SMALL_STATE(4000)] = 172734, + [SMALL_STATE(4001)] = 172751, + [SMALL_STATE(4002)] = 172774, + [SMALL_STATE(4003)] = 172797, + [SMALL_STATE(4004)] = 172824, + [SMALL_STATE(4005)] = 172847, + [SMALL_STATE(4006)] = 172876, + [SMALL_STATE(4007)] = 172897, + [SMALL_STATE(4008)] = 172918, + [SMALL_STATE(4009)] = 172947, + [SMALL_STATE(4010)] = 172970, + [SMALL_STATE(4011)] = 172999, + [SMALL_STATE(4012)] = 173028, + [SMALL_STATE(4013)] = 173053, + [SMALL_STATE(4014)] = 173082, + [SMALL_STATE(4015)] = 173101, + [SMALL_STATE(4016)] = 173122, + [SMALL_STATE(4017)] = 173151, + [SMALL_STATE(4018)] = 173172, + [SMALL_STATE(4019)] = 173193, + [SMALL_STATE(4020)] = 173216, + [SMALL_STATE(4021)] = 173241, + [SMALL_STATE(4022)] = 173256, + [SMALL_STATE(4023)] = 173285, + [SMALL_STATE(4024)] = 173314, + [SMALL_STATE(4025)] = 173343, + [SMALL_STATE(4026)] = 173358, + [SMALL_STATE(4027)] = 173387, + [SMALL_STATE(4028)] = 173416, + [SMALL_STATE(4029)] = 173439, + [SMALL_STATE(4030)] = 173468, + [SMALL_STATE(4031)] = 173497, + [SMALL_STATE(4032)] = 173512, + [SMALL_STATE(4033)] = 173541, + [SMALL_STATE(4034)] = 173570, + [SMALL_STATE(4035)] = 173599, + [SMALL_STATE(4036)] = 173618, + [SMALL_STATE(4037)] = 173647, + [SMALL_STATE(4038)] = 173676, + [SMALL_STATE(4039)] = 173705, + [SMALL_STATE(4040)] = 173730, + [SMALL_STATE(4041)] = 173757, + [SMALL_STATE(4042)] = 173780, + [SMALL_STATE(4043)] = 173809, + [SMALL_STATE(4044)] = 173838, + [SMALL_STATE(4045)] = 173867, + [SMALL_STATE(4046)] = 173893, + [SMALL_STATE(4047)] = 173915, + [SMALL_STATE(4048)] = 173929, + [SMALL_STATE(4049)] = 173947, + [SMALL_STATE(4050)] = 173973, + [SMALL_STATE(4051)] = 173999, + [SMALL_STATE(4052)] = 174025, + [SMALL_STATE(4053)] = 174051, + [SMALL_STATE(4054)] = 174075, + [SMALL_STATE(4055)] = 174099, + [SMALL_STATE(4056)] = 174123, + [SMALL_STATE(4057)] = 174145, + [SMALL_STATE(4058)] = 174171, + [SMALL_STATE(4059)] = 174197, + [SMALL_STATE(4060)] = 174223, + [SMALL_STATE(4061)] = 174249, + [SMALL_STATE(4062)] = 174273, + [SMALL_STATE(4063)] = 174297, + [SMALL_STATE(4064)] = 174321, + [SMALL_STATE(4065)] = 174345, + [SMALL_STATE(4066)] = 174369, + [SMALL_STATE(4067)] = 174393, + [SMALL_STATE(4068)] = 174417, + [SMALL_STATE(4069)] = 174441, + [SMALL_STATE(4070)] = 174467, + [SMALL_STATE(4071)] = 174493, + [SMALL_STATE(4072)] = 174519, + [SMALL_STATE(4073)] = 174543, + [SMALL_STATE(4074)] = 174567, + [SMALL_STATE(4075)] = 174591, + [SMALL_STATE(4076)] = 174615, + [SMALL_STATE(4077)] = 174641, + [SMALL_STATE(4078)] = 174667, + [SMALL_STATE(4079)] = 174689, + [SMALL_STATE(4080)] = 174711, + [SMALL_STATE(4081)] = 174737, + [SMALL_STATE(4082)] = 174763, + [SMALL_STATE(4083)] = 174789, + [SMALL_STATE(4084)] = 174815, + [SMALL_STATE(4085)] = 174841, + [SMALL_STATE(4086)] = 174867, + [SMALL_STATE(4087)] = 174893, + [SMALL_STATE(4088)] = 174917, + [SMALL_STATE(4089)] = 174943, + [SMALL_STATE(4090)] = 174969, + [SMALL_STATE(4091)] = 174995, + [SMALL_STATE(4092)] = 175021, + [SMALL_STATE(4093)] = 175047, + [SMALL_STATE(4094)] = 175067, + [SMALL_STATE(4095)] = 175089, + [SMALL_STATE(4096)] = 175115, + [SMALL_STATE(4097)] = 175141, + [SMALL_STATE(4098)] = 175167, + [SMALL_STATE(4099)] = 175193, + [SMALL_STATE(4100)] = 175219, + [SMALL_STATE(4101)] = 175243, + [SMALL_STATE(4102)] = 175267, + [SMALL_STATE(4103)] = 175291, + [SMALL_STATE(4104)] = 175315, + [SMALL_STATE(4105)] = 175337, + [SMALL_STATE(4106)] = 175359, + [SMALL_STATE(4107)] = 175381, + [SMALL_STATE(4108)] = 175399, + [SMALL_STATE(4109)] = 175425, + [SMALL_STATE(4110)] = 175449, + [SMALL_STATE(4111)] = 175473, + [SMALL_STATE(4112)] = 175493, + [SMALL_STATE(4113)] = 175515, + [SMALL_STATE(4114)] = 175541, + [SMALL_STATE(4115)] = 175567, + [SMALL_STATE(4116)] = 175593, + [SMALL_STATE(4117)] = 175617, + [SMALL_STATE(4118)] = 175641, + [SMALL_STATE(4119)] = 175667, + [SMALL_STATE(4120)] = 175693, + [SMALL_STATE(4121)] = 175717, + [SMALL_STATE(4122)] = 175741, + [SMALL_STATE(4123)] = 175765, + [SMALL_STATE(4124)] = 175791, + [SMALL_STATE(4125)] = 175809, + [SMALL_STATE(4126)] = 175835, + [SMALL_STATE(4127)] = 175861, + [SMALL_STATE(4128)] = 175887, + [SMALL_STATE(4129)] = 175911, + [SMALL_STATE(4130)] = 175935, + [SMALL_STATE(4131)] = 175959, + [SMALL_STATE(4132)] = 175983, + [SMALL_STATE(4133)] = 176007, + [SMALL_STATE(4134)] = 176033, + [SMALL_STATE(4135)] = 176059, + [SMALL_STATE(4136)] = 176085, + [SMALL_STATE(4137)] = 176109, + [SMALL_STATE(4138)] = 176133, + [SMALL_STATE(4139)] = 176157, + [SMALL_STATE(4140)] = 176181, + [SMALL_STATE(4141)] = 176197, + [SMALL_STATE(4142)] = 176223, + [SMALL_STATE(4143)] = 176249, + [SMALL_STATE(4144)] = 176275, + [SMALL_STATE(4145)] = 176301, + [SMALL_STATE(4146)] = 176327, + [SMALL_STATE(4147)] = 176351, + [SMALL_STATE(4148)] = 176377, + [SMALL_STATE(4149)] = 176403, + [SMALL_STATE(4150)] = 176429, + [SMALL_STATE(4151)] = 176455, + [SMALL_STATE(4152)] = 176481, + [SMALL_STATE(4153)] = 176507, + [SMALL_STATE(4154)] = 176533, + [SMALL_STATE(4155)] = 176551, + [SMALL_STATE(4156)] = 176577, + [SMALL_STATE(4157)] = 176595, + [SMALL_STATE(4158)] = 176621, + [SMALL_STATE(4159)] = 176643, + [SMALL_STATE(4160)] = 176663, + [SMALL_STATE(4161)] = 176685, + [SMALL_STATE(4162)] = 176711, + [SMALL_STATE(4163)] = 176737, + [SMALL_STATE(4164)] = 176763, + [SMALL_STATE(4165)] = 176789, + [SMALL_STATE(4166)] = 176807, + [SMALL_STATE(4167)] = 176833, + [SMALL_STATE(4168)] = 176859, + [SMALL_STATE(4169)] = 176885, + [SMALL_STATE(4170)] = 176911, + [SMALL_STATE(4171)] = 176935, + [SMALL_STATE(4172)] = 176961, + [SMALL_STATE(4173)] = 176987, + [SMALL_STATE(4174)] = 177013, + [SMALL_STATE(4175)] = 177039, + [SMALL_STATE(4176)] = 177053, + [SMALL_STATE(4177)] = 177071, + [SMALL_STATE(4178)] = 177097, + [SMALL_STATE(4179)] = 177123, + [SMALL_STATE(4180)] = 177149, + [SMALL_STATE(4181)] = 177171, + [SMALL_STATE(4182)] = 177197, + [SMALL_STATE(4183)] = 177223, + [SMALL_STATE(4184)] = 177241, + [SMALL_STATE(4185)] = 177267, + [SMALL_STATE(4186)] = 177293, + [SMALL_STATE(4187)] = 177319, + [SMALL_STATE(4188)] = 177345, + [SMALL_STATE(4189)] = 177371, + [SMALL_STATE(4190)] = 177397, + [SMALL_STATE(4191)] = 177423, + [SMALL_STATE(4192)] = 177449, + [SMALL_STATE(4193)] = 177475, + [SMALL_STATE(4194)] = 177501, + [SMALL_STATE(4195)] = 177527, + [SMALL_STATE(4196)] = 177545, + [SMALL_STATE(4197)] = 177569, + [SMALL_STATE(4198)] = 177593, + [SMALL_STATE(4199)] = 177617, + [SMALL_STATE(4200)] = 177641, + [SMALL_STATE(4201)] = 177665, + [SMALL_STATE(4202)] = 177689, + [SMALL_STATE(4203)] = 177715, + [SMALL_STATE(4204)] = 177739, + [SMALL_STATE(4205)] = 177765, + [SMALL_STATE(4206)] = 177791, + [SMALL_STATE(4207)] = 177815, + [SMALL_STATE(4208)] = 177841, + [SMALL_STATE(4209)] = 177863, + [SMALL_STATE(4210)] = 177881, + [SMALL_STATE(4211)] = 177903, + [SMALL_STATE(4212)] = 177927, + [SMALL_STATE(4213)] = 177951, + [SMALL_STATE(4214)] = 177967, + [SMALL_STATE(4215)] = 177993, + [SMALL_STATE(4216)] = 178015, + [SMALL_STATE(4217)] = 178039, + [SMALL_STATE(4218)] = 178063, + [SMALL_STATE(4219)] = 178076, + [SMALL_STATE(4220)] = 178091, + [SMALL_STATE(4221)] = 178112, + [SMALL_STATE(4222)] = 178129, + [SMALL_STATE(4223)] = 178150, + [SMALL_STATE(4224)] = 178167, + [SMALL_STATE(4225)] = 178184, + [SMALL_STATE(4226)] = 178205, + [SMALL_STATE(4227)] = 178226, + [SMALL_STATE(4228)] = 178241, + [SMALL_STATE(4229)] = 178258, + [SMALL_STATE(4230)] = 178281, + [SMALL_STATE(4231)] = 178302, + [SMALL_STATE(4232)] = 178325, + [SMALL_STATE(4233)] = 178346, + [SMALL_STATE(4234)] = 178367, + [SMALL_STATE(4235)] = 178380, + [SMALL_STATE(4236)] = 178401, + [SMALL_STATE(4237)] = 178422, + [SMALL_STATE(4238)] = 178445, + [SMALL_STATE(4239)] = 178462, + [SMALL_STATE(4240)] = 178479, + [SMALL_STATE(4241)] = 178496, + [SMALL_STATE(4242)] = 178519, + [SMALL_STATE(4243)] = 178540, + [SMALL_STATE(4244)] = 178555, + [SMALL_STATE(4245)] = 178578, + [SMALL_STATE(4246)] = 178599, + [SMALL_STATE(4247)] = 178612, + [SMALL_STATE(4248)] = 178635, + [SMALL_STATE(4249)] = 178658, + [SMALL_STATE(4250)] = 178681, + [SMALL_STATE(4251)] = 178696, + [SMALL_STATE(4252)] = 178711, + [SMALL_STATE(4253)] = 178732, + [SMALL_STATE(4254)] = 178749, + [SMALL_STATE(4255)] = 178772, + [SMALL_STATE(4256)] = 178789, + [SMALL_STATE(4257)] = 178806, + [SMALL_STATE(4258)] = 178823, + [SMALL_STATE(4259)] = 178844, + [SMALL_STATE(4260)] = 178865, + [SMALL_STATE(4261)] = 178888, + [SMALL_STATE(4262)] = 178911, + [SMALL_STATE(4263)] = 178934, + [SMALL_STATE(4264)] = 178951, + [SMALL_STATE(4265)] = 178968, + [SMALL_STATE(4266)] = 178983, + [SMALL_STATE(4267)] = 179006, + [SMALL_STATE(4268)] = 179027, + [SMALL_STATE(4269)] = 179050, + [SMALL_STATE(4270)] = 179065, + [SMALL_STATE(4271)] = 179082, + [SMALL_STATE(4272)] = 179095, + [SMALL_STATE(4273)] = 179112, + [SMALL_STATE(4274)] = 179129, + [SMALL_STATE(4275)] = 179150, + [SMALL_STATE(4276)] = 179165, + [SMALL_STATE(4277)] = 179178, + [SMALL_STATE(4278)] = 179201, + [SMALL_STATE(4279)] = 179218, + [SMALL_STATE(4280)] = 179239, + [SMALL_STATE(4281)] = 179252, + [SMALL_STATE(4282)] = 179271, + [SMALL_STATE(4283)] = 179288, + [SMALL_STATE(4284)] = 179309, + [SMALL_STATE(4285)] = 179330, + [SMALL_STATE(4286)] = 179347, + [SMALL_STATE(4287)] = 179364, + [SMALL_STATE(4288)] = 179385, + [SMALL_STATE(4289)] = 179398, + [SMALL_STATE(4290)] = 179421, + [SMALL_STATE(4291)] = 179442, + [SMALL_STATE(4292)] = 179459, + [SMALL_STATE(4293)] = 179480, + [SMALL_STATE(4294)] = 179501, + [SMALL_STATE(4295)] = 179518, + [SMALL_STATE(4296)] = 179535, + [SMALL_STATE(4297)] = 179558, + [SMALL_STATE(4298)] = 179579, + [SMALL_STATE(4299)] = 179602, + [SMALL_STATE(4300)] = 179623, + [SMALL_STATE(4301)] = 179644, + [SMALL_STATE(4302)] = 179665, + [SMALL_STATE(4303)] = 179682, + [SMALL_STATE(4304)] = 179695, + [SMALL_STATE(4305)] = 179708, + [SMALL_STATE(4306)] = 179731, + [SMALL_STATE(4307)] = 179752, + [SMALL_STATE(4308)] = 179773, + [SMALL_STATE(4309)] = 179794, + [SMALL_STATE(4310)] = 179815, + [SMALL_STATE(4311)] = 179828, + [SMALL_STATE(4312)] = 179849, + [SMALL_STATE(4313)] = 179870, + [SMALL_STATE(4314)] = 179891, + [SMALL_STATE(4315)] = 179904, + [SMALL_STATE(4316)] = 179917, + [SMALL_STATE(4317)] = 179938, + [SMALL_STATE(4318)] = 179955, + [SMALL_STATE(4319)] = 179976, + [SMALL_STATE(4320)] = 179999, + [SMALL_STATE(4321)] = 180020, + [SMALL_STATE(4322)] = 180041, + [SMALL_STATE(4323)] = 180064, + [SMALL_STATE(4324)] = 180083, + [SMALL_STATE(4325)] = 180100, + [SMALL_STATE(4326)] = 180115, + [SMALL_STATE(4327)] = 180132, + [SMALL_STATE(4328)] = 180149, + [SMALL_STATE(4329)] = 180170, + [SMALL_STATE(4330)] = 180193, + [SMALL_STATE(4331)] = 180216, + [SMALL_STATE(4332)] = 180233, + [SMALL_STATE(4333)] = 180250, + [SMALL_STATE(4334)] = 180267, + [SMALL_STATE(4335)] = 180284, + [SMALL_STATE(4336)] = 180305, + [SMALL_STATE(4337)] = 180326, + [SMALL_STATE(4338)] = 180343, + [SMALL_STATE(4339)] = 180364, + [SMALL_STATE(4340)] = 180377, + [SMALL_STATE(4341)] = 180394, + [SMALL_STATE(4342)] = 180415, + [SMALL_STATE(4343)] = 180436, + [SMALL_STATE(4344)] = 180455, + [SMALL_STATE(4345)] = 180472, + [SMALL_STATE(4346)] = 180487, + [SMALL_STATE(4347)] = 180508, + [SMALL_STATE(4348)] = 180529, + [SMALL_STATE(4349)] = 180550, + [SMALL_STATE(4350)] = 180571, + [SMALL_STATE(4351)] = 180592, + [SMALL_STATE(4352)] = 180613, + [SMALL_STATE(4353)] = 180636, + [SMALL_STATE(4354)] = 180653, + [SMALL_STATE(4355)] = 180674, + [SMALL_STATE(4356)] = 180691, + [SMALL_STATE(4357)] = 180709, + [SMALL_STATE(4358)] = 180729, + [SMALL_STATE(4359)] = 180741, + [SMALL_STATE(4360)] = 180753, + [SMALL_STATE(4361)] = 180771, + [SMALL_STATE(4362)] = 180789, + [SMALL_STATE(4363)] = 180805, + [SMALL_STATE(4364)] = 180825, + [SMALL_STATE(4365)] = 180845, + [SMALL_STATE(4366)] = 180857, + [SMALL_STATE(4367)] = 180869, + [SMALL_STATE(4368)] = 180889, + [SMALL_STATE(4369)] = 180909, + [SMALL_STATE(4370)] = 180925, + [SMALL_STATE(4371)] = 180941, + [SMALL_STATE(4372)] = 180957, + [SMALL_STATE(4373)] = 180971, + [SMALL_STATE(4374)] = 180987, + [SMALL_STATE(4375)] = 180999, + [SMALL_STATE(4376)] = 181019, + [SMALL_STATE(4377)] = 181039, + [SMALL_STATE(4378)] = 181059, + [SMALL_STATE(4379)] = 181079, + [SMALL_STATE(4380)] = 181099, + [SMALL_STATE(4381)] = 181111, + [SMALL_STATE(4382)] = 181127, + [SMALL_STATE(4383)] = 181139, + [SMALL_STATE(4384)] = 181159, + [SMALL_STATE(4385)] = 181177, + [SMALL_STATE(4386)] = 181189, + [SMALL_STATE(4387)] = 181209, + [SMALL_STATE(4388)] = 181229, + [SMALL_STATE(4389)] = 181241, + [SMALL_STATE(4390)] = 181253, + [SMALL_STATE(4391)] = 181273, + [SMALL_STATE(4392)] = 181293, + [SMALL_STATE(4393)] = 181305, + [SMALL_STATE(4394)] = 181317, + [SMALL_STATE(4395)] = 181337, + [SMALL_STATE(4396)] = 181357, + [SMALL_STATE(4397)] = 181375, + [SMALL_STATE(4398)] = 181395, + [SMALL_STATE(4399)] = 181411, + [SMALL_STATE(4400)] = 181423, + [SMALL_STATE(4401)] = 181443, + [SMALL_STATE(4402)] = 181459, + [SMALL_STATE(4403)] = 181479, + [SMALL_STATE(4404)] = 181499, + [SMALL_STATE(4405)] = 181515, + [SMALL_STATE(4406)] = 181527, + [SMALL_STATE(4407)] = 181547, + [SMALL_STATE(4408)] = 181567, + [SMALL_STATE(4409)] = 181587, + [SMALL_STATE(4410)] = 181605, + [SMALL_STATE(4411)] = 181617, + [SMALL_STATE(4412)] = 181637, + [SMALL_STATE(4413)] = 181653, + [SMALL_STATE(4414)] = 181673, + [SMALL_STATE(4415)] = 181691, + [SMALL_STATE(4416)] = 181711, + [SMALL_STATE(4417)] = 181725, + [SMALL_STATE(4418)] = 181745, + [SMALL_STATE(4419)] = 181765, + [SMALL_STATE(4420)] = 181781, + [SMALL_STATE(4421)] = 181801, + [SMALL_STATE(4422)] = 181821, + [SMALL_STATE(4423)] = 181833, + [SMALL_STATE(4424)] = 181853, + [SMALL_STATE(4425)] = 181873, + [SMALL_STATE(4426)] = 181885, + [SMALL_STATE(4427)] = 181901, + [SMALL_STATE(4428)] = 181921, + [SMALL_STATE(4429)] = 181933, + [SMALL_STATE(4430)] = 181945, + [SMALL_STATE(4431)] = 181965, + [SMALL_STATE(4432)] = 181977, + [SMALL_STATE(4433)] = 181997, + [SMALL_STATE(4434)] = 182009, + [SMALL_STATE(4435)] = 182029, + [SMALL_STATE(4436)] = 182047, + [SMALL_STATE(4437)] = 182067, + [SMALL_STATE(4438)] = 182087, + [SMALL_STATE(4439)] = 182107, + [SMALL_STATE(4440)] = 182127, + [SMALL_STATE(4441)] = 182139, + [SMALL_STATE(4442)] = 182159, + [SMALL_STATE(4443)] = 182179, + [SMALL_STATE(4444)] = 182191, + [SMALL_STATE(4445)] = 182211, + [SMALL_STATE(4446)] = 182231, + [SMALL_STATE(4447)] = 182251, + [SMALL_STATE(4448)] = 182269, + [SMALL_STATE(4449)] = 182287, + [SMALL_STATE(4450)] = 182299, + [SMALL_STATE(4451)] = 182319, + [SMALL_STATE(4452)] = 182339, + [SMALL_STATE(4453)] = 182351, + [SMALL_STATE(4454)] = 182363, + [SMALL_STATE(4455)] = 182383, + [SMALL_STATE(4456)] = 182403, + [SMALL_STATE(4457)] = 182423, + [SMALL_STATE(4458)] = 182443, + [SMALL_STATE(4459)] = 182463, + [SMALL_STATE(4460)] = 182483, + [SMALL_STATE(4461)] = 182503, + [SMALL_STATE(4462)] = 182523, + [SMALL_STATE(4463)] = 182543, + [SMALL_STATE(4464)] = 182555, + [SMALL_STATE(4465)] = 182575, + [SMALL_STATE(4466)] = 182595, + [SMALL_STATE(4467)] = 182615, + [SMALL_STATE(4468)] = 182627, + [SMALL_STATE(4469)] = 182643, + [SMALL_STATE(4470)] = 182663, + [SMALL_STATE(4471)] = 182683, + [SMALL_STATE(4472)] = 182695, + [SMALL_STATE(4473)] = 182715, + [SMALL_STATE(4474)] = 182727, + [SMALL_STATE(4475)] = 182747, + [SMALL_STATE(4476)] = 182763, + [SMALL_STATE(4477)] = 182779, + [SMALL_STATE(4478)] = 182799, + [SMALL_STATE(4479)] = 182813, + [SMALL_STATE(4480)] = 182833, + [SMALL_STATE(4481)] = 182845, + [SMALL_STATE(4482)] = 182863, + [SMALL_STATE(4483)] = 182875, + [SMALL_STATE(4484)] = 182895, + [SMALL_STATE(4485)] = 182915, + [SMALL_STATE(4486)] = 182931, + [SMALL_STATE(4487)] = 182951, + [SMALL_STATE(4488)] = 182969, + [SMALL_STATE(4489)] = 182989, + [SMALL_STATE(4490)] = 183001, + [SMALL_STATE(4491)] = 183019, + [SMALL_STATE(4492)] = 183035, + [SMALL_STATE(4493)] = 183053, + [SMALL_STATE(4494)] = 183065, + [SMALL_STATE(4495)] = 183085, + [SMALL_STATE(4496)] = 183105, + [SMALL_STATE(4497)] = 183125, + [SMALL_STATE(4498)] = 183145, + [SMALL_STATE(4499)] = 183165, + [SMALL_STATE(4500)] = 183177, + [SMALL_STATE(4501)] = 183191, + [SMALL_STATE(4502)] = 183207, + [SMALL_STATE(4503)] = 183227, + [SMALL_STATE(4504)] = 183245, + [SMALL_STATE(4505)] = 183259, + [SMALL_STATE(4506)] = 183271, + [SMALL_STATE(4507)] = 183291, + [SMALL_STATE(4508)] = 183303, + [SMALL_STATE(4509)] = 183315, + [SMALL_STATE(4510)] = 183327, + [SMALL_STATE(4511)] = 183339, + [SMALL_STATE(4512)] = 183359, + [SMALL_STATE(4513)] = 183379, + [SMALL_STATE(4514)] = 183399, + [SMALL_STATE(4515)] = 183411, + [SMALL_STATE(4516)] = 183431, + [SMALL_STATE(4517)] = 183443, + [SMALL_STATE(4518)] = 183463, + [SMALL_STATE(4519)] = 183483, + [SMALL_STATE(4520)] = 183503, + [SMALL_STATE(4521)] = 183523, + [SMALL_STATE(4522)] = 183543, + [SMALL_STATE(4523)] = 183555, + [SMALL_STATE(4524)] = 183575, + [SMALL_STATE(4525)] = 183587, + [SMALL_STATE(4526)] = 183607, + [SMALL_STATE(4527)] = 183623, + [SMALL_STATE(4528)] = 183641, + [SMALL_STATE(4529)] = 183659, + [SMALL_STATE(4530)] = 183679, + [SMALL_STATE(4531)] = 183691, + [SMALL_STATE(4532)] = 183711, + [SMALL_STATE(4533)] = 183723, + [SMALL_STATE(4534)] = 183735, + [SMALL_STATE(4535)] = 183755, + [SMALL_STATE(4536)] = 183767, + [SMALL_STATE(4537)] = 183779, + [SMALL_STATE(4538)] = 183791, + [SMALL_STATE(4539)] = 183805, + [SMALL_STATE(4540)] = 183823, + [SMALL_STATE(4541)] = 183841, + [SMALL_STATE(4542)] = 183861, + [SMALL_STATE(4543)] = 183881, + [SMALL_STATE(4544)] = 183892, + [SMALL_STATE(4545)] = 183903, + [SMALL_STATE(4546)] = 183914, + [SMALL_STATE(4547)] = 183931, + [SMALL_STATE(4548)] = 183942, + [SMALL_STATE(4549)] = 183959, + [SMALL_STATE(4550)] = 183974, + [SMALL_STATE(4551)] = 183985, + [SMALL_STATE(4552)] = 184002, + [SMALL_STATE(4553)] = 184013, + [SMALL_STATE(4554)] = 184024, + [SMALL_STATE(4555)] = 184041, + [SMALL_STATE(4556)] = 184056, + [SMALL_STATE(4557)] = 184067, + [SMALL_STATE(4558)] = 184078, + [SMALL_STATE(4559)] = 184089, + [SMALL_STATE(4560)] = 184100, + [SMALL_STATE(4561)] = 184111, + [SMALL_STATE(4562)] = 184126, + [SMALL_STATE(4563)] = 184143, + [SMALL_STATE(4564)] = 184154, + [SMALL_STATE(4565)] = 184171, + [SMALL_STATE(4566)] = 184188, + [SMALL_STATE(4567)] = 184199, + [SMALL_STATE(4568)] = 184214, + [SMALL_STATE(4569)] = 184231, + [SMALL_STATE(4570)] = 184248, + [SMALL_STATE(4571)] = 184265, + [SMALL_STATE(4572)] = 184278, + [SMALL_STATE(4573)] = 184295, + [SMALL_STATE(4574)] = 184312, + [SMALL_STATE(4575)] = 184329, + [SMALL_STATE(4576)] = 184346, + [SMALL_STATE(4577)] = 184361, + [SMALL_STATE(4578)] = 184372, + [SMALL_STATE(4579)] = 184383, + [SMALL_STATE(4580)] = 184394, + [SMALL_STATE(4581)] = 184411, + [SMALL_STATE(4582)] = 184428, + [SMALL_STATE(4583)] = 184439, + [SMALL_STATE(4584)] = 184454, + [SMALL_STATE(4585)] = 184471, + [SMALL_STATE(4586)] = 184482, + [SMALL_STATE(4587)] = 184497, + [SMALL_STATE(4588)] = 184508, + [SMALL_STATE(4589)] = 184525, + [SMALL_STATE(4590)] = 184540, + [SMALL_STATE(4591)] = 184551, + [SMALL_STATE(4592)] = 184562, + [SMALL_STATE(4593)] = 184573, + [SMALL_STATE(4594)] = 184584, + [SMALL_STATE(4595)] = 184599, + [SMALL_STATE(4596)] = 184610, + [SMALL_STATE(4597)] = 184621, + [SMALL_STATE(4598)] = 184632, + [SMALL_STATE(4599)] = 184649, + [SMALL_STATE(4600)] = 184660, + [SMALL_STATE(4601)] = 184677, + [SMALL_STATE(4602)] = 184694, + [SMALL_STATE(4603)] = 184709, + [SMALL_STATE(4604)] = 184720, + [SMALL_STATE(4605)] = 184731, + [SMALL_STATE(4606)] = 184742, + [SMALL_STATE(4607)] = 184757, + [SMALL_STATE(4608)] = 184768, + [SMALL_STATE(4609)] = 184779, + [SMALL_STATE(4610)] = 184790, + [SMALL_STATE(4611)] = 184801, + [SMALL_STATE(4612)] = 184812, + [SMALL_STATE(4613)] = 184823, + [SMALL_STATE(4614)] = 184834, + [SMALL_STATE(4615)] = 184845, + [SMALL_STATE(4616)] = 184862, + [SMALL_STATE(4617)] = 184873, + [SMALL_STATE(4618)] = 184884, + [SMALL_STATE(4619)] = 184901, + [SMALL_STATE(4620)] = 184916, + [SMALL_STATE(4621)] = 184931, + [SMALL_STATE(4622)] = 184946, + [SMALL_STATE(4623)] = 184957, + [SMALL_STATE(4624)] = 184968, + [SMALL_STATE(4625)] = 184979, + [SMALL_STATE(4626)] = 184996, + [SMALL_STATE(4627)] = 185013, + [SMALL_STATE(4628)] = 185028, + [SMALL_STATE(4629)] = 185039, + [SMALL_STATE(4630)] = 185054, + [SMALL_STATE(4631)] = 185071, + [SMALL_STATE(4632)] = 185086, + [SMALL_STATE(4633)] = 185097, + [SMALL_STATE(4634)] = 185108, + [SMALL_STATE(4635)] = 185119, + [SMALL_STATE(4636)] = 185134, + [SMALL_STATE(4637)] = 185147, + [SMALL_STATE(4638)] = 185164, + [SMALL_STATE(4639)] = 185175, + [SMALL_STATE(4640)] = 185192, + [SMALL_STATE(4641)] = 185207, + [SMALL_STATE(4642)] = 185222, + [SMALL_STATE(4643)] = 185235, + [SMALL_STATE(4644)] = 185250, + [SMALL_STATE(4645)] = 185265, + [SMALL_STATE(4646)] = 185280, + [SMALL_STATE(4647)] = 185295, + [SMALL_STATE(4648)] = 185306, + [SMALL_STATE(4649)] = 185317, + [SMALL_STATE(4650)] = 185334, + [SMALL_STATE(4651)] = 185345, + [SMALL_STATE(4652)] = 185356, + [SMALL_STATE(4653)] = 185373, + [SMALL_STATE(4654)] = 185384, + [SMALL_STATE(4655)] = 185401, + [SMALL_STATE(4656)] = 185414, + [SMALL_STATE(4657)] = 185425, + [SMALL_STATE(4658)] = 185442, + [SMALL_STATE(4659)] = 185459, + [SMALL_STATE(4660)] = 185470, + [SMALL_STATE(4661)] = 185485, + [SMALL_STATE(4662)] = 185496, + [SMALL_STATE(4663)] = 185511, + [SMALL_STATE(4664)] = 185526, + [SMALL_STATE(4665)] = 185541, + [SMALL_STATE(4666)] = 185558, + [SMALL_STATE(4667)] = 185573, + [SMALL_STATE(4668)] = 185590, + [SMALL_STATE(4669)] = 185601, + [SMALL_STATE(4670)] = 185616, + [SMALL_STATE(4671)] = 185633, + [SMALL_STATE(4672)] = 185650, + [SMALL_STATE(4673)] = 185665, + [SMALL_STATE(4674)] = 185682, + [SMALL_STATE(4675)] = 185699, + [SMALL_STATE(4676)] = 185710, + [SMALL_STATE(4677)] = 185727, + [SMALL_STATE(4678)] = 185738, + [SMALL_STATE(4679)] = 185749, + [SMALL_STATE(4680)] = 185766, + [SMALL_STATE(4681)] = 185777, + [SMALL_STATE(4682)] = 185792, + [SMALL_STATE(4683)] = 185803, + [SMALL_STATE(4684)] = 185814, + [SMALL_STATE(4685)] = 185829, + [SMALL_STATE(4686)] = 185840, + [SMALL_STATE(4687)] = 185851, + [SMALL_STATE(4688)] = 185862, + [SMALL_STATE(4689)] = 185873, + [SMALL_STATE(4690)] = 185884, + [SMALL_STATE(4691)] = 185895, + [SMALL_STATE(4692)] = 185906, + [SMALL_STATE(4693)] = 185917, + [SMALL_STATE(4694)] = 185928, + [SMALL_STATE(4695)] = 185943, + [SMALL_STATE(4696)] = 185960, + [SMALL_STATE(4697)] = 185971, + [SMALL_STATE(4698)] = 185982, + [SMALL_STATE(4699)] = 185993, + [SMALL_STATE(4700)] = 186004, + [SMALL_STATE(4701)] = 186019, + [SMALL_STATE(4702)] = 186036, + [SMALL_STATE(4703)] = 186051, + [SMALL_STATE(4704)] = 186062, + [SMALL_STATE(4705)] = 186079, + [SMALL_STATE(4706)] = 186090, + [SMALL_STATE(4707)] = 186105, + [SMALL_STATE(4708)] = 186122, + [SMALL_STATE(4709)] = 186139, + [SMALL_STATE(4710)] = 186152, + [SMALL_STATE(4711)] = 186169, + [SMALL_STATE(4712)] = 186184, + [SMALL_STATE(4713)] = 186199, + [SMALL_STATE(4714)] = 186214, + [SMALL_STATE(4715)] = 186225, + [SMALL_STATE(4716)] = 186236, + [SMALL_STATE(4717)] = 186250, + [SMALL_STATE(4718)] = 186264, + [SMALL_STATE(4719)] = 186278, + [SMALL_STATE(4720)] = 186292, + [SMALL_STATE(4721)] = 186304, + [SMALL_STATE(4722)] = 186318, + [SMALL_STATE(4723)] = 186332, + [SMALL_STATE(4724)] = 186346, + [SMALL_STATE(4725)] = 186356, + [SMALL_STATE(4726)] = 186370, + [SMALL_STATE(4727)] = 186384, + [SMALL_STATE(4728)] = 186398, + [SMALL_STATE(4729)] = 186412, + [SMALL_STATE(4730)] = 186426, + [SMALL_STATE(4731)] = 186440, + [SMALL_STATE(4732)] = 186454, + [SMALL_STATE(4733)] = 186468, + [SMALL_STATE(4734)] = 186482, + [SMALL_STATE(4735)] = 186496, + [SMALL_STATE(4736)] = 186510, + [SMALL_STATE(4737)] = 186524, + [SMALL_STATE(4738)] = 186538, + [SMALL_STATE(4739)] = 186552, + [SMALL_STATE(4740)] = 186566, + [SMALL_STATE(4741)] = 186580, + [SMALL_STATE(4742)] = 186594, + [SMALL_STATE(4743)] = 186608, + [SMALL_STATE(4744)] = 186622, + [SMALL_STATE(4745)] = 186636, + [SMALL_STATE(4746)] = 186650, + [SMALL_STATE(4747)] = 186664, + [SMALL_STATE(4748)] = 186678, + [SMALL_STATE(4749)] = 186692, + [SMALL_STATE(4750)] = 186706, + [SMALL_STATE(4751)] = 186720, + [SMALL_STATE(4752)] = 186732, + [SMALL_STATE(4753)] = 186746, + [SMALL_STATE(4754)] = 186760, + [SMALL_STATE(4755)] = 186774, + [SMALL_STATE(4756)] = 186788, + [SMALL_STATE(4757)] = 186802, + [SMALL_STATE(4758)] = 186816, + [SMALL_STATE(4759)] = 186830, + [SMALL_STATE(4760)] = 186844, + [SMALL_STATE(4761)] = 186858, + [SMALL_STATE(4762)] = 186872, + [SMALL_STATE(4763)] = 186886, + [SMALL_STATE(4764)] = 186900, + [SMALL_STATE(4765)] = 186914, + [SMALL_STATE(4766)] = 186928, + [SMALL_STATE(4767)] = 186942, + [SMALL_STATE(4768)] = 186956, + [SMALL_STATE(4769)] = 186970, + [SMALL_STATE(4770)] = 186984, + [SMALL_STATE(4771)] = 186998, + [SMALL_STATE(4772)] = 187010, + [SMALL_STATE(4773)] = 187024, + [SMALL_STATE(4774)] = 187038, + [SMALL_STATE(4775)] = 187052, + [SMALL_STATE(4776)] = 187066, + [SMALL_STATE(4777)] = 187080, + [SMALL_STATE(4778)] = 187092, + [SMALL_STATE(4779)] = 187106, + [SMALL_STATE(4780)] = 187120, + [SMALL_STATE(4781)] = 187134, + [SMALL_STATE(4782)] = 187148, + [SMALL_STATE(4783)] = 187162, + [SMALL_STATE(4784)] = 187176, + [SMALL_STATE(4785)] = 187190, + [SMALL_STATE(4786)] = 187204, + [SMALL_STATE(4787)] = 187218, + [SMALL_STATE(4788)] = 187232, + [SMALL_STATE(4789)] = 187246, + [SMALL_STATE(4790)] = 187260, + [SMALL_STATE(4791)] = 187274, + [SMALL_STATE(4792)] = 187286, + [SMALL_STATE(4793)] = 187300, + [SMALL_STATE(4794)] = 187314, + [SMALL_STATE(4795)] = 187328, + [SMALL_STATE(4796)] = 187342, + [SMALL_STATE(4797)] = 187356, + [SMALL_STATE(4798)] = 187370, + [SMALL_STATE(4799)] = 187384, + [SMALL_STATE(4800)] = 187398, + [SMALL_STATE(4801)] = 187412, + [SMALL_STATE(4802)] = 187426, + [SMALL_STATE(4803)] = 187440, + [SMALL_STATE(4804)] = 187454, + [SMALL_STATE(4805)] = 187468, + [SMALL_STATE(4806)] = 187482, + [SMALL_STATE(4807)] = 187496, + [SMALL_STATE(4808)] = 187510, + [SMALL_STATE(4809)] = 187524, + [SMALL_STATE(4810)] = 187538, + [SMALL_STATE(4811)] = 187552, + [SMALL_STATE(4812)] = 187566, + [SMALL_STATE(4813)] = 187580, + [SMALL_STATE(4814)] = 187594, + [SMALL_STATE(4815)] = 187608, + [SMALL_STATE(4816)] = 187622, + [SMALL_STATE(4817)] = 187636, + [SMALL_STATE(4818)] = 187650, + [SMALL_STATE(4819)] = 187664, + [SMALL_STATE(4820)] = 187678, + [SMALL_STATE(4821)] = 187688, + [SMALL_STATE(4822)] = 187700, + [SMALL_STATE(4823)] = 187714, + [SMALL_STATE(4824)] = 187728, + [SMALL_STATE(4825)] = 187742, + [SMALL_STATE(4826)] = 187756, + [SMALL_STATE(4827)] = 187770, + [SMALL_STATE(4828)] = 187784, + [SMALL_STATE(4829)] = 187798, + [SMALL_STATE(4830)] = 187812, + [SMALL_STATE(4831)] = 187826, + [SMALL_STATE(4832)] = 187840, + [SMALL_STATE(4833)] = 187854, + [SMALL_STATE(4834)] = 187868, + [SMALL_STATE(4835)] = 187882, + [SMALL_STATE(4836)] = 187896, + [SMALL_STATE(4837)] = 187910, + [SMALL_STATE(4838)] = 187924, + [SMALL_STATE(4839)] = 187938, + [SMALL_STATE(4840)] = 187952, + [SMALL_STATE(4841)] = 187966, + [SMALL_STATE(4842)] = 187976, + [SMALL_STATE(4843)] = 187990, + [SMALL_STATE(4844)] = 188004, + [SMALL_STATE(4845)] = 188016, + [SMALL_STATE(4846)] = 188030, + [SMALL_STATE(4847)] = 188042, + [SMALL_STATE(4848)] = 188056, + [SMALL_STATE(4849)] = 188070, + [SMALL_STATE(4850)] = 188084, + [SMALL_STATE(4851)] = 188098, + [SMALL_STATE(4852)] = 188110, + [SMALL_STATE(4853)] = 188124, + [SMALL_STATE(4854)] = 188138, + [SMALL_STATE(4855)] = 188152, + [SMALL_STATE(4856)] = 188164, + [SMALL_STATE(4857)] = 188178, + [SMALL_STATE(4858)] = 188192, + [SMALL_STATE(4859)] = 188206, + [SMALL_STATE(4860)] = 188218, + [SMALL_STATE(4861)] = 188232, + [SMALL_STATE(4862)] = 188246, + [SMALL_STATE(4863)] = 188260, + [SMALL_STATE(4864)] = 188272, + [SMALL_STATE(4865)] = 188286, + [SMALL_STATE(4866)] = 188300, + [SMALL_STATE(4867)] = 188314, + [SMALL_STATE(4868)] = 188328, + [SMALL_STATE(4869)] = 188342, + [SMALL_STATE(4870)] = 188356, + [SMALL_STATE(4871)] = 188370, + [SMALL_STATE(4872)] = 188384, + [SMALL_STATE(4873)] = 188398, + [SMALL_STATE(4874)] = 188410, + [SMALL_STATE(4875)] = 188424, + [SMALL_STATE(4876)] = 188438, + [SMALL_STATE(4877)] = 188452, + [SMALL_STATE(4878)] = 188466, + [SMALL_STATE(4879)] = 188480, + [SMALL_STATE(4880)] = 188494, + [SMALL_STATE(4881)] = 188508, + [SMALL_STATE(4882)] = 188522, + [SMALL_STATE(4883)] = 188536, + [SMALL_STATE(4884)] = 188550, + [SMALL_STATE(4885)] = 188564, + [SMALL_STATE(4886)] = 188578, + [SMALL_STATE(4887)] = 188592, + [SMALL_STATE(4888)] = 188606, + [SMALL_STATE(4889)] = 188620, + [SMALL_STATE(4890)] = 188632, + [SMALL_STATE(4891)] = 188642, + [SMALL_STATE(4892)] = 188656, + [SMALL_STATE(4893)] = 188666, + [SMALL_STATE(4894)] = 188680, + [SMALL_STATE(4895)] = 188694, + [SMALL_STATE(4896)] = 188708, + [SMALL_STATE(4897)] = 188722, + [SMALL_STATE(4898)] = 188736, + [SMALL_STATE(4899)] = 188750, + [SMALL_STATE(4900)] = 188764, + [SMALL_STATE(4901)] = 188778, + [SMALL_STATE(4902)] = 188792, + [SMALL_STATE(4903)] = 188806, + [SMALL_STATE(4904)] = 188820, + [SMALL_STATE(4905)] = 188834, + [SMALL_STATE(4906)] = 188848, + [SMALL_STATE(4907)] = 188862, + [SMALL_STATE(4908)] = 188874, + [SMALL_STATE(4909)] = 188888, + [SMALL_STATE(4910)] = 188902, + [SMALL_STATE(4911)] = 188916, + [SMALL_STATE(4912)] = 188930, + [SMALL_STATE(4913)] = 188944, + [SMALL_STATE(4914)] = 188958, + [SMALL_STATE(4915)] = 188972, + [SMALL_STATE(4916)] = 188986, + [SMALL_STATE(4917)] = 189000, + [SMALL_STATE(4918)] = 189014, + [SMALL_STATE(4919)] = 189028, + [SMALL_STATE(4920)] = 189042, + [SMALL_STATE(4921)] = 189056, + [SMALL_STATE(4922)] = 189070, + [SMALL_STATE(4923)] = 189084, + [SMALL_STATE(4924)] = 189098, + [SMALL_STATE(4925)] = 189112, + [SMALL_STATE(4926)] = 189126, + [SMALL_STATE(4927)] = 189140, + [SMALL_STATE(4928)] = 189154, + [SMALL_STATE(4929)] = 189168, + [SMALL_STATE(4930)] = 189182, + [SMALL_STATE(4931)] = 189196, + [SMALL_STATE(4932)] = 189210, + [SMALL_STATE(4933)] = 189224, + [SMALL_STATE(4934)] = 189238, + [SMALL_STATE(4935)] = 189250, + [SMALL_STATE(4936)] = 189264, + [SMALL_STATE(4937)] = 189278, + [SMALL_STATE(4938)] = 189292, + [SMALL_STATE(4939)] = 189306, + [SMALL_STATE(4940)] = 189320, + [SMALL_STATE(4941)] = 189334, + [SMALL_STATE(4942)] = 189346, + [SMALL_STATE(4943)] = 189358, + [SMALL_STATE(4944)] = 189372, + [SMALL_STATE(4945)] = 189384, + [SMALL_STATE(4946)] = 189398, + [SMALL_STATE(4947)] = 189412, + [SMALL_STATE(4948)] = 189426, + [SMALL_STATE(4949)] = 189440, + [SMALL_STATE(4950)] = 189454, + [SMALL_STATE(4951)] = 189468, + [SMALL_STATE(4952)] = 189482, + [SMALL_STATE(4953)] = 189496, + [SMALL_STATE(4954)] = 189510, + [SMALL_STATE(4955)] = 189524, + [SMALL_STATE(4956)] = 189538, + [SMALL_STATE(4957)] = 189552, + [SMALL_STATE(4958)] = 189566, + [SMALL_STATE(4959)] = 189580, + [SMALL_STATE(4960)] = 189594, + [SMALL_STATE(4961)] = 189608, + [SMALL_STATE(4962)] = 189622, + [SMALL_STATE(4963)] = 189636, + [SMALL_STATE(4964)] = 189650, + [SMALL_STATE(4965)] = 189664, + [SMALL_STATE(4966)] = 189678, + [SMALL_STATE(4967)] = 189692, + [SMALL_STATE(4968)] = 189706, + [SMALL_STATE(4969)] = 189720, + [SMALL_STATE(4970)] = 189734, + [SMALL_STATE(4971)] = 189748, + [SMALL_STATE(4972)] = 189762, + [SMALL_STATE(4973)] = 189772, + [SMALL_STATE(4974)] = 189786, + [SMALL_STATE(4975)] = 189800, + [SMALL_STATE(4976)] = 189814, + [SMALL_STATE(4977)] = 189828, + [SMALL_STATE(4978)] = 189842, + [SMALL_STATE(4979)] = 189856, + [SMALL_STATE(4980)] = 189870, + [SMALL_STATE(4981)] = 189884, + [SMALL_STATE(4982)] = 189898, + [SMALL_STATE(4983)] = 189912, + [SMALL_STATE(4984)] = 189926, + [SMALL_STATE(4985)] = 189940, + [SMALL_STATE(4986)] = 189954, + [SMALL_STATE(4987)] = 189968, + [SMALL_STATE(4988)] = 189982, + [SMALL_STATE(4989)] = 189996, + [SMALL_STATE(4990)] = 190010, + [SMALL_STATE(4991)] = 190024, + [SMALL_STATE(4992)] = 190038, + [SMALL_STATE(4993)] = 190052, + [SMALL_STATE(4994)] = 190066, + [SMALL_STATE(4995)] = 190080, + [SMALL_STATE(4996)] = 190094, + [SMALL_STATE(4997)] = 190108, + [SMALL_STATE(4998)] = 190122, + [SMALL_STATE(4999)] = 190136, + [SMALL_STATE(5000)] = 190150, + [SMALL_STATE(5001)] = 190160, + [SMALL_STATE(5002)] = 190174, + [SMALL_STATE(5003)] = 190188, + [SMALL_STATE(5004)] = 190202, + [SMALL_STATE(5005)] = 190216, + [SMALL_STATE(5006)] = 190230, + [SMALL_STATE(5007)] = 190244, + [SMALL_STATE(5008)] = 190258, + [SMALL_STATE(5009)] = 190272, + [SMALL_STATE(5010)] = 190286, + [SMALL_STATE(5011)] = 190300, + [SMALL_STATE(5012)] = 190314, + [SMALL_STATE(5013)] = 190328, + [SMALL_STATE(5014)] = 190342, + [SMALL_STATE(5015)] = 190356, + [SMALL_STATE(5016)] = 190370, + [SMALL_STATE(5017)] = 190384, + [SMALL_STATE(5018)] = 190398, + [SMALL_STATE(5019)] = 190412, + [SMALL_STATE(5020)] = 190426, + [SMALL_STATE(5021)] = 190440, + [SMALL_STATE(5022)] = 190454, + [SMALL_STATE(5023)] = 190468, + [SMALL_STATE(5024)] = 190482, + [SMALL_STATE(5025)] = 190496, + [SMALL_STATE(5026)] = 190510, + [SMALL_STATE(5027)] = 190524, + [SMALL_STATE(5028)] = 190538, + [SMALL_STATE(5029)] = 190552, + [SMALL_STATE(5030)] = 190566, + [SMALL_STATE(5031)] = 190580, + [SMALL_STATE(5032)] = 190594, + [SMALL_STATE(5033)] = 190608, + [SMALL_STATE(5034)] = 190622, + [SMALL_STATE(5035)] = 190636, + [SMALL_STATE(5036)] = 190650, + [SMALL_STATE(5037)] = 190664, + [SMALL_STATE(5038)] = 190678, + [SMALL_STATE(5039)] = 190692, + [SMALL_STATE(5040)] = 190706, + [SMALL_STATE(5041)] = 190720, + [SMALL_STATE(5042)] = 190734, + [SMALL_STATE(5043)] = 190748, + [SMALL_STATE(5044)] = 190762, + [SMALL_STATE(5045)] = 190776, + [SMALL_STATE(5046)] = 190790, + [SMALL_STATE(5047)] = 190804, + [SMALL_STATE(5048)] = 190818, + [SMALL_STATE(5049)] = 190832, + [SMALL_STATE(5050)] = 190846, + [SMALL_STATE(5051)] = 190860, + [SMALL_STATE(5052)] = 190874, + [SMALL_STATE(5053)] = 190888, + [SMALL_STATE(5054)] = 190902, + [SMALL_STATE(5055)] = 190916, + [SMALL_STATE(5056)] = 190930, + [SMALL_STATE(5057)] = 190944, + [SMALL_STATE(5058)] = 190958, + [SMALL_STATE(5059)] = 190972, + [SMALL_STATE(5060)] = 190986, + [SMALL_STATE(5061)] = 191000, + [SMALL_STATE(5062)] = 191014, + [SMALL_STATE(5063)] = 191028, + [SMALL_STATE(5064)] = 191042, + [SMALL_STATE(5065)] = 191056, + [SMALL_STATE(5066)] = 191070, + [SMALL_STATE(5067)] = 191084, + [SMALL_STATE(5068)] = 191098, + [SMALL_STATE(5069)] = 191112, + [SMALL_STATE(5070)] = 191126, + [SMALL_STATE(5071)] = 191140, + [SMALL_STATE(5072)] = 191154, + [SMALL_STATE(5073)] = 191168, + [SMALL_STATE(5074)] = 191182, + [SMALL_STATE(5075)] = 191196, + [SMALL_STATE(5076)] = 191210, + [SMALL_STATE(5077)] = 191224, + [SMALL_STATE(5078)] = 191238, + [SMALL_STATE(5079)] = 191252, + [SMALL_STATE(5080)] = 191266, + [SMALL_STATE(5081)] = 191280, + [SMALL_STATE(5082)] = 191292, + [SMALL_STATE(5083)] = 191306, + [SMALL_STATE(5084)] = 191320, + [SMALL_STATE(5085)] = 191334, + [SMALL_STATE(5086)] = 191348, + [SMALL_STATE(5087)] = 191362, + [SMALL_STATE(5088)] = 191376, + [SMALL_STATE(5089)] = 191390, + [SMALL_STATE(5090)] = 191404, + [SMALL_STATE(5091)] = 191418, + [SMALL_STATE(5092)] = 191432, + [SMALL_STATE(5093)] = 191446, + [SMALL_STATE(5094)] = 191458, + [SMALL_STATE(5095)] = 191472, + [SMALL_STATE(5096)] = 191486, + [SMALL_STATE(5097)] = 191500, + [SMALL_STATE(5098)] = 191514, + [SMALL_STATE(5099)] = 191528, + [SMALL_STATE(5100)] = 191542, + [SMALL_STATE(5101)] = 191556, + [SMALL_STATE(5102)] = 191570, + [SMALL_STATE(5103)] = 191584, + [SMALL_STATE(5104)] = 191598, + [SMALL_STATE(5105)] = 191612, + [SMALL_STATE(5106)] = 191626, + [SMALL_STATE(5107)] = 191640, + [SMALL_STATE(5108)] = 191654, + [SMALL_STATE(5109)] = 191668, + [SMALL_STATE(5110)] = 191682, + [SMALL_STATE(5111)] = 191696, + [SMALL_STATE(5112)] = 191710, + [SMALL_STATE(5113)] = 191724, + [SMALL_STATE(5114)] = 191738, + [SMALL_STATE(5115)] = 191752, + [SMALL_STATE(5116)] = 191766, + [SMALL_STATE(5117)] = 191780, + [SMALL_STATE(5118)] = 191794, + [SMALL_STATE(5119)] = 191808, + [SMALL_STATE(5120)] = 191822, + [SMALL_STATE(5121)] = 191834, + [SMALL_STATE(5122)] = 191844, + [SMALL_STATE(5123)] = 191858, + [SMALL_STATE(5124)] = 191872, + [SMALL_STATE(5125)] = 191886, + [SMALL_STATE(5126)] = 191900, + [SMALL_STATE(5127)] = 191914, + [SMALL_STATE(5128)] = 191928, + [SMALL_STATE(5129)] = 191942, + [SMALL_STATE(5130)] = 191956, + [SMALL_STATE(5131)] = 191970, + [SMALL_STATE(5132)] = 191984, + [SMALL_STATE(5133)] = 191998, + [SMALL_STATE(5134)] = 192012, + [SMALL_STATE(5135)] = 192026, + [SMALL_STATE(5136)] = 192040, + [SMALL_STATE(5137)] = 192054, + [SMALL_STATE(5138)] = 192068, + [SMALL_STATE(5139)] = 192082, + [SMALL_STATE(5140)] = 192096, + [SMALL_STATE(5141)] = 192110, + [SMALL_STATE(5142)] = 192120, + [SMALL_STATE(5143)] = 192134, + [SMALL_STATE(5144)] = 192144, + [SMALL_STATE(5145)] = 192158, + [SMALL_STATE(5146)] = 192172, + [SMALL_STATE(5147)] = 192186, + [SMALL_STATE(5148)] = 192200, + [SMALL_STATE(5149)] = 192210, + [SMALL_STATE(5150)] = 192222, + [SMALL_STATE(5151)] = 192236, + [SMALL_STATE(5152)] = 192250, + [SMALL_STATE(5153)] = 192264, + [SMALL_STATE(5154)] = 192278, + [SMALL_STATE(5155)] = 192288, + [SMALL_STATE(5156)] = 192302, + [SMALL_STATE(5157)] = 192316, + [SMALL_STATE(5158)] = 192330, + [SMALL_STATE(5159)] = 192344, + [SMALL_STATE(5160)] = 192358, + [SMALL_STATE(5161)] = 192372, + [SMALL_STATE(5162)] = 192386, + [SMALL_STATE(5163)] = 192400, + [SMALL_STATE(5164)] = 192414, + [SMALL_STATE(5165)] = 192428, + [SMALL_STATE(5166)] = 192442, + [SMALL_STATE(5167)] = 192456, + [SMALL_STATE(5168)] = 192470, + [SMALL_STATE(5169)] = 192484, + [SMALL_STATE(5170)] = 192498, + [SMALL_STATE(5171)] = 192512, + [SMALL_STATE(5172)] = 192522, + [SMALL_STATE(5173)] = 192536, + [SMALL_STATE(5174)] = 192550, + [SMALL_STATE(5175)] = 192564, + [SMALL_STATE(5176)] = 192576, + [SMALL_STATE(5177)] = 192590, + [SMALL_STATE(5178)] = 192604, + [SMALL_STATE(5179)] = 192616, + [SMALL_STATE(5180)] = 192628, + [SMALL_STATE(5181)] = 192642, + [SMALL_STATE(5182)] = 192656, + [SMALL_STATE(5183)] = 192670, + [SMALL_STATE(5184)] = 192684, + [SMALL_STATE(5185)] = 192698, + [SMALL_STATE(5186)] = 192712, + [SMALL_STATE(5187)] = 192726, + [SMALL_STATE(5188)] = 192740, + [SMALL_STATE(5189)] = 192754, + [SMALL_STATE(5190)] = 192768, + [SMALL_STATE(5191)] = 192782, + [SMALL_STATE(5192)] = 192794, + [SMALL_STATE(5193)] = 192808, + [SMALL_STATE(5194)] = 192822, + [SMALL_STATE(5195)] = 192836, + [SMALL_STATE(5196)] = 192850, + [SMALL_STATE(5197)] = 192864, + [SMALL_STATE(5198)] = 192878, + [SMALL_STATE(5199)] = 192892, + [SMALL_STATE(5200)] = 192906, + [SMALL_STATE(5201)] = 192920, + [SMALL_STATE(5202)] = 192930, + [SMALL_STATE(5203)] = 192944, + [SMALL_STATE(5204)] = 192958, + [SMALL_STATE(5205)] = 192970, + [SMALL_STATE(5206)] = 192984, + [SMALL_STATE(5207)] = 192998, + [SMALL_STATE(5208)] = 193012, + [SMALL_STATE(5209)] = 193026, + [SMALL_STATE(5210)] = 193040, + [SMALL_STATE(5211)] = 193054, + [SMALL_STATE(5212)] = 193068, + [SMALL_STATE(5213)] = 193082, + [SMALL_STATE(5214)] = 193096, + [SMALL_STATE(5215)] = 193110, + [SMALL_STATE(5216)] = 193122, + [SMALL_STATE(5217)] = 193134, + [SMALL_STATE(5218)] = 193148, + [SMALL_STATE(5219)] = 193162, + [SMALL_STATE(5220)] = 193176, + [SMALL_STATE(5221)] = 193190, + [SMALL_STATE(5222)] = 193204, + [SMALL_STATE(5223)] = 193218, + [SMALL_STATE(5224)] = 193232, + [SMALL_STATE(5225)] = 193246, + [SMALL_STATE(5226)] = 193260, + [SMALL_STATE(5227)] = 193274, + [SMALL_STATE(5228)] = 193288, + [SMALL_STATE(5229)] = 193302, + [SMALL_STATE(5230)] = 193313, + [SMALL_STATE(5231)] = 193322, + [SMALL_STATE(5232)] = 193333, + [SMALL_STATE(5233)] = 193344, + [SMALL_STATE(5234)] = 193353, + [SMALL_STATE(5235)] = 193364, + [SMALL_STATE(5236)] = 193375, + [SMALL_STATE(5237)] = 193384, + [SMALL_STATE(5238)] = 193395, + [SMALL_STATE(5239)] = 193406, + [SMALL_STATE(5240)] = 193417, + [SMALL_STATE(5241)] = 193428, + [SMALL_STATE(5242)] = 193439, + [SMALL_STATE(5243)] = 193448, + [SMALL_STATE(5244)] = 193459, + [SMALL_STATE(5245)] = 193470, + [SMALL_STATE(5246)] = 193481, + [SMALL_STATE(5247)] = 193492, + [SMALL_STATE(5248)] = 193503, + [SMALL_STATE(5249)] = 193512, + [SMALL_STATE(5250)] = 193523, + [SMALL_STATE(5251)] = 193532, + [SMALL_STATE(5252)] = 193543, + [SMALL_STATE(5253)] = 193554, + [SMALL_STATE(5254)] = 193563, + [SMALL_STATE(5255)] = 193572, + [SMALL_STATE(5256)] = 193581, + [SMALL_STATE(5257)] = 193592, + [SMALL_STATE(5258)] = 193601, + [SMALL_STATE(5259)] = 193612, + [SMALL_STATE(5260)] = 193621, + [SMALL_STATE(5261)] = 193632, + [SMALL_STATE(5262)] = 193641, + [SMALL_STATE(5263)] = 193652, + [SMALL_STATE(5264)] = 193663, + [SMALL_STATE(5265)] = 193674, + [SMALL_STATE(5266)] = 193683, + [SMALL_STATE(5267)] = 193692, + [SMALL_STATE(5268)] = 193701, + [SMALL_STATE(5269)] = 193712, + [SMALL_STATE(5270)] = 193721, + [SMALL_STATE(5271)] = 193732, + [SMALL_STATE(5272)] = 193741, + [SMALL_STATE(5273)] = 193752, + [SMALL_STATE(5274)] = 193763, + [SMALL_STATE(5275)] = 193772, + [SMALL_STATE(5276)] = 193783, + [SMALL_STATE(5277)] = 193792, + [SMALL_STATE(5278)] = 193803, + [SMALL_STATE(5279)] = 193814, + [SMALL_STATE(5280)] = 193823, + [SMALL_STATE(5281)] = 193834, + [SMALL_STATE(5282)] = 193843, + [SMALL_STATE(5283)] = 193854, + [SMALL_STATE(5284)] = 193865, + [SMALL_STATE(5285)] = 193876, + [SMALL_STATE(5286)] = 193885, + [SMALL_STATE(5287)] = 193896, + [SMALL_STATE(5288)] = 193907, + [SMALL_STATE(5289)] = 193916, + [SMALL_STATE(5290)] = 193927, + [SMALL_STATE(5291)] = 193938, + [SMALL_STATE(5292)] = 193947, + [SMALL_STATE(5293)] = 193958, + [SMALL_STATE(5294)] = 193969, + [SMALL_STATE(5295)] = 193980, + [SMALL_STATE(5296)] = 193989, + [SMALL_STATE(5297)] = 193998, + [SMALL_STATE(5298)] = 194009, + [SMALL_STATE(5299)] = 194020, + [SMALL_STATE(5300)] = 194031, + [SMALL_STATE(5301)] = 194042, + [SMALL_STATE(5302)] = 194053, + [SMALL_STATE(5303)] = 194064, + [SMALL_STATE(5304)] = 194075, + [SMALL_STATE(5305)] = 194086, + [SMALL_STATE(5306)] = 194097, + [SMALL_STATE(5307)] = 194108, + [SMALL_STATE(5308)] = 194119, + [SMALL_STATE(5309)] = 194130, + [SMALL_STATE(5310)] = 194141, + [SMALL_STATE(5311)] = 194152, + [SMALL_STATE(5312)] = 194163, + [SMALL_STATE(5313)] = 194174, + [SMALL_STATE(5314)] = 194183, + [SMALL_STATE(5315)] = 194192, + [SMALL_STATE(5316)] = 194203, + [SMALL_STATE(5317)] = 194212, + [SMALL_STATE(5318)] = 194221, + [SMALL_STATE(5319)] = 194230, + [SMALL_STATE(5320)] = 194239, + [SMALL_STATE(5321)] = 194250, + [SMALL_STATE(5322)] = 194261, + [SMALL_STATE(5323)] = 194272, + [SMALL_STATE(5324)] = 194283, + [SMALL_STATE(5325)] = 194294, + [SMALL_STATE(5326)] = 194305, + [SMALL_STATE(5327)] = 194316, + [SMALL_STATE(5328)] = 194325, + [SMALL_STATE(5329)] = 194336, + [SMALL_STATE(5330)] = 194345, + [SMALL_STATE(5331)] = 194356, + [SMALL_STATE(5332)] = 194365, + [SMALL_STATE(5333)] = 194374, + [SMALL_STATE(5334)] = 194385, + [SMALL_STATE(5335)] = 194396, + [SMALL_STATE(5336)] = 194407, + [SMALL_STATE(5337)] = 194418, + [SMALL_STATE(5338)] = 194429, + [SMALL_STATE(5339)] = 194440, + [SMALL_STATE(5340)] = 194449, + [SMALL_STATE(5341)] = 194458, + [SMALL_STATE(5342)] = 194467, + [SMALL_STATE(5343)] = 194478, + [SMALL_STATE(5344)] = 194489, + [SMALL_STATE(5345)] = 194500, + [SMALL_STATE(5346)] = 194511, + [SMALL_STATE(5347)] = 194520, + [SMALL_STATE(5348)] = 194531, + [SMALL_STATE(5349)] = 194542, + [SMALL_STATE(5350)] = 194551, + [SMALL_STATE(5351)] = 194562, + [SMALL_STATE(5352)] = 194571, + [SMALL_STATE(5353)] = 194582, + [SMALL_STATE(5354)] = 194593, + [SMALL_STATE(5355)] = 194604, + [SMALL_STATE(5356)] = 194615, + [SMALL_STATE(5357)] = 194624, + [SMALL_STATE(5358)] = 194633, + [SMALL_STATE(5359)] = 194642, + [SMALL_STATE(5360)] = 194653, + [SMALL_STATE(5361)] = 194662, + [SMALL_STATE(5362)] = 194673, + [SMALL_STATE(5363)] = 194684, + [SMALL_STATE(5364)] = 194695, + [SMALL_STATE(5365)] = 194706, + [SMALL_STATE(5366)] = 194715, + [SMALL_STATE(5367)] = 194724, + [SMALL_STATE(5368)] = 194735, + [SMALL_STATE(5369)] = 194746, + [SMALL_STATE(5370)] = 194755, + [SMALL_STATE(5371)] = 194764, + [SMALL_STATE(5372)] = 194775, + [SMALL_STATE(5373)] = 194786, + [SMALL_STATE(5374)] = 194797, + [SMALL_STATE(5375)] = 194806, + [SMALL_STATE(5376)] = 194815, + [SMALL_STATE(5377)] = 194826, + [SMALL_STATE(5378)] = 194835, + [SMALL_STATE(5379)] = 194846, + [SMALL_STATE(5380)] = 194855, + [SMALL_STATE(5381)] = 194866, + [SMALL_STATE(5382)] = 194877, + [SMALL_STATE(5383)] = 194886, + [SMALL_STATE(5384)] = 194897, + [SMALL_STATE(5385)] = 194908, + [SMALL_STATE(5386)] = 194917, + [SMALL_STATE(5387)] = 194928, + [SMALL_STATE(5388)] = 194937, + [SMALL_STATE(5389)] = 194946, + [SMALL_STATE(5390)] = 194955, + [SMALL_STATE(5391)] = 194964, + [SMALL_STATE(5392)] = 194975, + [SMALL_STATE(5393)] = 194984, + [SMALL_STATE(5394)] = 194995, + [SMALL_STATE(5395)] = 195006, + [SMALL_STATE(5396)] = 195017, + [SMALL_STATE(5397)] = 195026, + [SMALL_STATE(5398)] = 195035, + [SMALL_STATE(5399)] = 195046, + [SMALL_STATE(5400)] = 195055, + [SMALL_STATE(5401)] = 195064, + [SMALL_STATE(5402)] = 195073, + [SMALL_STATE(5403)] = 195084, + [SMALL_STATE(5404)] = 195093, + [SMALL_STATE(5405)] = 195102, + [SMALL_STATE(5406)] = 195113, + [SMALL_STATE(5407)] = 195122, + [SMALL_STATE(5408)] = 195131, + [SMALL_STATE(5409)] = 195140, + [SMALL_STATE(5410)] = 195149, + [SMALL_STATE(5411)] = 195160, + [SMALL_STATE(5412)] = 195171, + [SMALL_STATE(5413)] = 195180, + [SMALL_STATE(5414)] = 195189, + [SMALL_STATE(5415)] = 195200, + [SMALL_STATE(5416)] = 195209, + [SMALL_STATE(5417)] = 195218, + [SMALL_STATE(5418)] = 195229, + [SMALL_STATE(5419)] = 195238, + [SMALL_STATE(5420)] = 195247, + [SMALL_STATE(5421)] = 195256, + [SMALL_STATE(5422)] = 195267, + [SMALL_STATE(5423)] = 195278, + [SMALL_STATE(5424)] = 195287, + [SMALL_STATE(5425)] = 195298, + [SMALL_STATE(5426)] = 195309, + [SMALL_STATE(5427)] = 195320, + [SMALL_STATE(5428)] = 195331, + [SMALL_STATE(5429)] = 195342, + [SMALL_STATE(5430)] = 195353, + [SMALL_STATE(5431)] = 195364, + [SMALL_STATE(5432)] = 195375, + [SMALL_STATE(5433)] = 195386, + [SMALL_STATE(5434)] = 195397, + [SMALL_STATE(5435)] = 195408, + [SMALL_STATE(5436)] = 195419, + [SMALL_STATE(5437)] = 195430, + [SMALL_STATE(5438)] = 195439, + [SMALL_STATE(5439)] = 195448, + [SMALL_STATE(5440)] = 195457, + [SMALL_STATE(5441)] = 195468, + [SMALL_STATE(5442)] = 195479, + [SMALL_STATE(5443)] = 195490, + [SMALL_STATE(5444)] = 195501, + [SMALL_STATE(5445)] = 195510, + [SMALL_STATE(5446)] = 195519, + [SMALL_STATE(5447)] = 195528, + [SMALL_STATE(5448)] = 195537, + [SMALL_STATE(5449)] = 195546, + [SMALL_STATE(5450)] = 195555, + [SMALL_STATE(5451)] = 195564, + [SMALL_STATE(5452)] = 195573, + [SMALL_STATE(5453)] = 195584, + [SMALL_STATE(5454)] = 195593, + [SMALL_STATE(5455)] = 195604, + [SMALL_STATE(5456)] = 195613, + [SMALL_STATE(5457)] = 195624, + [SMALL_STATE(5458)] = 195633, + [SMALL_STATE(5459)] = 195642, + [SMALL_STATE(5460)] = 195651, + [SMALL_STATE(5461)] = 195662, + [SMALL_STATE(5462)] = 195671, + [SMALL_STATE(5463)] = 195682, + [SMALL_STATE(5464)] = 195693, + [SMALL_STATE(5465)] = 195702, + [SMALL_STATE(5466)] = 195711, + [SMALL_STATE(5467)] = 195722, + [SMALL_STATE(5468)] = 195731, + [SMALL_STATE(5469)] = 195739, + [SMALL_STATE(5470)] = 195747, + [SMALL_STATE(5471)] = 195755, + [SMALL_STATE(5472)] = 195763, + [SMALL_STATE(5473)] = 195771, + [SMALL_STATE(5474)] = 195779, + [SMALL_STATE(5475)] = 195787, + [SMALL_STATE(5476)] = 195795, + [SMALL_STATE(5477)] = 195803, + [SMALL_STATE(5478)] = 195811, + [SMALL_STATE(5479)] = 195819, + [SMALL_STATE(5480)] = 195827, + [SMALL_STATE(5481)] = 195835, + [SMALL_STATE(5482)] = 195843, + [SMALL_STATE(5483)] = 195851, + [SMALL_STATE(5484)] = 195859, + [SMALL_STATE(5485)] = 195867, + [SMALL_STATE(5486)] = 195875, + [SMALL_STATE(5487)] = 195883, + [SMALL_STATE(5488)] = 195891, + [SMALL_STATE(5489)] = 195899, + [SMALL_STATE(5490)] = 195907, + [SMALL_STATE(5491)] = 195915, + [SMALL_STATE(5492)] = 195923, + [SMALL_STATE(5493)] = 195931, + [SMALL_STATE(5494)] = 195939, + [SMALL_STATE(5495)] = 195947, + [SMALL_STATE(5496)] = 195955, + [SMALL_STATE(5497)] = 195963, + [SMALL_STATE(5498)] = 195971, + [SMALL_STATE(5499)] = 195979, + [SMALL_STATE(5500)] = 195987, + [SMALL_STATE(5501)] = 195995, + [SMALL_STATE(5502)] = 196003, + [SMALL_STATE(5503)] = 196011, + [SMALL_STATE(5504)] = 196019, + [SMALL_STATE(5505)] = 196027, + [SMALL_STATE(5506)] = 196035, + [SMALL_STATE(5507)] = 196043, + [SMALL_STATE(5508)] = 196051, + [SMALL_STATE(5509)] = 196059, + [SMALL_STATE(5510)] = 196067, + [SMALL_STATE(5511)] = 196075, + [SMALL_STATE(5512)] = 196083, + [SMALL_STATE(5513)] = 196091, + [SMALL_STATE(5514)] = 196099, + [SMALL_STATE(5515)] = 196107, + [SMALL_STATE(5516)] = 196115, + [SMALL_STATE(5517)] = 196123, + [SMALL_STATE(5518)] = 196131, + [SMALL_STATE(5519)] = 196139, + [SMALL_STATE(5520)] = 196147, + [SMALL_STATE(5521)] = 196155, + [SMALL_STATE(5522)] = 196163, + [SMALL_STATE(5523)] = 196171, + [SMALL_STATE(5524)] = 196179, + [SMALL_STATE(5525)] = 196187, + [SMALL_STATE(5526)] = 196195, + [SMALL_STATE(5527)] = 196203, + [SMALL_STATE(5528)] = 196211, + [SMALL_STATE(5529)] = 196219, + [SMALL_STATE(5530)] = 196227, + [SMALL_STATE(5531)] = 196235, + [SMALL_STATE(5532)] = 196243, + [SMALL_STATE(5533)] = 196251, + [SMALL_STATE(5534)] = 196259, + [SMALL_STATE(5535)] = 196267, + [SMALL_STATE(5536)] = 196275, + [SMALL_STATE(5537)] = 196283, + [SMALL_STATE(5538)] = 196291, + [SMALL_STATE(5539)] = 196299, + [SMALL_STATE(5540)] = 196307, + [SMALL_STATE(5541)] = 196315, + [SMALL_STATE(5542)] = 196323, + [SMALL_STATE(5543)] = 196331, + [SMALL_STATE(5544)] = 196339, + [SMALL_STATE(5545)] = 196347, + [SMALL_STATE(5546)] = 196355, + [SMALL_STATE(5547)] = 196363, + [SMALL_STATE(5548)] = 196371, + [SMALL_STATE(5549)] = 196379, + [SMALL_STATE(5550)] = 196387, + [SMALL_STATE(5551)] = 196395, + [SMALL_STATE(5552)] = 196403, + [SMALL_STATE(5553)] = 196411, + [SMALL_STATE(5554)] = 196419, + [SMALL_STATE(5555)] = 196427, + [SMALL_STATE(5556)] = 196435, + [SMALL_STATE(5557)] = 196443, + [SMALL_STATE(5558)] = 196451, + [SMALL_STATE(5559)] = 196459, + [SMALL_STATE(5560)] = 196467, + [SMALL_STATE(5561)] = 196475, + [SMALL_STATE(5562)] = 196483, + [SMALL_STATE(5563)] = 196491, + [SMALL_STATE(5564)] = 196499, + [SMALL_STATE(5565)] = 196507, + [SMALL_STATE(5566)] = 196515, + [SMALL_STATE(5567)] = 196523, + [SMALL_STATE(5568)] = 196531, + [SMALL_STATE(5569)] = 196539, + [SMALL_STATE(5570)] = 196547, + [SMALL_STATE(5571)] = 196555, + [SMALL_STATE(5572)] = 196563, + [SMALL_STATE(5573)] = 196571, + [SMALL_STATE(5574)] = 196579, + [SMALL_STATE(5575)] = 196587, + [SMALL_STATE(5576)] = 196595, + [SMALL_STATE(5577)] = 196603, + [SMALL_STATE(5578)] = 196611, + [SMALL_STATE(5579)] = 196619, + [SMALL_STATE(5580)] = 196627, + [SMALL_STATE(5581)] = 196635, + [SMALL_STATE(5582)] = 196643, + [SMALL_STATE(5583)] = 196651, + [SMALL_STATE(5584)] = 196659, + [SMALL_STATE(5585)] = 196667, + [SMALL_STATE(5586)] = 196675, + [SMALL_STATE(5587)] = 196683, + [SMALL_STATE(5588)] = 196691, + [SMALL_STATE(5589)] = 196699, + [SMALL_STATE(5590)] = 196707, + [SMALL_STATE(5591)] = 196715, + [SMALL_STATE(5592)] = 196723, + [SMALL_STATE(5593)] = 196731, + [SMALL_STATE(5594)] = 196739, + [SMALL_STATE(5595)] = 196747, + [SMALL_STATE(5596)] = 196755, + [SMALL_STATE(5597)] = 196763, + [SMALL_STATE(5598)] = 196771, + [SMALL_STATE(5599)] = 196779, + [SMALL_STATE(5600)] = 196787, + [SMALL_STATE(5601)] = 196795, + [SMALL_STATE(5602)] = 196803, + [SMALL_STATE(5603)] = 196811, + [SMALL_STATE(5604)] = 196819, + [SMALL_STATE(5605)] = 196827, + [SMALL_STATE(5606)] = 196835, + [SMALL_STATE(5607)] = 196843, + [SMALL_STATE(5608)] = 196851, + [SMALL_STATE(5609)] = 196859, + [SMALL_STATE(5610)] = 196867, + [SMALL_STATE(5611)] = 196875, + [SMALL_STATE(5612)] = 196883, + [SMALL_STATE(5613)] = 196891, + [SMALL_STATE(5614)] = 196899, + [SMALL_STATE(5615)] = 196907, + [SMALL_STATE(5616)] = 196915, + [SMALL_STATE(5617)] = 196923, + [SMALL_STATE(5618)] = 196931, + [SMALL_STATE(5619)] = 196939, + [SMALL_STATE(5620)] = 196947, + [SMALL_STATE(5621)] = 196955, + [SMALL_STATE(5622)] = 196963, + [SMALL_STATE(5623)] = 196971, + [SMALL_STATE(5624)] = 196979, + [SMALL_STATE(5625)] = 196987, + [SMALL_STATE(5626)] = 196995, + [SMALL_STATE(5627)] = 197003, + [SMALL_STATE(5628)] = 197011, + [SMALL_STATE(5629)] = 197019, + [SMALL_STATE(5630)] = 197027, + [SMALL_STATE(5631)] = 197035, + [SMALL_STATE(5632)] = 197043, + [SMALL_STATE(5633)] = 197051, + [SMALL_STATE(5634)] = 197059, + [SMALL_STATE(5635)] = 197067, + [SMALL_STATE(5636)] = 197075, + [SMALL_STATE(5637)] = 197083, + [SMALL_STATE(5638)] = 197091, + [SMALL_STATE(5639)] = 197099, + [SMALL_STATE(5640)] = 197107, + [SMALL_STATE(5641)] = 197115, + [SMALL_STATE(5642)] = 197123, + [SMALL_STATE(5643)] = 197131, + [SMALL_STATE(5644)] = 197139, + [SMALL_STATE(5645)] = 197147, + [SMALL_STATE(5646)] = 197155, + [SMALL_STATE(5647)] = 197163, + [SMALL_STATE(5648)] = 197171, + [SMALL_STATE(5649)] = 197179, + [SMALL_STATE(5650)] = 197187, + [SMALL_STATE(5651)] = 197195, + [SMALL_STATE(5652)] = 197203, + [SMALL_STATE(5653)] = 197211, + [SMALL_STATE(5654)] = 197219, + [SMALL_STATE(5655)] = 197227, + [SMALL_STATE(5656)] = 197235, + [SMALL_STATE(5657)] = 197243, + [SMALL_STATE(5658)] = 197251, + [SMALL_STATE(5659)] = 197259, + [SMALL_STATE(5660)] = 197267, + [SMALL_STATE(5661)] = 197275, + [SMALL_STATE(5662)] = 197283, + [SMALL_STATE(5663)] = 197291, + [SMALL_STATE(5664)] = 197299, + [SMALL_STATE(5665)] = 197307, + [SMALL_STATE(5666)] = 197315, + [SMALL_STATE(5667)] = 197323, + [SMALL_STATE(5668)] = 197331, + [SMALL_STATE(5669)] = 197339, + [SMALL_STATE(5670)] = 197347, + [SMALL_STATE(5671)] = 197355, + [SMALL_STATE(5672)] = 197363, + [SMALL_STATE(5673)] = 197371, + [SMALL_STATE(5674)] = 197379, + [SMALL_STATE(5675)] = 197387, + [SMALL_STATE(5676)] = 197395, + [SMALL_STATE(5677)] = 197403, + [SMALL_STATE(5678)] = 197411, + [SMALL_STATE(5679)] = 197419, + [SMALL_STATE(5680)] = 197427, + [SMALL_STATE(5681)] = 197435, + [SMALL_STATE(5682)] = 197443, + [SMALL_STATE(5683)] = 197451, + [SMALL_STATE(5684)] = 197459, + [SMALL_STATE(5685)] = 197467, + [SMALL_STATE(5686)] = 197475, + [SMALL_STATE(5687)] = 197483, + [SMALL_STATE(5688)] = 197491, + [SMALL_STATE(5689)] = 197499, + [SMALL_STATE(5690)] = 197507, + [SMALL_STATE(5691)] = 197515, + [SMALL_STATE(5692)] = 197523, + [SMALL_STATE(5693)] = 197531, + [SMALL_STATE(5694)] = 197539, + [SMALL_STATE(5695)] = 197547, + [SMALL_STATE(5696)] = 197555, + [SMALL_STATE(5697)] = 197563, + [SMALL_STATE(5698)] = 197571, + [SMALL_STATE(5699)] = 197579, + [SMALL_STATE(5700)] = 197587, + [SMALL_STATE(5701)] = 197595, + [SMALL_STATE(5702)] = 197603, + [SMALL_STATE(5703)] = 197611, + [SMALL_STATE(5704)] = 197619, + [SMALL_STATE(5705)] = 197627, + [SMALL_STATE(5706)] = 197635, + [SMALL_STATE(5707)] = 197643, + [SMALL_STATE(5708)] = 197651, + [SMALL_STATE(5709)] = 197659, + [SMALL_STATE(5710)] = 197667, + [SMALL_STATE(5711)] = 197675, + [SMALL_STATE(5712)] = 197683, + [SMALL_STATE(5713)] = 197691, + [SMALL_STATE(5714)] = 197699, + [SMALL_STATE(5715)] = 197707, + [SMALL_STATE(5716)] = 197715, + [SMALL_STATE(5717)] = 197723, + [SMALL_STATE(5718)] = 197731, + [SMALL_STATE(5719)] = 197739, + [SMALL_STATE(5720)] = 197747, + [SMALL_STATE(5721)] = 197755, + [SMALL_STATE(5722)] = 197763, + [SMALL_STATE(5723)] = 197771, + [SMALL_STATE(5724)] = 197779, + [SMALL_STATE(5725)] = 197787, + [SMALL_STATE(5726)] = 197795, + [SMALL_STATE(5727)] = 197803, + [SMALL_STATE(5728)] = 197811, + [SMALL_STATE(5729)] = 197819, + [SMALL_STATE(5730)] = 197827, + [SMALL_STATE(5731)] = 197835, + [SMALL_STATE(5732)] = 197843, + [SMALL_STATE(5733)] = 197851, + [SMALL_STATE(5734)] = 197859, + [SMALL_STATE(5735)] = 197867, + [SMALL_STATE(5736)] = 197875, + [SMALL_STATE(5737)] = 197883, + [SMALL_STATE(5738)] = 197891, + [SMALL_STATE(5739)] = 197899, + [SMALL_STATE(5740)] = 197907, + [SMALL_STATE(5741)] = 197915, + [SMALL_STATE(5742)] = 197923, + [SMALL_STATE(5743)] = 197931, + [SMALL_STATE(5744)] = 197939, + [SMALL_STATE(5745)] = 197947, + [SMALL_STATE(5746)] = 197955, + [SMALL_STATE(5747)] = 197963, + [SMALL_STATE(5748)] = 197971, + [SMALL_STATE(5749)] = 197979, + [SMALL_STATE(5750)] = 197987, + [SMALL_STATE(5751)] = 197995, + [SMALL_STATE(5752)] = 198003, + [SMALL_STATE(5753)] = 198011, + [SMALL_STATE(5754)] = 198019, + [SMALL_STATE(5755)] = 198027, + [SMALL_STATE(5756)] = 198035, + [SMALL_STATE(5757)] = 198043, + [SMALL_STATE(5758)] = 198051, + [SMALL_STATE(5759)] = 198059, + [SMALL_STATE(5760)] = 198067, + [SMALL_STATE(5761)] = 198075, + [SMALL_STATE(5762)] = 198083, + [SMALL_STATE(5763)] = 198091, + [SMALL_STATE(5764)] = 198099, + [SMALL_STATE(5765)] = 198107, + [SMALL_STATE(5766)] = 198115, + [SMALL_STATE(5767)] = 198123, + [SMALL_STATE(5768)] = 198131, + [SMALL_STATE(5769)] = 198139, + [SMALL_STATE(5770)] = 198147, + [SMALL_STATE(5771)] = 198155, + [SMALL_STATE(5772)] = 198163, + [SMALL_STATE(5773)] = 198171, + [SMALL_STATE(5774)] = 198179, + [SMALL_STATE(5775)] = 198187, + [SMALL_STATE(5776)] = 198195, + [SMALL_STATE(5777)] = 198203, + [SMALL_STATE(5778)] = 198211, + [SMALL_STATE(5779)] = 198219, + [SMALL_STATE(5780)] = 198227, + [SMALL_STATE(5781)] = 198235, + [SMALL_STATE(5782)] = 198243, + [SMALL_STATE(5783)] = 198251, + [SMALL_STATE(5784)] = 198259, + [SMALL_STATE(5785)] = 198267, + [SMALL_STATE(5786)] = 198275, + [SMALL_STATE(5787)] = 198283, + [SMALL_STATE(5788)] = 198291, + [SMALL_STATE(5789)] = 198299, + [SMALL_STATE(5790)] = 198307, + [SMALL_STATE(5791)] = 198315, + [SMALL_STATE(5792)] = 198323, + [SMALL_STATE(5793)] = 198331, + [SMALL_STATE(5794)] = 198339, + [SMALL_STATE(5795)] = 198347, + [SMALL_STATE(5796)] = 198355, + [SMALL_STATE(5797)] = 198363, + [SMALL_STATE(5798)] = 198371, + [SMALL_STATE(5799)] = 198379, + [SMALL_STATE(5800)] = 198387, + [SMALL_STATE(5801)] = 198395, + [SMALL_STATE(5802)] = 198403, + [SMALL_STATE(5803)] = 198411, + [SMALL_STATE(5804)] = 198419, + [SMALL_STATE(5805)] = 198427, + [SMALL_STATE(5806)] = 198435, + [SMALL_STATE(5807)] = 198443, + [SMALL_STATE(5808)] = 198451, + [SMALL_STATE(5809)] = 198459, + [SMALL_STATE(5810)] = 198467, + [SMALL_STATE(5811)] = 198475, + [SMALL_STATE(5812)] = 198483, + [SMALL_STATE(5813)] = 198491, + [SMALL_STATE(5814)] = 198499, + [SMALL_STATE(5815)] = 198507, + [SMALL_STATE(5816)] = 198515, + [SMALL_STATE(5817)] = 198523, + [SMALL_STATE(5818)] = 198531, + [SMALL_STATE(5819)] = 198539, + [SMALL_STATE(5820)] = 198547, + [SMALL_STATE(5821)] = 198555, + [SMALL_STATE(5822)] = 198563, + [SMALL_STATE(5823)] = 198571, + [SMALL_STATE(5824)] = 198579, + [SMALL_STATE(5825)] = 198587, + [SMALL_STATE(5826)] = 198595, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -283780,4996 +289317,5060 @@ 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(1874), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1874), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4592), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(785), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(375), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1763), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1054), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(959), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5266), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5280), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5355), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(426), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(944), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5601), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5710), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5717), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5642), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1948), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(786), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2700), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(949), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2116), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2120), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2096), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2096), - [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(1839), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5142), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5711), - [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2003), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3258), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2221), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2791), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5733), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), - [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(1849), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(928), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5540), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1139), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5477), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5470), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5691), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5712), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1915), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2214), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4598), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2047), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1075), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(979), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5423), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5457), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5370), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(958), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5669), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5622), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5801), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5608), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1967), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(787), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3306), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2744), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2189), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2190), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5671), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5092), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5783), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2049), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3335), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5684), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3735), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), + [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(942), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5743), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5473), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5536), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5726), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5646), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1979), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(846), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2008), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(847), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1948), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1707), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3336), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [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(1997), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 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_external_definition, 4, 0, 0), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 4, 0, 0), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 19), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 19), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 151), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 151), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 162), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 162), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 61), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 61), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 119), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 119), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 5, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 5, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 97), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 97), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 193), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 193), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 51), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 51), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 5, 0, 0), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 5, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 18), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 18), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 2, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 2, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 50), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 50), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 18), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 18), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 60), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 60), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 80), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 80), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 81), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 81), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 82), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 82), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 83), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 83), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 87), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 87), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 0), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 0), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 89), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 89), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 96), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 96), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 60), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 60), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 18), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 18), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), - [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 122), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 122), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 123), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 123), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 124), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 124), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 125), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 125), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 0), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 0), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 87), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 87), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 131), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 131), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 132), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 132), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 130), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 130), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 133), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 133), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 134), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 134), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 135), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 135), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 136), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 136), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 149), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 149), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 150), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 150), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 18), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 18), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 152), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 152), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 153), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 153), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 154), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 154), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 157), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 157), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 87), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 87), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 158), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 158), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 0), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 0), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 130), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 130), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 159), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 159), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 160), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 160), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 161), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 161), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 60), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 60), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 163), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 163), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 164), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 164), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 165), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 165), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 166), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 166), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 167), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 167), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 168), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 168), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 179), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 179), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 180), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 180), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 181), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 181), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 182), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 182), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 183), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 183), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 185), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 185), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 87), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 87), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 186), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 186), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 130), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 130), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 187), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 187), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 0), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 0), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 160), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 160), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 188), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 188), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 161), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 161), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 189), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 189), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 190), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 190), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 191), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 191), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 192), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 192), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 60), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 60), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 194), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 194), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 195), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 195), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 196), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 196), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 207), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 207), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 208), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 208), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 209), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 209), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 210), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 210), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 211), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 211), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 212), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 212), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 214), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 214), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 215), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 215), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 130), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 130), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 216), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 216), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 160), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 160), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 217), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 217), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 87), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 87), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 161), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 161), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 218), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 218), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 0), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 0), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 190), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 190), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 219), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 219), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 220), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 220), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 221), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 221), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 222), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 222), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 223), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 223), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 224), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 224), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 230), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 230), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 231), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 231), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 232), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 232), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 233), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 233), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 235), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 235), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 236), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 236), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 160), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 160), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 237), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 237), - [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 238), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 238), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 161), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 161), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 239), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 239), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 190), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 190), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 240), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 240), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 130), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 130), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 241), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 241), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 242), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 242), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 243), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 243), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 244), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 244), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 245), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 245), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 246), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 246), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 250), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 250), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 252), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 252), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 253), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 253), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 254), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 254), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 190), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 190), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 255), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 255), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 256), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 256), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 257), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 257), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 258), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 258), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 259), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 259), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 11, 0, 262), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 11, 0, 262), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 12, 0, 263), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 12, 0, 263), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 2, 0, 0), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 2, 0, 0), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 2, 0, 0), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 2, 0, 0), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 2, 0, 0), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 2, 0, 0), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 56), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 56), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 0), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 0), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 3, 0, 0), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 3, 0, 0), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 3, 0, 0), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 3, 0, 0), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 58), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 58), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 0), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 0), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 3, 0, 0), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 3, 0, 0), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 2, 0, 0), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 2, 0, 0), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 4, 0, 0), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 4, 0, 0), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 56), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 56), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 0), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 0), - [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 0), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 0), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 87), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 87), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 0), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 88), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 88), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 4, 0, 0), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 4, 0, 0), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 0), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 0), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 58), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 58), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 5, 0, 0), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 5, 0, 0), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 3, 0, 0), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 3, 0, 0), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 2, 0, 0), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 2, 0, 0), - [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 87), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 87), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 0), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 0), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 129), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 129), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 5, 0, 0), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 5, 0, 0), - [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 88), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 88), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 0), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 0), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 0), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 0), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 130), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 130), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 6, 0, 0), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 6, 0, 0), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 3, 0, 0), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 3, 0, 0), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 0), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 0), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 156), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 156), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 6, 0, 0), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 6, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 6, 0, 0), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 6, 0, 0), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 0), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 0), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 129), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 129), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 6, 0, 130), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 6, 0, 130), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 7, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 7, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 0), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 0), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 184), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 184), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 0), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 156), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 156), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 7, 0, 0), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 7, 0, 0), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 8, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 8, 0, 0), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 213), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 213), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 0), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 0), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 184), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 184), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 234), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 234), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 8, 0, 0), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 8, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 251), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 251), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 0), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 0), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 0), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 261), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 261), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 12, 0, 0), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 12, 0, 0), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pass_statement, 1, 0, 0), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 3, 0, 0), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 3, 0, 0), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 5, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 5, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctype_declaration, 1, 0, 0), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctype_declaration, 1, 0, 0), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 3, 0, 0), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 3, 0, 0), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 6, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 6, 0, 0), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 3, 0, 0), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 3, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 4, 0, 0), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 4, 0, 0), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 2, 0, 0), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 2, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [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(5688), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 48), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 48), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 139), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 139), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 138), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 138), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 67), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 67), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 68), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 169), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 169), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1340), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1526), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 107), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 107), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 103), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 103), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), - [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1791), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), - [3095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1795), - [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1413), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 88), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 88), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 88), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 88), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 58), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 58), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 1, 0, 0), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 156), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 156), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 156), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 156), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 42), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 42), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 173), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 173), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 71), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 71), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 111), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 111), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 68), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 68), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 74), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 74), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 115), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 115), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 76), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 76), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 48), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 48), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 15), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 16), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 77), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 77), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 46), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 46), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 47), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 47), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 3, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 2, 0, 0), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 142), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 142), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 146), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 146), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 48), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 48), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 77), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 77), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 203), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 203), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 204), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 204), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 205), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 205), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 206), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 206), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 106), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 106), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 108), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 108), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 109), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 109), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 110), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 110), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 112), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 112), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 113), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 113), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 114), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 114), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 116), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 116), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 229), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 229), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 58), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 58), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 48), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 48), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 117), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 117), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 66), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 66), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 172), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 172), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 174), - [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 174), - [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 2, 0, 0), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 2, 0, 0), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 175), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 175), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 13), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 13), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 69), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 69), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 176), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 176), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 70), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 70), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 177), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 177), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 178), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 178), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 72), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 72), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 44), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 44), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 73), - [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 73), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 75), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 75), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), - [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 49), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 49), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 4, 0, 49), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 4, 0, 49), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), - [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 79), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 79), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, 0, 78), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, 0, 78), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def_statement, 5, 0, 18), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def_statement, 5, 0, 18), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 140), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 140), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 141), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 141), - [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 143), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 143), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 144), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 144), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 145), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 145), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 77), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 77), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 147), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 147), - [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 148), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 148), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_directive, 3, 0, 0), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_directive, 3, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [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(5654), - [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(3537), - [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(3114), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 2, 0, 0), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_value, 2, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 3, 0, 0), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 5, 0, 0), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 29), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 29), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 94), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 94), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 59), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 59), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [3906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 94), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 94), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 59), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 59), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3453), - [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3321), - [4064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), - [4067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2791), - [4070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2113), - [4073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), - [4076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3235), - [4079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), - [4082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3398), - [4085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3272), - [4088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2221), - [4091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5455), - [4094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4359), - [4097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5456), - [4100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5746), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), - [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3688), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5447), - [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2791), - [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2796), - [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [4161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), - [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3133), - [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), - [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), - [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3426), - [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), - [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5580), - [4182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4317), - [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5582), - [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5720), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 12), - [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 12), - [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), - [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), - [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1999), - [4238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(5587), - [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1902), - [4244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1999), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [4265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 27), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 27), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), - [4333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 3, 0, 0), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), - [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 38), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 38), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 22), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 22), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 0), - [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 0), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), - [4480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1683), - [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), - [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 28), - [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 28), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 27), - [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 27), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 54), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 54), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2006), - [4504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1884), - [4507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2006), - [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1985), - [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1897), - [4516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1985), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 0), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 0), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 38), - [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 38), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 11), - [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 11), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 38), - [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 38), - [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 39), - [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 39), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), - [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), - [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 39), - [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 39), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 0), - [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 0), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis, 1, 0, 0), - [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ellipsis, 1, 0, 0), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_none, 1, 0, 0), - [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_none, 1, 0, 0), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 39), - [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 39), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1916), - [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1888), - [4675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1916), - [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3630), - [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1917), - [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1894), - [4687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1917), - [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3626), - [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1903), - [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1889), - [4699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1903), - [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1954), - [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1901), - [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1954), - [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3683), - [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1483), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1490), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1925), - [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1887), - [4752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1925), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1602), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 3, 0, 0), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1459), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1475), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1504), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1497), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [4944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [4947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2791), - [4950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), - [4956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3133), - [4959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), - [4962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), - [4965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3426), - [4968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), - [4971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5582), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), - [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2791), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storageclass, 1, 0, 0), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3453), - [5280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3321), - [5283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2791), - [5286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), - [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3235), - [5292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), - [5295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3398), - [5298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3272), - [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [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}}, 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 = true}}, REDUCE(sym__typedargslist, 2, 0, 0), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 3, 0, 0), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [5387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 3, 0, 0), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [5399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 1, 0, 0), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 1, 0, 0), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [5417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), REDUCE(sym_c_type, 2, 0, 0), - [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), - [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [5434] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(5573), - [5438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), - [5441] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3114), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [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(3263), - [5464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), REDUCE(sym_c_type, 2, 0, 21), - [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 21), - [5469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [5482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1466), - [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), - [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [5511] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(5573), - [5515] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3114), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [5529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(5573), - [5532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3114), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(5573), - [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3114), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), - [5565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3286), - [5568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [5571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3133), - [5574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), - [5577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), - [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3333), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(5573), - [5590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3114), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [5599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), - [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5639), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(5573), - [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3114), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [5682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 1, 0, 0), - [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 1, 0, 0), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [5688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), REDUCE(sym_c_type, 3, 0, 0), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), - [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5654), - [5729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1869), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [5734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), REDUCE(sym_c_type, 4, 0, 21), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 21), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [5743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), REDUCE(sym_c_type, 5, 0, 21), - [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), REDUCE(sym_c_type, 4, 0, 0), - [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), - [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), - [5763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [5769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), - [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), - [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5539), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 21), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [5791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 2, 0, 20), - [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 2, 0, 20), - [5795] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(5573), - [5799] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3114), - [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 2, 0, 0), - [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 2, 0, 0), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(5573), - [5818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3114), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(5573), - [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3114), - [5847] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(5573), - [5851] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3114), - [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [5857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(5573), - [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3114), - [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(5573), - [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3114), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), - [5883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), - [5886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), - [5889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), - [5892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3107), - [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 2, 0, 0), - [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 2, 0, 0), - [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [5904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [5910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3114), - [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 5, 0, 0), - [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 5, 0, 0), - [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 6, 0, 0), - [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 6, 0, 0), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [5930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), - [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [5935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), - [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 3, 0, 0), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 3, 0, 0), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), - [5947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 4, 0, 0), - [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 4, 0, 0), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [5953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 3, 0, 0), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 3, 0, 0), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 2, 0, 0), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 2, 0, 0), - [5971] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), SHIFT(3114), - [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 2, 0, 0), - [5977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parameters, 2, 0, 0), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [5981] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), SHIFT(3114), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5542), - [5992] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3114), - [5996] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3114), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3114), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3107), - [6018] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3114), - [6022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), - [6025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), - [6028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3119), - [6031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5463), - [6034] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3114), - [6038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5744), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [6047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3119), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 10), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1772), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [6067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5555), - [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 21), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), - [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 21), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), REDUCE(sym_c_type, 5, 0, 0), - [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), REDUCE(sym_c_type, 6, 0, 0), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 6, 0, 0), - [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), - [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), - [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), - [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), SHIFT(3114), - [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 155), - [6144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 155), SHIFT(3114), - [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 4, 0, 0), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 4, 0, 0), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), - [6153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), SHIFT(3114), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), - [6158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), SHIFT(3114), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), - [6163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), SHIFT(3114), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), - [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), SHIFT(3114), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), - [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), - [6195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 0), - [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 0), - [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), - [6201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), SHIFT(3114), - [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 127), - [6206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 127), SHIFT(3114), - [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), - [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), SHIFT(3114), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), - [6216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), SHIFT(3114), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), - [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), - [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [6235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3804), - [6238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3804), - [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3113), - [6244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), SHIFT(3114), - [6247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), SHIFT(3114), - [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), SHIFT(3114), - [6253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), SHIFT(3114), - [6256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), SHIFT(3114), - [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 127), - [6261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 127), SHIFT(3114), - [6264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), - [6266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), SHIFT(3114), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 155), - [6271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 155), SHIFT(3114), - [6274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), SHIFT(3114), - [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), SHIFT(3114), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(916), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 0), - [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [6343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3114), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3653), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 0), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [6363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), - [6369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), - [6372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [6374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 0), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 0), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [6396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [6408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5441), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [6477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3113), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [6496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 0), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [6510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 10), - [6512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 21), - [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 10), - [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 21), - [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), - [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [6534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 6, 0, 0), - [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1824), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), - [6601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), - [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), - [6605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1614), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [6648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1651), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1434), - [6672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1590), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [6677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [6703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3881), - [6706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3881), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [6765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [6785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 52), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [6857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1426), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [6908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1801), - [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [6953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1571), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 93), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5618), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [7045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [7069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1520), - [7072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5747), - [7075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1860), - [7078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), - [7095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5726), - [7098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1852), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [7107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 10), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [7305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), - [7308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5584), - [7311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [7354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 4, 0, 0), - [7356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 5, 0, 87), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 43), - [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 3, 0, 0), - [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [7384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 24), - [7393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), - [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 4, 0, 0), - [7398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 98), - [7400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 98), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 99), - [7408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 99), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 100), - [7412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 100), - [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 103), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 138), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 139), - [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 4, 0, 84), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 169), - [7470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), - [7473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [7505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3073), - [7508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 137), - [7510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 137), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [7516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1127), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 2, 0, 0), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 1, 0, 0), - [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 126), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 4, 0, 0), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), - [7559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(3114), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 4, 0, 0), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 32), - [7576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 32), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 5, 0, 0), - [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [7596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 32), - [7598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 32), - [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 63), - [7602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 63), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 64), - [7606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 64), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [7610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 92), - [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 24), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [7620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1634), - [7623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1811), - [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [7642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), - [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 41), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [7651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 25), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [7663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 54), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [7673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3076), - [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 22), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [7684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3069), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 197), - [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 199), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [7733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [7736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [7738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4328), - [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 10), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [7753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 170), - [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 197), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 199), - [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 0), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [7948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [7950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(4422), - [7953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1519), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [7962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [7968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 170), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [8040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [8042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5524), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 1, 0, 0), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [8129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 2, 0, 0), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), - [8135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(1411), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 18), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [8190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), - [8208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(5118), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [8233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 4, 0, 0), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2798), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 1, 0, 0), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [8256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1866), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [8265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), SHIFT_REPEAT(2803), - [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 1, 0, 0), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [8286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1207), - [8289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), SHIFT_REPEAT(1135), - [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 53), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [8328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 198), SHIFT_REPEAT(2952), - [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 198), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [8341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), SHIFT_REPEAT(1445), - [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), - [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [8355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(951), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [8412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [8428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), - [8464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [8469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [8493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), SHIFT_REPEAT(5373), - [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [8554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 3, 0, 0), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [8689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [8718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 3, 0, 87), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [8801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 34), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [8957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), - [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [8978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [8981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), SHIFT_REPEAT(3267), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 1, 0, 0), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [9006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 3, 0, 0), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [9024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5459), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [9039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), SHIFT_REPEAT(5225), - [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [9048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [9056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), SHIFT_REPEAT(5492), - [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(861), + [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2022), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(862), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1967), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1670), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3306), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 19), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 19), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 51), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 51), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 61), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 61), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 97), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 97), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 155), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 155), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 201), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 201), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 166), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 166), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 4, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 4, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 5, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 5, 0, 0), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 165), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 165), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 18), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 18), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 2, 0, 0), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 2, 0, 0), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 50), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 50), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 18), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 18), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 3, 0, 0), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 3, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 60), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 60), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 80), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 80), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 81), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 81), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 82), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 82), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 83), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 83), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 87), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 87), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 0), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 0), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 89), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 89), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 96), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 96), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 60), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 60), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 18), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 18), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 122), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 122), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 123), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 123), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 124), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 124), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 125), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 125), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 126), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 126), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 0), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 87), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 87), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 132), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 132), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 133), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 133), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 131), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 131), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 134), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 134), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 135), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 135), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 136), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 136), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 137), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 137), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 153), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 153), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 154), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 154), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 18), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 18), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 156), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 156), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 157), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 157), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 158), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 158), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 161), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 161), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 87), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 87), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 162), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 162), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 131), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 131), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 163), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 163), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 164), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 164), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 165), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 165), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 60), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 60), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 167), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 167), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 168), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 168), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 169), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 169), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 170), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 170), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 171), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 171), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 172), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 172), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 187), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 187), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 188), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 188), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 189), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 189), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 190), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 190), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 191), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 191), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 193), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 193), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 87), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 87), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 194), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 194), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 131), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 131), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 195), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 195), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 0), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 0), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 164), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 164), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 196), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 196), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 165), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 165), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 197), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 197), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 198), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 198), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 199), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 199), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 200), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 200), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 60), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 60), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 202), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 202), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 203), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 203), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 204), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 204), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 219), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 219), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 220), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 220), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 221), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 221), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 222), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 222), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 223), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 223), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 224), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 224), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 226), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 226), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 227), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 227), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 131), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 131), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 228), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 228), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 164), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 164), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 229), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 229), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 87), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 87), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 165), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 165), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 230), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 230), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 0), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 198), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 198), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 231), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 231), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 232), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 232), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 233), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 233), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 234), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 234), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 235), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 235), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 236), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 236), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 245), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 245), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 246), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 246), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 247), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 247), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 248), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 248), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 250), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 250), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 251), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 251), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 164), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 164), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 252), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 252), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 253), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 253), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 12, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 12, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 254), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 254), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 198), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 198), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 255), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 255), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 131), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 131), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 256), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 256), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 257), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 257), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 258), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 258), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 259), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 259), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 260), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 260), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 261), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 261), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 266), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 266), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 268), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 268), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 269), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 269), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 270), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 270), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 198), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 198), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 271), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 271), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 272), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 272), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 273), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 273), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 274), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 274), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 275), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 275), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 11, 0, 278), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 11, 0, 278), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 12, 0, 279), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 12, 0, 279), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 2, 0, 0), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 2, 0, 0), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 2, 0, 0), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 2, 0, 0), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 2, 0, 0), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 2, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 56), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 56), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 0), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 3, 0, 0), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 3, 0, 0), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 3, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 3, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 58), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 58), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 0), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 0), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 3, 0, 0), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 3, 0, 0), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 2, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 2, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 4, 0, 0), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 4, 0, 0), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 56), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 56), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 0), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 87), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 87), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 0), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 0), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 88), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 88), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 4, 0, 0), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 4, 0, 0), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 0), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 0), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 58), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 58), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 5, 0, 0), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 5, 0, 0), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 3, 0, 0), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 3, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 2, 0, 0), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 2, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 87), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 87), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 130), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 130), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 5, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 5, 0, 0), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 5, 0, 0), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 5, 0, 0), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 88), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 88), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 0), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 0), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 131), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 131), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 6, 0, 0), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 6, 0, 0), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 3, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 3, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 0), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 0), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 160), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 160), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 6, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 6, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 6, 0, 0), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 6, 0, 0), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 0), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 130), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 130), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 6, 0, 131), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 6, 0, 131), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 7, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 7, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 0), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 0), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 192), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 192), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 0), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 0), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 160), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 160), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 7, 0, 0), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 7, 0, 0), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 8, 0, 0), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 8, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 225), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 225), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 0), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 0), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 192), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 192), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 249), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 249), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 8, 0, 0), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 8, 0, 0), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 267), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 267), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 0), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 0), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 277), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 277), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pass_statement, 1, 0, 0), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 3, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 3, 0, 0), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 6, 0, 0), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 6, 0, 0), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 2, 0, 0), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 2, 0, 0), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 5, 0, 0), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 5, 0, 0), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 4, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 4, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 3, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 3, 0, 0), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 48), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 48), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 77), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 77), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 107), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 107), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 67), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 67), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 68), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1855), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 103), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 103), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 140), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 140), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 173), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 173), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 139), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 139), + [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1241), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1562), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), + [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1857), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1711), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 160), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 160), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 1, 0, 0), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 88), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 88), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 160), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 160), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 58), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 58), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 88), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 88), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 143), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 143), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 144), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 144), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 148), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 148), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 150), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 150), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 42), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 42), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 177), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 177), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 179), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 179), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 184), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 184), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 111), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 111), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 71), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 71), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 68), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 68), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 213), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 213), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 217), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 217), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 74), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 74), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 242), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 242), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 76), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 76), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 48), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 48), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 15), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 16), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 115), + [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 115), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 116), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 116), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 77), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 77), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 46), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 46), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 47), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 47), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 3, 0, 0), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 2, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 77), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 77), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 48), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 48), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), + [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 44), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 44), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, 0, 78), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, 0, 78), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def_statement, 5, 0, 18), + [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def_statement, 5, 0, 18), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 49), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 49), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), + [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 4, 0, 49), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 4, 0, 49), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 66), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 66), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 69), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 69), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 70), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 70), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 72), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 72), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 73), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 73), + [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 75), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 75), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), + [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 79), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 79), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), + [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 106), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 106), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 108), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 108), + [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 109), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 109), + [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 110), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 110), + [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 112), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 112), + [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 113), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 113), + [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 114), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 114), + [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 117), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 117), + [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 58), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 58), + [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 48), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 48), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 176), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 176), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), + [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 119), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 119), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 178), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 178), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 180), + [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 180), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 181), + [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 181), + [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 182), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 182), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 183), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 183), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 185), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 185), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 186), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 186), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 141), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 141), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 142), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 142), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 145), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 145), + [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 146), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 146), + [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 147), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 147), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 149), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 149), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 77), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 77), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 151), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 151), + [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 152), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 152), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 211), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 211), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 212), + [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 212), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 214), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 214), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 215), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 215), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 216), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 216), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 218), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 218), + [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 241), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 241), + [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 243), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 243), + [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 244), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 244), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 265), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 265), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_directive, 3, 0, 0), + [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_directive, 3, 0, 0), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 2, 0, 0), + [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 2, 0, 0), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storageclass, 1, 0, 0), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), + [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 10), + [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 2, 0, 0), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_value, 2, 0, 0), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 5, 0, 0), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 3, 0, 0), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 94), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 94), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 59), + [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 59), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 29), + [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 29), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 94), + [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 94), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 59), + [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 59), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3396), + [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5608), + [4163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), + [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2165), + [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), + [4172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), + [4175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), + [4178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), + [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), + [4184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), + [4187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5523), + [4190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4447), + [4193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5524), + [4196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5818), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), + [4201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), + [4239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), + [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), + [4245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2846), + [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), + [4251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), + [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), + [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3416), + [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3339), + [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), + [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), + [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5661), + [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4448), + [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5662), + [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3735), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), + [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2015), + [4355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(5787), + [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1950), + [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2015), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 27), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 27), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), + [4411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 3, 0, 0), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 0), + [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 0), + [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3713), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), + [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 38), + [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 38), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 38), + [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 38), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 38), + [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 38), + [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3683), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 39), + [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 39), + [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3722), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 11), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 11), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 22), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 22), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 0), + [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 0), + [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), + [4645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1482), + [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 28), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 28), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 27), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 27), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 54), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 54), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [4664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1983), + [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1954), + [4672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1983), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2013), + [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1956), + [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2013), + [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1993), + [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1955), + [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1993), + [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 39), + [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 39), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 0), + [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 0), + [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis, 1, 0, 0), + [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ellipsis, 1, 0, 0), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_none, 1, 0, 0), + [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_none, 1, 0, 0), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 39), + [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 39), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2031), + [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1947), + [4783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2031), + [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), + [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2053), + [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1953), + [4795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2053), + [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3699), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3760), + [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1970), + [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1949), + [4812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1970), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1627), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1634), + [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3751), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1720), + [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2039), + [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1948), + [4857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2039), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 3, 0, 0), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [4894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1619), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [4909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1602), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1648), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1641), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), + [5039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), + [5042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), + [5045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), + [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), + [5051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3416), + [5054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3339), + [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), + [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), + [5063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5662), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), + [5074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [5295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storageclass, 1, 0, 0), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [5365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [5373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), + [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3396), + [5379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), + [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), + [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), + [5388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), + [5391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), + [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), + [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 2, 0, 0), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [5445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 3, 0, 0), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [5453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [5483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 3, 0, 0), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [5497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [5502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1610), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [5515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), REDUCE(sym_c_type, 3, 0, 21), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [5536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), REDUCE(sym_c_type, 2, 0, 21), + [5539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 21), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), REDUCE(sym_c_type, 2, 0, 0), + [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), + [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), + [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [5569] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(5817), + [5573] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3181), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [5579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 1, 0, 0), + [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 1, 0, 0), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 21), + [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(5817), + [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3181), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [5615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), + [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), + [5621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), + [5624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), + [5627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3416), + [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3339), + [5633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3374), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(5817), + [5647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3181), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [5666] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(5817), + [5670] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3181), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [5676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(5817), + [5679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3181), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [5690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1923), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [5701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), + [5703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5469), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [5712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(5817), + [5715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3181), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), REDUCE(sym_c_type, 4, 0, 21), + [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 21), + [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), + [5787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), REDUCE(sym_c_type, 4, 0, 0), + [5790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), + [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), + [5825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5627), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), + [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), + [5843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), REDUCE(sym_c_type, 3, 0, 0), + [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), + [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 1, 0, 0), + [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 1, 0, 0), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), REDUCE(sym_c_type, 5, 0, 21), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 21), + [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1919), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [5884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5612), + [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 2, 0, 20), + [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 2, 0, 20), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [5893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(5817), + [5896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3181), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [5901] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(5817), + [5905] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3181), + [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 2, 0, 0), + [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 2, 0, 0), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(5817), + [5928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3181), + [5931] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(5817), + [5935] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3181), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(5817), + [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3181), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [5951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(5817), + [5954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3181), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), + [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), + [5979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), + [5982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), + [5985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), + [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3163), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 2, 0, 0), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 2, 0, 0), + [5999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), + [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 4, 0, 0), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 4, 0, 0), + [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), + [6009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), + [6012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 5, 0, 0), + [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 5, 0, 0), + [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), + [6019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), + [6022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), + [6025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), + [6028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 3, 0, 0), + [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 3, 0, 0), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 6, 0, 0), + [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 6, 0, 0), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), + [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), + [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), + [6063] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), SHIFT(3181), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5716), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [6074] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3181), + [6078] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), SHIFT(3181), + [6082] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3181), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 2, 0, 0), + [6092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parameters, 2, 0, 0), + [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 2, 0, 0), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 2, 0, 0), + [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 3, 0, 0), + [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 3, 0, 0), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3163), + [6115] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3181), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), + [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), + [6127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5719), + [6133] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3181), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 10), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 21), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 21), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), REDUCE(sym_c_type, 6, 0, 0), + [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 6, 0, 0), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [6200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), + [6203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5564), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [6208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1526), + [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), + [6213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), REDUCE(sym_c_type, 5, 0, 0), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [6218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 129), + [6235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 129), SHIFT(3181), + [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 129), + [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), + [6242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), SHIFT(3181), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), + [6247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), SHIFT(3181), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), + [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), + [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), + [6258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), SHIFT(3181), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), + [6265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), SHIFT(3181), + [6268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), SHIFT(3181), + [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), + [6273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), SHIFT(3181), + [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), + [6278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), SHIFT(3181), + [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 159), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), + [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), + [6291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 159), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 0), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 0), + [6299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3869), + [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3869), + [6305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3184), + [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), + [6310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), SHIFT(3181), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), + [6315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), SHIFT(3181), + [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), + [6320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), SHIFT(3181), + [6323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 129), SHIFT(3181), + [6326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), SHIFT(3181), + [6329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), SHIFT(3181), + [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), + [6334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), SHIFT(3181), + [6337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 4, 0, 0), + [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 4, 0, 0), + [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 159), SHIFT(3181), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), + [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), SHIFT(3181), + [6369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 159), SHIFT(3181), + [6372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), SHIFT(3181), + [6375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), SHIFT(3181), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 0), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3181), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [6405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3750), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [6428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(948), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 0), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [6457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5569), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [6498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 0), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [6508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 0), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [6520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(807), + [6523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3986), + [6526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3986), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [6533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3184), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [6544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 0), + [6602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 21), + [6604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 10), + [6606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 10), + [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [6610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [6630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 21), + [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [6642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 6, 0, 0), + [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1731), + [6649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1883), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [6662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [6664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1443), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [6685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1431), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), + [6724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [6756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1464), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [6815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1790), + [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [6882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3961), + [6885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3961), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 52), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [6902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1853), + [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [6937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [6987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1861), + [6990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [7072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [7162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [7196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), + [7199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5798), + [7202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1914), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 10), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 93), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), + [7242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5683), + [7245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [7346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1663), + [7349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5819), + [7352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1917), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [7395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5744), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 63), + [7490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 63), + [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 64), + [7494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 64), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 103), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 4, 0, 0), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 24), + [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 41), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 98), + [7534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 98), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 99), + [7538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 99), + [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 100), + [7542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 100), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 127), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 1, 0, 0), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 173), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1922), + [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 5, 0, 0), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 139), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 140), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [7633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3119), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 43), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [7650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1166), + [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [7665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1174), + [7668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 4, 0, 0), + [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 2, 0, 0), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 25), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 4, 0, 0), + [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 5, 0, 87), + [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), + [7701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 3, 0, 0), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 4, 0, 84), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 4, 0, 0), + [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1455), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 32), + [7741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 32), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 138), + [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 138), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1869), + [7768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 92), + [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 24), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [7776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), + [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 32), + [7781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 32), + [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 10), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 22), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [7827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3121), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 0), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [7886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 54), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3116), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1669), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 205), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 207), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [8007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [8009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4458), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [8030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 207), + [8036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [8038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(4475), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 174), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), + [8069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3132), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [8148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [8152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 174), + [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 205), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), + [8192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(1710), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 2, 0, 0), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [8235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1921), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 1, 0, 0), + [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 4, 0, 0), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [8272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2848), + [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [8277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [8289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 18), + [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), + [8320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(4867), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [8327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), SHIFT_REPEAT(2857), + [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), + [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [8336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 1, 0, 0), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [8346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 1, 0, 0), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [8384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5799), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [8407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [8483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), SHIFT_REPEAT(5540), + [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [8542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), + [8545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), SHIFT_REPEAT(1726), + [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 3, 0, 0), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [8644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1216), + [8647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [8671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 3, 0, 0), + [8673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), + [8675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [8717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [8720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 53), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [8750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2842), + [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [8759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 3, 0, 0), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [8772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), + [8775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [8815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(5180), + [8818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2843), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [8849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(459), + [8852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [8908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), SHIFT_REPEAT(3307), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [8915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), SHIFT_REPEAT(5440), + [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [8934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3308), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [8951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5554), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [8981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), SHIFT_REPEAT(1081), + [8984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [9010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [9127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3919), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), - [9145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1867), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [9176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1439), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [9183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [9190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5388), - [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [9223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 4, 0, 0), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [9243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(443), - [9246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [9248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 3, 0, 0), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [9262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(940), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [9291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(4807), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [9296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), - [9298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [9336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1804), - [9339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(976), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [9392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 52), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [9412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 35), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [9416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 171), - [9418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 4, 0, 10), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [9424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 65), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [9436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 200), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [9444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [9448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 201), - [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 36), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 202), - [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [9498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 170), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [9502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 101), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [9532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 26), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [9552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 225), - [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [9558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 226), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [9576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 5, 0, 10), - [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [9598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 102), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [9606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [9618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [9622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 227), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [9628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 27), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [9638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 37), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [9642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 91), - [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [9650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 247), - [9652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 248), - [9654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 249), - [9656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [9660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [9666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 38), - [9668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [9670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 228), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [9678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), - [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [9686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 260), - [9694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 4, 0, 0), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [9722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [9724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_default, 2, 0, 0), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [9732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 38), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 2, 0, 0), - [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [9764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_argument_type, 5, 0, 0), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [9874] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [9942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [9996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 5, 0, 0), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [9119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(990), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [9126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), + [9128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [9153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [9158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), SHIFT_REPEAT(5427), + [9161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [9201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4020), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [9234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [9241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 3, 0, 87), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [9315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [9380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 34), + [9382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1203), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(973), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [9418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [9431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 1, 0, 0), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [9441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5296), + [9444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 4, 0, 0), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [9496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1920), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [9505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 52), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [9523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 206), SHIFT_REPEAT(3114), + [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 206), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [9568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 209), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [9580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 4, 0, 10), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [9588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [9594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [9600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [9606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), + [9608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 65), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [9618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_default, 2, 0, 0), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [9632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [9678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [9694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 101), + [9696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 208), + [9698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 91), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [9710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 262), + [9712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 263), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [9728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 210), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [9732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 264), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 4, 0, 0), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [9744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [9746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 175), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [9760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 5, 0, 10), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 38), + [9768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 102), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 26), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [9784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 2, 0, 0), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 276), + [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 237), + [9792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 238), + [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 35), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [9808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 36), + [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 37), + [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 38), + [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [9838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 27), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [9864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_argument_type, 5, 0, 0), + [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 239), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [9884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 240), + [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [9894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [9896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 174), + [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [10058] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [10144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 5, 0, 0), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [10292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [10468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), }; enum ts_external_scanner_symbol_identifiers { @@ -288853,12 +294454,12 @@ static const bool ts_external_scanner_states[22][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACK] = true, }, [9] = { + [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_except] = true, }, [10] = { - [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_except] = true, diff --git a/test/corpus/cython.txt b/test/corpus/cython.txt index 74b7bd0..f725a9e 100644 --- a/test/corpus/cython.txt +++ b/test/corpus/cython.txt @@ -1101,3 +1101,23 @@ cdef extern from *: (int_type)) (maybe_typed_name (int_type))))))))))) +===================================== +For-from loop with "by" argument +===================================== +for i from 0 <= i < 10 by 2: + print(i) +--- +(module + (for_statement + (identifier) + (comparison_operator + (integer) + (identifier) + (integer)) + (integer) + (block + (expression_statement + (call + (identifier) + (argument_list + (identifier))))))) From 83f21a9d5ac362a934e14f5d8bec46ca503efccd Mon Sep 17 00:00:00 2001 From: Christoph Hansknecht Date: Fri, 22 Nov 2024 09:39:27 +0100 Subject: [PATCH 2/2] Add support for IF statements --- grammar.js | 27 +- src/grammar.json | 114 +- src/node-types.json | 158 +- src/parser.c | 348510 +++++++++++++++++++------------------- test/corpus/cython.txt | 31 + 5 files changed, 177044 insertions(+), 171796 deletions(-) diff --git a/grammar.js b/grammar.js index 87c889d..a39f5a6 100644 --- a/grammar.js +++ b/grammar.js @@ -129,7 +129,8 @@ module.exports = grammar(Python, { _compound_statement: ($, original) => choice( original, - $.def_statement, + $.DEF_statement, + $.IF_statement, $.cdef_statement, $.ctypedef_statement, $.property_definition, @@ -148,7 +149,7 @@ module.exports = grammar(Python, { ), ), - def_statement: $ => + DEF_statement: $ => seq( "DEF", field("name", $.identifier), @@ -157,6 +158,28 @@ module.exports = grammar(Python, { $._newline, ), + IF_statement: $ => seq( + "IF", + field("condition", $.expression), + ":", + field("consequence", $._suite), + repeat(field("alternative", $.ELIF_clause)), + optional(field("alternative", $.ELSE_clause)), + ), + + ELIF_clause: $ => seq( + "ELIF", + field("condition", $.expression), + ":", + field("consequence", $._suite), + ), + + ELSE_clause: $ => seq( + "ELSE", + ":", + field("body", $._suite), + ), + cdef_statement: $ => seq( choice("cdef", "cpdef"), diff --git a/src/grammar.json b/src/grammar.json index d5a6dc2..3ee56c2 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -851,7 +851,11 @@ }, { "type": "SYMBOL", - "name": "def_statement" + "name": "DEF_statement" + }, + { + "type": "SYMBOL", + "name": "IF_statement" }, { "type": "SYMBOL", @@ -6660,7 +6664,7 @@ } ] }, - "def_statement": { + "DEF_statement": { "type": "SEQ", "members": [ { @@ -6689,6 +6693,112 @@ } ] }, + "IF_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "IF" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "ELIF_clause" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "ELSE_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "ELIF_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "ELIF" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + } + ] + }, + "ELSE_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "ELSE" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + } + ] + }, "cdef_statement": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 662462c..d874684 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3,6 +3,14 @@ "type": "_compound_statement", "named": true, "subtypes": [ + { + "type": "DEF_statement", + "named": true + }, + { + "type": "IF_statement", + "named": true + }, { "type": "cdef_statement", "named": true @@ -19,10 +27,6 @@ "type": "decorated_definition", "named": true }, - { - "type": "def_statement", - "named": true - }, { "type": "for_statement", "named": true @@ -359,6 +363,114 @@ } ] }, + { + "type": "DEF_statement", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "ELIF_clause", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + } + }, + { + "type": "ELSE_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + } + }, + { + "type": "IF_statement", + "named": true, + "fields": { + "alternative": { + "multiple": true, + "required": false, + "types": [ + { + "type": "ELIF_clause", + "named": true + }, + { + "type": "ELSE_clause", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + } + }, { "type": "aliased_import", "named": true, @@ -1700,32 +1812,6 @@ ] } }, - { - "type": "def_statement", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression", - "named": true - } - ] - } - }, { "type": "default_parameter", "named": true, @@ -4578,6 +4664,18 @@ "type": "DEF", "named": false }, + { + "type": "ELIF", + "named": false + }, + { + "type": "ELSE", + "named": false + }, + { + "type": "IF", + "named": false + }, { "type": "None", "named": false diff --git a/src/parser.c b/src/parser.c index ecfcd1c..3ab3700 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,11 +5,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5827 -#define LARGE_STATE_COUNT 1079 -#define SYMBOL_COUNT 399 +#define STATE_COUNT 5877 +#define LARGE_STATE_COUNT 1163 +#define SYMBOL_COUNT 406 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 169 +#define TOKEN_COUNT 172 #define EXTERNAL_TOKEN_COUNT 12 #define FIELD_COUNT 33 #define MAX_ALIAS_SEQUENCE_LENGTH 12 @@ -125,298 +125,305 @@ enum ts_symbol_identifiers { anon_sym_property = 107, anon_sym_include = 108, anon_sym_DEF = 109, - anon_sym_cdef = 110, - anon_sym_cpdef = 111, - anon_sym_extern = 112, - anon_sym_namespace = 113, - anon_sym_nogil = 114, - anon_sym_int = 115, - anon_sym_double = 116, - anon_sym_complex = 117, - anon_sym_operator = 118, - anon_sym_co_await = 119, - anon_sym_BANG = 120, - anon_sym_LT_EQ_GT = 121, - anon_sym_AMP_AMP = 122, - anon_sym_PIPE_PIPE = 123, - anon_sym_PLUS_PLUS = 124, - anon_sym_DASH_DASH = 125, - anon_sym_DASH_GT_STAR = 126, - anon_sym_LPAREN_RPAREN = 127, - anon_sym_LBRACK_RBRACK = 128, - anon_sym_xor = 129, - anon_sym_bitand = 130, - anon_sym_bitor = 131, - anon_sym_compl = 132, - anon_sym_xor_eq = 133, - anon_sym_and_eq = 134, - anon_sym_or_eq = 135, - anon_sym_not_eq = 136, - anon_sym_new = 137, - anon_sym_delete = 138, - anon_sym_DQUOTE_DQUOTE = 139, - anon_sym_signed = 140, - anon_sym_unsigned = 141, - anon_sym_char = 142, - anon_sym_short = 143, - anon_sym_long = 144, - anon_sym_const = 145, - anon_sym_volatile = 146, - anon_sym___stdcall = 147, - anon_sym_ctypedef = 148, - anon_sym_gil = 149, - anon_sym_QMARK = 150, - anon_sym_noexcept = 151, - anon_sym_struct = 152, - anon_sym_union = 153, - anon_sym_enum = 154, - anon_sym_cppclass = 155, - anon_sym_fused = 156, - anon_sym_public = 157, - anon_sym_packed = 158, - anon_sym_inline = 159, - anon_sym_readonly = 160, - anon_sym_sizeof = 161, - sym__newline = 162, - sym__indent = 163, - sym__dedent = 164, - sym_string_start = 165, - sym__string_content = 166, - sym_escape_interpolation = 167, - sym_string_end = 168, - sym_module = 169, - sym__statement = 170, - sym__simple_statements = 171, - sym_import_statement = 172, - sym_import_prefix = 173, - sym_relative_import = 174, - sym_future_import_statement = 175, - sym_import_from_statement = 176, - sym__import_list = 177, - sym_aliased_import = 178, - sym_wildcard_import = 179, - sym_print_statement = 180, - sym_chevron = 181, - sym_assert_statement = 182, - sym_expression_statement = 183, - sym_named_expression = 184, - sym__named_expression_lhs = 185, - sym_return_statement = 186, - sym_delete_statement = 187, - sym_raise_statement = 188, - sym_pass_statement = 189, - sym_break_statement = 190, - sym_continue_statement = 191, - sym_if_statement = 192, - sym_elif_clause = 193, - sym_else_clause = 194, - sym_match_statement = 195, - sym__match_block = 196, - sym_case_clause = 197, - sym_for_statement = 198, - sym_while_statement = 199, - sym_try_statement = 200, - sym_except_clause = 201, - sym_except_group_clause = 202, - sym_finally_clause = 203, - sym_with_statement = 204, - sym_with_clause = 205, - sym_with_item = 206, - sym_function_definition = 207, - sym_parameters = 208, - sym_lambda_parameters = 209, - sym_list_splat = 210, - sym_dictionary_splat = 211, - sym_global_statement = 212, - sym_nonlocal_statement = 213, - sym_exec_statement = 214, - sym_type_alias_statement = 215, - sym_class_definition = 216, - sym_type_parameter = 217, - sym_parenthesized_list_splat = 218, - sym_argument_list = 219, - sym_decorated_definition = 220, - sym_decorator = 221, - sym_block = 222, - sym_expression_list = 223, - sym_dotted_name = 224, - sym_case_pattern = 225, - sym__simple_pattern = 226, - sym__as_pattern = 227, - sym_union_pattern = 228, - sym__list_pattern = 229, - sym__tuple_pattern = 230, - sym_dict_pattern = 231, - sym__key_value_pattern = 232, - sym_keyword_pattern = 233, - sym_splat_pattern = 234, - sym_class_pattern = 235, - sym_complex_pattern = 236, - sym__parameters = 237, - sym__patterns = 238, - sym_parameter = 239, - sym_pattern = 240, - sym_tuple_pattern = 241, - sym_list_pattern = 242, - sym_default_parameter = 243, - sym_typed_default_parameter = 244, - sym_list_splat_pattern = 245, - sym_dictionary_splat_pattern = 246, - sym_as_pattern = 247, - sym__expression_within_for_in_clause = 248, - sym_expression = 249, - sym_primary_expression = 250, - sym_not_operator = 251, - sym_boolean_operator = 252, - sym_binary_operator = 253, - sym_unary_operator = 254, - sym__not_in = 255, - sym__is_not = 256, - sym_comparison_operator = 257, - sym_lambda = 258, - sym_lambda_within_for_in_clause = 259, - sym_assignment = 260, - sym_augmented_assignment = 261, - sym_pattern_list = 262, - sym__right_hand_side = 263, - sym_yield = 264, - sym_attribute = 265, - sym_subscript = 266, - sym_slice = 267, - sym_ellipsis = 268, - sym_call = 269, - sym_typed_parameter = 270, - sym_type = 271, - sym_splat_type = 272, - sym_generic_type = 273, - sym_union_type = 274, - sym_constrained_type = 275, - sym_member_type = 276, - sym_keyword_argument = 277, - sym_list = 278, - sym_set = 279, - sym_tuple = 280, - sym_dictionary = 281, - sym_pair = 282, - sym_list_comprehension = 283, - sym_dictionary_comprehension = 284, - sym_set_comprehension = 285, - sym_generator_expression = 286, - sym__comprehension_clauses = 287, - sym_parenthesized_expression = 288, - sym__collection_elements = 289, - sym_for_in_clause = 290, - sym_if_clause = 291, - sym_conditional_expression = 292, - sym_concatenated_string = 293, - sym_string = 294, - sym_string_content = 295, - sym_interpolation = 296, - sym__f_expression = 297, - sym__not_escape_sequence = 298, - sym_format_specifier = 299, - sym_none = 300, - sym_await = 301, - sym_positional_separator = 302, - sym_keyword_separator = 303, - sym_run_directive = 304, - sym_external_definition = 305, - sym_property_definition = 306, - sym_include_statement = 307, - sym_def_statement = 308, - sym_cdef_statement = 309, - sym_cdef_definition_block = 310, - sym_cvar_def = 311, - sym_cdef_type_declaration = 312, - sym_extern_block = 313, - sym_extern_suite = 314, - sym_ctype_declaration = 315, - sym_cvar_decl = 316, - sym_int_type = 317, - sym_operator_name = 318, - sym__signedness = 319, - sym__longness = 320, - sym_function_pointer_type = 321, - sym_c_type = 322, - sym_c_name = 323, - sym_maybe_typed_name = 324, - sym_c_function_pointer_name = 325, - sym_type_qualifier = 326, - sym_type_index = 327, - sym_memory_view_index = 328, - sym_ctypedef_statement = 329, - sym_c_function_definition = 330, - sym_template_default = 331, - sym_template_param = 332, - sym_template_params = 333, - sym_c_parameters = 334, - sym_c_function_argument_type = 335, - sym__typedargument = 336, - sym__typedargslist = 337, - sym_gil_spec = 338, - sym_exception_value = 339, - sym_struct = 340, - sym_struct_suite = 341, - sym_enum = 342, - sym_cppclass = 343, - sym__cppclass_suite = 344, - sym_fused = 345, - sym_storageclass = 346, - sym_new_expression = 347, - sym_sizeof_expression = 348, - sym_cast_expression = 349, - aux_sym_module_repeat1 = 350, - aux_sym__simple_statements_repeat1 = 351, - aux_sym_import_prefix_repeat1 = 352, - aux_sym__import_list_repeat1 = 353, - aux_sym_print_statement_repeat1 = 354, - aux_sym_assert_statement_repeat1 = 355, - aux_sym_if_statement_repeat1 = 356, - aux_sym_match_statement_repeat1 = 357, - aux_sym__match_block_repeat1 = 358, - aux_sym_case_clause_repeat1 = 359, - aux_sym_try_statement_repeat1 = 360, - aux_sym_try_statement_repeat2 = 361, - aux_sym_with_clause_repeat1 = 362, - aux_sym_global_statement_repeat1 = 363, - aux_sym_class_definition_repeat1 = 364, - aux_sym_class_definition_repeat2 = 365, - aux_sym_type_parameter_repeat1 = 366, - aux_sym_argument_list_repeat1 = 367, - aux_sym_decorated_definition_repeat1 = 368, - aux_sym_union_pattern_repeat1 = 369, - aux_sym_dict_pattern_repeat1 = 370, - aux_sym__parameters_repeat1 = 371, - aux_sym__patterns_repeat1 = 372, - aux_sym_comparison_operator_repeat1 = 373, - aux_sym_subscript_repeat1 = 374, - aux_sym_dictionary_repeat1 = 375, - aux_sym__comprehension_clauses_repeat1 = 376, - aux_sym__collection_elements_repeat1 = 377, - aux_sym_for_in_clause_repeat1 = 378, - aux_sym_concatenated_string_repeat1 = 379, - aux_sym_string_repeat1 = 380, - aux_sym_string_content_repeat1 = 381, - aux_sym_format_specifier_repeat1 = 382, - aux_sym_external_definition_repeat1 = 383, - aux_sym_cdef_definition_block_repeat1 = 384, - aux_sym_cvar_def_repeat1 = 385, - aux_sym_extern_suite_repeat1 = 386, - aux_sym_cvar_decl_repeat1 = 387, - aux_sym_cvar_decl_repeat2 = 388, - aux_sym_function_pointer_type_repeat1 = 389, - aux_sym_c_type_repeat1 = 390, - aux_sym_type_qualifier_repeat1 = 391, - aux_sym_type_index_repeat1 = 392, - aux_sym_type_index_repeat2 = 393, - aux_sym_template_params_repeat1 = 394, - aux_sym__typedargslist_repeat1 = 395, - aux_sym_struct_suite_repeat1 = 396, - aux_sym__cppclass_suite_repeat1 = 397, - aux_sym_fused_repeat1 = 398, - alias_sym_as_pattern_target = 399, - alias_sym_format_expression = 400, - anon_alias_sym_longlong = 401, + anon_sym_IF = 110, + anon_sym_ELIF = 111, + anon_sym_ELSE = 112, + anon_sym_cdef = 113, + anon_sym_cpdef = 114, + anon_sym_extern = 115, + anon_sym_namespace = 116, + anon_sym_nogil = 117, + anon_sym_int = 118, + anon_sym_double = 119, + anon_sym_complex = 120, + anon_sym_operator = 121, + anon_sym_co_await = 122, + anon_sym_BANG = 123, + anon_sym_LT_EQ_GT = 124, + anon_sym_AMP_AMP = 125, + anon_sym_PIPE_PIPE = 126, + anon_sym_PLUS_PLUS = 127, + anon_sym_DASH_DASH = 128, + anon_sym_DASH_GT_STAR = 129, + anon_sym_LPAREN_RPAREN = 130, + anon_sym_LBRACK_RBRACK = 131, + anon_sym_xor = 132, + anon_sym_bitand = 133, + anon_sym_bitor = 134, + anon_sym_compl = 135, + anon_sym_xor_eq = 136, + anon_sym_and_eq = 137, + anon_sym_or_eq = 138, + anon_sym_not_eq = 139, + anon_sym_new = 140, + anon_sym_delete = 141, + anon_sym_DQUOTE_DQUOTE = 142, + anon_sym_signed = 143, + anon_sym_unsigned = 144, + anon_sym_char = 145, + anon_sym_short = 146, + anon_sym_long = 147, + anon_sym_const = 148, + anon_sym_volatile = 149, + anon_sym___stdcall = 150, + anon_sym_ctypedef = 151, + anon_sym_gil = 152, + anon_sym_QMARK = 153, + anon_sym_noexcept = 154, + anon_sym_struct = 155, + anon_sym_union = 156, + anon_sym_enum = 157, + anon_sym_cppclass = 158, + anon_sym_fused = 159, + anon_sym_public = 160, + anon_sym_packed = 161, + anon_sym_inline = 162, + anon_sym_readonly = 163, + anon_sym_sizeof = 164, + sym__newline = 165, + sym__indent = 166, + sym__dedent = 167, + sym_string_start = 168, + sym__string_content = 169, + sym_escape_interpolation = 170, + sym_string_end = 171, + sym_module = 172, + sym__statement = 173, + sym__simple_statements = 174, + sym_import_statement = 175, + sym_import_prefix = 176, + sym_relative_import = 177, + sym_future_import_statement = 178, + sym_import_from_statement = 179, + sym__import_list = 180, + sym_aliased_import = 181, + sym_wildcard_import = 182, + sym_print_statement = 183, + sym_chevron = 184, + sym_assert_statement = 185, + sym_expression_statement = 186, + sym_named_expression = 187, + sym__named_expression_lhs = 188, + sym_return_statement = 189, + sym_delete_statement = 190, + sym_raise_statement = 191, + sym_pass_statement = 192, + sym_break_statement = 193, + sym_continue_statement = 194, + sym_if_statement = 195, + sym_elif_clause = 196, + sym_else_clause = 197, + sym_match_statement = 198, + sym__match_block = 199, + sym_case_clause = 200, + sym_for_statement = 201, + sym_while_statement = 202, + sym_try_statement = 203, + sym_except_clause = 204, + sym_except_group_clause = 205, + sym_finally_clause = 206, + sym_with_statement = 207, + sym_with_clause = 208, + sym_with_item = 209, + sym_function_definition = 210, + sym_parameters = 211, + sym_lambda_parameters = 212, + sym_list_splat = 213, + sym_dictionary_splat = 214, + sym_global_statement = 215, + sym_nonlocal_statement = 216, + sym_exec_statement = 217, + sym_type_alias_statement = 218, + sym_class_definition = 219, + sym_type_parameter = 220, + sym_parenthesized_list_splat = 221, + sym_argument_list = 222, + sym_decorated_definition = 223, + sym_decorator = 224, + sym_block = 225, + sym_expression_list = 226, + sym_dotted_name = 227, + sym_case_pattern = 228, + sym__simple_pattern = 229, + sym__as_pattern = 230, + sym_union_pattern = 231, + sym__list_pattern = 232, + sym__tuple_pattern = 233, + sym_dict_pattern = 234, + sym__key_value_pattern = 235, + sym_keyword_pattern = 236, + sym_splat_pattern = 237, + sym_class_pattern = 238, + sym_complex_pattern = 239, + sym__parameters = 240, + sym__patterns = 241, + sym_parameter = 242, + sym_pattern = 243, + sym_tuple_pattern = 244, + sym_list_pattern = 245, + sym_default_parameter = 246, + sym_typed_default_parameter = 247, + sym_list_splat_pattern = 248, + sym_dictionary_splat_pattern = 249, + sym_as_pattern = 250, + sym__expression_within_for_in_clause = 251, + sym_expression = 252, + sym_primary_expression = 253, + sym_not_operator = 254, + sym_boolean_operator = 255, + sym_binary_operator = 256, + sym_unary_operator = 257, + sym__not_in = 258, + sym__is_not = 259, + sym_comparison_operator = 260, + sym_lambda = 261, + sym_lambda_within_for_in_clause = 262, + sym_assignment = 263, + sym_augmented_assignment = 264, + sym_pattern_list = 265, + sym__right_hand_side = 266, + sym_yield = 267, + sym_attribute = 268, + sym_subscript = 269, + sym_slice = 270, + sym_ellipsis = 271, + sym_call = 272, + sym_typed_parameter = 273, + sym_type = 274, + sym_splat_type = 275, + sym_generic_type = 276, + sym_union_type = 277, + sym_constrained_type = 278, + sym_member_type = 279, + sym_keyword_argument = 280, + sym_list = 281, + sym_set = 282, + sym_tuple = 283, + sym_dictionary = 284, + sym_pair = 285, + sym_list_comprehension = 286, + sym_dictionary_comprehension = 287, + sym_set_comprehension = 288, + sym_generator_expression = 289, + sym__comprehension_clauses = 290, + sym_parenthesized_expression = 291, + sym__collection_elements = 292, + sym_for_in_clause = 293, + sym_if_clause = 294, + sym_conditional_expression = 295, + sym_concatenated_string = 296, + sym_string = 297, + sym_string_content = 298, + sym_interpolation = 299, + sym__f_expression = 300, + sym__not_escape_sequence = 301, + sym_format_specifier = 302, + sym_none = 303, + sym_await = 304, + sym_positional_separator = 305, + sym_keyword_separator = 306, + sym_run_directive = 307, + sym_external_definition = 308, + sym_property_definition = 309, + sym_include_statement = 310, + sym_DEF_statement = 311, + sym_IF_statement = 312, + sym_ELIF_clause = 313, + sym_ELSE_clause = 314, + sym_cdef_statement = 315, + sym_cdef_definition_block = 316, + sym_cvar_def = 317, + sym_cdef_type_declaration = 318, + sym_extern_block = 319, + sym_extern_suite = 320, + sym_ctype_declaration = 321, + sym_cvar_decl = 322, + sym_int_type = 323, + sym_operator_name = 324, + sym__signedness = 325, + sym__longness = 326, + sym_function_pointer_type = 327, + sym_c_type = 328, + sym_c_name = 329, + sym_maybe_typed_name = 330, + sym_c_function_pointer_name = 331, + sym_type_qualifier = 332, + sym_type_index = 333, + sym_memory_view_index = 334, + sym_ctypedef_statement = 335, + sym_c_function_definition = 336, + sym_template_default = 337, + sym_template_param = 338, + sym_template_params = 339, + sym_c_parameters = 340, + sym_c_function_argument_type = 341, + sym__typedargument = 342, + sym__typedargslist = 343, + sym_gil_spec = 344, + sym_exception_value = 345, + sym_struct = 346, + sym_struct_suite = 347, + sym_enum = 348, + sym_cppclass = 349, + sym__cppclass_suite = 350, + sym_fused = 351, + sym_storageclass = 352, + sym_new_expression = 353, + sym_sizeof_expression = 354, + sym_cast_expression = 355, + aux_sym_module_repeat1 = 356, + aux_sym__simple_statements_repeat1 = 357, + aux_sym_import_prefix_repeat1 = 358, + aux_sym__import_list_repeat1 = 359, + aux_sym_print_statement_repeat1 = 360, + aux_sym_assert_statement_repeat1 = 361, + aux_sym_if_statement_repeat1 = 362, + aux_sym_match_statement_repeat1 = 363, + aux_sym__match_block_repeat1 = 364, + aux_sym_case_clause_repeat1 = 365, + aux_sym_try_statement_repeat1 = 366, + aux_sym_try_statement_repeat2 = 367, + aux_sym_with_clause_repeat1 = 368, + aux_sym_global_statement_repeat1 = 369, + aux_sym_class_definition_repeat1 = 370, + aux_sym_class_definition_repeat2 = 371, + aux_sym_type_parameter_repeat1 = 372, + aux_sym_argument_list_repeat1 = 373, + aux_sym_decorated_definition_repeat1 = 374, + aux_sym_union_pattern_repeat1 = 375, + aux_sym_dict_pattern_repeat1 = 376, + aux_sym__parameters_repeat1 = 377, + aux_sym__patterns_repeat1 = 378, + aux_sym_comparison_operator_repeat1 = 379, + aux_sym_subscript_repeat1 = 380, + aux_sym_dictionary_repeat1 = 381, + aux_sym__comprehension_clauses_repeat1 = 382, + aux_sym__collection_elements_repeat1 = 383, + aux_sym_for_in_clause_repeat1 = 384, + aux_sym_concatenated_string_repeat1 = 385, + aux_sym_string_repeat1 = 386, + aux_sym_string_content_repeat1 = 387, + aux_sym_format_specifier_repeat1 = 388, + aux_sym_external_definition_repeat1 = 389, + aux_sym_IF_statement_repeat1 = 390, + aux_sym_cdef_definition_block_repeat1 = 391, + aux_sym_cvar_def_repeat1 = 392, + aux_sym_extern_suite_repeat1 = 393, + aux_sym_cvar_decl_repeat1 = 394, + aux_sym_cvar_decl_repeat2 = 395, + aux_sym_function_pointer_type_repeat1 = 396, + aux_sym_c_type_repeat1 = 397, + aux_sym_type_qualifier_repeat1 = 398, + aux_sym_type_index_repeat1 = 399, + aux_sym_type_index_repeat2 = 400, + aux_sym_template_params_repeat1 = 401, + aux_sym__typedargslist_repeat1 = 402, + aux_sym_struct_suite_repeat1 = 403, + aux_sym__cppclass_suite_repeat1 = 404, + aux_sym_fused_repeat1 = 405, + alias_sym_as_pattern_target = 406, + alias_sym_format_expression = 407, + anon_alias_sym_longlong = 408, }; static const char * const ts_symbol_names[] = { @@ -530,6 +537,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_property] = "property", [anon_sym_include] = "include", [anon_sym_DEF] = "DEF", + [anon_sym_IF] = "IF", + [anon_sym_ELIF] = "ELIF", + [anon_sym_ELSE] = "ELSE", [anon_sym_cdef] = "cdef", [anon_sym_cpdef] = "cpdef", [anon_sym_extern] = "extern", @@ -728,7 +738,10 @@ static const char * const ts_symbol_names[] = { [sym_external_definition] = "external_definition", [sym_property_definition] = "property_definition", [sym_include_statement] = "include_statement", - [sym_def_statement] = "def_statement", + [sym_DEF_statement] = "DEF_statement", + [sym_IF_statement] = "IF_statement", + [sym_ELIF_clause] = "ELIF_clause", + [sym_ELSE_clause] = "ELSE_clause", [sym_cdef_statement] = "cdef_statement", [sym_cdef_definition_block] = "cdef_definition_block", [sym_cvar_def] = "cvar_def", @@ -804,6 +817,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_IF_statement_repeat1] = "IF_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", @@ -935,6 +949,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_property] = anon_sym_property, [anon_sym_include] = anon_sym_include, [anon_sym_DEF] = anon_sym_DEF, + [anon_sym_IF] = anon_sym_IF, + [anon_sym_ELIF] = anon_sym_ELIF, + [anon_sym_ELSE] = anon_sym_ELSE, [anon_sym_cdef] = anon_sym_cdef, [anon_sym_cpdef] = anon_sym_cpdef, [anon_sym_extern] = anon_sym_extern, @@ -1133,7 +1150,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_external_definition] = sym_external_definition, [sym_property_definition] = sym_property_definition, [sym_include_statement] = sym_include_statement, - [sym_def_statement] = sym_def_statement, + [sym_DEF_statement] = sym_DEF_statement, + [sym_IF_statement] = sym_IF_statement, + [sym_ELIF_clause] = sym_ELIF_clause, + [sym_ELSE_clause] = sym_ELSE_clause, [sym_cdef_statement] = sym_cdef_statement, [sym_cdef_definition_block] = sym_cdef_definition_block, [sym_cvar_def] = sym_cvar_def, @@ -1209,6 +1229,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_IF_statement_repeat1] = aux_sym_IF_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, @@ -1670,6 +1691,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_IF] = { + .visible = true, + .named = false, + }, + [anon_sym_ELIF] = { + .visible = true, + .named = false, + }, + [anon_sym_ELSE] = { + .visible = true, + .named = false, + }, [anon_sym_cdef] = { .visible = true, .named = false, @@ -2466,7 +2499,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_def_statement] = { + [sym_DEF_statement] = { + .visible = true, + .named = true, + }, + [sym_IF_statement] = { + .visible = true, + .named = true, + }, + [sym_ELIF_clause] = { + .visible = true, + .named = true, + }, + [sym_ELSE_clause] = { .visible = true, .named = true, }, @@ -2770,6 +2815,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_IF_statement_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_cdef_definition_block_repeat1] = { .visible = false, .named = false, @@ -4480,8 +4529,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [29] = 29, [30] = 30, [31] = 31, - [32] = 2, - [33] = 33, + [32] = 32, + [33] = 2, [34] = 34, [35] = 35, [36] = 36, @@ -4534,176 +4583,176 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [83] = 83, [84] = 84, [85] = 85, - [86] = 5, - [87] = 6, - [88] = 7, - [89] = 8, - [90] = 9, - [91] = 10, - [92] = 11, - [93] = 12, - [94] = 13, - [95] = 14, - [96] = 15, - [97] = 16, - [98] = 17, - [99] = 18, - [100] = 19, - [101] = 20, - [102] = 21, - [103] = 22, - [104] = 23, - [105] = 24, - [106] = 25, - [107] = 26, - [108] = 27, - [109] = 28, - [110] = 29, - [111] = 30, - [112] = 31, - [113] = 33, - [114] = 34, - [115] = 36, - [116] = 37, - [117] = 38, - [118] = 39, - [119] = 40, - [120] = 41, - [121] = 42, - [122] = 43, - [123] = 44, - [124] = 45, - [125] = 46, - [126] = 47, - [127] = 48, - [128] = 49, - [129] = 51, - [130] = 52, - [131] = 53, - [132] = 54, - [133] = 55, - [134] = 56, - [135] = 57, - [136] = 58, - [137] = 59, - [138] = 60, - [139] = 63, - [140] = 64, - [141] = 65, - [142] = 66, - [143] = 67, - [144] = 68, - [145] = 69, - [146] = 70, - [147] = 71, - [148] = 72, - [149] = 73, - [150] = 74, - [151] = 77, - [152] = 78, - [153] = 79, - [154] = 80, - [155] = 81, - [156] = 83, - [157] = 84, - [158] = 85, - [159] = 9, - [160] = 11, - [161] = 15, - [162] = 16, - [163] = 17, - [164] = 18, - [165] = 19, - [166] = 20, - [167] = 27, - [168] = 28, - [169] = 29, - [170] = 30, - [171] = 31, - [172] = 2, - [173] = 33, - [174] = 34, - [175] = 42, - [176] = 43, - [177] = 44, - [178] = 45, - [179] = 46, - [180] = 47, - [181] = 48, - [182] = 54, - [183] = 55, - [184] = 56, - [185] = 57, - [186] = 58, - [187] = 59, - [188] = 60, - [189] = 67, - [190] = 68, - [191] = 69, - [192] = 70, - [193] = 71, - [194] = 72, - [195] = 73, - [196] = 74, - [197] = 77, - [198] = 78, - [199] = 79, - [200] = 80, - [201] = 81, - [202] = 83, - [203] = 84, - [204] = 85, - [205] = 35, - [206] = 206, - [207] = 207, - [208] = 208, - [209] = 209, - [210] = 210, - [211] = 206, - [212] = 207, - [213] = 206, - [214] = 206, - [215] = 206, - [216] = 206, - [217] = 206, - [218] = 206, - [219] = 219, - [220] = 220, - [221] = 221, - [222] = 222, - [223] = 220, - [224] = 221, + [86] = 86, + [87] = 87, + [88] = 88, + [89] = 5, + [90] = 6, + [91] = 7, + [92] = 8, + [93] = 9, + [94] = 10, + [95] = 11, + [96] = 12, + [97] = 13, + [98] = 14, + [99] = 15, + [100] = 16, + [101] = 17, + [102] = 18, + [103] = 19, + [104] = 20, + [105] = 21, + [106] = 22, + [107] = 23, + [108] = 24, + [109] = 25, + [110] = 26, + [111] = 27, + [112] = 28, + [113] = 29, + [114] = 30, + [115] = 31, + [116] = 32, + [117] = 34, + [118] = 35, + [119] = 37, + [120] = 38, + [121] = 39, + [122] = 40, + [123] = 41, + [124] = 42, + [125] = 43, + [126] = 44, + [127] = 45, + [128] = 46, + [129] = 47, + [130] = 48, + [131] = 49, + [132] = 50, + [133] = 51, + [134] = 53, + [135] = 54, + [136] = 55, + [137] = 56, + [138] = 57, + [139] = 58, + [140] = 59, + [141] = 60, + [142] = 61, + [143] = 62, + [144] = 63, + [145] = 66, + [146] = 67, + [147] = 68, + [148] = 69, + [149] = 70, + [150] = 71, + [151] = 72, + [152] = 73, + [153] = 74, + [154] = 75, + [155] = 76, + [156] = 77, + [157] = 80, + [158] = 81, + [159] = 82, + [160] = 83, + [161] = 84, + [162] = 86, + [163] = 87, + [164] = 88, + [165] = 9, + [166] = 12, + [167] = 16, + [168] = 17, + [169] = 18, + [170] = 19, + [171] = 20, + [172] = 21, + [173] = 28, + [174] = 29, + [175] = 30, + [176] = 31, + [177] = 32, + [178] = 2, + [179] = 34, + [180] = 35, + [181] = 43, + [182] = 44, + [183] = 46, + [184] = 47, + [185] = 48, + [186] = 49, + [187] = 50, + [188] = 56, + [189] = 57, + [190] = 58, + [191] = 60, + [192] = 61, + [193] = 62, + [194] = 63, + [195] = 70, + [196] = 71, + [197] = 72, + [198] = 73, + [199] = 74, + [200] = 75, + [201] = 76, + [202] = 77, + [203] = 80, + [204] = 81, + [205] = 82, + [206] = 83, + [207] = 84, + [208] = 86, + [209] = 87, + [210] = 88, + [211] = 36, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 215, + [218] = 215, + [219] = 212, + [220] = 215, + [221] = 215, + [222] = 215, + [223] = 215, + [224] = 215, [225] = 225, [226] = 226, - [227] = 225, - [228] = 220, - [229] = 225, - [230] = 219, - [231] = 222, - [232] = 221, + [227] = 227, + [228] = 228, + [229] = 228, + [230] = 230, + [231] = 231, + [232] = 225, [233] = 226, - [234] = 226, - [235] = 222, - [236] = 219, - [237] = 237, - [238] = 237, - [239] = 239, - [240] = 240, - [241] = 241, - [242] = 240, - [243] = 239, - [244] = 241, - [245] = 245, + [234] = 227, + [235] = 230, + [236] = 225, + [237] = 231, + [238] = 231, + [239] = 226, + [240] = 228, + [241] = 227, + [242] = 230, + [243] = 243, + [244] = 244, + [245] = 243, [246] = 246, [247] = 247, - [248] = 248, - [249] = 249, - [250] = 250, + [248] = 244, + [249] = 247, + [250] = 246, [251] = 251, [252] = 252, [253] = 253, [254] = 254, - [255] = 245, + [255] = 255, [256] = 256, [257] = 257, [258] = 258, @@ -4722,255 +4771,255 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [271] = 271, [272] = 272, [273] = 273, - [274] = 246, + [274] = 274, [275] = 275, [276] = 276, [277] = 277, [278] = 278, - [279] = 279, + [279] = 253, [280] = 280, [281] = 281, [282] = 282, - [283] = 283, + [283] = 254, [284] = 284, - [285] = 250, + [285] = 285, [286] = 286, [287] = 287, [288] = 288, - [289] = 253, + [289] = 289, [290] = 290, [291] = 291, [292] = 292, - [293] = 251, - [294] = 256, + [293] = 293, + [294] = 294, [295] = 295, - [296] = 245, - [297] = 257, - [298] = 259, - [299] = 261, + [296] = 296, + [297] = 297, + [298] = 258, + [299] = 299, [300] = 300, - [301] = 301, - [302] = 302, - [303] = 267, - [304] = 268, - [305] = 260, - [306] = 271, - [307] = 272, - [308] = 273, - [309] = 309, + [301] = 256, + [302] = 261, + [303] = 303, + [304] = 251, + [305] = 262, + [306] = 306, + [307] = 307, + [308] = 267, + [309] = 264, [310] = 310, - [311] = 311, - [312] = 312, + [311] = 271, + [312] = 275, [313] = 313, - [314] = 262, + [314] = 266, [315] = 315, - [316] = 291, - [317] = 263, - [318] = 264, - [319] = 295, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 301, + [316] = 281, + [317] = 282, + [318] = 318, + [319] = 284, + [320] = 285, + [321] = 289, + [322] = 269, + [323] = 323, [324] = 324, [325] = 325, - [326] = 309, - [327] = 310, - [328] = 328, - [329] = 315, - [330] = 330, - [331] = 331, - [332] = 321, - [333] = 270, - [334] = 328, - [335] = 335, - [336] = 286, - [337] = 311, - [338] = 338, - [339] = 265, - [340] = 266, - [341] = 275, + [326] = 326, + [327] = 272, + [328] = 306, + [329] = 329, + [330] = 273, + [331] = 310, + [332] = 274, + [333] = 333, + [334] = 334, + [335] = 315, + [336] = 336, + [337] = 337, + [338] = 323, + [339] = 324, + [340] = 340, + [341] = 329, [342] = 342, - [343] = 288, + [343] = 343, [344] = 344, - [345] = 292, - [346] = 300, - [347] = 282, - [348] = 348, - [349] = 286, - [350] = 302, + [345] = 334, + [346] = 346, + [347] = 280, + [348] = 342, + [349] = 294, + [350] = 325, [351] = 351, - [352] = 352, - [353] = 311, - [354] = 354, + [352] = 277, + [353] = 278, + [354] = 291, [355] = 355, - [356] = 356, + [356] = 303, [357] = 357, - [358] = 247, - [359] = 248, - [360] = 250, + [358] = 313, + [359] = 318, + [360] = 276, [361] = 361, - [362] = 348, - [363] = 253, - [364] = 356, - [365] = 361, - [366] = 256, - [367] = 276, - [368] = 257, - [369] = 369, - [370] = 277, - [371] = 260, - [372] = 265, - [373] = 266, - [374] = 262, - [375] = 263, - [376] = 275, - [377] = 276, - [378] = 277, - [379] = 278, - [380] = 278, - [381] = 280, - [382] = 351, - [383] = 288, - [384] = 280, - [385] = 283, - [386] = 284, - [387] = 292, - [388] = 300, - [389] = 287, - [390] = 352, - [391] = 391, - [392] = 312, - [393] = 320, - [394] = 259, - [395] = 261, - [396] = 324, - [397] = 325, - [398] = 330, - [399] = 267, - [400] = 268, - [401] = 338, - [402] = 271, - [403] = 272, - [404] = 273, - [405] = 335, - [406] = 283, - [407] = 348, - [408] = 291, - [409] = 284, - [410] = 354, - [411] = 295, - [412] = 351, - [413] = 352, - [414] = 342, - [415] = 301, - [416] = 287, - [417] = 354, - [418] = 309, - [419] = 310, - [420] = 355, - [421] = 315, - [422] = 355, - [423] = 344, - [424] = 357, - [425] = 321, - [426] = 247, - [427] = 248, - [428] = 328, - [429] = 249, - [430] = 252, - [431] = 254, - [432] = 432, - [433] = 258, - [434] = 357, - [435] = 435, - [436] = 391, - [437] = 290, - [438] = 331, - [439] = 269, - [440] = 369, - [441] = 441, - [442] = 441, - [443] = 443, - [444] = 443, - [445] = 443, - [446] = 446, - [447] = 443, - [448] = 446, - [449] = 446, - [450] = 443, - [451] = 446, - [452] = 446, - [453] = 443, - [454] = 443, - [455] = 446, - [456] = 446, - [457] = 446, - [458] = 443, - [459] = 459, - [460] = 460, - [461] = 460, - [462] = 462, - [463] = 463, - [464] = 463, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 467, - [469] = 469, - [470] = 466, + [362] = 294, + [363] = 300, + [364] = 364, + [365] = 307, + [366] = 325, + [367] = 367, + [368] = 368, + [369] = 252, + [370] = 257, + [371] = 259, + [372] = 258, + [373] = 373, + [374] = 374, + [375] = 261, + [376] = 376, + [377] = 377, + [378] = 264, + [379] = 361, + [380] = 266, + [381] = 373, + [382] = 268, + [383] = 269, + [384] = 286, + [385] = 277, + [386] = 272, + [387] = 273, + [388] = 278, + [389] = 286, + [390] = 287, + [391] = 288, + [392] = 291, + [393] = 292, + [394] = 287, + [395] = 288, + [396] = 374, + [397] = 295, + [398] = 296, + [399] = 303, + [400] = 290, + [401] = 299, + [402] = 313, + [403] = 318, + [404] = 267, + [405] = 364, + [406] = 292, + [407] = 271, + [408] = 275, + [409] = 333, + [410] = 337, + [411] = 340, + [412] = 281, + [413] = 282, + [414] = 343, + [415] = 284, + [416] = 285, + [417] = 289, + [418] = 344, + [419] = 419, + [420] = 376, + [421] = 306, + [422] = 351, + [423] = 361, + [424] = 310, + [425] = 355, + [426] = 295, + [427] = 364, + [428] = 315, + [429] = 419, + [430] = 296, + [431] = 323, + [432] = 324, + [433] = 367, + [434] = 329, + [435] = 367, + [436] = 357, + [437] = 368, + [438] = 334, + [439] = 299, + [440] = 252, + [441] = 342, + [442] = 257, + [443] = 259, + [444] = 260, + [445] = 263, + [446] = 265, + [447] = 368, + [448] = 270, + [449] = 377, + [450] = 346, + [451] = 451, + [452] = 419, + [453] = 453, + [454] = 453, + [455] = 455, + [456] = 456, + [457] = 455, + [458] = 456, + [459] = 455, + [460] = 456, + [461] = 455, + [462] = 455, + [463] = 456, + [464] = 456, + [465] = 455, + [466] = 456, + [467] = 455, + [468] = 456, + [469] = 455, + [470] = 456, [471] = 471, [472] = 472, - [473] = 467, - [474] = 467, - [475] = 467, - [476] = 467, - [477] = 467, - [478] = 467, - [479] = 467, - [480] = 467, - [481] = 467, - [482] = 467, - [483] = 467, - [484] = 467, - [485] = 467, - [486] = 467, - [487] = 467, - [488] = 467, - [489] = 467, - [490] = 469, - [491] = 472, - [492] = 471, - [493] = 466, - [494] = 469, - [495] = 472, - [496] = 471, - [497] = 497, - [498] = 498, - [499] = 498, - [500] = 500, - [501] = 501, - [502] = 502, - [503] = 503, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 462, - [508] = 508, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, + [473] = 472, + [474] = 474, + [475] = 475, + [476] = 475, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 482, + [484] = 484, + [485] = 478, + [486] = 486, + [487] = 482, + [488] = 486, + [489] = 489, + [490] = 490, + [491] = 482, + [492] = 482, + [493] = 482, + [494] = 482, + [495] = 482, + [496] = 482, + [497] = 482, + [498] = 482, + [499] = 482, + [500] = 482, + [501] = 482, + [502] = 482, + [503] = 482, + [504] = 482, + [505] = 482, + [506] = 482, + [507] = 484, + [508] = 481, + [509] = 486, + [510] = 478, + [511] = 484, + [512] = 481, [513] = 513, [514] = 514, [515] = 515, - [516] = 516, + [516] = 515, [517] = 517, [518] = 518, - [519] = 462, - [520] = 462, - [521] = 521, - [522] = 502, + [519] = 519, + [520] = 520, + [521] = 474, + [522] = 522, [523] = 523, [524] = 524, [525] = 525, @@ -5070,7 +5119,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [619] = 619, [620] = 620, [621] = 621, - [622] = 502, + [622] = 622, [623] = 623, [624] = 624, [625] = 625, @@ -5169,756 +5218,756 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [718] = 718, [719] = 719, [720] = 720, - [721] = 521, + [721] = 721, [722] = 722, - [723] = 521, - [724] = 521, - [725] = 521, - [726] = 521, - [727] = 521, - [728] = 521, + [723] = 723, + [724] = 724, + [725] = 725, + [726] = 726, + [727] = 727, + [728] = 728, [729] = 729, [730] = 730, - [731] = 460, - [732] = 732, + [731] = 731, + [732] = 474, [733] = 733, [734] = 734, [735] = 735, [736] = 736, - [737] = 506, + [737] = 737, [738] = 738, [739] = 739, [740] = 740, - [741] = 741, - [742] = 506, - [743] = 460, - [744] = 502, - [745] = 745, + [741] = 517, + [742] = 517, + [743] = 743, + [744] = 740, + [745] = 472, [746] = 746, - [747] = 747, - [748] = 748, - [749] = 462, - [750] = 750, - [751] = 460, - [752] = 462, - [753] = 460, - [754] = 502, - [755] = 750, - [756] = 502, - [757] = 502, - [758] = 506, - [759] = 733, - [760] = 750, - [761] = 506, - [762] = 462, - [763] = 734, - [764] = 506, - [765] = 506, - [766] = 462, - [767] = 502, - [768] = 506, - [769] = 769, - [770] = 769, - [771] = 771, - [772] = 772, - [773] = 769, - [774] = 771, - [775] = 775, - [776] = 772, - [777] = 769, - [778] = 771, - [779] = 779, - [780] = 772, - [781] = 769, - [782] = 771, - [783] = 769, - [784] = 772, - [785] = 769, - [786] = 771, - [787] = 771, - [788] = 772, - [789] = 769, - [790] = 790, - [791] = 772, - [792] = 772, - [793] = 769, - [794] = 769, - [795] = 769, - [796] = 779, - [797] = 771, + [747] = 740, + [748] = 474, + [749] = 740, + [750] = 740, + [751] = 740, + [752] = 740, + [753] = 740, + [754] = 754, + [755] = 517, + [756] = 474, + [757] = 519, + [758] = 758, + [759] = 759, + [760] = 519, + [761] = 472, + [762] = 762, + [763] = 519, + [764] = 472, + [765] = 758, + [766] = 517, + [767] = 474, + [768] = 517, + [769] = 762, + [770] = 472, + [771] = 758, + [772] = 517, + [773] = 474, + [774] = 519, + [775] = 474, + [776] = 759, + [777] = 519, + [778] = 517, + [779] = 519, + [780] = 519, + [781] = 781, + [782] = 782, + [783] = 781, + [784] = 782, + [785] = 785, + [786] = 781, + [787] = 781, + [788] = 782, + [789] = 785, + [790] = 782, + [791] = 781, + [792] = 782, + [793] = 785, + [794] = 785, + [795] = 782, + [796] = 782, + [797] = 785, [798] = 798, - [799] = 772, - [800] = 769, - [801] = 771, - [802] = 772, - [803] = 772, - [804] = 804, - [805] = 804, - [806] = 804, - [807] = 807, - [808] = 808, - [809] = 807, - [810] = 808, - [811] = 808, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 812, + [799] = 781, + [800] = 782, + [801] = 801, + [802] = 782, + [803] = 785, + [804] = 782, + [805] = 781, + [806] = 806, + [807] = 785, + [808] = 782, + [809] = 785, + [810] = 781, + [811] = 811, + [812] = 811, + [813] = 781, + [814] = 781, + [815] = 782, [816] = 816, [817] = 817, - [818] = 814, - [819] = 814, - [820] = 820, + [818] = 818, + [819] = 819, + [820] = 819, [821] = 821, [822] = 822, - [823] = 823, - [824] = 817, - [825] = 825, + [823] = 817, + [824] = 818, + [825] = 821, [826] = 826, - [827] = 827, - [828] = 817, - [829] = 814, - [830] = 825, - [831] = 831, - [832] = 831, - [833] = 833, - [834] = 831, - [835] = 826, - [836] = 836, - [837] = 814, + [827] = 816, + [828] = 821, + [829] = 822, + [830] = 826, + [831] = 818, + [832] = 832, + [833] = 513, + [834] = 834, + [835] = 835, + [836] = 832, + [837] = 837, [838] = 838, [839] = 839, - [840] = 823, - [841] = 823, - [842] = 817, + [840] = 489, + [841] = 841, + [842] = 835, [843] = 843, [844] = 844, - [845] = 823, - [846] = 813, - [847] = 839, + [845] = 839, + [846] = 480, + [847] = 847, [848] = 848, - [849] = 848, - [850] = 814, - [851] = 820, - [852] = 852, - [853] = 814, - [854] = 844, - [855] = 814, - [856] = 823, - [857] = 817, - [858] = 827, - [859] = 859, - [860] = 859, - [861] = 861, + [849] = 849, + [850] = 850, + [851] = 848, + [852] = 490, + [853] = 839, + [854] = 854, + [855] = 835, + [856] = 856, + [857] = 848, + [858] = 844, + [859] = 839, + [860] = 856, + [861] = 834, [862] = 862, [863] = 863, - [864] = 861, - [865] = 865, - [866] = 866, - [867] = 862, - [868] = 868, - [869] = 859, - [870] = 865, - [871] = 866, - [872] = 861, - [873] = 862, - [874] = 863, - [875] = 865, - [876] = 866, - [877] = 868, - [878] = 859, - [879] = 861, - [880] = 862, - [881] = 863, - [882] = 865, - [883] = 866, - [884] = 868, - [885] = 859, - [886] = 861, - [887] = 862, - [888] = 863, - [889] = 865, - [890] = 866, - [891] = 868, - [892] = 859, - [893] = 861, - [894] = 862, - [895] = 863, - [896] = 865, - [897] = 866, - [898] = 868, - [899] = 859, - [900] = 861, - [901] = 862, - [902] = 865, - [903] = 866, - [904] = 868, - [905] = 859, - [906] = 861, - [907] = 862, - [908] = 865, - [909] = 866, - [910] = 868, - [911] = 859, - [912] = 865, - [913] = 866, - [914] = 868, - [915] = 865, - [916] = 866, - [917] = 868, - [918] = 859, - [919] = 865, - [920] = 866, - [921] = 868, - [922] = 859, - [923] = 863, - [924] = 924, - [925] = 868, - [926] = 926, - [927] = 927, - [928] = 928, - [929] = 929, - [930] = 930, - [931] = 928, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 930, - [936] = 936, - [937] = 926, - [938] = 938, - [939] = 939, - [940] = 939, - [941] = 929, - [942] = 942, - [943] = 943, - [944] = 932, - [945] = 933, - [946] = 833, - [947] = 947, - [948] = 929, - [949] = 822, - [950] = 950, - [951] = 943, - [952] = 934, - [953] = 947, - [954] = 939, - [955] = 936, - [956] = 950, - [957] = 943, - [958] = 942, - [959] = 927, - [960] = 947, - [961] = 930, - [962] = 950, + [864] = 849, + [865] = 835, + [866] = 835, + [867] = 843, + [868] = 479, + [869] = 835, + [870] = 844, + [871] = 835, + [872] = 844, + [873] = 844, + [874] = 839, + [875] = 835, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 876, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 882, + [888] = 878, + [889] = 876, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 891, + [896] = 892, + [897] = 890, + [898] = 885, + [899] = 886, + [900] = 882, + [901] = 901, + [902] = 902, + [903] = 880, + [904] = 881, + [905] = 878, + [906] = 876, + [907] = 883, + [908] = 884, + [909] = 891, + [910] = 892, + [911] = 893, + [912] = 894, + [913] = 902, + [914] = 885, + [915] = 915, + [916] = 886, + [917] = 886, + [918] = 882, + [919] = 878, + [920] = 891, + [921] = 892, + [922] = 885, + [923] = 886, + [924] = 882, + [925] = 878, + [926] = 876, + [927] = 891, + [928] = 892, + [929] = 885, + [930] = 886, + [931] = 882, + [932] = 878, + [933] = 876, + [934] = 891, + [935] = 892, + [936] = 885, + [937] = 886, + [938] = 915, + [939] = 878, + [940] = 876, + [941] = 891, + [942] = 892, + [943] = 885, + [944] = 886, + [945] = 878, + [946] = 876, + [947] = 891, + [948] = 892, + [949] = 878, + [950] = 876, + [951] = 891, + [952] = 892, + [953] = 878, + [954] = 876, + [955] = 891, + [956] = 892, + [957] = 878, + [958] = 876, + [959] = 891, + [960] = 892, + [961] = 901, + [962] = 885, [963] = 963, [964] = 964, [965] = 965, - [966] = 963, + [966] = 966, [967] = 963, - [968] = 963, + [968] = 968, [969] = 965, - [970] = 963, - [971] = 924, - [972] = 972, - [973] = 972, - [974] = 500, - [975] = 501, - [976] = 976, - [977] = 924, - [978] = 963, - [979] = 979, - [980] = 505, - [981] = 965, + [970] = 966, + [971] = 971, + [972] = 964, + [973] = 965, + [974] = 974, + [975] = 975, + [976] = 964, + [977] = 966, + [978] = 978, + [979] = 975, + [980] = 974, + [981] = 837, [982] = 963, - [983] = 965, - [984] = 965, - [985] = 963, - [986] = 503, - [987] = 965, - [988] = 965, - [989] = 924, - [990] = 972, - [991] = 504, - [992] = 976, - [993] = 965, - [994] = 924, + [983] = 983, + [984] = 974, + [985] = 968, + [986] = 978, + [987] = 968, + [988] = 971, + [989] = 983, + [990] = 990, + [991] = 838, + [992] = 992, + [993] = 993, + [994] = 994, [995] = 995, [996] = 996, [997] = 997, [998] = 998, [999] = 999, - [1000] = 998, - [1001] = 500, - [1002] = 501, + [1000] = 1000, + [1001] = 1001, + [1002] = 1002, [1003] = 1003, [1004] = 1004, - [1005] = 504, - [1006] = 505, - [1007] = 505, - [1008] = 995, - [1009] = 503, - [1010] = 1003, - [1011] = 1004, - [1012] = 1003, - [1013] = 998, - [1014] = 1014, - [1015] = 996, + [1005] = 1005, + [1006] = 1005, + [1007] = 877, + [1008] = 513, + [1009] = 489, + [1010] = 877, + [1011] = 490, + [1012] = 998, + [1013] = 479, + [1014] = 480, + [1015] = 1001, [1016] = 1003, - [1017] = 1004, - [1018] = 501, - [1019] = 504, - [1020] = 505, - [1021] = 998, - [1022] = 1022, - [1023] = 1023, - [1024] = 1024, - [1025] = 998, - [1026] = 500, - [1027] = 503, - [1028] = 1003, - [1029] = 1004, - [1030] = 501, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 1035, - [1036] = 1036, - [1037] = 998, - [1038] = 999, - [1039] = 964, - [1040] = 504, - [1041] = 1004, - [1042] = 1004, - [1043] = 504, - [1044] = 998, - [1045] = 1003, - [1046] = 1003, - [1047] = 1004, - [1048] = 1004, - [1049] = 998, - [1050] = 998, - [1051] = 1051, - [1052] = 505, - [1053] = 1003, - [1054] = 1004, - [1055] = 500, - [1056] = 503, - [1057] = 998, - [1058] = 1022, - [1059] = 998, - [1060] = 1003, - [1061] = 1004, - [1062] = 501, - [1063] = 998, - [1064] = 1003, - [1065] = 1004, - [1066] = 1023, - [1067] = 1003, - [1068] = 1014, - [1069] = 1004, - [1070] = 1035, - [1071] = 1036, - [1072] = 1024, - [1073] = 1031, - [1074] = 1034, - [1075] = 1075, - [1076] = 503, - [1077] = 500, - [1078] = 1003, - [1079] = 1079, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 511, - [1084] = 1084, + [1017] = 996, + [1018] = 997, + [1019] = 513, + [1020] = 489, + [1021] = 490, + [1022] = 513, + [1023] = 489, + [1024] = 479, + [1025] = 490, + [1026] = 996, + [1027] = 997, + [1028] = 996, + [1029] = 513, + [1030] = 489, + [1031] = 479, + [1032] = 490, + [1033] = 480, + [1034] = 996, + [1035] = 997, + [1036] = 997, + [1037] = 996, + [1038] = 877, + [1039] = 999, + [1040] = 996, + [1041] = 997, + [1042] = 997, + [1043] = 1043, + [1044] = 1004, + [1045] = 1043, + [1046] = 996, + [1047] = 1047, + [1048] = 997, + [1049] = 999, + [1050] = 479, + [1051] = 480, + [1052] = 993, + [1053] = 994, + [1054] = 1000, + [1055] = 1002, + [1056] = 877, + [1057] = 480, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 1062, + [1063] = 1063, + [1064] = 1064, + [1065] = 529, + [1066] = 522, + [1067] = 1067, + [1068] = 1063, + [1069] = 1064, + [1070] = 1070, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, + [1074] = 1074, + [1075] = 1060, + [1076] = 1076, + [1077] = 1077, + [1078] = 1063, + [1079] = 1064, + [1080] = 1061, + [1081] = 1073, + [1082] = 523, + [1083] = 526, + [1084] = 1074, [1085] = 1085, [1086] = 1086, [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, + [1088] = 518, + [1089] = 527, + [1090] = 1060, [1091] = 1091, [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, + [1093] = 1063, + [1094] = 1064, + [1095] = 520, + [1096] = 1062, [1097] = 1097, - [1098] = 510, - [1099] = 1097, + [1098] = 1058, + [1099] = 1099, [1100] = 1100, - [1101] = 1101, - [1102] = 517, + [1101] = 1087, + [1102] = 528, [1103] = 1103, - [1104] = 964, - [1105] = 513, - [1106] = 1094, - [1107] = 1107, - [1108] = 1108, + [1104] = 1060, + [1105] = 1105, + [1106] = 992, + [1107] = 1063, + [1108] = 1064, [1109] = 1109, - [1110] = 1097, + [1110] = 1060, [1111] = 1111, - [1112] = 1084, - [1113] = 1113, - [1114] = 1114, - [1115] = 515, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, + [1112] = 1112, + [1113] = 1060, + [1114] = 1067, + [1115] = 1099, + [1116] = 1111, + [1117] = 1060, + [1118] = 1076, [1119] = 1119, - [1120] = 1114, - [1121] = 1090, + [1120] = 1063, + [1121] = 1064, [1122] = 1122, - [1123] = 1091, - [1124] = 1092, - [1125] = 1125, - [1126] = 1093, - [1127] = 1127, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 995, - [1132] = 734, - [1133] = 1133, - [1134] = 1094, - [1135] = 964, + [1123] = 1097, + [1124] = 1060, + [1125] = 1060, + [1126] = 1063, + [1127] = 1064, + [1128] = 1063, + [1129] = 1064, + [1130] = 1072, + [1131] = 1085, + [1132] = 1070, + [1133] = 1092, + [1134] = 1060, + [1135] = 1135, [1136] = 1136, - [1137] = 995, - [1138] = 1138, - [1139] = 995, + [1137] = 1063, + [1138] = 1064, + [1139] = 1122, [1140] = 1140, - [1141] = 462, - [1142] = 462, - [1143] = 964, - [1144] = 1144, - [1145] = 1145, - [1146] = 1146, - [1147] = 508, - [1148] = 1116, - [1149] = 512, - [1150] = 516, - [1151] = 1084, - [1152] = 1100, + [1141] = 1060, + [1142] = 1047, + [1143] = 1143, + [1144] = 1063, + [1145] = 1064, + [1146] = 1060, + [1147] = 1063, + [1148] = 1064, + [1149] = 1105, + [1150] = 1109, + [1151] = 1071, + [1152] = 525, [1153] = 1103, - [1154] = 1113, - [1155] = 1117, - [1156] = 1122, - [1157] = 1157, - [1158] = 1158, - [1159] = 1101, - [1160] = 1114, - [1161] = 1133, - [1162] = 514, - [1163] = 1136, - [1164] = 1138, - [1165] = 1165, - [1166] = 1119, - [1167] = 1107, - [1168] = 1108, - [1169] = 1082, - [1170] = 1144, - [1171] = 1109, - [1172] = 1082, - [1173] = 1082, - [1174] = 1119, - [1175] = 1082, - [1176] = 1082, - [1177] = 1082, - [1178] = 1082, - [1179] = 1082, - [1180] = 1082, - [1181] = 1082, - [1182] = 1082, - [1183] = 1095, - [1184] = 1085, - [1185] = 1165, - [1186] = 1086, - [1187] = 1145, - [1188] = 1088, - [1189] = 995, - [1190] = 964, - [1191] = 1089, - [1192] = 1192, - [1193] = 509, - [1194] = 542, - [1195] = 578, - [1196] = 579, - [1197] = 580, - [1198] = 645, - [1199] = 613, - [1200] = 581, - [1201] = 646, - [1202] = 647, - [1203] = 1203, - [1204] = 530, - [1205] = 656, - [1206] = 664, + [1154] = 1077, + [1155] = 1140, + [1156] = 1112, + [1157] = 524, + [1158] = 1136, + [1159] = 1100, + [1160] = 1063, + [1161] = 1064, + [1162] = 1059, + [1163] = 1163, + [1164] = 577, + [1165] = 578, + [1166] = 623, + [1167] = 624, + [1168] = 625, + [1169] = 626, + [1170] = 1170, + [1171] = 530, + [1172] = 628, + [1173] = 629, + [1174] = 630, + [1175] = 631, + [1176] = 632, + [1177] = 633, + [1178] = 634, + [1179] = 635, + [1180] = 636, + [1181] = 579, + [1182] = 637, + [1183] = 638, + [1184] = 580, + [1185] = 639, + [1186] = 683, + [1187] = 684, + [1188] = 685, + [1189] = 582, + [1190] = 583, + [1191] = 584, + [1192] = 640, + [1193] = 641, + [1194] = 642, + [1195] = 1195, + [1196] = 686, + [1197] = 643, + [1198] = 725, + [1199] = 687, + [1200] = 726, + [1201] = 688, + [1202] = 727, + [1203] = 644, + [1204] = 645, + [1205] = 646, + [1206] = 647, [1207] = 648, - [1208] = 1208, - [1209] = 657, - [1210] = 658, - [1211] = 659, - [1212] = 1212, - [1213] = 649, - [1214] = 526, - [1215] = 650, - [1216] = 1203, - [1217] = 615, - [1218] = 660, - [1219] = 619, - [1220] = 1220, - [1221] = 661, - [1222] = 665, - [1223] = 582, - [1224] = 583, + [1208] = 649, + [1209] = 731, + [1210] = 651, + [1211] = 652, + [1212] = 653, + [1213] = 654, + [1214] = 655, + [1215] = 689, + [1216] = 656, + [1217] = 657, + [1218] = 658, + [1219] = 659, + [1220] = 690, + [1221] = 1221, + [1222] = 660, + [1223] = 728, + [1224] = 691, [1225] = 729, - [1226] = 730, - [1227] = 531, - [1228] = 584, - [1229] = 532, - [1230] = 585, - [1231] = 636, - [1232] = 662, - [1233] = 663, - [1234] = 641, - [1235] = 666, - [1236] = 621, - [1237] = 623, - [1238] = 674, - [1239] = 533, - [1240] = 538, - [1241] = 1241, - [1242] = 732, - [1243] = 651, - [1244] = 527, - [1245] = 637, - [1246] = 558, - [1247] = 556, + [1226] = 661, + [1227] = 662, + [1228] = 663, + [1229] = 664, + [1230] = 665, + [1231] = 666, + [1232] = 667, + [1233] = 668, + [1234] = 692, + [1235] = 669, + [1236] = 730, + [1237] = 531, + [1238] = 670, + [1239] = 671, + [1240] = 650, + [1241] = 565, + [1242] = 627, + [1243] = 1243, + [1244] = 585, + [1245] = 544, + [1246] = 545, + [1247] = 546, [1248] = 586, - [1249] = 706, - [1250] = 707, - [1251] = 629, - [1252] = 617, - [1253] = 614, - [1254] = 1254, - [1255] = 708, - [1256] = 624, - [1257] = 554, - [1258] = 631, - [1259] = 528, - [1260] = 524, - [1261] = 1261, - [1262] = 638, - [1263] = 559, - [1264] = 560, - [1265] = 639, - [1266] = 1254, - [1267] = 540, + [1249] = 1249, + [1250] = 587, + [1251] = 1047, + [1252] = 588, + [1253] = 589, + [1254] = 547, + [1255] = 1255, + [1256] = 548, + [1257] = 590, + [1258] = 992, + [1259] = 1221, + [1260] = 678, + [1261] = 1170, + [1262] = 566, + [1263] = 679, + [1264] = 1264, + [1265] = 674, + [1266] = 1266, + [1267] = 538, [1268] = 534, - [1269] = 709, - [1270] = 710, + [1269] = 1269, + [1270] = 680, [1271] = 1271, - [1272] = 630, - [1273] = 539, - [1274] = 616, - [1275] = 1275, - [1276] = 652, - [1277] = 1277, - [1278] = 711, - [1279] = 587, - [1280] = 640, - [1281] = 561, - [1282] = 562, + [1272] = 1195, + [1273] = 672, + [1274] = 1274, + [1275] = 1170, + [1276] = 1276, + [1277] = 591, + [1278] = 592, + [1279] = 1195, + [1280] = 593, + [1281] = 594, + [1282] = 1221, [1283] = 1283, - [1284] = 518, - [1285] = 541, - [1286] = 718, - [1287] = 667, - [1288] = 588, - [1289] = 589, - [1290] = 543, - [1291] = 563, - [1292] = 544, - [1293] = 590, - [1294] = 591, - [1295] = 697, - [1296] = 592, - [1297] = 593, - [1298] = 594, - [1299] = 625, - [1300] = 626, - [1301] = 698, - [1302] = 699, - [1303] = 525, - [1304] = 620, - [1305] = 627, - [1306] = 618, - [1307] = 595, - [1308] = 596, - [1309] = 597, - [1310] = 545, - [1311] = 668, - [1312] = 598, - [1313] = 599, - [1314] = 628, - [1315] = 600, - [1316] = 601, - [1317] = 669, - [1318] = 1318, - [1319] = 670, - [1320] = 557, - [1321] = 685, - [1322] = 686, - [1323] = 687, - [1324] = 688, - [1325] = 689, - [1326] = 1326, - [1327] = 675, - [1328] = 602, - [1329] = 690, - [1330] = 632, - [1331] = 633, - [1332] = 642, - [1333] = 603, - [1334] = 643, - [1335] = 720, - [1336] = 676, - [1337] = 644, - [1338] = 604, - [1339] = 700, - [1340] = 634, - [1341] = 722, - [1342] = 671, - [1343] = 523, - [1344] = 691, - [1345] = 692, - [1346] = 605, - [1347] = 677, - [1348] = 693, - [1349] = 672, - [1350] = 694, - [1351] = 701, - [1352] = 695, - [1353] = 696, - [1354] = 1140, - [1355] = 606, - [1356] = 547, - [1357] = 548, - [1358] = 549, - [1359] = 550, - [1360] = 702, - [1361] = 703, - [1362] = 551, - [1363] = 678, - [1364] = 679, - [1365] = 680, - [1366] = 681, - [1367] = 529, - [1368] = 552, - [1369] = 704, + [1284] = 567, + [1285] = 532, + [1286] = 1286, + [1287] = 1287, + [1288] = 536, + [1289] = 595, + [1290] = 1243, + [1291] = 1291, + [1292] = 714, + [1293] = 549, + [1294] = 537, + [1295] = 533, + [1296] = 1047, + [1297] = 1291, + [1298] = 715, + [1299] = 992, + [1300] = 568, + [1301] = 716, + [1302] = 569, + [1303] = 1047, + [1304] = 759, + [1305] = 992, + [1306] = 539, + [1307] = 717, + [1308] = 718, + [1309] = 1309, + [1310] = 570, + [1311] = 1311, + [1312] = 571, + [1313] = 550, + [1314] = 719, + [1315] = 673, + [1316] = 596, + [1317] = 551, + [1318] = 597, + [1319] = 598, + [1320] = 552, + [1321] = 553, + [1322] = 599, + [1323] = 572, + [1324] = 600, + [1325] = 601, + [1326] = 705, + [1327] = 706, + [1328] = 554, + [1329] = 707, + [1330] = 602, + [1331] = 555, + [1332] = 603, + [1333] = 474, + [1334] = 474, + [1335] = 604, + [1336] = 605, + [1337] = 606, + [1338] = 607, + [1339] = 608, + [1340] = 681, + [1341] = 1341, + [1342] = 708, + [1343] = 677, + [1344] = 609, + [1345] = 610, + [1346] = 1346, + [1347] = 611, + [1348] = 612, + [1349] = 682, + [1350] = 1269, + [1351] = 613, + [1352] = 614, + [1353] = 693, + [1354] = 694, + [1355] = 695, + [1356] = 615, + [1357] = 696, + [1358] = 697, + [1359] = 698, + [1360] = 1243, + [1361] = 709, + [1362] = 535, + [1363] = 710, + [1364] = 1364, + [1365] = 540, + [1366] = 711, + [1367] = 541, + [1368] = 1264, + [1369] = 1369, [1370] = 1370, - [1371] = 1208, - [1372] = 462, - [1373] = 553, - [1374] = 1241, - [1375] = 682, - [1376] = 705, - [1377] = 635, - [1378] = 683, - [1379] = 564, - [1380] = 565, - [1381] = 566, - [1382] = 717, - [1383] = 567, - [1384] = 607, - [1385] = 568, - [1386] = 608, - [1387] = 569, - [1388] = 570, - [1389] = 571, - [1390] = 572, - [1391] = 573, - [1392] = 1370, - [1393] = 1212, - [1394] = 574, - [1395] = 555, + [1371] = 712, + [1372] = 542, + [1373] = 713, + [1374] = 1269, + [1375] = 616, + [1376] = 617, + [1377] = 573, + [1378] = 618, + [1379] = 619, + [1380] = 620, + [1381] = 543, + [1382] = 1382, + [1383] = 621, + [1384] = 574, + [1385] = 720, + [1386] = 721, + [1387] = 1274, + [1388] = 699, + [1389] = 700, + [1390] = 1274, + [1391] = 701, + [1392] = 722, + [1393] = 1274, + [1394] = 702, + [1395] = 1274, [1396] = 575, - [1397] = 1261, - [1398] = 1271, - [1399] = 609, - [1400] = 610, - [1401] = 611, - [1402] = 1275, - [1403] = 1277, - [1404] = 653, - [1405] = 684, - [1406] = 673, - [1407] = 612, - [1408] = 1318, - [1409] = 719, - [1410] = 712, - [1411] = 1220, - [1412] = 713, - [1413] = 654, - [1414] = 655, - [1415] = 576, - [1416] = 535, - [1417] = 714, - [1418] = 536, - [1419] = 715, - [1420] = 716, - [1421] = 537, - [1422] = 577, - [1423] = 546, - [1424] = 1424, - [1425] = 1425, - [1426] = 1426, - [1427] = 1427, + [1397] = 1274, + [1398] = 703, + [1399] = 1274, + [1400] = 704, + [1401] = 1274, + [1402] = 1274, + [1403] = 1274, + [1404] = 1274, + [1405] = 1274, + [1406] = 675, + [1407] = 723, + [1408] = 1271, + [1409] = 724, + [1410] = 1266, + [1411] = 556, + [1412] = 557, + [1413] = 558, + [1414] = 559, + [1415] = 560, + [1416] = 561, + [1417] = 562, + [1418] = 1418, + [1419] = 1419, + [1420] = 1047, + [1421] = 992, + [1422] = 622, + [1423] = 563, + [1424] = 564, + [1425] = 676, + [1426] = 576, + [1427] = 581, [1428] = 1428, [1429] = 1429, [1430] = 1430, [1431] = 1431, - [1432] = 1424, + [1432] = 739, [1433] = 1433, - [1434] = 1425, - [1435] = 1426, + [1434] = 1434, + [1435] = 1435, [1436] = 1436, - [1437] = 1427, - [1438] = 1428, - [1439] = 735, - [1440] = 736, - [1441] = 1429, - [1442] = 1430, - [1443] = 1431, - [1444] = 1424, - [1445] = 1433, - [1446] = 1425, - [1447] = 1426, - [1448] = 1425, - [1449] = 1427, - [1450] = 1428, + [1437] = 1437, + [1438] = 1438, + [1439] = 1439, + [1440] = 1438, + [1441] = 738, + [1442] = 1442, + [1443] = 1429, + [1444] = 1444, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1444, + [1449] = 1449, + [1450] = 1450, [1451] = 1451, - [1452] = 1426, - [1453] = 1429, - [1454] = 1430, - [1455] = 1431, - [1456] = 1424, - [1457] = 1433, - [1458] = 1425, - [1459] = 1426, - [1460] = 1427, - [1461] = 1428, - [1462] = 1429, - [1463] = 1430, - [1464] = 1431, - [1465] = 1424, - [1466] = 1433, - [1467] = 1425, - [1468] = 1426, - [1469] = 1427, - [1470] = 1428, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, + [1456] = 1453, + [1457] = 1430, + [1458] = 1431, + [1459] = 1459, + [1460] = 1460, + [1461] = 735, + [1462] = 1462, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, + [1468] = 1434, + [1469] = 1469, + [1470] = 1470, [1471] = 1471, [1472] = 1472, [1473] = 1473, @@ -5927,3299 +5976,3299 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1476] = 1476, [1477] = 1477, [1478] = 1478, - [1479] = 1429, + [1479] = 1479, [1480] = 1480, - [1481] = 1430, - [1482] = 1431, - [1483] = 1424, - [1484] = 1433, - [1485] = 1485, - [1486] = 1486, + [1481] = 1466, + [1482] = 1482, + [1483] = 1483, + [1484] = 1484, + [1485] = 1463, + [1486] = 734, [1487] = 1487, [1488] = 1488, - [1489] = 1489, + [1489] = 743, [1490] = 1490, - [1491] = 1491, - [1492] = 1426, - [1493] = 1493, + [1491] = 733, + [1492] = 1492, + [1493] = 1474, [1494] = 1494, - [1495] = 1495, - [1496] = 1427, + [1495] = 1467, + [1496] = 1496, [1497] = 1497, - [1498] = 1428, - [1499] = 1499, + [1498] = 1442, + [1499] = 746, [1500] = 1500, [1501] = 1501, [1502] = 1502, - [1503] = 1430, - [1504] = 1428, - [1505] = 1505, - [1506] = 1506, - [1507] = 1507, + [1503] = 1503, + [1504] = 1435, + [1505] = 1470, + [1506] = 1471, + [1507] = 1488, [1508] = 1508, [1509] = 1509, [1510] = 1510, [1511] = 1511, [1512] = 1512, [1513] = 1513, - [1514] = 1514, - [1515] = 1495, + [1514] = 1437, + [1515] = 1510, [1516] = 1516, [1517] = 1517, [1518] = 1518, - [1519] = 745, + [1519] = 1519, [1520] = 1520, [1521] = 1521, - [1522] = 1480, - [1523] = 1487, - [1524] = 1488, - [1525] = 1493, - [1526] = 1431, - [1527] = 1476, - [1528] = 1478, - [1529] = 1529, + [1522] = 1522, + [1523] = 1516, + [1524] = 1518, + [1525] = 1525, + [1526] = 1454, + [1527] = 1455, + [1528] = 1450, + [1529] = 1255, [1530] = 1530, - [1531] = 1531, - [1532] = 1532, + [1531] = 1433, + [1532] = 1436, [1533] = 1533, [1534] = 1534, [1535] = 1535, - [1536] = 1536, + [1536] = 1512, [1537] = 1537, [1538] = 1538, - [1539] = 1424, - [1540] = 1540, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, - [1544] = 1544, - [1545] = 1545, - [1546] = 1546, - [1547] = 1547, - [1548] = 1433, - [1549] = 1549, + [1539] = 1535, + [1540] = 1445, + [1541] = 1451, + [1542] = 1484, + [1543] = 1472, + [1544] = 1521, + [1545] = 1511, + [1546] = 1538, + [1547] = 1475, + [1548] = 1476, + [1549] = 1478, [1550] = 1550, - [1551] = 1551, - [1552] = 1552, - [1553] = 1553, - [1554] = 1554, - [1555] = 1555, - [1556] = 1556, - [1557] = 1557, + [1551] = 1487, + [1552] = 736, + [1553] = 737, + [1554] = 1477, + [1555] = 1452, + [1556] = 1479, + [1557] = 1519, [1558] = 1558, - [1559] = 1559, - [1560] = 1560, - [1561] = 1561, - [1562] = 1562, - [1563] = 1486, - [1564] = 1564, - [1565] = 1565, - [1566] = 1566, - [1567] = 1567, - [1568] = 1489, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, + [1559] = 1490, + [1560] = 1537, + [1561] = 1482, + [1562] = 1483, + [1563] = 1563, + [1564] = 1446, + [1565] = 1530, + [1566] = 1558, + [1567] = 1533, + [1568] = 1568, + [1569] = 1534, + [1570] = 1459, + [1571] = 1494, [1572] = 1572, - [1573] = 1529, - [1574] = 1473, - [1575] = 1531, - [1576] = 1475, - [1577] = 1532, - [1578] = 1533, - [1579] = 1534, - [1580] = 1580, - [1581] = 1535, - [1582] = 1536, - [1583] = 1537, + [1573] = 1497, + [1574] = 1574, + [1575] = 1550, + [1576] = 1576, + [1577] = 1449, + [1578] = 1492, + [1579] = 1439, + [1580] = 1517, + [1581] = 1520, + [1582] = 1464, + [1583] = 1465, [1584] = 1584, [1585] = 1585, - [1586] = 1540, - [1587] = 1587, - [1588] = 1588, - [1589] = 1544, - [1590] = 1549, - [1591] = 1591, - [1592] = 1552, - [1593] = 1553, - [1594] = 1556, - [1595] = 1557, - [1596] = 1596, - [1597] = 1597, - [1598] = 1558, - [1599] = 1429, - [1600] = 1600, - [1601] = 1430, - [1602] = 1431, - [1603] = 1424, - [1604] = 1433, - [1605] = 1426, - [1606] = 1428, - [1607] = 1559, - [1608] = 1429, - [1609] = 1430, - [1610] = 1431, - [1611] = 1424, - [1612] = 1433, - [1613] = 1425, - [1614] = 1426, - [1615] = 1427, - [1616] = 1428, - [1617] = 1429, - [1618] = 1430, - [1619] = 1431, - [1620] = 1424, - [1621] = 1433, - [1622] = 1436, - [1623] = 1426, - [1624] = 1428, - [1625] = 1429, - [1626] = 1430, - [1627] = 1431, - [1628] = 1424, - [1629] = 1433, - [1630] = 1426, - [1631] = 1428, - [1632] = 1429, - [1633] = 1430, - [1634] = 1431, - [1635] = 1424, - [1636] = 1433, - [1637] = 1426, - [1638] = 1428, - [1639] = 1429, - [1640] = 1430, - [1641] = 1431, - [1642] = 1424, - [1643] = 1433, - [1644] = 1426, - [1645] = 1428, - [1646] = 1429, - [1647] = 1430, - [1648] = 1431, - [1649] = 1424, - [1650] = 1433, - [1651] = 1426, - [1652] = 1428, - [1653] = 1542, - [1654] = 1472, - [1655] = 1473, - [1656] = 1543, - [1657] = 1545, - [1658] = 1427, - [1659] = 1546, - [1660] = 1547, - [1661] = 1499, - [1662] = 1497, - [1663] = 1495, + [1586] = 1572, + [1587] = 1574, + [1588] = 1585, + [1589] = 1576, + [1590] = 1500, + [1591] = 474, + [1592] = 1501, + [1593] = 1496, + [1594] = 1503, + [1595] = 1513, + [1596] = 1469, + [1597] = 1473, + [1598] = 1525, + [1599] = 1502, + [1600] = 1460, + [1601] = 1462, + [1602] = 1480, + [1603] = 1522, + [1604] = 754, + [1605] = 1584, + [1606] = 1508, + [1607] = 1509, + [1608] = 1563, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, + [1613] = 1613, + [1614] = 1614, + [1615] = 1609, + [1616] = 1616, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, + [1621] = 1618, + [1622] = 1622, + [1623] = 1612, + [1624] = 1613, + [1625] = 1614, + [1626] = 1609, + [1627] = 1616, + [1628] = 1619, + [1629] = 1620, + [1630] = 1618, + [1631] = 1622, + [1632] = 1612, + [1633] = 1613, + [1634] = 1614, + [1635] = 1609, + [1636] = 1616, + [1637] = 1619, + [1638] = 1622, + [1639] = 1620, + [1640] = 1618, + [1641] = 1622, + [1642] = 1612, + [1643] = 1613, + [1644] = 1614, + [1645] = 1609, + [1646] = 1616, + [1647] = 1619, + [1648] = 1620, + [1649] = 1618, + [1650] = 1622, + [1651] = 1612, + [1652] = 1613, + [1653] = 1614, + [1654] = 1609, + [1655] = 1616, + [1656] = 1619, + [1657] = 1620, + [1658] = 1618, + [1659] = 1622, + [1660] = 1618, + [1661] = 1661, + [1662] = 1661, + [1663] = 1611, [1664] = 1664, - [1665] = 1665, + [1665] = 1617, [1666] = 1666, [1667] = 1667, - [1668] = 1668, - [1669] = 1436, - [1670] = 1472, - [1671] = 1671, - [1672] = 1664, - [1673] = 1665, + [1668] = 1612, + [1669] = 1613, + [1670] = 1614, + [1671] = 1609, + [1672] = 1616, + [1673] = 1673, [1674] = 1674, - [1675] = 1666, - [1676] = 1667, - [1677] = 1668, + [1675] = 1620, + [1676] = 1676, + [1677] = 1677, [1678] = 1678, - [1679] = 1674, - [1680] = 1554, - [1681] = 1555, - [1682] = 748, + [1679] = 1679, + [1680] = 1680, + [1681] = 1664, + [1682] = 1622, [1683] = 1683, [1684] = 1684, [1685] = 1685, [1686] = 1686, - [1687] = 740, - [1688] = 741, + [1687] = 1687, + [1688] = 1688, [1689] = 1689, [1690] = 1690, - [1691] = 1428, - [1692] = 1692, + [1691] = 1691, + [1692] = 1622, [1693] = 1693, [1694] = 1694, [1695] = 1695, [1696] = 1696, - [1697] = 1697, - [1698] = 1698, - [1699] = 1699, + [1697] = 1666, + [1698] = 1673, + [1699] = 1619, [1700] = 1700, [1701] = 1701, [1702] = 1702, - [1703] = 1692, - [1704] = 1693, - [1705] = 1705, - [1706] = 1694, - [1707] = 1477, - [1708] = 739, - [1709] = 1490, + [1703] = 1674, + [1704] = 1620, + [1705] = 1612, + [1706] = 1706, + [1707] = 1707, + [1708] = 1708, + [1709] = 1709, [1710] = 1710, [1711] = 1711, - [1712] = 1425, - [1713] = 1502, - [1714] = 1505, - [1715] = 1506, - [1716] = 1507, - [1717] = 1600, - [1718] = 1429, - [1719] = 1430, - [1720] = 1431, - [1721] = 1424, - [1722] = 1433, - [1723] = 1426, - [1724] = 1428, - [1725] = 1429, - [1726] = 1726, - [1727] = 1472, - [1728] = 1473, - [1729] = 1560, - [1730] = 1430, - [1731] = 1431, - [1732] = 1424, - [1733] = 1433, - [1734] = 1495, - [1735] = 1472, - [1736] = 1473, - [1737] = 1491, - [1738] = 1561, - [1739] = 1436, - [1740] = 1509, - [1741] = 1426, - [1742] = 1742, - [1743] = 1425, - [1744] = 734, - [1745] = 1426, - [1746] = 1564, - [1747] = 1510, - [1748] = 1565, - [1749] = 1472, - [1750] = 1473, - [1751] = 1751, - [1752] = 1566, - [1753] = 1427, - [1754] = 1567, - [1755] = 1429, - [1756] = 1705, - [1757] = 1512, - [1758] = 1600, - [1759] = 1472, - [1760] = 1760, - [1761] = 1569, - [1762] = 1428, - [1763] = 1570, - [1764] = 1513, - [1765] = 1571, - [1766] = 738, - [1767] = 1572, - [1768] = 746, - [1769] = 1514, - [1770] = 1770, - [1771] = 1472, - [1772] = 747, - [1773] = 1517, - [1774] = 1518, - [1775] = 1472, - [1776] = 1472, - [1777] = 462, - [1778] = 1472, - [1779] = 1779, - [1780] = 1472, - [1781] = 1429, - [1782] = 1600, - [1783] = 1472, - [1784] = 1472, - [1785] = 1770, - [1786] = 1472, - [1787] = 1472, - [1788] = 1430, - [1789] = 1472, - [1790] = 1431, - [1791] = 1424, - [1792] = 1433, - [1793] = 1538, - [1794] = 1751, - [1795] = 1760, - [1796] = 1685, - [1797] = 1686, - [1798] = 1471, - [1799] = 1541, - [1800] = 1550, - [1801] = 1699, - [1802] = 1701, - [1803] = 1702, - [1804] = 1494, - [1805] = 1500, - [1806] = 1501, - [1807] = 1508, - [1808] = 1511, - [1809] = 1584, - [1810] = 1585, - [1811] = 1587, - [1812] = 1588, - [1813] = 1696, - [1814] = 1538, - [1815] = 1760, - [1816] = 1685, - [1817] = 1686, - [1818] = 1471, - [1819] = 1541, - [1820] = 1550, - [1821] = 1699, - [1822] = 1701, - [1823] = 1702, - [1824] = 1494, - [1825] = 1500, - [1826] = 1501, - [1827] = 1508, - [1828] = 1511, - [1829] = 1584, - [1830] = 1585, - [1831] = 1587, - [1832] = 1588, - [1833] = 1696, - [1834] = 1538, - [1835] = 1471, - [1836] = 1538, - [1837] = 1538, - [1838] = 1538, - [1839] = 1538, - [1840] = 1538, - [1841] = 1538, - [1842] = 1538, - [1843] = 1538, - [1844] = 1538, - [1845] = 1538, - [1846] = 1538, - [1847] = 1538, - [1848] = 1700, - [1849] = 1683, - [1850] = 1538, - [1851] = 1429, - [1852] = 1430, - [1853] = 1431, - [1854] = 1424, - [1855] = 1562, - [1856] = 1433, - [1857] = 1711, - [1858] = 1591, - [1859] = 1429, - [1860] = 1430, - [1861] = 1431, - [1862] = 1424, - [1863] = 1433, - [1864] = 1436, - [1865] = 1426, - [1866] = 1428, - [1867] = 1429, - [1868] = 1430, - [1869] = 1431, - [1870] = 1424, - [1871] = 1433, - [1872] = 1426, - [1873] = 1428, - [1874] = 1472, - [1875] = 1600, - [1876] = 1472, - [1877] = 1538, - [1878] = 1538, - [1879] = 1436, - [1880] = 1580, - [1881] = 1429, - [1882] = 1430, - [1883] = 1431, - [1884] = 1433, - [1885] = 1426, - [1886] = 1428, - [1887] = 1472, - [1888] = 1538, - [1889] = 1474, - [1890] = 734, - [1891] = 462, - [1892] = 734, - [1893] = 462, - [1894] = 506, - [1895] = 1895, - [1896] = 1896, - [1897] = 1897, - [1898] = 833, - [1899] = 822, - [1900] = 1897, - [1901] = 1901, - [1902] = 1901, - [1903] = 822, - [1904] = 1904, - [1905] = 1904, - [1906] = 833, - [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 1909, - [1912] = 1912, - [1913] = 1910, - [1914] = 1908, - [1915] = 1915, - [1916] = 1907, - [1917] = 1908, - [1918] = 1909, - [1919] = 1919, - [1920] = 1919, - [1921] = 1919, - [1922] = 1919, - [1923] = 1919, - [1924] = 1919, - [1925] = 1925, - [1926] = 1926, - [1927] = 1927, - [1928] = 1928, - [1929] = 1929, - [1930] = 1930, - [1931] = 1930, - [1932] = 1929, - [1933] = 1933, - [1934] = 1934, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1938, + [1712] = 1712, + [1713] = 1713, + [1714] = 1714, + [1715] = 1715, + [1716] = 1612, + [1717] = 1710, + [1718] = 1613, + [1719] = 1614, + [1720] = 1609, + [1721] = 1616, + [1722] = 1620, + [1723] = 1622, + [1724] = 1612, + [1725] = 1614, + [1726] = 1609, + [1727] = 1616, + [1728] = 1619, + [1729] = 1620, + [1730] = 1618, + [1731] = 1622, + [1732] = 1612, + [1733] = 1613, + [1734] = 1614, + [1735] = 1609, + [1736] = 1616, + [1737] = 1617, + [1738] = 1620, + [1739] = 1622, + [1740] = 1612, + [1741] = 1613, + [1742] = 1614, + [1743] = 1609, + [1744] = 1616, + [1745] = 1620, + [1746] = 1622, + [1747] = 1612, + [1748] = 1613, + [1749] = 1614, + [1750] = 1609, + [1751] = 1616, + [1752] = 1620, + [1753] = 1622, + [1754] = 1612, + [1755] = 1613, + [1756] = 1614, + [1757] = 1609, + [1758] = 1616, + [1759] = 1620, + [1760] = 1622, + [1761] = 1612, + [1762] = 1613, + [1763] = 1614, + [1764] = 1609, + [1765] = 1616, + [1766] = 1620, + [1767] = 1622, + [1768] = 1661, + [1769] = 1611, + [1770] = 1613, + [1771] = 1678, + [1772] = 1772, + [1773] = 1689, + [1774] = 1774, + [1775] = 1678, + [1776] = 1776, + [1777] = 1777, + [1778] = 1614, + [1779] = 1610, + [1780] = 1609, + [1781] = 1616, + [1782] = 1782, + [1783] = 1783, + [1784] = 1784, + [1785] = 1785, + [1786] = 474, + [1787] = 1612, + [1788] = 1710, + [1789] = 1789, + [1790] = 1710, + [1791] = 1612, + [1792] = 1613, + [1793] = 1614, + [1794] = 1609, + [1795] = 1616, + [1796] = 1620, + [1797] = 1622, + [1798] = 1661, + [1799] = 1611, + [1800] = 1678, + [1801] = 1613, + [1802] = 1612, + [1803] = 1614, + [1804] = 1661, + [1805] = 1611, + [1806] = 1609, + [1807] = 1613, + [1808] = 1614, + [1809] = 1609, + [1810] = 1616, + [1811] = 1661, + [1812] = 1611, + [1813] = 1616, + [1814] = 1617, + [1815] = 1619, + [1816] = 759, + [1817] = 1620, + [1818] = 1661, + [1819] = 1661, + [1820] = 1618, + [1821] = 1821, + [1822] = 1661, + [1823] = 1622, + [1824] = 1661, + [1825] = 1661, + [1826] = 1617, + [1827] = 1827, + [1828] = 1828, + [1829] = 1829, + [1830] = 1830, + [1831] = 1661, + [1832] = 1661, + [1833] = 1661, + [1834] = 1661, + [1835] = 1661, + [1836] = 1661, + [1837] = 1610, + [1838] = 1709, + [1839] = 1713, + [1840] = 1686, + [1841] = 1687, + [1842] = 1772, + [1843] = 1829, + [1844] = 1844, + [1845] = 1708, + [1846] = 1711, + [1847] = 1712, + [1848] = 1827, + [1849] = 1830, + [1850] = 1850, + [1851] = 1851, + [1852] = 1852, + [1853] = 1688, + [1854] = 1691, + [1855] = 1693, + [1856] = 1694, + [1857] = 1715, + [1858] = 1610, + [1859] = 1619, + [1860] = 1850, + [1861] = 1713, + [1862] = 1686, + [1863] = 1687, + [1864] = 1772, + [1865] = 1829, + [1866] = 1844, + [1867] = 1708, + [1868] = 1711, + [1869] = 1712, + [1870] = 1827, + [1871] = 1830, + [1872] = 1850, + [1873] = 1851, + [1874] = 1852, + [1875] = 1688, + [1876] = 1691, + [1877] = 1693, + [1878] = 1694, + [1879] = 1715, + [1880] = 1610, + [1881] = 1844, + [1882] = 1772, + [1883] = 1610, + [1884] = 1610, + [1885] = 1620, + [1886] = 1610, + [1887] = 1610, + [1888] = 1610, + [1889] = 1610, + [1890] = 1610, + [1891] = 1610, + [1892] = 1610, + [1893] = 1610, + [1894] = 1610, + [1895] = 1610, + [1896] = 1690, + [1897] = 1684, + [1898] = 1714, + [1899] = 1610, + [1900] = 1828, + [1901] = 1851, + [1902] = 1702, + [1903] = 1852, + [1904] = 1774, + [1905] = 1676, + [1906] = 1612, + [1907] = 1613, + [1908] = 1614, + [1909] = 1609, + [1910] = 1616, + [1911] = 1617, + [1912] = 1620, + [1913] = 1622, + [1914] = 1612, + [1915] = 1613, + [1916] = 1614, + [1917] = 1609, + [1918] = 1616, + [1919] = 1620, + [1920] = 1622, + [1921] = 1661, + [1922] = 1710, + [1923] = 1661, + [1924] = 1610, + [1925] = 1610, + [1926] = 1612, + [1927] = 1613, + [1928] = 1614, + [1929] = 1616, + [1930] = 1620, + [1931] = 1622, + [1932] = 1661, + [1933] = 1613, + [1934] = 474, + [1935] = 759, + [1936] = 759, + [1937] = 474, + [1938] = 519, [1939] = 1939, [1940] = 1940, [1941] = 1941, - [1942] = 1937, - [1943] = 1943, - [1944] = 1944, + [1942] = 1941, + [1943] = 837, + [1944] = 838, [1945] = 1945, [1946] = 1946, - [1947] = 1947, - [1948] = 1947, - [1949] = 1947, - [1950] = 1947, - [1951] = 1943, - [1952] = 1944, - [1953] = 1947, - [1954] = 1947, - [1955] = 1947, - [1956] = 1947, - [1957] = 1946, - [1958] = 1958, + [1947] = 1946, + [1948] = 1945, + [1949] = 838, + [1950] = 837, + [1951] = 1951, + [1952] = 1951, + [1953] = 1953, + [1954] = 1954, + [1955] = 1955, + [1956] = 1956, + [1957] = 1953, + [1958] = 1951, [1959] = 1959, - [1960] = 1959, - [1961] = 1961, - [1962] = 1962, + [1960] = 1954, + [1961] = 1959, + [1962] = 1959, [1963] = 1963, - [1964] = 1959, - [1965] = 1965, - [1966] = 1966, - [1967] = 1967, - [1968] = 1968, - [1969] = 1969, + [1964] = 1964, + [1965] = 1964, + [1966] = 1964, + [1967] = 1964, + [1968] = 1964, + [1969] = 1964, [1970] = 1970, - [1971] = 1962, - [1972] = 1959, - [1973] = 1963, - [1974] = 1965, - [1975] = 1966, - [1976] = 1963, + [1971] = 1971, + [1972] = 1972, + [1973] = 1970, + [1974] = 1974, + [1975] = 1975, + [1976] = 1972, [1977] = 1977, - [1978] = 1967, + [1978] = 1978, [1979] = 1979, - [1980] = 1968, - [1981] = 1968, - [1982] = 1969, - [1983] = 1970, - [1984] = 1962, - [1985] = 1968, - [1986] = 1959, - [1987] = 1963, - [1988] = 1965, - [1989] = 1966, - [1990] = 1969, - [1991] = 1977, - [1992] = 1967, - [1993] = 1970, - [1994] = 1962, - [1995] = 1977, - [1996] = 1967, - [1997] = 1959, - [1998] = 1968, - [1999] = 1968, - [2000] = 1969, - [2001] = 1962, - [2002] = 1959, + [1980] = 1977, + [1981] = 1981, + [1982] = 1982, + [1983] = 1983, + [1984] = 1984, + [1985] = 1985, + [1986] = 1979, + [1987] = 1983, + [1988] = 1979, + [1989] = 1989, + [1990] = 1979, + [1991] = 1979, + [1992] = 1982, + [1993] = 1979, + [1994] = 1979, + [1995] = 1995, + [1996] = 1996, + [1997] = 1979, + [1998] = 1998, + [1999] = 1999, + [2000] = 1999, + [2001] = 2001, + [2002] = 2002, [2003] = 2003, - [2004] = 1963, - [2005] = 1977, - [2006] = 1965, - [2007] = 1967, - [2008] = 1966, - [2009] = 1963, - [2010] = 1965, - [2011] = 1977, - [2012] = 1967, - [2013] = 1970, - [2014] = 1969, - [2015] = 1970, - [2016] = 1977, - [2017] = 1967, - [2018] = 1977, - [2019] = 1977, - [2020] = 1961, - [2021] = 1977, - [2022] = 1977, - [2023] = 1977, - [2024] = 1977, - [2025] = 1977, - [2026] = 1977, - [2027] = 1977, - [2028] = 1967, - [2029] = 1968, - [2030] = 1969, - [2031] = 1970, - [2032] = 1962, - [2033] = 1959, - [2034] = 1963, - [2035] = 2035, - [2036] = 1961, - [2037] = 1968, - [2038] = 1969, - [2039] = 1970, - [2040] = 2035, - [2041] = 1962, - [2042] = 1965, - [2043] = 1966, - [2044] = 1959, - [2045] = 1977, - [2046] = 1967, - [2047] = 1977, - [2048] = 1963, - [2049] = 1979, - [2050] = 1965, - [2051] = 1968, - [2052] = 1969, - [2053] = 1970, - [2054] = 1962, - [2055] = 2035, - [2056] = 1963, - [2057] = 1965, - [2058] = 1966, - [2059] = 1961, - [2060] = 2003, - [2061] = 1962, - [2062] = 1965, - [2063] = 1966, - [2064] = 1966, - [2065] = 1969, - [2066] = 1966, - [2067] = 2067, - [2068] = 2067, - [2069] = 2069, - [2070] = 2067, - [2071] = 2071, - [2072] = 2072, - [2073] = 2073, - [2074] = 2074, - [2075] = 2075, - [2076] = 2074, - [2077] = 2073, - [2078] = 2078, - [2079] = 2075, - [2080] = 2072, - [2081] = 2071, - [2082] = 2082, - [2083] = 2083, - [2084] = 2084, - [2085] = 2085, - [2086] = 2086, - [2087] = 2084, - [2088] = 2083, - [2089] = 2085, - [2090] = 2086, - [2091] = 2091, - [2092] = 2082, - [2093] = 2091, - [2094] = 2094, - [2095] = 1896, - [2096] = 2096, - [2097] = 2097, - [2098] = 2098, - [2099] = 2099, - [2100] = 2100, - [2101] = 2101, - [2102] = 2102, - [2103] = 2103, - [2104] = 2104, - [2105] = 2105, - [2106] = 2106, - [2107] = 2107, - [2108] = 2091, - [2109] = 2109, - [2110] = 2110, - [2111] = 2091, + [2004] = 2004, + [2005] = 2005, + [2006] = 2006, + [2007] = 2007, + [2008] = 2008, + [2009] = 2009, + [2010] = 2010, + [2011] = 2011, + [2012] = 2012, + [2013] = 2013, + [2014] = 2006, + [2015] = 2004, + [2016] = 2016, + [2017] = 2012, + [2018] = 2003, + [2019] = 2006, + [2020] = 2020, + [2021] = 2020, + [2022] = 2005, + [2023] = 2007, + [2024] = 2008, + [2025] = 2009, + [2026] = 2010, + [2027] = 2011, + [2028] = 2013, + [2029] = 2007, + [2030] = 2008, + [2031] = 2009, + [2032] = 2004, + [2033] = 2016, + [2034] = 2010, + [2035] = 2003, + [2036] = 2011, + [2037] = 2013, + [2038] = 2004, + [2039] = 2020, + [2040] = 2040, + [2041] = 2003, + [2042] = 2006, + [2043] = 2003, + [2044] = 2006, + [2045] = 2007, + [2046] = 2008, + [2047] = 2009, + [2048] = 2010, + [2049] = 2011, + [2050] = 2013, + [2051] = 2004, + [2052] = 2016, + [2053] = 2003, + [2054] = 2006, + [2055] = 2007, + [2056] = 2008, + [2057] = 2016, + [2058] = 2010, + [2059] = 2003, + [2060] = 2006, + [2061] = 2011, + [2062] = 2013, + [2063] = 2004, + [2064] = 2016, + [2065] = 2020, + [2066] = 2003, + [2067] = 2006, + [2068] = 2016, + [2069] = 2003, + [2070] = 2006, + [2071] = 2003, + [2072] = 2003, + [2073] = 2003, + [2074] = 2003, + [2075] = 2003, + [2076] = 2003, + [2077] = 2003, + [2078] = 2003, + [2079] = 2040, + [2080] = 2007, + [2081] = 2008, + [2082] = 2009, + [2083] = 2010, + [2084] = 2011, + [2085] = 2013, + [2086] = 2004, + [2087] = 2016, + [2088] = 2007, + [2089] = 2008, + [2090] = 2040, + [2091] = 2009, + [2092] = 2010, + [2093] = 2011, + [2094] = 2013, + [2095] = 2004, + [2096] = 2016, + [2097] = 2007, + [2098] = 2008, + [2099] = 2009, + [2100] = 2010, + [2101] = 2011, + [2102] = 2013, + [2103] = 2004, + [2104] = 2016, + [2105] = 2007, + [2106] = 2008, + [2107] = 2010, + [2108] = 2011, + [2109] = 2013, + [2110] = 2009, + [2111] = 2111, [2112] = 2112, - [2113] = 2113, - [2114] = 2091, - [2115] = 2107, - [2116] = 2091, - [2117] = 2091, + [2113] = 2112, + [2114] = 2112, + [2115] = 2115, + [2116] = 2116, + [2117] = 2117, [2118] = 2118, - [2119] = 2091, - [2120] = 2091, - [2121] = 2091, - [2122] = 2091, - [2123] = 2123, - [2124] = 2124, - [2125] = 2125, + [2119] = 2119, + [2120] = 2120, + [2121] = 2116, + [2122] = 2117, + [2123] = 2115, + [2124] = 2119, + [2125] = 2118, [2126] = 2126, - [2127] = 2091, - [2128] = 2091, - [2129] = 1939, + [2127] = 2127, + [2128] = 2128, + [2129] = 2129, [2130] = 2130, - [2131] = 2096, - [2132] = 2132, + [2131] = 2130, + [2132] = 2126, [2133] = 2133, - [2134] = 2134, - [2135] = 2135, - [2136] = 2136, - [2137] = 2137, + [2134] = 2127, + [2135] = 2128, + [2136] = 2129, + [2137] = 2133, [2138] = 2138, [2139] = 2139, [2140] = 2140, [2141] = 2141, [2142] = 2142, - [2143] = 2100, - [2144] = 1936, + [2143] = 2143, + [2144] = 1940, [2145] = 2145, [2146] = 2146, [2147] = 2147, - [2148] = 2148, - [2149] = 2098, - [2150] = 2098, - [2151] = 1938, - [2152] = 2096, - [2153] = 2100, - [2154] = 1958, + [2148] = 2146, + [2149] = 2130, + [2150] = 2150, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, + [2154] = 2154, [2155] = 2155, - [2156] = 2156, - [2157] = 2094, - [2158] = 1935, - [2159] = 1945, - [2160] = 1934, - [2161] = 2161, - [2162] = 2096, - [2163] = 1940, - [2164] = 2164, + [2156] = 2130, + [2157] = 2157, + [2158] = 2158, + [2159] = 2130, + [2160] = 2130, + [2161] = 2130, + [2162] = 2130, + [2163] = 2163, + [2164] = 2130, [2165] = 2165, [2166] = 2166, [2167] = 2167, - [2168] = 2168, - [2169] = 2169, - [2170] = 2170, - [2171] = 2171, + [2168] = 2130, + [2169] = 2130, + [2170] = 2130, + [2171] = 2130, [2172] = 2172, [2173] = 2173, - [2174] = 2174, - [2175] = 2175, - [2176] = 2099, - [2177] = 2091, - [2178] = 2097, - [2179] = 2099, - [2180] = 2097, - [2181] = 2099, - [2182] = 2097, - [2183] = 1941, + [2174] = 2130, + [2175] = 1984, + [2176] = 2143, + [2177] = 2142, + [2178] = 2142, + [2179] = 2141, + [2180] = 2180, + [2181] = 2001, + [2182] = 2143, + [2183] = 2183, [2184] = 2184, [2185] = 2185, [2186] = 2186, [2187] = 2187, - [2188] = 2188, + [2188] = 2143, [2189] = 2189, - [2190] = 2190, - [2191] = 2098, + [2190] = 2139, + [2191] = 2191, [2192] = 2192, - [2193] = 2100, + [2193] = 2193, [2194] = 2194, - [2195] = 2091, - [2196] = 2196, - [2197] = 2091, - [2198] = 2103, - [2199] = 2106, - [2200] = 2112, - [2201] = 2102, - [2202] = 2100, - [2203] = 2110, - [2204] = 2113, - [2205] = 2106, - [2206] = 2097, - [2207] = 2110, - [2208] = 2091, - [2209] = 2091, - [2210] = 2112, - [2211] = 2099, - [2212] = 2103, - [2213] = 2118, - [2214] = 2105, - [2215] = 2096, - [2216] = 2101, - [2217] = 2118, - [2218] = 2105, - [2219] = 2109, - [2220] = 2091, - [2221] = 2091, - [2222] = 2099, - [2223] = 2097, - [2224] = 2109, - [2225] = 2096, - [2226] = 2118, - [2227] = 2109, - [2228] = 2104, - [2229] = 2100, - [2230] = 2101, - [2231] = 2102, - [2232] = 2113, - [2233] = 2105, - [2234] = 2102, - [2235] = 2113, - [2236] = 2098, - [2237] = 2106, - [2238] = 2112, - [2239] = 2103, - [2240] = 2101, - [2241] = 2104, - [2242] = 2098, - [2243] = 2110, - [2244] = 2104, - [2245] = 1940, - [2246] = 1935, - [2247] = 2102, - [2248] = 2125, - [2249] = 2101, - [2250] = 2106, - [2251] = 2124, - [2252] = 1938, - [2253] = 2253, - [2254] = 2254, - [2255] = 1941, - [2256] = 2256, - [2257] = 2096, - [2258] = 2105, - [2259] = 2110, - [2260] = 2109, - [2261] = 2112, - [2262] = 2124, - [2263] = 2101, - [2264] = 2113, - [2265] = 2098, - [2266] = 2266, - [2267] = 2104, - [2268] = 2102, - [2269] = 2103, - [2270] = 2125, - [2271] = 1945, - [2272] = 2126, - [2273] = 1936, - [2274] = 2118, - [2275] = 1934, - [2276] = 2099, - [2277] = 2113, - [2278] = 2097, - [2279] = 1926, - [2280] = 2280, - [2281] = 2104, - [2282] = 2124, - [2283] = 1958, - [2284] = 2110, - [2285] = 1939, - [2286] = 2125, - [2287] = 2103, - [2288] = 2126, - [2289] = 2289, - [2290] = 2112, - [2291] = 2289, - [2292] = 2100, - [2293] = 2126, - [2294] = 2106, - [2295] = 2105, - [2296] = 2123, - [2297] = 2123, - [2298] = 2109, - [2299] = 2289, - [2300] = 2300, - [2301] = 2280, - [2302] = 2280, - [2303] = 2118, - [2304] = 2123, - [2305] = 1929, - [2306] = 2118, - [2307] = 2300, - [2308] = 2137, - [2309] = 2138, - [2310] = 2164, - [2311] = 2123, - [2312] = 2164, - [2313] = 1935, - [2314] = 1945, - [2315] = 1934, - [2316] = 1938, - [2317] = 2145, - [2318] = 2156, - [2319] = 2185, - [2320] = 2133, - [2321] = 2146, - [2322] = 2190, - [2323] = 1939, - [2324] = 2139, - [2325] = 2140, - [2326] = 2141, - [2327] = 2146, - [2328] = 2194, - [2329] = 2130, - [2330] = 1940, - [2331] = 2196, - [2332] = 2184, - [2333] = 2161, - [2334] = 2145, - [2335] = 2098, - [2336] = 2161, - [2337] = 2168, - [2338] = 2187, - [2339] = 2167, - [2340] = 2155, - [2341] = 2186, - [2342] = 2188, - [2343] = 2192, - [2344] = 2133, - [2345] = 2189, - [2346] = 2190, - [2347] = 2194, - [2348] = 1938, - [2349] = 2166, - [2350] = 2170, - [2351] = 2171, - [2352] = 2173, - [2353] = 2174, - [2354] = 2134, - [2355] = 2130, - [2356] = 2168, - [2357] = 2169, - [2358] = 2134, - [2359] = 2135, - [2360] = 2170, - [2361] = 2132, - [2362] = 2171, - [2363] = 2172, - [2364] = 2173, - [2365] = 2175, - [2366] = 2105, - [2367] = 2135, - [2368] = 2104, - [2369] = 2139, - [2370] = 2102, - [2371] = 2113, - [2372] = 1958, - [2373] = 2106, - [2374] = 2112, - [2375] = 2147, - [2376] = 2148, - [2377] = 2132, - [2378] = 2187, - [2379] = 2147, - [2380] = 2148, - [2381] = 1941, - [2382] = 2096, - [2383] = 2125, - [2384] = 2124, - [2385] = 2174, - [2386] = 1926, - [2387] = 2146, - [2388] = 1935, - [2389] = 2137, - [2390] = 2138, - [2391] = 1945, - [2392] = 2155, - [2393] = 1934, - [2394] = 2137, - [2395] = 2126, - [2396] = 1929, - [2397] = 2138, - [2398] = 2175, - [2399] = 1939, - [2400] = 1940, - [2401] = 1958, - [2402] = 2187, - [2403] = 1936, - [2404] = 1935, - [2405] = 2136, - [2406] = 1945, - [2407] = 1934, - [2408] = 1939, - [2409] = 1929, - [2410] = 2100, - [2411] = 1940, - [2412] = 2186, - [2413] = 2091, - [2414] = 1941, - [2415] = 2142, - [2416] = 2188, - [2417] = 2192, - [2418] = 2161, - [2419] = 1938, - [2420] = 2133, - [2421] = 2166, - [2422] = 2196, - [2423] = 2110, - [2424] = 2155, - [2425] = 2103, - [2426] = 2167, - [2427] = 2168, - [2428] = 2169, - [2429] = 2170, - [2430] = 2171, - [2431] = 2172, - [2432] = 2173, - [2433] = 2174, - [2434] = 2175, - [2435] = 2300, - [2436] = 2253, - [2437] = 2140, - [2438] = 2189, - [2439] = 1926, - [2440] = 2253, - [2441] = 2141, - [2442] = 2190, - [2443] = 2194, - [2444] = 1926, - [2445] = 1941, - [2446] = 1958, - [2447] = 2186, - [2448] = 1929, + [2195] = 2130, + [2196] = 2142, + [2197] = 2197, + [2198] = 2198, + [2199] = 2199, + [2200] = 2200, + [2201] = 2201, + [2202] = 2138, + [2203] = 2203, + [2204] = 2204, + [2205] = 2205, + [2206] = 2206, + [2207] = 1995, + [2208] = 2002, + [2209] = 2140, + [2210] = 2210, + [2211] = 2211, + [2212] = 2212, + [2213] = 2139, + [2214] = 2214, + [2215] = 2215, + [2216] = 2216, + [2217] = 2217, + [2218] = 2218, + [2219] = 1985, + [2220] = 1989, + [2221] = 2221, + [2222] = 2222, + [2223] = 2223, + [2224] = 2224, + [2225] = 2225, + [2226] = 2140, + [2227] = 2227, + [2228] = 2141, + [2229] = 2141, + [2230] = 2230, + [2231] = 2140, + [2232] = 1978, + [2233] = 1996, + [2234] = 2234, + [2235] = 2235, + [2236] = 1981, + [2237] = 2237, + [2238] = 2238, + [2239] = 2239, + [2240] = 2139, + [2241] = 2139, + [2242] = 2140, + [2243] = 2150, + [2244] = 2152, + [2245] = 2153, + [2246] = 2145, + [2247] = 2147, + [2248] = 2155, + [2249] = 2157, + [2250] = 2158, + [2251] = 2154, + [2252] = 2151, + [2253] = 2153, + [2254] = 2163, + [2255] = 2153, + [2256] = 2141, + [2257] = 2142, + [2258] = 2130, + [2259] = 2130, + [2260] = 2163, + [2261] = 2163, + [2262] = 2139, + [2263] = 2154, + [2264] = 2150, + [2265] = 2150, + [2266] = 2152, + [2267] = 2145, + [2268] = 2147, + [2269] = 2130, + [2270] = 2130, + [2271] = 2155, + [2272] = 2157, + [2273] = 2158, + [2274] = 2152, + [2275] = 2151, + [2276] = 2145, + [2277] = 2130, + [2278] = 2142, + [2279] = 2147, + [2280] = 2155, + [2281] = 2157, + [2282] = 2158, + [2283] = 2140, + [2284] = 2154, + [2285] = 2141, + [2286] = 2151, + [2287] = 2143, + [2288] = 2143, + [2289] = 2158, + [2290] = 1975, + [2291] = 1989, + [2292] = 2166, + [2293] = 1995, + [2294] = 2166, + [2295] = 2295, + [2296] = 2151, + [2297] = 2166, + [2298] = 2155, + [2299] = 2157, + [2300] = 1978, + [2301] = 2167, + [2302] = 2163, + [2303] = 2165, + [2304] = 2001, + [2305] = 1984, + [2306] = 2295, + [2307] = 2167, + [2308] = 2308, + [2309] = 2172, + [2310] = 2165, + [2311] = 2295, + [2312] = 1985, + [2313] = 2313, + [2314] = 2154, + [2315] = 2142, + [2316] = 2172, + [2317] = 1981, + [2318] = 2150, + [2319] = 2152, + [2320] = 2153, + [2321] = 2172, + [2322] = 2151, + [2323] = 2323, + [2324] = 2140, + [2325] = 2167, + [2326] = 2165, + [2327] = 2327, + [2328] = 2163, + [2329] = 2145, + [2330] = 2154, + [2331] = 2147, + [2332] = 2155, + [2333] = 2308, + [2334] = 2157, + [2335] = 2158, + [2336] = 1972, + [2337] = 2141, + [2338] = 2338, + [2339] = 2153, + [2340] = 2143, + [2341] = 2147, + [2342] = 2342, + [2343] = 2308, + [2344] = 2145, + [2345] = 2139, + [2346] = 2002, + [2347] = 1996, + [2348] = 2150, + [2349] = 2152, + [2350] = 2191, + [2351] = 2192, + [2352] = 2235, + [2353] = 2211, + [2354] = 1975, + [2355] = 2223, + [2356] = 2194, + [2357] = 2234, + [2358] = 2205, + [2359] = 2214, + [2360] = 2237, + [2361] = 2204, + [2362] = 2225, + [2363] = 2192, + [2364] = 2223, + [2365] = 2002, + [2366] = 2163, + [2367] = 2180, + [2368] = 2210, + [2369] = 2172, + [2370] = 2323, + [2371] = 2327, + [2372] = 2323, + [2373] = 2227, + [2374] = 2313, + [2375] = 2218, + [2376] = 2227, + [2377] = 2199, + [2378] = 2218, + [2379] = 2222, + [2380] = 2173, + [2381] = 2237, + [2382] = 2173, + [2383] = 2237, + [2384] = 2191, + [2385] = 2180, + [2386] = 2180, + [2387] = 2222, + [2388] = 2191, + [2389] = 1996, + [2390] = 1981, + [2391] = 1984, + [2392] = 2187, + [2393] = 2189, + [2394] = 2206, + [2395] = 1985, + [2396] = 2187, + [2397] = 1989, + [2398] = 2222, + [2399] = 2189, + [2400] = 2172, + [2401] = 1975, + [2402] = 2193, + [2403] = 2140, + [2404] = 2185, + [2405] = 2230, + [2406] = 2224, + [2407] = 2210, + [2408] = 2201, + [2409] = 2197, + [2410] = 2183, + [2411] = 2201, + [2412] = 1972, + [2413] = 1999, + [2414] = 2130, + [2415] = 2238, + [2416] = 1978, + [2417] = 2239, + [2418] = 2167, + [2419] = 2165, + [2420] = 2200, + [2421] = 2206, + [2422] = 2139, + [2423] = 2238, + [2424] = 2234, + [2425] = 2204, + [2426] = 2224, + [2427] = 1982, + [2428] = 2225, + [2429] = 2166, + [2430] = 1977, + [2431] = 2167, + [2432] = 2141, + [2433] = 2165, + [2434] = 2183, + [2435] = 2215, + [2436] = 2001, + [2437] = 2239, + [2438] = 2200, + [2439] = 2185, + [2440] = 2210, + [2441] = 2216, + [2442] = 2186, + [2443] = 1975, + [2444] = 2211, + [2445] = 2230, + [2446] = 2203, + [2447] = 2143, + [2448] = 2001, [2449] = 2166, - [2450] = 2099, - [2451] = 2156, - [2452] = 2188, - [2453] = 2097, - [2454] = 2125, - [2455] = 2256, - [2456] = 2124, - [2457] = 2109, - [2458] = 2136, - [2459] = 2130, - [2460] = 2142, - [2461] = 2134, - [2462] = 2135, - [2463] = 2169, - [2464] = 2185, - [2465] = 2132, - [2466] = 2172, - [2467] = 2147, - [2468] = 2196, - [2469] = 1937, - [2470] = 2148, - [2471] = 2164, - [2472] = 2156, - [2473] = 2185, - [2474] = 1943, - [2475] = 2189, - [2476] = 2126, - [2477] = 1944, - [2478] = 2184, - [2479] = 2145, - [2480] = 1936, - [2481] = 2192, - [2482] = 1946, - [2483] = 2136, - [2484] = 2142, - [2485] = 2139, - [2486] = 2140, - [2487] = 2167, - [2488] = 2123, - [2489] = 2141, - [2490] = 2101, - [2491] = 2184, - [2492] = 2142, - [2493] = 2168, - [2494] = 2161, - [2495] = 2123, - [2496] = 1944, - [2497] = 2137, - [2498] = 2175, - [2499] = 1941, - [2500] = 2254, - [2501] = 2156, - [2502] = 2110, - [2503] = 2130, - [2504] = 2504, - [2505] = 2147, - [2506] = 2112, - [2507] = 2169, - [2508] = 2133, - [2509] = 2174, - [2510] = 2190, - [2511] = 1941, - [2512] = 2194, - [2513] = 2172, - [2514] = 2514, - [2515] = 2186, - [2516] = 2140, - [2517] = 1946, - [2518] = 1938, - [2519] = 2136, - [2520] = 2138, - [2521] = 1958, - [2522] = 1935, - [2523] = 1945, - [2524] = 1934, - [2525] = 1939, - [2526] = 1940, - [2527] = 2101, - [2528] = 2137, - [2529] = 1937, - [2530] = 1939, - [2531] = 1943, - [2532] = 1936, - [2533] = 2103, - [2534] = 2142, - [2535] = 1944, - [2536] = 2196, - [2537] = 1941, - [2538] = 1937, - [2539] = 2134, - [2540] = 2168, - [2541] = 1943, - [2542] = 2138, - [2543] = 2167, - [2544] = 1944, - [2545] = 2126, - [2546] = 2166, - [2547] = 2135, - [2548] = 2109, - [2549] = 2173, - [2550] = 2189, - [2551] = 2256, - [2552] = 2190, - [2553] = 2134, - [2554] = 1938, - [2555] = 1946, - [2556] = 2194, - [2557] = 1946, - [2558] = 1941, - [2559] = 2141, - [2560] = 2175, - [2561] = 2170, - [2562] = 2132, - [2563] = 2136, - [2564] = 2164, - [2565] = 1936, - [2566] = 1940, - [2567] = 1934, - [2568] = 1946, - [2569] = 1958, - [2570] = 1936, - [2571] = 2171, - [2572] = 2125, - [2573] = 1933, - [2574] = 2148, - [2575] = 2187, - [2576] = 2171, - [2577] = 2124, - [2578] = 2155, - [2579] = 2196, - [2580] = 2192, - [2581] = 2173, - [2582] = 1937, - [2583] = 2174, - [2584] = 2135, - [2585] = 2132, - [2586] = 2187, - [2587] = 2104, - [2588] = 2514, - [2589] = 2102, - [2590] = 2147, - [2591] = 2113, - [2592] = 2592, - [2593] = 2141, - [2594] = 2139, - [2595] = 2170, - [2596] = 2106, - [2597] = 1935, - [2598] = 2156, - [2599] = 2164, - [2600] = 2146, - [2601] = 1937, - [2602] = 1941, - [2603] = 2185, - [2604] = 2166, - [2605] = 2184, - [2606] = 2118, - [2607] = 2161, - [2608] = 2189, - [2609] = 2145, - [2610] = 2146, - [2611] = 2105, - [2612] = 2130, - [2613] = 2148, - [2614] = 2266, - [2615] = 2184, - [2616] = 2155, - [2617] = 2145, - [2618] = 1943, - [2619] = 1944, - [2620] = 2169, - [2621] = 1945, - [2622] = 2185, - [2623] = 1943, - [2624] = 2188, - [2625] = 2186, - [2626] = 2188, - [2627] = 2172, - [2628] = 2139, - [2629] = 2140, - [2630] = 2192, - [2631] = 2133, - [2632] = 2167, - [2633] = 2142, - [2634] = 2300, - [2635] = 2253, - [2636] = 2125, - [2637] = 2124, - [2638] = 2300, - [2639] = 2253, - [2640] = 2300, - [2641] = 2253, - [2642] = 2166, - [2643] = 2156, - [2644] = 2185, - [2645] = 2189, - [2646] = 2190, - [2647] = 2194, - [2648] = 2196, - [2649] = 2126, - [2650] = 1936, - [2651] = 2136, - [2652] = 2167, - [2653] = 2164, - [2654] = 2123, - [2655] = 2184, - [2656] = 2145, - [2657] = 2139, - [2658] = 2140, - [2659] = 2141, - [2660] = 2169, - [2661] = 1933, - [2662] = 2161, - [2663] = 2155, - [2664] = 2186, - [2665] = 2188, - [2666] = 2192, - [2667] = 2133, - [2668] = 2130, - [2669] = 2134, - [2670] = 2135, - [2671] = 2132, - [2672] = 2147, - [2673] = 2148, - [2674] = 2137, - [2675] = 2138, - [2676] = 1938, - [2677] = 2146, - [2678] = 1958, - [2679] = 2187, - [2680] = 1935, - [2681] = 1945, - [2682] = 1934, - [2683] = 1939, - [2684] = 1940, - [2685] = 1941, - [2686] = 2097, - [2687] = 2168, - [2688] = 2170, - [2689] = 2171, - [2690] = 2173, - [2691] = 2174, - [2692] = 2175, - [2693] = 2172, - [2694] = 1958, - [2695] = 2134, - [2696] = 2135, - [2697] = 2132, - [2698] = 2147, - [2699] = 2148, - [2700] = 2137, - [2701] = 2138, - [2702] = 2702, - [2703] = 2166, - [2704] = 2156, - [2705] = 1936, - [2706] = 1938, - [2707] = 2185, - [2708] = 2189, - [2709] = 2190, - [2710] = 2194, - [2711] = 2146, - [2712] = 2196, - [2713] = 1937, - [2714] = 1943, - [2715] = 1958, - [2716] = 1944, - [2717] = 2187, - [2718] = 1946, - [2719] = 1935, - [2720] = 1945, - [2721] = 1934, - [2722] = 2136, - [2723] = 2142, - [2724] = 1939, - [2725] = 1940, - [2726] = 1941, - [2727] = 2167, - [2728] = 1933, - [2729] = 2164, - [2730] = 2184, - [2731] = 2145, - [2732] = 2139, - [2733] = 2140, - [2734] = 2141, - [2735] = 1938, - [2736] = 2736, - [2737] = 1935, - [2738] = 1945, - [2739] = 1934, - [2740] = 1939, - [2741] = 1940, - [2742] = 2130, - [2743] = 2169, - [2744] = 2736, - [2745] = 1941, - [2746] = 1941, - [2747] = 1941, - [2748] = 1941, - [2749] = 2736, - [2750] = 2592, - [2751] = 2168, - [2752] = 2170, - [2753] = 2171, - [2754] = 2173, - [2755] = 2174, - [2756] = 2175, - [2757] = 2172, - [2758] = 2161, - [2759] = 2155, - [2760] = 2186, - [2761] = 2188, - [2762] = 2192, - [2763] = 2736, - [2764] = 2764, - [2765] = 2736, - [2766] = 2766, - [2767] = 2736, - [2768] = 2736, - [2769] = 2736, - [2770] = 2736, - [2771] = 2736, - [2772] = 2736, - [2773] = 2736, - [2774] = 2736, - [2775] = 2736, - [2776] = 2736, - [2777] = 2736, - [2778] = 2736, - [2779] = 2736, - [2780] = 2764, - [2781] = 2764, - [2782] = 2133, - [2783] = 2736, - [2784] = 2736, - [2785] = 2785, - [2786] = 1936, - [2787] = 2787, - [2788] = 2788, - [2789] = 2789, - [2790] = 2790, - [2791] = 2788, - [2792] = 2792, - [2793] = 2788, - [2794] = 2790, - [2795] = 2790, + [2450] = 2186, + [2451] = 2203, + [2452] = 2214, + [2453] = 1995, + [2454] = 2002, + [2455] = 1995, + [2456] = 2199, + [2457] = 1996, + [2458] = 1981, + [2459] = 1984, + [2460] = 1985, + [2461] = 1989, + [2462] = 2142, + [2463] = 2192, + [2464] = 1978, + [2465] = 2215, + [2466] = 2223, + [2467] = 2211, + [2468] = 2212, + [2469] = 2154, + [2470] = 2198, + [2471] = 1985, + [2472] = 2151, + [2473] = 2197, + [2474] = 2197, + [2475] = 2327, + [2476] = 1989, + [2477] = 2201, + [2478] = 1983, + [2479] = 2212, + [2480] = 2217, + [2481] = 2206, + [2482] = 1972, + [2483] = 2193, + [2484] = 2193, + [2485] = 2203, + [2486] = 2224, + [2487] = 2238, + [2488] = 1978, + [2489] = 2187, + [2490] = 2189, + [2491] = 2221, + [2492] = 1972, + [2493] = 2221, + [2494] = 2212, + [2495] = 2217, + [2496] = 2239, + [2497] = 2200, + [2498] = 2153, + [2499] = 2218, + [2500] = 2215, + [2501] = 2002, + [2502] = 2235, + [2503] = 2183, + [2504] = 2185, + [2505] = 2217, + [2506] = 2221, + [2507] = 2198, + [2508] = 2230, + [2509] = 2173, + [2510] = 2216, + [2511] = 2227, + [2512] = 2199, + [2513] = 2194, + [2514] = 2234, + [2515] = 2235, + [2516] = 2216, + [2517] = 2194, + [2518] = 2205, + [2519] = 2186, + [2520] = 1996, + [2521] = 2205, + [2522] = 1981, + [2523] = 1984, + [2524] = 2204, + [2525] = 2001, + [2526] = 2225, + [2527] = 2214, + [2528] = 2150, + [2529] = 2152, + [2530] = 2145, + [2531] = 2147, + [2532] = 2155, + [2533] = 2157, + [2534] = 2158, + [2535] = 2198, + [2536] = 2186, + [2537] = 2537, + [2538] = 2153, + [2539] = 1978, + [2540] = 2215, + [2541] = 2541, + [2542] = 2235, + [2543] = 2194, + [2544] = 2205, + [2545] = 2214, + [2546] = 2210, + [2547] = 2227, + [2548] = 2235, + [2549] = 2194, + [2550] = 2205, + [2551] = 2214, + [2552] = 2210, + [2553] = 2227, + [2554] = 2212, + [2555] = 2217, + [2556] = 2150, + [2557] = 2152, + [2558] = 2145, + [2559] = 2147, + [2560] = 2155, + [2561] = 2157, + [2562] = 2158, + [2563] = 2001, + [2564] = 2166, + [2565] = 1995, + [2566] = 2193, + [2567] = 2185, + [2568] = 2230, + [2569] = 2172, + [2570] = 2183, + [2571] = 1999, + [2572] = 2198, + [2573] = 2193, + [2574] = 2185, + [2575] = 2230, + [2576] = 1982, + [2577] = 2183, + [2578] = 1999, + [2579] = 1982, + [2580] = 1977, + [2581] = 1977, + [2582] = 2002, + [2583] = 1978, + [2584] = 2199, + [2585] = 1983, + [2586] = 2206, + [2587] = 2224, + [2588] = 2221, + [2589] = 2204, + [2590] = 1978, + [2591] = 1999, + [2592] = 1996, + [2593] = 1981, + [2594] = 1984, + [2595] = 1985, + [2596] = 1989, + [2597] = 2225, + [2598] = 1982, + [2599] = 1983, + [2600] = 2206, + [2601] = 2192, + [2602] = 1977, + [2603] = 2224, + [2604] = 1999, + [2605] = 1982, + [2606] = 1977, + [2607] = 1983, + [2608] = 2221, + [2609] = 1983, + [2610] = 2215, + [2611] = 2223, + [2612] = 2342, + [2613] = 2218, + [2614] = 1978, + [2615] = 2001, + [2616] = 2002, + [2617] = 1996, + [2618] = 1981, + [2619] = 1984, + [2620] = 1985, + [2621] = 1989, + [2622] = 2203, + [2623] = 1995, + [2624] = 2197, + [2625] = 2201, + [2626] = 2163, + [2627] = 1978, + [2628] = 2203, + [2629] = 2212, + [2630] = 2217, + [2631] = 2238, + [2632] = 2239, + [2633] = 2200, + [2634] = 2634, + [2635] = 2173, + [2636] = 2216, + [2637] = 2186, + [2638] = 2211, + [2639] = 2197, + [2640] = 2201, + [2641] = 2180, + [2642] = 2237, + [2643] = 2199, + [2644] = 1998, + [2645] = 2238, + [2646] = 2234, + [2647] = 2239, + [2648] = 2234, + [2649] = 2204, + [2650] = 2541, + [2651] = 2200, + [2652] = 2225, + [2653] = 2192, + [2654] = 2223, + [2655] = 2222, + [2656] = 2191, + [2657] = 2218, + [2658] = 2173, + [2659] = 2237, + [2660] = 2180, + [2661] = 2313, + [2662] = 2222, + [2663] = 2191, + [2664] = 1995, + [2665] = 2167, + [2666] = 2165, + [2667] = 2154, + [2668] = 2151, + [2669] = 2187, + [2670] = 2216, + [2671] = 2189, + [2672] = 2187, + [2673] = 2189, + [2674] = 2211, + [2675] = 2338, + [2676] = 2198, + [2677] = 2217, + [2678] = 2001, + [2679] = 2193, + [2680] = 2198, + [2681] = 2002, + [2682] = 2199, + [2683] = 2185, + [2684] = 1996, + [2685] = 2230, + [2686] = 2183, + [2687] = 1981, + [2688] = 1984, + [2689] = 2166, + [2690] = 1995, + [2691] = 1985, + [2692] = 1989, + [2693] = 2206, + [2694] = 2224, + [2695] = 2221, + [2696] = 2323, + [2697] = 2327, + [2698] = 2167, + [2699] = 2203, + [2700] = 2172, + [2701] = 2197, + [2702] = 2201, + [2703] = 1978, + [2704] = 2238, + [2705] = 2212, + [2706] = 2139, + [2707] = 2200, + [2708] = 2216, + [2709] = 2186, + [2710] = 2211, + [2711] = 1998, + [2712] = 2235, + [2713] = 2323, + [2714] = 2327, + [2715] = 2194, + [2716] = 2205, + [2717] = 2323, + [2718] = 2327, + [2719] = 2214, + [2720] = 2210, + [2721] = 2227, + [2722] = 2165, + [2723] = 2234, + [2724] = 2204, + [2725] = 2225, + [2726] = 2192, + [2727] = 2223, + [2728] = 2218, + [2729] = 2173, + [2730] = 2237, + [2731] = 2180, + [2732] = 2222, + [2733] = 2191, + [2734] = 2187, + [2735] = 2189, + [2736] = 2215, + [2737] = 2239, + [2738] = 1983, + [2739] = 2739, + [2740] = 2222, + [2741] = 2191, + [2742] = 1995, + [2743] = 1995, + [2744] = 2739, + [2745] = 2235, + [2746] = 2194, + [2747] = 2205, + [2748] = 2214, + [2749] = 2210, + [2750] = 2739, + [2751] = 2227, + [2752] = 2216, + [2753] = 2186, + [2754] = 2001, + [2755] = 2211, + [2756] = 2204, + [2757] = 1978, + [2758] = 2758, + [2759] = 2225, + [2760] = 2215, + [2761] = 1978, + [2762] = 2739, + [2763] = 2212, + [2764] = 2239, + [2765] = 2217, + [2766] = 2200, + [2767] = 1978, + [2768] = 1978, + [2769] = 2187, + [2770] = 2739, + [2771] = 2771, + [2772] = 2192, + [2773] = 2223, + [2774] = 2739, + [2775] = 2739, + [2776] = 2189, + [2777] = 2739, + [2778] = 2739, + [2779] = 2001, + [2780] = 2198, + [2781] = 2739, + [2782] = 2739, + [2783] = 2002, + [2784] = 2234, + [2785] = 2739, + [2786] = 2739, + [2787] = 2739, + [2788] = 2173, + [2789] = 2739, + [2790] = 2739, + [2791] = 2739, + [2792] = 1996, + [2793] = 2199, + [2794] = 1981, + [2795] = 1984, [2796] = 2796, - [2797] = 2797, - [2798] = 2798, - [2799] = 2799, - [2800] = 2796, - [2801] = 2801, - [2802] = 2802, - [2803] = 2803, - [2804] = 2799, - [2805] = 2805, - [2806] = 2798, - [2807] = 2807, - [2808] = 2808, - [2809] = 2802, - [2810] = 2797, - [2811] = 2811, - [2812] = 2807, - [2813] = 2803, - [2814] = 2799, - [2815] = 2808, - [2816] = 2798, - [2817] = 2796, - [2818] = 2801, - [2819] = 2811, - [2820] = 2801, - [2821] = 2807, - [2822] = 2808, - [2823] = 2797, - [2824] = 2803, - [2825] = 2799, - [2826] = 2798, - [2827] = 2796, - [2828] = 2801, - [2829] = 2811, - [2830] = 2805, - [2831] = 2811, + [2797] = 1996, + [2798] = 1981, + [2799] = 2796, + [2800] = 2739, + [2801] = 1984, + [2802] = 1985, + [2803] = 2193, + [2804] = 2185, + [2805] = 2230, + [2806] = 2183, + [2807] = 1998, + [2808] = 1989, + [2809] = 1999, + [2810] = 1985, + [2811] = 1982, + [2812] = 1989, + [2813] = 1977, + [2814] = 2796, + [2815] = 2237, + [2816] = 2218, + [2817] = 2206, + [2818] = 1978, + [2819] = 2634, + [2820] = 2224, + [2821] = 2221, + [2822] = 2238, + [2823] = 2739, + [2824] = 2739, + [2825] = 2203, + [2826] = 2826, + [2827] = 2197, + [2828] = 2201, + [2829] = 2180, + [2830] = 2002, + [2831] = 2831, [2832] = 2832, - [2833] = 2805, - [2834] = 2832, - [2835] = 2807, - [2836] = 2808, - [2837] = 2797, - [2838] = 2803, - [2839] = 501, + [2833] = 2833, + [2834] = 2834, + [2835] = 2831, + [2836] = 2836, + [2837] = 2836, + [2838] = 2831, + [2839] = 2836, [2840] = 2840, - [2841] = 505, + [2841] = 2841, [2842] = 2842, [2843] = 2843, [2844] = 2844, - [2845] = 503, - [2846] = 2840, - [2847] = 500, - [2848] = 2843, - [2849] = 2849, - [2850] = 504, - [2851] = 2851, - [2852] = 2849, - [2853] = 2849, + [2845] = 2845, + [2846] = 2846, + [2847] = 2843, + [2848] = 2841, + [2849] = 2844, + [2850] = 2850, + [2851] = 2842, + [2852] = 2852, + [2853] = 2850, [2854] = 2854, - [2855] = 2840, - [2856] = 2842, - [2857] = 2857, - [2858] = 2844, - [2859] = 2844, - [2860] = 2860, - [2861] = 2861, - [2862] = 2843, - [2863] = 2863, - [2864] = 513, - [2865] = 564, - [2866] = 565, - [2867] = 566, - [2868] = 567, - [2869] = 568, - [2870] = 569, - [2871] = 570, - [2872] = 571, - [2873] = 572, - [2874] = 573, - [2875] = 574, - [2876] = 515, - [2877] = 587, - [2878] = 588, - [2879] = 589, - [2880] = 590, - [2881] = 591, - [2882] = 592, - [2883] = 593, - [2884] = 594, - [2885] = 595, - [2886] = 596, - [2887] = 597, - [2888] = 598, - [2889] = 599, - [2890] = 600, - [2891] = 514, - [2892] = 613, - [2893] = 614, - [2894] = 615, - [2895] = 616, - [2896] = 617, - [2897] = 618, - [2898] = 619, - [2899] = 620, - [2900] = 621, - [2901] = 623, - [2902] = 624, - [2903] = 625, - [2904] = 626, - [2905] = 2126, - [2906] = 636, - [2907] = 637, - [2908] = 2123, - [2909] = 638, - [2910] = 639, - [2911] = 640, - [2912] = 518, - [2913] = 642, - [2914] = 643, - [2915] = 644, - [2916] = 645, - [2917] = 2917, - [2918] = 2917, - [2919] = 653, - [2920] = 654, - [2921] = 655, - [2922] = 2922, - [2923] = 525, - [2924] = 657, - [2925] = 2925, - [2926] = 2926, - [2927] = 2927, - [2928] = 674, - [2929] = 662, - [2930] = 2930, - [2931] = 2931, - [2932] = 683, - [2933] = 684, - [2934] = 509, - [2935] = 529, - [2936] = 510, - [2937] = 2926, - [2938] = 2927, - [2939] = 516, - [2940] = 2917, - [2941] = 517, - [2942] = 2922, - [2943] = 535, - [2944] = 536, - [2945] = 693, - [2946] = 694, - [2947] = 2925, - [2948] = 537, - [2949] = 2863, - [2950] = 2926, - [2951] = 2927, - [2952] = 2922, - [2953] = 511, - [2954] = 2930, - [2955] = 2931, - [2956] = 703, - [2957] = 704, - [2958] = 512, - [2959] = 2922, - [2960] = 2926, - [2961] = 2927, - [2962] = 2930, - [2963] = 2931, - [2964] = 2930, - [2965] = 2931, - [2966] = 709, - [2967] = 710, - [2968] = 547, - [2969] = 2969, - [2970] = 715, - [2971] = 716, - [2972] = 548, - [2973] = 549, - [2974] = 550, - [2975] = 551, - [2976] = 552, - [2977] = 553, - [2978] = 719, - [2979] = 2863, - [2980] = 2925, - [2981] = 508, - [2982] = 656, - [2983] = 524, - [2984] = 612, - [2985] = 658, - [2986] = 585, - [2987] = 659, - [2988] = 660, - [2989] = 661, - [2990] = 586, - [2991] = 526, - [2992] = 667, - [2993] = 668, - [2994] = 669, - [2995] = 670, - [2996] = 671, - [2997] = 672, - [2998] = 673, - [2999] = 562, - [3000] = 663, - [3001] = 563, - [3002] = 3002, - [3003] = 527, - [3004] = 528, - [3005] = 675, - [3006] = 676, - [3007] = 677, - [3008] = 678, - [3009] = 679, - [3010] = 680, - [3011] = 681, - [3012] = 682, - [3013] = 560, - [3014] = 575, - [3015] = 561, - [3016] = 576, - [3017] = 530, - [3018] = 577, - [3019] = 531, - [3020] = 578, - [3021] = 627, - [3022] = 532, - [3023] = 628, - [3024] = 533, - [3025] = 685, - [3026] = 686, - [3027] = 2097, - [3028] = 534, - [3029] = 629, - [3030] = 687, - [3031] = 688, - [3032] = 689, - [3033] = 690, - [3034] = 3034, - [3035] = 691, - [3036] = 630, - [3037] = 692, - [3038] = 631, - [3039] = 632, - [3040] = 633, - [3041] = 695, - [3042] = 696, - [3043] = 634, - [3044] = 635, - [3045] = 579, - [3046] = 538, - [3047] = 539, - [3048] = 580, - [3049] = 581, - [3050] = 540, - [3051] = 697, - [3052] = 698, - [3053] = 699, - [3054] = 700, - [3055] = 559, - [3056] = 702, - [3057] = 582, - [3058] = 583, - [3059] = 705, - [3060] = 3060, - [3061] = 601, - [3062] = 602, - [3063] = 603, - [3064] = 584, - [3065] = 541, - [3066] = 542, - [3067] = 604, - [3068] = 605, - [3069] = 543, - [3070] = 606, - [3071] = 544, - [3072] = 706, - [3073] = 707, - [3074] = 708, - [3075] = 545, - [3076] = 646, - [3077] = 647, - [3078] = 711, - [3079] = 546, - [3080] = 664, - [3081] = 648, - [3082] = 3034, - [3083] = 712, - [3084] = 713, - [3085] = 714, - [3086] = 665, - [3087] = 666, - [3088] = 649, - [3089] = 650, - [3090] = 651, - [3091] = 652, - [3092] = 717, - [3093] = 607, - [3094] = 718, - [3095] = 608, - [3096] = 554, - [3097] = 720, - [3098] = 722, - [3099] = 555, - [3100] = 729, - [3101] = 730, - [3102] = 641, - [3103] = 732, - [3104] = 609, - [3105] = 2099, - [3106] = 556, - [3107] = 523, - [3108] = 3108, - [3109] = 557, - [3110] = 610, - [3111] = 611, - [3112] = 3034, - [3113] = 558, - [3114] = 3114, - [3115] = 701, - [3116] = 3116, - [3117] = 739, - [3118] = 741, - [3119] = 3116, - [3120] = 3120, - [3121] = 3116, - [3122] = 747, - [3123] = 746, - [3124] = 745, - [3125] = 748, - [3126] = 735, - [3127] = 738, - [3128] = 736, - [3129] = 3120, - [3130] = 3120, - [3131] = 3120, - [3132] = 3116, - [3133] = 740, - [3134] = 3134, - [3135] = 3135, - [3136] = 3136, - [3137] = 3136, - [3138] = 2196, - [3139] = 2167, - [3140] = 3135, - [3141] = 2169, - [3142] = 3135, - [3143] = 2172, - [3144] = 3144, - [3145] = 2126, - [3146] = 3146, - [3147] = 2099, - [3148] = 2097, - [3149] = 3149, - [3150] = 2123, - [3151] = 3151, - [3152] = 3152, - [3153] = 3153, - [3154] = 2099, - [3155] = 2097, - [3156] = 2097, - [3157] = 2099, - [3158] = 2099, - [3159] = 2097, + [2855] = 2845, + [2856] = 2854, + [2857] = 2846, + [2858] = 2843, + [2859] = 2852, + [2860] = 2846, + [2861] = 2850, + [2862] = 2852, + [2863] = 2850, + [2864] = 2841, + [2865] = 2852, + [2866] = 2854, + [2867] = 2840, + [2868] = 2843, + [2869] = 2845, + [2870] = 2841, + [2871] = 2842, + [2872] = 2840, + [2873] = 2854, + [2874] = 2845, + [2875] = 2840, + [2876] = 2842, + [2877] = 2877, + [2878] = 2844, + [2879] = 2846, + [2880] = 2880, + [2881] = 2877, + [2882] = 2880, + [2883] = 2883, + [2884] = 480, + [2885] = 2885, + [2886] = 2886, + [2887] = 2883, + [2888] = 2888, + [2889] = 2889, + [2890] = 2889, + [2891] = 513, + [2892] = 490, + [2893] = 2893, + [2894] = 479, + [2895] = 2895, + [2896] = 2886, + [2897] = 2893, + [2898] = 2898, + [2899] = 2899, + [2900] = 489, + [2901] = 2898, + [2902] = 2898, + [2903] = 2903, + [2904] = 2883, + [2905] = 2893, + [2906] = 2889, + [2907] = 645, + [2908] = 2908, + [2909] = 2909, + [2910] = 2910, + [2911] = 2911, + [2912] = 2912, + [2913] = 2913, + [2914] = 2914, + [2915] = 2172, + [2916] = 577, + [2917] = 682, + [2918] = 578, + [2919] = 2914, + [2920] = 596, + [2921] = 597, + [2922] = 598, + [2923] = 599, + [2924] = 600, + [2925] = 670, + [2926] = 601, + [2927] = 602, + [2928] = 603, + [2929] = 604, + [2930] = 605, + [2931] = 661, + [2932] = 573, + [2933] = 606, + [2934] = 607, + [2935] = 723, + [2936] = 525, + [2937] = 608, + [2938] = 662, + [2939] = 2909, + [2940] = 724, + [2941] = 2941, + [2942] = 663, + [2943] = 534, + [2944] = 574, + [2945] = 609, + [2946] = 664, + [2947] = 526, + [2948] = 520, + [2949] = 665, + [2950] = 2941, + [2951] = 538, + [2952] = 524, + [2953] = 579, + [2954] = 527, + [2955] = 727, + [2956] = 2910, + [2957] = 2911, + [2958] = 644, + [2959] = 2941, + [2960] = 544, + [2961] = 545, + [2962] = 546, + [2963] = 580, + [2964] = 2910, + [2965] = 2911, + [2966] = 2912, + [2967] = 2166, + [2968] = 528, + [2969] = 646, + [2970] = 2908, + [2971] = 529, + [2972] = 691, + [2973] = 692, + [2974] = 581, + [2975] = 582, + [2976] = 2912, + [2977] = 2913, + [2978] = 583, + [2979] = 647, + [2980] = 622, + [2981] = 623, + [2982] = 624, + [2983] = 717, + [2984] = 648, + [2985] = 2908, + [2986] = 625, + [2987] = 718, + [2988] = 2914, + [2989] = 649, + [2990] = 575, + [2991] = 576, + [2992] = 626, + [2993] = 2910, + [2994] = 530, + [2995] = 522, + [2996] = 711, + [2997] = 712, + [2998] = 556, + [2999] = 2909, + [3000] = 557, + [3001] = 558, + [3002] = 559, + [3003] = 560, + [3004] = 561, + [3005] = 562, + [3006] = 701, + [3007] = 702, + [3008] = 731, + [3009] = 3009, + [3010] = 628, + [3011] = 629, + [3012] = 518, + [3013] = 2909, + [3014] = 523, + [3015] = 630, + [3016] = 631, + [3017] = 632, + [3018] = 2912, + [3019] = 2913, + [3020] = 651, + [3021] = 652, + [3022] = 633, + [3023] = 653, + [3024] = 2911, + [3025] = 634, + [3026] = 2913, + [3027] = 553, + [3028] = 637, + [3029] = 586, + [3030] = 636, + [3031] = 616, + [3032] = 539, + [3033] = 671, + [3034] = 617, + [3035] = 707, + [3036] = 540, + [3037] = 541, + [3038] = 542, + [3039] = 543, + [3040] = 618, + [3041] = 725, + [3042] = 726, + [3043] = 639, + [3044] = 585, + [3045] = 635, + [3046] = 619, + [3047] = 3047, + [3048] = 679, + [3049] = 620, + [3050] = 621, + [3051] = 656, + [3052] = 589, + [3053] = 590, + [3054] = 676, + [3055] = 657, + [3056] = 2139, + [3057] = 720, + [3058] = 721, + [3059] = 594, + [3060] = 683, + [3061] = 684, + [3062] = 722, + [3063] = 685, + [3064] = 686, + [3065] = 588, + [3066] = 687, + [3067] = 688, + [3068] = 689, + [3069] = 547, + [3070] = 548, + [3071] = 595, + [3072] = 533, + [3073] = 549, + [3074] = 587, + [3075] = 690, + [3076] = 708, + [3077] = 550, + [3078] = 551, + [3079] = 552, + [3080] = 660, + [3081] = 640, + [3082] = 554, + [3083] = 714, + [3084] = 728, + [3085] = 709, + [3086] = 667, + [3087] = 643, + [3088] = 678, + [3089] = 729, + [3090] = 715, + [3091] = 716, + [3092] = 710, + [3093] = 3093, + [3094] = 730, + [3095] = 555, + [3096] = 531, + [3097] = 650, + [3098] = 627, + [3099] = 3099, + [3100] = 719, + [3101] = 668, + [3102] = 3102, + [3103] = 677, + [3104] = 535, + [3105] = 638, + [3106] = 672, + [3107] = 693, + [3108] = 673, + [3109] = 694, + [3110] = 674, + [3111] = 3111, + [3112] = 680, + [3113] = 610, + [3114] = 695, + [3115] = 696, + [3116] = 697, + [3117] = 698, + [3118] = 536, + [3119] = 699, + [3120] = 537, + [3121] = 700, + [3122] = 641, + [3123] = 611, + [3124] = 703, + [3125] = 704, + [3126] = 563, + [3127] = 681, + [3128] = 564, + [3129] = 565, + [3130] = 566, + [3131] = 567, + [3132] = 591, + [3133] = 568, + [3134] = 569, + [3135] = 705, + [3136] = 3099, + [3137] = 584, + [3138] = 570, + [3139] = 612, + [3140] = 571, + [3141] = 572, + [3142] = 3099, + [3143] = 658, + [3144] = 669, + [3145] = 613, + [3146] = 666, + [3147] = 614, + [3148] = 2142, + [3149] = 592, + [3150] = 615, + [3151] = 675, + [3152] = 532, + [3153] = 654, + [3154] = 659, + [3155] = 642, + [3156] = 655, + [3157] = 713, + [3158] = 706, + [3159] = 593, [3160] = 3160, - [3161] = 3161, - [3162] = 2099, - [3163] = 3163, - [3164] = 1945, - [3165] = 1934, - [3166] = 1939, - [3167] = 1940, - [3168] = 1936, - [3169] = 2099, - [3170] = 1937, - [3171] = 1936, - [3172] = 2109, - [3173] = 2097, - [3174] = 1943, - [3175] = 2097, - [3176] = 1941, - [3177] = 2592, - [3178] = 1944, - [3179] = 1946, - [3180] = 1941, - [3181] = 3163, - [3182] = 1938, - [3183] = 1958, - [3184] = 3163, - [3185] = 3185, + [3161] = 738, + [3162] = 746, + [3163] = 737, + [3164] = 735, + [3165] = 736, + [3166] = 739, + [3167] = 3167, + [3168] = 754, + [3169] = 3167, + [3170] = 3160, + [3171] = 3160, + [3172] = 734, + [3173] = 3167, + [3174] = 3167, + [3175] = 3160, + [3176] = 733, + [3177] = 743, + [3178] = 3178, + [3179] = 2216, + [3180] = 3178, + [3181] = 2221, + [3182] = 3182, + [3183] = 2186, + [3184] = 3182, + [3185] = 2183, [3186] = 3186, - [3187] = 3163, - [3188] = 1935, - [3189] = 3189, - [3190] = 2170, - [3191] = 2171, - [3192] = 2173, - [3193] = 2174, - [3194] = 2175, + [3187] = 3182, + [3188] = 3188, + [3189] = 2142, + [3190] = 2166, + [3191] = 2139, + [3192] = 3192, + [3193] = 3193, + [3194] = 3194, [3195] = 3195, - [3196] = 3196, + [3196] = 2172, [3197] = 3197, - [3198] = 3198, - [3199] = 3197, - [3200] = 1941, - [3201] = 3198, - [3202] = 3202, - [3203] = 3202, - [3204] = 2187, - [3205] = 1936, + [3198] = 2139, + [3199] = 3199, + [3200] = 2142, + [3201] = 2139, + [3202] = 2142, + [3203] = 2142, + [3204] = 2139, + [3205] = 3205, [3206] = 3206, - [3207] = 2146, - [3208] = 3208, - [3209] = 3209, - [3210] = 3209, - [3211] = 3185, - [3212] = 3195, - [3213] = 3213, - [3214] = 3186, - [3215] = 3215, - [3216] = 2168, - [3217] = 3217, - [3218] = 3208, - [3219] = 3213, - [3220] = 3206, - [3221] = 3215, - [3222] = 1944, - [3223] = 3223, - [3224] = 1946, - [3225] = 1937, - [3226] = 3226, - [3227] = 1943, - [3228] = 3228, + [3207] = 3207, + [3208] = 1981, + [3209] = 1989, + [3210] = 3207, + [3211] = 2634, + [3212] = 2139, + [3213] = 1999, + [3214] = 1984, + [3215] = 1978, + [3216] = 2142, + [3217] = 2163, + [3218] = 1995, + [3219] = 1978, + [3220] = 1995, + [3221] = 3207, + [3222] = 1982, + [3223] = 1977, + [3224] = 2001, + [3225] = 3207, + [3226] = 1985, + [3227] = 2142, + [3228] = 2139, [3229] = 3229, - [3230] = 3230, - [3231] = 2099, - [3232] = 3230, + [3230] = 1983, + [3231] = 1996, + [3232] = 2002, [3233] = 3233, - [3234] = 3234, - [3235] = 2592, - [3236] = 3234, - [3237] = 3237, - [3238] = 3238, - [3239] = 3239, - [3240] = 3240, - [3241] = 3239, - [3242] = 3234, - [3243] = 3226, - [3244] = 3244, - [3245] = 3230, - [3246] = 2097, - [3247] = 3196, + [3234] = 2198, + [3235] = 3235, + [3236] = 3236, + [3237] = 1978, + [3238] = 2210, + [3239] = 2199, + [3240] = 2214, + [3241] = 3241, + [3242] = 3242, + [3243] = 3243, + [3244] = 2235, + [3245] = 3235, + [3246] = 3246, + [3247] = 3247, [3248] = 3248, - [3249] = 3249, - [3250] = 3250, - [3251] = 3251, - [3252] = 3252, + [3249] = 1995, + [3250] = 2227, + [3251] = 3206, + [3252] = 3248, [3253] = 3253, - [3254] = 3250, + [3254] = 3246, [3255] = 3255, - [3256] = 3256, - [3257] = 1937, - [3258] = 3252, - [3259] = 1943, - [3260] = 1944, - [3261] = 2102, - [3262] = 2592, - [3263] = 1946, - [3264] = 2109, - [3265] = 3252, - [3266] = 2113, - [3267] = 2106, - [3268] = 3248, - [3269] = 2104, - [3270] = 3253, - [3271] = 2118, - [3272] = 3248, - [3273] = 3209, - [3274] = 3249, - [3275] = 2592, - [3276] = 3252, - [3277] = 3251, - [3278] = 3255, - [3279] = 1937, - [3280] = 1943, - [3281] = 1944, - [3282] = 1946, - [3283] = 2105, - [3284] = 3248, - [3285] = 2110, - [3286] = 3248, - [3287] = 3248, - [3288] = 3248, - [3289] = 3248, - [3290] = 2103, - [3291] = 3248, - [3292] = 3248, - [3293] = 3248, - [3294] = 3248, - [3295] = 2112, + [3256] = 3247, + [3257] = 2205, + [3258] = 3233, + [3259] = 3259, + [3260] = 2194, + [3261] = 3243, + [3262] = 3253, + [3263] = 3241, + [3264] = 3229, + [3265] = 3265, + [3266] = 3266, + [3267] = 3267, + [3268] = 3268, + [3269] = 3269, + [3270] = 3270, + [3271] = 2139, + [3272] = 2142, + [3273] = 1999, + [3274] = 1982, + [3275] = 1977, + [3276] = 1983, + [3277] = 3277, + [3278] = 3278, + [3279] = 3266, + [3280] = 3277, + [3281] = 3281, + [3282] = 3255, + [3283] = 3283, + [3284] = 3278, + [3285] = 2634, + [3286] = 3269, + [3287] = 3266, + [3288] = 3277, + [3289] = 3236, + [3290] = 3290, + [3291] = 3291, + [3292] = 2157, + [3293] = 1999, + [3294] = 3294, + [3295] = 1982, [3296] = 3296, - [3297] = 3297, - [3298] = 3298, - [3299] = 3299, - [3300] = 3300, - [3301] = 3301, - [3302] = 3302, - [3303] = 3303, - [3304] = 3304, - [3305] = 3305, - [3306] = 3306, - [3307] = 3307, + [3297] = 1977, + [3298] = 2154, + [3299] = 2151, + [3300] = 1999, + [3301] = 1982, + [3302] = 1977, + [3303] = 2150, + [3304] = 2152, + [3305] = 2145, + [3306] = 2147, + [3307] = 2155, [3308] = 3308, - [3309] = 3309, - [3310] = 3229, + [3309] = 2158, + [3310] = 2163, [3311] = 3311, - [3312] = 3312, + [3312] = 3294, [3313] = 3313, - [3314] = 3298, - [3315] = 3299, - [3316] = 3300, - [3317] = 3301, - [3318] = 3318, - [3319] = 3319, - [3320] = 3320, + [3314] = 1983, + [3315] = 3315, + [3316] = 3311, + [3317] = 3308, + [3318] = 3311, + [3319] = 3253, + [3320] = 2634, [3321] = 3321, - [3322] = 3322, - [3323] = 3244, - [3324] = 3324, - [3325] = 3324, - [3326] = 3326, + [3322] = 3313, + [3323] = 3315, + [3324] = 3311, + [3325] = 2634, + [3326] = 3313, [3327] = 3327, - [3328] = 3328, - [3329] = 3329, - [3330] = 3330, - [3331] = 3331, - [3332] = 3332, - [3333] = 3309, - [3334] = 3334, - [3335] = 3335, - [3336] = 3319, - [3337] = 3337, - [3338] = 3297, - [3339] = 3339, - [3340] = 3296, + [3328] = 3313, + [3329] = 3321, + [3330] = 3313, + [3331] = 3313, + [3332] = 3313, + [3333] = 3313, + [3334] = 3313, + [3335] = 3313, + [3336] = 3313, + [3337] = 3313, + [3338] = 3296, + [3339] = 1983, + [3340] = 3340, [3341] = 3341, [3342] = 3342, - [3343] = 3240, - [3344] = 3326, - [3345] = 3309, - [3346] = 3328, - [3347] = 3329, - [3348] = 3330, - [3349] = 3331, - [3350] = 3332, - [3351] = 3342, + [3343] = 3343, + [3344] = 3344, + [3345] = 3345, + [3346] = 3346, + [3347] = 3347, + [3348] = 3348, + [3349] = 3349, + [3350] = 3350, + [3351] = 3351, [3352] = 3352, - [3353] = 3306, - [3354] = 3335, - [3355] = 3318, - [3356] = 3309, + [3353] = 3353, + [3354] = 3354, + [3355] = 3355, + [3356] = 3356, [3357] = 3357, - [3358] = 3334, + [3358] = 3354, [3359] = 3359, - [3360] = 3306, - [3361] = 3335, - [3362] = 3318, - [3363] = 3309, - [3364] = 3357, - [3365] = 3334, - [3366] = 3306, - [3367] = 3335, - [3368] = 3318, - [3369] = 3357, - [3370] = 3334, - [3371] = 3339, - [3372] = 3306, - [3373] = 3335, - [3374] = 3309, - [3375] = 3306, - [3376] = 3335, - [3377] = 3306, - [3378] = 3335, - [3379] = 3306, - [3380] = 3335, - [3381] = 3357, - [3382] = 3306, - [3383] = 3335, - [3384] = 3244, - [3385] = 3335, - [3386] = 3335, - [3387] = 3387, - [3388] = 3335, - [3389] = 3335, - [3390] = 3335, - [3391] = 3335, - [3392] = 3335, - [3393] = 3335, - [3394] = 3335, - [3395] = 3335, - [3396] = 3318, - [3397] = 3357, - [3398] = 3305, - [3399] = 3387, - [3400] = 3359, - [3401] = 3357, - [3402] = 3305, - [3403] = 3337, - [3404] = 3387, - [3405] = 3359, - [3406] = 3335, - [3407] = 3327, - [3408] = 3408, - [3409] = 2109, - [3410] = 3410, - [3411] = 3411, - [3412] = 3312, - [3413] = 3413, - [3414] = 3414, - [3415] = 3313, - [3416] = 3416, - [3417] = 3416, - [3418] = 3418, - [3419] = 3419, - [3420] = 3420, - [3421] = 3421, - [3422] = 3256, - [3423] = 3423, - [3424] = 3256, - [3425] = 2109, - [3426] = 3322, - [3427] = 3427, + [3360] = 3340, + [3361] = 3283, + [3362] = 3362, + [3363] = 3267, + [3364] = 3268, + [3365] = 3365, + [3366] = 3366, + [3367] = 3367, + [3368] = 3368, + [3369] = 3368, + [3370] = 3370, + [3371] = 3371, + [3372] = 3372, + [3373] = 3354, + [3374] = 3374, + [3375] = 3370, + [3376] = 3376, + [3377] = 3377, + [3378] = 3378, + [3379] = 3379, + [3380] = 3380, + [3381] = 3365, + [3382] = 3340, + [3383] = 3383, + [3384] = 3372, + [3385] = 3354, + [3386] = 3371, + [3387] = 3374, + [3388] = 3367, + [3389] = 3389, + [3390] = 3376, + [3391] = 3377, + [3392] = 3365, + [3393] = 3340, + [3394] = 3380, + [3395] = 3372, + [3396] = 3354, + [3397] = 3374, + [3398] = 3341, + [3399] = 3383, + [3400] = 3352, + [3401] = 3355, + [3402] = 3356, + [3403] = 3359, + [3404] = 3404, + [3405] = 3365, + [3406] = 3340, + [3407] = 3407, + [3408] = 3372, + [3409] = 3340, + [3410] = 3374, + [3411] = 3341, + [3412] = 3412, + [3413] = 3365, + [3414] = 3340, + [3415] = 3346, + [3416] = 3365, + [3417] = 3340, + [3418] = 3347, + [3419] = 3365, + [3420] = 3340, + [3421] = 3348, + [3422] = 3365, + [3423] = 3340, + [3424] = 3349, + [3425] = 3365, + [3426] = 3340, + [3427] = 3340, [3428] = 3428, - [3429] = 3429, - [3430] = 3311, - [3431] = 3321, - [3432] = 3303, - [3433] = 3304, - [3434] = 3410, - [3435] = 3421, - [3436] = 2109, - [3437] = 3437, - [3438] = 3209, - [3439] = 3439, - [3440] = 3423, - [3441] = 3420, - [3442] = 2109, - [3443] = 3443, - [3444] = 3444, - [3445] = 3413, - [3446] = 3446, - [3447] = 3447, - [3448] = 3448, - [3449] = 3449, - [3450] = 3413, - [3451] = 3449, + [3429] = 3353, + [3430] = 3340, + [3431] = 3412, + [3432] = 3354, + [3433] = 3340, + [3434] = 3268, + [3435] = 3340, + [3436] = 3436, + [3437] = 3340, + [3438] = 3340, + [3439] = 3340, + [3440] = 3340, + [3441] = 3340, + [3442] = 3372, + [3443] = 3374, + [3444] = 3357, + [3445] = 3389, + [3446] = 3407, + [3447] = 3374, + [3448] = 3357, + [3449] = 3389, + [3450] = 3407, + [3451] = 3341, [3452] = 3452, - [3453] = 2109, - [3454] = 3454, + [3453] = 3453, + [3454] = 2163, [3455] = 3455, - [3456] = 3454, - [3457] = 3457, - [3458] = 3420, - [3459] = 3339, - [3460] = 3423, - [3461] = 3446, + [3456] = 3327, + [3457] = 3327, + [3458] = 2163, + [3459] = 3459, + [3460] = 3253, + [3461] = 3436, [3462] = 3462, - [3463] = 3429, - [3464] = 3429, + [3463] = 3463, + [3464] = 3464, [3465] = 3465, - [3466] = 3443, - [3467] = 3465, - [3468] = 3462, - [3469] = 3429, - [3470] = 3470, + [3466] = 3466, + [3467] = 3345, + [3468] = 3468, + [3469] = 3350, + [3470] = 3428, [3471] = 3471, [3472] = 3472, - [3473] = 3457, - [3474] = 3474, - [3475] = 3471, - [3476] = 3476, - [3477] = 3477, - [3478] = 3439, - [3479] = 3444, - [3480] = 3448, - [3481] = 2172, - [3482] = 3416, - [3483] = 3420, + [3473] = 3455, + [3474] = 3465, + [3475] = 2163, + [3476] = 3351, + [3477] = 3366, + [3478] = 3478, + [3479] = 3479, + [3480] = 3362, + [3481] = 3481, + [3482] = 3466, + [3483] = 3479, [3484] = 3484, - [3485] = 2167, - [3486] = 3477, - [3487] = 3487, + [3485] = 3485, + [3486] = 3353, + [3487] = 2163, [3488] = 3488, [3489] = 3489, - [3490] = 3421, - [3491] = 3488, - [3492] = 2196, + [3490] = 3481, + [3491] = 3491, + [3492] = 3492, [3493] = 3493, - [3494] = 3493, - [3495] = 3472, - [3496] = 3496, - [3497] = 3496, - [3498] = 3455, - [3499] = 2169, + [3494] = 3491, + [3495] = 3495, + [3496] = 3479, + [3497] = 3497, + [3498] = 3471, + [3499] = 3452, [3500] = 3500, - [3501] = 3489, - [3502] = 3454, - [3503] = 3410, - [3504] = 3244, - [3505] = 3447, - [3506] = 3423, + [3501] = 3481, + [3502] = 3452, + [3503] = 3503, + [3504] = 3504, + [3505] = 3484, + [3506] = 3506, [3507] = 3488, - [3508] = 3462, - [3509] = 3484, - [3510] = 3420, - [3511] = 3423, - [3512] = 3512, - [3513] = 3476, + [3508] = 3497, + [3509] = 2163, + [3510] = 3471, + [3511] = 3485, + [3512] = 3489, + [3513] = 3513, [3514] = 3514, - [3515] = 2175, - [3516] = 3516, - [3517] = 3517, - [3518] = 3420, - [3519] = 3423, - [3520] = 3516, - [3521] = 3429, - [3522] = 3446, - [3523] = 3512, - [3524] = 3524, + [3515] = 3497, + [3516] = 3495, + [3517] = 3503, + [3518] = 3518, + [3519] = 3500, + [3520] = 2216, + [3521] = 3481, + [3522] = 3452, + [3523] = 3523, + [3524] = 3504, [3525] = 3525, [3526] = 3526, - [3527] = 3500, - [3528] = 3429, - [3529] = 3529, - [3530] = 3474, - [3531] = 3413, - [3532] = 3339, - [3533] = 2109, - [3534] = 3484, + [3527] = 3493, + [3528] = 3528, + [3529] = 2186, + [3530] = 3530, + [3531] = 3455, + [3532] = 3532, + [3533] = 2221, + [3534] = 3534, [3535] = 3535, - [3536] = 3449, - [3537] = 2174, - [3538] = 3472, - [3539] = 3471, - [3540] = 3493, + [3536] = 3525, + [3537] = 3526, + [3538] = 2183, + [3539] = 3465, + [3540] = 3471, [3541] = 3541, - [3542] = 3542, - [3543] = 2168, - [3544] = 3544, - [3545] = 3256, - [3546] = 3516, - [3547] = 2170, - [3548] = 3465, - [3549] = 3549, - [3550] = 3550, + [3542] = 3528, + [3543] = 3530, + [3544] = 3466, + [3545] = 3535, + [3546] = 3546, + [3547] = 3492, + [3548] = 3513, + [3549] = 3523, + [3550] = 3268, [3551] = 3551, - [3552] = 3552, - [3553] = 3553, - [3554] = 2171, + [3552] = 3523, + [3553] = 3471, + [3554] = 3554, [3555] = 3555, - [3556] = 2173, - [3557] = 3557, - [3558] = 3558, - [3559] = 3559, + [3556] = 3556, + [3557] = 3532, + [3558] = 3488, + [3559] = 3327, [3560] = 3560, - [3561] = 3500, - [3562] = 3443, + [3561] = 3541, + [3562] = 3562, [3563] = 3563, [3564] = 3564, - [3565] = 3474, - [3566] = 3413, - [3567] = 3517, - [3568] = 3517, + [3565] = 3565, + [3566] = 2210, + [3567] = 3567, + [3568] = 3568, [3569] = 3569, - [3570] = 3476, + [3570] = 3563, [3571] = 3571, - [3572] = 3572, + [3572] = 3534, [3573] = 3573, [3574] = 3574, [3575] = 3575, - [3576] = 3576, - [3577] = 3558, + [3576] = 3491, + [3577] = 2227, [3578] = 3578, - [3579] = 3525, - [3580] = 3549, - [3581] = 3542, - [3582] = 3560, + [3579] = 2194, + [3580] = 3580, + [3581] = 3534, + [3582] = 2214, [3583] = 3583, [3584] = 3584, [3585] = 3585, - [3586] = 3525, - [3587] = 3474, - [3588] = 3588, - [3589] = 3416, - [3590] = 3584, - [3591] = 3588, - [3592] = 3592, - [3593] = 3585, + [3586] = 3489, + [3587] = 3513, + [3588] = 3532, + [3589] = 3589, + [3590] = 3590, + [3591] = 3479, + [3592] = 2235, + [3593] = 3593, [3594] = 3594, - [3595] = 3573, - [3596] = 3596, - [3597] = 3542, - [3598] = 3410, - [3599] = 3476, - [3600] = 3560, - [3601] = 3421, - [3602] = 3551, + [3595] = 3578, + [3596] = 3541, + [3597] = 3525, + [3598] = 3353, + [3599] = 2205, + [3600] = 3481, + [3601] = 3452, + [3602] = 3479, [3603] = 3563, - [3604] = 3549, + [3604] = 3485, [3605] = 3605, - [3606] = 3477, + [3606] = 3471, [3607] = 3607, - [3608] = 3608, - [3609] = 3500, - [3610] = 3571, - [3611] = 3512, - [3612] = 3592, - [3613] = 3613, - [3614] = 3454, - [3615] = 3615, - [3616] = 3616, - [3617] = 3617, - [3618] = 3574, - [3619] = 3559, - [3620] = 3564, + [3608] = 2163, + [3609] = 3514, + [3610] = 3578, + [3611] = 3481, + [3612] = 3452, + [3613] = 3514, + [3614] = 3530, + [3615] = 3589, + [3616] = 3484, + [3617] = 3532, + [3618] = 3565, + [3619] = 3568, + [3620] = 3535, [3621] = 3621, - [3622] = 3578, - [3623] = 3583, - [3624] = 3526, - [3625] = 3625, - [3626] = 3594, - [3627] = 3627, - [3628] = 3572, - [3629] = 3608, + [3622] = 3622, + [3623] = 3623, + [3624] = 3624, + [3625] = 3575, + [3626] = 3567, + [3627] = 3584, + [3628] = 3585, + [3629] = 3593, [3630] = 3630, - [3631] = 3541, - [3632] = 3571, - [3633] = 3484, - [3634] = 3559, - [3635] = 3544, - [3636] = 3555, - [3637] = 3564, + [3631] = 3631, + [3632] = 3632, + [3633] = 3633, + [3634] = 3564, + [3635] = 3635, + [3636] = 3636, + [3637] = 3637, [3638] = 3569, - [3639] = 3630, - [3640] = 3640, - [3641] = 3496, - [3642] = 3596, - [3643] = 3514, - [3644] = 3630, - [3645] = 3550, - [3646] = 3551, - [3647] = 3572, - [3648] = 3514, - [3649] = 3563, - [3650] = 3630, - [3651] = 3630, - [3652] = 3575, - [3653] = 3630, - [3654] = 3576, - [3655] = 3630, - [3656] = 3526, - [3657] = 3541, - [3658] = 3544, - [3659] = 3555, - [3660] = 3625, - [3661] = 3640, - [3662] = 3550, - [3663] = 3552, - [3664] = 3553, - [3665] = 3529, - [3666] = 3552, - [3667] = 3605, - [3668] = 3607, - [3669] = 3615, - [3670] = 3553, - [3671] = 3671, - [3672] = 3535, - [3673] = 3671, - [3674] = 3535, - [3675] = 3616, - [3676] = 3558, - [3677] = 3529, - [3678] = 3630, - [3679] = 3617, - [3680] = 3489, - [3681] = 3569, - [3682] = 3552, - [3683] = 3683, - [3684] = 3683, - [3685] = 3500, - [3686] = 3686, - [3687] = 3560, - [3688] = 3525, - [3689] = 3535, - [3690] = 3690, - [3691] = 3691, - [3692] = 3555, - [3693] = 3686, - [3694] = 3694, - [3695] = 3550, - [3696] = 3696, - [3697] = 3697, - [3698] = 3474, - [3699] = 3683, - [3700] = 3700, - [3701] = 3471, - [3702] = 3691, - [3703] = 3700, - [3704] = 3671, - [3705] = 3683, - [3706] = 3686, - [3707] = 3696, - [3708] = 3549, - [3709] = 3690, - [3710] = 3691, - [3711] = 3711, - [3712] = 3697, - [3713] = 3683, - [3714] = 3686, - [3715] = 3686, - [3716] = 3696, - [3717] = 3691, - [3718] = 3697, - [3719] = 3493, - [3720] = 3484, - [3721] = 3526, - [3722] = 3683, - [3723] = 3484, - [3724] = 3571, - [3725] = 3686, - [3726] = 3559, - [3727] = 3697, - [3728] = 3476, - [3729] = 3544, - [3730] = 3686, - [3731] = 3697, - [3732] = 3686, - [3733] = 3696, - [3734] = 3697, - [3735] = 3683, - [3736] = 3488, - [3737] = 3553, + [3639] = 3639, + [3640] = 3639, + [3641] = 3594, + [3642] = 3589, + [3643] = 3643, + [3644] = 3569, + [3645] = 3645, + [3646] = 3646, + [3647] = 3647, + [3648] = 3648, + [3649] = 3574, + [3650] = 3605, + [3651] = 3556, + [3652] = 3583, + [3653] = 3594, + [3654] = 3654, + [3655] = 3593, + [3656] = 3567, + [3657] = 3645, + [3658] = 3646, + [3659] = 3659, + [3660] = 3647, + [3661] = 3648, + [3662] = 3583, + [3663] = 3574, + [3664] = 3555, + [3665] = 3665, + [3666] = 3605, + [3667] = 3667, + [3668] = 3528, + [3669] = 3556, + [3670] = 3580, + [3671] = 3526, + [3672] = 3554, + [3673] = 3673, + [3674] = 3674, + [3675] = 3632, + [3676] = 3541, + [3677] = 3466, + [3678] = 3667, + [3679] = 3622, + [3680] = 3635, + [3681] = 3623, + [3682] = 3636, + [3683] = 3624, + [3684] = 3665, + [3685] = 3630, + [3686] = 3631, + [3687] = 3555, + [3688] = 3455, + [3689] = 3560, + [3690] = 3534, + [3691] = 3571, + [3692] = 3465, + [3693] = 3665, + [3694] = 3562, + [3695] = 3695, + [3696] = 3633, + [3697] = 3637, + [3698] = 3665, + [3699] = 3665, + [3700] = 3580, + [3701] = 3654, + [3702] = 3665, + [3703] = 3497, + [3704] = 3665, + [3705] = 3554, + [3706] = 3571, + [3707] = 3665, + [3708] = 3560, + [3709] = 3562, + [3710] = 3695, + [3711] = 3659, + [3712] = 3551, + [3713] = 3551, + [3714] = 3590, + [3715] = 3514, + [3716] = 3565, + [3717] = 3568, + [3718] = 3718, + [3719] = 3575, + [3720] = 3584, + [3721] = 3585, + [3722] = 3718, + [3723] = 3564, + [3724] = 3590, + [3725] = 3674, + [3726] = 3530, + [3727] = 3727, + [3728] = 3728, + [3729] = 3555, + [3730] = 3534, + [3731] = 3568, + [3732] = 3728, + [3733] = 3733, + [3734] = 3734, + [3735] = 3735, + [3736] = 3736, + [3737] = 3532, [3738] = 3738, - [3739] = 3697, - [3740] = 3572, - [3741] = 3476, - [3742] = 3472, - [3743] = 3474, - [3744] = 3542, - [3745] = 3691, - [3746] = 3696, - [3747] = 3747, - [3748] = 3551, - [3749] = 3690, - [3750] = 3683, - [3751] = 3683, - [3752] = 3500, - [3753] = 3700, - [3754] = 3686, - [3755] = 3529, - [3756] = 3696, - [3757] = 3564, - [3758] = 3558, - [3759] = 3691, - [3760] = 3683, - [3761] = 3514, - [3762] = 3686, - [3763] = 3691, - [3764] = 3569, - [3765] = 3686, - [3766] = 3691, - [3767] = 3541, - [3768] = 3697, - [3769] = 3683, - [3770] = 3563, - [3771] = 3696, - [3772] = 3696, - [3773] = 2174, - [3774] = 3550, - [3775] = 3535, - [3776] = 3525, - [3777] = 3613, - [3778] = 3549, - [3779] = 3541, - [3780] = 3571, - [3781] = 3443, - [3782] = 3551, - [3783] = 3526, - [3784] = 3572, - [3785] = 3514, - [3786] = 3563, - [3787] = 3535, - [3788] = 3560, - [3789] = 3789, - [3790] = 3558, - [3791] = 3552, - [3792] = 3477, - [3793] = 3489, - [3794] = 3789, + [3739] = 3734, + [3740] = 3575, + [3741] = 3584, + [3742] = 3585, + [3743] = 3743, + [3744] = 3734, + [3745] = 3743, + [3746] = 3594, + [3747] = 3525, + [3748] = 3733, + [3749] = 3734, + [3750] = 3734, + [3751] = 3580, + [3752] = 3569, + [3753] = 3753, + [3754] = 3554, + [3755] = 3564, + [3756] = 3735, + [3757] = 3736, + [3758] = 3738, + [3759] = 3735, + [3760] = 3736, + [3761] = 3541, + [3762] = 3560, + [3763] = 3534, + [3764] = 3571, + [3765] = 3733, + [3766] = 3738, + [3767] = 3639, + [3768] = 3728, + [3769] = 3733, + [3770] = 3738, + [3771] = 3562, + [3772] = 3735, + [3773] = 3734, + [3774] = 3735, + [3775] = 3738, + [3776] = 3735, + [3777] = 3574, + [3778] = 3736, + [3779] = 3605, + [3780] = 3738, + [3781] = 3733, + [3782] = 3532, + [3783] = 3514, + [3784] = 3556, + [3785] = 3734, + [3786] = 3738, + [3787] = 3735, + [3788] = 3736, + [3789] = 3736, + [3790] = 3790, + [3791] = 3541, + [3792] = 3743, + [3793] = 3514, + [3794] = 3551, [3795] = 3795, - [3796] = 3462, - [3797] = 3564, - [3798] = 3798, - [3799] = 3526, - [3800] = 3553, - [3801] = 3541, - [3802] = 3551, - [3803] = 3544, - [3804] = 3804, - [3805] = 3559, - [3806] = 2175, - [3807] = 3572, - [3808] = 3529, - [3809] = 3514, - [3810] = 3544, - [3811] = 3563, - [3812] = 3571, - [3813] = 3542, - [3814] = 3559, - [3815] = 3564, - [3816] = 3555, - [3817] = 3449, - [3818] = 3496, - [3819] = 3446, - [3820] = 3621, - [3821] = 3550, - [3822] = 3569, - [3823] = 3558, - [3824] = 3552, - [3825] = 3553, - [3826] = 3512, - [3827] = 3525, - [3828] = 3549, - [3829] = 3627, - [3830] = 3613, + [3796] = 3733, + [3797] = 3733, + [3798] = 3593, + [3799] = 3734, + [3800] = 3523, + [3801] = 3590, + [3802] = 3735, + [3803] = 3736, + [3804] = 3567, + [3805] = 3733, + [3806] = 3735, + [3807] = 3734, + [3808] = 3583, + [3809] = 3735, + [3810] = 3565, + [3811] = 3738, + [3812] = 3734, + [3813] = 3513, + [3814] = 3736, + [3815] = 3735, + [3816] = 3734, + [3817] = 3562, + [3818] = 3554, + [3819] = 3565, + [3820] = 3583, + [3821] = 3560, + [3822] = 3568, + [3823] = 3580, + [3824] = 3673, + [3825] = 3551, + [3826] = 3590, + [3827] = 3554, + [3828] = 3621, + [3829] = 3560, + [3830] = 3562, [3831] = 3621, - [3832] = 3832, - [3833] = 3465, - [3834] = 3542, - [3835] = 2174, - [3836] = 3836, - [3837] = 3555, - [3838] = 3560, - [3839] = 3627, - [3840] = 2168, - [3841] = 2134, - [3842] = 2135, - [3843] = 2147, - [3844] = 2148, - [3845] = 2170, - [3846] = 3529, - [3847] = 2168, - [3848] = 2171, - [3849] = 2170, - [3850] = 2171, - [3851] = 2173, - [3852] = 2137, - [3853] = 2175, - [3854] = 2173, - [3855] = 2138, - [3856] = 3569, - [3857] = 3857, + [3832] = 2173, + [3833] = 2237, + [3834] = 2210, + [3835] = 2222, + [3836] = 2191, + [3837] = 2187, + [3838] = 2189, + [3839] = 3575, + [3840] = 3594, + [3841] = 3528, + [3842] = 3569, + [3843] = 3564, + [3844] = 3584, + [3845] = 3571, + [3846] = 3585, + [3847] = 3847, + [3848] = 3574, + [3849] = 3605, + [3850] = 3643, + [3851] = 3556, + [3852] = 3526, + [3853] = 3853, + [3854] = 3551, + [3855] = 3855, + [3856] = 3590, + [3857] = 3594, [3858] = 3858, - [3859] = 3859, - [3860] = 2170, - [3861] = 3861, - [3862] = 3862, - [3863] = 3863, - [3864] = 3864, - [3865] = 3865, - [3866] = 2171, - [3867] = 2172, - [3868] = 3868, - [3869] = 3671, - [3870] = 2170, - [3871] = 2134, - [3872] = 2135, - [3873] = 3873, - [3874] = 2147, - [3875] = 2148, - [3876] = 3876, - [3877] = 3864, - [3878] = 3858, - [3879] = 3627, - [3880] = 3880, - [3881] = 2137, - [3882] = 2138, - [3883] = 3832, - [3884] = 3880, - [3885] = 3885, - [3886] = 2174, - [3887] = 2173, - [3888] = 3864, - [3889] = 2175, - [3890] = 3890, - [3891] = 3861, - [3892] = 3865, - [3893] = 3880, - [3894] = 3857, - [3895] = 2174, - [3896] = 3896, - [3897] = 3876, - [3898] = 2171, - [3899] = 2173, - [3900] = 3868, - [3901] = 2174, - [3902] = 3859, - [3903] = 2168, - [3904] = 2175, - [3905] = 3873, - [3906] = 2196, - [3907] = 3861, - [3908] = 3865, - [3909] = 2168, - [3910] = 3613, - [3911] = 3896, - [3912] = 2170, - [3913] = 2171, - [3914] = 3885, - [3915] = 3915, - [3916] = 2168, - [3917] = 3863, - [3918] = 2173, - [3919] = 3858, - [3920] = 3885, - [3921] = 2175, - [3922] = 3890, - [3923] = 3621, - [3924] = 3924, - [3925] = 3896, - [3926] = 2167, + [3859] = 3569, + [3860] = 3565, + [3861] = 2227, + [3862] = 3593, + [3863] = 3567, + [3864] = 3673, + [3865] = 3488, + [3866] = 3580, + [3867] = 3867, + [3868] = 2227, + [3869] = 3555, + [3870] = 3583, + [3871] = 3574, + [3872] = 3605, + [3873] = 3535, + [3874] = 3556, + [3875] = 3847, + [3876] = 3575, + [3877] = 3593, + [3878] = 3567, + [3879] = 3571, + [3880] = 3555, + [3881] = 3584, + [3882] = 3585, + [3883] = 3643, + [3884] = 3489, + [3885] = 3564, + [3886] = 2235, + [3887] = 3484, + [3888] = 3589, + [3889] = 2194, + [3890] = 2205, + [3891] = 2214, + [3892] = 3892, + [3893] = 3491, + [3894] = 3485, + [3895] = 2235, + [3896] = 2194, + [3897] = 2205, + [3898] = 2214, + [3899] = 2210, + [3900] = 3568, + [3901] = 2205, + [3902] = 2210, + [3903] = 3903, + [3904] = 3904, + [3905] = 3905, + [3906] = 2227, + [3907] = 3907, + [3908] = 2214, + [3909] = 3858, + [3910] = 2187, + [3911] = 3911, + [3912] = 3912, + [3913] = 3913, + [3914] = 2189, + [3915] = 2194, + [3916] = 3903, + [3917] = 2235, + [3918] = 3639, + [3919] = 2227, + [3920] = 2216, + [3921] = 3921, + [3922] = 3922, + [3923] = 3921, + [3924] = 2221, + [3925] = 2227, + [3926] = 2173, [3927] = 3927, - [3928] = 2169, - [3929] = 3873, - [3930] = 3832, - [3931] = 3868, - [3932] = 3857, - [3933] = 3876, - [3934] = 3927, - [3935] = 3935, + [3928] = 3904, + [3929] = 2186, + [3930] = 2237, + [3931] = 3931, + [3932] = 3932, + [3933] = 2183, + [3934] = 3934, + [3935] = 3903, [3936] = 3936, - [3937] = 3937, - [3938] = 2170, - [3939] = 3836, - [3940] = 3940, - [3941] = 3941, - [3942] = 3942, + [3937] = 3922, + [3938] = 3904, + [3939] = 3936, + [3940] = 3913, + [3941] = 3858, + [3942] = 3931, [3943] = 3943, [3944] = 3944, [3945] = 3945, - [3946] = 3944, - [3947] = 3947, - [3948] = 3862, - [3949] = 3949, - [3950] = 3950, - [3951] = 3951, - [3952] = 2174, - [3953] = 3944, - [3954] = 3941, - [3955] = 2171, - [3956] = 3956, - [3957] = 2173, - [3958] = 3936, - [3959] = 3935, - [3960] = 3944, - [3961] = 3961, - [3962] = 2168, - [3963] = 3937, - [3964] = 3924, - [3965] = 3944, + [3946] = 2210, + [3947] = 2194, + [3948] = 3936, + [3949] = 3912, + [3950] = 3944, + [3951] = 3912, + [3952] = 3621, + [3953] = 3934, + [3954] = 3922, + [3955] = 3921, + [3956] = 3927, + [3957] = 3943, + [3958] = 2222, + [3959] = 2214, + [3960] = 3934, + [3961] = 3943, + [3962] = 2235, + [3963] = 3905, + [3964] = 3673, + [3965] = 2194, [3966] = 3944, - [3967] = 3967, - [3968] = 3968, - [3969] = 2170, - [3970] = 2171, - [3971] = 3971, - [3972] = 3972, - [3973] = 3950, - [3974] = 3974, - [3975] = 3975, - [3976] = 2173, - [3977] = 3832, - [3978] = 3935, + [3967] = 3945, + [3968] = 2205, + [3969] = 3927, + [3970] = 3970, + [3971] = 3643, + [3972] = 2191, + [3973] = 2235, + [3974] = 2205, + [3975] = 2214, + [3976] = 2210, + [3977] = 3945, + [3978] = 3932, [3979] = 3979, - [3980] = 3972, + [3980] = 2194, [3981] = 3981, - [3982] = 3949, - [3983] = 3944, - [3984] = 3944, - [3985] = 3943, + [3982] = 3982, + [3983] = 3983, + [3984] = 3983, + [3985] = 3981, [3986] = 3986, - [3987] = 3944, - [3988] = 3949, - [3989] = 2134, - [3990] = 2137, - [3991] = 3975, + [3987] = 3987, + [3988] = 3988, + [3989] = 3970, + [3990] = 3990, + [3991] = 3981, [3992] = 3992, - [3993] = 2175, + [3993] = 3907, [3994] = 3994, - [3995] = 2147, - [3996] = 2168, + [3995] = 2235, + [3996] = 3996, [3997] = 3997, - [3998] = 2170, - [3999] = 2171, - [4000] = 2173, - [4001] = 2175, - [4002] = 2174, - [4003] = 4003, - [4004] = 2175, - [4005] = 4005, - [4006] = 3862, - [4007] = 3862, - [4008] = 3997, - [4009] = 2168, + [3998] = 3998, + [3999] = 3999, + [4000] = 3858, + [4001] = 4001, + [4002] = 4002, + [4003] = 2227, + [4004] = 4004, + [4005] = 3999, + [4006] = 3988, + [4007] = 3907, + [4008] = 2235, + [4009] = 3999, [4010] = 4010, - [4011] = 4010, + [4011] = 4011, [4012] = 4012, - [4013] = 3975, + [4013] = 4013, [4014] = 4014, - [4015] = 3956, - [4016] = 3968, - [4017] = 3943, - [4018] = 3956, - [4019] = 4019, - [4020] = 4020, - [4021] = 2138, - [4022] = 3942, - [4023] = 4010, - [4024] = 3944, - [4025] = 2148, - [4026] = 3947, - [4027] = 3994, - [4028] = 2174, - [4029] = 3937, - [4030] = 3936, - [4031] = 2135, - [4032] = 4005, - [4033] = 3968, - [4034] = 3994, - [4035] = 4014, - [4036] = 4005, - [4037] = 3944, - [4038] = 3992, - [4039] = 4012, - [4040] = 4040, - [4041] = 4041, - [4042] = 3944, - [4043] = 3950, - [4044] = 3947, - [4045] = 4045, - [4046] = 3924, - [4047] = 2123, - [4048] = 3798, - [4049] = 4049, + [4015] = 4015, + [4016] = 2194, + [4017] = 4017, + [4018] = 4018, + [4019] = 4015, + [4020] = 2210, + [4021] = 2210, + [4022] = 2205, + [4023] = 4023, + [4024] = 3983, + [4025] = 3998, + [4026] = 4010, + [4027] = 4027, + [4028] = 3981, + [4029] = 2205, + [4030] = 3981, + [4031] = 2214, + [4032] = 2214, + [4033] = 4033, + [4034] = 2173, + [4035] = 3981, + [4036] = 3979, + [4037] = 4037, + [4038] = 3981, + [4039] = 2222, + [4040] = 4001, + [4041] = 4010, + [4042] = 3998, + [4043] = 3992, + [4044] = 4044, + [4045] = 4001, + [4046] = 4046, + [4047] = 3988, + [4048] = 3982, + [4049] = 2227, [4050] = 4050, - [4051] = 4051, - [4052] = 4052, - [4053] = 4053, - [4054] = 4054, - [4055] = 4055, - [4056] = 4056, - [4057] = 4057, + [4051] = 4014, + [4052] = 3907, + [4053] = 3996, + [4054] = 3981, + [4055] = 2191, + [4056] = 3892, + [4057] = 4050, [4058] = 4058, - [4059] = 4059, - [4060] = 4060, - [4061] = 4061, - [4062] = 4062, - [4063] = 4063, - [4064] = 4064, - [4065] = 4065, - [4066] = 4066, - [4067] = 4067, - [4068] = 4068, - [4069] = 4069, - [4070] = 4045, - [4071] = 4071, - [4072] = 4072, - [4073] = 4073, - [4074] = 4074, - [4075] = 4075, - [4076] = 4076, - [4077] = 4077, - [4078] = 4056, - [4079] = 4079, - [4080] = 4080, + [4059] = 3994, + [4060] = 3981, + [4061] = 3987, + [4062] = 3981, + [4063] = 2235, + [4064] = 2194, + [4065] = 2205, + [4066] = 2214, + [4067] = 2210, + [4068] = 2227, + [4069] = 4017, + [4070] = 3981, + [4071] = 4015, + [4072] = 4014, + [4073] = 3981, + [4074] = 4013, + [4075] = 3994, + [4076] = 3982, + [4077] = 4044, + [4078] = 3986, + [4079] = 3990, + [4080] = 2187, [4081] = 4081, - [4082] = 4082, - [4083] = 4083, - [4084] = 4084, + [4082] = 2189, + [4083] = 4050, + [4084] = 4017, [4085] = 4085, [4086] = 4086, - [4087] = 4087, - [4088] = 4088, - [4089] = 4076, - [4090] = 4080, - [4091] = 4088, + [4087] = 3992, + [4088] = 2237, + [4089] = 4089, + [4090] = 4090, + [4091] = 4091, [4092] = 4092, [4093] = 4093, - [4094] = 4094, - [4095] = 4092, + [4094] = 4089, + [4095] = 4095, [4096] = 4096, - [4097] = 4051, - [4098] = 4052, - [4099] = 4099, - [4100] = 4053, + [4097] = 4097, + [4098] = 4095, + [4099] = 4096, + [4100] = 4100, [4101] = 4101, - [4102] = 4054, - [4103] = 4055, + [4102] = 4091, + [4103] = 4093, [4104] = 4104, [4105] = 4105, - [4106] = 4106, - [4107] = 3940, - [4108] = 4099, + [4106] = 4092, + [4107] = 4092, + [4108] = 4108, [4109] = 4109, [4110] = 4110, - [4111] = 4093, - [4112] = 4094, - [4113] = 4096, - [4114] = 4114, - [4115] = 4049, - [4116] = 4067, - [4117] = 4068, - [4118] = 4051, - [4119] = 4052, - [4120] = 4053, - [4121] = 4054, - [4122] = 4055, - [4123] = 4123, - [4124] = 3940, - [4125] = 4058, - [4126] = 4059, - [4127] = 4060, - [4128] = 4061, - [4129] = 4062, - [4130] = 4063, - [4131] = 4064, - [4132] = 4065, - [4133] = 4069, - [4134] = 4045, - [4135] = 4071, - [4136] = 4072, - [4137] = 4068, - [4138] = 4074, - [4139] = 4075, + [4111] = 4111, + [4112] = 4112, + [4113] = 4113, + [4114] = 4101, + [4115] = 4115, + [4116] = 4116, + [4117] = 4117, + [4118] = 4118, + [4119] = 4119, + [4120] = 4120, + [4121] = 4121, + [4122] = 4109, + [4123] = 4046, + [4124] = 4124, + [4125] = 3970, + [4126] = 4126, + [4127] = 4127, + [4128] = 4091, + [4129] = 4093, + [4130] = 4130, + [4131] = 4131, + [4132] = 4132, + [4133] = 4133, + [4134] = 4134, + [4135] = 4135, + [4136] = 4136, + [4137] = 4137, + [4138] = 4138, + [4139] = 4139, [4140] = 4140, - [4141] = 4082, - [4142] = 4083, - [4143] = 4084, - [4144] = 4085, - [4145] = 4086, - [4146] = 4087, - [4147] = 4076, - [4148] = 4080, - [4149] = 4088, - [4150] = 4092, - [4151] = 4096, - [4152] = 4099, + [4141] = 4141, + [4142] = 4124, + [4143] = 4126, + [4144] = 4130, + [4145] = 4138, + [4146] = 4139, + [4147] = 4141, + [4148] = 4148, + [4149] = 4149, + [4150] = 4150, + [4151] = 4151, + [4152] = 4095, [4153] = 4153, - [4154] = 3804, - [4155] = 4114, - [4156] = 3940, - [4157] = 4058, - [4158] = 4056, - [4159] = 4093, - [4160] = 4094, - [4161] = 4099, - [4162] = 4114, - [4163] = 4099, - [4164] = 4114, - [4165] = 3798, - [4166] = 3836, - [4167] = 4099, - [4168] = 4058, - [4169] = 4114, - [4170] = 4170, - [4171] = 4099, - [4172] = 4114, - [4173] = 4069, - [4174] = 4114, - [4175] = 2126, - [4176] = 3804, - [4177] = 4082, - [4178] = 4114, - [4179] = 4114, - [4180] = 4104, - [4181] = 4083, - [4182] = 4099, - [4183] = 3244, - [4184] = 4081, - [4185] = 4084, - [4186] = 4050, - [4187] = 4085, - [4188] = 4123, + [4154] = 4096, + [4155] = 3268, + [4156] = 4156, + [4157] = 4156, + [4158] = 4092, + [4159] = 4113, + [4160] = 4160, + [4161] = 4161, + [4162] = 4156, + [4163] = 4163, + [4164] = 4092, + [4165] = 4165, + [4166] = 4148, + [4167] = 4156, + [4168] = 4108, + [4169] = 4089, + [4170] = 4109, + [4171] = 4110, + [4172] = 4092, + [4173] = 4149, + [4174] = 4111, + [4175] = 4150, + [4176] = 4151, + [4177] = 4156, + [4178] = 4178, + [4179] = 4092, + [4180] = 4156, + [4181] = 3858, + [4182] = 4182, + [4183] = 4183, + [4184] = 4110, + [4185] = 4113, + [4186] = 4092, + [4187] = 4111, + [4188] = 3855, [4189] = 4153, - [4190] = 4077, - [4191] = 4059, - [4192] = 4071, - [4193] = 4060, - [4194] = 4114, - [4195] = 3804, - [4196] = 4061, - [4197] = 4072, - [4198] = 4062, - [4199] = 4063, - [4200] = 4064, - [4201] = 4065, - [4202] = 4086, - [4203] = 4087, - [4204] = 3836, - [4205] = 3836, - [4206] = 4073, - [4207] = 4114, - [4208] = 4106, - [4209] = 3798, - [4210] = 4104, - [4211] = 4074, - [4212] = 4075, - [4213] = 4213, - [4214] = 4049, - [4215] = 3832, - [4216] = 4067, - [4217] = 4073, - [4218] = 4218, - [4219] = 4213, - [4220] = 4220, - [4221] = 4221, - [4222] = 2175, - [4223] = 4223, - [4224] = 4224, - [4225] = 4041, - [4226] = 4226, - [4227] = 4140, - [4228] = 4228, - [4229] = 4229, - [4230] = 4230, - [4231] = 4231, - [4232] = 4232, - [4233] = 4233, - [4234] = 4234, - [4235] = 4235, - [4236] = 4236, - [4237] = 4229, - [4238] = 4238, - [4239] = 4239, - [4240] = 4240, - [4241] = 4241, - [4242] = 4242, - [4243] = 4140, - [4244] = 4244, - [4245] = 4245, - [4246] = 4246, - [4247] = 4244, - [4248] = 4248, - [4249] = 4249, - [4250] = 4250, - [4251] = 4213, - [4252] = 4041, - [4253] = 4253, - [4254] = 4254, - [4255] = 4255, - [4256] = 4224, - [4257] = 3240, - [4258] = 3924, - [4259] = 4259, - [4260] = 4248, - [4261] = 4261, - [4262] = 4248, + [4190] = 4115, + [4191] = 4116, + [4192] = 4092, + [4193] = 4117, + [4194] = 4118, + [4195] = 4161, + [4196] = 2166, + [4197] = 4119, + [4198] = 3853, + [4199] = 4120, + [4200] = 4092, + [4201] = 4121, + [4202] = 3892, + [4203] = 4203, + [4204] = 4131, + [4205] = 4131, + [4206] = 4132, + [4207] = 2172, + [4208] = 4133, + [4209] = 3855, + [4210] = 4134, + [4211] = 4135, + [4212] = 4136, + [4213] = 4137, + [4214] = 4214, + [4215] = 4132, + [4216] = 4160, + [4217] = 4133, + [4218] = 4165, + [4219] = 3853, + [4220] = 4104, + [4221] = 4134, + [4222] = 4214, + [4223] = 4112, + [4224] = 4135, + [4225] = 4115, + [4226] = 4097, + [4227] = 4124, + [4228] = 4126, + [4229] = 4130, + [4230] = 4138, + [4231] = 4139, + [4232] = 4141, + [4233] = 4136, + [4234] = 4137, + [4235] = 4116, + [4236] = 3892, + [4237] = 4237, + [4238] = 4148, + [4239] = 4149, + [4240] = 4150, + [4241] = 4151, + [4242] = 4113, + [4243] = 4153, + [4244] = 3855, + [4245] = 4165, + [4246] = 4117, + [4247] = 4118, + [4248] = 3853, + [4249] = 4119, + [4250] = 4120, + [4251] = 4121, + [4252] = 4203, + [4253] = 4101, + [4254] = 4108, + [4255] = 4097, + [4256] = 3892, + [4257] = 4046, + [4258] = 4156, + [4259] = 4046, + [4260] = 4156, + [4261] = 4092, + [4262] = 4262, [4263] = 4263, [4264] = 4264, [4265] = 4265, [4266] = 4266, - [4267] = 4267, - [4268] = 4249, - [4269] = 4213, + [4267] = 4086, + [4268] = 4268, + [4269] = 4269, [4270] = 4270, - [4271] = 4271, + [4271] = 4090, [4272] = 4272, - [4273] = 4224, + [4273] = 4273, [4274] = 4274, - [4275] = 4140, + [4275] = 4275, [4276] = 4276, - [4277] = 4241, - [4278] = 4278, - [4279] = 4233, + [4277] = 4277, + [4278] = 4277, + [4279] = 4279, [4280] = 4280, [4281] = 4281, - [4282] = 4282, - [4283] = 4235, - [4284] = 4245, - [4285] = 4253, - [4286] = 4278, + [4282] = 2210, + [4283] = 4086, + [4284] = 4178, + [4285] = 4285, + [4286] = 4286, [4287] = 4287, [4288] = 4288, - [4289] = 4249, + [4289] = 4289, [4290] = 4290, - [4291] = 4253, - [4292] = 4292, - [4293] = 4293, - [4294] = 4278, - [4295] = 3229, - [4296] = 4231, - [4297] = 4242, - [4298] = 4254, + [4291] = 4286, + [4292] = 4268, + [4293] = 4027, + [4294] = 4262, + [4295] = 4279, + [4296] = 3327, + [4297] = 4297, + [4298] = 2235, [4299] = 4299, - [4300] = 3924, + [4300] = 4300, [4301] = 4301, [4302] = 4302, [4303] = 4303, [4304] = 4304, - [4305] = 4241, - [4306] = 4306, - [4307] = 3967, - [4308] = 4267, + [4305] = 4264, + [4306] = 4264, + [4307] = 2227, + [4308] = 4086, [4309] = 4309, - [4310] = 3256, - [4311] = 4311, + [4310] = 4268, + [4311] = 2194, [4312] = 4312, [4313] = 4313, [4314] = 4314, [4315] = 4315, - [4316] = 4311, - [4317] = 3804, - [4318] = 2168, - [4319] = 4261, - [4320] = 4306, - [4321] = 4309, - [4322] = 4244, - [4323] = 2170, - [4324] = 2171, - [4325] = 2173, - [4326] = 3798, + [4316] = 4316, + [4317] = 3267, + [4318] = 3970, + [4319] = 4319, + [4320] = 4320, + [4321] = 4321, + [4322] = 4322, + [4323] = 4323, + [4324] = 4324, + [4325] = 4297, + [4326] = 4326, [4327] = 4327, [4328] = 4328, - [4329] = 4254, - [4330] = 4231, - [4331] = 4263, - [4332] = 4264, - [4333] = 4333, - [4334] = 4263, - [4335] = 4267, - [4336] = 4041, - [4337] = 4264, - [4338] = 4245, + [4329] = 4329, + [4330] = 4330, + [4331] = 4331, + [4332] = 4090, + [4333] = 4286, + [4334] = 4334, + [4335] = 4335, + [4336] = 4336, + [4337] = 4277, + [4338] = 4338, [4339] = 4339, - [4340] = 4340, - [4341] = 2174, - [4342] = 2168, - [4343] = 2170, - [4344] = 2171, - [4345] = 2173, - [4346] = 2174, - [4347] = 2175, - [4348] = 4041, + [4340] = 4263, + [4341] = 4273, + [4342] = 4281, + [4343] = 2205, + [4344] = 4344, + [4345] = 4330, + [4346] = 4331, + [4347] = 4347, + [4348] = 4272, [4349] = 4349, - [4350] = 4350, - [4351] = 4351, - [4352] = 4229, - [4353] = 4353, - [4354] = 3924, + [4350] = 4316, + [4351] = 2214, + [4352] = 3855, + [4353] = 4347, + [4354] = 3970, [4355] = 4355, [4356] = 4356, - [4357] = 4357, - [4358] = 4358, - [4359] = 4234, - [4360] = 4360, - [4361] = 4361, - [4362] = 4362, + [4357] = 4086, + [4358] = 4262, + [4359] = 4281, + [4360] = 4269, + [4361] = 3853, + [4362] = 4280, [4363] = 4363, [4364] = 4364, - [4365] = 4365, + [4365] = 4336, [4366] = 4366, [4367] = 4367, - [4368] = 4368, - [4369] = 4362, - [4370] = 4228, - [4371] = 4340, - [4372] = 4250, - [4373] = 4272, - [4374] = 4303, + [4368] = 4263, + [4369] = 4369, + [4370] = 4178, + [4371] = 3283, + [4372] = 4270, + [4373] = 4373, + [4374] = 4374, [4375] = 4375, - [4376] = 4367, - [4377] = 4377, - [4378] = 4367, - [4379] = 4368, + [4376] = 4273, + [4377] = 4178, + [4378] = 4378, + [4379] = 4304, [4380] = 4380, - [4381] = 4270, - [4382] = 4276, - [4383] = 4383, - [4384] = 4281, - [4385] = 4218, - [4386] = 4377, - [4387] = 4387, - [4388] = 4365, - [4389] = 4366, - [4390] = 4390, - [4391] = 4391, - [4392] = 3250, - [4393] = 3255, - [4394] = 4367, - [4395] = 4368, + [4381] = 4280, + [4382] = 4287, + [4383] = 4270, + [4384] = 4090, + [4385] = 4385, + [4386] = 2235, + [4387] = 2194, + [4388] = 2205, + [4389] = 2214, + [4390] = 2210, + [4391] = 4330, + [4392] = 2227, + [4393] = 4331, + [4394] = 4336, + [4395] = 4395, [4396] = 4396, [4397] = 4397, - [4398] = 4398, - [4399] = 4399, - [4400] = 4390, - [4401] = 4282, - [4402] = 4402, - [4403] = 4377, + [4398] = 3970, + [4399] = 4269, + [4400] = 4349, + [4401] = 4401, + [4402] = 4289, + [4403] = 4403, [4404] = 4404, [4405] = 4405, - [4406] = 4367, - [4407] = 4368, + [4406] = 4406, + [4407] = 4407, [4408] = 4408, [4409] = 4409, - [4410] = 3249, - [4411] = 4363, - [4412] = 4228, + [4410] = 4410, + [4411] = 4411, + [4412] = 4412, [4413] = 4413, - [4414] = 4409, - [4415] = 4368, - [4416] = 4250, + [4414] = 4401, + [4415] = 4403, + [4416] = 4338, [4417] = 4417, - [4418] = 4368, - [4419] = 4272, + [4418] = 4418, + [4419] = 4419, [4420] = 4420, - [4421] = 4421, - [4422] = 4422, - [4423] = 4423, - [4424] = 4368, - [4425] = 3253, - [4426] = 4353, - [4427] = 4368, + [4421] = 4408, + [4422] = 4401, + [4423] = 4403, + [4424] = 4424, + [4425] = 4425, + [4426] = 4403, + [4427] = 4427, [4428] = 4428, [4429] = 4429, - [4430] = 4368, + [4430] = 4403, [4431] = 4431, - [4432] = 4368, - [4433] = 4365, - [4434] = 4368, + [4432] = 3321, + [4433] = 4433, + [4434] = 4403, [4435] = 4435, - [4436] = 4413, - [4437] = 4368, - [4438] = 4368, - [4439] = 4439, - [4440] = 4271, - [4441] = 4439, - [4442] = 4421, - [4443] = 4405, - [4444] = 4093, + [4436] = 4436, + [4437] = 4437, + [4438] = 4403, + [4439] = 4413, + [4440] = 4440, + [4441] = 4441, + [4442] = 4442, + [4443] = 4403, + [4444] = 4363, [4445] = 4445, - [4446] = 4446, - [4447] = 4435, - [4448] = 4435, - [4449] = 4449, - [4450] = 4383, - [4451] = 4368, + [4446] = 4299, + [4447] = 4447, + [4448] = 4403, + [4449] = 4301, + [4450] = 4409, + [4451] = 4403, [4452] = 4452, - [4453] = 4453, + [4453] = 4403, [4454] = 4454, - [4455] = 4383, - [4456] = 4363, - [4457] = 4446, - [4458] = 4458, - [4459] = 4413, - [4460] = 4420, - [4461] = 4417, - [4462] = 4423, + [4455] = 4455, + [4456] = 4433, + [4457] = 4299, + [4458] = 4428, + [4459] = 4459, + [4460] = 4460, + [4461] = 4442, + [4462] = 4441, [4463] = 4463, - [4464] = 4402, - [4465] = 4465, - [4466] = 4465, + [4464] = 4464, + [4465] = 4408, + [4466] = 4466, [4467] = 4467, - [4468] = 4282, - [4469] = 4465, - [4470] = 4470, + [4468] = 4468, + [4469] = 4435, + [4470] = 4418, [4471] = 4471, - [4472] = 4408, - [4473] = 4280, - [4474] = 4439, - [4475] = 4475, - [4476] = 4228, + [4472] = 4472, + [4473] = 4473, + [4474] = 3296, + [4475] = 4420, + [4476] = 4476, [4477] = 4477, - [4478] = 4250, + [4478] = 4403, [4479] = 4479, - [4480] = 4480, - [4481] = 4481, + [4480] = 4472, + [4481] = 3308, [4482] = 4482, - [4483] = 4445, - [4484] = 4367, - [4485] = 4282, - [4486] = 4368, - [4487] = 4487, - [4488] = 4477, - [4489] = 4303, + [4483] = 4483, + [4484] = 4484, + [4485] = 4485, + [4486] = 4486, + [4487] = 4401, + [4488] = 4482, + [4489] = 4420, [4490] = 4490, - [4491] = 4272, - [4492] = 4492, - [4493] = 4366, - [4494] = 4479, - [4495] = 4357, - [4496] = 4387, - [4497] = 4357, - [4498] = 4479, - [4499] = 4271, - [4500] = 4265, - [4501] = 4270, - [4502] = 4397, - [4503] = 4481, - [4504] = 4265, - [4505] = 4314, - [4506] = 4387, - [4507] = 4315, - [4508] = 4508, - [4509] = 4380, - [4510] = 4510, - [4511] = 4367, - [4512] = 4390, - [4513] = 4375, - [4514] = 4405, - [4515] = 4408, + [4491] = 4403, + [4492] = 4327, + [4493] = 4493, + [4494] = 4404, + [4495] = 4495, + [4496] = 3294, + [4497] = 4356, + [4498] = 4290, + [4499] = 4454, + [4500] = 4452, + [4501] = 4366, + [4502] = 4418, + [4503] = 4369, + [4504] = 4349, + [4505] = 4428, + [4506] = 4506, + [4507] = 4429, + [4508] = 4429, + [4509] = 4493, + [4510] = 4431, + [4511] = 4495, + [4512] = 4512, + [4513] = 4301, + [4514] = 4472, + [4515] = 4431, [4516] = 4516, - [4517] = 4367, - [4518] = 4368, - [4519] = 4368, - [4520] = 4397, - [4521] = 4387, - [4522] = 4522, - [4523] = 4368, - [4524] = 4524, - [4525] = 4368, - [4526] = 4270, - [4527] = 4409, - [4528] = 4481, + [4517] = 4517, + [4518] = 4309, + [4519] = 4313, + [4520] = 4520, + [4521] = 4521, + [4522] = 4483, + [4523] = 4485, + [4524] = 4401, + [4525] = 4403, + [4526] = 4404, + [4527] = 4527, + [4528] = 4459, [4529] = 4529, [4530] = 4530, - [4531] = 4423, + [4531] = 4404, [4532] = 4532, [4533] = 4533, - [4534] = 4534, - [4535] = 4234, - [4536] = 4536, - [4537] = 4537, - [4538] = 4265, - [4539] = 4281, - [4540] = 4409, - [4541] = 4368, - [4542] = 4477, - [4543] = 4530, - [4544] = 4449, - [4545] = 4449, - [4546] = 4546, - [4547] = 4276, - [4548] = 4548, - [4549] = 4549, - [4550] = 4482, - [4551] = 4551, - [4552] = 4428, - [4553] = 4429, - [4554] = 4554, - [4555] = 4555, - [4556] = 4431, - [4557] = 4453, - [4558] = 4463, - [4559] = 4482, - [4560] = 4399, - [4561] = 4561, - [4562] = 4562, - [4563] = 4522, - [4564] = 4490, - [4565] = 4554, - [4566] = 4422, - [4567] = 4340, - [4568] = 4492, - [4569] = 4554, - [4570] = 4562, - [4571] = 4571, - [4572] = 4572, - [4573] = 4546, - [4574] = 4548, - [4575] = 4575, - [4576] = 4576, - [4577] = 4399, - [4578] = 4578, - [4579] = 4522, - [4580] = 4572, - [4581] = 4562, - [4582] = 4452, - [4583] = 3240, - [4584] = 4584, - [4585] = 4516, - [4586] = 3229, - [4587] = 4452, - [4588] = 4281, - [4589] = 4589, - [4590] = 4590, - [4591] = 4428, - [4592] = 4429, - [4593] = 4431, + [4534] = 4338, + [4535] = 4435, + [4536] = 4454, + [4537] = 4413, + [4538] = 4493, + [4539] = 4095, + [4540] = 4495, + [4541] = 4417, + [4542] = 4486, + [4543] = 4543, + [4544] = 4344, + [4545] = 4545, + [4546] = 4364, + [4547] = 4378, + [4548] = 4396, + [4549] = 4401, + [4550] = 4403, + [4551] = 4427, + [4552] = 4290, + [4553] = 4553, + [4554] = 4290, + [4555] = 4356, + [4556] = 4454, + [4557] = 4349, + [4558] = 4468, + [4559] = 4559, + [4560] = 4366, + [4561] = 4484, + [4562] = 4466, + [4563] = 4563, + [4564] = 4427, + [4565] = 4369, + [4566] = 4289, + [4567] = 4299, + [4568] = 4401, + [4569] = 4569, + [4570] = 4452, + [4571] = 4403, + [4572] = 4403, + [4573] = 4403, + [4574] = 4356, + [4575] = 4366, + [4576] = 4369, + [4577] = 4440, + [4578] = 4484, + [4579] = 4401, + [4580] = 4468, + [4581] = 4403, + [4582] = 4582, + [4583] = 4563, + [4584] = 4378, + [4585] = 4409, + [4586] = 4586, + [4587] = 4553, + [4588] = 4403, + [4589] = 4417, + [4590] = 4553, + [4591] = 4473, + [4592] = 4479, + [4593] = 4593, [4594] = 4594, - [4595] = 4453, - [4596] = 4516, - [4597] = 4530, + [4595] = 4595, + [4596] = 4582, + [4597] = 4597, [4598] = 4598, [4599] = 4599, - [4600] = 4572, + [4600] = 4563, [4601] = 4601, [4602] = 4602, - [4603] = 4533, - [4604] = 4218, - [4605] = 4530, + [4603] = 4586, + [4604] = 4406, + [4605] = 4605, [4606] = 4606, - [4607] = 4532, - [4608] = 4449, - [4609] = 4482, - [4610] = 4399, - [4611] = 4536, - [4612] = 4522, - [4613] = 4463, - [4614] = 4537, + [4607] = 4529, + [4608] = 4608, + [4609] = 4609, + [4610] = 4610, + [4611] = 4611, + [4612] = 4364, + [4613] = 4407, + [4614] = 4614, [4615] = 4615, - [4616] = 4358, - [4617] = 4422, - [4618] = 4618, + [4616] = 4363, + [4617] = 4617, + [4618] = 4437, [4619] = 4619, [4620] = 4620, [4621] = 4621, - [4622] = 4422, - [4623] = 4471, - [4624] = 4508, - [4625] = 4551, - [4626] = 4554, - [4627] = 4353, - [4628] = 4508, - [4629] = 4629, - [4630] = 4630, - [4631] = 4549, - [4632] = 4510, - [4633] = 4380, - [4634] = 4510, - [4635] = 4635, - [4636] = 4636, - [4637] = 4615, - [4638] = 4524, - [4639] = 4639, + [4622] = 4378, + [4623] = 4582, + [4624] = 4410, + [4625] = 4411, + [4626] = 4626, + [4627] = 3267, + [4628] = 4628, + [4629] = 4563, + [4630] = 4602, + [4631] = 3513, + [4632] = 4621, + [4633] = 4586, + [4634] = 4634, + [4635] = 4601, + [4636] = 4309, + [4637] = 4637, + [4638] = 4313, + [4639] = 4619, [4640] = 4640, - [4641] = 4629, + [4641] = 4641, [4642] = 4642, - [4643] = 4643, - [4644] = 4644, - [4645] = 4645, + [4643] = 4642, + [4644] = 4396, + [4645] = 4455, [4646] = 4646, - [4647] = 4532, - [4648] = 4524, + [4647] = 4455, + [4648] = 4648, [4649] = 4649, - [4650] = 4650, - [4651] = 4651, + [4650] = 4460, + [4651] = 4464, [4652] = 4652, - [4653] = 4280, - [4654] = 4575, - [4655] = 4571, - [4656] = 4508, - [4657] = 4657, - [4658] = 4584, - [4659] = 4536, - [4660] = 4660, - [4661] = 4524, - [4662] = 4662, - [4663] = 4663, - [4664] = 4549, - [4665] = 4665, + [4653] = 4344, + [4654] = 4619, + [4655] = 4471, + [4656] = 4460, + [4657] = 4405, + [4658] = 4658, + [4659] = 4599, + [4660] = 4473, + [4661] = 4661, + [4662] = 4476, + [4663] = 4477, + [4664] = 4652, + [4665] = 4606, [4666] = 4666, - [4667] = 4551, - [4668] = 4537, - [4669] = 4669, - [4670] = 4361, - [4671] = 4546, - [4672] = 4602, - [4673] = 4639, - [4674] = 4548, - [4675] = 4358, - [4676] = 4562, - [4677] = 4516, - [4678] = 4314, - [4679] = 4618, - [4680] = 4471, - [4681] = 4681, - [4682] = 4532, - [4683] = 4536, - [4684] = 4629, - [4685] = 4537, - [4686] = 4358, - [4687] = 4471, - [4688] = 4467, - [4689] = 4380, - [4690] = 4533, - [4691] = 4467, - [4692] = 4428, - [4693] = 4429, - [4694] = 4694, - [4695] = 4572, - [4696] = 4431, - [4697] = 4453, - [4698] = 4463, - [4699] = 4452, - [4700] = 4602, - [4701] = 4630, - [4702] = 4635, - [4703] = 4510, - [4704] = 4487, - [4705] = 4315, + [4667] = 4479, + [4668] = 4464, + [4669] = 4516, + [4670] = 4670, + [4671] = 4471, + [4672] = 4599, + [4673] = 4406, + [4674] = 4674, + [4675] = 4675, + [4676] = 4529, + [4677] = 4597, + [4678] = 4463, + [4679] = 4490, + [4680] = 4407, + [4681] = 4467, + [4682] = 4619, + [4683] = 4411, + [4684] = 4520, + [4685] = 4521, + [4686] = 4637, + [4687] = 4530, + [4688] = 4688, + [4689] = 4476, + [4690] = 4606, + [4691] = 4545, + [4692] = 4533, + [4693] = 4674, + [4694] = 4582, + [4695] = 4642, + [4696] = 4696, + [4697] = 4477, + [4698] = 4597, + [4699] = 4637, + [4700] = 4586, + [4701] = 4405, + [4702] = 4702, + [4703] = 4703, + [4704] = 4529, + [4705] = 4516, [4706] = 4706, - [4707] = 4630, - [4708] = 4546, - [4709] = 4709, - [4710] = 4548, - [4711] = 4706, - [4712] = 4712, - [4713] = 3472, - [4714] = 4533, - [4715] = 4467, - [4716] = 4716, - [4717] = 4717, - [4718] = 4718, - [4719] = 4719, - [4720] = 4327, - [4721] = 4721, - [4722] = 4722, - [4723] = 4723, - [4724] = 4650, + [4707] = 4706, + [4708] = 3283, + [4709] = 4637, + [4710] = 4601, + [4711] = 4437, + [4712] = 4517, + [4713] = 4713, + [4714] = 4520, + [4715] = 4516, + [4716] = 4517, + [4717] = 4521, + [4718] = 4520, + [4719] = 4521, + [4720] = 4530, + [4721] = 4530, + [4722] = 4706, + [4723] = 4533, + [4724] = 4724, [4725] = 4725, - [4726] = 4726, - [4727] = 4727, - [4728] = 4728, - [4729] = 4729, + [4726] = 4533, + [4727] = 4410, + [4728] = 4703, + [4729] = 4455, [4730] = 4730, - [4731] = 4731, + [4731] = 4460, [4732] = 4732, - [4733] = 4733, - [4734] = 4734, - [4735] = 4735, + [4733] = 4464, + [4734] = 4674, + [4735] = 4605, [4736] = 4736, - [4737] = 4737, - [4738] = 4716, - [4739] = 4739, - [4740] = 4740, - [4741] = 4741, - [4742] = 4742, + [4737] = 4471, + [4738] = 4473, + [4739] = 4476, + [4740] = 4477, + [4741] = 4479, + [4742] = 4405, [4743] = 4743, - [4744] = 4744, - [4745] = 4745, - [4746] = 4746, - [4747] = 4747, + [4744] = 4702, + [4745] = 4406, + [4746] = 4407, + [4747] = 4597, [4748] = 4748, [4749] = 4749, - [4750] = 4750, - [4751] = 4333, - [4752] = 4752, - [4753] = 4753, - [4754] = 4754, - [4755] = 4755, - [4756] = 4756, - [4757] = 4757, + [4750] = 4601, + [4751] = 4410, + [4752] = 4674, + [4753] = 4666, + [4754] = 4411, + [4755] = 4437, + [4756] = 4702, + [4757] = 4670, [4758] = 4758, - [4759] = 4759, - [4760] = 4760, - [4761] = 4743, + [4759] = 4743, + [4760] = 4327, + [4761] = 4761, [4762] = 4762, - [4763] = 4763, + [4763] = 4517, [4764] = 4764, [4765] = 4765, - [4766] = 4766, + [4766] = 4610, [4767] = 4767, - [4768] = 3240, + [4768] = 4768, [4769] = 4769, - [4770] = 4745, - [4771] = 501, + [4770] = 4770, + [4771] = 4771, [4772] = 4772, [4773] = 4773, [4774] = 4774, @@ -9228,1053 +9277,1103 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4777] = 4777, [4778] = 4778, [4779] = 4779, - [4780] = 4721, + [4780] = 4780, [4781] = 4781, [4782] = 4782, [4783] = 4783, - [4784] = 4752, + [4784] = 4784, [4785] = 4785, - [4786] = 4776, + [4786] = 4786, [4787] = 4787, - [4788] = 4576, + [4788] = 4788, [4789] = 4789, [4790] = 4790, [4791] = 4791, [4792] = 4792, [4793] = 4793, - [4794] = 4794, + [4794] = 4764, [4795] = 4795, - [4796] = 4717, + [4796] = 4796, [4797] = 4797, - [4798] = 4719, - [4799] = 4731, + [4798] = 4798, + [4799] = 4799, [4800] = 4800, - [4801] = 4718, - [4802] = 4725, + [4801] = 4801, + [4802] = 4802, [4803] = 4803, - [4804] = 4734, + [4804] = 4804, [4805] = 4805, - [4806] = 4806, - [4807] = 4807, + [4806] = 4767, + [4807] = 4792, [4808] = 4808, [4809] = 4809, - [4810] = 4810, - [4811] = 4806, - [4812] = 4741, + [4810] = 4799, + [4811] = 4800, + [4812] = 4812, [4813] = 4813, [4814] = 4814, [4815] = 4815, [4816] = 4816, - [4817] = 4817, - [4818] = 4803, - [4819] = 4807, + [4817] = 4771, + [4818] = 4776, + [4819] = 4819, [4820] = 4820, [4821] = 4821, [4822] = 4822, [4823] = 4823, [4824] = 4824, - [4825] = 4750, + [4825] = 4825, [4826] = 4826, - [4827] = 4772, + [4827] = 4777, [4828] = 4828, - [4829] = 4829, - [4830] = 4830, + [4829] = 4776, + [4830] = 4640, [4831] = 4831, - [4832] = 4723, - [4833] = 4728, - [4834] = 4754, - [4835] = 4797, - [4836] = 4810, + [4832] = 4777, + [4833] = 4641, + [4834] = 4778, + [4835] = 4780, + [4836] = 4836, [4837] = 4837, [4838] = 4838, [4839] = 4839, [4840] = 4840, - [4841] = 4651, - [4842] = 4842, - [4843] = 4843, - [4844] = 4844, - [4845] = 4718, - [4846] = 4238, - [4847] = 4723, - [4848] = 4743, - [4849] = 4747, - [4850] = 4745, - [4851] = 4239, - [4852] = 4747, - [4853] = 4748, + [4841] = 4841, + [4842] = 4649, + [4843] = 4782, + [4844] = 4783, + [4845] = 4845, + [4846] = 4846, + [4847] = 4785, + [4848] = 4786, + [4849] = 4849, + [4850] = 4787, + [4851] = 4851, + [4852] = 4816, + [4853] = 4778, [4854] = 4854, - [4855] = 4844, - [4856] = 4774, - [4857] = 4857, - [4858] = 4814, - [4859] = 4240, - [4860] = 4860, - [4861] = 4810, - [4862] = 4862, - [4863] = 4863, - [4864] = 4814, - [4865] = 4726, - [4866] = 4816, - [4867] = 4867, - [4868] = 4803, + [4855] = 4770, + [4856] = 4856, + [4857] = 4784, + [4858] = 4780, + [4859] = 4809, + [4860] = 4809, + [4861] = 4793, + [4862] = 4825, + [4863] = 4854, + [4864] = 4775, + [4865] = 4865, + [4866] = 4795, + [4867] = 4796, + [4868] = 4868, [4869] = 4869, - [4870] = 4807, - [4871] = 4727, - [4872] = 4822, - [4873] = 4642, - [4874] = 4729, - [4875] = 4823, - [4876] = 4824, - [4877] = 4826, - [4878] = 4810, + [4870] = 4797, + [4871] = 4789, + [4872] = 4840, + [4873] = 4873, + [4874] = 4782, + [4875] = 4875, + [4876] = 4876, + [4877] = 4877, + [4878] = 4783, [4879] = 4879, - [4880] = 4831, - [4881] = 4748, - [4882] = 4728, - [4883] = 4754, - [4884] = 4797, - [4885] = 4837, - [4886] = 4814, - [4887] = 4730, - [4888] = 4645, - [4889] = 4636, - [4890] = 4650, - [4891] = 4619, - [4892] = 4651, - [4893] = 4810, + [4880] = 4880, + [4881] = 4790, + [4882] = 4791, + [4883] = 4883, + [4884] = 4884, + [4885] = 4885, + [4886] = 4886, + [4887] = 4785, + [4888] = 4888, + [4889] = 4801, + [4890] = 4640, + [4891] = 4891, + [4892] = 4786, + [4893] = 4764, [4894] = 4894, - [4895] = 4814, - [4896] = 4896, - [4897] = 4816, - [4898] = 4732, + [4895] = 4641, + [4896] = 4771, + [4897] = 4649, + [4898] = 4793, [4899] = 4803, - [4900] = 4807, - [4901] = 4842, - [4902] = 4822, - [4903] = 4816, - [4904] = 4733, - [4905] = 4823, - [4906] = 4824, - [4907] = 4907, - [4908] = 4826, - [4909] = 4838, - [4910] = 4910, - [4911] = 4831, - [4912] = 4728, - [4913] = 4803, - [4914] = 4754, - [4915] = 4797, - [4916] = 4735, - [4917] = 4736, - [4918] = 4918, - [4919] = 4793, - [4920] = 4810, - [4921] = 4753, - [4922] = 4807, - [4923] = 4814, - [4924] = 4816, - [4925] = 4803, - [4926] = 4807, - [4927] = 4822, - [4928] = 4809, - [4929] = 4929, - [4930] = 4823, - [4931] = 4824, - [4932] = 4340, - [4933] = 4826, + [4900] = 4795, + [4901] = 4804, + [4902] = 4796, + [4903] = 4797, + [4904] = 4904, + [4905] = 4805, + [4906] = 4906, + [4907] = 4767, + [4908] = 4816, + [4909] = 4854, + [4910] = 4792, + [4911] = 4784, + [4912] = 4799, + [4913] = 4800, + [4914] = 4770, + [4915] = 4784, + [4916] = 4865, + [4917] = 4865, + [4918] = 4809, + [4919] = 4825, + [4920] = 4854, + [4921] = 4819, + [4922] = 4865, + [4923] = 4787, + [4924] = 4868, + [4925] = 4869, + [4926] = 4816, + [4927] = 4789, + [4928] = 4928, + [4929] = 4877, + [4930] = 4879, + [4931] = 4931, + [4932] = 4790, + [4933] = 4791, [4934] = 4934, - [4935] = 4935, - [4936] = 4831, - [4937] = 4728, - [4938] = 4938, - [4939] = 4754, - [4940] = 4797, - [4941] = 505, - [4942] = 504, - [4943] = 4778, - [4944] = 4944, - [4945] = 4822, - [4946] = 4946, - [4947] = 4810, - [4948] = 4814, - [4949] = 4816, - [4950] = 4803, - [4951] = 4807, - [4952] = 4837, - [4953] = 4822, - [4954] = 4860, - [4955] = 4955, - [4956] = 4823, - [4957] = 4824, - [4958] = 4838, - [4959] = 4726, - [4960] = 4826, - [4961] = 4794, - [4962] = 4831, - [4963] = 4728, - [4964] = 3471, - [4965] = 4754, - [4966] = 4797, - [4967] = 4967, - [4968] = 4789, + [4935] = 4820, + [4936] = 480, + [4937] = 4821, + [4938] = 4819, + [4939] = 4939, + [4940] = 4820, + [4941] = 4770, + [4942] = 4821, + [4943] = 4823, + [4944] = 4784, + [4945] = 4824, + [4946] = 4303, + [4947] = 4826, + [4948] = 4809, + [4949] = 4949, + [4950] = 4825, + [4951] = 4828, + [4952] = 4854, + [4953] = 4953, + [4954] = 4865, + [4955] = 4823, + [4956] = 4363, + [4957] = 4957, + [4958] = 4868, + [4959] = 4869, + [4960] = 4960, + [4961] = 4961, + [4962] = 4789, + [4963] = 4824, + [4964] = 4964, + [4965] = 4877, + [4966] = 4966, + [4967] = 4879, + [4968] = 4826, [4969] = 4790, - [4970] = 4929, - [4971] = 4779, + [4970] = 4791, + [4971] = 4836, [4972] = 4972, [4973] = 4828, - [4974] = 4727, - [4975] = 4743, - [4976] = 4803, - [4977] = 4795, - [4978] = 4823, - [4979] = 4824, - [4980] = 4353, - [4981] = 4826, - [4982] = 4831, - [4983] = 4728, - [4984] = 4754, - [4985] = 4797, - [4986] = 4640, - [4987] = 4757, - [4988] = 4644, - [4989] = 4745, - [4990] = 4839, - [4991] = 4758, - [4992] = 4823, - [4993] = 4824, - [4994] = 4823, - [4995] = 4824, - [4996] = 4717, - [4997] = 4826, - [4998] = 4998, - [4999] = 4831, - [5000] = 3253, - [5001] = 4728, - [5002] = 4826, - [5003] = 4754, - [5004] = 4797, - [5005] = 4894, + [4974] = 4837, + [4975] = 4838, + [4976] = 4839, + [4977] = 4977, + [4978] = 4764, + [4979] = 4841, + [4980] = 4770, + [4981] = 4620, + [4982] = 4784, + [4983] = 4939, + [4984] = 4809, + [4985] = 4985, + [4986] = 4825, + [4987] = 4846, + [4988] = 4854, + [4989] = 4865, + [4990] = 4990, + [4991] = 4991, + [4992] = 4868, + [4993] = 4869, + [4994] = 4808, + [4995] = 4789, + [4996] = 4626, + [4997] = 4877, + [4998] = 4879, + [4999] = 4793, + [5000] = 4790, + [5001] = 4791, + [5002] = 4795, + [5003] = 5003, + [5004] = 4868, + [5005] = 5005, [5006] = 5006, - [5007] = 5007, - [5008] = 4795, - [5009] = 4810, - [5010] = 4823, - [5011] = 4824, - [5012] = 4826, - [5013] = 4747, - [5014] = 4831, - [5015] = 4728, - [5016] = 4754, - [5017] = 4797, - [5018] = 4760, - [5019] = 4719, - [5020] = 4748, - [5021] = 4340, - [5022] = 4826, - [5023] = 4754, - [5024] = 4797, - [5025] = 4829, - [5026] = 4814, - [5027] = 4822, - [5028] = 5028, - [5029] = 4781, + [5007] = 4770, + [5008] = 4869, + [5009] = 4784, + [5010] = 4809, + [5011] = 4825, + [5012] = 4796, + [5013] = 4854, + [5014] = 4865, + [5015] = 4825, + [5016] = 4808, + [5017] = 4789, + [5018] = 4868, + [5019] = 4869, + [5020] = 5020, + [5021] = 4789, + [5022] = 5020, + [5023] = 4877, + [5024] = 4879, + [5025] = 4985, + [5026] = 4790, + [5027] = 4791, + [5028] = 4891, + [5029] = 4797, [5030] = 5030, - [5031] = 4774, - [5032] = 4839, - [5033] = 4816, - [5034] = 5034, - [5035] = 4840, - [5036] = 4729, - [5037] = 4803, - [5038] = 4823, - [5039] = 5039, + [5031] = 4883, + [5032] = 4884, + [5033] = 5033, + [5034] = 4836, + [5035] = 4825, + [5036] = 4868, + [5037] = 4869, + [5038] = 5038, + [5039] = 4789, [5040] = 5040, [5041] = 5041, - [5042] = 4353, - [5043] = 5043, - [5044] = 5044, - [5045] = 5045, - [5046] = 4762, - [5047] = 4824, - [5048] = 5048, - [5049] = 4857, - [5050] = 3493, - [5051] = 4807, - [5052] = 5040, - [5053] = 4782, - [5054] = 5054, - [5055] = 5055, - [5056] = 4813, - [5057] = 4817, - [5058] = 4753, - [5059] = 4854, - [5060] = 4759, - [5061] = 4805, - [5062] = 4955, - [5063] = 5063, - [5064] = 4815, - [5065] = 4831, - [5066] = 4826, - [5067] = 4757, - [5068] = 4728, - [5069] = 5044, - [5070] = 4758, - [5071] = 4792, - [5072] = 4754, - [5073] = 4879, - [5074] = 4896, - [5075] = 4740, - [5076] = 4797, - [5077] = 5077, - [5078] = 5030, - [5079] = 4775, - [5080] = 4809, + [5042] = 4877, + [5043] = 4879, + [5044] = 4837, + [5045] = 4790, + [5046] = 4791, + [5047] = 5047, + [5048] = 4838, + [5049] = 4885, + [5050] = 4839, + [5051] = 3267, + [5052] = 5006, + [5053] = 4868, + [5054] = 4869, + [5055] = 4789, + [5056] = 4841, + [5057] = 4877, + [5058] = 3296, + [5059] = 4879, + [5060] = 4790, + [5061] = 4791, + [5062] = 5062, + [5063] = 4873, + [5064] = 3530, + [5065] = 5065, + [5066] = 4868, + [5067] = 4869, + [5068] = 4789, + [5069] = 5069, + [5070] = 4770, + [5071] = 4877, + [5072] = 4879, + [5073] = 4790, + [5074] = 4791, + [5075] = 5075, + [5076] = 5076, + [5077] = 4789, + [5078] = 4790, + [5079] = 4791, + [5080] = 4344, [5081] = 5081, - [5082] = 4929, - [5083] = 4787, - [5084] = 4742, - [5085] = 4760, - [5086] = 5086, - [5087] = 4749, - [5088] = 5048, - [5089] = 5089, - [5090] = 4730, - [5091] = 4731, + [5082] = 5047, + [5083] = 4385, + [5084] = 5084, + [5085] = 4957, + [5086] = 4846, + [5087] = 5087, + [5088] = 5088, + [5089] = 4966, + [5090] = 5069, + [5091] = 5081, [5092] = 5092, [5093] = 5093, - [5094] = 4762, - [5095] = 4857, - [5096] = 4822, - [5097] = 5040, - [5098] = 4764, - [5099] = 4813, - [5100] = 4854, - [5101] = 4755, - [5102] = 4805, - [5103] = 4955, - [5104] = 4800, - [5105] = 4756, - [5106] = 5044, - [5107] = 4896, - [5108] = 4842, - [5109] = 4775, - [5110] = 4765, - [5111] = 4837, - [5112] = 4838, - [5113] = 4764, - [5114] = 5089, - [5115] = 4787, - [5116] = 4839, - [5117] = 4773, - [5118] = 5086, - [5119] = 4829, - [5120] = 4636, - [5121] = 4650, - [5122] = 4619, - [5123] = 5054, - [5124] = 4722, - [5125] = 4789, - [5126] = 4790, - [5127] = 5127, - [5128] = 4732, - [5129] = 4766, - [5130] = 4766, - [5131] = 4828, - [5132] = 4767, - [5133] = 5039, - [5134] = 4767, - [5135] = 4752, - [5136] = 4823, - [5137] = 5137, - [5138] = 4824, - [5139] = 4733, - [5140] = 4826, - [5141] = 4651, - [5142] = 5137, - [5143] = 5143, + [5094] = 4814, + [5095] = 489, + [5096] = 5096, + [5097] = 5097, + [5098] = 5098, + [5099] = 4770, + [5100] = 5100, + [5101] = 5101, + [5102] = 4784, + [5103] = 5096, + [5104] = 4876, + [5105] = 3525, + [5106] = 5106, + [5107] = 5101, + [5108] = 5097, + [5109] = 4809, + [5110] = 4779, + [5111] = 5111, + [5112] = 5111, + [5113] = 4825, + [5114] = 4344, + [5115] = 4798, + [5116] = 4831, + [5117] = 4877, + [5118] = 4977, + [5119] = 5119, + [5120] = 4879, + [5121] = 3267, + [5122] = 4854, + [5123] = 5038, + [5124] = 4894, + [5125] = 4790, + [5126] = 5126, + [5127] = 4931, + [5128] = 5003, + [5129] = 4886, + [5130] = 4888, + [5131] = 5084, + [5132] = 4791, + [5133] = 5133, + [5134] = 4865, + [5135] = 4934, + [5136] = 4765, + [5137] = 4646, + [5138] = 4812, + [5139] = 4813, + [5140] = 4904, + [5141] = 4961, + [5142] = 4964, + [5143] = 4840, [5144] = 5144, - [5145] = 4763, - [5146] = 4721, - [5147] = 4783, - [5148] = 5148, - [5149] = 503, - [5150] = 5041, - [5151] = 5086, - [5152] = 4734, - [5153] = 4741, - [5154] = 5154, - [5155] = 4808, - [5156] = 4750, - [5157] = 4772, - [5158] = 4998, - [5159] = 4830, - [5160] = 4774, - [5161] = 4785, - [5162] = 4723, - [5163] = 5055, - [5164] = 4998, - [5165] = 4800, - [5166] = 4725, - [5167] = 4281, - [5168] = 4735, - [5169] = 5030, - [5170] = 4816, - [5171] = 5143, - [5172] = 4842, - [5173] = 4829, - [5174] = 3488, - [5175] = 4355, - [5176] = 4776, - [5177] = 4736, - [5178] = 4221, - [5179] = 4223, - [5180] = 4867, - [5181] = 4353, - [5182] = 4778, - [5183] = 4716, - [5184] = 4779, - [5185] = 5006, - [5186] = 5186, - [5187] = 5039, - [5188] = 5188, - [5189] = 4781, - [5190] = 4782, - [5191] = 5191, - [5192] = 4783, - [5193] = 5006, - [5194] = 5041, - [5195] = 4785, - [5196] = 5144, - [5197] = 4740, - [5198] = 5198, - [5199] = 4742, - [5200] = 4718, - [5201] = 5201, - [5202] = 4749, - [5203] = 5127, - [5204] = 4934, - [5205] = 4755, - [5206] = 4756, - [5207] = 4722, - [5208] = 4765, - [5209] = 5054, - [5210] = 5055, - [5211] = 3240, - [5212] = 5077, - [5213] = 4773, - [5214] = 4817, - [5215] = 500, + [5145] = 5145, + [5146] = 4876, + [5147] = 4939, + [5148] = 5101, + [5149] = 4851, + [5150] = 4779, + [5151] = 5151, + [5152] = 5111, + [5153] = 5153, + [5154] = 4363, + [5155] = 4798, + [5156] = 4831, + [5157] = 4972, + [5158] = 5038, + [5159] = 5003, + [5160] = 5133, + [5161] = 4868, + [5162] = 4869, + [5163] = 4934, + [5164] = 5164, + [5165] = 5165, + [5166] = 4789, + [5167] = 4961, + [5168] = 4813, + [5169] = 5169, + [5170] = 5170, + [5171] = 5171, + [5172] = 4964, + [5173] = 5100, + [5174] = 5174, + [5175] = 4883, + [5176] = 4884, + [5177] = 4873, + [5178] = 3523, + [5179] = 5062, + [5180] = 4885, + [5181] = 4957, + [5182] = 4769, + [5183] = 4966, + [5184] = 490, + [5185] = 4873, + [5186] = 5119, + [5187] = 5187, + [5188] = 5096, + [5189] = 5097, + [5190] = 5190, + [5191] = 5100, + [5192] = 5126, + [5193] = 5193, + [5194] = 5194, + [5195] = 4314, + [5196] = 4877, + [5197] = 4879, + [5198] = 4790, + [5199] = 4791, + [5200] = 4319, + [5201] = 5098, + [5202] = 4323, + [5203] = 5203, + [5204] = 4972, + [5205] = 5145, + [5206] = 5206, + [5207] = 4875, + [5208] = 4990, + [5209] = 4768, + [5210] = 5075, + [5211] = 4883, + [5212] = 4884, + [5213] = 5213, + [5214] = 4885, + [5215] = 5215, [5216] = 5216, - [5217] = 5217, - [5218] = 4831, - [5219] = 4831, - [5220] = 4728, - [5221] = 5043, - [5222] = 4340, - [5223] = 4793, - [5224] = 5224, - [5225] = 4754, - [5226] = 4797, - [5227] = 4794, - [5228] = 5217, - [5229] = 5229, - [5230] = 5230, - [5231] = 5231, - [5232] = 5232, - [5233] = 3249, - [5234] = 5234, - [5235] = 5235, + [5217] = 5206, + [5218] = 5133, + [5219] = 5119, + [5220] = 4868, + [5221] = 4315, + [5222] = 5222, + [5223] = 5193, + [5224] = 4378, + [5225] = 5193, + [5226] = 4801, + [5227] = 4324, + [5228] = 4628, + [5229] = 4772, + [5230] = 5098, + [5231] = 4329, + [5232] = 4815, + [5233] = 5145, + [5234] = 5206, + [5235] = 4771, [5236] = 5236, - [5237] = 5237, - [5238] = 5238, - [5239] = 5239, - [5240] = 5240, - [5241] = 5234, - [5242] = 5242, - [5243] = 5243, - [5244] = 5234, + [5237] = 5194, + [5238] = 4875, + [5239] = 4774, + [5240] = 4990, + [5241] = 4628, + [5242] = 4363, + [5243] = 479, + [5244] = 513, [5245] = 5245, - [5246] = 5246, - [5247] = 5247, - [5248] = 5248, - [5249] = 5229, - [5250] = 5250, - [5251] = 5234, - [5252] = 5252, - [5253] = 5253, - [5254] = 5248, - [5255] = 5255, - [5256] = 5239, - [5257] = 4907, - [5258] = 5258, - [5259] = 5259, - [5260] = 5260, - [5261] = 5261, - [5262] = 5262, - [5263] = 5245, - [5264] = 5264, - [5265] = 5265, - [5266] = 5266, - [5267] = 5267, - [5268] = 5268, - [5269] = 4304, - [5270] = 5270, - [5271] = 5148, - [5272] = 5272, - [5273] = 5273, - [5274] = 5274, - [5275] = 5234, - [5276] = 5276, - [5277] = 5277, - [5278] = 5234, - [5279] = 4480, - [5280] = 5235, - [5281] = 5154, - [5282] = 5282, - [5283] = 5282, - [5284] = 5284, + [5246] = 4891, + [5247] = 4877, + [5248] = 4891, + [5249] = 4803, + [5250] = 4869, + [5251] = 5251, + [5252] = 4886, + [5253] = 4804, + [5254] = 4641, + [5255] = 4928, + [5256] = 5106, + [5257] = 4888, + [5258] = 4991, + [5259] = 4928, + [5260] = 4628, + [5261] = 5151, + [5262] = 5170, + [5263] = 4769, + [5264] = 4768, + [5265] = 5213, + [5266] = 4772, + [5267] = 4774, + [5268] = 4595, + [5269] = 5041, + [5270] = 4344, + [5271] = 4879, + [5272] = 4805, + [5273] = 5151, + [5274] = 5170, + [5275] = 5047, + [5276] = 5213, + [5277] = 4447, + [5278] = 5278, + [5279] = 5279, + [5280] = 5280, + [5281] = 5281, + [5282] = 3294, + [5283] = 5283, + [5284] = 5281, [5285] = 5285, [5286] = 5286, [5287] = 5287, - [5288] = 5285, - [5289] = 5289, + [5288] = 5288, + [5289] = 5281, [5290] = 5290, - [5291] = 4339, + [5291] = 5291, [5292] = 5292, [5293] = 5293, - [5294] = 5245, - [5295] = 3250, + [5294] = 5294, + [5295] = 5281, [5296] = 5296, - [5297] = 5297, + [5297] = 3321, [5298] = 5298, - [5299] = 5299, - [5300] = 5231, - [5301] = 5298, - [5302] = 5232, - [5303] = 5303, + [5299] = 4447, + [5300] = 5300, + [5301] = 5301, + [5302] = 5302, + [5303] = 5296, [5304] = 5304, - [5305] = 5234, + [5305] = 5305, [5306] = 5306, - [5307] = 5252, - [5308] = 5239, - [5309] = 5282, - [5310] = 5247, + [5307] = 3308, + [5308] = 5308, + [5309] = 5309, + [5310] = 5310, [5311] = 5311, [5312] = 5312, [5313] = 5313, [5314] = 5314, - [5315] = 5239, - [5316] = 5316, - [5317] = 4288, - [5318] = 3255, - [5319] = 3249, - [5320] = 5234, - [5321] = 5234, - [5322] = 5234, - [5323] = 5234, - [5324] = 5234, - [5325] = 5234, - [5326] = 5234, - [5327] = 5250, - [5328] = 5239, + [5315] = 5315, + [5316] = 5281, + [5317] = 5317, + [5318] = 5318, + [5319] = 5319, + [5320] = 5320, + [5321] = 5321, + [5322] = 5314, + [5323] = 5323, + [5324] = 5324, + [5325] = 5313, + [5326] = 5292, + [5327] = 5327, + [5328] = 5328, [5329] = 5329, - [5330] = 5287, + [5330] = 5330, [5331] = 5331, - [5332] = 5332, - [5333] = 5282, - [5334] = 5287, - [5335] = 5246, - [5336] = 5293, - [5337] = 5272, - [5338] = 5245, + [5332] = 5222, + [5333] = 5333, + [5334] = 5296, + [5335] = 3294, + [5336] = 5296, + [5337] = 5337, + [5338] = 5338, [5339] = 5339, [5340] = 5340, [5341] = 5341, - [5342] = 5232, - [5343] = 5303, - [5344] = 5304, - [5345] = 5282, - [5346] = 4480, - [5347] = 5252, - [5348] = 5289, + [5342] = 5342, + [5343] = 3321, + [5344] = 5344, + [5345] = 5286, + [5346] = 5294, + [5347] = 5281, + [5348] = 5348, [5349] = 5349, - [5350] = 5247, + [5350] = 5350, [5351] = 5351, - [5352] = 5311, - [5353] = 5312, - [5354] = 5234, - [5355] = 5355, - [5356] = 5356, - [5357] = 5230, + [5352] = 5281, + [5353] = 5292, + [5354] = 5354, + [5355] = 5319, + [5356] = 5348, + [5357] = 5357, [5358] = 5358, - [5359] = 5268, - [5360] = 5255, + [5359] = 5357, + [5360] = 5292, [5361] = 5361, - [5362] = 5234, - [5363] = 5277, - [5364] = 5292, - [5365] = 5365, + [5362] = 5362, + [5363] = 5288, + [5364] = 5364, + [5365] = 5296, [5366] = 5366, - [5367] = 5245, - [5368] = 5234, - [5369] = 5369, - [5370] = 5370, - [5371] = 5270, - [5372] = 5372, - [5373] = 5239, - [5374] = 5374, - [5375] = 4480, - [5376] = 5293, - [5377] = 4246, - [5378] = 5303, + [5367] = 5367, + [5368] = 4339, + [5369] = 5281, + [5370] = 5281, + [5371] = 5281, + [5372] = 5281, + [5373] = 5281, + [5374] = 5281, + [5375] = 5281, + [5376] = 4334, + [5377] = 5377, + [5378] = 5341, [5379] = 5379, - [5380] = 5243, - [5381] = 5246, + [5380] = 5320, + [5381] = 5381, [5382] = 5382, - [5383] = 5239, + [5383] = 5327, [5384] = 5384, [5385] = 5385, - [5386] = 5273, - [5387] = 5387, + [5386] = 5296, + [5387] = 5033, [5388] = 5388, - [5389] = 5389, - [5390] = 5390, - [5391] = 5270, - [5392] = 5392, - [5393] = 5240, - [5394] = 5311, - [5395] = 5304, - [5396] = 5396, - [5397] = 5397, - [5398] = 5297, - [5399] = 5399, - [5400] = 5400, + [5389] = 5294, + [5390] = 5338, + [5391] = 5391, + [5392] = 5286, + [5393] = 5294, + [5394] = 5394, + [5395] = 5395, + [5396] = 5354, + [5397] = 4397, + [5398] = 5319, + [5399] = 5348, + [5400] = 5357, [5401] = 5401, - [5402] = 5234, - [5403] = 5403, - [5404] = 5356, - [5405] = 5262, - [5406] = 5406, - [5407] = 5407, - [5408] = 3253, - [5409] = 5369, - [5410] = 5238, - [5411] = 5372, - [5412] = 5255, + [5402] = 5361, + [5403] = 5292, + [5404] = 5361, + [5405] = 5281, + [5406] = 5288, + [5407] = 4375, + [5408] = 5391, + [5409] = 5409, + [5410] = 5281, + [5411] = 5411, + [5412] = 5331, [5413] = 5413, - [5414] = 5260, - [5415] = 5255, - [5416] = 5416, - [5417] = 5260, - [5418] = 5365, + [5414] = 5414, + [5415] = 5281, + [5416] = 5315, + [5417] = 5294, + [5418] = 5342, [5419] = 5419, - [5420] = 3250, - [5421] = 5299, - [5422] = 5384, - [5423] = 732, - [5424] = 5245, - [5425] = 5312, - [5426] = 5268, - [5427] = 5427, - [5428] = 5282, - [5429] = 5229, - [5430] = 5284, - [5431] = 5234, - [5432] = 5298, - [5433] = 5290, - [5434] = 5284, - [5435] = 5273, - [5436] = 5234, - [5437] = 5437, - [5438] = 5438, - [5439] = 5407, + [5420] = 5420, + [5421] = 5421, + [5422] = 5314, + [5423] = 5423, + [5424] = 5424, + [5425] = 5320, + [5426] = 5426, + [5427] = 5292, + [5428] = 5394, + [5429] = 5339, + [5430] = 5409, + [5431] = 5431, + [5432] = 5340, + [5433] = 3296, + [5434] = 5434, + [5435] = 5344, + [5436] = 5366, + [5437] = 5292, + [5438] = 5384, + [5439] = 5337, [5440] = 5440, - [5441] = 5231, - [5442] = 5231, - [5443] = 5239, - [5444] = 5387, - [5445] = 5341, - [5446] = 5369, - [5447] = 5407, - [5448] = 5407, - [5449] = 5449, - [5450] = 5450, - [5451] = 3255, - [5452] = 5243, - [5453] = 5453, - [5454] = 5240, - [5455] = 5403, - [5456] = 5238, - [5457] = 5457, - [5458] = 5413, - [5459] = 5459, - [5460] = 5240, - [5461] = 5413, - [5462] = 5384, - [5463] = 5286, - [5464] = 5449, + [5441] = 5310, + [5442] = 5442, + [5443] = 5310, + [5444] = 5285, + [5445] = 5093, + [5446] = 5391, + [5447] = 5340, + [5448] = 5281, + [5449] = 5354, + [5450] = 5294, + [5451] = 5451, + [5452] = 5452, + [5453] = 5329, + [5454] = 5333, + [5455] = 5306, + [5456] = 5394, + [5457] = 5358, + [5458] = 4447, + [5459] = 5379, + [5460] = 5460, + [5461] = 5340, + [5462] = 5462, + [5463] = 5463, + [5464] = 5339, [5465] = 5465, - [5466] = 5260, - [5467] = 5356, - [5468] = 5468, - [5469] = 5469, - [5470] = 5470, + [5466] = 5434, + [5467] = 5467, + [5468] = 5366, + [5469] = 5409, + [5470] = 3308, [5471] = 5471, - [5472] = 5472, - [5473] = 5473, + [5472] = 5281, + [5473] = 5281, [5474] = 5474, [5475] = 5475, - [5476] = 5468, + [5476] = 5338, [5477] = 5477, - [5478] = 5478, - [5479] = 5479, - [5480] = 5480, - [5481] = 5481, - [5482] = 5482, - [5483] = 5478, - [5484] = 5484, - [5485] = 5485, - [5486] = 5470, - [5487] = 5487, - [5488] = 5468, + [5478] = 5304, + [5479] = 5308, + [5480] = 5384, + [5481] = 5339, + [5482] = 5409, + [5483] = 5309, + [5484] = 5350, + [5485] = 5292, + [5486] = 5290, + [5487] = 5358, + [5488] = 5328, [5489] = 5489, - [5490] = 5490, - [5491] = 5491, + [5490] = 5305, + [5491] = 5434, [5492] = 5492, - [5493] = 5493, - [5494] = 5474, - [5495] = 5477, - [5496] = 5496, + [5493] = 5304, + [5494] = 5358, + [5495] = 5315, + [5496] = 5364, [5497] = 5497, - [5498] = 5498, - [5499] = 5468, + [5498] = 627, + [5499] = 5305, [5500] = 5500, - [5501] = 5501, - [5502] = 5480, + [5501] = 5362, + [5502] = 5475, [5503] = 5503, - [5504] = 5504, - [5505] = 5505, - [5506] = 5477, + [5504] = 5278, + [5505] = 5351, + [5506] = 5364, [5507] = 5507, [5508] = 5508, - [5509] = 5509, - [5510] = 5510, - [5511] = 5511, - [5512] = 5491, - [5513] = 5493, - [5514] = 5471, - [5515] = 5515, + [5509] = 5497, + [5510] = 5310, + [5511] = 5308, + [5512] = 5309, + [5513] = 5513, + [5514] = 5440, + [5515] = 5362, [5516] = 5516, - [5517] = 5511, - [5518] = 5480, - [5519] = 5477, - [5520] = 5493, + [5517] = 5517, + [5518] = 5518, + [5519] = 5519, + [5520] = 5520, [5521] = 5521, - [5522] = 5492, + [5522] = 5522, [5523] = 5523, - [5524] = 5505, + [5524] = 5524, [5525] = 5525, - [5526] = 5475, - [5527] = 5527, + [5526] = 5526, + [5527] = 5516, [5528] = 5528, [5529] = 5529, [5530] = 5530, - [5531] = 5504, - [5532] = 5496, - [5533] = 5480, - [5534] = 5534, + [5531] = 5518, + [5532] = 5532, + [5533] = 5533, + [5534] = 5525, [5535] = 5535, - [5536] = 5515, - [5537] = 5485, - [5538] = 5511, + [5536] = 5536, + [5537] = 5537, + [5538] = 5538, [5539] = 5539, - [5540] = 5540, + [5540] = 5529, [5541] = 5541, [5542] = 5542, - [5543] = 5470, + [5543] = 5543, [5544] = 5544, - [5545] = 5542, - [5546] = 5477, - [5547] = 5491, + [5545] = 5545, + [5546] = 5538, + [5547] = 5547, [5548] = 5548, - [5549] = 5493, - [5550] = 5490, - [5551] = 5493, + [5549] = 5549, + [5550] = 5530, + [5551] = 5551, [5552] = 5552, [5553] = 5553, [5554] = 5554, - [5555] = 5535, + [5555] = 5555, [5556] = 5556, - [5557] = 5485, + [5557] = 5537, [5558] = 5558, - [5559] = 5491, - [5560] = 5491, - [5561] = 5493, - [5562] = 5510, + [5559] = 5559, + [5560] = 5560, + [5561] = 5556, + [5562] = 5562, [5563] = 5563, - [5564] = 5554, + [5564] = 5564, [5565] = 5565, - [5566] = 5521, - [5567] = 5567, - [5568] = 5568, - [5569] = 5554, - [5570] = 5563, - [5571] = 5481, - [5572] = 5482, - [5573] = 5487, - [5574] = 5574, - [5575] = 5491, - [5576] = 5493, - [5577] = 5542, - [5578] = 5578, - [5579] = 5471, - [5580] = 5474, - [5581] = 5491, - [5582] = 5496, - [5583] = 5528, + [5566] = 5517, + [5567] = 5528, + [5568] = 5541, + [5569] = 5569, + [5570] = 5570, + [5571] = 5571, + [5572] = 5572, + [5573] = 5558, + [5574] = 5558, + [5575] = 5524, + [5576] = 5576, + [5577] = 5577, + [5578] = 5556, + [5579] = 5537, + [5580] = 5541, + [5581] = 5554, + [5582] = 5582, + [5583] = 5556, [5584] = 5584, - [5585] = 5585, - [5586] = 5470, - [5587] = 5501, - [5588] = 5491, - [5589] = 5493, - [5590] = 5504, - [5591] = 5490, - [5592] = 5592, - [5593] = 5491, - [5594] = 5542, - [5595] = 5595, - [5596] = 5471, + [5585] = 5537, + [5586] = 5030, + [5587] = 5587, + [5588] = 5556, + [5589] = 5522, + [5590] = 5537, + [5591] = 5549, + [5592] = 5584, + [5593] = 5593, + [5594] = 5537, + [5595] = 5569, + [5596] = 5596, [5597] = 5597, - [5598] = 5585, - [5599] = 5490, - [5600] = 5556, - [5601] = 5563, - [5602] = 5534, - [5603] = 5554, - [5604] = 5585, - [5605] = 5492, - [5606] = 5480, - [5607] = 5493, - [5608] = 5515, - [5609] = 5493, - [5610] = 5492, - [5611] = 5468, - [5612] = 5469, - [5613] = 5471, - [5614] = 5491, + [5598] = 5524, + [5599] = 5582, + [5600] = 5543, + [5601] = 5597, + [5602] = 5537, + [5603] = 5603, + [5604] = 5558, + [5605] = 5556, + [5606] = 5537, + [5607] = 5607, + [5608] = 5556, + [5609] = 5558, + [5610] = 5610, + [5611] = 522, + [5612] = 5517, + [5613] = 5613, + [5614] = 5525, [5615] = 5615, - [5616] = 5474, - [5617] = 5475, - [5618] = 5511, - [5619] = 5490, - [5620] = 5620, - [5621] = 5477, - [5622] = 5622, - [5623] = 5471, - [5624] = 5480, - [5625] = 5492, - [5626] = 5592, - [5627] = 5469, - [5628] = 5628, - [5629] = 5485, - [5630] = 5470, - [5631] = 5471, - [5632] = 5468, - [5633] = 5633, + [5616] = 5616, + [5617] = 5523, + [5618] = 5556, + [5619] = 5529, + [5620] = 5530, + [5621] = 5535, + [5622] = 5537, + [5623] = 5537, + [5624] = 5624, + [5625] = 5520, + [5626] = 5525, + [5627] = 5556, + [5628] = 5520, + [5629] = 5596, + [5630] = 5544, + [5631] = 5631, + [5632] = 5521, + [5633] = 5528, [5634] = 5634, - [5635] = 5509, - [5636] = 5563, - [5637] = 5542, - [5638] = 5634, - [5639] = 5501, - [5640] = 5508, - [5641] = 5477, - [5642] = 5493, - [5643] = 5474, - [5644] = 5480, - [5645] = 5645, - [5646] = 5646, - [5647] = 5493, + [5635] = 5549, + [5636] = 5547, + [5637] = 5528, + [5638] = 5552, + [5639] = 5526, + [5640] = 5640, + [5641] = 5641, + [5642] = 5642, + [5643] = 5642, + [5644] = 523, + [5645] = 5544, + [5646] = 5563, + [5647] = 5524, [5648] = 5648, - [5649] = 5493, - [5650] = 5475, - [5651] = 5539, + [5649] = 5537, + [5650] = 5582, + [5651] = 5538, [5652] = 5652, - [5653] = 5521, - [5654] = 5548, + [5653] = 5576, + [5654] = 5558, [5655] = 5655, - [5656] = 5656, - [5657] = 5491, - [5658] = 5658, + [5656] = 5554, + [5657] = 5558, + [5658] = 5556, [5659] = 5659, - [5660] = 5592, - [5661] = 5523, - [5662] = 5505, - [5663] = 5480, - [5664] = 5470, - [5665] = 5665, - [5666] = 5201, - [5667] = 5667, - [5668] = 5529, - [5669] = 5669, - [5670] = 5670, - [5671] = 5671, - [5672] = 5672, - [5673] = 5481, - [5674] = 5471, - [5675] = 5490, - [5676] = 5511, - [5677] = 5500, - [5678] = 5530, - [5679] = 5679, - [5680] = 5558, - [5681] = 5681, - [5682] = 5679, - [5683] = 5683, - [5684] = 5672, - [5685] = 5685, - [5686] = 5585, - [5687] = 5482, - [5688] = 5492, - [5689] = 5491, - [5690] = 5475, - [5691] = 5633, - [5692] = 5692, - [5693] = 5507, - [5694] = 5656, - [5695] = 5563, - [5696] = 5493, - [5697] = 5534, + [5660] = 5660, + [5661] = 5526, + [5662] = 5662, + [5663] = 5663, + [5664] = 5569, + [5665] = 5558, + [5666] = 5559, + [5667] = 5525, + [5668] = 5538, + [5669] = 5541, + [5670] = 5634, + [5671] = 5517, + [5672] = 5526, + [5673] = 5673, + [5674] = 5576, + [5675] = 5541, + [5676] = 5542, + [5677] = 5517, + [5678] = 5552, + [5679] = 5572, + [5680] = 5526, + [5681] = 5520, + [5682] = 5682, + [5683] = 5523, + [5684] = 5526, + [5685] = 5547, + [5686] = 5525, + [5687] = 5556, + [5688] = 5535, + [5689] = 5689, + [5690] = 5538, + [5691] = 5691, + [5692] = 5554, + [5693] = 5537, + [5694] = 5694, + [5695] = 5556, + [5696] = 5517, + [5697] = 5571, [5698] = 5698, - [5699] = 5480, - [5700] = 5491, - [5701] = 5652, - [5702] = 5468, + [5699] = 5572, + [5700] = 5523, + [5701] = 5542, + [5702] = 5702, [5703] = 5703, - [5704] = 5497, - [5705] = 5525, - [5706] = 5706, - [5707] = 5707, - [5708] = 5487, - [5709] = 5528, - [5710] = 5707, - [5711] = 5485, - [5712] = 5539, - [5713] = 5528, - [5714] = 5527, - [5715] = 5534, - [5716] = 5554, - [5717] = 5470, - [5718] = 5471, - [5719] = 5469, - [5720] = 5474, - [5721] = 5491, - [5722] = 5541, - [5723] = 5723, - [5724] = 5542, - [5725] = 5544, - [5726] = 5671, - [5727] = 5479, - [5728] = 5542, - [5729] = 5729, - [5730] = 5578, - [5731] = 5731, - [5732] = 5527, + [5704] = 5525, + [5705] = 5551, + [5706] = 5569, + [5707] = 5523, + [5708] = 5521, + [5709] = 5569, + [5710] = 5710, + [5711] = 5517, + [5712] = 5577, + [5713] = 5543, + [5714] = 5521, + [5715] = 5525, + [5716] = 5542, + [5717] = 5655, + [5718] = 5718, + [5719] = 5719, + [5720] = 5542, + [5721] = 5570, + [5722] = 5719, + [5723] = 5571, + [5724] = 5634, + [5725] = 5553, + [5726] = 5533, + [5727] = 5727, + [5728] = 5728, + [5729] = 5521, + [5730] = 5576, + [5731] = 5663, + [5732] = 5541, [5733] = 5733, - [5734] = 5585, - [5735] = 5490, - [5736] = 5648, - [5737] = 5491, - [5738] = 5698, - [5739] = 5492, - [5740] = 5542, - [5741] = 5741, - [5742] = 5493, - [5743] = 5669, - [5744] = 5469, - [5745] = 5475, - [5746] = 5558, - [5747] = 5471, - [5748] = 5544, - [5749] = 5585, - [5750] = 5750, - [5751] = 5491, - [5752] = 5493, - [5753] = 5474, - [5754] = 5475, - [5755] = 5474, - [5756] = 5670, - [5757] = 5491, - [5758] = 5493, - [5759] = 5574, - [5760] = 517, - [5761] = 5485, - [5762] = 5672, - [5763] = 5470, - [5764] = 5468, - [5765] = 5585, - [5766] = 5471, - [5767] = 5656, - [5768] = 5548, - [5769] = 5769, - [5770] = 5658, - [5771] = 5491, - [5772] = 5490, - [5773] = 5553, - [5774] = 5477, - [5775] = 5672, - [5776] = 5723, - [5777] = 5672, - [5778] = 5672, - [5779] = 5672, - [5780] = 5672, - [5781] = 5659, - [5782] = 5473, - [5783] = 5646, - [5784] = 5541, - [5785] = 5785, - [5786] = 5553, + [5734] = 5610, + [5735] = 5542, + [5736] = 5547, + [5737] = 5582, + [5738] = 5593, + [5739] = 5739, + [5740] = 5555, + [5741] = 5615, + [5742] = 5616, + [5743] = 5743, + [5744] = 5556, + [5745] = 5652, + [5746] = 5521, + [5747] = 5682, + [5748] = 5698, + [5749] = 5749, + [5750] = 5547, + [5751] = 5751, + [5752] = 5521, + [5753] = 5640, + [5754] = 5689, + [5755] = 5554, + [5756] = 5523, + [5757] = 5587, + [5758] = 5528, + [5759] = 5528, + [5760] = 5760, + [5761] = 5698, + [5762] = 5547, + [5763] = 5528, + [5764] = 5522, + [5765] = 5563, + [5766] = 5556, + [5767] = 5524, + [5768] = 5768, + [5769] = 5537, + [5770] = 5607, + [5771] = 5520, + [5772] = 5144, + [5773] = 5521, + [5774] = 5547, + [5775] = 5558, + [5776] = 5593, + [5777] = 5526, + [5778] = 5524, + [5779] = 5538, + [5780] = 5537, + [5781] = 5718, + [5782] = 5782, + [5783] = 5728, + [5784] = 5603, + [5785] = 5556, + [5786] = 5558, [5787] = 5787, - [5788] = 5480, - [5789] = 5698, - [5790] = 5503, - [5791] = 5475, - [5792] = 5706, - [5793] = 5493, - [5794] = 5529, - [5795] = 5471, - [5796] = 516, - [5797] = 5552, - [5798] = 5683, - [5799] = 5799, - [5800] = 5491, - [5801] = 5801, - [5802] = 5535, - [5803] = 5628, - [5804] = 5492, - [5805] = 5484, - [5806] = 5468, - [5807] = 5480, - [5808] = 5741, - [5809] = 5485, - [5810] = 4820, - [5811] = 5785, - [5812] = 5812, - [5813] = 5493, - [5814] = 5523, - [5815] = 5729, - [5816] = 5472, - [5817] = 5692, - [5818] = 5706, - [5819] = 5683, - [5820] = 5485, - [5821] = 5510, - [5822] = 5491, - [5823] = 5493, - [5824] = 5824, - [5825] = 5698, - [5826] = 5585, + [5788] = 5743, + [5789] = 5524, + [5790] = 5584, + [5791] = 5791, + [5792] = 5517, + [5793] = 5793, + [5794] = 5739, + [5795] = 5698, + [5796] = 5537, + [5797] = 5541, + [5798] = 5542, + [5799] = 5517, + [5800] = 5800, + [5801] = 5556, + [5802] = 5537, + [5803] = 5800, + [5804] = 5542, + [5805] = 5523, + [5806] = 5577, + [5807] = 5556, + [5808] = 5537, + [5809] = 5809, + [5810] = 5524, + [5811] = 5659, + [5812] = 5570, + [5813] = 5525, + [5814] = 5814, + [5815] = 5596, + [5816] = 5537, + [5817] = 5743, + [5818] = 5525, + [5819] = 5819, + [5820] = 5820, + [5821] = 5528, + [5822] = 5597, + [5823] = 5823, + [5824] = 5659, + [5825] = 5570, + [5826] = 5768, + [5827] = 5570, + [5828] = 5570, + [5829] = 5570, + [5830] = 5570, + [5831] = 5823, + [5832] = 5814, + [5833] = 5648, + [5834] = 5556, + [5835] = 5820, + [5836] = 5525, + [5837] = 5558, + [5838] = 5838, + [5839] = 5839, + [5840] = 5660, + [5841] = 5841, + [5842] = 5702, + [5843] = 5843, + [5844] = 5694, + [5845] = 5845, + [5846] = 5519, + [5847] = 5548, + [5848] = 5848, + [5849] = 5849, + [5850] = 5848, + [5851] = 5603, + [5852] = 5843, + [5853] = 5839, + [5854] = 5727, + [5855] = 5855, + [5856] = 5538, + [5857] = 5587, + [5858] = 5526, + [5859] = 5760, + [5860] = 5516, + [5861] = 5698, + [5862] = 5537, + [5863] = 5538, + [5864] = 5809, + [5865] = 5523, + [5866] = 5558, + [5867] = 5560, + [5868] = 5702, + [5869] = 5848, + [5870] = 5547, + [5871] = 5610, + [5872] = 5556, + [5873] = 5537, + [5874] = 5556, + [5875] = 5541, + [5876] = 5543, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -11002,7 +11101,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 || @@ -11344,7 +11443,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); @@ -11371,6 +11469,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); @@ -11996,12 +12095,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: @@ -12123,32 +12222,34 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { case 0: if (lookahead == '\r') SKIP(0); if (lookahead == 'D') ADVANCE(1); - if (lookahead == 'F') ADVANCE(2); - if (lookahead == 'N') ADVANCE(3); - if (lookahead == 'P') ADVANCE(4); - if (lookahead == 'T') ADVANCE(5); - if (lookahead == '_') ADVANCE(6); - if (lookahead == 'a') ADVANCE(7); - if (lookahead == 'b') ADVANCE(8); - if (lookahead == 'c') ADVANCE(9); - if (lookahead == 'd') ADVANCE(10); - if (lookahead == 'e') ADVANCE(11); - if (lookahead == 'f') ADVANCE(12); - if (lookahead == 'g') ADVANCE(13); - if (lookahead == 'i') ADVANCE(14); - if (lookahead == 'l') ADVANCE(15); - if (lookahead == 'm') ADVANCE(16); - if (lookahead == 'n') ADVANCE(17); - if (lookahead == 'o') ADVANCE(18); - if (lookahead == 'p') ADVANCE(19); - if (lookahead == 'r') ADVANCE(20); - if (lookahead == 's') ADVANCE(21); - if (lookahead == 't') ADVANCE(22); - if (lookahead == 'u') ADVANCE(23); - if (lookahead == 'v') ADVANCE(24); - if (lookahead == 'w') ADVANCE(25); - if (lookahead == 'x') ADVANCE(26); - if (lookahead == 'y') ADVANCE(27); + if (lookahead == 'E') ADVANCE(2); + if (lookahead == 'F') ADVANCE(3); + if (lookahead == 'I') ADVANCE(4); + if (lookahead == 'N') ADVANCE(5); + if (lookahead == 'P') ADVANCE(6); + if (lookahead == 'T') ADVANCE(7); + if (lookahead == '_') ADVANCE(8); + if (lookahead == 'a') ADVANCE(9); + if (lookahead == 'b') ADVANCE(10); + if (lookahead == 'c') ADVANCE(11); + if (lookahead == 'd') ADVANCE(12); + if (lookahead == 'e') ADVANCE(13); + if (lookahead == 'f') ADVANCE(14); + if (lookahead == 'g') ADVANCE(15); + if (lookahead == 'i') ADVANCE(16); + if (lookahead == 'l') ADVANCE(17); + if (lookahead == 'm') ADVANCE(18); + if (lookahead == 'n') ADVANCE(19); + if (lookahead == 'o') ADVANCE(20); + if (lookahead == 'p') ADVANCE(21); + if (lookahead == 'r') ADVANCE(22); + if (lookahead == 's') ADVANCE(23); + if (lookahead == 't') ADVANCE(24); + if (lookahead == 'u') ADVANCE(25); + if (lookahead == 'v') ADVANCE(26); + if (lookahead == 'w') ADVANCE(27); + if (lookahead == 'x') ADVANCE(28); + if (lookahead == 'y') ADVANCE(29); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || @@ -12156,1160 +12257,1185 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 0xfeff) SKIP(0); END_STATE(); case 1: - if (lookahead == 'E') ADVANCE(28); + if (lookahead == 'E') ADVANCE(30); END_STATE(); case 2: - if (lookahead == 'a') ADVANCE(29); + if (lookahead == 'L') ADVANCE(31); END_STATE(); case 3: - if (lookahead == 'o') ADVANCE(30); + if (lookahead == 'a') ADVANCE(32); END_STATE(); case 4: - if (lookahead == 'Y') ADVANCE(31); + if (lookahead == 'F') ADVANCE(33); END_STATE(); case 5: - if (lookahead == 'r') ADVANCE(32); + if (lookahead == 'o') ADVANCE(34); END_STATE(); case 6: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(33); + if (lookahead == 'Y') ADVANCE(35); END_STATE(); case 7: - if (lookahead == 'n') ADVANCE(34); - if (lookahead == 'p') ADVANCE(35); - if (lookahead == 's') ADVANCE(36); - if (lookahead == 'w') ADVANCE(37); + if (lookahead == 'r') ADVANCE(36); END_STATE(); case 8: - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'r') ADVANCE(39); - if (lookahead == 'y') ADVANCE(40); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(37); END_STATE(); case 9: - ADVANCE_MAP( - 'a', 41, - 'd', 42, - 'h', 43, - 'i', 44, - 'l', 45, - 'o', 46, - 'p', 47, - 't', 48, - ); + if (lookahead == 'n') ADVANCE(38); + if (lookahead == 'p') ADVANCE(39); + if (lookahead == 's') ADVANCE(40); + if (lookahead == 'w') ADVANCE(41); END_STATE(); case 10: - if (lookahead == 'e') ADVANCE(49); - if (lookahead == 'o') ADVANCE(50); + if (lookahead == 'i') ADVANCE(42); + if (lookahead == 'r') ADVANCE(43); + if (lookahead == 'y') ADVANCE(44); END_STATE(); case 11: - if (lookahead == 'l') ADVANCE(51); - if (lookahead == 'n') ADVANCE(52); - if (lookahead == 'x') ADVANCE(53); + ADVANCE_MAP( + 'a', 45, + 'd', 46, + 'h', 47, + 'i', 48, + 'l', 49, + 'o', 50, + 'p', 51, + 't', 52, + ); END_STATE(); case 12: - if (lookahead == 'i') ADVANCE(54); - if (lookahead == 'o') ADVANCE(55); - if (lookahead == 'r') ADVANCE(56); - if (lookahead == 'u') ADVANCE(57); + if (lookahead == 'e') ADVANCE(53); + if (lookahead == 'o') ADVANCE(54); END_STATE(); case 13: - if (lookahead == 'i') ADVANCE(58); - if (lookahead == 'l') ADVANCE(59); + if (lookahead == 'l') ADVANCE(55); + if (lookahead == 'n') ADVANCE(56); + if (lookahead == 'x') ADVANCE(57); END_STATE(); case 14: - if (lookahead == 'f') ADVANCE(60); - if (lookahead == 'm') ADVANCE(61); - if (lookahead == 'n') ADVANCE(62); - if (lookahead == 's') ADVANCE(63); + if (lookahead == 'i') ADVANCE(58); + if (lookahead == 'o') ADVANCE(59); + if (lookahead == 'r') ADVANCE(60); + if (lookahead == 'u') ADVANCE(61); END_STATE(); case 15: - if (lookahead == 'a') ADVANCE(64); - if (lookahead == 'o') ADVANCE(65); + if (lookahead == 'i') ADVANCE(62); + if (lookahead == 'l') ADVANCE(63); END_STATE(); case 16: - if (lookahead == 'a') ADVANCE(66); + if (lookahead == 'f') ADVANCE(64); + if (lookahead == 'm') ADVANCE(65); + if (lookahead == 'n') ADVANCE(66); + if (lookahead == 's') ADVANCE(67); END_STATE(); case 17: - if (lookahead == 'a') ADVANCE(67); - if (lookahead == 'e') ADVANCE(68); + if (lookahead == 'a') ADVANCE(68); if (lookahead == 'o') ADVANCE(69); END_STATE(); case 18: - if (lookahead == 'b') ADVANCE(70); - if (lookahead == 'p') ADVANCE(71); - if (lookahead == 'r') ADVANCE(72); + if (lookahead == 'a') ADVANCE(70); END_STATE(); case 19: - if (lookahead == 'a') ADVANCE(73); - if (lookahead == 'r') ADVANCE(74); - if (lookahead == 'u') ADVANCE(75); + if (lookahead == 'a') ADVANCE(71); + if (lookahead == 'e') ADVANCE(72); + if (lookahead == 'o') ADVANCE(73); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(76); - if (lookahead == 'e') ADVANCE(77); + if (lookahead == 'b') ADVANCE(74); + if (lookahead == 'p') ADVANCE(75); + if (lookahead == 'r') ADVANCE(76); END_STATE(); case 21: - if (lookahead == 'h') ADVANCE(78); - if (lookahead == 'i') ADVANCE(79); - if (lookahead == 't') ADVANCE(80); + if (lookahead == 'a') ADVANCE(77); + if (lookahead == 'r') ADVANCE(78); + if (lookahead == 'u') ADVANCE(79); END_STATE(); case 22: - if (lookahead == 'r') ADVANCE(81); - if (lookahead == 'y') ADVANCE(82); + if (lookahead == 'a') ADVANCE(80); + if (lookahead == 'e') ADVANCE(81); END_STATE(); case 23: - if (lookahead == 'n') ADVANCE(83); + if (lookahead == 'h') ADVANCE(82); + if (lookahead == 'i') ADVANCE(83); + if (lookahead == 't') ADVANCE(84); END_STATE(); case 24: - if (lookahead == 'o') ADVANCE(84); + if (lookahead == 'r') ADVANCE(85); + if (lookahead == 'y') ADVANCE(86); END_STATE(); case 25: - if (lookahead == 'h') ADVANCE(85); - if (lookahead == 'i') ADVANCE(86); + if (lookahead == 'n') ADVANCE(87); END_STATE(); case 26: - if (lookahead == 'o') ADVANCE(87); + if (lookahead == 'o') ADVANCE(88); END_STATE(); case 27: - if (lookahead == 'i') ADVANCE(88); + if (lookahead == 'h') ADVANCE(89); + if (lookahead == 'i') ADVANCE(90); END_STATE(); case 28: - if (lookahead == 'F') ADVANCE(89); + if (lookahead == 'o') ADVANCE(91); END_STATE(); case 29: - if (lookahead == 'l') ADVANCE(90); + if (lookahead == 'i') ADVANCE(92); END_STATE(); case 30: - if (lookahead == 'n') ADVANCE(91); + if (lookahead == 'F') ADVANCE(93); END_STATE(); case 31: - if (lookahead == 'T') ADVANCE(92); + if (lookahead == 'I') ADVANCE(94); + if (lookahead == 'S') ADVANCE(95); END_STATE(); case 32: - if (lookahead == 'u') ADVANCE(93); + if (lookahead == 'l') ADVANCE(96); END_STATE(); case 33: - if (lookahead == 'f') ADVANCE(94); - if (lookahead == 's') ADVANCE(95); + ACCEPT_TOKEN(anon_sym_IF); END_STATE(); case 34: - if (lookahead == 'd') ADVANCE(96); + if (lookahead == 'n') ADVANCE(97); END_STATE(); case 35: - if (lookahead == 'i') ADVANCE(97); + if (lookahead == 'T') ADVANCE(98); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 's') ADVANCE(98); - if (lookahead == 'y') ADVANCE(99); + if (lookahead == 'u') ADVANCE(99); END_STATE(); case 37: - if (lookahead == 'a') ADVANCE(100); + if (lookahead == 'f') ADVANCE(100); + if (lookahead == 's') ADVANCE(101); END_STATE(); case 38: - if (lookahead == 't') ADVANCE(101); + if (lookahead == 'd') ADVANCE(102); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(102); + if (lookahead == 'i') ADVANCE(103); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_by); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 's') ADVANCE(104); + if (lookahead == 'y') ADVANCE(105); END_STATE(); case 41: - if (lookahead == 's') ADVANCE(103); + if (lookahead == 'a') ADVANCE(106); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 't') ADVANCE(107); END_STATE(); case 43: - if (lookahead == 'a') ADVANCE(105); + if (lookahead == 'e') ADVANCE(108); END_STATE(); case 44: - if (lookahead == 'm') ADVANCE(106); + ACCEPT_TOKEN(anon_sym_by); END_STATE(); case 45: - if (lookahead == 'a') ADVANCE(107); + if (lookahead == 's') ADVANCE(109); END_STATE(); case 46: - if (lookahead == '_') ADVANCE(108); - if (lookahead == 'm') ADVANCE(109); - if (lookahead == 'n') ADVANCE(110); + if (lookahead == 'e') ADVANCE(110); END_STATE(); case 47: - if (lookahead == 'd') ADVANCE(111); - if (lookahead == 'p') ADVANCE(112); + if (lookahead == 'a') ADVANCE(111); END_STATE(); case 48: - if (lookahead == 'y') ADVANCE(113); + if (lookahead == 'm') ADVANCE(112); END_STATE(); case 49: - if (lookahead == 'f') ADVANCE(114); - if (lookahead == 'l') ADVANCE(115); + if (lookahead == 'a') ADVANCE(113); END_STATE(); case 50: - if (lookahead == 'u') ADVANCE(116); + if (lookahead == '_') ADVANCE(114); + if (lookahead == 'm') ADVANCE(115); + if (lookahead == 'n') ADVANCE(116); END_STATE(); case 51: - if (lookahead == 'i') ADVANCE(117); - if (lookahead == 's') ADVANCE(118); + if (lookahead == 'd') ADVANCE(117); + if (lookahead == 'p') ADVANCE(118); END_STATE(); case 52: - if (lookahead == 'u') ADVANCE(119); + if (lookahead == 'y') ADVANCE(119); END_STATE(); case 53: - if (lookahead == 'e') ADVANCE(120); - if (lookahead == 't') ADVANCE(121); + if (lookahead == 'f') ADVANCE(120); + if (lookahead == 'l') ADVANCE(121); END_STATE(); case 54: - if (lookahead == 'n') ADVANCE(122); + if (lookahead == 'u') ADVANCE(122); END_STATE(); case 55: - if (lookahead == 'r') ADVANCE(123); + if (lookahead == 'i') ADVANCE(123); + if (lookahead == 's') ADVANCE(124); END_STATE(); case 56: - if (lookahead == 'o') ADVANCE(124); + if (lookahead == 'u') ADVANCE(125); END_STATE(); case 57: - if (lookahead == 's') ADVANCE(125); + if (lookahead == 'e') ADVANCE(126); + if (lookahead == 't') ADVANCE(127); END_STATE(); case 58: - if (lookahead == 'l') ADVANCE(126); + if (lookahead == 'n') ADVANCE(128); END_STATE(); case 59: - if (lookahead == 'o') ADVANCE(127); + if (lookahead == 'r') ADVANCE(129); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'o') ADVANCE(130); END_STATE(); case 61: - if (lookahead == 'p') ADVANCE(128); + if (lookahead == 's') ADVANCE(131); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'c') ADVANCE(129); - if (lookahead == 'l') ADVANCE(130); - if (lookahead == 't') ADVANCE(131); + if (lookahead == 'l') ADVANCE(132); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_is); + if (lookahead == 'o') ADVANCE(133); END_STATE(); case 64: - if (lookahead == 'm') ADVANCE(132); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 65: - if (lookahead == 'n') ADVANCE(133); + if (lookahead == 'p') ADVANCE(134); END_STATE(); case 66: - if (lookahead == 't') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'c') ADVANCE(135); + if (lookahead == 'l') ADVANCE(136); + if (lookahead == 't') ADVANCE(137); END_STATE(); case 67: - if (lookahead == 'm') ADVANCE(135); + ACCEPT_TOKEN(anon_sym_is); END_STATE(); case 68: - if (lookahead == 'w') ADVANCE(136); + if (lookahead == 'm') ADVANCE(138); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(137); - if (lookahead == 'g') ADVANCE(138); if (lookahead == 'n') ADVANCE(139); - if (lookahead == 't') ADVANCE(140); END_STATE(); case 70: - if (lookahead == 'j') ADVANCE(141); + if (lookahead == 't') ADVANCE(140); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(142); + if (lookahead == 'm') ADVANCE(141); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '_') ADVANCE(143); + if (lookahead == 'w') ADVANCE(142); END_STATE(); case 73: - if (lookahead == 'c') ADVANCE(144); - if (lookahead == 's') ADVANCE(145); + if (lookahead == 'e') ADVANCE(143); + if (lookahead == 'g') ADVANCE(144); + if (lookahead == 'n') ADVANCE(145); + if (lookahead == 't') ADVANCE(146); END_STATE(); case 74: - if (lookahead == 'i') ADVANCE(146); - if (lookahead == 'o') ADVANCE(147); + if (lookahead == 'j') ADVANCE(147); END_STATE(); case 75: - if (lookahead == 'b') ADVANCE(148); + if (lookahead == 'e') ADVANCE(148); END_STATE(); case 76: - if (lookahead == 'i') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '_') ADVANCE(149); END_STATE(); case 77: - if (lookahead == 'a') ADVANCE(150); - if (lookahead == 't') ADVANCE(151); + if (lookahead == 'c') ADVANCE(150); + if (lookahead == 's') ADVANCE(151); END_STATE(); case 78: - if (lookahead == 'o') ADVANCE(152); + if (lookahead == 'i') ADVANCE(152); + if (lookahead == 'o') ADVANCE(153); END_STATE(); case 79: - if (lookahead == 'g') ADVANCE(153); - if (lookahead == 'z') ADVANCE(154); + if (lookahead == 'b') ADVANCE(154); END_STATE(); case 80: - if (lookahead == 'r') ADVANCE(155); + if (lookahead == 'i') ADVANCE(155); END_STATE(); case 81: - if (lookahead == 'y') ADVANCE(156); + if (lookahead == 'a') ADVANCE(156); + if (lookahead == 't') ADVANCE(157); END_STATE(); case 82: - if (lookahead == 'p') ADVANCE(157); + if (lookahead == 'o') ADVANCE(158); END_STATE(); case 83: - if (lookahead == 'i') ADVANCE(158); - if (lookahead == 's') ADVANCE(159); + if (lookahead == 'g') ADVANCE(159); + if (lookahead == 'z') ADVANCE(160); END_STATE(); case 84: - if (lookahead == 'l') ADVANCE(160); + if (lookahead == 'r') ADVANCE(161); END_STATE(); case 85: - if (lookahead == 'i') ADVANCE(161); + if (lookahead == 'y') ADVANCE(162); END_STATE(); case 86: - if (lookahead == 't') ADVANCE(162); + if (lookahead == 'p') ADVANCE(163); END_STATE(); case 87: - if (lookahead == 'r') ADVANCE(163); + if (lookahead == 'i') ADVANCE(164); + if (lookahead == 's') ADVANCE(165); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(164); + if (lookahead == 'l') ADVANCE(166); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_DEF); + if (lookahead == 'i') ADVANCE(167); END_STATE(); case 90: - if (lookahead == 's') ADVANCE(165); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(166); + if (lookahead == 'r') ADVANCE(169); END_STATE(); case 92: - if (lookahead == 'H') ADVANCE(167); + if (lookahead == 'e') ADVANCE(170); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_DEF); END_STATE(); case 94: - if (lookahead == 'u') ADVANCE(169); + if (lookahead == 'F') ADVANCE(171); END_STATE(); case 95: - if (lookahead == 't') ADVANCE(170); + if (lookahead == 'E') ADVANCE(172); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '_') ADVANCE(171); + if (lookahead == 's') ADVANCE(173); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_api); + if (lookahead == 'e') ADVANCE(174); END_STATE(); case 98: - if (lookahead == 'e') ADVANCE(172); + if (lookahead == 'H') ADVANCE(175); END_STATE(); case 99: - if (lookahead == 'n') ADVANCE(173); + if (lookahead == 'e') ADVANCE(176); END_STATE(); case 100: - if (lookahead == 'i') ADVANCE(174); + if (lookahead == 'u') ADVANCE(177); END_STATE(); case 101: - if (lookahead == 'a') ADVANCE(175); - if (lookahead == 'o') ADVANCE(176); + if (lookahead == 't') ADVANCE(178); END_STATE(); case 102: - if (lookahead == 'a') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '_') ADVANCE(179); END_STATE(); case 103: - if (lookahead == 'e') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_api); END_STATE(); case 104: - if (lookahead == 'f') ADVANCE(179); + if (lookahead == 'e') ADVANCE(180); END_STATE(); case 105: - if (lookahead == 'r') ADVANCE(180); + if (lookahead == 'n') ADVANCE(181); END_STATE(); case 106: - if (lookahead == 'p') ADVANCE(181); + if (lookahead == 'i') ADVANCE(182); END_STATE(); case 107: - if (lookahead == 's') ADVANCE(182); + if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'o') ADVANCE(184); END_STATE(); case 108: - if (lookahead == 'a') ADVANCE(183); + if (lookahead == 'a') ADVANCE(185); END_STATE(); case 109: - if (lookahead == 'p') ADVANCE(184); + if (lookahead == 'e') ADVANCE(186); END_STATE(); case 110: - if (lookahead == 's') ADVANCE(185); - if (lookahead == 't') ADVANCE(186); + if (lookahead == 'f') ADVANCE(187); END_STATE(); case 111: - if (lookahead == 'e') ADVANCE(187); + if (lookahead == 'r') ADVANCE(188); END_STATE(); case 112: - if (lookahead == 'c') ADVANCE(188); + if (lookahead == 'p') ADVANCE(189); END_STATE(); case 113: - if (lookahead == 'p') ADVANCE(189); + if (lookahead == 's') ADVANCE(190); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_def); + if (lookahead == 'a') ADVANCE(191); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_del); - if (lookahead == 'e') ADVANCE(190); + if (lookahead == 'p') ADVANCE(192); END_STATE(); case 116: - if (lookahead == 'b') ADVANCE(191); + if (lookahead == 's') ADVANCE(193); + if (lookahead == 't') ADVANCE(194); END_STATE(); case 117: - if (lookahead == 'f') ADVANCE(192); + if (lookahead == 'e') ADVANCE(195); END_STATE(); case 118: - if (lookahead == 'e') ADVANCE(193); + if (lookahead == 'c') ADVANCE(196); END_STATE(); case 119: - if (lookahead == 'm') ADVANCE(194); + if (lookahead == 'p') ADVANCE(197); END_STATE(); case 120: - if (lookahead == 'c') ADVANCE(195); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 121: - if (lookahead == 'e') ADVANCE(196); + ACCEPT_TOKEN(anon_sym_del); + if (lookahead == 'e') ADVANCE(198); END_STATE(); case 122: - if (lookahead == 'a') ADVANCE(197); + if (lookahead == 'b') ADVANCE(199); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'f') ADVANCE(200); END_STATE(); case 124: - if (lookahead == 'm') ADVANCE(198); + if (lookahead == 'e') ADVANCE(201); END_STATE(); case 125: - if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'm') ADVANCE(202); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_gil); + if (lookahead == 'c') ADVANCE(203); END_STATE(); case 127: - if (lookahead == 'b') ADVANCE(200); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 128: - if (lookahead == 'o') ADVANCE(201); + if (lookahead == 'a') ADVANCE(205); END_STATE(); case 129: - if (lookahead == 'l') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 130: - if (lookahead == 'i') ADVANCE(203); + if (lookahead == 'm') ADVANCE(206); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_int); + if (lookahead == 'e') ADVANCE(207); END_STATE(); case 132: - if (lookahead == 'b') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_gil); END_STATE(); case 133: - if (lookahead == 'g') ADVANCE(205); + if (lookahead == 'b') ADVANCE(208); END_STATE(); case 134: - if (lookahead == 'c') ADVANCE(206); + if (lookahead == 'o') ADVANCE(209); END_STATE(); case 135: - if (lookahead == 'e') ADVANCE(207); + if (lookahead == 'l') ADVANCE(210); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 'i') ADVANCE(211); END_STATE(); case 137: - if (lookahead == 'x') ADVANCE(208); + ACCEPT_TOKEN(anon_sym_int); END_STATE(); case 138: - if (lookahead == 'i') ADVANCE(209); + if (lookahead == 'b') ADVANCE(212); END_STATE(); case 139: - if (lookahead == 'l') ADVANCE(210); + if (lookahead == 'g') ADVANCE(213); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '_') ADVANCE(211); + if (lookahead == 'c') ADVANCE(214); END_STATE(); case 141: - if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'e') ADVANCE(215); END_STATE(); case 142: - if (lookahead == 'r') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 143: - if (lookahead == 'e') ADVANCE(214); + if (lookahead == 'x') ADVANCE(216); END_STATE(); case 144: - if (lookahead == 'k') ADVANCE(215); + if (lookahead == 'i') ADVANCE(217); END_STATE(); case 145: - if (lookahead == 's') ADVANCE(216); + if (lookahead == 'l') ADVANCE(218); END_STATE(); case 146: - if (lookahead == 'n') ADVANCE(217); + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == '_') ADVANCE(219); END_STATE(); case 147: - if (lookahead == 'p') ADVANCE(218); + if (lookahead == 'e') ADVANCE(220); END_STATE(); case 148: - if (lookahead == 'l') ADVANCE(219); + if (lookahead == 'r') ADVANCE(221); END_STATE(); case 149: - if (lookahead == 's') ADVANCE(220); + if (lookahead == 'e') ADVANCE(222); END_STATE(); case 150: - if (lookahead == 'd') ADVANCE(221); + if (lookahead == 'k') ADVANCE(223); END_STATE(); case 151: - if (lookahead == 'u') ADVANCE(222); + if (lookahead == 's') ADVANCE(224); END_STATE(); case 152: - if (lookahead == 'r') ADVANCE(223); + if (lookahead == 'n') ADVANCE(225); END_STATE(); case 153: - if (lookahead == 'n') ADVANCE(224); + if (lookahead == 'p') ADVANCE(226); END_STATE(); case 154: - if (lookahead == 'e') ADVANCE(225); + if (lookahead == 'l') ADVANCE(227); END_STATE(); case 155: - if (lookahead == 'u') ADVANCE(226); + if (lookahead == 's') ADVANCE(228); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'd') ADVANCE(229); END_STATE(); case 157: - if (lookahead == 'e') ADVANCE(227); + if (lookahead == 'u') ADVANCE(230); END_STATE(); case 158: - if (lookahead == 'o') ADVANCE(228); + if (lookahead == 'r') ADVANCE(231); END_STATE(); case 159: - if (lookahead == 'i') ADVANCE(229); + if (lookahead == 'n') ADVANCE(232); END_STATE(); case 160: - if (lookahead == 'a') ADVANCE(230); + if (lookahead == 'e') ADVANCE(233); END_STATE(); case 161: - if (lookahead == 'l') ADVANCE(231); + if (lookahead == 'u') ADVANCE(234); END_STATE(); case 162: - if (lookahead == 'h') ADVANCE(232); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '_') ADVANCE(233); + if (lookahead == 'e') ADVANCE(235); END_STATE(); case 164: - if (lookahead == 'l') ADVANCE(234); + if (lookahead == 'o') ADVANCE(236); END_STATE(); case 165: - if (lookahead == 'e') ADVANCE(235); + if (lookahead == 'i') ADVANCE(237); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_None); + if (lookahead == 'a') ADVANCE(238); END_STATE(); case 167: - if (lookahead == 'O') ADVANCE(236); + if (lookahead == 'l') ADVANCE(239); END_STATE(); case 168: - ACCEPT_TOKEN(sym_true); + if (lookahead == 'h') ADVANCE(240); END_STATE(); case 169: - if (lookahead == 't') ADVANCE(237); + ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '_') ADVANCE(241); END_STATE(); case 170: - if (lookahead == 'd') ADVANCE(238); + if (lookahead == 'l') ADVANCE(242); END_STATE(); case 171: - if (lookahead == 'e') ADVANCE(239); + ACCEPT_TOKEN(anon_sym_ELIF); END_STATE(); case 172: - if (lookahead == 'r') ADVANCE(240); + ACCEPT_TOKEN(anon_sym_ELSE); END_STATE(); case 173: - if (lookahead == 'c') ADVANCE(241); + if (lookahead == 'e') ADVANCE(243); END_STATE(); case 174: - if (lookahead == 't') ADVANCE(242); + ACCEPT_TOKEN(anon_sym_None); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(243); + if (lookahead == 'O') ADVANCE(244); END_STATE(); case 176: - if (lookahead == 'r') ADVANCE(244); + ACCEPT_TOKEN(sym_true); END_STATE(); case 177: - if (lookahead == 'k') ADVANCE(245); + if (lookahead == 't') ADVANCE(245); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'd') ADVANCE(246); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_cdef); + if (lookahead == 'e') ADVANCE(247); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_char); + if (lookahead == 'r') ADVANCE(248); END_STATE(); case 181: - if (lookahead == 'o') ADVANCE(246); + if (lookahead == 'c') ADVANCE(249); END_STATE(); case 182: - if (lookahead == 's') ADVANCE(247); + if (lookahead == 't') ADVANCE(250); END_STATE(); case 183: - if (lookahead == 'w') ADVANCE(248); + if (lookahead == 'n') ADVANCE(251); END_STATE(); case 184: - if (lookahead == 'l') ADVANCE(249); + if (lookahead == 'r') ADVANCE(252); END_STATE(); case 185: - if (lookahead == 't') ADVANCE(250); + if (lookahead == 'k') ADVANCE(253); END_STATE(); case 186: - if (lookahead == 'i') ADVANCE(251); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 187: - if (lookahead == 'f') ADVANCE(252); + ACCEPT_TOKEN(anon_sym_cdef); END_STATE(); case 188: - if (lookahead == 'l') ADVANCE(253); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 189: - if (lookahead == 'e') ADVANCE(254); + if (lookahead == 'o') ADVANCE(254); END_STATE(); case 190: - if (lookahead == 't') ADVANCE(255); + if (lookahead == 's') ADVANCE(255); END_STATE(); case 191: - if (lookahead == 'l') ADVANCE(256); + if (lookahead == 'w') ADVANCE(256); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == 'l') ADVANCE(257); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 't') ADVANCE(258); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'i') ADVANCE(259); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_exec); + if (lookahead == 'f') ADVANCE(260); END_STATE(); case 196: - if (lookahead == 'r') ADVANCE(257); + if (lookahead == 'l') ADVANCE(261); END_STATE(); case 197: - if (lookahead == 'l') ADVANCE(258); + if (lookahead == 'e') ADVANCE(262); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_from); + if (lookahead == 't') ADVANCE(263); END_STATE(); case 199: - if (lookahead == 'd') ADVANCE(259); + if (lookahead == 'l') ADVANCE(264); END_STATE(); case 200: - if (lookahead == 'a') ADVANCE(260); + ACCEPT_TOKEN(anon_sym_elif); END_STATE(); case 201: - if (lookahead == 'r') ADVANCE(261); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 202: - if (lookahead == 'u') ADVANCE(262); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 203: - if (lookahead == 'n') ADVANCE(263); + ACCEPT_TOKEN(anon_sym_exec); END_STATE(); case 204: - if (lookahead == 'd') ADVANCE(264); + if (lookahead == 'r') ADVANCE(265); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == 'l') ADVANCE(266); END_STATE(); case 206: - if (lookahead == 'h') ADVANCE(265); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 207: - if (lookahead == 's') ADVANCE(266); + if (lookahead == 'd') ADVANCE(267); END_STATE(); case 208: - if (lookahead == 'c') ADVANCE(267); + if (lookahead == 'a') ADVANCE(268); END_STATE(); case 209: - if (lookahead == 'l') ADVANCE(268); + if (lookahead == 'r') ADVANCE(269); END_STATE(); case 210: - if (lookahead == 'o') ADVANCE(269); + if (lookahead == 'u') ADVANCE(270); END_STATE(); case 211: - if (lookahead == 'e') ADVANCE(270); + if (lookahead == 'n') ADVANCE(271); END_STATE(); case 212: - if (lookahead == 'c') ADVANCE(271); + if (lookahead == 'd') ADVANCE(272); END_STATE(); case 213: - if (lookahead == 'a') ADVANCE(272); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 214: - if (lookahead == 'q') ADVANCE(273); + if (lookahead == 'h') ADVANCE(273); END_STATE(); case 215: - if (lookahead == 'e') ADVANCE(274); + if (lookahead == 's') ADVANCE(274); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_pass); + if (lookahead == 'c') ADVANCE(275); END_STATE(); case 217: - if (lookahead == 't') ADVANCE(275); + if (lookahead == 'l') ADVANCE(276); END_STATE(); case 218: - if (lookahead == 'e') ADVANCE(276); + if (lookahead == 'o') ADVANCE(277); END_STATE(); case 219: - if (lookahead == 'i') ADVANCE(277); + if (lookahead == 'e') ADVANCE(278); END_STATE(); case 220: - if (lookahead == 'e') ADVANCE(278); + if (lookahead == 'c') ADVANCE(279); END_STATE(); case 221: - if (lookahead == 'o') ADVANCE(279); + if (lookahead == 'a') ADVANCE(280); END_STATE(); case 222: - if (lookahead == 'r') ADVANCE(280); + if (lookahead == 'q') ADVANCE(281); END_STATE(); case 223: - if (lookahead == 't') ADVANCE(281); + if (lookahead == 'e') ADVANCE(282); END_STATE(); case 224: - if (lookahead == 'e') ADVANCE(282); + ACCEPT_TOKEN(anon_sym_pass); END_STATE(); case 225: - if (lookahead == 'o') ADVANCE(283); + if (lookahead == 't') ADVANCE(283); END_STATE(); case 226: - if (lookahead == 'c') ADVANCE(284); + if (lookahead == 'e') ADVANCE(284); END_STATE(); case 227: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'i') ADVANCE(285); END_STATE(); case 228: - if (lookahead == 'n') ADVANCE(285); + if (lookahead == 'e') ADVANCE(286); END_STATE(); case 229: - if (lookahead == 'g') ADVANCE(286); + if (lookahead == 'o') ADVANCE(287); END_STATE(); case 230: - if (lookahead == 't') ADVANCE(287); + if (lookahead == 'r') ADVANCE(288); END_STATE(); case 231: - if (lookahead == 'e') ADVANCE(288); + if (lookahead == 't') ADVANCE(289); END_STATE(); case 232: - ACCEPT_TOKEN(anon_sym_with); + if (lookahead == 'e') ADVANCE(290); END_STATE(); case 233: - if (lookahead == 'e') ADVANCE(289); + if (lookahead == 'o') ADVANCE(291); END_STATE(); case 234: - if (lookahead == 'd') ADVANCE(290); + if (lookahead == 'c') ADVANCE(292); END_STATE(); case 235: - ACCEPT_TOKEN(sym_false); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 236: - if (lookahead == 'N') ADVANCE(291); + if (lookahead == 'n') ADVANCE(293); END_STATE(); case 237: - if (lookahead == 'u') ADVANCE(292); + if (lookahead == 'g') ADVANCE(294); END_STATE(); case 238: - if (lookahead == 'c') ADVANCE(293); + if (lookahead == 't') ADVANCE(295); END_STATE(); case 239: - if (lookahead == 'q') ADVANCE(294); + if (lookahead == 'e') ADVANCE(296); END_STATE(); case 240: - if (lookahead == 't') ADVANCE(295); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 241: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'e') ADVANCE(297); END_STATE(); case 242: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'd') ADVANCE(298); END_STATE(); case 243: - if (lookahead == 'd') ADVANCE(296); + ACCEPT_TOKEN(sym_false); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym_bitor); + if (lookahead == 'N') ADVANCE(299); END_STATE(); case 245: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'u') ADVANCE(300); END_STATE(); case 246: - if (lookahead == 'r') ADVANCE(297); + if (lookahead == 'c') ADVANCE(301); END_STATE(); case 247: - ACCEPT_TOKEN(anon_sym_class); + if (lookahead == 'q') ADVANCE(302); END_STATE(); case 248: - if (lookahead == 'a') ADVANCE(298); + if (lookahead == 't') ADVANCE(303); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_compl); - if (lookahead == 'e') ADVANCE(299); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 251: - if (lookahead == 'n') ADVANCE(300); + if (lookahead == 'd') ADVANCE(304); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_cpdef); + ACCEPT_TOKEN(anon_sym_bitor); END_STATE(); case 253: - if (lookahead == 'a') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 254: - if (lookahead == 'd') ADVANCE(302); + if (lookahead == 'r') ADVANCE(305); END_STATE(); case 255: - if (lookahead == 'e') ADVANCE(303); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 256: - if (lookahead == 'e') ADVANCE(304); + if (lookahead == 'a') ADVANCE(306); END_STATE(); case 257: - if (lookahead == 'n') ADVANCE(305); + ACCEPT_TOKEN(anon_sym_compl); + if (lookahead == 'e') ADVANCE(307); END_STATE(); case 258: - if (lookahead == 'l') ADVANCE(306); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 259: - ACCEPT_TOKEN(anon_sym_fused); + if (lookahead == 'n') ADVANCE(308); END_STATE(); case 260: - if (lookahead == 'l') ADVANCE(307); + ACCEPT_TOKEN(anon_sym_cpdef); END_STATE(); case 261: - if (lookahead == 't') ADVANCE(308); + if (lookahead == 'a') ADVANCE(309); END_STATE(); case 262: - if (lookahead == 'd') ADVANCE(309); + if (lookahead == 'd') ADVANCE(310); END_STATE(); case 263: - if (lookahead == 'e') ADVANCE(310); + if (lookahead == 'e') ADVANCE(311); END_STATE(); case 264: - if (lookahead == 'a') ADVANCE(311); + if (lookahead == 'e') ADVANCE(312); END_STATE(); case 265: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 'n') ADVANCE(313); END_STATE(); case 266: - if (lookahead == 'p') ADVANCE(312); + if (lookahead == 'l') ADVANCE(314); END_STATE(); case 267: - if (lookahead == 'e') ADVANCE(313); + ACCEPT_TOKEN(anon_sym_fused); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_nogil); + if (lookahead == 'l') ADVANCE(315); END_STATE(); case 269: - if (lookahead == 'c') ADVANCE(314); + if (lookahead == 't') ADVANCE(316); END_STATE(); case 270: - if (lookahead == 'q') ADVANCE(315); + if (lookahead == 'd') ADVANCE(317); END_STATE(); case 271: - if (lookahead == 't') ADVANCE(316); + if (lookahead == 'e') ADVANCE(318); END_STATE(); case 272: - if (lookahead == 't') ADVANCE(317); + if (lookahead == 'a') ADVANCE(319); END_STATE(); case 273: - ACCEPT_TOKEN(anon_sym_or_eq); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 274: - if (lookahead == 'd') ADVANCE(318); + if (lookahead == 'p') ADVANCE(320); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_print); + if (lookahead == 'e') ADVANCE(321); END_STATE(); case 276: - if (lookahead == 'r') ADVANCE(319); + ACCEPT_TOKEN(anon_sym_nogil); END_STATE(); case 277: - if (lookahead == 'c') ADVANCE(320); + if (lookahead == 'c') ADVANCE(322); END_STATE(); case 278: - ACCEPT_TOKEN(anon_sym_raise); + if (lookahead == 'q') ADVANCE(323); END_STATE(); case 279: - if (lookahead == 'n') ADVANCE(321); + if (lookahead == 't') ADVANCE(324); END_STATE(); case 280: - if (lookahead == 'n') ADVANCE(322); + if (lookahead == 't') ADVANCE(325); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym_short); + ACCEPT_TOKEN(anon_sym_or_eq); END_STATE(); case 282: - if (lookahead == 'd') ADVANCE(323); + if (lookahead == 'd') ADVANCE(326); END_STATE(); case 283: - if (lookahead == 'f') ADVANCE(324); + ACCEPT_TOKEN(anon_sym_print); END_STATE(); case 284: - if (lookahead == 't') ADVANCE(325); + if (lookahead == 'r') ADVANCE(327); END_STATE(); case 285: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'c') ADVANCE(328); END_STATE(); case 286: - if (lookahead == 'n') ADVANCE(326); + ACCEPT_TOKEN(anon_sym_raise); END_STATE(); case 287: - if (lookahead == 'i') ADVANCE(327); + if (lookahead == 'n') ADVANCE(329); END_STATE(); case 288: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'n') ADVANCE(330); END_STATE(); case 289: - if (lookahead == 'q') ADVANCE(328); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym_yield); + if (lookahead == 'd') ADVANCE(331); END_STATE(); case 291: - ACCEPT_TOKEN(anon_sym_PYTHON); + if (lookahead == 'f') ADVANCE(332); END_STATE(); case 292: - if (lookahead == 'r') ADVANCE(329); + if (lookahead == 't') ADVANCE(333); END_STATE(); case 293: - if (lookahead == 'a') ADVANCE(330); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 294: - ACCEPT_TOKEN(anon_sym_and_eq); + if (lookahead == 'n') ADVANCE(334); END_STATE(); case 295: - ACCEPT_TOKEN(anon_sym_assert); + if (lookahead == 'i') ADVANCE(335); END_STATE(); case 296: - ACCEPT_TOKEN(anon_sym_bitand); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 297: - if (lookahead == 't') ADVANCE(331); + if (lookahead == 'q') ADVANCE(336); END_STATE(); case 298: - if (lookahead == 'i') ADVANCE(332); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 299: - if (lookahead == 'x') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_PYTHON); END_STATE(); case 300: - if (lookahead == 'u') ADVANCE(334); + if (lookahead == 'r') ADVANCE(337); END_STATE(); case 301: - if (lookahead == 's') ADVANCE(335); + if (lookahead == 'a') ADVANCE(338); END_STATE(); case 302: - if (lookahead == 'e') ADVANCE(336); + ACCEPT_TOKEN(anon_sym_and_eq); END_STATE(); case 303: - ACCEPT_TOKEN(anon_sym_delete); + ACCEPT_TOKEN(anon_sym_assert); END_STATE(); case 304: - ACCEPT_TOKEN(anon_sym_double); + ACCEPT_TOKEN(anon_sym_bitand); END_STATE(); case 305: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 't') ADVANCE(339); END_STATE(); case 306: - if (lookahead == 'y') ADVANCE(337); + if (lookahead == 'i') ADVANCE(340); END_STATE(); case 307: - ACCEPT_TOKEN(anon_sym_global); + if (lookahead == 'x') ADVANCE(341); END_STATE(); case 308: - ACCEPT_TOKEN(anon_sym_import); + if (lookahead == 'u') ADVANCE(342); END_STATE(); case 309: - if (lookahead == 'e') ADVANCE(338); + if (lookahead == 's') ADVANCE(343); END_STATE(); case 310: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 'e') ADVANCE(344); END_STATE(); case 311: - ACCEPT_TOKEN(anon_sym_lambda); + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 312: - if (lookahead == 'a') ADVANCE(339); + ACCEPT_TOKEN(anon_sym_double); END_STATE(); case 313: - if (lookahead == 'p') ADVANCE(340); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 314: - if (lookahead == 'a') ADVANCE(341); + if (lookahead == 'y') ADVANCE(345); END_STATE(); case 315: - ACCEPT_TOKEN(anon_sym_not_eq); + ACCEPT_TOKEN(anon_sym_global); END_STATE(); case 316: - ACCEPT_TOKEN(anon_sym_object); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 317: - if (lookahead == 'o') ADVANCE(342); + if (lookahead == 'e') ADVANCE(346); END_STATE(); case 318: - ACCEPT_TOKEN(anon_sym_packed); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 319: - if (lookahead == 't') ADVANCE(343); + ACCEPT_TOKEN(anon_sym_lambda); END_STATE(); case 320: - ACCEPT_TOKEN(anon_sym_public); + if (lookahead == 'a') ADVANCE(347); END_STATE(); case 321: - if (lookahead == 'l') ADVANCE(344); + if (lookahead == 'p') ADVANCE(348); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'a') ADVANCE(349); END_STATE(); case 323: - ACCEPT_TOKEN(anon_sym_signed); + ACCEPT_TOKEN(anon_sym_not_eq); END_STATE(); case 324: - ACCEPT_TOKEN(anon_sym_sizeof); + ACCEPT_TOKEN(anon_sym_object); END_STATE(); case 325: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'o') ADVANCE(350); END_STATE(); case 326: - if (lookahead == 'e') ADVANCE(345); + ACCEPT_TOKEN(anon_sym_packed); END_STATE(); case 327: - if (lookahead == 'l') ADVANCE(346); + if (lookahead == 't') ADVANCE(351); END_STATE(); case 328: - ACCEPT_TOKEN(anon_sym_xor_eq); + ACCEPT_TOKEN(anon_sym_public); END_STATE(); case 329: - if (lookahead == 'e') ADVANCE(347); + if (lookahead == 'l') ADVANCE(352); END_STATE(); case 330: - if (lookahead == 'l') ADVANCE(348); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_cimport); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 332: - if (lookahead == 't') ADVANCE(349); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 333: - ACCEPT_TOKEN(anon_sym_complex); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 334: - if (lookahead == 'e') ADVANCE(350); + if (lookahead == 'e') ADVANCE(353); END_STATE(); case 335: - if (lookahead == 's') ADVANCE(351); + if (lookahead == 'l') ADVANCE(354); END_STATE(); case 336: - if (lookahead == 'f') ADVANCE(352); + ACCEPT_TOKEN(anon_sym_xor_eq); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == 'e') ADVANCE(355); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_include); + if (lookahead == 'l') ADVANCE(356); END_STATE(); case 339: - if (lookahead == 'c') ADVANCE(353); + ACCEPT_TOKEN(anon_sym_cimport); END_STATE(); case 340: - if (lookahead == 't') ADVANCE(354); + if (lookahead == 't') ADVANCE(357); END_STATE(); case 341: - if (lookahead == 'l') ADVANCE(355); + ACCEPT_TOKEN(anon_sym_complex); END_STATE(); case 342: - if (lookahead == 'r') ADVANCE(356); + if (lookahead == 'e') ADVANCE(358); END_STATE(); case 343: - if (lookahead == 'y') ADVANCE(357); + if (lookahead == 's') ADVANCE(359); END_STATE(); case 344: - if (lookahead == 'y') ADVANCE(358); + if (lookahead == 'f') ADVANCE(360); END_STATE(); case 345: - if (lookahead == 'd') ADVANCE(359); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 346: - if (lookahead == 'e') ADVANCE(360); + ACCEPT_TOKEN(anon_sym_include); END_STATE(); case 347: - if (lookahead == '_') ADVANCE(361); + if (lookahead == 'c') ADVANCE(361); END_STATE(); case 348: - if (lookahead == 'l') ADVANCE(362); + if (lookahead == 't') ADVANCE(362); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_co_await); + if (lookahead == 'l') ADVANCE(363); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'r') ADVANCE(364); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_cppclass); + if (lookahead == 'y') ADVANCE(365); END_STATE(); case 352: - ACCEPT_TOKEN(anon_sym_ctypedef); + if (lookahead == 'y') ADVANCE(366); END_STATE(); case 353: - if (lookahead == 'e') ADVANCE(363); + if (lookahead == 'd') ADVANCE(367); END_STATE(); case 354: - ACCEPT_TOKEN(anon_sym_noexcept); + if (lookahead == 'e') ADVANCE(368); END_STATE(); case 355: - ACCEPT_TOKEN(anon_sym_nonlocal); + if (lookahead == '_') ADVANCE(369); END_STATE(); case 356: - ACCEPT_TOKEN(anon_sym_operator); + if (lookahead == 'l') ADVANCE(370); END_STATE(); case 357: - ACCEPT_TOKEN(anon_sym_property); + ACCEPT_TOKEN(anon_sym_co_await); END_STATE(); case 358: - ACCEPT_TOKEN(anon_sym_readonly); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 359: - ACCEPT_TOKEN(anon_sym_unsigned); + ACCEPT_TOKEN(anon_sym_cppclass); END_STATE(); case 360: - ACCEPT_TOKEN(anon_sym_volatile); + ACCEPT_TOKEN(anon_sym_ctypedef); END_STATE(); case 361: - if (lookahead == '_') ADVANCE(364); + if (lookahead == 'e') ADVANCE(371); END_STATE(); case 362: - ACCEPT_TOKEN(anon_sym___stdcall); + ACCEPT_TOKEN(anon_sym_noexcept); END_STATE(); case 363: - ACCEPT_TOKEN(anon_sym_namespace); + ACCEPT_TOKEN(anon_sym_nonlocal); END_STATE(); case 364: + ACCEPT_TOKEN(anon_sym_operator); + END_STATE(); + case 365: + ACCEPT_TOKEN(anon_sym_property); + END_STATE(); + case 366: + ACCEPT_TOKEN(anon_sym_readonly); + END_STATE(); + case 367: + ACCEPT_TOKEN(anon_sym_unsigned); + END_STATE(); + case 368: + ACCEPT_TOKEN(anon_sym_volatile); + END_STATE(); + case 369: + if (lookahead == '_') ADVANCE(372); + END_STATE(); + case 370: + ACCEPT_TOKEN(anon_sym___stdcall); + END_STATE(); + case 371: + ACCEPT_TOKEN(anon_sym_namespace); + END_STATE(); + case 372: ACCEPT_TOKEN(anon_sym___future__); END_STATE(); default: @@ -13526,23 +13652,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [205] = {.lex_state = 66, .external_lex_state = 3}, [206] = {.lex_state = 66, .external_lex_state = 3}, [207] = {.lex_state = 66, .external_lex_state = 3}, - [208] = {.lex_state = 66, .external_lex_state = 2}, - [209] = {.lex_state = 66, .external_lex_state = 2}, - [210] = {.lex_state = 66, .external_lex_state = 2}, + [208] = {.lex_state = 66, .external_lex_state = 3}, + [209] = {.lex_state = 66, .external_lex_state = 3}, + [210] = {.lex_state = 66, .external_lex_state = 3}, [211] = {.lex_state = 66, .external_lex_state = 3}, [212] = {.lex_state = 66, .external_lex_state = 2}, - [213] = {.lex_state = 66, .external_lex_state = 3}, - [214] = {.lex_state = 66, .external_lex_state = 3}, + [213] = {.lex_state = 66, .external_lex_state = 2}, + [214] = {.lex_state = 66, .external_lex_state = 2}, [215] = {.lex_state = 66, .external_lex_state = 3}, - [216] = {.lex_state = 66, .external_lex_state = 3}, + [216] = {.lex_state = 66, .external_lex_state = 2}, [217] = {.lex_state = 66, .external_lex_state = 3}, [218] = {.lex_state = 66, .external_lex_state = 3}, - [219] = {.lex_state = 66, .external_lex_state = 4}, - [220] = {.lex_state = 66, .external_lex_state = 4}, - [221] = {.lex_state = 66, .external_lex_state = 4}, - [222] = {.lex_state = 66, .external_lex_state = 4}, - [223] = {.lex_state = 66, .external_lex_state = 4}, - [224] = {.lex_state = 66, .external_lex_state = 4}, + [219] = {.lex_state = 66, .external_lex_state = 3}, + [220] = {.lex_state = 66, .external_lex_state = 3}, + [221] = {.lex_state = 66, .external_lex_state = 3}, + [222] = {.lex_state = 66, .external_lex_state = 3}, + [223] = {.lex_state = 66, .external_lex_state = 3}, + [224] = {.lex_state = 66, .external_lex_state = 3}, [225] = {.lex_state = 66, .external_lex_state = 4}, [226] = {.lex_state = 66, .external_lex_state = 4}, [227] = {.lex_state = 66, .external_lex_state = 4}, @@ -13555,20 +13681,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [234] = {.lex_state = 66, .external_lex_state = 4}, [235] = {.lex_state = 66, .external_lex_state = 4}, [236] = {.lex_state = 66, .external_lex_state = 4}, - [237] = {.lex_state = 5, .external_lex_state = 4}, - [238] = {.lex_state = 5, .external_lex_state = 4}, - [239] = {.lex_state = 5, .external_lex_state = 4}, - [240] = {.lex_state = 5, .external_lex_state = 4}, - [241] = {.lex_state = 5, .external_lex_state = 4}, - [242] = {.lex_state = 5, .external_lex_state = 4}, + [237] = {.lex_state = 66, .external_lex_state = 4}, + [238] = {.lex_state = 66, .external_lex_state = 4}, + [239] = {.lex_state = 66, .external_lex_state = 4}, + [240] = {.lex_state = 66, .external_lex_state = 4}, + [241] = {.lex_state = 66, .external_lex_state = 4}, + [242] = {.lex_state = 66, .external_lex_state = 4}, [243] = {.lex_state = 5, .external_lex_state = 4}, [244] = {.lex_state = 5, .external_lex_state = 4}, - [245] = {.lex_state = 66, .external_lex_state = 4}, - [246] = {.lex_state = 66, .external_lex_state = 4}, - [247] = {.lex_state = 66, .external_lex_state = 4}, - [248] = {.lex_state = 66, .external_lex_state = 4}, - [249] = {.lex_state = 66, .external_lex_state = 4}, - [250] = {.lex_state = 66, .external_lex_state = 4}, + [245] = {.lex_state = 5, .external_lex_state = 4}, + [246] = {.lex_state = 5, .external_lex_state = 4}, + [247] = {.lex_state = 5, .external_lex_state = 4}, + [248] = {.lex_state = 5, .external_lex_state = 4}, + [249] = {.lex_state = 5, .external_lex_state = 4}, + [250] = {.lex_state = 5, .external_lex_state = 4}, [251] = {.lex_state = 66, .external_lex_state = 4}, [252] = {.lex_state = 66, .external_lex_state = 4}, [253] = {.lex_state = 66, .external_lex_state = 4}, @@ -13649,7 +13775,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [328] = {.lex_state = 66, .external_lex_state = 4}, [329] = {.lex_state = 66, .external_lex_state = 4}, [330] = {.lex_state = 66, .external_lex_state = 4}, - [331] = {.lex_state = 6, .external_lex_state = 5}, + [331] = {.lex_state = 66, .external_lex_state = 4}, [332] = {.lex_state = 66, .external_lex_state = 4}, [333] = {.lex_state = 66, .external_lex_state = 4}, [334] = {.lex_state = 66, .external_lex_state = 4}, @@ -13664,7 +13790,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [343] = {.lex_state = 66, .external_lex_state = 4}, [344] = {.lex_state = 66, .external_lex_state = 4}, [345] = {.lex_state = 66, .external_lex_state = 4}, - [346] = {.lex_state = 66, .external_lex_state = 4}, + [346] = {.lex_state = 6, .external_lex_state = 5}, [347] = {.lex_state = 66, .external_lex_state = 4}, [348] = {.lex_state = 66, .external_lex_state = 4}, [349] = {.lex_state = 66, .external_lex_state = 4}, @@ -13756,49 +13882,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [435] = {.lex_state = 66, .external_lex_state = 4}, [436] = {.lex_state = 66, .external_lex_state = 4}, [437] = {.lex_state = 66, .external_lex_state = 4}, - [438] = {.lex_state = 6, .external_lex_state = 5}, + [438] = {.lex_state = 66, .external_lex_state = 4}, [439] = {.lex_state = 66, .external_lex_state = 4}, [440] = {.lex_state = 66, .external_lex_state = 4}, - [441] = {.lex_state = 6, .external_lex_state = 5}, - [442] = {.lex_state = 6, .external_lex_state = 5}, - [443] = {.lex_state = 66, .external_lex_state = 5}, - [444] = {.lex_state = 66, .external_lex_state = 5}, - [445] = {.lex_state = 66, .external_lex_state = 5}, - [446] = {.lex_state = 66, .external_lex_state = 5}, - [447] = {.lex_state = 66, .external_lex_state = 5}, - [448] = {.lex_state = 66, .external_lex_state = 5}, - [449] = {.lex_state = 66, .external_lex_state = 5}, - [450] = {.lex_state = 66, .external_lex_state = 5}, - [451] = {.lex_state = 66, .external_lex_state = 5}, - [452] = {.lex_state = 66, .external_lex_state = 5}, - [453] = {.lex_state = 66, .external_lex_state = 5}, - [454] = {.lex_state = 66, .external_lex_state = 5}, + [441] = {.lex_state = 66, .external_lex_state = 4}, + [442] = {.lex_state = 66, .external_lex_state = 4}, + [443] = {.lex_state = 66, .external_lex_state = 4}, + [444] = {.lex_state = 66, .external_lex_state = 4}, + [445] = {.lex_state = 66, .external_lex_state = 4}, + [446] = {.lex_state = 66, .external_lex_state = 4}, + [447] = {.lex_state = 66, .external_lex_state = 4}, + [448] = {.lex_state = 66, .external_lex_state = 4}, + [449] = {.lex_state = 66, .external_lex_state = 4}, + [450] = {.lex_state = 6, .external_lex_state = 5}, + [451] = {.lex_state = 66, .external_lex_state = 4}, + [452] = {.lex_state = 66, .external_lex_state = 4}, + [453] = {.lex_state = 6, .external_lex_state = 5}, + [454] = {.lex_state = 6, .external_lex_state = 5}, [455] = {.lex_state = 66, .external_lex_state = 5}, [456] = {.lex_state = 66, .external_lex_state = 5}, [457] = {.lex_state = 66, .external_lex_state = 5}, [458] = {.lex_state = 66, .external_lex_state = 5}, - [459] = {.lex_state = 66, .external_lex_state = 2}, - [460] = {.lex_state = 6, .external_lex_state = 5}, - [461] = {.lex_state = 6, .external_lex_state = 5}, - [462] = {.lex_state = 22, .external_lex_state = 5}, - [463] = {.lex_state = 66, .external_lex_state = 6}, - [464] = {.lex_state = 66, .external_lex_state = 6}, - [465] = {.lex_state = 66, .external_lex_state = 6}, - [466] = {.lex_state = 5, .external_lex_state = 6}, - [467] = {.lex_state = 5, .external_lex_state = 6}, - [468] = {.lex_state = 5, .external_lex_state = 6}, - [469] = {.lex_state = 5, .external_lex_state = 6}, - [470] = {.lex_state = 5, .external_lex_state = 6}, - [471] = {.lex_state = 5, .external_lex_state = 6}, - [472] = {.lex_state = 5, .external_lex_state = 6}, - [473] = {.lex_state = 5, .external_lex_state = 6}, - [474] = {.lex_state = 5, .external_lex_state = 6}, - [475] = {.lex_state = 5, .external_lex_state = 6}, - [476] = {.lex_state = 5, .external_lex_state = 6}, - [477] = {.lex_state = 5, .external_lex_state = 6}, + [459] = {.lex_state = 66, .external_lex_state = 5}, + [460] = {.lex_state = 66, .external_lex_state = 5}, + [461] = {.lex_state = 66, .external_lex_state = 5}, + [462] = {.lex_state = 66, .external_lex_state = 5}, + [463] = {.lex_state = 66, .external_lex_state = 5}, + [464] = {.lex_state = 66, .external_lex_state = 5}, + [465] = {.lex_state = 66, .external_lex_state = 5}, + [466] = {.lex_state = 66, .external_lex_state = 5}, + [467] = {.lex_state = 66, .external_lex_state = 5}, + [468] = {.lex_state = 66, .external_lex_state = 5}, + [469] = {.lex_state = 66, .external_lex_state = 5}, + [470] = {.lex_state = 66, .external_lex_state = 5}, + [471] = {.lex_state = 66, .external_lex_state = 2}, + [472] = {.lex_state = 6, .external_lex_state = 5}, + [473] = {.lex_state = 6, .external_lex_state = 5}, + [474] = {.lex_state = 22, .external_lex_state = 5}, + [475] = {.lex_state = 66, .external_lex_state = 6}, + [476] = {.lex_state = 66, .external_lex_state = 6}, + [477] = {.lex_state = 66, .external_lex_state = 6}, [478] = {.lex_state = 5, .external_lex_state = 6}, - [479] = {.lex_state = 5, .external_lex_state = 6}, - [480] = {.lex_state = 5, .external_lex_state = 6}, + [479] = {.lex_state = 66, .external_lex_state = 3}, + [480] = {.lex_state = 66, .external_lex_state = 3}, [481] = {.lex_state = 5, .external_lex_state = 6}, [482] = {.lex_state = 5, .external_lex_state = 6}, [483] = {.lex_state = 5, .external_lex_state = 6}, @@ -13807,40 +13933,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [486] = {.lex_state = 5, .external_lex_state = 6}, [487] = {.lex_state = 5, .external_lex_state = 6}, [488] = {.lex_state = 5, .external_lex_state = 6}, - [489] = {.lex_state = 5, .external_lex_state = 6}, - [490] = {.lex_state = 5, .external_lex_state = 6}, + [489] = {.lex_state = 66, .external_lex_state = 3}, + [490] = {.lex_state = 66, .external_lex_state = 3}, [491] = {.lex_state = 5, .external_lex_state = 6}, [492] = {.lex_state = 5, .external_lex_state = 6}, [493] = {.lex_state = 5, .external_lex_state = 6}, [494] = {.lex_state = 5, .external_lex_state = 6}, [495] = {.lex_state = 5, .external_lex_state = 6}, [496] = {.lex_state = 5, .external_lex_state = 6}, - [497] = {.lex_state = 66, .external_lex_state = 6}, - [498] = {.lex_state = 66, .external_lex_state = 6}, - [499] = {.lex_state = 66, .external_lex_state = 6}, - [500] = {.lex_state = 66, .external_lex_state = 3}, - [501] = {.lex_state = 66, .external_lex_state = 3}, - [502] = {.lex_state = 7, .external_lex_state = 5}, - [503] = {.lex_state = 66, .external_lex_state = 3}, - [504] = {.lex_state = 66, .external_lex_state = 3}, - [505] = {.lex_state = 66, .external_lex_state = 3}, - [506] = {.lex_state = 8, .external_lex_state = 5}, - [507] = {.lex_state = 8, .external_lex_state = 5}, - [508] = {.lex_state = 66, .external_lex_state = 3}, - [509] = {.lex_state = 66, .external_lex_state = 3}, - [510] = {.lex_state = 66, .external_lex_state = 3}, - [511] = {.lex_state = 66, .external_lex_state = 3}, - [512] = {.lex_state = 66, .external_lex_state = 3}, + [497] = {.lex_state = 5, .external_lex_state = 6}, + [498] = {.lex_state = 5, .external_lex_state = 6}, + [499] = {.lex_state = 5, .external_lex_state = 6}, + [500] = {.lex_state = 5, .external_lex_state = 6}, + [501] = {.lex_state = 5, .external_lex_state = 6}, + [502] = {.lex_state = 5, .external_lex_state = 6}, + [503] = {.lex_state = 5, .external_lex_state = 6}, + [504] = {.lex_state = 5, .external_lex_state = 6}, + [505] = {.lex_state = 5, .external_lex_state = 6}, + [506] = {.lex_state = 5, .external_lex_state = 6}, + [507] = {.lex_state = 5, .external_lex_state = 6}, + [508] = {.lex_state = 5, .external_lex_state = 6}, + [509] = {.lex_state = 5, .external_lex_state = 6}, + [510] = {.lex_state = 5, .external_lex_state = 6}, + [511] = {.lex_state = 5, .external_lex_state = 6}, + [512] = {.lex_state = 5, .external_lex_state = 6}, [513] = {.lex_state = 66, .external_lex_state = 3}, - [514] = {.lex_state = 66, .external_lex_state = 3}, - [515] = {.lex_state = 66, .external_lex_state = 3}, - [516] = {.lex_state = 66, .external_lex_state = 3}, - [517] = {.lex_state = 66, .external_lex_state = 3}, + [514] = {.lex_state = 66, .external_lex_state = 6}, + [515] = {.lex_state = 66, .external_lex_state = 6}, + [516] = {.lex_state = 66, .external_lex_state = 6}, + [517] = {.lex_state = 7, .external_lex_state = 5}, [518] = {.lex_state = 66, .external_lex_state = 3}, - [519] = {.lex_state = 8, .external_lex_state = 2}, - [520] = {.lex_state = 8, .external_lex_state = 7}, - [521] = {.lex_state = 66, .external_lex_state = 2}, - [522] = {.lex_state = 7, .external_lex_state = 2}, + [519] = {.lex_state = 8, .external_lex_state = 5}, + [520] = {.lex_state = 66, .external_lex_state = 3}, + [521] = {.lex_state = 8, .external_lex_state = 5}, + [522] = {.lex_state = 66, .external_lex_state = 3}, [523] = {.lex_state = 66, .external_lex_state = 3}, [524] = {.lex_state = 66, .external_lex_state = 3}, [525] = {.lex_state = 66, .external_lex_state = 3}, @@ -13940,7 +14066,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [619] = {.lex_state = 66, .external_lex_state = 3}, [620] = {.lex_state = 66, .external_lex_state = 3}, [621] = {.lex_state = 66, .external_lex_state = 3}, - [622] = {.lex_state = 7, .external_lex_state = 7}, + [622] = {.lex_state = 66, .external_lex_state = 3}, [623] = {.lex_state = 66, .external_lex_state = 3}, [624] = {.lex_state = 66, .external_lex_state = 3}, [625] = {.lex_state = 66, .external_lex_state = 3}, @@ -14039,382 +14165,382 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [718] = {.lex_state = 66, .external_lex_state = 3}, [719] = {.lex_state = 66, .external_lex_state = 3}, [720] = {.lex_state = 66, .external_lex_state = 3}, - [721] = {.lex_state = 66, .external_lex_state = 2}, + [721] = {.lex_state = 66, .external_lex_state = 3}, [722] = {.lex_state = 66, .external_lex_state = 3}, - [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 = 66, .external_lex_state = 2}, + [723] = {.lex_state = 66, .external_lex_state = 3}, + [724] = {.lex_state = 66, .external_lex_state = 3}, + [725] = {.lex_state = 66, .external_lex_state = 3}, + [726] = {.lex_state = 66, .external_lex_state = 3}, + [727] = {.lex_state = 66, .external_lex_state = 3}, + [728] = {.lex_state = 66, .external_lex_state = 3}, [729] = {.lex_state = 66, .external_lex_state = 3}, [730] = {.lex_state = 66, .external_lex_state = 3}, - [731] = {.lex_state = 7, .external_lex_state = 7}, - [732] = {.lex_state = 66, .external_lex_state = 3}, - [733] = {.lex_state = 7, .external_lex_state = 6}, - [734] = {.lex_state = 9, .external_lex_state = 5}, + [731] = {.lex_state = 66, .external_lex_state = 3}, + [732] = {.lex_state = 8, .external_lex_state = 7}, + [733] = {.lex_state = 66, .external_lex_state = 3}, + [734] = {.lex_state = 66, .external_lex_state = 3}, [735] = {.lex_state = 66, .external_lex_state = 3}, [736] = {.lex_state = 66, .external_lex_state = 3}, - [737] = {.lex_state = 8, .external_lex_state = 7}, + [737] = {.lex_state = 66, .external_lex_state = 3}, [738] = {.lex_state = 66, .external_lex_state = 3}, [739] = {.lex_state = 66, .external_lex_state = 3}, - [740] = {.lex_state = 66, .external_lex_state = 3}, - [741] = {.lex_state = 66, .external_lex_state = 3}, - [742] = {.lex_state = 8, .external_lex_state = 2}, - [743] = {.lex_state = 7, .external_lex_state = 2}, - [744] = {.lex_state = 7, .external_lex_state = 7}, - [745] = {.lex_state = 66, .external_lex_state = 3}, + [740] = {.lex_state = 66, .external_lex_state = 2}, + [741] = {.lex_state = 7, .external_lex_state = 2}, + [742] = {.lex_state = 7, .external_lex_state = 7}, + [743] = {.lex_state = 66, .external_lex_state = 3}, + [744] = {.lex_state = 66, .external_lex_state = 2}, + [745] = {.lex_state = 7, .external_lex_state = 7}, [746] = {.lex_state = 66, .external_lex_state = 3}, - [747] = {.lex_state = 66, .external_lex_state = 3}, - [748] = {.lex_state = 66, .external_lex_state = 3}, - [749] = {.lex_state = 9, .external_lex_state = 5}, - [750] = {.lex_state = 7, .external_lex_state = 7}, - [751] = {.lex_state = 7, .external_lex_state = 8}, - [752] = {.lex_state = 8, .external_lex_state = 8}, - [753] = {.lex_state = 7, .external_lex_state = 6}, - [754] = {.lex_state = 7, .external_lex_state = 8}, - [755] = {.lex_state = 7, .external_lex_state = 8}, - [756] = {.lex_state = 7, .external_lex_state = 6}, - [757] = {.lex_state = 7, .external_lex_state = 8}, - [758] = {.lex_state = 8, .external_lex_state = 7}, - [759] = {.lex_state = 7, .external_lex_state = 6}, - [760] = {.lex_state = 7, .external_lex_state = 6}, - [761] = {.lex_state = 8, .external_lex_state = 8}, - [762] = {.lex_state = 9, .external_lex_state = 2}, - [763] = {.lex_state = 9, .external_lex_state = 2}, - [764] = {.lex_state = 7, .external_lex_state = 8}, - [765] = {.lex_state = 7, .external_lex_state = 6}, + [747] = {.lex_state = 66, .external_lex_state = 2}, + [748] = {.lex_state = 8, .external_lex_state = 2}, + [749] = {.lex_state = 66, .external_lex_state = 2}, + [750] = {.lex_state = 66, .external_lex_state = 2}, + [751] = {.lex_state = 66, .external_lex_state = 2}, + [752] = {.lex_state = 66, .external_lex_state = 2}, + [753] = {.lex_state = 66, .external_lex_state = 2}, + [754] = {.lex_state = 66, .external_lex_state = 3}, + [755] = {.lex_state = 7, .external_lex_state = 7}, + [756] = {.lex_state = 9, .external_lex_state = 5}, + [757] = {.lex_state = 8, .external_lex_state = 7}, + [758] = {.lex_state = 7, .external_lex_state = 7}, + [759] = {.lex_state = 9, .external_lex_state = 5}, + [760] = {.lex_state = 8, .external_lex_state = 2}, + [761] = {.lex_state = 7, .external_lex_state = 2}, + [762] = {.lex_state = 7, .external_lex_state = 6}, + [763] = {.lex_state = 8, .external_lex_state = 7}, + [764] = {.lex_state = 7, .external_lex_state = 6}, + [765] = {.lex_state = 7, .external_lex_state = 8}, [766] = {.lex_state = 7, .external_lex_state = 6}, - [767] = {.lex_state = 7, .external_lex_state = 6}, - [768] = {.lex_state = 7, .external_lex_state = 6}, - [769] = {.lex_state = 66, .external_lex_state = 8}, - [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}, - [774] = {.lex_state = 5, .external_lex_state = 7}, - [775] = {.lex_state = 66, .external_lex_state = 2}, - [776] = {.lex_state = 66, .external_lex_state = 6}, - [777] = {.lex_state = 66, .external_lex_state = 8}, - [778] = {.lex_state = 5, .external_lex_state = 7}, - [779] = {.lex_state = 66, .external_lex_state = 6}, - [780] = {.lex_state = 66, .external_lex_state = 6}, - [781] = {.lex_state = 66, .external_lex_state = 8}, - [782] = {.lex_state = 5, .external_lex_state = 7}, - [783] = {.lex_state = 66, .external_lex_state = 8}, - [784] = {.lex_state = 66, .external_lex_state = 6}, - [785] = {.lex_state = 66, .external_lex_state = 8}, - [786] = {.lex_state = 5, .external_lex_state = 7}, - [787] = {.lex_state = 5, .external_lex_state = 7}, - [788] = {.lex_state = 66, .external_lex_state = 6}, - [789] = {.lex_state = 66, .external_lex_state = 8}, - [790] = {.lex_state = 66, .external_lex_state = 2}, + [767] = {.lex_state = 8, .external_lex_state = 8}, + [768] = {.lex_state = 7, .external_lex_state = 8}, + [769] = {.lex_state = 7, .external_lex_state = 6}, + [770] = {.lex_state = 7, .external_lex_state = 8}, + [771] = {.lex_state = 7, .external_lex_state = 6}, + [772] = {.lex_state = 7, .external_lex_state = 8}, + [773] = {.lex_state = 9, .external_lex_state = 2}, + [774] = {.lex_state = 7, .external_lex_state = 8}, + [775] = {.lex_state = 7, .external_lex_state = 6}, + [776] = {.lex_state = 9, .external_lex_state = 2}, + [777] = {.lex_state = 8, .external_lex_state = 8}, + [778] = {.lex_state = 7, .external_lex_state = 6}, + [779] = {.lex_state = 7, .external_lex_state = 6}, + [780] = {.lex_state = 7, .external_lex_state = 6}, + [781] = {.lex_state = 66, .external_lex_state = 6}, + [782] = {.lex_state = 66, .external_lex_state = 8}, + [783] = {.lex_state = 66, .external_lex_state = 6}, + [784] = {.lex_state = 66, .external_lex_state = 8}, + [785] = {.lex_state = 5, .external_lex_state = 7}, + [786] = {.lex_state = 66, .external_lex_state = 6}, + [787] = {.lex_state = 66, .external_lex_state = 6}, + [788] = {.lex_state = 66, .external_lex_state = 8}, + [789] = {.lex_state = 5, .external_lex_state = 7}, + [790] = {.lex_state = 66, .external_lex_state = 8}, [791] = {.lex_state = 66, .external_lex_state = 6}, - [792] = {.lex_state = 66, .external_lex_state = 6}, - [793] = {.lex_state = 66, .external_lex_state = 8}, - [794] = {.lex_state = 66, .external_lex_state = 8}, + [792] = {.lex_state = 66, .external_lex_state = 8}, + [793] = {.lex_state = 5, .external_lex_state = 7}, + [794] = {.lex_state = 5, .external_lex_state = 7}, [795] = {.lex_state = 66, .external_lex_state = 8}, - [796] = {.lex_state = 66, .external_lex_state = 6}, + [796] = {.lex_state = 66, .external_lex_state = 8}, [797] = {.lex_state = 5, .external_lex_state = 7}, [798] = {.lex_state = 66, .external_lex_state = 2}, [799] = {.lex_state = 66, .external_lex_state = 6}, [800] = {.lex_state = 66, .external_lex_state = 8}, - [801] = {.lex_state = 5, .external_lex_state = 7}, - [802] = {.lex_state = 66, .external_lex_state = 6}, - [803] = {.lex_state = 66, .external_lex_state = 6}, - [804] = {.lex_state = 5, .external_lex_state = 8}, - [805] = {.lex_state = 5, .external_lex_state = 8}, - [806] = {.lex_state = 5, .external_lex_state = 8}, - [807] = {.lex_state = 66, .external_lex_state = 2}, - [808] = {.lex_state = 5, .external_lex_state = 8}, - [809] = {.lex_state = 66, .external_lex_state = 2}, - [810] = {.lex_state = 5, .external_lex_state = 8}, - [811] = {.lex_state = 5, .external_lex_state = 8}, - [812] = {.lex_state = 5, .external_lex_state = 2}, - [813] = {.lex_state = 67, .external_lex_state = 9}, - [814] = {.lex_state = 5, .external_lex_state = 6}, - [815] = {.lex_state = 5, .external_lex_state = 2}, - [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 = 6}, - [820] = {.lex_state = 68, .external_lex_state = 3}, - [821] = {.lex_state = 5, .external_lex_state = 6}, - [822] = {.lex_state = 10, .external_lex_state = 5}, - [823] = {.lex_state = 5, .external_lex_state = 2}, - [824] = {.lex_state = 5, .external_lex_state = 2}, - [825] = {.lex_state = 67, .external_lex_state = 10}, - [826] = {.lex_state = 68, .external_lex_state = 2}, - [827] = {.lex_state = 66, .external_lex_state = 6}, - [828] = {.lex_state = 5, .external_lex_state = 2}, - [829] = {.lex_state = 5, .external_lex_state = 6}, - [830] = {.lex_state = 67, .external_lex_state = 9}, - [831] = {.lex_state = 5, .external_lex_state = 2}, + [801] = {.lex_state = 66, .external_lex_state = 2}, + [802] = {.lex_state = 66, .external_lex_state = 8}, + [803] = {.lex_state = 5, .external_lex_state = 7}, + [804] = {.lex_state = 66, .external_lex_state = 8}, + [805] = {.lex_state = 66, .external_lex_state = 6}, + [806] = {.lex_state = 66, .external_lex_state = 2}, + [807] = {.lex_state = 5, .external_lex_state = 7}, + [808] = {.lex_state = 66, .external_lex_state = 8}, + [809] = {.lex_state = 5, .external_lex_state = 7}, + [810] = {.lex_state = 66, .external_lex_state = 6}, + [811] = {.lex_state = 66, .external_lex_state = 6}, + [812] = {.lex_state = 66, .external_lex_state = 6}, + [813] = {.lex_state = 66, .external_lex_state = 6}, + [814] = {.lex_state = 66, .external_lex_state = 6}, + [815] = {.lex_state = 66, .external_lex_state = 8}, + [816] = {.lex_state = 67, .external_lex_state = 2}, + [817] = {.lex_state = 68, .external_lex_state = 9}, + [818] = {.lex_state = 5, .external_lex_state = 8}, + [819] = {.lex_state = 67, .external_lex_state = 3}, + [820] = {.lex_state = 67, .external_lex_state = 2}, + [821] = {.lex_state = 5, .external_lex_state = 8}, + [822] = {.lex_state = 68, .external_lex_state = 10}, + [823] = {.lex_state = 68, .external_lex_state = 10}, + [824] = {.lex_state = 5, .external_lex_state = 8}, + [825] = {.lex_state = 5, .external_lex_state = 8}, + [826] = {.lex_state = 66, .external_lex_state = 2}, + [827] = {.lex_state = 67, .external_lex_state = 3}, + [828] = {.lex_state = 5, .external_lex_state = 8}, + [829] = {.lex_state = 68, .external_lex_state = 9}, + [830] = {.lex_state = 66, .external_lex_state = 2}, + [831] = {.lex_state = 5, .external_lex_state = 8}, [832] = {.lex_state = 5, .external_lex_state = 2}, - [833] = {.lex_state = 10, .external_lex_state = 5}, + [833] = {.lex_state = 66, .external_lex_state = 2}, [834] = {.lex_state = 5, .external_lex_state = 2}, - [835] = {.lex_state = 68, .external_lex_state = 3}, - [836] = {.lex_state = 66, .external_lex_state = 6}, - [837] = {.lex_state = 5, .external_lex_state = 6}, - [838] = {.lex_state = 5, .external_lex_state = 2}, + [835] = {.lex_state = 5, .external_lex_state = 6}, + [836] = {.lex_state = 5, .external_lex_state = 2}, + [837] = {.lex_state = 10, .external_lex_state = 5}, + [838] = {.lex_state = 10, .external_lex_state = 5}, [839] = {.lex_state = 5, .external_lex_state = 2}, - [840] = {.lex_state = 5, .external_lex_state = 2}, + [840] = {.lex_state = 66, .external_lex_state = 2}, [841] = {.lex_state = 5, .external_lex_state = 2}, - [842] = {.lex_state = 5, .external_lex_state = 2}, + [842] = {.lex_state = 5, .external_lex_state = 6}, [843] = {.lex_state = 5, .external_lex_state = 2}, [844] = {.lex_state = 5, .external_lex_state = 2}, [845] = {.lex_state = 5, .external_lex_state = 2}, - [846] = {.lex_state = 67, .external_lex_state = 10}, + [846] = {.lex_state = 66, .external_lex_state = 2}, [847] = {.lex_state = 5, .external_lex_state = 2}, [848] = {.lex_state = 5, .external_lex_state = 2}, [849] = {.lex_state = 5, .external_lex_state = 2}, - [850] = {.lex_state = 5, .external_lex_state = 6}, - [851] = {.lex_state = 68, .external_lex_state = 2}, - [852] = {.lex_state = 5, .external_lex_state = 2}, - [853] = {.lex_state = 5, .external_lex_state = 6}, + [850] = {.lex_state = 66, .external_lex_state = 6}, + [851] = {.lex_state = 5, .external_lex_state = 2}, + [852] = {.lex_state = 66, .external_lex_state = 2}, + [853] = {.lex_state = 5, .external_lex_state = 2}, [854] = {.lex_state = 5, .external_lex_state = 2}, [855] = {.lex_state = 5, .external_lex_state = 6}, - [856] = {.lex_state = 5, .external_lex_state = 2}, + [856] = {.lex_state = 66, .external_lex_state = 6}, [857] = {.lex_state = 5, .external_lex_state = 2}, - [858] = {.lex_state = 66, .external_lex_state = 6}, - [859] = {.lex_state = 5, .external_lex_state = 6}, - [860] = {.lex_state = 5, .external_lex_state = 6}, - [861] = {.lex_state = 66, .external_lex_state = 6}, - [862] = {.lex_state = 66, .external_lex_state = 8}, - [863] = {.lex_state = 66, .external_lex_state = 6}, - [864] = {.lex_state = 66, .external_lex_state = 6}, + [858] = {.lex_state = 5, .external_lex_state = 2}, + [859] = {.lex_state = 5, .external_lex_state = 2}, + [860] = {.lex_state = 66, .external_lex_state = 6}, + [861] = {.lex_state = 5, .external_lex_state = 2}, + [862] = {.lex_state = 5, .external_lex_state = 6}, + [863] = {.lex_state = 5, .external_lex_state = 2}, + [864] = {.lex_state = 5, .external_lex_state = 2}, [865] = {.lex_state = 5, .external_lex_state = 6}, [866] = {.lex_state = 5, .external_lex_state = 6}, - [867] = {.lex_state = 66, .external_lex_state = 8}, - [868] = {.lex_state = 5, .external_lex_state = 6}, + [867] = {.lex_state = 5, .external_lex_state = 2}, + [868] = {.lex_state = 66, .external_lex_state = 2}, [869] = {.lex_state = 5, .external_lex_state = 6}, - [870] = {.lex_state = 5, .external_lex_state = 6}, + [870] = {.lex_state = 5, .external_lex_state = 2}, [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 = 66, .external_lex_state = 6}, + [872] = {.lex_state = 5, .external_lex_state = 2}, + [873] = {.lex_state = 5, .external_lex_state = 2}, + [874] = {.lex_state = 5, .external_lex_state = 2}, [875] = {.lex_state = 5, .external_lex_state = 6}, [876] = {.lex_state = 5, .external_lex_state = 6}, - [877] = {.lex_state = 5, .external_lex_state = 6}, + [877] = {.lex_state = 66, .external_lex_state = 7}, [878] = {.lex_state = 5, .external_lex_state = 6}, - [879] = {.lex_state = 66, .external_lex_state = 6}, - [880] = {.lex_state = 66, .external_lex_state = 8}, - [881] = {.lex_state = 66, .external_lex_state = 6}, - [882] = {.lex_state = 5, .external_lex_state = 6}, - [883] = {.lex_state = 5, .external_lex_state = 6}, - [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 = 66, .external_lex_state = 8}, - [888] = {.lex_state = 66, .external_lex_state = 6}, + [879] = {.lex_state = 5, .external_lex_state = 6}, + [880] = {.lex_state = 66, .external_lex_state = 2}, + [881] = {.lex_state = 66, .external_lex_state = 2}, + [882] = {.lex_state = 66, .external_lex_state = 6}, + [883] = {.lex_state = 68, .external_lex_state = 9}, + [884] = {.lex_state = 67, .external_lex_state = 2}, + [885] = {.lex_state = 66, .external_lex_state = 6}, + [886] = {.lex_state = 66, .external_lex_state = 8}, + [887] = {.lex_state = 66, .external_lex_state = 6}, + [888] = {.lex_state = 5, .external_lex_state = 6}, [889] = {.lex_state = 5, .external_lex_state = 6}, - [890] = {.lex_state = 5, .external_lex_state = 6}, + [890] = {.lex_state = 66, .external_lex_state = 2}, [891] = {.lex_state = 5, .external_lex_state = 6}, [892] = {.lex_state = 5, .external_lex_state = 6}, - [893] = {.lex_state = 66, .external_lex_state = 6}, - [894] = {.lex_state = 66, .external_lex_state = 8}, - [895] = {.lex_state = 66, .external_lex_state = 6}, + [893] = {.lex_state = 66, .external_lex_state = 2}, + [894] = {.lex_state = 66, .external_lex_state = 2}, + [895] = {.lex_state = 5, .external_lex_state = 6}, [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 = 5, .external_lex_state = 6}, + [897] = {.lex_state = 66, .external_lex_state = 3}, + [898] = {.lex_state = 66, .external_lex_state = 6}, + [899] = {.lex_state = 66, .external_lex_state = 8}, [900] = {.lex_state = 66, .external_lex_state = 6}, - [901] = {.lex_state = 66, .external_lex_state = 8}, - [902] = {.lex_state = 5, .external_lex_state = 6}, - [903] = {.lex_state = 5, .external_lex_state = 6}, - [904] = {.lex_state = 5, .external_lex_state = 6}, + [901] = {.lex_state = 66, .external_lex_state = 3}, + [902] = {.lex_state = 66, .external_lex_state = 2}, + [903] = {.lex_state = 66, .external_lex_state = 3}, + [904] = {.lex_state = 66, .external_lex_state = 3}, [905] = {.lex_state = 5, .external_lex_state = 6}, - [906] = {.lex_state = 66, .external_lex_state = 6}, - [907] = {.lex_state = 66, .external_lex_state = 8}, - [908] = {.lex_state = 5, .external_lex_state = 6}, + [906] = {.lex_state = 5, .external_lex_state = 6}, + [907] = {.lex_state = 68, .external_lex_state = 10}, + [908] = {.lex_state = 67, .external_lex_state = 3}, [909] = {.lex_state = 5, .external_lex_state = 6}, [910] = {.lex_state = 5, .external_lex_state = 6}, - [911] = {.lex_state = 5, .external_lex_state = 6}, - [912] = {.lex_state = 5, .external_lex_state = 6}, - [913] = {.lex_state = 5, .external_lex_state = 6}, - [914] = {.lex_state = 5, .external_lex_state = 6}, - [915] = {.lex_state = 5, .external_lex_state = 6}, - [916] = {.lex_state = 5, .external_lex_state = 6}, - [917] = {.lex_state = 5, .external_lex_state = 6}, - [918] = {.lex_state = 5, .external_lex_state = 6}, + [911] = {.lex_state = 66, .external_lex_state = 3}, + [912] = {.lex_state = 66, .external_lex_state = 3}, + [913] = {.lex_state = 66, .external_lex_state = 3}, + [914] = {.lex_state = 66, .external_lex_state = 6}, + [915] = {.lex_state = 66, .external_lex_state = 3}, + [916] = {.lex_state = 66, .external_lex_state = 8}, + [917] = {.lex_state = 66, .external_lex_state = 8}, + [918] = {.lex_state = 66, .external_lex_state = 6}, [919] = {.lex_state = 5, .external_lex_state = 6}, [920] = {.lex_state = 5, .external_lex_state = 6}, [921] = {.lex_state = 5, .external_lex_state = 6}, - [922] = {.lex_state = 5, .external_lex_state = 6}, - [923] = {.lex_state = 66, .external_lex_state = 6}, - [924] = {.lex_state = 66, .external_lex_state = 7}, + [922] = {.lex_state = 66, .external_lex_state = 6}, + [923] = {.lex_state = 66, .external_lex_state = 8}, + [924] = {.lex_state = 66, .external_lex_state = 6}, [925] = {.lex_state = 5, .external_lex_state = 6}, - [926] = {.lex_state = 66, .external_lex_state = 2}, - [927] = {.lex_state = 66, .external_lex_state = 2}, - [928] = {.lex_state = 66, .external_lex_state = 2}, - [929] = {.lex_state = 66, .external_lex_state = 7}, + [926] = {.lex_state = 5, .external_lex_state = 6}, + [927] = {.lex_state = 5, .external_lex_state = 6}, + [928] = {.lex_state = 5, .external_lex_state = 6}, + [929] = {.lex_state = 66, .external_lex_state = 6}, [930] = {.lex_state = 66, .external_lex_state = 8}, - [931] = {.lex_state = 66, .external_lex_state = 3}, - [932] = {.lex_state = 66, .external_lex_state = 3}, - [933] = {.lex_state = 66, .external_lex_state = 3}, - [934] = {.lex_state = 67, .external_lex_state = 9}, - [935] = {.lex_state = 66, .external_lex_state = 7}, - [936] = {.lex_state = 68, .external_lex_state = 3}, - [937] = {.lex_state = 66, .external_lex_state = 3}, - [938] = {.lex_state = 5, .external_lex_state = 2}, - [939] = {.lex_state = 66, .external_lex_state = 8}, - [940] = {.lex_state = 66, .external_lex_state = 6}, - [941] = {.lex_state = 66, .external_lex_state = 8}, - [942] = {.lex_state = 66, .external_lex_state = 2}, - [943] = {.lex_state = 66, .external_lex_state = 8}, - [944] = {.lex_state = 66, .external_lex_state = 2}, - [945] = {.lex_state = 66, .external_lex_state = 2}, - [946] = {.lex_state = 10, .external_lex_state = 2}, - [947] = {.lex_state = 66, .external_lex_state = 8}, - [948] = {.lex_state = 66, .external_lex_state = 6}, - [949] = {.lex_state = 10, .external_lex_state = 2}, - [950] = {.lex_state = 66, .external_lex_state = 6}, - [951] = {.lex_state = 66, .external_lex_state = 6}, - [952] = {.lex_state = 67, .external_lex_state = 10}, - [953] = {.lex_state = 66, .external_lex_state = 6}, - [954] = {.lex_state = 66, .external_lex_state = 7}, - [955] = {.lex_state = 68, .external_lex_state = 2}, - [956] = {.lex_state = 66, .external_lex_state = 7}, - [957] = {.lex_state = 66, .external_lex_state = 7}, - [958] = {.lex_state = 66, .external_lex_state = 2}, - [959] = {.lex_state = 66, .external_lex_state = 2}, - [960] = {.lex_state = 66, .external_lex_state = 7}, - [961] = {.lex_state = 66, .external_lex_state = 6}, - [962] = {.lex_state = 66, .external_lex_state = 8}, - [963] = {.lex_state = 5, .external_lex_state = 7}, + [931] = {.lex_state = 66, .external_lex_state = 6}, + [932] = {.lex_state = 5, .external_lex_state = 6}, + [933] = {.lex_state = 5, .external_lex_state = 6}, + [934] = {.lex_state = 5, .external_lex_state = 6}, + [935] = {.lex_state = 5, .external_lex_state = 6}, + [936] = {.lex_state = 66, .external_lex_state = 6}, + [937] = {.lex_state = 66, .external_lex_state = 8}, + [938] = {.lex_state = 66, .external_lex_state = 2}, + [939] = {.lex_state = 5, .external_lex_state = 6}, + [940] = {.lex_state = 5, .external_lex_state = 6}, + [941] = {.lex_state = 5, .external_lex_state = 6}, + [942] = {.lex_state = 5, .external_lex_state = 6}, + [943] = {.lex_state = 66, .external_lex_state = 6}, + [944] = {.lex_state = 66, .external_lex_state = 8}, + [945] = {.lex_state = 5, .external_lex_state = 6}, + [946] = {.lex_state = 5, .external_lex_state = 6}, + [947] = {.lex_state = 5, .external_lex_state = 6}, + [948] = {.lex_state = 5, .external_lex_state = 6}, + [949] = {.lex_state = 5, .external_lex_state = 6}, + [950] = {.lex_state = 5, .external_lex_state = 6}, + [951] = {.lex_state = 5, .external_lex_state = 6}, + [952] = {.lex_state = 5, .external_lex_state = 6}, + [953] = {.lex_state = 5, .external_lex_state = 6}, + [954] = {.lex_state = 5, .external_lex_state = 6}, + [955] = {.lex_state = 5, .external_lex_state = 6}, + [956] = {.lex_state = 5, .external_lex_state = 6}, + [957] = {.lex_state = 5, .external_lex_state = 6}, + [958] = {.lex_state = 5, .external_lex_state = 6}, + [959] = {.lex_state = 5, .external_lex_state = 6}, + [960] = {.lex_state = 5, .external_lex_state = 6}, + [961] = {.lex_state = 66, .external_lex_state = 2}, + [962] = {.lex_state = 66, .external_lex_state = 6}, + [963] = {.lex_state = 66, .external_lex_state = 6}, [964] = {.lex_state = 66, .external_lex_state = 7}, - [965] = {.lex_state = 5, .external_lex_state = 7}, - [966] = {.lex_state = 5, .external_lex_state = 7}, - [967] = {.lex_state = 5, .external_lex_state = 7}, - [968] = {.lex_state = 5, .external_lex_state = 7}, - [969] = {.lex_state = 5, .external_lex_state = 7}, - [970] = {.lex_state = 5, .external_lex_state = 7}, - [971] = {.lex_state = 66, .external_lex_state = 6}, - [972] = {.lex_state = 66, .external_lex_state = 2}, - [973] = {.lex_state = 66, .external_lex_state = 2}, - [974] = {.lex_state = 66, .external_lex_state = 2}, - [975] = {.lex_state = 66, .external_lex_state = 2}, - [976] = {.lex_state = 66, .external_lex_state = 3}, - [977] = {.lex_state = 66, .external_lex_state = 5}, - [978] = {.lex_state = 5, .external_lex_state = 7}, - [979] = {.lex_state = 66, .external_lex_state = 5}, - [980] = {.lex_state = 66, .external_lex_state = 2}, - [981] = {.lex_state = 5, .external_lex_state = 7}, - [982] = {.lex_state = 5, .external_lex_state = 7}, - [983] = {.lex_state = 5, .external_lex_state = 7}, - [984] = {.lex_state = 5, .external_lex_state = 7}, - [985] = {.lex_state = 5, .external_lex_state = 7}, + [965] = {.lex_state = 66, .external_lex_state = 6}, + [966] = {.lex_state = 66, .external_lex_state = 6}, + [967] = {.lex_state = 66, .external_lex_state = 7}, + [968] = {.lex_state = 66, .external_lex_state = 8}, + [969] = {.lex_state = 66, .external_lex_state = 8}, + [970] = {.lex_state = 66, .external_lex_state = 8}, + [971] = {.lex_state = 66, .external_lex_state = 2}, + [972] = {.lex_state = 66, .external_lex_state = 8}, + [973] = {.lex_state = 66, .external_lex_state = 7}, + [974] = {.lex_state = 66, .external_lex_state = 6}, + [975] = {.lex_state = 66, .external_lex_state = 3}, + [976] = {.lex_state = 66, .external_lex_state = 6}, + [977] = {.lex_state = 66, .external_lex_state = 7}, + [978] = {.lex_state = 66, .external_lex_state = 3}, + [979] = {.lex_state = 66, .external_lex_state = 2}, + [980] = {.lex_state = 66, .external_lex_state = 7}, + [981] = {.lex_state = 10, .external_lex_state = 2}, + [982] = {.lex_state = 66, .external_lex_state = 8}, + [983] = {.lex_state = 66, .external_lex_state = 2}, + [984] = {.lex_state = 66, .external_lex_state = 8}, + [985] = {.lex_state = 66, .external_lex_state = 7}, [986] = {.lex_state = 66, .external_lex_state = 2}, - [987] = {.lex_state = 5, .external_lex_state = 7}, - [988] = {.lex_state = 5, .external_lex_state = 7}, - [989] = {.lex_state = 66, .external_lex_state = 7}, - [990] = {.lex_state = 66, .external_lex_state = 2}, - [991] = {.lex_state = 66, .external_lex_state = 2}, - [992] = {.lex_state = 66, .external_lex_state = 2}, - [993] = {.lex_state = 5, .external_lex_state = 7}, - [994] = {.lex_state = 66, .external_lex_state = 8}, - [995] = {.lex_state = 66, .external_lex_state = 7}, - [996] = {.lex_state = 68, .external_lex_state = 2}, - [997] = {.lex_state = 66, .external_lex_state = 8}, - [998] = {.lex_state = 66, .external_lex_state = 8}, - [999] = {.lex_state = 68, .external_lex_state = 2}, - [1000] = {.lex_state = 66, .external_lex_state = 8}, - [1001] = {.lex_state = 68, .external_lex_state = 2}, - [1002] = {.lex_state = 68, .external_lex_state = 2}, - [1003] = {.lex_state = 66, .external_lex_state = 8}, - [1004] = {.lex_state = 66, .external_lex_state = 8}, - [1005] = {.lex_state = 68, .external_lex_state = 2}, - [1006] = {.lex_state = 68, .external_lex_state = 2}, - [1007] = {.lex_state = 67, .external_lex_state = 10}, - [1008] = {.lex_state = 66, .external_lex_state = 5}, - [1009] = {.lex_state = 68, .external_lex_state = 2}, - [1010] = {.lex_state = 66, .external_lex_state = 8}, - [1011] = {.lex_state = 66, .external_lex_state = 8}, - [1012] = {.lex_state = 66, .external_lex_state = 8}, - [1013] = {.lex_state = 66, .external_lex_state = 8}, - [1014] = {.lex_state = 67, .external_lex_state = 9}, - [1015] = {.lex_state = 68, .external_lex_state = 3}, - [1016] = {.lex_state = 66, .external_lex_state = 8}, - [1017] = {.lex_state = 66, .external_lex_state = 8}, - [1018] = {.lex_state = 67, .external_lex_state = 10}, - [1019] = {.lex_state = 67, .external_lex_state = 9}, - [1020] = {.lex_state = 67, .external_lex_state = 9}, - [1021] = {.lex_state = 66, .external_lex_state = 8}, - [1022] = {.lex_state = 67, .external_lex_state = 9}, - [1023] = {.lex_state = 67, .external_lex_state = 9}, - [1024] = {.lex_state = 68, .external_lex_state = 3}, - [1025] = {.lex_state = 66, .external_lex_state = 8}, - [1026] = {.lex_state = 67, .external_lex_state = 9}, - [1027] = {.lex_state = 67, .external_lex_state = 9}, - [1028] = {.lex_state = 66, .external_lex_state = 8}, - [1029] = {.lex_state = 66, .external_lex_state = 8}, - [1030] = {.lex_state = 67, .external_lex_state = 9}, - [1031] = {.lex_state = 67, .external_lex_state = 9}, - [1032] = {.lex_state = 66, .external_lex_state = 8}, - [1033] = {.lex_state = 5, .external_lex_state = 2}, - [1034] = {.lex_state = 67, .external_lex_state = 9}, - [1035] = {.lex_state = 67, .external_lex_state = 10}, - [1036] = {.lex_state = 68, .external_lex_state = 2}, - [1037] = {.lex_state = 66, .external_lex_state = 8}, - [1038] = {.lex_state = 68, .external_lex_state = 3}, - [1039] = {.lex_state = 66, .external_lex_state = 5}, - [1040] = {.lex_state = 67, .external_lex_state = 10}, - [1041] = {.lex_state = 66, .external_lex_state = 8}, - [1042] = {.lex_state = 66, .external_lex_state = 8}, - [1043] = {.lex_state = 68, .external_lex_state = 3}, - [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 = 66, .external_lex_state = 8}, - [1049] = {.lex_state = 66, .external_lex_state = 8}, - [1050] = {.lex_state = 66, .external_lex_state = 8}, - [1051] = {.lex_state = 66, .external_lex_state = 8}, - [1052] = {.lex_state = 68, .external_lex_state = 3}, - [1053] = {.lex_state = 66, .external_lex_state = 8}, - [1054] = {.lex_state = 66, .external_lex_state = 8}, - [1055] = {.lex_state = 68, .external_lex_state = 3}, - [1056] = {.lex_state = 68, .external_lex_state = 3}, - [1057] = {.lex_state = 66, .external_lex_state = 8}, - [1058] = {.lex_state = 67, .external_lex_state = 10}, - [1059] = {.lex_state = 66, .external_lex_state = 8}, + [987] = {.lex_state = 66, .external_lex_state = 6}, + [988] = {.lex_state = 66, .external_lex_state = 2}, + [989] = {.lex_state = 66, .external_lex_state = 2}, + [990] = {.lex_state = 5, .external_lex_state = 2}, + [991] = {.lex_state = 10, .external_lex_state = 2}, + [992] = {.lex_state = 66, .external_lex_state = 7}, + [993] = {.lex_state = 68, .external_lex_state = 10}, + [994] = {.lex_state = 67, .external_lex_state = 3}, + [995] = {.lex_state = 66, .external_lex_state = 5}, + [996] = {.lex_state = 5, .external_lex_state = 7}, + [997] = {.lex_state = 5, .external_lex_state = 7}, + [998] = {.lex_state = 68, .external_lex_state = 9}, + [999] = {.lex_state = 66, .external_lex_state = 2}, + [1000] = {.lex_state = 68, .external_lex_state = 9}, + [1001] = {.lex_state = 68, .external_lex_state = 9}, + [1002] = {.lex_state = 67, .external_lex_state = 2}, + [1003] = {.lex_state = 67, .external_lex_state = 2}, + [1004] = {.lex_state = 67, .external_lex_state = 3}, + [1005] = {.lex_state = 68, .external_lex_state = 10}, + [1006] = {.lex_state = 68, .external_lex_state = 9}, + [1007] = {.lex_state = 66, .external_lex_state = 7}, + [1008] = {.lex_state = 68, .external_lex_state = 9}, + [1009] = {.lex_state = 68, .external_lex_state = 9}, + [1010] = {.lex_state = 66, .external_lex_state = 5}, + [1011] = {.lex_state = 68, .external_lex_state = 9}, + [1012] = {.lex_state = 68, .external_lex_state = 10}, + [1013] = {.lex_state = 67, .external_lex_state = 2}, + [1014] = {.lex_state = 67, .external_lex_state = 2}, + [1015] = {.lex_state = 68, .external_lex_state = 10}, + [1016] = {.lex_state = 67, .external_lex_state = 3}, + [1017] = {.lex_state = 5, .external_lex_state = 7}, + [1018] = {.lex_state = 5, .external_lex_state = 7}, + [1019] = {.lex_state = 67, .external_lex_state = 2}, + [1020] = {.lex_state = 67, .external_lex_state = 2}, + [1021] = {.lex_state = 67, .external_lex_state = 2}, + [1022] = {.lex_state = 68, .external_lex_state = 10}, + [1023] = {.lex_state = 68, .external_lex_state = 10}, + [1024] = {.lex_state = 68, .external_lex_state = 10}, + [1025] = {.lex_state = 68, .external_lex_state = 10}, + [1026] = {.lex_state = 5, .external_lex_state = 7}, + [1027] = {.lex_state = 5, .external_lex_state = 7}, + [1028] = {.lex_state = 5, .external_lex_state = 7}, + [1029] = {.lex_state = 67, .external_lex_state = 3}, + [1030] = {.lex_state = 67, .external_lex_state = 3}, + [1031] = {.lex_state = 67, .external_lex_state = 3}, + [1032] = {.lex_state = 67, .external_lex_state = 3}, + [1033] = {.lex_state = 67, .external_lex_state = 3}, + [1034] = {.lex_state = 5, .external_lex_state = 7}, + [1035] = {.lex_state = 5, .external_lex_state = 7}, + [1036] = {.lex_state = 5, .external_lex_state = 7}, + [1037] = {.lex_state = 5, .external_lex_state = 7}, + [1038] = {.lex_state = 66, .external_lex_state = 8}, + [1039] = {.lex_state = 66, .external_lex_state = 2}, + [1040] = {.lex_state = 5, .external_lex_state = 7}, + [1041] = {.lex_state = 5, .external_lex_state = 7}, + [1042] = {.lex_state = 5, .external_lex_state = 7}, + [1043] = {.lex_state = 68, .external_lex_state = 9}, + [1044] = {.lex_state = 67, .external_lex_state = 2}, + [1045] = {.lex_state = 68, .external_lex_state = 10}, + [1046] = {.lex_state = 5, .external_lex_state = 7}, + [1047] = {.lex_state = 66, .external_lex_state = 7}, + [1048] = {.lex_state = 5, .external_lex_state = 7}, + [1049] = {.lex_state = 66, .external_lex_state = 2}, + [1050] = {.lex_state = 68, .external_lex_state = 9}, + [1051] = {.lex_state = 68, .external_lex_state = 9}, + [1052] = {.lex_state = 68, .external_lex_state = 9}, + [1053] = {.lex_state = 67, .external_lex_state = 2}, + [1054] = {.lex_state = 68, .external_lex_state = 10}, + [1055] = {.lex_state = 67, .external_lex_state = 3}, + [1056] = {.lex_state = 66, .external_lex_state = 6}, + [1057] = {.lex_state = 68, .external_lex_state = 10}, + [1058] = {.lex_state = 66, .external_lex_state = 3}, + [1059] = {.lex_state = 66, .external_lex_state = 2}, [1060] = {.lex_state = 66, .external_lex_state = 8}, - [1061] = {.lex_state = 66, .external_lex_state = 8}, - [1062] = {.lex_state = 68, .external_lex_state = 3}, + [1061] = {.lex_state = 66, .external_lex_state = 2}, + [1062] = {.lex_state = 66, .external_lex_state = 2}, [1063] = {.lex_state = 66, .external_lex_state = 8}, [1064] = {.lex_state = 66, .external_lex_state = 8}, - [1065] = {.lex_state = 66, .external_lex_state = 8}, - [1066] = {.lex_state = 67, .external_lex_state = 10}, - [1067] = {.lex_state = 66, .external_lex_state = 8}, - [1068] = {.lex_state = 67, .external_lex_state = 10}, + [1065] = {.lex_state = 66, .external_lex_state = 2}, + [1066] = {.lex_state = 66, .external_lex_state = 2}, + [1067] = {.lex_state = 66, .external_lex_state = 3}, + [1068] = {.lex_state = 66, .external_lex_state = 8}, [1069] = {.lex_state = 66, .external_lex_state = 8}, - [1070] = {.lex_state = 67, .external_lex_state = 9}, - [1071] = {.lex_state = 68, .external_lex_state = 3}, - [1072] = {.lex_state = 68, .external_lex_state = 2}, - [1073] = {.lex_state = 67, .external_lex_state = 10}, - [1074] = {.lex_state = 67, .external_lex_state = 10}, - [1075] = {.lex_state = 66, .external_lex_state = 5}, - [1076] = {.lex_state = 67, .external_lex_state = 10}, - [1077] = {.lex_state = 67, .external_lex_state = 10}, + [1070] = {.lex_state = 66, .external_lex_state = 3}, + [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}, + [1075] = {.lex_state = 66, .external_lex_state = 8}, + [1076] = {.lex_state = 66, .external_lex_state = 3}, + [1077] = {.lex_state = 66, .external_lex_state = 2}, [1078] = {.lex_state = 66, .external_lex_state = 8}, - [1079] = {.lex_state = 66, .external_lex_state = 5}, - [1080] = {.lex_state = 66, .external_lex_state = 8}, - [1081] = {.lex_state = 66, .external_lex_state = 2}, + [1079] = {.lex_state = 66, .external_lex_state = 8}, + [1080] = {.lex_state = 66, .external_lex_state = 3}, + [1081] = {.lex_state = 66, .external_lex_state = 3}, [1082] = {.lex_state = 66, .external_lex_state = 2}, [1083] = {.lex_state = 66, .external_lex_state = 2}, - [1084] = {.lex_state = 66, .external_lex_state = 2}, + [1084] = {.lex_state = 66, .external_lex_state = 3}, [1085] = {.lex_state = 66, .external_lex_state = 2}, - [1086] = {.lex_state = 66, .external_lex_state = 2}, - [1087] = {.lex_state = 66, .external_lex_state = 8}, + [1086] = {.lex_state = 66, .external_lex_state = 8}, + [1087] = {.lex_state = 66, .external_lex_state = 3}, [1088] = {.lex_state = 66, .external_lex_state = 2}, [1089] = {.lex_state = 66, .external_lex_state = 2}, - [1090] = {.lex_state = 66, .external_lex_state = 3}, - [1091] = {.lex_state = 66, .external_lex_state = 3}, + [1090] = {.lex_state = 66, .external_lex_state = 8}, + [1091] = {.lex_state = 66, .external_lex_state = 8}, [1092] = {.lex_state = 66, .external_lex_state = 3}, - [1093] = {.lex_state = 66, .external_lex_state = 3}, - [1094] = {.lex_state = 66, .external_lex_state = 2}, + [1093] = {.lex_state = 66, .external_lex_state = 8}, + [1094] = {.lex_state = 66, .external_lex_state = 8}, [1095] = {.lex_state = 66, .external_lex_state = 2}, - [1096] = {.lex_state = 66, .external_lex_state = 8}, + [1096] = {.lex_state = 66, .external_lex_state = 3}, [1097] = {.lex_state = 66, .external_lex_state = 2}, [1098] = {.lex_state = 66, .external_lex_state = 2}, [1099] = {.lex_state = 66, .external_lex_state = 2}, @@ -14422,67 +14548,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1101] = {.lex_state = 66, .external_lex_state = 2}, [1102] = {.lex_state = 66, .external_lex_state = 2}, [1103] = {.lex_state = 66, .external_lex_state = 2}, - [1104] = {.lex_state = 66, .external_lex_state = 6}, + [1104] = {.lex_state = 66, .external_lex_state = 8}, [1105] = {.lex_state = 66, .external_lex_state = 2}, - [1106] = {.lex_state = 66, .external_lex_state = 2}, - [1107] = {.lex_state = 66, .external_lex_state = 3}, - [1108] = {.lex_state = 66, .external_lex_state = 3}, - [1109] = {.lex_state = 66, .external_lex_state = 3}, - [1110] = {.lex_state = 66, .external_lex_state = 2}, - [1111] = {.lex_state = 66, .external_lex_state = 2}, - [1112] = {.lex_state = 66, .external_lex_state = 2}, - [1113] = {.lex_state = 66, .external_lex_state = 2}, + [1106] = {.lex_state = 66, .external_lex_state = 5}, + [1107] = {.lex_state = 66, .external_lex_state = 8}, + [1108] = {.lex_state = 66, .external_lex_state = 8}, + [1109] = {.lex_state = 66, .external_lex_state = 2}, + [1110] = {.lex_state = 66, .external_lex_state = 8}, + [1111] = {.lex_state = 66, .external_lex_state = 3}, + [1112] = {.lex_state = 66, .external_lex_state = 3}, + [1113] = {.lex_state = 66, .external_lex_state = 8}, [1114] = {.lex_state = 66, .external_lex_state = 2}, - [1115] = {.lex_state = 66, .external_lex_state = 2}, - [1116] = {.lex_state = 66, .external_lex_state = 3}, - [1117] = {.lex_state = 66, .external_lex_state = 2}, - [1118] = {.lex_state = 66, .external_lex_state = 5}, - [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 = 66, .external_lex_state = 2}, - [1123] = {.lex_state = 66, .external_lex_state = 2}, - [1124] = {.lex_state = 66, .external_lex_state = 2}, - [1125] = {.lex_state = 66, .external_lex_state = 6}, - [1126] = {.lex_state = 66, .external_lex_state = 2}, - [1127] = {.lex_state = 66, .external_lex_state = 5}, - [1128] = {.lex_state = 66, .external_lex_state = 5}, - [1129] = {.lex_state = 66, .external_lex_state = 2}, - [1130] = {.lex_state = 66, .external_lex_state = 5}, - [1131] = {.lex_state = 66, .external_lex_state = 8}, - [1132] = {.lex_state = 11, .external_lex_state = 7}, + [1115] = {.lex_state = 66, .external_lex_state = 3}, + [1116] = {.lex_state = 66, .external_lex_state = 2}, + [1117] = {.lex_state = 66, .external_lex_state = 8}, + [1118] = {.lex_state = 66, .external_lex_state = 2}, + [1119] = {.lex_state = 5, .external_lex_state = 2}, + [1120] = {.lex_state = 66, .external_lex_state = 8}, + [1121] = {.lex_state = 66, .external_lex_state = 8}, + [1122] = {.lex_state = 66, .external_lex_state = 3}, + [1123] = {.lex_state = 66, .external_lex_state = 3}, + [1124] = {.lex_state = 66, .external_lex_state = 8}, + [1125] = {.lex_state = 66, .external_lex_state = 8}, + [1126] = {.lex_state = 66, .external_lex_state = 8}, + [1127] = {.lex_state = 66, .external_lex_state = 8}, + [1128] = {.lex_state = 66, .external_lex_state = 8}, + [1129] = {.lex_state = 66, .external_lex_state = 8}, + [1130] = {.lex_state = 66, .external_lex_state = 3}, + [1131] = {.lex_state = 66, .external_lex_state = 3}, + [1132] = {.lex_state = 66, .external_lex_state = 2}, [1133] = {.lex_state = 66, .external_lex_state = 2}, - [1134] = {.lex_state = 66, .external_lex_state = 2}, + [1134] = {.lex_state = 66, .external_lex_state = 8}, [1135] = {.lex_state = 66, .external_lex_state = 8}, [1136] = {.lex_state = 66, .external_lex_state = 2}, - [1137] = {.lex_state = 66, .external_lex_state = 2}, - [1138] = {.lex_state = 66, .external_lex_state = 2}, - [1139] = {.lex_state = 66, .external_lex_state = 6}, - [1140] = {.lex_state = 11, .external_lex_state = 6}, - [1141] = {.lex_state = 11, .external_lex_state = 6}, - [1142] = {.lex_state = 11, .external_lex_state = 7}, - [1143] = {.lex_state = 66, .external_lex_state = 2}, - [1144] = {.lex_state = 66, .external_lex_state = 3}, - [1145] = {.lex_state = 66, .external_lex_state = 3}, - [1146] = {.lex_state = 66, .external_lex_state = 5}, - [1147] = {.lex_state = 66, .external_lex_state = 2}, - [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 = 3}, + [1137] = {.lex_state = 66, .external_lex_state = 8}, + [1138] = {.lex_state = 66, .external_lex_state = 8}, + [1139] = {.lex_state = 66, .external_lex_state = 2}, + [1140] = {.lex_state = 66, .external_lex_state = 3}, + [1141] = {.lex_state = 66, .external_lex_state = 8}, + [1142] = {.lex_state = 66, .external_lex_state = 5}, + [1143] = {.lex_state = 66, .external_lex_state = 5}, + [1144] = {.lex_state = 66, .external_lex_state = 8}, + [1145] = {.lex_state = 66, .external_lex_state = 8}, + [1146] = {.lex_state = 66, .external_lex_state = 8}, + [1147] = {.lex_state = 66, .external_lex_state = 8}, + [1148] = {.lex_state = 66, .external_lex_state = 8}, + [1149] = {.lex_state = 66, .external_lex_state = 3}, + [1150] = {.lex_state = 66, .external_lex_state = 3}, + [1151] = {.lex_state = 66, .external_lex_state = 3}, + [1152] = {.lex_state = 66, .external_lex_state = 2}, [1153] = {.lex_state = 66, .external_lex_state = 3}, [1154] = {.lex_state = 66, .external_lex_state = 3}, - [1155] = {.lex_state = 66, .external_lex_state = 3}, - [1156] = {.lex_state = 66, .external_lex_state = 3}, - [1157] = {.lex_state = 66, .external_lex_state = 8}, - [1158] = {.lex_state = 66, .external_lex_state = 8}, + [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 = 3}, [1159] = {.lex_state = 66, .external_lex_state = 3}, - [1160] = {.lex_state = 66, .external_lex_state = 2}, - [1161] = {.lex_state = 66, .external_lex_state = 3}, - [1162] = {.lex_state = 66, .external_lex_state = 2}, - [1163] = {.lex_state = 66, .external_lex_state = 3}, - [1164] = {.lex_state = 66, .external_lex_state = 3}, + [1160] = {.lex_state = 66, .external_lex_state = 8}, + [1161] = {.lex_state = 66, .external_lex_state = 8}, + [1162] = {.lex_state = 66, .external_lex_state = 3}, + [1163] = {.lex_state = 66, .external_lex_state = 2}, + [1164] = {.lex_state = 66, .external_lex_state = 2}, [1165] = {.lex_state = 66, .external_lex_state = 2}, [1166] = {.lex_state = 66, .external_lex_state = 2}, [1167] = {.lex_state = 66, .external_lex_state = 2}, @@ -14502,15 +14628,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1181] = {.lex_state = 66, .external_lex_state = 2}, [1182] = {.lex_state = 66, .external_lex_state = 2}, [1183] = {.lex_state = 66, .external_lex_state = 2}, - [1184] = {.lex_state = 66, .external_lex_state = 3}, + [1184] = {.lex_state = 66, .external_lex_state = 2}, [1185] = {.lex_state = 66, .external_lex_state = 2}, - [1186] = {.lex_state = 66, .external_lex_state = 3}, + [1186] = {.lex_state = 66, .external_lex_state = 2}, [1187] = {.lex_state = 66, .external_lex_state = 2}, - [1188] = {.lex_state = 66, .external_lex_state = 3}, - [1189] = {.lex_state = 66, .external_lex_state = 7}, - [1190] = {.lex_state = 66, .external_lex_state = 7}, - [1191] = {.lex_state = 66, .external_lex_state = 3}, - [1192] = {.lex_state = 66, .external_lex_state = 6}, + [1188] = {.lex_state = 66, .external_lex_state = 2}, + [1189] = {.lex_state = 66, .external_lex_state = 2}, + [1190] = {.lex_state = 66, .external_lex_state = 2}, + [1191] = {.lex_state = 66, .external_lex_state = 2}, + [1192] = {.lex_state = 66, .external_lex_state = 2}, [1193] = {.lex_state = 66, .external_lex_state = 2}, [1194] = {.lex_state = 66, .external_lex_state = 2}, [1195] = {.lex_state = 66, .external_lex_state = 2}, @@ -14567,13 +14693,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1246] = {.lex_state = 66, .external_lex_state = 2}, [1247] = {.lex_state = 66, .external_lex_state = 2}, [1248] = {.lex_state = 66, .external_lex_state = 2}, - [1249] = {.lex_state = 66, .external_lex_state = 2}, + [1249] = {.lex_state = 66, .external_lex_state = 8}, [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 = 66, .external_lex_state = 2}, - [1255] = {.lex_state = 66, .external_lex_state = 2}, + [1255] = {.lex_state = 11, .external_lex_state = 6}, [1256] = {.lex_state = 66, .external_lex_state = 2}, [1257] = {.lex_state = 66, .external_lex_state = 2}, [1258] = {.lex_state = 66, .external_lex_state = 2}, @@ -14594,7 +14720,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1273] = {.lex_state = 66, .external_lex_state = 2}, [1274] = {.lex_state = 66, .external_lex_state = 2}, [1275] = {.lex_state = 66, .external_lex_state = 2}, - [1276] = {.lex_state = 66, .external_lex_state = 2}, + [1276] = {.lex_state = 66, .external_lex_state = 6}, [1277] = {.lex_state = 66, .external_lex_state = 2}, [1278] = {.lex_state = 66, .external_lex_state = 2}, [1279] = {.lex_state = 66, .external_lex_state = 2}, @@ -14605,7 +14731,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1284] = {.lex_state = 66, .external_lex_state = 2}, [1285] = {.lex_state = 66, .external_lex_state = 2}, [1286] = {.lex_state = 66, .external_lex_state = 2}, - [1287] = {.lex_state = 66, .external_lex_state = 2}, + [1287] = {.lex_state = 66, .external_lex_state = 8}, [1288] = {.lex_state = 66, .external_lex_state = 2}, [1289] = {.lex_state = 66, .external_lex_state = 2}, [1290] = {.lex_state = 66, .external_lex_state = 2}, @@ -14614,22 +14740,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1293] = {.lex_state = 66, .external_lex_state = 2}, [1294] = {.lex_state = 66, .external_lex_state = 2}, [1295] = {.lex_state = 66, .external_lex_state = 2}, - [1296] = {.lex_state = 66, .external_lex_state = 2}, - [1297] = {.lex_state = 66, .external_lex_state = 2}, + [1296] = {.lex_state = 66, .external_lex_state = 6}, + [1297] = {.lex_state = 66, .external_lex_state = 3}, [1298] = {.lex_state = 66, .external_lex_state = 2}, - [1299] = {.lex_state = 66, .external_lex_state = 2}, + [1299] = {.lex_state = 66, .external_lex_state = 6}, [1300] = {.lex_state = 66, .external_lex_state = 2}, [1301] = {.lex_state = 66, .external_lex_state = 2}, [1302] = {.lex_state = 66, .external_lex_state = 2}, - [1303] = {.lex_state = 66, .external_lex_state = 2}, - [1304] = {.lex_state = 66, .external_lex_state = 2}, - [1305] = {.lex_state = 66, .external_lex_state = 2}, + [1303] = {.lex_state = 66, .external_lex_state = 8}, + [1304] = {.lex_state = 11, .external_lex_state = 7}, + [1305] = {.lex_state = 66, .external_lex_state = 8}, [1306] = {.lex_state = 66, .external_lex_state = 2}, [1307] = {.lex_state = 66, .external_lex_state = 2}, [1308] = {.lex_state = 66, .external_lex_state = 2}, - [1309] = {.lex_state = 66, .external_lex_state = 2}, + [1309] = {.lex_state = 66, .external_lex_state = 5}, [1310] = {.lex_state = 66, .external_lex_state = 2}, - [1311] = {.lex_state = 66, .external_lex_state = 2}, + [1311] = {.lex_state = 66, .external_lex_state = 5}, [1312] = {.lex_state = 66, .external_lex_state = 2}, [1313] = {.lex_state = 66, .external_lex_state = 2}, [1314] = {.lex_state = 66, .external_lex_state = 2}, @@ -14651,20 +14777,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1330] = {.lex_state = 66, .external_lex_state = 2}, [1331] = {.lex_state = 66, .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}, + [1333] = {.lex_state = 11, .external_lex_state = 6}, + [1334] = {.lex_state = 11, .external_lex_state = 7}, [1335] = {.lex_state = 66, .external_lex_state = 2}, [1336] = {.lex_state = 66, .external_lex_state = 2}, [1337] = {.lex_state = 66, .external_lex_state = 2}, [1338] = {.lex_state = 66, .external_lex_state = 2}, [1339] = {.lex_state = 66, .external_lex_state = 2}, [1340] = {.lex_state = 66, .external_lex_state = 2}, - [1341] = {.lex_state = 66, .external_lex_state = 2}, + [1341] = {.lex_state = 66, .external_lex_state = 8}, [1342] = {.lex_state = 66, .external_lex_state = 2}, [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 = 66, .external_lex_state = 6}, [1347] = {.lex_state = 66, .external_lex_state = 2}, [1348] = {.lex_state = 66, .external_lex_state = 2}, [1349] = {.lex_state = 66, .external_lex_state = 2}, @@ -14672,7 +14798,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1351] = {.lex_state = 66, .external_lex_state = 2}, [1352] = {.lex_state = 66, .external_lex_state = 2}, [1353] = {.lex_state = 66, .external_lex_state = 2}, - [1354] = {.lex_state = 11, .external_lex_state = 2}, + [1354] = {.lex_state = 66, .external_lex_state = 2}, [1355] = {.lex_state = 66, .external_lex_state = 2}, [1356] = {.lex_state = 66, .external_lex_state = 2}, [1357] = {.lex_state = 66, .external_lex_state = 2}, @@ -14682,15 +14808,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1361] = {.lex_state = 66, .external_lex_state = 2}, [1362] = {.lex_state = 66, .external_lex_state = 2}, [1363] = {.lex_state = 66, .external_lex_state = 2}, - [1364] = {.lex_state = 66, .external_lex_state = 2}, + [1364] = {.lex_state = 66, .external_lex_state = 5}, [1365] = {.lex_state = 66, .external_lex_state = 2}, [1366] = {.lex_state = 66, .external_lex_state = 2}, [1367] = {.lex_state = 66, .external_lex_state = 2}, - [1368] = {.lex_state = 66, .external_lex_state = 2}, - [1369] = {.lex_state = 66, .external_lex_state = 2}, - [1370] = {.lex_state = 66, .external_lex_state = 2}, - [1371] = {.lex_state = 66, .external_lex_state = 3}, - [1372] = {.lex_state = 11, .external_lex_state = 2}, + [1368] = {.lex_state = 66, .external_lex_state = 3}, + [1369] = {.lex_state = 66, .external_lex_state = 5}, + [1370] = {.lex_state = 66, .external_lex_state = 5}, + [1371] = {.lex_state = 66, .external_lex_state = 2}, + [1372] = {.lex_state = 66, .external_lex_state = 2}, [1373] = {.lex_state = 66, .external_lex_state = 2}, [1374] = {.lex_state = 66, .external_lex_state = 2}, [1375] = {.lex_state = 66, .external_lex_state = 2}, @@ -14700,7 +14826,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1379] = {.lex_state = 66, .external_lex_state = 2}, [1380] = {.lex_state = 66, .external_lex_state = 2}, [1381] = {.lex_state = 66, .external_lex_state = 2}, - [1382] = {.lex_state = 66, .external_lex_state = 2}, + [1382] = {.lex_state = 66, .external_lex_state = 5}, [1383] = {.lex_state = 66, .external_lex_state = 2}, [1384] = {.lex_state = 66, .external_lex_state = 2}, [1385] = {.lex_state = 66, .external_lex_state = 2}, @@ -14711,7 +14837,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1390] = {.lex_state = 66, .external_lex_state = 2}, [1391] = {.lex_state = 66, .external_lex_state = 2}, [1392] = {.lex_state = 66, .external_lex_state = 2}, - [1393] = {.lex_state = 66, .external_lex_state = 3}, + [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 = 2}, @@ -14736,10 +14862,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1415] = {.lex_state = 66, .external_lex_state = 2}, [1416] = {.lex_state = 66, .external_lex_state = 2}, [1417] = {.lex_state = 66, .external_lex_state = 2}, - [1418] = {.lex_state = 66, .external_lex_state = 2}, - [1419] = {.lex_state = 66, .external_lex_state = 2}, - [1420] = {.lex_state = 66, .external_lex_state = 2}, - [1421] = {.lex_state = 66, .external_lex_state = 2}, + [1418] = {.lex_state = 66, .external_lex_state = 8}, + [1419] = {.lex_state = 66, .external_lex_state = 8}, + [1420] = {.lex_state = 66, .external_lex_state = 7}, + [1421] = {.lex_state = 66, .external_lex_state = 7}, [1422] = {.lex_state = 66, .external_lex_state = 2}, [1423] = {.lex_state = 66, .external_lex_state = 2}, [1424] = {.lex_state = 66, .external_lex_state = 2}, @@ -14747,35 +14873,35 @@ 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 = 66, .external_lex_state = 2}, + [1429] = {.lex_state = 66, .external_lex_state = 3}, [1430] = {.lex_state = 66, .external_lex_state = 2}, - [1431] = {.lex_state = 66, .external_lex_state = 2}, + [1431] = {.lex_state = 66, .external_lex_state = 3}, [1432] = {.lex_state = 66, .external_lex_state = 2}, [1433] = {.lex_state = 66, .external_lex_state = 2}, - [1434] = {.lex_state = 66, .external_lex_state = 2}, - [1435] = {.lex_state = 66, .external_lex_state = 2}, + [1434] = {.lex_state = 66, .external_lex_state = 3}, + [1435] = {.lex_state = 66, .external_lex_state = 3}, [1436] = {.lex_state = 66, .external_lex_state = 2}, - [1437] = {.lex_state = 66, .external_lex_state = 2}, + [1437] = {.lex_state = 66, .external_lex_state = 3}, [1438] = {.lex_state = 66, .external_lex_state = 2}, - [1439] = {.lex_state = 66, .external_lex_state = 2}, - [1440] = {.lex_state = 66, .external_lex_state = 2}, + [1439] = {.lex_state = 66, .external_lex_state = 3}, + [1440] = {.lex_state = 66, .external_lex_state = 3}, [1441] = {.lex_state = 66, .external_lex_state = 2}, - [1442] = {.lex_state = 66, .external_lex_state = 2}, + [1442] = {.lex_state = 66, .external_lex_state = 3}, [1443] = {.lex_state = 66, .external_lex_state = 2}, - [1444] = {.lex_state = 66, .external_lex_state = 2}, + [1444] = {.lex_state = 66, .external_lex_state = 3}, [1445] = {.lex_state = 66, .external_lex_state = 2}, - [1446] = {.lex_state = 66, .external_lex_state = 2}, + [1446] = {.lex_state = 66, .external_lex_state = 3}, [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}, + [1450] = {.lex_state = 66, .external_lex_state = 3}, [1451] = {.lex_state = 66, .external_lex_state = 2}, [1452] = {.lex_state = 66, .external_lex_state = 2}, - [1453] = {.lex_state = 66, .external_lex_state = 2}, - [1454] = {.lex_state = 66, .external_lex_state = 2}, - [1455] = {.lex_state = 66, .external_lex_state = 2}, + [1453] = {.lex_state = 66, .external_lex_state = 3}, + [1454] = {.lex_state = 66, .external_lex_state = 3}, + [1455] = {.lex_state = 66, .external_lex_state = 3}, [1456] = {.lex_state = 66, .external_lex_state = 2}, - [1457] = {.lex_state = 66, .external_lex_state = 2}, + [1457] = {.lex_state = 66, .external_lex_state = 3}, [1458] = {.lex_state = 66, .external_lex_state = 2}, [1459] = {.lex_state = 66, .external_lex_state = 2}, [1460] = {.lex_state = 66, .external_lex_state = 2}, @@ -14784,149 +14910,149 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1466] = {.lex_state = 66, .external_lex_state = 3}, + [1467] = {.lex_state = 66, .external_lex_state = 3}, [1468] = {.lex_state = 66, .external_lex_state = 2}, [1469] = {.lex_state = 66, .external_lex_state = 2}, [1470] = {.lex_state = 66, .external_lex_state = 2}, [1471] = {.lex_state = 66, .external_lex_state = 2}, [1472] = {.lex_state = 66, .external_lex_state = 2}, - [1473] = {.lex_state = 66, .external_lex_state = 2}, - [1474] = {.lex_state = 66, .external_lex_state = 2}, + [1473] = {.lex_state = 66, .external_lex_state = 3}, + [1474] = {.lex_state = 66, .external_lex_state = 3}, [1475] = {.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 = 3}, + [1476] = {.lex_state = 66, .external_lex_state = 2}, + [1477] = {.lex_state = 66, .external_lex_state = 3}, + [1478] = {.lex_state = 66, .external_lex_state = 2}, [1479] = {.lex_state = 66, .external_lex_state = 2}, [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}, - [1486] = {.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 = 3}, + [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}, + [1494] = {.lex_state = 66, .external_lex_state = 3}, [1495] = {.lex_state = 66, .external_lex_state = 2}, [1496] = {.lex_state = 66, .external_lex_state = 2}, [1497] = {.lex_state = 66, .external_lex_state = 3}, [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 = 3}, - [1503] = {.lex_state = 66, .external_lex_state = 2}, + [1500] = {.lex_state = 66, .external_lex_state = 3}, + [1501] = {.lex_state = 66, .external_lex_state = 3}, + [1502] = {.lex_state = 66, .external_lex_state = 2}, + [1503] = {.lex_state = 66, .external_lex_state = 3}, [1504] = {.lex_state = 66, .external_lex_state = 2}, [1505] = {.lex_state = 66, .external_lex_state = 3}, [1506] = {.lex_state = 66, .external_lex_state = 3}, [1507] = {.lex_state = 66, .external_lex_state = 3}, [1508] = {.lex_state = 66, .external_lex_state = 2}, - [1509] = {.lex_state = 66, .external_lex_state = 3}, + [1509] = {.lex_state = 66, .external_lex_state = 2}, [1510] = {.lex_state = 66, .external_lex_state = 3}, - [1511] = {.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 = 3}, - [1514] = {.lex_state = 66, .external_lex_state = 3}, + [1514] = {.lex_state = 66, .external_lex_state = 2}, [1515] = {.lex_state = 66, .external_lex_state = 2}, [1516] = {.lex_state = 66, .external_lex_state = 2}, - [1517] = {.lex_state = 66, .external_lex_state = 3}, - [1518] = {.lex_state = 66, .external_lex_state = 3}, - [1519] = {.lex_state = 66, .external_lex_state = 2}, + [1517] = {.lex_state = 66, .external_lex_state = 2}, + [1518] = {.lex_state = 66, .external_lex_state = 2}, + [1519] = {.lex_state = 66, .external_lex_state = 3}, [1520] = {.lex_state = 66, .external_lex_state = 2}, - [1521] = {.lex_state = 66, .external_lex_state = 2}, - [1522] = {.lex_state = 66, .external_lex_state = 2}, + [1521] = {.lex_state = 66, .external_lex_state = 3}, + [1522] = {.lex_state = 66, .external_lex_state = 3}, [1523] = {.lex_state = 66, .external_lex_state = 3}, [1524] = {.lex_state = 66, .external_lex_state = 3}, - [1525] = {.lex_state = 66, .external_lex_state = 3}, + [1525] = {.lex_state = 66, .external_lex_state = 2}, [1526] = {.lex_state = 66, .external_lex_state = 2}, [1527] = {.lex_state = 66, .external_lex_state = 2}, [1528] = {.lex_state = 66, .external_lex_state = 2}, - [1529] = {.lex_state = 66, .external_lex_state = 3}, - [1530] = {.lex_state = 66, .external_lex_state = 2}, + [1529] = {.lex_state = 11, .external_lex_state = 2}, + [1530] = {.lex_state = 66, .external_lex_state = 3}, [1531] = {.lex_state = 66, .external_lex_state = 3}, [1532] = {.lex_state = 66, .external_lex_state = 3}, [1533] = {.lex_state = 66, .external_lex_state = 3}, [1534] = {.lex_state = 66, .external_lex_state = 3}, [1535] = {.lex_state = 66, .external_lex_state = 3}, - [1536] = {.lex_state = 66, .external_lex_state = 3}, - [1537] = {.lex_state = 66, .external_lex_state = 3}, - [1538] = {.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 = 3}, [1539] = {.lex_state = 66, .external_lex_state = 2}, [1540] = {.lex_state = 66, .external_lex_state = 3}, - [1541] = {.lex_state = 66, .external_lex_state = 2}, - [1542] = {.lex_state = 66, .external_lex_state = 3}, + [1541] = {.lex_state = 66, .external_lex_state = 3}, + [1542] = {.lex_state = 66, .external_lex_state = 2}, [1543] = {.lex_state = 66, .external_lex_state = 3}, [1544] = {.lex_state = 66, .external_lex_state = 2}, - [1545] = {.lex_state = 66, .external_lex_state = 3}, - [1546] = {.lex_state = 66, .external_lex_state = 3}, + [1545] = {.lex_state = 66, .external_lex_state = 2}, + [1546] = {.lex_state = 66, .external_lex_state = 2}, [1547] = {.lex_state = 66, .external_lex_state = 3}, - [1548] = {.lex_state = 66, .external_lex_state = 2}, - [1549] = {.lex_state = 66, .external_lex_state = 2}, + [1548] = {.lex_state = 66, .external_lex_state = 3}, + [1549] = {.lex_state = 66, .external_lex_state = 3}, [1550] = {.lex_state = 66, .external_lex_state = 2}, - [1551] = {.lex_state = 66, .external_lex_state = 2}, + [1551] = {.lex_state = 66, .external_lex_state = 3}, [1552] = {.lex_state = 66, .external_lex_state = 2}, [1553] = {.lex_state = 66, .external_lex_state = 2}, - [1554] = {.lex_state = 66, .external_lex_state = 3}, - [1555] = {.lex_state = 66, .external_lex_state = 3}, - [1556] = {.lex_state = 66, .external_lex_state = 2}, + [1554] = {.lex_state = 66, .external_lex_state = 2}, + [1555] = {.lex_state = 66, .external_lex_state = 2}, + [1556] = {.lex_state = 66, .external_lex_state = 3}, [1557] = {.lex_state = 66, .external_lex_state = 2}, - [1558] = {.lex_state = 66, .external_lex_state = 2}, + [1558] = {.lex_state = 66, .external_lex_state = 3}, [1559] = {.lex_state = 66, .external_lex_state = 2}, [1560] = {.lex_state = 66, .external_lex_state = 3}, [1561] = {.lex_state = 66, .external_lex_state = 3}, - [1562] = {.lex_state = 66, .external_lex_state = 2}, + [1562] = {.lex_state = 66, .external_lex_state = 3}, [1563] = {.lex_state = 66, .external_lex_state = 2}, - [1564] = {.lex_state = 66, .external_lex_state = 3}, - [1565] = {.lex_state = 66, .external_lex_state = 3}, - [1566] = {.lex_state = 66, .external_lex_state = 3}, - [1567] = {.lex_state = 66, .external_lex_state = 3}, + [1564] = {.lex_state = 66, .external_lex_state = 2}, + [1565] = {.lex_state = 66, .external_lex_state = 2}, + [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 = 66, .external_lex_state = 3}, + [1569] = {.lex_state = 66, .external_lex_state = 2}, [1570] = {.lex_state = 66, .external_lex_state = 3}, - [1571] = {.lex_state = 66, .external_lex_state = 3}, - [1572] = {.lex_state = 66, .external_lex_state = 3}, + [1571] = {.lex_state = 66, .external_lex_state = 2}, + [1572] = {.lex_state = 66, .external_lex_state = 2}, [1573] = {.lex_state = 66, .external_lex_state = 2}, [1574] = {.lex_state = 66, .external_lex_state = 2}, - [1575] = {.lex_state = 66, .external_lex_state = 2}, + [1575] = {.lex_state = 66, .external_lex_state = 3}, [1576] = {.lex_state = 66, .external_lex_state = 3}, - [1577] = {.lex_state = 66, .external_lex_state = 2}, - [1578] = {.lex_state = 66, .external_lex_state = 2}, + [1577] = {.lex_state = 66, .external_lex_state = 3}, + [1578] = {.lex_state = 66, .external_lex_state = 3}, [1579] = {.lex_state = 66, .external_lex_state = 2}, - [1580] = {.lex_state = 66, .external_lex_state = 2}, - [1581] = {.lex_state = 66, .external_lex_state = 2}, + [1580] = {.lex_state = 66, .external_lex_state = 3}, + [1581] = {.lex_state = 66, .external_lex_state = 3}, [1582] = {.lex_state = 66, .external_lex_state = 2}, [1583] = {.lex_state = 66, .external_lex_state = 2}, - [1584] = {.lex_state = 66, .external_lex_state = 2}, + [1584] = {.lex_state = 66, .external_lex_state = 3}, [1585] = {.lex_state = 66, .external_lex_state = 2}, - [1586] = {.lex_state = 66, .external_lex_state = 2}, + [1586] = {.lex_state = 66, .external_lex_state = 3}, [1587] = {.lex_state = 66, .external_lex_state = 2}, [1588] = {.lex_state = 66, .external_lex_state = 2}, - [1589] = {.lex_state = 66, .external_lex_state = 3}, - [1590] = {.lex_state = 66, .external_lex_state = 3}, - [1591] = {.lex_state = 66, .external_lex_state = 2}, - [1592] = {.lex_state = 66, .external_lex_state = 3}, - [1593] = {.lex_state = 66, .external_lex_state = 3}, - [1594] = {.lex_state = 66, .external_lex_state = 3}, - [1595] = {.lex_state = 66, .external_lex_state = 3}, + [1589] = {.lex_state = 66, .external_lex_state = 2}, + [1590] = {.lex_state = 66, .external_lex_state = 2}, + [1591] = {.lex_state = 11, .external_lex_state = 2}, + [1592] = {.lex_state = 66, .external_lex_state = 2}, + [1593] = {.lex_state = 66, .external_lex_state = 2}, + [1594] = {.lex_state = 66, .external_lex_state = 2}, + [1595] = {.lex_state = 66, .external_lex_state = 2}, [1596] = {.lex_state = 66, .external_lex_state = 2}, [1597] = {.lex_state = 66, .external_lex_state = 2}, [1598] = {.lex_state = 66, .external_lex_state = 3}, [1599] = {.lex_state = 66, .external_lex_state = 2}, - [1600] = {.lex_state = 66, .external_lex_state = 2}, - [1601] = {.lex_state = 66, .external_lex_state = 2}, - [1602] = {.lex_state = 66, .external_lex_state = 2}, + [1600] = {.lex_state = 66, .external_lex_state = 3}, + [1601] = {.lex_state = 66, .external_lex_state = 3}, + [1602] = {.lex_state = 66, .external_lex_state = 3}, [1603] = {.lex_state = 66, .external_lex_state = 2}, [1604] = {.lex_state = 66, .external_lex_state = 2}, [1605] = {.lex_state = 66, .external_lex_state = 2}, - [1606] = {.lex_state = 66, .external_lex_state = 2}, + [1606] = {.lex_state = 66, .external_lex_state = 3}, [1607] = {.lex_state = 66, .external_lex_state = 3}, - [1608] = {.lex_state = 66, .external_lex_state = 2}, + [1608] = {.lex_state = 66, .external_lex_state = 3}, [1609] = {.lex_state = 66, .external_lex_state = 2}, [1610] = {.lex_state = 66, .external_lex_state = 2}, [1611] = {.lex_state = 66, .external_lex_state = 2}, @@ -14990,14 +15116,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1669] = {.lex_state = 66, .external_lex_state = 2}, [1670] = {.lex_state = 66, .external_lex_state = 2}, [1671] = {.lex_state = 66, .external_lex_state = 2}, - [1672] = {.lex_state = 66, .external_lex_state = 3}, - [1673] = {.lex_state = 66, .external_lex_state = 3}, + [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 = 3}, - [1676] = {.lex_state = 66, .external_lex_state = 3}, - [1677] = {.lex_state = 66, .external_lex_state = 3}, + [1675] = {.lex_state = 66, .external_lex_state = 2}, + [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 = 3}, + [1679] = {.lex_state = 66, .external_lex_state = 2}, [1680] = {.lex_state = 66, .external_lex_state = 2}, [1681] = {.lex_state = 66, .external_lex_state = 2}, [1682] = {.lex_state = 66, .external_lex_state = 2}, @@ -15010,9 +15136,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1689] = {.lex_state = 66, .external_lex_state = 2}, [1690] = {.lex_state = 66, .external_lex_state = 2}, [1691] = {.lex_state = 66, .external_lex_state = 2}, - [1692] = {.lex_state = 66, .external_lex_state = 3}, - [1693] = {.lex_state = 66, .external_lex_state = 3}, - [1694] = {.lex_state = 66, .external_lex_state = 3}, + [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 = 2}, [1696] = {.lex_state = 66, .external_lex_state = 2}, [1697] = {.lex_state = 66, .external_lex_state = 2}, @@ -15023,7 +15149,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3}, + [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}, @@ -15062,7 +15188,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1741] = {.lex_state = 66, .external_lex_state = 2}, [1742] = {.lex_state = 66, .external_lex_state = 2}, [1743] = {.lex_state = 66, .external_lex_state = 2}, - [1744] = {.lex_state = 11, .external_lex_state = 2}, + [1744] = {.lex_state = 66, .external_lex_state = 2}, [1745] = {.lex_state = 66, .external_lex_state = 2}, [1746] = {.lex_state = 66, .external_lex_state = 2}, [1747] = {.lex_state = 66, .external_lex_state = 2}, @@ -15095,7 +15221,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1774] = {.lex_state = 66, .external_lex_state = 2}, [1775] = {.lex_state = 66, .external_lex_state = 2}, [1776] = {.lex_state = 66, .external_lex_state = 2}, - [1777] = {.lex_state = 11, .external_lex_state = 2}, + [1777] = {.lex_state = 66, .external_lex_state = 2}, [1778] = {.lex_state = 66, .external_lex_state = 2}, [1779] = {.lex_state = 66, .external_lex_state = 2}, [1780] = {.lex_state = 66, .external_lex_state = 2}, @@ -15103,8 +15229,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1782] = {.lex_state = 66, .external_lex_state = 2}, [1783] = {.lex_state = 66, .external_lex_state = 2}, [1784] = {.lex_state = 66, .external_lex_state = 2}, - [1785] = {.lex_state = 66, .external_lex_state = 3}, - [1786] = {.lex_state = 66, .external_lex_state = 2}, + [1785] = {.lex_state = 66, .external_lex_state = 2}, + [1786] = {.lex_state = 11, .external_lex_state = 2}, [1787] = {.lex_state = 66, .external_lex_state = 2}, [1788] = {.lex_state = 66, .external_lex_state = 2}, [1789] = {.lex_state = 66, .external_lex_state = 2}, @@ -15134,7 +15260,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1813] = {.lex_state = 66, .external_lex_state = 2}, [1814] = {.lex_state = 66, .external_lex_state = 2}, [1815] = {.lex_state = 66, .external_lex_state = 2}, - [1816] = {.lex_state = 66, .external_lex_state = 2}, + [1816] = {.lex_state = 11, .external_lex_state = 2}, [1817] = {.lex_state = 66, .external_lex_state = 2}, [1818] = {.lex_state = 66, .external_lex_state = 2}, [1819] = {.lex_state = 66, .external_lex_state = 2}, @@ -15198,7 +15324,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1877] = {.lex_state = 66, .external_lex_state = 2}, [1878] = {.lex_state = 66, .external_lex_state = 2}, [1879] = {.lex_state = 66, .external_lex_state = 2}, - [1880] = {.lex_state = 66, .external_lex_state = 3}, + [1880] = {.lex_state = 66, .external_lex_state = 2}, [1881] = {.lex_state = 66, .external_lex_state = 2}, [1882] = {.lex_state = 66, .external_lex_state = 2}, [1883] = {.lex_state = 66, .external_lex_state = 2}, @@ -15207,34 +15333,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1886] = {.lex_state = 66, .external_lex_state = 2}, [1887] = {.lex_state = 66, .external_lex_state = 2}, [1888] = {.lex_state = 66, .external_lex_state = 2}, - [1889] = {.lex_state = 66, .external_lex_state = 3}, - [1890] = {.lex_state = 11, .external_lex_state = 8}, - [1891] = {.lex_state = 11, .external_lex_state = 6}, - [1892] = {.lex_state = 11, .external_lex_state = 6}, - [1893] = {.lex_state = 11, .external_lex_state = 8}, - [1894] = {.lex_state = 11, .external_lex_state = 2}, - [1895] = {.lex_state = 12, .external_lex_state = 11}, - [1896] = {.lex_state = 12, .external_lex_state = 11}, - [1897] = {.lex_state = 13, .external_lex_state = 12}, - [1898] = {.lex_state = 66, .external_lex_state = 7}, - [1899] = {.lex_state = 66, .external_lex_state = 7}, - [1900] = {.lex_state = 13, .external_lex_state = 12}, - [1901] = {.lex_state = 12, .external_lex_state = 11}, - [1902] = {.lex_state = 12, .external_lex_state = 11}, + [1889] = {.lex_state = 66, .external_lex_state = 2}, + [1890] = {.lex_state = 66, .external_lex_state = 2}, + [1891] = {.lex_state = 66, .external_lex_state = 2}, + [1892] = {.lex_state = 66, .external_lex_state = 2}, + [1893] = {.lex_state = 66, .external_lex_state = 2}, + [1894] = {.lex_state = 66, .external_lex_state = 2}, + [1895] = {.lex_state = 66, .external_lex_state = 2}, + [1896] = {.lex_state = 66, .external_lex_state = 2}, + [1897] = {.lex_state = 66, .external_lex_state = 2}, + [1898] = {.lex_state = 66, .external_lex_state = 2}, + [1899] = {.lex_state = 66, .external_lex_state = 2}, + [1900] = {.lex_state = 66, .external_lex_state = 2}, + [1901] = {.lex_state = 66, .external_lex_state = 2}, + [1902] = {.lex_state = 66, .external_lex_state = 2}, [1903] = {.lex_state = 66, .external_lex_state = 2}, - [1904] = {.lex_state = 12, .external_lex_state = 5}, - [1905] = {.lex_state = 12, .external_lex_state = 5}, + [1904] = {.lex_state = 66, .external_lex_state = 2}, + [1905] = {.lex_state = 66, .external_lex_state = 2}, [1906] = {.lex_state = 66, .external_lex_state = 2}, - [1907] = {.lex_state = 66, .external_lex_state = 6}, + [1907] = {.lex_state = 66, .external_lex_state = 2}, [1908] = {.lex_state = 66, .external_lex_state = 2}, [1909] = {.lex_state = 66, .external_lex_state = 2}, - [1910] = {.lex_state = 66, .external_lex_state = 6}, + [1910] = {.lex_state = 66, .external_lex_state = 2}, [1911] = {.lex_state = 66, .external_lex_state = 2}, - [1912] = {.lex_state = 66, .external_lex_state = 5}, - [1913] = {.lex_state = 66, .external_lex_state = 8}, + [1912] = {.lex_state = 66, .external_lex_state = 2}, + [1913] = {.lex_state = 66, .external_lex_state = 2}, [1914] = {.lex_state = 66, .external_lex_state = 2}, - [1915] = {.lex_state = 66, .external_lex_state = 5}, - [1916] = {.lex_state = 66, .external_lex_state = 8}, + [1915] = {.lex_state = 66, .external_lex_state = 2}, + [1916] = {.lex_state = 66, .external_lex_state = 2}, [1917] = {.lex_state = 66, .external_lex_state = 2}, [1918] = {.lex_state = 66, .external_lex_state = 2}, [1919] = {.lex_state = 66, .external_lex_state = 2}, @@ -15243,45 +15369,45 @@ 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 = 12, .external_lex_state = 11}, - [1926] = {.lex_state = 12, .external_lex_state = 11}, - [1927] = {.lex_state = 66, .external_lex_state = 6}, - [1928] = {.lex_state = 66, .external_lex_state = 6}, - [1929] = {.lex_state = 12, .external_lex_state = 11}, + [1925] = {.lex_state = 66, .external_lex_state = 2}, + [1926] = {.lex_state = 66, .external_lex_state = 2}, + [1927] = {.lex_state = 66, .external_lex_state = 2}, + [1928] = {.lex_state = 66, .external_lex_state = 2}, + [1929] = {.lex_state = 66, .external_lex_state = 2}, [1930] = {.lex_state = 66, .external_lex_state = 2}, - [1931] = {.lex_state = 66, .external_lex_state = 6}, - [1932] = {.lex_state = 12, .external_lex_state = 11}, - [1933] = {.lex_state = 14, .external_lex_state = 11}, - [1934] = {.lex_state = 14, .external_lex_state = 11}, - [1935] = {.lex_state = 14, .external_lex_state = 11}, - [1936] = {.lex_state = 14, .external_lex_state = 11}, - [1937] = {.lex_state = 14, .external_lex_state = 11}, - [1938] = {.lex_state = 14, .external_lex_state = 11}, - [1939] = {.lex_state = 14, .external_lex_state = 11}, - [1940] = {.lex_state = 14, .external_lex_state = 11}, - [1941] = {.lex_state = 14, .external_lex_state = 11}, - [1942] = {.lex_state = 14, .external_lex_state = 11}, - [1943] = {.lex_state = 14, .external_lex_state = 11}, - [1944] = {.lex_state = 14, .external_lex_state = 11}, - [1945] = {.lex_state = 14, .external_lex_state = 11}, - [1946] = {.lex_state = 14, .external_lex_state = 11}, - [1947] = {.lex_state = 66, .external_lex_state = 2}, - [1948] = {.lex_state = 66, .external_lex_state = 2}, + [1931] = {.lex_state = 66, .external_lex_state = 2}, + [1932] = {.lex_state = 66, .external_lex_state = 2}, + [1933] = {.lex_state = 66, .external_lex_state = 2}, + [1934] = {.lex_state = 11, .external_lex_state = 8}, + [1935] = {.lex_state = 11, .external_lex_state = 6}, + [1936] = {.lex_state = 11, .external_lex_state = 8}, + [1937] = {.lex_state = 11, .external_lex_state = 6}, + [1938] = {.lex_state = 11, .external_lex_state = 2}, + [1939] = {.lex_state = 12, .external_lex_state = 11}, + [1940] = {.lex_state = 12, .external_lex_state = 11}, + [1941] = {.lex_state = 13, .external_lex_state = 12}, + [1942] = {.lex_state = 13, .external_lex_state = 12}, + [1943] = {.lex_state = 66, .external_lex_state = 7}, + [1944] = {.lex_state = 66, .external_lex_state = 7}, + [1945] = {.lex_state = 12, .external_lex_state = 5}, + [1946] = {.lex_state = 12, .external_lex_state = 11}, + [1947] = {.lex_state = 12, .external_lex_state = 11}, + [1948] = {.lex_state = 12, .external_lex_state = 5}, [1949] = {.lex_state = 66, .external_lex_state = 2}, [1950] = {.lex_state = 66, .external_lex_state = 2}, - [1951] = {.lex_state = 14, .external_lex_state = 11}, - [1952] = {.lex_state = 14, .external_lex_state = 11}, - [1953] = {.lex_state = 66, .external_lex_state = 2}, - [1954] = {.lex_state = 66, .external_lex_state = 2}, - [1955] = {.lex_state = 66, .external_lex_state = 2}, - [1956] = {.lex_state = 66, .external_lex_state = 2}, - [1957] = {.lex_state = 14, .external_lex_state = 11}, - [1958] = {.lex_state = 14, .external_lex_state = 11}, + [1951] = {.lex_state = 66, .external_lex_state = 2}, + [1952] = {.lex_state = 66, .external_lex_state = 2}, + [1953] = {.lex_state = 66, .external_lex_state = 6}, + [1954] = {.lex_state = 66, .external_lex_state = 6}, + [1955] = {.lex_state = 66, .external_lex_state = 5}, + [1956] = {.lex_state = 66, .external_lex_state = 5}, + [1957] = {.lex_state = 66, .external_lex_state = 8}, + [1958] = {.lex_state = 66, .external_lex_state = 2}, [1959] = {.lex_state = 66, .external_lex_state = 2}, - [1960] = {.lex_state = 66, .external_lex_state = 2}, + [1960] = {.lex_state = 66, .external_lex_state = 8}, [1961] = {.lex_state = 66, .external_lex_state = 2}, [1962] = {.lex_state = 66, .external_lex_state = 2}, - [1963] = {.lex_state = 66, .external_lex_state = 2}, + [1963] = {.lex_state = 12, .external_lex_state = 11}, [1964] = {.lex_state = 66, .external_lex_state = 2}, [1965] = {.lex_state = 66, .external_lex_state = 2}, [1966] = {.lex_state = 66, .external_lex_state = 2}, @@ -15289,38 +15415,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1968] = {.lex_state = 66, .external_lex_state = 2}, [1969] = {.lex_state = 66, .external_lex_state = 2}, [1970] = {.lex_state = 66, .external_lex_state = 2}, - [1971] = {.lex_state = 66, .external_lex_state = 2}, - [1972] = {.lex_state = 66, .external_lex_state = 2}, - [1973] = {.lex_state = 66, .external_lex_state = 2}, - [1974] = {.lex_state = 66, .external_lex_state = 2}, - [1975] = {.lex_state = 66, .external_lex_state = 2}, - [1976] = {.lex_state = 66, .external_lex_state = 2}, - [1977] = {.lex_state = 66, .external_lex_state = 2}, - [1978] = {.lex_state = 66, .external_lex_state = 2}, - [1979] = {.lex_state = 66, .external_lex_state = 12}, - [1980] = {.lex_state = 66, .external_lex_state = 2}, - [1981] = {.lex_state = 66, .external_lex_state = 2}, - [1982] = {.lex_state = 66, .external_lex_state = 2}, - [1983] = {.lex_state = 66, .external_lex_state = 2}, - [1984] = {.lex_state = 66, .external_lex_state = 2}, - [1985] = {.lex_state = 66, .external_lex_state = 2}, + [1971] = {.lex_state = 66, .external_lex_state = 6}, + [1972] = {.lex_state = 12, .external_lex_state = 11}, + [1973] = {.lex_state = 66, .external_lex_state = 6}, + [1974] = {.lex_state = 66, .external_lex_state = 6}, + [1975] = {.lex_state = 12, .external_lex_state = 11}, + [1976] = {.lex_state = 12, .external_lex_state = 11}, + [1977] = {.lex_state = 14, .external_lex_state = 11}, + [1978] = {.lex_state = 14, .external_lex_state = 11}, + [1979] = {.lex_state = 66, .external_lex_state = 2}, + [1980] = {.lex_state = 14, .external_lex_state = 11}, + [1981] = {.lex_state = 14, .external_lex_state = 11}, + [1982] = {.lex_state = 14, .external_lex_state = 11}, + [1983] = {.lex_state = 14, .external_lex_state = 11}, + [1984] = {.lex_state = 14, .external_lex_state = 11}, + [1985] = {.lex_state = 14, .external_lex_state = 11}, [1986] = {.lex_state = 66, .external_lex_state = 2}, - [1987] = {.lex_state = 66, .external_lex_state = 2}, + [1987] = {.lex_state = 14, .external_lex_state = 11}, [1988] = {.lex_state = 66, .external_lex_state = 2}, - [1989] = {.lex_state = 66, .external_lex_state = 2}, + [1989] = {.lex_state = 14, .external_lex_state = 11}, [1990] = {.lex_state = 66, .external_lex_state = 2}, [1991] = {.lex_state = 66, .external_lex_state = 2}, - [1992] = {.lex_state = 66, .external_lex_state = 2}, + [1992] = {.lex_state = 14, .external_lex_state = 11}, [1993] = {.lex_state = 66, .external_lex_state = 2}, [1994] = {.lex_state = 66, .external_lex_state = 2}, - [1995] = {.lex_state = 66, .external_lex_state = 2}, - [1996] = {.lex_state = 66, .external_lex_state = 2}, + [1995] = {.lex_state = 14, .external_lex_state = 11}, + [1996] = {.lex_state = 14, .external_lex_state = 11}, [1997] = {.lex_state = 66, .external_lex_state = 2}, - [1998] = {.lex_state = 66, .external_lex_state = 2}, - [1999] = {.lex_state = 66, .external_lex_state = 2}, - [2000] = {.lex_state = 66, .external_lex_state = 2}, - [2001] = {.lex_state = 66, .external_lex_state = 2}, - [2002] = {.lex_state = 66, .external_lex_state = 2}, + [1998] = {.lex_state = 14, .external_lex_state = 11}, + [1999] = {.lex_state = 14, .external_lex_state = 11}, + [2000] = {.lex_state = 14, .external_lex_state = 11}, + [2001] = {.lex_state = 14, .external_lex_state = 11}, + [2002] = {.lex_state = 14, .external_lex_state = 11}, [2003] = {.lex_state = 66, .external_lex_state = 2}, [2004] = {.lex_state = 66, .external_lex_state = 2}, [2005] = {.lex_state = 66, .external_lex_state = 2}, @@ -15330,12 +15456,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2012] = {.lex_state = 66, .external_lex_state = 12}, [2013] = {.lex_state = 66, .external_lex_state = 2}, [2014] = {.lex_state = 66, .external_lex_state = 2}, [2015] = {.lex_state = 66, .external_lex_state = 2}, [2016] = {.lex_state = 66, .external_lex_state = 2}, - [2017] = {.lex_state = 66, .external_lex_state = 2}, + [2017] = {.lex_state = 66, .external_lex_state = 12}, [2018] = {.lex_state = 66, .external_lex_state = 2}, [2019] = {.lex_state = 66, .external_lex_state = 2}, [2020] = {.lex_state = 66, .external_lex_state = 2}, @@ -15367,7 +15493,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2046] = {.lex_state = 66, .external_lex_state = 2}, [2047] = {.lex_state = 66, .external_lex_state = 2}, [2048] = {.lex_state = 66, .external_lex_state = 2}, - [2049] = {.lex_state = 66, .external_lex_state = 12}, + [2049] = {.lex_state = 66, .external_lex_state = 2}, [2050] = {.lex_state = 66, .external_lex_state = 2}, [2051] = {.lex_state = 66, .external_lex_state = 2}, [2052] = {.lex_state = 66, .external_lex_state = 2}, @@ -15385,616 +15511,616 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2064] = {.lex_state = 66, .external_lex_state = 2}, [2065] = {.lex_state = 66, .external_lex_state = 2}, [2066] = {.lex_state = 66, .external_lex_state = 2}, - [2067] = {.lex_state = 66, .external_lex_state = 3}, - [2068] = {.lex_state = 66, .external_lex_state = 3}, - [2069] = {.lex_state = 66, .external_lex_state = 3}, - [2070] = {.lex_state = 66, .external_lex_state = 3}, - [2071] = {.lex_state = 66, .external_lex_state = 13}, - [2072] = {.lex_state = 66, .external_lex_state = 13}, - [2073] = {.lex_state = 66, .external_lex_state = 13}, - [2074] = {.lex_state = 66, .external_lex_state = 13}, - [2075] = {.lex_state = 66, .external_lex_state = 13}, - [2076] = {.lex_state = 66, .external_lex_state = 13}, - [2077] = {.lex_state = 66, .external_lex_state = 13}, - [2078] = {.lex_state = 66, .external_lex_state = 13}, - [2079] = {.lex_state = 66, .external_lex_state = 13}, - [2080] = {.lex_state = 66, .external_lex_state = 13}, - [2081] = {.lex_state = 66, .external_lex_state = 13}, - [2082] = {.lex_state = 66, .external_lex_state = 12}, - [2083] = {.lex_state = 66, .external_lex_state = 12}, - [2084] = {.lex_state = 66, .external_lex_state = 12}, - [2085] = {.lex_state = 66, .external_lex_state = 12}, - [2086] = {.lex_state = 66, .external_lex_state = 12}, - [2087] = {.lex_state = 66, .external_lex_state = 12}, - [2088] = {.lex_state = 66, .external_lex_state = 12}, - [2089] = {.lex_state = 66, .external_lex_state = 12}, - [2090] = {.lex_state = 66, .external_lex_state = 12}, - [2091] = {.lex_state = 15, .external_lex_state = 11}, - [2092] = {.lex_state = 66, .external_lex_state = 12}, - [2093] = {.lex_state = 15, .external_lex_state = 11}, - [2094] = {.lex_state = 23, .external_lex_state = 14}, - [2095] = {.lex_state = 23, .external_lex_state = 14}, - [2096] = {.lex_state = 15, .external_lex_state = 5}, - [2097] = {.lex_state = 15, .external_lex_state = 11}, - [2098] = {.lex_state = 15, .external_lex_state = 5}, - [2099] = {.lex_state = 15, .external_lex_state = 11}, - [2100] = {.lex_state = 15, .external_lex_state = 5}, - [2101] = {.lex_state = 15, .external_lex_state = 11}, - [2102] = {.lex_state = 15, .external_lex_state = 11}, - [2103] = {.lex_state = 15, .external_lex_state = 11}, - [2104] = {.lex_state = 15, .external_lex_state = 11}, - [2105] = {.lex_state = 15, .external_lex_state = 11}, - [2106] = {.lex_state = 15, .external_lex_state = 11}, - [2107] = {.lex_state = 23, .external_lex_state = 14}, - [2108] = {.lex_state = 15, .external_lex_state = 12}, - [2109] = {.lex_state = 15, .external_lex_state = 11}, - [2110] = {.lex_state = 15, .external_lex_state = 11}, - [2111] = {.lex_state = 15, .external_lex_state = 12}, - [2112] = {.lex_state = 15, .external_lex_state = 11}, - [2113] = {.lex_state = 15, .external_lex_state = 11}, - [2114] = {.lex_state = 15, .external_lex_state = 15}, - [2115] = {.lex_state = 23, .external_lex_state = 14}, - [2116] = {.lex_state = 15, .external_lex_state = 15}, - [2117] = {.lex_state = 15, .external_lex_state = 15}, - [2118] = {.lex_state = 15, .external_lex_state = 11}, - [2119] = {.lex_state = 15, .external_lex_state = 15}, - [2120] = {.lex_state = 15, .external_lex_state = 16}, - [2121] = {.lex_state = 15, .external_lex_state = 11}, - [2122] = {.lex_state = 15, .external_lex_state = 14}, - [2123] = {.lex_state = 15, .external_lex_state = 5}, - [2124] = {.lex_state = 23, .external_lex_state = 11}, - [2125] = {.lex_state = 23, .external_lex_state = 11}, - [2126] = {.lex_state = 15, .external_lex_state = 5}, - [2127] = {.lex_state = 15, .external_lex_state = 16}, - [2128] = {.lex_state = 15, .external_lex_state = 14}, - [2129] = {.lex_state = 15, .external_lex_state = 11}, + [2067] = {.lex_state = 66, .external_lex_state = 2}, + [2068] = {.lex_state = 66, .external_lex_state = 2}, + [2069] = {.lex_state = 66, .external_lex_state = 2}, + [2070] = {.lex_state = 66, .external_lex_state = 2}, + [2071] = {.lex_state = 66, .external_lex_state = 2}, + [2072] = {.lex_state = 66, .external_lex_state = 2}, + [2073] = {.lex_state = 66, .external_lex_state = 2}, + [2074] = {.lex_state = 66, .external_lex_state = 2}, + [2075] = {.lex_state = 66, .external_lex_state = 2}, + [2076] = {.lex_state = 66, .external_lex_state = 2}, + [2077] = {.lex_state = 66, .external_lex_state = 2}, + [2078] = {.lex_state = 66, .external_lex_state = 2}, + [2079] = {.lex_state = 66, .external_lex_state = 2}, + [2080] = {.lex_state = 66, .external_lex_state = 2}, + [2081] = {.lex_state = 66, .external_lex_state = 2}, + [2082] = {.lex_state = 66, .external_lex_state = 2}, + [2083] = {.lex_state = 66, .external_lex_state = 2}, + [2084] = {.lex_state = 66, .external_lex_state = 2}, + [2085] = {.lex_state = 66, .external_lex_state = 2}, + [2086] = {.lex_state = 66, .external_lex_state = 2}, + [2087] = {.lex_state = 66, .external_lex_state = 2}, + [2088] = {.lex_state = 66, .external_lex_state = 2}, + [2089] = {.lex_state = 66, .external_lex_state = 2}, + [2090] = {.lex_state = 66, .external_lex_state = 2}, + [2091] = {.lex_state = 66, .external_lex_state = 2}, + [2092] = {.lex_state = 66, .external_lex_state = 2}, + [2093] = {.lex_state = 66, .external_lex_state = 2}, + [2094] = {.lex_state = 66, .external_lex_state = 2}, + [2095] = {.lex_state = 66, .external_lex_state = 2}, + [2096] = {.lex_state = 66, .external_lex_state = 2}, + [2097] = {.lex_state = 66, .external_lex_state = 2}, + [2098] = {.lex_state = 66, .external_lex_state = 2}, + [2099] = {.lex_state = 66, .external_lex_state = 2}, + [2100] = {.lex_state = 66, .external_lex_state = 2}, + [2101] = {.lex_state = 66, .external_lex_state = 2}, + [2102] = {.lex_state = 66, .external_lex_state = 2}, + [2103] = {.lex_state = 66, .external_lex_state = 2}, + [2104] = {.lex_state = 66, .external_lex_state = 2}, + [2105] = {.lex_state = 66, .external_lex_state = 2}, + [2106] = {.lex_state = 66, .external_lex_state = 2}, + [2107] = {.lex_state = 66, .external_lex_state = 2}, + [2108] = {.lex_state = 66, .external_lex_state = 2}, + [2109] = {.lex_state = 66, .external_lex_state = 2}, + [2110] = {.lex_state = 66, .external_lex_state = 2}, + [2111] = {.lex_state = 66, .external_lex_state = 3}, + [2112] = {.lex_state = 66, .external_lex_state = 3}, + [2113] = {.lex_state = 66, .external_lex_state = 3}, + [2114] = {.lex_state = 66, .external_lex_state = 3}, + [2115] = {.lex_state = 66, .external_lex_state = 13}, + [2116] = {.lex_state = 66, .external_lex_state = 13}, + [2117] = {.lex_state = 66, .external_lex_state = 13}, + [2118] = {.lex_state = 66, .external_lex_state = 13}, + [2119] = {.lex_state = 66, .external_lex_state = 13}, + [2120] = {.lex_state = 66, .external_lex_state = 13}, + [2121] = {.lex_state = 66, .external_lex_state = 13}, + [2122] = {.lex_state = 66, .external_lex_state = 13}, + [2123] = {.lex_state = 66, .external_lex_state = 13}, + [2124] = {.lex_state = 66, .external_lex_state = 13}, + [2125] = {.lex_state = 66, .external_lex_state = 13}, + [2126] = {.lex_state = 66, .external_lex_state = 12}, + [2127] = {.lex_state = 66, .external_lex_state = 12}, + [2128] = {.lex_state = 66, .external_lex_state = 12}, + [2129] = {.lex_state = 66, .external_lex_state = 12}, [2130] = {.lex_state = 15, .external_lex_state = 11}, - [2131] = {.lex_state = 15, .external_lex_state = 7}, - [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 = 11}, - [2137] = {.lex_state = 15, .external_lex_state = 11}, - [2138] = {.lex_state = 15, .external_lex_state = 11}, + [2131] = {.lex_state = 15, .external_lex_state = 11}, + [2132] = {.lex_state = 66, .external_lex_state = 12}, + [2133] = {.lex_state = 66, .external_lex_state = 12}, + [2134] = {.lex_state = 66, .external_lex_state = 12}, + [2135] = {.lex_state = 66, .external_lex_state = 12}, + [2136] = {.lex_state = 66, .external_lex_state = 12}, + [2137] = {.lex_state = 66, .external_lex_state = 12}, + [2138] = {.lex_state = 23, .external_lex_state = 14}, [2139] = {.lex_state = 15, .external_lex_state = 11}, - [2140] = {.lex_state = 15, .external_lex_state = 11}, - [2141] = {.lex_state = 15, .external_lex_state = 11}, + [2140] = {.lex_state = 15, .external_lex_state = 5}, + [2141] = {.lex_state = 15, .external_lex_state = 5}, [2142] = {.lex_state = 15, .external_lex_state = 11}, - [2143] = {.lex_state = 15, .external_lex_state = 2}, - [2144] = {.lex_state = 15, .external_lex_state = 11}, + [2143] = {.lex_state = 15, .external_lex_state = 5}, + [2144] = {.lex_state = 23, .external_lex_state = 14}, [2145] = {.lex_state = 15, .external_lex_state = 11}, - [2146] = {.lex_state = 15, .external_lex_state = 11}, + [2146] = {.lex_state = 23, .external_lex_state = 14}, [2147] = {.lex_state = 15, .external_lex_state = 11}, - [2148] = {.lex_state = 15, .external_lex_state = 11}, - [2149] = {.lex_state = 15, .external_lex_state = 7}, - [2150] = {.lex_state = 15, .external_lex_state = 2}, + [2148] = {.lex_state = 23, .external_lex_state = 14}, + [2149] = {.lex_state = 15, .external_lex_state = 15}, + [2150] = {.lex_state = 15, .external_lex_state = 11}, [2151] = {.lex_state = 15, .external_lex_state = 11}, - [2152] = {.lex_state = 15, .external_lex_state = 2}, - [2153] = {.lex_state = 15, .external_lex_state = 7}, + [2152] = {.lex_state = 15, .external_lex_state = 11}, + [2153] = {.lex_state = 15, .external_lex_state = 11}, [2154] = {.lex_state = 15, .external_lex_state = 11}, [2155] = {.lex_state = 15, .external_lex_state = 11}, - [2156] = {.lex_state = 15, .external_lex_state = 11}, - [2157] = {.lex_state = 23, .external_lex_state = 14}, + [2156] = {.lex_state = 15, .external_lex_state = 12}, + [2157] = {.lex_state = 15, .external_lex_state = 11}, [2158] = {.lex_state = 15, .external_lex_state = 11}, - [2159] = {.lex_state = 15, .external_lex_state = 11}, - [2160] = {.lex_state = 15, .external_lex_state = 11}, - [2161] = {.lex_state = 15, .external_lex_state = 11}, - [2162] = {.lex_state = 15, .external_lex_state = 7}, + [2159] = {.lex_state = 15, .external_lex_state = 15}, + [2160] = {.lex_state = 15, .external_lex_state = 12}, + [2161] = {.lex_state = 15, .external_lex_state = 15}, + [2162] = {.lex_state = 15, .external_lex_state = 15}, [2163] = {.lex_state = 15, .external_lex_state = 11}, - [2164] = {.lex_state = 15, .external_lex_state = 11}, - [2165] = {.lex_state = 66, .external_lex_state = 12}, - [2166] = {.lex_state = 15, .external_lex_state = 11}, - [2167] = {.lex_state = 15, .external_lex_state = 11}, - [2168] = {.lex_state = 15, .external_lex_state = 11}, - [2169] = {.lex_state = 15, .external_lex_state = 11}, + [2164] = {.lex_state = 15, .external_lex_state = 16}, + [2165] = {.lex_state = 23, .external_lex_state = 11}, + [2166] = {.lex_state = 15, .external_lex_state = 5}, + [2167] = {.lex_state = 23, .external_lex_state = 11}, + [2168] = {.lex_state = 15, .external_lex_state = 16}, + [2169] = {.lex_state = 15, .external_lex_state = 14}, [2170] = {.lex_state = 15, .external_lex_state = 11}, - [2171] = {.lex_state = 15, .external_lex_state = 11}, - [2172] = {.lex_state = 15, .external_lex_state = 11}, + [2171] = {.lex_state = 15, .external_lex_state = 14}, + [2172] = {.lex_state = 15, .external_lex_state = 5}, [2173] = {.lex_state = 15, .external_lex_state = 11}, - [2174] = {.lex_state = 15, .external_lex_state = 11}, + [2174] = {.lex_state = 15, .external_lex_state = 16}, [2175] = {.lex_state = 15, .external_lex_state = 11}, - [2176] = {.lex_state = 15, .external_lex_state = 12}, - [2177] = {.lex_state = 15, .external_lex_state = 16}, + [2176] = {.lex_state = 15, .external_lex_state = 7}, + [2177] = {.lex_state = 15, .external_lex_state = 15}, [2178] = {.lex_state = 15, .external_lex_state = 12}, - [2179] = {.lex_state = 15, .external_lex_state = 15}, - [2180] = {.lex_state = 15, .external_lex_state = 15}, - [2181] = {.lex_state = 15, .external_lex_state = 15}, - [2182] = {.lex_state = 15, .external_lex_state = 15}, + [2179] = {.lex_state = 15, .external_lex_state = 2}, + [2180] = {.lex_state = 15, .external_lex_state = 11}, + [2181] = {.lex_state = 15, .external_lex_state = 11}, + [2182] = {.lex_state = 15, .external_lex_state = 2}, [2183] = {.lex_state = 15, .external_lex_state = 11}, - [2184] = {.lex_state = 15, .external_lex_state = 11}, + [2184] = {.lex_state = 66, .external_lex_state = 12}, [2185] = {.lex_state = 15, .external_lex_state = 11}, [2186] = {.lex_state = 15, .external_lex_state = 11}, [2187] = {.lex_state = 15, .external_lex_state = 11}, - [2188] = {.lex_state = 15, .external_lex_state = 11}, + [2188] = {.lex_state = 15, .external_lex_state = 7}, [2189] = {.lex_state = 15, .external_lex_state = 11}, - [2190] = {.lex_state = 15, .external_lex_state = 11}, - [2191] = {.lex_state = 15, .external_lex_state = 7}, + [2190] = {.lex_state = 15, .external_lex_state = 15}, + [2191] = {.lex_state = 15, .external_lex_state = 11}, [2192] = {.lex_state = 15, .external_lex_state = 11}, - [2193] = {.lex_state = 15, .external_lex_state = 7}, + [2193] = {.lex_state = 15, .external_lex_state = 11}, [2194] = {.lex_state = 15, .external_lex_state = 11}, [2195] = {.lex_state = 15, .external_lex_state = 16}, - [2196] = {.lex_state = 15, .external_lex_state = 11}, - [2197] = {.lex_state = 15, .external_lex_state = 14}, - [2198] = {.lex_state = 15, .external_lex_state = 15}, - [2199] = {.lex_state = 15, .external_lex_state = 15}, - [2200] = {.lex_state = 15, .external_lex_state = 15}, - [2201] = {.lex_state = 15, .external_lex_state = 12}, - [2202] = {.lex_state = 15, .external_lex_state = 6}, - [2203] = {.lex_state = 15, .external_lex_state = 12}, - [2204] = {.lex_state = 15, .external_lex_state = 12}, - [2205] = {.lex_state = 15, .external_lex_state = 12}, - [2206] = {.lex_state = 15, .external_lex_state = 14}, - [2207] = {.lex_state = 15, .external_lex_state = 15}, - [2208] = {.lex_state = 15, .external_lex_state = 14}, - [2209] = {.lex_state = 15, .external_lex_state = 16}, - [2210] = {.lex_state = 15, .external_lex_state = 12}, - [2211] = {.lex_state = 15, .external_lex_state = 14}, - [2212] = {.lex_state = 15, .external_lex_state = 15}, + [2196] = {.lex_state = 15, .external_lex_state = 15}, + [2197] = {.lex_state = 15, .external_lex_state = 11}, + [2198] = {.lex_state = 15, .external_lex_state = 11}, + [2199] = {.lex_state = 15, .external_lex_state = 11}, + [2200] = {.lex_state = 15, .external_lex_state = 11}, + [2201] = {.lex_state = 15, .external_lex_state = 11}, + [2202] = {.lex_state = 23, .external_lex_state = 14}, + [2203] = {.lex_state = 15, .external_lex_state = 11}, + [2204] = {.lex_state = 15, .external_lex_state = 11}, + [2205] = {.lex_state = 15, .external_lex_state = 11}, + [2206] = {.lex_state = 15, .external_lex_state = 11}, + [2207] = {.lex_state = 15, .external_lex_state = 11}, + [2208] = {.lex_state = 15, .external_lex_state = 11}, + [2209] = {.lex_state = 15, .external_lex_state = 2}, + [2210] = {.lex_state = 15, .external_lex_state = 11}, + [2211] = {.lex_state = 15, .external_lex_state = 11}, + [2212] = {.lex_state = 15, .external_lex_state = 11}, [2213] = {.lex_state = 15, .external_lex_state = 15}, - [2214] = {.lex_state = 15, .external_lex_state = 15}, - [2215] = {.lex_state = 15, .external_lex_state = 8}, - [2216] = {.lex_state = 15, .external_lex_state = 15}, - [2217] = {.lex_state = 15, .external_lex_state = 15}, - [2218] = {.lex_state = 15, .external_lex_state = 15}, - [2219] = {.lex_state = 15, .external_lex_state = 12}, - [2220] = {.lex_state = 15, .external_lex_state = 15}, - [2221] = {.lex_state = 15, .external_lex_state = 14}, - [2222] = {.lex_state = 15, .external_lex_state = 16}, - [2223] = {.lex_state = 15, .external_lex_state = 16}, - [2224] = {.lex_state = 15, .external_lex_state = 15}, - [2225] = {.lex_state = 15, .external_lex_state = 6}, - [2226] = {.lex_state = 15, .external_lex_state = 12}, - [2227] = {.lex_state = 15, .external_lex_state = 15}, - [2228] = {.lex_state = 15, .external_lex_state = 15}, - [2229] = {.lex_state = 15, .external_lex_state = 8}, - [2230] = {.lex_state = 15, .external_lex_state = 12}, - [2231] = {.lex_state = 15, .external_lex_state = 15}, - [2232] = {.lex_state = 15, .external_lex_state = 15}, - [2233] = {.lex_state = 15, .external_lex_state = 12}, - [2234] = {.lex_state = 15, .external_lex_state = 15}, - [2235] = {.lex_state = 15, .external_lex_state = 15}, - [2236] = {.lex_state = 15, .external_lex_state = 6}, - [2237] = {.lex_state = 15, .external_lex_state = 15}, - [2238] = {.lex_state = 15, .external_lex_state = 15}, - [2239] = {.lex_state = 15, .external_lex_state = 12}, - [2240] = {.lex_state = 15, .external_lex_state = 15}, - [2241] = {.lex_state = 15, .external_lex_state = 12}, - [2242] = {.lex_state = 15, .external_lex_state = 8}, + [2214] = {.lex_state = 15, .external_lex_state = 11}, + [2215] = {.lex_state = 15, .external_lex_state = 11}, + [2216] = {.lex_state = 15, .external_lex_state = 11}, + [2217] = {.lex_state = 15, .external_lex_state = 11}, + [2218] = {.lex_state = 15, .external_lex_state = 11}, + [2219] = {.lex_state = 15, .external_lex_state = 11}, + [2220] = {.lex_state = 15, .external_lex_state = 11}, + [2221] = {.lex_state = 15, .external_lex_state = 11}, + [2222] = {.lex_state = 15, .external_lex_state = 11}, + [2223] = {.lex_state = 15, .external_lex_state = 11}, + [2224] = {.lex_state = 15, .external_lex_state = 11}, + [2225] = {.lex_state = 15, .external_lex_state = 11}, + [2226] = {.lex_state = 15, .external_lex_state = 7}, + [2227] = {.lex_state = 15, .external_lex_state = 11}, + [2228] = {.lex_state = 15, .external_lex_state = 7}, + [2229] = {.lex_state = 15, .external_lex_state = 7}, + [2230] = {.lex_state = 15, .external_lex_state = 11}, + [2231] = {.lex_state = 15, .external_lex_state = 7}, + [2232] = {.lex_state = 15, .external_lex_state = 11}, + [2233] = {.lex_state = 15, .external_lex_state = 11}, + [2234] = {.lex_state = 15, .external_lex_state = 11}, + [2235] = {.lex_state = 15, .external_lex_state = 11}, + [2236] = {.lex_state = 15, .external_lex_state = 11}, + [2237] = {.lex_state = 15, .external_lex_state = 11}, + [2238] = {.lex_state = 15, .external_lex_state = 11}, + [2239] = {.lex_state = 15, .external_lex_state = 11}, + [2240] = {.lex_state = 15, .external_lex_state = 12}, + [2241] = {.lex_state = 15, .external_lex_state = 16}, + [2242] = {.lex_state = 15, .external_lex_state = 6}, [2243] = {.lex_state = 15, .external_lex_state = 15}, [2244] = {.lex_state = 15, .external_lex_state = 15}, - [2245] = {.lex_state = 15, .external_lex_state = 12}, - [2246] = {.lex_state = 15, .external_lex_state = 12}, - [2247] = {.lex_state = 15, .external_lex_state = 16}, - [2248] = {.lex_state = 23, .external_lex_state = 12}, - [2249] = {.lex_state = 15, .external_lex_state = 16}, - [2250] = {.lex_state = 15, .external_lex_state = 14}, - [2251] = {.lex_state = 23, .external_lex_state = 12}, + [2245] = {.lex_state = 15, .external_lex_state = 15}, + [2246] = {.lex_state = 15, .external_lex_state = 15}, + [2247] = {.lex_state = 15, .external_lex_state = 15}, + [2248] = {.lex_state = 15, .external_lex_state = 15}, + [2249] = {.lex_state = 15, .external_lex_state = 15}, + [2250] = {.lex_state = 15, .external_lex_state = 15}, + [2251] = {.lex_state = 15, .external_lex_state = 12}, [2252] = {.lex_state = 15, .external_lex_state = 12}, - [2253] = {.lex_state = 23, .external_lex_state = 15}, - [2254] = {.lex_state = 23, .external_lex_state = 14}, + [2253] = {.lex_state = 15, .external_lex_state = 15}, + [2254] = {.lex_state = 15, .external_lex_state = 12}, [2255] = {.lex_state = 15, .external_lex_state = 12}, - [2256] = {.lex_state = 23, .external_lex_state = 11}, - [2257] = {.lex_state = 15, .external_lex_state = 8}, + [2256] = {.lex_state = 15, .external_lex_state = 6}, + [2257] = {.lex_state = 15, .external_lex_state = 14}, [2258] = {.lex_state = 15, .external_lex_state = 14}, [2259] = {.lex_state = 15, .external_lex_state = 14}, - [2260] = {.lex_state = 15, .external_lex_state = 16}, - [2261] = {.lex_state = 15, .external_lex_state = 14}, - [2262] = {.lex_state = 23, .external_lex_state = 15}, - [2263] = {.lex_state = 15, .external_lex_state = 14}, - [2264] = {.lex_state = 15, .external_lex_state = 14}, - [2265] = {.lex_state = 15, .external_lex_state = 8}, - [2266] = {.lex_state = 23, .external_lex_state = 14}, - [2267] = {.lex_state = 15, .external_lex_state = 14}, - [2268] = {.lex_state = 15, .external_lex_state = 14}, - [2269] = {.lex_state = 15, .external_lex_state = 14}, - [2270] = {.lex_state = 23, .external_lex_state = 15}, - [2271] = {.lex_state = 15, .external_lex_state = 12}, - [2272] = {.lex_state = 15, .external_lex_state = 2}, - [2273] = {.lex_state = 15, .external_lex_state = 12}, - [2274] = {.lex_state = 15, .external_lex_state = 14}, - [2275] = {.lex_state = 15, .external_lex_state = 12}, - [2276] = {.lex_state = 15, .external_lex_state = 16}, + [2260] = {.lex_state = 15, .external_lex_state = 15}, + [2261] = {.lex_state = 15, .external_lex_state = 15}, + [2262] = {.lex_state = 15, .external_lex_state = 14}, + [2263] = {.lex_state = 15, .external_lex_state = 15}, + [2264] = {.lex_state = 15, .external_lex_state = 12}, + [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 = 15}, + [2270] = {.lex_state = 15, .external_lex_state = 14}, + [2271] = {.lex_state = 15, .external_lex_state = 15}, + [2272] = {.lex_state = 15, .external_lex_state = 15}, + [2273] = {.lex_state = 15, .external_lex_state = 15}, + [2274] = {.lex_state = 15, .external_lex_state = 12}, + [2275] = {.lex_state = 15, .external_lex_state = 15}, + [2276] = {.lex_state = 15, .external_lex_state = 12}, [2277] = {.lex_state = 15, .external_lex_state = 16}, [2278] = {.lex_state = 15, .external_lex_state = 16}, - [2279] = {.lex_state = 23, .external_lex_state = 15}, - [2280] = {.lex_state = 66, .external_lex_state = 12}, - [2281] = {.lex_state = 15, .external_lex_state = 16}, - [2282] = {.lex_state = 23, .external_lex_state = 15}, - [2283] = {.lex_state = 15, .external_lex_state = 12}, - [2284] = {.lex_state = 15, .external_lex_state = 16}, - [2285] = {.lex_state = 15, .external_lex_state = 12}, - [2286] = {.lex_state = 23, .external_lex_state = 15}, - [2287] = {.lex_state = 15, .external_lex_state = 16}, - [2288] = {.lex_state = 15, .external_lex_state = 7}, - [2289] = {.lex_state = 66, .external_lex_state = 12}, - [2290] = {.lex_state = 15, .external_lex_state = 16}, - [2291] = {.lex_state = 66, .external_lex_state = 12}, - [2292] = {.lex_state = 15, .external_lex_state = 8}, - [2293] = {.lex_state = 15, .external_lex_state = 7}, - [2294] = {.lex_state = 15, .external_lex_state = 16}, - [2295] = {.lex_state = 15, .external_lex_state = 16}, - [2296] = {.lex_state = 15, .external_lex_state = 7}, - [2297] = {.lex_state = 15, .external_lex_state = 2}, + [2279] = {.lex_state = 15, .external_lex_state = 12}, + [2280] = {.lex_state = 15, .external_lex_state = 12}, + [2281] = {.lex_state = 15, .external_lex_state = 12}, + [2282] = {.lex_state = 15, .external_lex_state = 12}, + [2283] = {.lex_state = 15, .external_lex_state = 8}, + [2284] = {.lex_state = 15, .external_lex_state = 15}, + [2285] = {.lex_state = 15, .external_lex_state = 8}, + [2286] = {.lex_state = 15, .external_lex_state = 15}, + [2287] = {.lex_state = 15, .external_lex_state = 8}, + [2288] = {.lex_state = 15, .external_lex_state = 6}, + [2289] = {.lex_state = 15, .external_lex_state = 14}, + [2290] = {.lex_state = 23, .external_lex_state = 15}, + [2291] = {.lex_state = 15, .external_lex_state = 12}, + [2292] = {.lex_state = 15, .external_lex_state = 2}, + [2293] = {.lex_state = 15, .external_lex_state = 12}, + [2294] = {.lex_state = 15, .external_lex_state = 7}, + [2295] = {.lex_state = 66, .external_lex_state = 12}, + [2296] = {.lex_state = 15, .external_lex_state = 16}, + [2297] = {.lex_state = 15, .external_lex_state = 7}, [2298] = {.lex_state = 15, .external_lex_state = 14}, - [2299] = {.lex_state = 66, .external_lex_state = 12}, - [2300] = {.lex_state = 23, .external_lex_state = 15}, - [2301] = {.lex_state = 66, .external_lex_state = 12}, - [2302] = {.lex_state = 66, .external_lex_state = 12}, - [2303] = {.lex_state = 15, .external_lex_state = 16}, - [2304] = {.lex_state = 15, .external_lex_state = 7}, - [2305] = {.lex_state = 23, .external_lex_state = 15}, - [2306] = {.lex_state = 15, .external_lex_state = 16}, - [2307] = {.lex_state = 23, .external_lex_state = 16}, - [2308] = {.lex_state = 15, .external_lex_state = 15}, - [2309] = {.lex_state = 15, .external_lex_state = 15}, - [2310] = {.lex_state = 15, .external_lex_state = 15}, - [2311] = {.lex_state = 15, .external_lex_state = 8}, + [2299] = {.lex_state = 15, .external_lex_state = 14}, + [2300] = {.lex_state = 15, .external_lex_state = 12}, + [2301] = {.lex_state = 23, .external_lex_state = 15}, + [2302] = {.lex_state = 15, .external_lex_state = 14}, + [2303] = {.lex_state = 23, .external_lex_state = 15}, + [2304] = {.lex_state = 15, .external_lex_state = 12}, + [2305] = {.lex_state = 15, .external_lex_state = 12}, + [2306] = {.lex_state = 66, .external_lex_state = 12}, + [2307] = {.lex_state = 23, .external_lex_state = 12}, + [2308] = {.lex_state = 66, .external_lex_state = 12}, + [2309] = {.lex_state = 15, .external_lex_state = 7}, + [2310] = {.lex_state = 23, .external_lex_state = 12}, + [2311] = {.lex_state = 66, .external_lex_state = 12}, [2312] = {.lex_state = 15, .external_lex_state = 12}, - [2313] = {.lex_state = 15, .external_lex_state = 14}, + [2313] = {.lex_state = 23, .external_lex_state = 11}, [2314] = {.lex_state = 15, .external_lex_state = 14}, - [2315] = {.lex_state = 15, .external_lex_state = 14}, - [2316] = {.lex_state = 15, .external_lex_state = 15}, + [2315] = {.lex_state = 15, .external_lex_state = 16}, + [2316] = {.lex_state = 15, .external_lex_state = 7}, [2317] = {.lex_state = 15, .external_lex_state = 12}, - [2318] = {.lex_state = 15, .external_lex_state = 15}, - [2319] = {.lex_state = 15, .external_lex_state = 15}, - [2320] = {.lex_state = 15, .external_lex_state = 15}, - [2321] = {.lex_state = 15, .external_lex_state = 15}, - [2322] = {.lex_state = 15, .external_lex_state = 15}, - [2323] = {.lex_state = 15, .external_lex_state = 14}, - [2324] = {.lex_state = 15, .external_lex_state = 12}, - [2325] = {.lex_state = 15, .external_lex_state = 12}, - [2326] = {.lex_state = 15, .external_lex_state = 12}, - [2327] = {.lex_state = 15, .external_lex_state = 12}, - [2328] = {.lex_state = 15, .external_lex_state = 15}, - [2329] = {.lex_state = 15, .external_lex_state = 15}, - [2330] = {.lex_state = 15, .external_lex_state = 14}, - [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 = 6}, - [2336] = {.lex_state = 15, .external_lex_state = 12}, - [2337] = {.lex_state = 15, .external_lex_state = 15}, - [2338] = {.lex_state = 15, .external_lex_state = 12}, - [2339] = {.lex_state = 15, .external_lex_state = 15}, - [2340] = {.lex_state = 15, .external_lex_state = 12}, - [2341] = {.lex_state = 15, .external_lex_state = 12}, - [2342] = {.lex_state = 15, .external_lex_state = 12}, - [2343] = {.lex_state = 15, .external_lex_state = 12}, - [2344] = {.lex_state = 15, .external_lex_state = 12}, - [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 = 12}, - [2350] = {.lex_state = 15, .external_lex_state = 15}, + [2318] = {.lex_state = 15, .external_lex_state = 16}, + [2319] = {.lex_state = 15, .external_lex_state = 16}, + [2320] = {.lex_state = 15, .external_lex_state = 16}, + [2321] = {.lex_state = 15, .external_lex_state = 2}, + [2322] = {.lex_state = 15, .external_lex_state = 14}, + [2323] = {.lex_state = 23, .external_lex_state = 15}, + [2324] = {.lex_state = 15, .external_lex_state = 8}, + [2325] = {.lex_state = 23, .external_lex_state = 15}, + [2326] = {.lex_state = 23, .external_lex_state = 15}, + [2327] = {.lex_state = 23, .external_lex_state = 15}, + [2328] = {.lex_state = 15, .external_lex_state = 16}, + [2329] = {.lex_state = 15, .external_lex_state = 16}, + [2330] = {.lex_state = 15, .external_lex_state = 16}, + [2331] = {.lex_state = 15, .external_lex_state = 16}, + [2332] = {.lex_state = 15, .external_lex_state = 16}, + [2333] = {.lex_state = 66, .external_lex_state = 12}, + [2334] = {.lex_state = 15, .external_lex_state = 16}, + [2335] = {.lex_state = 15, .external_lex_state = 16}, + [2336] = {.lex_state = 23, .external_lex_state = 15}, + [2337] = {.lex_state = 15, .external_lex_state = 8}, + [2338] = {.lex_state = 23, .external_lex_state = 14}, + [2339] = {.lex_state = 15, .external_lex_state = 14}, + [2340] = {.lex_state = 15, .external_lex_state = 8}, + [2341] = {.lex_state = 15, .external_lex_state = 14}, + [2342] = {.lex_state = 23, .external_lex_state = 14}, + [2343] = {.lex_state = 66, .external_lex_state = 12}, + [2344] = {.lex_state = 15, .external_lex_state = 14}, + [2345] = {.lex_state = 15, .external_lex_state = 16}, + [2346] = {.lex_state = 15, .external_lex_state = 12}, + [2347] = {.lex_state = 15, .external_lex_state = 12}, + [2348] = {.lex_state = 15, .external_lex_state = 14}, + [2349] = {.lex_state = 15, .external_lex_state = 14}, + [2350] = {.lex_state = 15, .external_lex_state = 12}, [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 = 15}, - [2355] = {.lex_state = 15, .external_lex_state = 12}, + [2353] = {.lex_state = 15, .external_lex_state = 12}, + [2354] = {.lex_state = 23, .external_lex_state = 12}, + [2355] = {.lex_state = 15, .external_lex_state = 15}, [2356] = {.lex_state = 15, .external_lex_state = 15}, - [2357] = {.lex_state = 15, .external_lex_state = 15}, - [2358] = {.lex_state = 15, .external_lex_state = 12}, - [2359] = {.lex_state = 15, .external_lex_state = 12}, + [2357] = {.lex_state = 15, .external_lex_state = 12}, + [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 = 12}, - [2362] = {.lex_state = 15, .external_lex_state = 15}, - [2363] = {.lex_state = 15, .external_lex_state = 15}, - [2364] = {.lex_state = 15, .external_lex_state = 15}, + [2362] = {.lex_state = 15, .external_lex_state = 12}, + [2363] = {.lex_state = 15, .external_lex_state = 12}, + [2364] = {.lex_state = 15, .external_lex_state = 12}, [2365] = {.lex_state = 15, .external_lex_state = 15}, [2366] = {.lex_state = 15, .external_lex_state = 16}, [2367] = {.lex_state = 15, .external_lex_state = 15}, - [2368] = {.lex_state = 15, .external_lex_state = 16}, - [2369] = {.lex_state = 15, .external_lex_state = 15}, - [2370] = {.lex_state = 15, .external_lex_state = 16}, - [2371] = {.lex_state = 15, .external_lex_state = 16}, - [2372] = {.lex_state = 15, .external_lex_state = 15}, - [2373] = {.lex_state = 15, .external_lex_state = 16}, - [2374] = {.lex_state = 15, .external_lex_state = 16}, - [2375] = {.lex_state = 15, .external_lex_state = 12}, - [2376] = {.lex_state = 15, .external_lex_state = 12}, + [2368] = {.lex_state = 15, .external_lex_state = 15}, + [2369] = {.lex_state = 15, .external_lex_state = 6}, + [2370] = {.lex_state = 23, .external_lex_state = 16}, + [2371] = {.lex_state = 23, .external_lex_state = 16}, + [2372] = {.lex_state = 23, .external_lex_state = 14}, + [2373] = {.lex_state = 15, .external_lex_state = 15}, + [2374] = {.lex_state = 23, .external_lex_state = 16}, + [2375] = {.lex_state = 15, .external_lex_state = 15}, + [2376] = {.lex_state = 15, .external_lex_state = 15}, [2377] = {.lex_state = 15, .external_lex_state = 15}, - [2378] = {.lex_state = 15, .external_lex_state = 15}, + [2378] = {.lex_state = 15, .external_lex_state = 12}, [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 = 6}, - [2383] = {.lex_state = 23, .external_lex_state = 16}, - [2384] = {.lex_state = 23, .external_lex_state = 16}, - [2385] = {.lex_state = 15, .external_lex_state = 15}, - [2386] = {.lex_state = 23, .external_lex_state = 14}, + [2380] = {.lex_state = 15, .external_lex_state = 12}, + [2381] = {.lex_state = 15, .external_lex_state = 12}, + [2382] = {.lex_state = 15, .external_lex_state = 15}, + [2383] = {.lex_state = 15, .external_lex_state = 15}, + [2384] = {.lex_state = 15, .external_lex_state = 15}, + [2385] = {.lex_state = 15, .external_lex_state = 12}, + [2386] = {.lex_state = 15, .external_lex_state = 15}, [2387] = {.lex_state = 15, .external_lex_state = 15}, [2388] = {.lex_state = 15, .external_lex_state = 15}, - [2389] = {.lex_state = 15, .external_lex_state = 12}, - [2390] = {.lex_state = 15, .external_lex_state = 12}, + [2389] = {.lex_state = 15, .external_lex_state = 15}, + [2390] = {.lex_state = 15, .external_lex_state = 15}, [2391] = {.lex_state = 15, .external_lex_state = 15}, [2392] = {.lex_state = 15, .external_lex_state = 15}, [2393] = {.lex_state = 15, .external_lex_state = 15}, - [2394] = {.lex_state = 15, .external_lex_state = 15}, - [2395] = {.lex_state = 15, .external_lex_state = 6}, - [2396] = {.lex_state = 23, .external_lex_state = 12}, + [2394] = {.lex_state = 15, .external_lex_state = 12}, + [2395] = {.lex_state = 15, .external_lex_state = 15}, + [2396] = {.lex_state = 15, .external_lex_state = 15}, [2397] = {.lex_state = 15, .external_lex_state = 15}, - [2398] = {.lex_state = 15, .external_lex_state = 15}, + [2398] = {.lex_state = 15, .external_lex_state = 12}, [2399] = {.lex_state = 15, .external_lex_state = 15}, - [2400] = {.lex_state = 15, .external_lex_state = 15}, - [2401] = {.lex_state = 15, .external_lex_state = 15}, + [2400] = {.lex_state = 15, .external_lex_state = 8}, + [2401] = {.lex_state = 23, .external_lex_state = 14}, [2402] = {.lex_state = 15, .external_lex_state = 15}, - [2403] = {.lex_state = 15, .external_lex_state = 15}, + [2403] = {.lex_state = 15, .external_lex_state = 6}, [2404] = {.lex_state = 15, .external_lex_state = 15}, [2405] = {.lex_state = 15, .external_lex_state = 15}, - [2406] = {.lex_state = 15, .external_lex_state = 15}, + [2406] = {.lex_state = 15, .external_lex_state = 12}, [2407] = {.lex_state = 15, .external_lex_state = 15}, [2408] = {.lex_state = 15, .external_lex_state = 15}, - [2409] = {.lex_state = 23, .external_lex_state = 14}, - [2410] = {.lex_state = 15, .external_lex_state = 6}, + [2409] = {.lex_state = 15, .external_lex_state = 15}, + [2410] = {.lex_state = 15, .external_lex_state = 15}, [2411] = {.lex_state = 15, .external_lex_state = 15}, - [2412] = {.lex_state = 15, .external_lex_state = 15}, - [2413] = {.lex_state = 15, .external_lex_state = 12}, - [2414] = {.lex_state = 15, .external_lex_state = 15}, + [2412] = {.lex_state = 23, .external_lex_state = 12}, + [2413] = {.lex_state = 15, .external_lex_state = 15}, + [2414] = {.lex_state = 15, .external_lex_state = 12}, [2415] = {.lex_state = 15, .external_lex_state = 15}, [2416] = {.lex_state = 15, .external_lex_state = 15}, [2417] = {.lex_state = 15, .external_lex_state = 15}, - [2418] = {.lex_state = 15, .external_lex_state = 15}, - [2419] = {.lex_state = 15, .external_lex_state = 14}, + [2418] = {.lex_state = 23, .external_lex_state = 16}, + [2419] = {.lex_state = 23, .external_lex_state = 16}, [2420] = {.lex_state = 15, .external_lex_state = 15}, [2421] = {.lex_state = 15, .external_lex_state = 15}, - [2422] = {.lex_state = 15, .external_lex_state = 12}, - [2423] = {.lex_state = 15, .external_lex_state = 16}, + [2422] = {.lex_state = 15, .external_lex_state = 14}, + [2423] = {.lex_state = 15, .external_lex_state = 15}, [2424] = {.lex_state = 15, .external_lex_state = 15}, - [2425] = {.lex_state = 15, .external_lex_state = 16}, - [2426] = {.lex_state = 15, .external_lex_state = 12}, - [2427] = {.lex_state = 15, .external_lex_state = 12}, - [2428] = {.lex_state = 15, .external_lex_state = 12}, - [2429] = {.lex_state = 15, .external_lex_state = 12}, - [2430] = {.lex_state = 15, .external_lex_state = 12}, - [2431] = {.lex_state = 15, .external_lex_state = 12}, - [2432] = {.lex_state = 15, .external_lex_state = 12}, - [2433] = {.lex_state = 15, .external_lex_state = 12}, + [2425] = {.lex_state = 15, .external_lex_state = 15}, + [2426] = {.lex_state = 15, .external_lex_state = 15}, + [2427] = {.lex_state = 15, .external_lex_state = 15}, + [2428] = {.lex_state = 15, .external_lex_state = 15}, + [2429] = {.lex_state = 15, .external_lex_state = 8}, + [2430] = {.lex_state = 15, .external_lex_state = 15}, + [2431] = {.lex_state = 23, .external_lex_state = 14}, + [2432] = {.lex_state = 15, .external_lex_state = 6}, + [2433] = {.lex_state = 23, .external_lex_state = 14}, [2434] = {.lex_state = 15, .external_lex_state = 12}, - [2435] = {.lex_state = 23, .external_lex_state = 14}, - [2436] = {.lex_state = 23, .external_lex_state = 14}, + [2435] = {.lex_state = 15, .external_lex_state = 12}, + [2436] = {.lex_state = 15, .external_lex_state = 15}, [2437] = {.lex_state = 15, .external_lex_state = 15}, - [2438] = {.lex_state = 15, .external_lex_state = 12}, - [2439] = {.lex_state = 23, .external_lex_state = 16}, - [2440] = {.lex_state = 23, .external_lex_state = 16}, + [2438] = {.lex_state = 15, .external_lex_state = 15}, + [2439] = {.lex_state = 15, .external_lex_state = 15}, + [2440] = {.lex_state = 15, .external_lex_state = 12}, [2441] = {.lex_state = 15, .external_lex_state = 15}, - [2442] = {.lex_state = 15, .external_lex_state = 12}, - [2443] = {.lex_state = 15, .external_lex_state = 12}, - [2444] = {.lex_state = 23, .external_lex_state = 12}, + [2442] = {.lex_state = 15, .external_lex_state = 15}, + [2443] = {.lex_state = 23, .external_lex_state = 16}, + [2444] = {.lex_state = 15, .external_lex_state = 15}, [2445] = {.lex_state = 15, .external_lex_state = 15}, - [2446] = {.lex_state = 15, .external_lex_state = 14}, - [2447] = {.lex_state = 15, .external_lex_state = 15}, - [2448] = {.lex_state = 23, .external_lex_state = 16}, - [2449] = {.lex_state = 15, .external_lex_state = 15}, - [2450] = {.lex_state = 15, .external_lex_state = 14}, - [2451] = {.lex_state = 15, .external_lex_state = 12}, - [2452] = {.lex_state = 15, .external_lex_state = 15}, - [2453] = {.lex_state = 15, .external_lex_state = 14}, - [2454] = {.lex_state = 23, .external_lex_state = 14}, - [2455] = {.lex_state = 23, .external_lex_state = 16}, - [2456] = {.lex_state = 23, .external_lex_state = 14}, - [2457] = {.lex_state = 15, .external_lex_state = 16}, - [2458] = {.lex_state = 15, .external_lex_state = 12}, + [2446] = {.lex_state = 15, .external_lex_state = 12}, + [2447] = {.lex_state = 15, .external_lex_state = 6}, + [2448] = {.lex_state = 15, .external_lex_state = 15}, + [2449] = {.lex_state = 15, .external_lex_state = 6}, + [2450] = {.lex_state = 15, .external_lex_state = 12}, + [2451] = {.lex_state = 15, .external_lex_state = 15}, + [2452] = {.lex_state = 15, .external_lex_state = 12}, + [2453] = {.lex_state = 15, .external_lex_state = 15}, + [2454] = {.lex_state = 15, .external_lex_state = 15}, + [2455] = {.lex_state = 15, .external_lex_state = 15}, + [2456] = {.lex_state = 15, .external_lex_state = 15}, + [2457] = {.lex_state = 15, .external_lex_state = 15}, + [2458] = {.lex_state = 15, .external_lex_state = 15}, [2459] = {.lex_state = 15, .external_lex_state = 15}, - [2460] = {.lex_state = 15, .external_lex_state = 12}, + [2460] = {.lex_state = 15, .external_lex_state = 15}, [2461] = {.lex_state = 15, .external_lex_state = 15}, - [2462] = {.lex_state = 15, .external_lex_state = 15}, + [2462] = {.lex_state = 15, .external_lex_state = 14}, [2463] = {.lex_state = 15, .external_lex_state = 15}, - [2464] = {.lex_state = 15, .external_lex_state = 12}, + [2464] = {.lex_state = 15, .external_lex_state = 15}, [2465] = {.lex_state = 15, .external_lex_state = 15}, [2466] = {.lex_state = 15, .external_lex_state = 15}, [2467] = {.lex_state = 15, .external_lex_state = 15}, - [2468] = {.lex_state = 15, .external_lex_state = 15}, - [2469] = {.lex_state = 15, .external_lex_state = 15}, + [2468] = {.lex_state = 15, .external_lex_state = 12}, + [2469] = {.lex_state = 15, .external_lex_state = 16}, [2470] = {.lex_state = 15, .external_lex_state = 15}, - [2471] = {.lex_state = 15, .external_lex_state = 15}, - [2472] = {.lex_state = 15, .external_lex_state = 15}, + [2471] = {.lex_state = 15, .external_lex_state = 14}, + [2472] = {.lex_state = 15, .external_lex_state = 16}, [2473] = {.lex_state = 15, .external_lex_state = 15}, - [2474] = {.lex_state = 15, .external_lex_state = 15}, - [2475] = {.lex_state = 15, .external_lex_state = 15}, - [2476] = {.lex_state = 15, .external_lex_state = 8}, - [2477] = {.lex_state = 15, .external_lex_state = 15}, + [2474] = {.lex_state = 15, .external_lex_state = 12}, + [2475] = {.lex_state = 23, .external_lex_state = 14}, + [2476] = {.lex_state = 15, .external_lex_state = 14}, + [2477] = {.lex_state = 15, .external_lex_state = 12}, [2478] = {.lex_state = 15, .external_lex_state = 15}, [2479] = {.lex_state = 15, .external_lex_state = 15}, [2480] = {.lex_state = 15, .external_lex_state = 15}, [2481] = {.lex_state = 15, .external_lex_state = 15}, - [2482] = {.lex_state = 15, .external_lex_state = 15}, + [2482] = {.lex_state = 23, .external_lex_state = 16}, [2483] = {.lex_state = 15, .external_lex_state = 15}, - [2484] = {.lex_state = 15, .external_lex_state = 15}, + [2484] = {.lex_state = 15, .external_lex_state = 12}, [2485] = {.lex_state = 15, .external_lex_state = 15}, [2486] = {.lex_state = 15, .external_lex_state = 15}, - [2487] = {.lex_state = 15, .external_lex_state = 15}, - [2488] = {.lex_state = 15, .external_lex_state = 6}, - [2489] = {.lex_state = 15, .external_lex_state = 15}, - [2490] = {.lex_state = 15, .external_lex_state = 16}, - [2491] = {.lex_state = 15, .external_lex_state = 12}, - [2492] = {.lex_state = 15, .external_lex_state = 16}, - [2493] = {.lex_state = 15, .external_lex_state = 14}, - [2494] = {.lex_state = 15, .external_lex_state = 16}, - [2495] = {.lex_state = 15, .external_lex_state = 8}, - [2496] = {.lex_state = 15, .external_lex_state = 14}, - [2497] = {.lex_state = 15, .external_lex_state = 14}, + [2487] = {.lex_state = 15, .external_lex_state = 12}, + [2488] = {.lex_state = 15, .external_lex_state = 15}, + [2489] = {.lex_state = 15, .external_lex_state = 12}, + [2490] = {.lex_state = 15, .external_lex_state = 12}, + [2491] = {.lex_state = 15, .external_lex_state = 15}, + [2492] = {.lex_state = 23, .external_lex_state = 14}, + [2493] = {.lex_state = 15, .external_lex_state = 12}, + [2494] = {.lex_state = 15, .external_lex_state = 15}, + [2495] = {.lex_state = 15, .external_lex_state = 15}, + [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 = 14}, - [2500] = {.lex_state = 23, .external_lex_state = 14}, + [2499] = {.lex_state = 15, .external_lex_state = 15}, + [2500] = {.lex_state = 15, .external_lex_state = 15}, [2501] = {.lex_state = 15, .external_lex_state = 14}, - [2502] = {.lex_state = 15, .external_lex_state = 14}, - [2503] = {.lex_state = 15, .external_lex_state = 16}, - [2504] = {.lex_state = 15, .external_lex_state = 11}, - [2505] = {.lex_state = 15, .external_lex_state = 16}, - [2506] = {.lex_state = 15, .external_lex_state = 14}, - [2507] = {.lex_state = 15, .external_lex_state = 16}, - [2508] = {.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 = 16}, - [2512] = {.lex_state = 15, .external_lex_state = 16}, - [2513] = {.lex_state = 15, .external_lex_state = 14}, - [2514] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 16, .external_lex_state = 11}, - [2519] = {.lex_state = 15, .external_lex_state = 14}, + [2502] = {.lex_state = 15, .external_lex_state = 12}, + [2503] = {.lex_state = 15, .external_lex_state = 15}, + [2504] = {.lex_state = 15, .external_lex_state = 12}, + [2505] = {.lex_state = 15, .external_lex_state = 12}, + [2506] = {.lex_state = 15, .external_lex_state = 15}, + [2507] = {.lex_state = 15, .external_lex_state = 12}, + [2508] = {.lex_state = 15, .external_lex_state = 12}, + [2509] = {.lex_state = 15, .external_lex_state = 15}, + [2510] = {.lex_state = 15, .external_lex_state = 12}, + [2511] = {.lex_state = 15, .external_lex_state = 12}, + [2512] = {.lex_state = 15, .external_lex_state = 12}, + [2513] = {.lex_state = 15, .external_lex_state = 12}, + [2514] = {.lex_state = 15, .external_lex_state = 15}, + [2515] = {.lex_state = 15, .external_lex_state = 15}, + [2516] = {.lex_state = 15, .external_lex_state = 15}, + [2517] = {.lex_state = 15, .external_lex_state = 15}, + [2518] = {.lex_state = 15, .external_lex_state = 15}, + [2519] = {.lex_state = 15, .external_lex_state = 15}, [2520] = {.lex_state = 15, .external_lex_state = 14}, - [2521] = {.lex_state = 16, .external_lex_state = 11}, - [2522] = {.lex_state = 16, .external_lex_state = 11}, - [2523] = {.lex_state = 16, .external_lex_state = 11}, - [2524] = {.lex_state = 16, .external_lex_state = 11}, - [2525] = {.lex_state = 16, .external_lex_state = 11}, - [2526] = {.lex_state = 16, .external_lex_state = 11}, - [2527] = {.lex_state = 15, .external_lex_state = 14}, + [2521] = {.lex_state = 15, .external_lex_state = 12}, + [2522] = {.lex_state = 15, .external_lex_state = 14}, + [2523] = {.lex_state = 15, .external_lex_state = 14}, + [2524] = {.lex_state = 15, .external_lex_state = 15}, + [2525] = {.lex_state = 15, .external_lex_state = 14}, + [2526] = {.lex_state = 15, .external_lex_state = 15}, + [2527] = {.lex_state = 15, .external_lex_state = 15}, [2528] = {.lex_state = 15, .external_lex_state = 16}, - [2529] = {.lex_state = 15, .external_lex_state = 12}, + [2529] = {.lex_state = 15, .external_lex_state = 16}, [2530] = {.lex_state = 15, .external_lex_state = 16}, - [2531] = {.lex_state = 15, .external_lex_state = 12}, - [2532] = {.lex_state = 16, .external_lex_state = 11}, - [2533] = {.lex_state = 15, .external_lex_state = 14}, - [2534] = {.lex_state = 15, .external_lex_state = 14}, - [2535] = {.lex_state = 15, .external_lex_state = 12}, - [2536] = {.lex_state = 15, .external_lex_state = 16}, - [2537] = {.lex_state = 15, .external_lex_state = 14}, - [2538] = {.lex_state = 15, .external_lex_state = 16}, + [2531] = {.lex_state = 15, .external_lex_state = 16}, + [2532] = {.lex_state = 15, .external_lex_state = 16}, + [2533] = {.lex_state = 15, .external_lex_state = 16}, + [2534] = {.lex_state = 15, .external_lex_state = 16}, + [2535] = {.lex_state = 15, .external_lex_state = 15}, + [2536] = {.lex_state = 15, .external_lex_state = 14}, + [2537] = {.lex_state = 15, .external_lex_state = 11}, + [2538] = {.lex_state = 15, .external_lex_state = 14}, [2539] = {.lex_state = 15, .external_lex_state = 16}, - [2540] = {.lex_state = 15, .external_lex_state = 16}, - [2541] = {.lex_state = 15, .external_lex_state = 16}, - [2542] = {.lex_state = 15, .external_lex_state = 16}, + [2540] = {.lex_state = 15, .external_lex_state = 14}, + [2541] = {.lex_state = 66, .external_lex_state = 12}, + [2542] = {.lex_state = 15, .external_lex_state = 14}, [2543] = {.lex_state = 15, .external_lex_state = 14}, - [2544] = {.lex_state = 15, .external_lex_state = 16}, - [2545] = {.lex_state = 15, .external_lex_state = 8}, - [2546] = {.lex_state = 15, .external_lex_state = 16}, - [2547] = {.lex_state = 15, .external_lex_state = 16}, - [2548] = {.lex_state = 15, .external_lex_state = 14}, - [2549] = {.lex_state = 15, .external_lex_state = 14}, - [2550] = {.lex_state = 15, .external_lex_state = 14}, - [2551] = {.lex_state = 23, .external_lex_state = 12}, - [2552] = {.lex_state = 15, .external_lex_state = 14}, - [2553] = {.lex_state = 15, .external_lex_state = 14}, - [2554] = {.lex_state = 15, .external_lex_state = 16}, - [2555] = {.lex_state = 15, .external_lex_state = 12}, + [2544] = {.lex_state = 15, .external_lex_state = 14}, + [2545] = {.lex_state = 15, .external_lex_state = 14}, + [2546] = {.lex_state = 15, .external_lex_state = 14}, + [2547] = {.lex_state = 15, .external_lex_state = 14}, + [2548] = {.lex_state = 15, .external_lex_state = 16}, + [2549] = {.lex_state = 15, .external_lex_state = 16}, + [2550] = {.lex_state = 15, .external_lex_state = 16}, + [2551] = {.lex_state = 15, .external_lex_state = 16}, + [2552] = {.lex_state = 15, .external_lex_state = 16}, + [2553] = {.lex_state = 15, .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 = 16}, - [2558] = {.lex_state = 16, .external_lex_state = 11}, - [2559] = {.lex_state = 15, .external_lex_state = 16}, + [2557] = {.lex_state = 15, .external_lex_state = 14}, + [2558] = {.lex_state = 15, .external_lex_state = 14}, + [2559] = {.lex_state = 15, .external_lex_state = 14}, [2560] = {.lex_state = 15, .external_lex_state = 14}, - [2561] = {.lex_state = 15, .external_lex_state = 16}, - [2562] = {.lex_state = 15, .external_lex_state = 16}, + [2561] = {.lex_state = 15, .external_lex_state = 14}, + [2562] = {.lex_state = 15, .external_lex_state = 14}, [2563] = {.lex_state = 15, .external_lex_state = 16}, - [2564] = {.lex_state = 15, .external_lex_state = 14}, - [2565] = {.lex_state = 15, .external_lex_state = 14}, + [2564] = {.lex_state = 15, .external_lex_state = 8}, + [2565] = {.lex_state = 15, .external_lex_state = 16}, [2566] = {.lex_state = 15, .external_lex_state = 16}, [2567] = {.lex_state = 15, .external_lex_state = 16}, - [2568] = {.lex_state = 16, .external_lex_state = 11}, - [2569] = {.lex_state = 15, .external_lex_state = 16}, + [2568] = {.lex_state = 15, .external_lex_state = 16}, + [2569] = {.lex_state = 15, .external_lex_state = 8}, [2570] = {.lex_state = 15, .external_lex_state = 16}, [2571] = {.lex_state = 15, .external_lex_state = 16}, - [2572] = {.lex_state = 23, .external_lex_state = 16}, - [2573] = {.lex_state = 15, .external_lex_state = 11}, + [2572] = {.lex_state = 15, .external_lex_state = 16}, + [2573] = {.lex_state = 15, .external_lex_state = 14}, [2574] = {.lex_state = 15, .external_lex_state = 14}, - [2575] = {.lex_state = 15, .external_lex_state = 16}, - [2576] = {.lex_state = 15, .external_lex_state = 14}, - [2577] = {.lex_state = 23, .external_lex_state = 16}, + [2575] = {.lex_state = 15, .external_lex_state = 14}, + [2576] = {.lex_state = 15, .external_lex_state = 16}, + [2577] = {.lex_state = 15, .external_lex_state = 14}, [2578] = {.lex_state = 15, .external_lex_state = 14}, [2579] = {.lex_state = 15, .external_lex_state = 14}, [2580] = {.lex_state = 15, .external_lex_state = 16}, - [2581] = {.lex_state = 15, .external_lex_state = 16}, - [2582] = {.lex_state = 15, .external_lex_state = 14}, - [2583] = {.lex_state = 15, .external_lex_state = 16}, - [2584] = {.lex_state = 15, .external_lex_state = 14}, + [2581] = {.lex_state = 15, .external_lex_state = 14}, + [2582] = {.lex_state = 15, .external_lex_state = 16}, + [2583] = {.lex_state = 15, .external_lex_state = 14}, + [2584] = {.lex_state = 15, .external_lex_state = 16}, [2585] = {.lex_state = 15, .external_lex_state = 14}, [2586] = {.lex_state = 15, .external_lex_state = 14}, [2587] = {.lex_state = 15, .external_lex_state = 14}, - [2588] = {.lex_state = 66, .external_lex_state = 12}, + [2588] = {.lex_state = 15, .external_lex_state = 14}, [2589] = {.lex_state = 15, .external_lex_state = 14}, [2590] = {.lex_state = 15, .external_lex_state = 14}, - [2591] = {.lex_state = 15, .external_lex_state = 14}, - [2592] = {.lex_state = 16, .external_lex_state = 11}, - [2593] = {.lex_state = 15, .external_lex_state = 14}, - [2594] = {.lex_state = 15, .external_lex_state = 14}, - [2595] = {.lex_state = 15, .external_lex_state = 14}, - [2596] = {.lex_state = 15, .external_lex_state = 14}, - [2597] = {.lex_state = 15, .external_lex_state = 16}, - [2598] = {.lex_state = 15, .external_lex_state = 16}, + [2591] = {.lex_state = 15, .external_lex_state = 12}, + [2592] = {.lex_state = 15, .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}, + [2597] = {.lex_state = 15, .external_lex_state = 14}, + [2598] = {.lex_state = 15, .external_lex_state = 12}, [2599] = {.lex_state = 15, .external_lex_state = 16}, [2600] = {.lex_state = 15, .external_lex_state = 16}, - [2601] = {.lex_state = 16, .external_lex_state = 11}, - [2602] = {.lex_state = 15, .external_lex_state = 16}, + [2601] = {.lex_state = 15, .external_lex_state = 14}, + [2602] = {.lex_state = 15, .external_lex_state = 12}, [2603] = {.lex_state = 15, .external_lex_state = 16}, - [2604] = {.lex_state = 15, .external_lex_state = 14}, - [2605] = {.lex_state = 15, .external_lex_state = 14}, - [2606] = {.lex_state = 15, .external_lex_state = 14}, - [2607] = {.lex_state = 15, .external_lex_state = 14}, + [2604] = {.lex_state = 16, .external_lex_state = 11}, + [2605] = {.lex_state = 16, .external_lex_state = 11}, + [2606] = {.lex_state = 16, .external_lex_state = 11}, + [2607] = {.lex_state = 15, .external_lex_state = 12}, [2608] = {.lex_state = 15, .external_lex_state = 16}, - [2609] = {.lex_state = 15, .external_lex_state = 14}, - [2610] = {.lex_state = 15, .external_lex_state = 14}, + [2609] = {.lex_state = 16, .external_lex_state = 11}, + [2610] = {.lex_state = 15, .external_lex_state = 16}, [2611] = {.lex_state = 15, .external_lex_state = 14}, - [2612] = {.lex_state = 15, .external_lex_state = 14}, - [2613] = {.lex_state = 15, .external_lex_state = 16}, - [2614] = {.lex_state = 23, .external_lex_state = 14}, - [2615] = {.lex_state = 15, .external_lex_state = 16}, - [2616] = {.lex_state = 15, .external_lex_state = 16}, - [2617] = {.lex_state = 15, .external_lex_state = 16}, + [2612] = {.lex_state = 23, .external_lex_state = 14}, + [2613] = {.lex_state = 15, .external_lex_state = 14}, + [2614] = {.lex_state = 15, .external_lex_state = 16}, + [2615] = {.lex_state = 16, .external_lex_state = 11}, + [2616] = {.lex_state = 16, .external_lex_state = 11}, + [2617] = {.lex_state = 16, .external_lex_state = 11}, [2618] = {.lex_state = 16, .external_lex_state = 11}, [2619] = {.lex_state = 16, .external_lex_state = 11}, - [2620] = {.lex_state = 15, .external_lex_state = 14}, - [2621] = {.lex_state = 15, .external_lex_state = 16}, - [2622] = {.lex_state = 15, .external_lex_state = 14}, - [2623] = {.lex_state = 15, .external_lex_state = 14}, + [2620] = {.lex_state = 16, .external_lex_state = 11}, + [2621] = {.lex_state = 16, .external_lex_state = 11}, + [2622] = {.lex_state = 15, .external_lex_state = 16}, + [2623] = {.lex_state = 16, .external_lex_state = 11}, [2624] = {.lex_state = 15, .external_lex_state = 16}, - [2625] = {.lex_state = 15, .external_lex_state = 14}, + [2625] = {.lex_state = 15, .external_lex_state = 16}, [2626] = {.lex_state = 15, .external_lex_state = 14}, - [2627] = {.lex_state = 15, .external_lex_state = 16}, - [2628] = {.lex_state = 15, .external_lex_state = 16}, + [2627] = {.lex_state = 16, .external_lex_state = 11}, + [2628] = {.lex_state = 15, .external_lex_state = 14}, [2629] = {.lex_state = 15, .external_lex_state = 16}, - [2630] = {.lex_state = 15, .external_lex_state = 14}, - [2631] = {.lex_state = 15, .external_lex_state = 14}, + [2630] = {.lex_state = 15, .external_lex_state = 16}, + [2631] = {.lex_state = 15, .external_lex_state = 16}, [2632] = {.lex_state = 15, .external_lex_state = 16}, [2633] = {.lex_state = 15, .external_lex_state = 16}, - [2634] = {.lex_state = 23, .external_lex_state = 14}, - [2635] = {.lex_state = 23, .external_lex_state = 14}, - [2636] = {.lex_state = 23, .external_lex_state = 14}, - [2637] = {.lex_state = 23, .external_lex_state = 14}, - [2638] = {.lex_state = 23, .external_lex_state = 16}, - [2639] = {.lex_state = 23, .external_lex_state = 16}, - [2640] = {.lex_state = 23, .external_lex_state = 15}, - [2641] = {.lex_state = 23, .external_lex_state = 15}, - [2642] = {.lex_state = 15, .external_lex_state = 16}, - [2643] = {.lex_state = 15, .external_lex_state = 16}, - [2644] = {.lex_state = 15, .external_lex_state = 16}, - [2645] = {.lex_state = 15, .external_lex_state = 16}, - [2646] = {.lex_state = 15, .external_lex_state = 16}, - [2647] = {.lex_state = 15, .external_lex_state = 16}, + [2634] = {.lex_state = 16, .external_lex_state = 11}, + [2635] = {.lex_state = 15, .external_lex_state = 14}, + [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 = 14}, + [2640] = {.lex_state = 15, .external_lex_state = 14}, + [2641] = {.lex_state = 15, .external_lex_state = 14}, + [2642] = {.lex_state = 15, .external_lex_state = 14}, + [2643] = {.lex_state = 15, .external_lex_state = 14}, + [2644] = {.lex_state = 15, .external_lex_state = 11}, + [2645] = {.lex_state = 15, .external_lex_state = 14}, + [2646] = {.lex_state = 15, .external_lex_state = 14}, + [2647] = {.lex_state = 15, .external_lex_state = 14}, [2648] = {.lex_state = 15, .external_lex_state = 16}, - [2649] = {.lex_state = 15, .external_lex_state = 6}, - [2650] = {.lex_state = 15, .external_lex_state = 16}, - [2651] = {.lex_state = 15, .external_lex_state = 16}, + [2649] = {.lex_state = 15, .external_lex_state = 16}, + [2650] = {.lex_state = 66, .external_lex_state = 12}, + [2651] = {.lex_state = 15, .external_lex_state = 14}, [2652] = {.lex_state = 15, .external_lex_state = 16}, [2653] = {.lex_state = 15, .external_lex_state = 16}, - [2654] = {.lex_state = 15, .external_lex_state = 6}, - [2655] = {.lex_state = 15, .external_lex_state = 16}, - [2656] = {.lex_state = 15, .external_lex_state = 16}, + [2654] = {.lex_state = 15, .external_lex_state = 16}, + [2655] = {.lex_state = 15, .external_lex_state = 14}, + [2656] = {.lex_state = 15, .external_lex_state = 14}, [2657] = {.lex_state = 15, .external_lex_state = 16}, [2658] = {.lex_state = 15, .external_lex_state = 16}, [2659] = {.lex_state = 15, .external_lex_state = 16}, [2660] = {.lex_state = 15, .external_lex_state = 16}, - [2661] = {.lex_state = 15, .external_lex_state = 16}, + [2661] = {.lex_state = 23, .external_lex_state = 12}, [2662] = {.lex_state = 15, .external_lex_state = 16}, [2663] = {.lex_state = 15, .external_lex_state = 16}, - [2664] = {.lex_state = 15, .external_lex_state = 16}, - [2665] = {.lex_state = 15, .external_lex_state = 16}, - [2666] = {.lex_state = 15, .external_lex_state = 16}, - [2667] = {.lex_state = 15, .external_lex_state = 16}, - [2668] = {.lex_state = 15, .external_lex_state = 16}, + [2664] = {.lex_state = 15, .external_lex_state = 14}, + [2665] = {.lex_state = 23, .external_lex_state = 16}, + [2666] = {.lex_state = 23, .external_lex_state = 16}, + [2667] = {.lex_state = 15, .external_lex_state = 14}, + [2668] = {.lex_state = 15, .external_lex_state = 14}, [2669] = {.lex_state = 15, .external_lex_state = 16}, - [2670] = {.lex_state = 15, .external_lex_state = 16}, + [2670] = {.lex_state = 15, .external_lex_state = 14}, [2671] = {.lex_state = 15, .external_lex_state = 16}, - [2672] = {.lex_state = 15, .external_lex_state = 16}, - [2673] = {.lex_state = 15, .external_lex_state = 16}, - [2674] = {.lex_state = 15, .external_lex_state = 16}, - [2675] = {.lex_state = 15, .external_lex_state = 16}, - [2676] = {.lex_state = 15, .external_lex_state = 16}, + [2672] = {.lex_state = 15, .external_lex_state = 14}, + [2673] = {.lex_state = 15, .external_lex_state = 14}, + [2674] = {.lex_state = 15, .external_lex_state = 14}, + [2675] = {.lex_state = 23, .external_lex_state = 14}, + [2676] = {.lex_state = 15, .external_lex_state = 14}, [2677] = {.lex_state = 15, .external_lex_state = 16}, [2678] = {.lex_state = 15, .external_lex_state = 16}, [2679] = {.lex_state = 15, .external_lex_state = 16}, @@ -16004,320 +16130,320 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2683] = {.lex_state = 15, .external_lex_state = 16}, [2684] = {.lex_state = 15, .external_lex_state = 16}, [2685] = {.lex_state = 15, .external_lex_state = 16}, - [2686] = {.lex_state = 15, .external_lex_state = 12}, + [2686] = {.lex_state = 15, .external_lex_state = 16}, [2687] = {.lex_state = 15, .external_lex_state = 16}, [2688] = {.lex_state = 15, .external_lex_state = 16}, - [2689] = {.lex_state = 15, .external_lex_state = 16}, + [2689] = {.lex_state = 15, .external_lex_state = 6}, [2690] = {.lex_state = 15, .external_lex_state = 16}, [2691] = {.lex_state = 15, .external_lex_state = 16}, [2692] = {.lex_state = 15, .external_lex_state = 16}, [2693] = {.lex_state = 15, .external_lex_state = 16}, - [2694] = {.lex_state = 16, .external_lex_state = 12}, - [2695] = {.lex_state = 15, .external_lex_state = 14}, - [2696] = {.lex_state = 15, .external_lex_state = 14}, - [2697] = {.lex_state = 15, .external_lex_state = 14}, - [2698] = {.lex_state = 15, .external_lex_state = 14}, - [2699] = {.lex_state = 15, .external_lex_state = 14}, - [2700] = {.lex_state = 15, .external_lex_state = 14}, - [2701] = {.lex_state = 15, .external_lex_state = 14}, - [2702] = {.lex_state = 5, .external_lex_state = 2}, - [2703] = {.lex_state = 15, .external_lex_state = 14}, - [2704] = {.lex_state = 15, .external_lex_state = 14}, - [2705] = {.lex_state = 15, .external_lex_state = 14}, - [2706] = {.lex_state = 15, .external_lex_state = 14}, - [2707] = {.lex_state = 15, .external_lex_state = 14}, - [2708] = {.lex_state = 15, .external_lex_state = 14}, - [2709] = {.lex_state = 15, .external_lex_state = 14}, - [2710] = {.lex_state = 15, .external_lex_state = 14}, - [2711] = {.lex_state = 15, .external_lex_state = 14}, - [2712] = {.lex_state = 15, .external_lex_state = 14}, - [2713] = {.lex_state = 16, .external_lex_state = 12}, - [2714] = {.lex_state = 16, .external_lex_state = 12}, - [2715] = {.lex_state = 15, .external_lex_state = 14}, - [2716] = {.lex_state = 16, .external_lex_state = 12}, - [2717] = {.lex_state = 15, .external_lex_state = 14}, - [2718] = {.lex_state = 16, .external_lex_state = 12}, - [2719] = {.lex_state = 15, .external_lex_state = 14}, - [2720] = {.lex_state = 15, .external_lex_state = 14}, - [2721] = {.lex_state = 15, .external_lex_state = 14}, - [2722] = {.lex_state = 15, .external_lex_state = 14}, - [2723] = {.lex_state = 15, .external_lex_state = 14}, - [2724] = {.lex_state = 15, .external_lex_state = 14}, - [2725] = {.lex_state = 15, .external_lex_state = 14}, - [2726] = {.lex_state = 15, .external_lex_state = 14}, - [2727] = {.lex_state = 15, .external_lex_state = 14}, - [2728] = {.lex_state = 15, .external_lex_state = 12}, - [2729] = {.lex_state = 15, .external_lex_state = 14}, - [2730] = {.lex_state = 15, .external_lex_state = 14}, - [2731] = {.lex_state = 15, .external_lex_state = 14}, - [2732] = {.lex_state = 15, .external_lex_state = 14}, - [2733] = {.lex_state = 15, .external_lex_state = 14}, - [2734] = {.lex_state = 15, .external_lex_state = 14}, - [2735] = {.lex_state = 16, .external_lex_state = 12}, - [2736] = {.lex_state = 5, .external_lex_state = 12}, - [2737] = {.lex_state = 16, .external_lex_state = 12}, + [2694] = {.lex_state = 15, .external_lex_state = 16}, + [2695] = {.lex_state = 15, .external_lex_state = 16}, + [2696] = {.lex_state = 23, .external_lex_state = 16}, + [2697] = {.lex_state = 23, .external_lex_state = 16}, + [2698] = {.lex_state = 23, .external_lex_state = 14}, + [2699] = {.lex_state = 15, .external_lex_state = 16}, + [2700] = {.lex_state = 15, .external_lex_state = 6}, + [2701] = {.lex_state = 15, .external_lex_state = 16}, + [2702] = {.lex_state = 15, .external_lex_state = 16}, + [2703] = {.lex_state = 15, .external_lex_state = 16}, + [2704] = {.lex_state = 15, .external_lex_state = 16}, + [2705] = {.lex_state = 15, .external_lex_state = 16}, + [2706] = {.lex_state = 15, .external_lex_state = 12}, + [2707] = {.lex_state = 15, .external_lex_state = 16}, + [2708] = {.lex_state = 15, .external_lex_state = 16}, + [2709] = {.lex_state = 15, .external_lex_state = 16}, + [2710] = {.lex_state = 15, .external_lex_state = 16}, + [2711] = {.lex_state = 15, .external_lex_state = 16}, + [2712] = {.lex_state = 15, .external_lex_state = 16}, + [2713] = {.lex_state = 23, .external_lex_state = 14}, + [2714] = {.lex_state = 23, .external_lex_state = 14}, + [2715] = {.lex_state = 15, .external_lex_state = 16}, + [2716] = {.lex_state = 15, .external_lex_state = 16}, + [2717] = {.lex_state = 23, .external_lex_state = 15}, + [2718] = {.lex_state = 23, .external_lex_state = 15}, + [2719] = {.lex_state = 15, .external_lex_state = 16}, + [2720] = {.lex_state = 15, .external_lex_state = 16}, + [2721] = {.lex_state = 15, .external_lex_state = 16}, + [2722] = {.lex_state = 23, .external_lex_state = 14}, + [2723] = {.lex_state = 15, .external_lex_state = 16}, + [2724] = {.lex_state = 15, .external_lex_state = 16}, + [2725] = {.lex_state = 15, .external_lex_state = 16}, + [2726] = {.lex_state = 15, .external_lex_state = 16}, + [2727] = {.lex_state = 15, .external_lex_state = 16}, + [2728] = {.lex_state = 15, .external_lex_state = 16}, + [2729] = {.lex_state = 15, .external_lex_state = 16}, + [2730] = {.lex_state = 15, .external_lex_state = 16}, + [2731] = {.lex_state = 15, .external_lex_state = 16}, + [2732] = {.lex_state = 15, .external_lex_state = 16}, + [2733] = {.lex_state = 15, .external_lex_state = 16}, + [2734] = {.lex_state = 15, .external_lex_state = 16}, + [2735] = {.lex_state = 15, .external_lex_state = 16}, + [2736] = {.lex_state = 15, .external_lex_state = 16}, + [2737] = {.lex_state = 15, .external_lex_state = 16}, [2738] = {.lex_state = 16, .external_lex_state = 12}, - [2739] = {.lex_state = 16, .external_lex_state = 12}, - [2740] = {.lex_state = 16, .external_lex_state = 12}, - [2741] = {.lex_state = 16, .external_lex_state = 12}, - [2742] = {.lex_state = 15, .external_lex_state = 14}, + [2739] = {.lex_state = 5, .external_lex_state = 12}, + [2740] = {.lex_state = 15, .external_lex_state = 14}, + [2741] = {.lex_state = 15, .external_lex_state = 14}, + [2742] = {.lex_state = 16, .external_lex_state = 12}, [2743] = {.lex_state = 15, .external_lex_state = 14}, [2744] = {.lex_state = 5, .external_lex_state = 12}, - [2745] = {.lex_state = 16, .external_lex_state = 12}, + [2745] = {.lex_state = 15, .external_lex_state = 14}, [2746] = {.lex_state = 15, .external_lex_state = 14}, - [2747] = {.lex_state = 15, .external_lex_state = 16}, - [2748] = {.lex_state = 15, .external_lex_state = 15}, - [2749] = {.lex_state = 5, .external_lex_state = 12}, - [2750] = {.lex_state = 16, .external_lex_state = 12}, + [2747] = {.lex_state = 15, .external_lex_state = 14}, + [2748] = {.lex_state = 15, .external_lex_state = 14}, + [2749] = {.lex_state = 15, .external_lex_state = 14}, + [2750] = {.lex_state = 5, .external_lex_state = 12}, [2751] = {.lex_state = 15, .external_lex_state = 14}, [2752] = {.lex_state = 15, .external_lex_state = 14}, [2753] = {.lex_state = 15, .external_lex_state = 14}, [2754] = {.lex_state = 15, .external_lex_state = 14}, [2755] = {.lex_state = 15, .external_lex_state = 14}, [2756] = {.lex_state = 15, .external_lex_state = 14}, - [2757] = {.lex_state = 15, .external_lex_state = 14}, - [2758] = {.lex_state = 15, .external_lex_state = 14}, + [2757] = {.lex_state = 16, .external_lex_state = 12}, + [2758] = {.lex_state = 5, .external_lex_state = 2}, [2759] = {.lex_state = 15, .external_lex_state = 14}, [2760] = {.lex_state = 15, .external_lex_state = 14}, [2761] = {.lex_state = 15, .external_lex_state = 14}, - [2762] = {.lex_state = 15, .external_lex_state = 14}, - [2763] = {.lex_state = 5, .external_lex_state = 12}, - [2764] = {.lex_state = 5, .external_lex_state = 12}, - [2765] = {.lex_state = 5, .external_lex_state = 12}, - [2766] = {.lex_state = 5, .external_lex_state = 14}, - [2767] = {.lex_state = 5, .external_lex_state = 12}, - [2768] = {.lex_state = 5, .external_lex_state = 12}, - [2769] = {.lex_state = 5, .external_lex_state = 12}, + [2762] = {.lex_state = 5, .external_lex_state = 12}, + [2763] = {.lex_state = 15, .external_lex_state = 14}, + [2764] = {.lex_state = 15, .external_lex_state = 14}, + [2765] = {.lex_state = 15, .external_lex_state = 14}, + [2766] = {.lex_state = 15, .external_lex_state = 14}, + [2767] = {.lex_state = 15, .external_lex_state = 16}, + [2768] = {.lex_state = 15, .external_lex_state = 15}, + [2769] = {.lex_state = 15, .external_lex_state = 14}, [2770] = {.lex_state = 5, .external_lex_state = 12}, - [2771] = {.lex_state = 5, .external_lex_state = 12}, - [2772] = {.lex_state = 5, .external_lex_state = 12}, - [2773] = {.lex_state = 5, .external_lex_state = 12}, + [2771] = {.lex_state = 5, .external_lex_state = 14}, + [2772] = {.lex_state = 15, .external_lex_state = 14}, + [2773] = {.lex_state = 15, .external_lex_state = 14}, [2774] = {.lex_state = 5, .external_lex_state = 12}, [2775] = {.lex_state = 5, .external_lex_state = 12}, - [2776] = {.lex_state = 5, .external_lex_state = 12}, + [2776] = {.lex_state = 15, .external_lex_state = 14}, [2777] = {.lex_state = 5, .external_lex_state = 12}, [2778] = {.lex_state = 5, .external_lex_state = 12}, - [2779] = {.lex_state = 5, .external_lex_state = 12}, - [2780] = {.lex_state = 5, .external_lex_state = 12}, + [2779] = {.lex_state = 16, .external_lex_state = 12}, + [2780] = {.lex_state = 15, .external_lex_state = 14}, [2781] = {.lex_state = 5, .external_lex_state = 12}, - [2782] = {.lex_state = 15, .external_lex_state = 14}, - [2783] = {.lex_state = 5, .external_lex_state = 12}, - [2784] = {.lex_state = 5, .external_lex_state = 12}, - [2785] = {.lex_state = 5, .external_lex_state = 2}, - [2786] = {.lex_state = 16, .external_lex_state = 12}, - [2787] = {.lex_state = 66, .external_lex_state = 13}, - [2788] = {.lex_state = 66, .external_lex_state = 13}, - [2789] = {.lex_state = 66, .external_lex_state = 12}, - [2790] = {.lex_state = 66, .external_lex_state = 13}, - [2791] = {.lex_state = 66, .external_lex_state = 13}, - [2792] = {.lex_state = 5, .external_lex_state = 14}, - [2793] = {.lex_state = 66, .external_lex_state = 13}, - [2794] = {.lex_state = 66, .external_lex_state = 13}, - [2795] = {.lex_state = 66, .external_lex_state = 13}, - [2796] = {.lex_state = 5, .external_lex_state = 8}, - [2797] = {.lex_state = 5, .external_lex_state = 6}, - [2798] = {.lex_state = 5, .external_lex_state = 6}, - [2799] = {.lex_state = 5, .external_lex_state = 8}, - [2800] = {.lex_state = 5, .external_lex_state = 8}, - [2801] = {.lex_state = 5, .external_lex_state = 6}, - [2802] = {.lex_state = 5, .external_lex_state = 12}, - [2803] = {.lex_state = 5, .external_lex_state = 6}, - [2804] = {.lex_state = 5, .external_lex_state = 8}, - [2805] = {.lex_state = 66, .external_lex_state = 12}, - [2806] = {.lex_state = 5, .external_lex_state = 6}, - [2807] = {.lex_state = 5, .external_lex_state = 6}, - [2808] = {.lex_state = 5, .external_lex_state = 8}, - [2809] = {.lex_state = 5, .external_lex_state = 14}, - [2810] = {.lex_state = 5, .external_lex_state = 6}, - [2811] = {.lex_state = 5, .external_lex_state = 6}, - [2812] = {.lex_state = 5, .external_lex_state = 6}, - [2813] = {.lex_state = 5, .external_lex_state = 6}, - [2814] = {.lex_state = 5, .external_lex_state = 8}, - [2815] = {.lex_state = 5, .external_lex_state = 8}, - [2816] = {.lex_state = 5, .external_lex_state = 6}, - [2817] = {.lex_state = 5, .external_lex_state = 8}, - [2818] = {.lex_state = 5, .external_lex_state = 6}, - [2819] = {.lex_state = 5, .external_lex_state = 6}, - [2820] = {.lex_state = 5, .external_lex_state = 6}, - [2821] = {.lex_state = 5, .external_lex_state = 6}, - [2822] = {.lex_state = 5, .external_lex_state = 8}, - [2823] = {.lex_state = 5, .external_lex_state = 6}, - [2824] = {.lex_state = 5, .external_lex_state = 6}, - [2825] = {.lex_state = 5, .external_lex_state = 8}, - [2826] = {.lex_state = 5, .external_lex_state = 6}, - [2827] = {.lex_state = 5, .external_lex_state = 8}, - [2828] = {.lex_state = 5, .external_lex_state = 6}, - [2829] = {.lex_state = 5, .external_lex_state = 6}, - [2830] = {.lex_state = 66, .external_lex_state = 12}, - [2831] = {.lex_state = 5, .external_lex_state = 6}, - [2832] = {.lex_state = 5, .external_lex_state = 14}, - [2833] = {.lex_state = 66, .external_lex_state = 12}, - [2834] = {.lex_state = 5, .external_lex_state = 12}, - [2835] = {.lex_state = 5, .external_lex_state = 6}, - [2836] = {.lex_state = 5, .external_lex_state = 8}, - [2837] = {.lex_state = 5, .external_lex_state = 6}, - [2838] = {.lex_state = 5, .external_lex_state = 6}, + [2782] = {.lex_state = 5, .external_lex_state = 12}, + [2783] = {.lex_state = 16, .external_lex_state = 12}, + [2784] = {.lex_state = 15, .external_lex_state = 14}, + [2785] = {.lex_state = 5, .external_lex_state = 12}, + [2786] = {.lex_state = 5, .external_lex_state = 12}, + [2787] = {.lex_state = 5, .external_lex_state = 12}, + [2788] = {.lex_state = 15, .external_lex_state = 14}, + [2789] = {.lex_state = 5, .external_lex_state = 12}, + [2790] = {.lex_state = 5, .external_lex_state = 12}, + [2791] = {.lex_state = 5, .external_lex_state = 12}, + [2792] = {.lex_state = 16, .external_lex_state = 12}, + [2793] = {.lex_state = 15, .external_lex_state = 14}, + [2794] = {.lex_state = 16, .external_lex_state = 12}, + [2795] = {.lex_state = 16, .external_lex_state = 12}, + [2796] = {.lex_state = 5, .external_lex_state = 12}, + [2797] = {.lex_state = 15, .external_lex_state = 14}, + [2798] = {.lex_state = 15, .external_lex_state = 14}, + [2799] = {.lex_state = 5, .external_lex_state = 12}, + [2800] = {.lex_state = 5, .external_lex_state = 12}, + [2801] = {.lex_state = 15, .external_lex_state = 14}, + [2802] = {.lex_state = 16, .external_lex_state = 12}, + [2803] = {.lex_state = 15, .external_lex_state = 14}, + [2804] = {.lex_state = 15, .external_lex_state = 14}, + [2805] = {.lex_state = 15, .external_lex_state = 14}, + [2806] = {.lex_state = 15, .external_lex_state = 14}, + [2807] = {.lex_state = 15, .external_lex_state = 12}, + [2808] = {.lex_state = 16, .external_lex_state = 12}, + [2809] = {.lex_state = 16, .external_lex_state = 12}, + [2810] = {.lex_state = 15, .external_lex_state = 14}, + [2811] = {.lex_state = 16, .external_lex_state = 12}, + [2812] = {.lex_state = 15, .external_lex_state = 14}, + [2813] = {.lex_state = 16, .external_lex_state = 12}, + [2814] = {.lex_state = 5, .external_lex_state = 12}, + [2815] = {.lex_state = 15, .external_lex_state = 14}, + [2816] = {.lex_state = 15, .external_lex_state = 14}, + [2817] = {.lex_state = 15, .external_lex_state = 14}, + [2818] = {.lex_state = 15, .external_lex_state = 14}, + [2819] = {.lex_state = 16, .external_lex_state = 12}, + [2820] = {.lex_state = 15, .external_lex_state = 14}, + [2821] = {.lex_state = 15, .external_lex_state = 14}, + [2822] = {.lex_state = 15, .external_lex_state = 14}, + [2823] = {.lex_state = 5, .external_lex_state = 12}, + [2824] = {.lex_state = 5, .external_lex_state = 12}, + [2825] = {.lex_state = 15, .external_lex_state = 14}, + [2826] = {.lex_state = 5, .external_lex_state = 2}, + [2827] = {.lex_state = 15, .external_lex_state = 14}, + [2828] = {.lex_state = 15, .external_lex_state = 14}, + [2829] = {.lex_state = 15, .external_lex_state = 14}, + [2830] = {.lex_state = 15, .external_lex_state = 14}, + [2831] = {.lex_state = 66, .external_lex_state = 13}, + [2832] = {.lex_state = 66, .external_lex_state = 12}, + [2833] = {.lex_state = 5, .external_lex_state = 14}, + [2834] = {.lex_state = 66, .external_lex_state = 13}, + [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 = 13}, [2839] = {.lex_state = 66, .external_lex_state = 13}, - [2840] = {.lex_state = 66, .external_lex_state = 12}, - [2841] = {.lex_state = 66, .external_lex_state = 13}, - [2842] = {.lex_state = 5, .external_lex_state = 12}, - [2843] = {.lex_state = 5, .external_lex_state = 2}, + [2840] = {.lex_state = 5, .external_lex_state = 6}, + [2841] = {.lex_state = 5, .external_lex_state = 6}, + [2842] = {.lex_state = 5, .external_lex_state = 8}, + [2843] = {.lex_state = 5, .external_lex_state = 6}, [2844] = {.lex_state = 66, .external_lex_state = 12}, - [2845] = {.lex_state = 66, .external_lex_state = 13}, - [2846] = {.lex_state = 66, .external_lex_state = 12}, - [2847] = {.lex_state = 66, .external_lex_state = 13}, - [2848] = {.lex_state = 5, .external_lex_state = 2}, - [2849] = {.lex_state = 66, .external_lex_state = 13}, - [2850] = {.lex_state = 66, .external_lex_state = 13}, - [2851] = {.lex_state = 66, .external_lex_state = 12}, - [2852] = {.lex_state = 66, .external_lex_state = 13}, - [2853] = {.lex_state = 66, .external_lex_state = 13}, - [2854] = {.lex_state = 66, .external_lex_state = 12}, - [2855] = {.lex_state = 66, .external_lex_state = 12}, - [2856] = {.lex_state = 5, .external_lex_state = 12}, - [2857] = {.lex_state = 5, .external_lex_state = 2}, - [2858] = {.lex_state = 66, .external_lex_state = 12}, - [2859] = {.lex_state = 66, .external_lex_state = 12}, - [2860] = {.lex_state = 5, .external_lex_state = 2}, - [2861] = {.lex_state = 66, .external_lex_state = 12}, - [2862] = {.lex_state = 5, .external_lex_state = 2}, - [2863] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 13}, - [2868] = {.lex_state = 66, .external_lex_state = 13}, - [2869] = {.lex_state = 66, .external_lex_state = 13}, - [2870] = {.lex_state = 66, .external_lex_state = 13}, - [2871] = {.lex_state = 66, .external_lex_state = 13}, - [2872] = {.lex_state = 66, .external_lex_state = 13}, - [2873] = {.lex_state = 66, .external_lex_state = 13}, - [2874] = {.lex_state = 66, .external_lex_state = 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}, - [2881] = {.lex_state = 66, .external_lex_state = 13}, - [2882] = {.lex_state = 66, .external_lex_state = 13}, - [2883] = {.lex_state = 66, .external_lex_state = 13}, + [2845] = {.lex_state = 5, .external_lex_state = 8}, + [2846] = {.lex_state = 5, .external_lex_state = 6}, + [2847] = {.lex_state = 5, .external_lex_state = 6}, + [2848] = {.lex_state = 5, .external_lex_state = 6}, + [2849] = {.lex_state = 66, .external_lex_state = 12}, + [2850] = {.lex_state = 5, .external_lex_state = 6}, + [2851] = {.lex_state = 5, .external_lex_state = 8}, + [2852] = {.lex_state = 5, .external_lex_state = 8}, + [2853] = {.lex_state = 5, .external_lex_state = 6}, + [2854] = {.lex_state = 5, .external_lex_state = 6}, + [2855] = {.lex_state = 5, .external_lex_state = 8}, + [2856] = {.lex_state = 5, .external_lex_state = 6}, + [2857] = {.lex_state = 5, .external_lex_state = 6}, + [2858] = {.lex_state = 5, .external_lex_state = 6}, + [2859] = {.lex_state = 5, .external_lex_state = 8}, + [2860] = {.lex_state = 5, .external_lex_state = 6}, + [2861] = {.lex_state = 5, .external_lex_state = 6}, + [2862] = {.lex_state = 5, .external_lex_state = 8}, + [2863] = {.lex_state = 5, .external_lex_state = 6}, + [2864] = {.lex_state = 5, .external_lex_state = 6}, + [2865] = {.lex_state = 5, .external_lex_state = 8}, + [2866] = {.lex_state = 5, .external_lex_state = 6}, + [2867] = {.lex_state = 5, .external_lex_state = 6}, + [2868] = {.lex_state = 5, .external_lex_state = 6}, + [2869] = {.lex_state = 5, .external_lex_state = 8}, + [2870] = {.lex_state = 5, .external_lex_state = 6}, + [2871] = {.lex_state = 5, .external_lex_state = 8}, + [2872] = {.lex_state = 5, .external_lex_state = 6}, + [2873] = {.lex_state = 5, .external_lex_state = 6}, + [2874] = {.lex_state = 5, .external_lex_state = 8}, + [2875] = {.lex_state = 5, .external_lex_state = 6}, + [2876] = {.lex_state = 5, .external_lex_state = 8}, + [2877] = {.lex_state = 5, .external_lex_state = 12}, + [2878] = {.lex_state = 66, .external_lex_state = 12}, + [2879] = {.lex_state = 5, .external_lex_state = 6}, + [2880] = {.lex_state = 5, .external_lex_state = 12}, + [2881] = {.lex_state = 5, .external_lex_state = 14}, + [2882] = {.lex_state = 5, .external_lex_state = 14}, + [2883] = {.lex_state = 66, .external_lex_state = 12}, [2884] = {.lex_state = 66, .external_lex_state = 13}, - [2885] = {.lex_state = 66, .external_lex_state = 13}, - [2886] = {.lex_state = 66, .external_lex_state = 13}, - [2887] = {.lex_state = 66, .external_lex_state = 13}, - [2888] = {.lex_state = 66, .external_lex_state = 13}, + [2885] = {.lex_state = 66, .external_lex_state = 12}, + [2886] = {.lex_state = 5, .external_lex_state = 12}, + [2887] = {.lex_state = 66, .external_lex_state = 12}, + [2888] = {.lex_state = 5, .external_lex_state = 2}, [2889] = {.lex_state = 66, .external_lex_state = 13}, [2890] = {.lex_state = 66, .external_lex_state = 13}, [2891] = {.lex_state = 66, .external_lex_state = 13}, [2892] = {.lex_state = 66, .external_lex_state = 13}, - [2893] = {.lex_state = 66, .external_lex_state = 13}, + [2893] = {.lex_state = 66, .external_lex_state = 12}, [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}, - [2898] = {.lex_state = 66, .external_lex_state = 13}, - [2899] = {.lex_state = 66, .external_lex_state = 13}, + [2895] = {.lex_state = 5, .external_lex_state = 2}, + [2896] = {.lex_state = 5, .external_lex_state = 12}, + [2897] = {.lex_state = 66, .external_lex_state = 12}, + [2898] = {.lex_state = 5, .external_lex_state = 2}, + [2899] = {.lex_state = 66, .external_lex_state = 12}, [2900] = {.lex_state = 66, .external_lex_state = 13}, - [2901] = {.lex_state = 66, .external_lex_state = 13}, - [2902] = {.lex_state = 66, .external_lex_state = 13}, - [2903] = {.lex_state = 66, .external_lex_state = 13}, - [2904] = {.lex_state = 66, .external_lex_state = 13}, - [2905] = {.lex_state = 66, .external_lex_state = 3}, + [2901] = {.lex_state = 5, .external_lex_state = 2}, + [2902] = {.lex_state = 5, .external_lex_state = 2}, + [2903] = {.lex_state = 66, .external_lex_state = 12}, + [2904] = {.lex_state = 66, .external_lex_state = 12}, + [2905] = {.lex_state = 66, .external_lex_state = 12}, [2906] = {.lex_state = 66, .external_lex_state = 13}, [2907] = {.lex_state = 66, .external_lex_state = 13}, - [2908] = {.lex_state = 66, .external_lex_state = 3}, - [2909] = {.lex_state = 66, .external_lex_state = 13}, - [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 = 13}, + [2908] = {.lex_state = 66, .external_lex_state = 12}, + [2909] = {.lex_state = 5, .external_lex_state = 7}, + [2910] = {.lex_state = 5, .external_lex_state = 7}, + [2911] = {.lex_state = 5, .external_lex_state = 7}, + [2912] = {.lex_state = 5, .external_lex_state = 7}, + [2913] = {.lex_state = 5, .external_lex_state = 7}, + [2914] = {.lex_state = 66, .external_lex_state = 12}, + [2915] = {.lex_state = 66, .external_lex_state = 3}, [2916] = {.lex_state = 66, .external_lex_state = 13}, - [2917] = {.lex_state = 66, .external_lex_state = 12}, - [2918] = {.lex_state = 66, .external_lex_state = 12}, - [2919] = {.lex_state = 66, .external_lex_state = 13}, + [2917] = {.lex_state = 66, .external_lex_state = 13}, + [2918] = {.lex_state = 66, .external_lex_state = 13}, + [2919] = {.lex_state = 66, .external_lex_state = 12}, [2920] = {.lex_state = 66, .external_lex_state = 13}, [2921] = {.lex_state = 66, .external_lex_state = 13}, - [2922] = {.lex_state = 5, .external_lex_state = 7}, + [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 = 12}, - [2926] = {.lex_state = 5, .external_lex_state = 7}, - [2927] = {.lex_state = 5, .external_lex_state = 7}, + [2925] = {.lex_state = 66, .external_lex_state = 13}, + [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 = 5, .external_lex_state = 7}, - [2931] = {.lex_state = 5, .external_lex_state = 7}, + [2930] = {.lex_state = 66, .external_lex_state = 13}, + [2931] = {.lex_state = 66, .external_lex_state = 13}, [2932] = {.lex_state = 66, .external_lex_state = 13}, [2933] = {.lex_state = 66, .external_lex_state = 13}, [2934] = {.lex_state = 66, .external_lex_state = 13}, [2935] = {.lex_state = 66, .external_lex_state = 13}, [2936] = {.lex_state = 66, .external_lex_state = 13}, - [2937] = {.lex_state = 5, .external_lex_state = 7}, - [2938] = {.lex_state = 5, .external_lex_state = 7}, - [2939] = {.lex_state = 66, .external_lex_state = 13}, - [2940] = {.lex_state = 66, .external_lex_state = 12}, - [2941] = {.lex_state = 66, .external_lex_state = 13}, - [2942] = {.lex_state = 5, .external_lex_state = 7}, + [2937] = {.lex_state = 66, .external_lex_state = 13}, + [2938] = {.lex_state = 66, .external_lex_state = 13}, + [2939] = {.lex_state = 5, .external_lex_state = 7}, + [2940] = {.lex_state = 66, .external_lex_state = 13}, + [2941] = {.lex_state = 66, .external_lex_state = 12}, + [2942] = {.lex_state = 66, .external_lex_state = 13}, [2943] = {.lex_state = 66, .external_lex_state = 13}, [2944] = {.lex_state = 66, .external_lex_state = 13}, [2945] = {.lex_state = 66, .external_lex_state = 13}, [2946] = {.lex_state = 66, .external_lex_state = 13}, - [2947] = {.lex_state = 66, .external_lex_state = 12}, + [2947] = {.lex_state = 66, .external_lex_state = 13}, [2948] = {.lex_state = 66, .external_lex_state = 13}, - [2949] = {.lex_state = 66, .external_lex_state = 12}, - [2950] = {.lex_state = 5, .external_lex_state = 7}, - [2951] = {.lex_state = 5, .external_lex_state = 7}, - [2952] = {.lex_state = 5, .external_lex_state = 7}, + [2949] = {.lex_state = 66, .external_lex_state = 13}, + [2950] = {.lex_state = 66, .external_lex_state = 12}, + [2951] = {.lex_state = 66, .external_lex_state = 13}, + [2952] = {.lex_state = 66, .external_lex_state = 13}, [2953] = {.lex_state = 66, .external_lex_state = 13}, - [2954] = {.lex_state = 5, .external_lex_state = 7}, - [2955] = {.lex_state = 5, .external_lex_state = 7}, - [2956] = {.lex_state = 66, .external_lex_state = 13}, - [2957] = {.lex_state = 66, .external_lex_state = 13}, + [2954] = {.lex_state = 66, .external_lex_state = 13}, + [2955] = {.lex_state = 66, .external_lex_state = 13}, + [2956] = {.lex_state = 5, .external_lex_state = 7}, + [2957] = {.lex_state = 5, .external_lex_state = 7}, [2958] = {.lex_state = 66, .external_lex_state = 13}, - [2959] = {.lex_state = 5, .external_lex_state = 7}, - [2960] = {.lex_state = 5, .external_lex_state = 7}, - [2961] = {.lex_state = 5, .external_lex_state = 7}, - [2962] = {.lex_state = 5, .external_lex_state = 7}, - [2963] = {.lex_state = 5, .external_lex_state = 7}, + [2959] = {.lex_state = 66, .external_lex_state = 12}, + [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 = 66, .external_lex_state = 13}, [2964] = {.lex_state = 5, .external_lex_state = 7}, [2965] = {.lex_state = 5, .external_lex_state = 7}, - [2966] = {.lex_state = 66, .external_lex_state = 13}, - [2967] = {.lex_state = 66, .external_lex_state = 13}, + [2966] = {.lex_state = 5, .external_lex_state = 7}, + [2967] = {.lex_state = 66, .external_lex_state = 3}, [2968] = {.lex_state = 66, .external_lex_state = 13}, - [2969] = {.lex_state = 66, .external_lex_state = 3}, - [2970] = {.lex_state = 66, .external_lex_state = 13}, + [2969] = {.lex_state = 66, .external_lex_state = 13}, + [2970] = {.lex_state = 66, .external_lex_state = 12}, [2971] = {.lex_state = 66, .external_lex_state = 13}, [2972] = {.lex_state = 66, .external_lex_state = 13}, [2973] = {.lex_state = 66, .external_lex_state = 13}, [2974] = {.lex_state = 66, .external_lex_state = 13}, [2975] = {.lex_state = 66, .external_lex_state = 13}, - [2976] = {.lex_state = 66, .external_lex_state = 13}, - [2977] = {.lex_state = 66, .external_lex_state = 13}, + [2976] = {.lex_state = 5, .external_lex_state = 7}, + [2977] = {.lex_state = 5, .external_lex_state = 7}, [2978] = {.lex_state = 66, .external_lex_state = 13}, - [2979] = {.lex_state = 66, .external_lex_state = 12}, - [2980] = {.lex_state = 66, .external_lex_state = 12}, + [2979] = {.lex_state = 66, .external_lex_state = 13}, + [2980] = {.lex_state = 66, .external_lex_state = 13}, [2981] = {.lex_state = 66, .external_lex_state = 13}, [2982] = {.lex_state = 66, .external_lex_state = 13}, [2983] = {.lex_state = 66, .external_lex_state = 13}, [2984] = {.lex_state = 66, .external_lex_state = 13}, - [2985] = {.lex_state = 66, .external_lex_state = 13}, + [2985] = {.lex_state = 66, .external_lex_state = 12}, [2986] = {.lex_state = 66, .external_lex_state = 13}, [2987] = {.lex_state = 66, .external_lex_state = 13}, - [2988] = {.lex_state = 66, .external_lex_state = 13}, + [2988] = {.lex_state = 66, .external_lex_state = 12}, [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}, - [2993] = {.lex_state = 66, .external_lex_state = 13}, + [2993] = {.lex_state = 5, .external_lex_state = 7}, [2994] = {.lex_state = 66, .external_lex_state = 13}, [2995] = {.lex_state = 66, .external_lex_state = 13}, [2996] = {.lex_state = 66, .external_lex_state = 13}, [2997] = {.lex_state = 66, .external_lex_state = 13}, [2998] = {.lex_state = 66, .external_lex_state = 13}, - [2999] = {.lex_state = 66, .external_lex_state = 13}, + [2999] = {.lex_state = 5, .external_lex_state = 7}, [3000] = {.lex_state = 66, .external_lex_state = 13}, [3001] = {.lex_state = 66, .external_lex_state = 13}, [3002] = {.lex_state = 66, .external_lex_state = 13}, @@ -16327,25 +16453,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3006] = {.lex_state = 66, .external_lex_state = 13}, [3007] = {.lex_state = 66, .external_lex_state = 13}, [3008] = {.lex_state = 66, .external_lex_state = 13}, - [3009] = {.lex_state = 66, .external_lex_state = 13}, + [3009] = {.lex_state = 66, .external_lex_state = 3}, [3010] = {.lex_state = 66, .external_lex_state = 13}, [3011] = {.lex_state = 66, .external_lex_state = 13}, [3012] = {.lex_state = 66, .external_lex_state = 13}, - [3013] = {.lex_state = 66, .external_lex_state = 13}, + [3013] = {.lex_state = 5, .external_lex_state = 7}, [3014] = {.lex_state = 66, .external_lex_state = 13}, [3015] = {.lex_state = 66, .external_lex_state = 13}, [3016] = {.lex_state = 66, .external_lex_state = 13}, [3017] = {.lex_state = 66, .external_lex_state = 13}, - [3018] = {.lex_state = 66, .external_lex_state = 13}, - [3019] = {.lex_state = 66, .external_lex_state = 13}, + [3018] = {.lex_state = 5, .external_lex_state = 7}, + [3019] = {.lex_state = 5, .external_lex_state = 7}, [3020] = {.lex_state = 66, .external_lex_state = 13}, [3021] = {.lex_state = 66, .external_lex_state = 13}, [3022] = {.lex_state = 66, .external_lex_state = 13}, [3023] = {.lex_state = 66, .external_lex_state = 13}, - [3024] = {.lex_state = 66, .external_lex_state = 13}, + [3024] = {.lex_state = 5, .external_lex_state = 7}, [3025] = {.lex_state = 66, .external_lex_state = 13}, - [3026] = {.lex_state = 66, .external_lex_state = 13}, - [3027] = {.lex_state = 17, .external_lex_state = 11}, + [3026] = {.lex_state = 5, .external_lex_state = 7}, + [3027] = {.lex_state = 66, .external_lex_state = 13}, [3028] = {.lex_state = 66, .external_lex_state = 13}, [3029] = {.lex_state = 66, .external_lex_state = 13}, [3030] = {.lex_state = 66, .external_lex_state = 13}, @@ -16365,7 +16491,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3047] = {.lex_state = 66, .external_lex_state = 12}, [3048] = {.lex_state = 66, .external_lex_state = 13}, [3049] = {.lex_state = 66, .external_lex_state = 13}, [3050] = {.lex_state = 66, .external_lex_state = 13}, @@ -16374,11 +16500,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3053] = {.lex_state = 66, .external_lex_state = 13}, [3054] = {.lex_state = 66, .external_lex_state = 13}, [3055] = {.lex_state = 66, .external_lex_state = 13}, - [3056] = {.lex_state = 66, .external_lex_state = 13}, + [3056] = {.lex_state = 17, .external_lex_state = 11}, [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 = 12}, + [3060] = {.lex_state = 66, .external_lex_state = 13}, [3061] = {.lex_state = 66, .external_lex_state = 13}, [3062] = {.lex_state = 66, .external_lex_state = 13}, [3063] = {.lex_state = 66, .external_lex_state = 13}, @@ -16411,7 +16537,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3090] = {.lex_state = 66, .external_lex_state = 13}, [3091] = {.lex_state = 66, .external_lex_state = 13}, [3092] = {.lex_state = 66, .external_lex_state = 13}, - [3093] = {.lex_state = 66, .external_lex_state = 13}, + [3093] = {.lex_state = 66, .external_lex_state = 12}, [3094] = {.lex_state = 66, .external_lex_state = 13}, [3095] = {.lex_state = 66, .external_lex_state = 13}, [3096] = {.lex_state = 66, .external_lex_state = 13}, @@ -16423,23 +16549,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3102] = {.lex_state = 66, .external_lex_state = 13}, [3103] = {.lex_state = 66, .external_lex_state = 13}, [3104] = {.lex_state = 66, .external_lex_state = 13}, - [3105] = {.lex_state = 17, .external_lex_state = 11}, + [3105] = {.lex_state = 66, .external_lex_state = 13}, [3106] = {.lex_state = 66, .external_lex_state = 13}, [3107] = {.lex_state = 66, .external_lex_state = 13}, - [3108] = {.lex_state = 66, .external_lex_state = 12}, + [3108] = {.lex_state = 66, .external_lex_state = 13}, [3109] = {.lex_state = 66, .external_lex_state = 13}, [3110] = {.lex_state = 66, .external_lex_state = 13}, - [3111] = {.lex_state = 66, .external_lex_state = 13}, + [3111] = {.lex_state = 5, .external_lex_state = 2}, [3112] = {.lex_state = 66, .external_lex_state = 13}, [3113] = {.lex_state = 66, .external_lex_state = 13}, - [3114] = {.lex_state = 5, .external_lex_state = 2}, + [3114] = {.lex_state = 66, .external_lex_state = 13}, [3115] = {.lex_state = 66, .external_lex_state = 13}, - [3116] = {.lex_state = 5, .external_lex_state = 2}, + [3116] = {.lex_state = 66, .external_lex_state = 13}, [3117] = {.lex_state = 66, .external_lex_state = 13}, [3118] = {.lex_state = 66, .external_lex_state = 13}, - [3119] = {.lex_state = 5, .external_lex_state = 2}, - [3120] = {.lex_state = 5, .external_lex_state = 2}, - [3121] = {.lex_state = 5, .external_lex_state = 2}, + [3119] = {.lex_state = 66, .external_lex_state = 13}, + [3120] = {.lex_state = 66, .external_lex_state = 13}, + [3121] = {.lex_state = 66, .external_lex_state = 13}, [3122] = {.lex_state = 66, .external_lex_state = 13}, [3123] = {.lex_state = 66, .external_lex_state = 13}, [3124] = {.lex_state = 66, .external_lex_state = 13}, @@ -16447,992 +16573,992 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3126] = {.lex_state = 66, .external_lex_state = 13}, [3127] = {.lex_state = 66, .external_lex_state = 13}, [3128] = {.lex_state = 66, .external_lex_state = 13}, - [3129] = {.lex_state = 5, .external_lex_state = 2}, - [3130] = {.lex_state = 5, .external_lex_state = 2}, - [3131] = {.lex_state = 5, .external_lex_state = 2}, - [3132] = {.lex_state = 5, .external_lex_state = 2}, + [3129] = {.lex_state = 66, .external_lex_state = 13}, + [3130] = {.lex_state = 66, .external_lex_state = 13}, + [3131] = {.lex_state = 66, .external_lex_state = 13}, + [3132] = {.lex_state = 66, .external_lex_state = 13}, [3133] = {.lex_state = 66, .external_lex_state = 13}, - [3134] = {.lex_state = 66, .external_lex_state = 12}, - [3135] = {.lex_state = 66, .external_lex_state = 12}, - [3136] = {.lex_state = 66, .external_lex_state = 14}, - [3137] = {.lex_state = 66, .external_lex_state = 14}, - [3138] = {.lex_state = 18, .external_lex_state = 12}, - [3139] = {.lex_state = 18, .external_lex_state = 12}, - [3140] = {.lex_state = 66, .external_lex_state = 12}, - [3141] = {.lex_state = 18, .external_lex_state = 12}, - [3142] = {.lex_state = 66, .external_lex_state = 12}, - [3143] = {.lex_state = 18, .external_lex_state = 12}, - [3144] = {.lex_state = 66, .external_lex_state = 14}, - [3145] = {.lex_state = 66, .external_lex_state = 12}, - [3146] = {.lex_state = 66, .external_lex_state = 2}, - [3147] = {.lex_state = 17, .external_lex_state = 12}, - [3148] = {.lex_state = 17, .external_lex_state = 12}, - [3149] = {.lex_state = 66, .external_lex_state = 14}, - [3150] = {.lex_state = 66, .external_lex_state = 12}, - [3151] = {.lex_state = 66, .external_lex_state = 12}, - [3152] = {.lex_state = 66, .external_lex_state = 2}, - [3153] = {.lex_state = 15, .external_lex_state = 14}, - [3154] = {.lex_state = 17, .external_lex_state = 15}, - [3155] = {.lex_state = 17, .external_lex_state = 15}, - [3156] = {.lex_state = 17, .external_lex_state = 16}, - [3157] = {.lex_state = 17, .external_lex_state = 16}, - [3158] = {.lex_state = 17, .external_lex_state = 15}, - [3159] = {.lex_state = 17, .external_lex_state = 15}, - [3160] = {.lex_state = 66, .external_lex_state = 12}, - [3161] = {.lex_state = 14, .external_lex_state = 16}, - [3162] = {.lex_state = 17, .external_lex_state = 16}, - [3163] = {.lex_state = 14, .external_lex_state = 16}, - [3164] = {.lex_state = 18, .external_lex_state = 15}, - [3165] = {.lex_state = 18, .external_lex_state = 15}, - [3166] = {.lex_state = 18, .external_lex_state = 15}, - [3167] = {.lex_state = 18, .external_lex_state = 15}, - [3168] = {.lex_state = 15, .external_lex_state = 14}, - [3169] = {.lex_state = 17, .external_lex_state = 14}, - [3170] = {.lex_state = 18, .external_lex_state = 15}, - [3171] = {.lex_state = 18, .external_lex_state = 15}, - [3172] = {.lex_state = 18, .external_lex_state = 11}, - [3173] = {.lex_state = 17, .external_lex_state = 16}, - [3174] = {.lex_state = 18, .external_lex_state = 15}, - [3175] = {.lex_state = 17, .external_lex_state = 14}, - [3176] = {.lex_state = 15, .external_lex_state = 14}, - [3177] = {.lex_state = 18, .external_lex_state = 15}, - [3178] = {.lex_state = 18, .external_lex_state = 15}, - [3179] = {.lex_state = 18, .external_lex_state = 15}, - [3180] = {.lex_state = 18, .external_lex_state = 15}, - [3181] = {.lex_state = 14, .external_lex_state = 16}, - [3182] = {.lex_state = 18, .external_lex_state = 15}, - [3183] = {.lex_state = 18, .external_lex_state = 15}, - [3184] = {.lex_state = 14, .external_lex_state = 16}, - [3185] = {.lex_state = 15, .external_lex_state = 14}, - [3186] = {.lex_state = 15, .external_lex_state = 14}, - [3187] = {.lex_state = 14, .external_lex_state = 16}, - [3188] = {.lex_state = 18, .external_lex_state = 15}, - [3189] = {.lex_state = 18, .external_lex_state = 14}, - [3190] = {.lex_state = 15, .external_lex_state = 12}, - [3191] = {.lex_state = 15, .external_lex_state = 12}, - [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 = 18, .external_lex_state = 14}, - [3196] = {.lex_state = 18, .external_lex_state = 14}, - [3197] = {.lex_state = 18, .external_lex_state = 14}, - [3198] = {.lex_state = 18, .external_lex_state = 14}, - [3199] = {.lex_state = 18, .external_lex_state = 14}, - [3200] = {.lex_state = 15, .external_lex_state = 12}, - [3201] = {.lex_state = 18, .external_lex_state = 14}, - [3202] = {.lex_state = 18, .external_lex_state = 14}, - [3203] = {.lex_state = 18, .external_lex_state = 14}, - [3204] = {.lex_state = 15, .external_lex_state = 12}, - [3205] = {.lex_state = 15, .external_lex_state = 12}, - [3206] = {.lex_state = 18, .external_lex_state = 14}, - [3207] = {.lex_state = 15, .external_lex_state = 12}, - [3208] = {.lex_state = 18, .external_lex_state = 11}, - [3209] = {.lex_state = 18, .external_lex_state = 14}, - [3210] = {.lex_state = 18, .external_lex_state = 11}, - [3211] = {.lex_state = 15, .external_lex_state = 12}, - [3212] = {.lex_state = 18, .external_lex_state = 14}, - [3213] = {.lex_state = 18, .external_lex_state = 11}, - [3214] = {.lex_state = 15, .external_lex_state = 12}, - [3215] = {.lex_state = 18, .external_lex_state = 14}, - [3216] = {.lex_state = 15, .external_lex_state = 12}, - [3217] = {.lex_state = 18, .external_lex_state = 14}, - [3218] = {.lex_state = 18, .external_lex_state = 11}, - [3219] = {.lex_state = 18, .external_lex_state = 11}, - [3220] = {.lex_state = 18, .external_lex_state = 14}, - [3221] = {.lex_state = 18, .external_lex_state = 11}, - [3222] = {.lex_state = 15, .external_lex_state = 12}, - [3223] = {.lex_state = 66, .external_lex_state = 13}, - [3224] = {.lex_state = 15, .external_lex_state = 12}, - [3225] = {.lex_state = 15, .external_lex_state = 12}, - [3226] = {.lex_state = 66, .external_lex_state = 12}, - [3227] = {.lex_state = 15, .external_lex_state = 12}, - [3228] = {.lex_state = 18, .external_lex_state = 11}, - [3229] = {.lex_state = 9, .external_lex_state = 11}, - [3230] = {.lex_state = 66, .external_lex_state = 13}, - [3231] = {.lex_state = 17, .external_lex_state = 14}, - [3232] = {.lex_state = 66, .external_lex_state = 13}, + [3134] = {.lex_state = 66, .external_lex_state = 13}, + [3135] = {.lex_state = 66, .external_lex_state = 13}, + [3136] = {.lex_state = 66, .external_lex_state = 13}, + [3137] = {.lex_state = 66, .external_lex_state = 13}, + [3138] = {.lex_state = 66, .external_lex_state = 13}, + [3139] = {.lex_state = 66, .external_lex_state = 13}, + [3140] = {.lex_state = 66, .external_lex_state = 13}, + [3141] = {.lex_state = 66, .external_lex_state = 13}, + [3142] = {.lex_state = 66, .external_lex_state = 13}, + [3143] = {.lex_state = 66, .external_lex_state = 13}, + [3144] = {.lex_state = 66, .external_lex_state = 13}, + [3145] = {.lex_state = 66, .external_lex_state = 13}, + [3146] = {.lex_state = 66, .external_lex_state = 13}, + [3147] = {.lex_state = 66, .external_lex_state = 13}, + [3148] = {.lex_state = 17, .external_lex_state = 11}, + [3149] = {.lex_state = 66, .external_lex_state = 13}, + [3150] = {.lex_state = 66, .external_lex_state = 13}, + [3151] = {.lex_state = 66, .external_lex_state = 13}, + [3152] = {.lex_state = 66, .external_lex_state = 13}, + [3153] = {.lex_state = 66, .external_lex_state = 13}, + [3154] = {.lex_state = 66, .external_lex_state = 13}, + [3155] = {.lex_state = 66, .external_lex_state = 13}, + [3156] = {.lex_state = 66, .external_lex_state = 13}, + [3157] = {.lex_state = 66, .external_lex_state = 13}, + [3158] = {.lex_state = 66, .external_lex_state = 13}, + [3159] = {.lex_state = 66, .external_lex_state = 13}, + [3160] = {.lex_state = 5, .external_lex_state = 2}, + [3161] = {.lex_state = 66, .external_lex_state = 13}, + [3162] = {.lex_state = 66, .external_lex_state = 13}, + [3163] = {.lex_state = 66, .external_lex_state = 13}, + [3164] = {.lex_state = 66, .external_lex_state = 13}, + [3165] = {.lex_state = 66, .external_lex_state = 13}, + [3166] = {.lex_state = 66, .external_lex_state = 13}, + [3167] = {.lex_state = 5, .external_lex_state = 2}, + [3168] = {.lex_state = 66, .external_lex_state = 13}, + [3169] = {.lex_state = 5, .external_lex_state = 2}, + [3170] = {.lex_state = 5, .external_lex_state = 2}, + [3171] = {.lex_state = 5, .external_lex_state = 2}, + [3172] = {.lex_state = 66, .external_lex_state = 13}, + [3173] = {.lex_state = 5, .external_lex_state = 2}, + [3174] = {.lex_state = 5, .external_lex_state = 2}, + [3175] = {.lex_state = 5, .external_lex_state = 2}, + [3176] = {.lex_state = 66, .external_lex_state = 13}, + [3177] = {.lex_state = 66, .external_lex_state = 13}, + [3178] = {.lex_state = 66, .external_lex_state = 14}, + [3179] = {.lex_state = 18, .external_lex_state = 12}, + [3180] = {.lex_state = 66, .external_lex_state = 14}, + [3181] = {.lex_state = 18, .external_lex_state = 12}, + [3182] = {.lex_state = 66, .external_lex_state = 12}, + [3183] = {.lex_state = 18, .external_lex_state = 12}, + [3184] = {.lex_state = 66, .external_lex_state = 12}, + [3185] = {.lex_state = 18, .external_lex_state = 12}, + [3186] = {.lex_state = 66, .external_lex_state = 12}, + [3187] = {.lex_state = 66, .external_lex_state = 12}, + [3188] = {.lex_state = 15, .external_lex_state = 14}, + [3189] = {.lex_state = 17, .external_lex_state = 12}, + [3190] = {.lex_state = 66, .external_lex_state = 12}, + [3191] = {.lex_state = 17, .external_lex_state = 12}, + [3192] = {.lex_state = 66, .external_lex_state = 12}, + [3193] = {.lex_state = 66, .external_lex_state = 2}, + [3194] = {.lex_state = 66, .external_lex_state = 14}, + [3195] = {.lex_state = 66, .external_lex_state = 14}, + [3196] = {.lex_state = 66, .external_lex_state = 12}, + [3197] = {.lex_state = 66, .external_lex_state = 2}, + [3198] = {.lex_state = 17, .external_lex_state = 15}, + [3199] = {.lex_state = 66, .external_lex_state = 12}, + [3200] = {.lex_state = 17, .external_lex_state = 15}, + [3201] = {.lex_state = 17, .external_lex_state = 16}, + [3202] = {.lex_state = 17, .external_lex_state = 15}, + [3203] = {.lex_state = 17, .external_lex_state = 16}, + [3204] = {.lex_state = 17, .external_lex_state = 15}, + [3205] = {.lex_state = 14, .external_lex_state = 16}, + [3206] = {.lex_state = 15, .external_lex_state = 14}, + [3207] = {.lex_state = 14, .external_lex_state = 16}, + [3208] = {.lex_state = 18, .external_lex_state = 15}, + [3209] = {.lex_state = 18, .external_lex_state = 15}, + [3210] = {.lex_state = 14, .external_lex_state = 16}, + [3211] = {.lex_state = 18, .external_lex_state = 15}, + [3212] = {.lex_state = 17, .external_lex_state = 14}, + [3213] = {.lex_state = 18, .external_lex_state = 15}, + [3214] = {.lex_state = 18, .external_lex_state = 15}, + [3215] = {.lex_state = 18, .external_lex_state = 15}, + [3216] = {.lex_state = 17, .external_lex_state = 14}, + [3217] = {.lex_state = 18, .external_lex_state = 11}, + [3218] = {.lex_state = 15, .external_lex_state = 14}, + [3219] = {.lex_state = 15, .external_lex_state = 14}, + [3220] = {.lex_state = 18, .external_lex_state = 15}, + [3221] = {.lex_state = 14, .external_lex_state = 16}, + [3222] = {.lex_state = 18, .external_lex_state = 15}, + [3223] = {.lex_state = 18, .external_lex_state = 15}, + [3224] = {.lex_state = 18, .external_lex_state = 15}, + [3225] = {.lex_state = 14, .external_lex_state = 16}, + [3226] = {.lex_state = 18, .external_lex_state = 15}, + [3227] = {.lex_state = 17, .external_lex_state = 16}, + [3228] = {.lex_state = 17, .external_lex_state = 16}, + [3229] = {.lex_state = 15, .external_lex_state = 14}, + [3230] = {.lex_state = 18, .external_lex_state = 15}, + [3231] = {.lex_state = 18, .external_lex_state = 15}, + [3232] = {.lex_state = 18, .external_lex_state = 15}, [3233] = {.lex_state = 18, .external_lex_state = 11}, - [3234] = {.lex_state = 66, .external_lex_state = 13}, - [3235] = {.lex_state = 15, .external_lex_state = 12}, - [3236] = {.lex_state = 66, .external_lex_state = 13}, - [3237] = {.lex_state = 18, .external_lex_state = 11}, - [3238] = {.lex_state = 18, .external_lex_state = 11}, - [3239] = {.lex_state = 66, .external_lex_state = 14}, - [3240] = {.lex_state = 9, .external_lex_state = 11}, - [3241] = {.lex_state = 66, .external_lex_state = 14}, - [3242] = {.lex_state = 66, .external_lex_state = 13}, - [3243] = {.lex_state = 66, .external_lex_state = 12}, - [3244] = {.lex_state = 18, .external_lex_state = 12}, - [3245] = {.lex_state = 66, .external_lex_state = 13}, - [3246] = {.lex_state = 17, .external_lex_state = 14}, - [3247] = {.lex_state = 18, .external_lex_state = 11}, - [3248] = {.lex_state = 15, .external_lex_state = 12}, - [3249] = {.lex_state = 9, .external_lex_state = 11}, - [3250] = {.lex_state = 9, .external_lex_state = 12}, - [3251] = {.lex_state = 66, .external_lex_state = 12}, - [3252] = {.lex_state = 66, .external_lex_state = 14}, - [3253] = {.lex_state = 9, .external_lex_state = 11}, - [3254] = {.lex_state = 9, .external_lex_state = 11}, - [3255] = {.lex_state = 9, .external_lex_state = 11}, - [3256] = {.lex_state = 18, .external_lex_state = 12}, - [3257] = {.lex_state = 15, .external_lex_state = 14}, - [3258] = {.lex_state = 66, .external_lex_state = 14}, - [3259] = {.lex_state = 15, .external_lex_state = 14}, - [3260] = {.lex_state = 15, .external_lex_state = 14}, - [3261] = {.lex_state = 15, .external_lex_state = 12}, - [3262] = {.lex_state = 15, .external_lex_state = 14}, - [3263] = {.lex_state = 15, .external_lex_state = 14}, - [3264] = {.lex_state = 18, .external_lex_state = 12}, - [3265] = {.lex_state = 66, .external_lex_state = 14}, - [3266] = {.lex_state = 15, .external_lex_state = 12}, - [3267] = {.lex_state = 15, .external_lex_state = 12}, - [3268] = {.lex_state = 15, .external_lex_state = 12}, - [3269] = {.lex_state = 15, .external_lex_state = 12}, - [3270] = {.lex_state = 9, .external_lex_state = 12}, - [3271] = {.lex_state = 15, .external_lex_state = 12}, - [3272] = {.lex_state = 15, .external_lex_state = 12}, - [3273] = {.lex_state = 5, .external_lex_state = 12}, - [3274] = {.lex_state = 9, .external_lex_state = 12}, - [3275] = {.lex_state = 15, .external_lex_state = 16}, - [3276] = {.lex_state = 66, .external_lex_state = 14}, - [3277] = {.lex_state = 66, .external_lex_state = 12}, - [3278] = {.lex_state = 9, .external_lex_state = 12}, - [3279] = {.lex_state = 15, .external_lex_state = 16}, - [3280] = {.lex_state = 15, .external_lex_state = 16}, - [3281] = {.lex_state = 15, .external_lex_state = 16}, - [3282] = {.lex_state = 15, .external_lex_state = 16}, - [3283] = {.lex_state = 15, .external_lex_state = 12}, - [3284] = {.lex_state = 15, .external_lex_state = 12}, + [3234] = {.lex_state = 15, .external_lex_state = 12}, + [3235] = {.lex_state = 18, .external_lex_state = 14}, + [3236] = {.lex_state = 18, .external_lex_state = 14}, + [3237] = {.lex_state = 15, .external_lex_state = 12}, + [3238] = {.lex_state = 15, .external_lex_state = 12}, + [3239] = {.lex_state = 15, .external_lex_state = 12}, + [3240] = {.lex_state = 15, .external_lex_state = 12}, + [3241] = {.lex_state = 18, .external_lex_state = 14}, + [3242] = {.lex_state = 18, .external_lex_state = 14}, + [3243] = {.lex_state = 18, .external_lex_state = 14}, + [3244] = {.lex_state = 15, .external_lex_state = 12}, + [3245] = {.lex_state = 18, .external_lex_state = 14}, + [3246] = {.lex_state = 18, .external_lex_state = 14}, + [3247] = {.lex_state = 18, .external_lex_state = 14}, + [3248] = {.lex_state = 18, .external_lex_state = 11}, + [3249] = {.lex_state = 15, .external_lex_state = 12}, + [3250] = {.lex_state = 15, .external_lex_state = 12}, + [3251] = {.lex_state = 15, .external_lex_state = 12}, + [3252] = {.lex_state = 18, .external_lex_state = 11}, + [3253] = {.lex_state = 18, .external_lex_state = 11}, + [3254] = {.lex_state = 18, .external_lex_state = 14}, + [3255] = {.lex_state = 18, .external_lex_state = 14}, + [3256] = {.lex_state = 18, .external_lex_state = 14}, + [3257] = {.lex_state = 15, .external_lex_state = 12}, + [3258] = {.lex_state = 18, .external_lex_state = 11}, + [3259] = {.lex_state = 18, .external_lex_state = 14}, + [3260] = {.lex_state = 15, .external_lex_state = 12}, + [3261] = {.lex_state = 18, .external_lex_state = 14}, + [3262] = {.lex_state = 18, .external_lex_state = 14}, + [3263] = {.lex_state = 18, .external_lex_state = 14}, + [3264] = {.lex_state = 15, .external_lex_state = 12}, + [3265] = {.lex_state = 18, .external_lex_state = 11}, + [3266] = {.lex_state = 66, .external_lex_state = 13}, + [3267] = {.lex_state = 9, .external_lex_state = 11}, + [3268] = {.lex_state = 18, .external_lex_state = 12}, + [3269] = {.lex_state = 66, .external_lex_state = 14}, + [3270] = {.lex_state = 18, .external_lex_state = 11}, + [3271] = {.lex_state = 17, .external_lex_state = 14}, + [3272] = {.lex_state = 17, .external_lex_state = 14}, + [3273] = {.lex_state = 15, .external_lex_state = 12}, + [3274] = {.lex_state = 15, .external_lex_state = 12}, + [3275] = {.lex_state = 15, .external_lex_state = 12}, + [3276] = {.lex_state = 15, .external_lex_state = 12}, + [3277] = {.lex_state = 66, .external_lex_state = 13}, + [3278] = {.lex_state = 66, .external_lex_state = 12}, + [3279] = {.lex_state = 66, .external_lex_state = 13}, + [3280] = {.lex_state = 66, .external_lex_state = 13}, + [3281] = {.lex_state = 66, .external_lex_state = 13}, + [3282] = {.lex_state = 18, .external_lex_state = 11}, + [3283] = {.lex_state = 9, .external_lex_state = 11}, + [3284] = {.lex_state = 66, .external_lex_state = 12}, [3285] = {.lex_state = 15, .external_lex_state = 12}, - [3286] = {.lex_state = 15, .external_lex_state = 12}, - [3287] = {.lex_state = 15, .external_lex_state = 12}, - [3288] = {.lex_state = 15, .external_lex_state = 12}, - [3289] = {.lex_state = 15, .external_lex_state = 12}, - [3290] = {.lex_state = 15, .external_lex_state = 12}, - [3291] = {.lex_state = 15, .external_lex_state = 12}, + [3286] = {.lex_state = 66, .external_lex_state = 14}, + [3287] = {.lex_state = 66, .external_lex_state = 13}, + [3288] = {.lex_state = 66, .external_lex_state = 13}, + [3289] = {.lex_state = 18, .external_lex_state = 11}, + [3290] = {.lex_state = 18, .external_lex_state = 11}, + [3291] = {.lex_state = 18, .external_lex_state = 11}, [3292] = {.lex_state = 15, .external_lex_state = 12}, - [3293] = {.lex_state = 15, .external_lex_state = 12}, - [3294] = {.lex_state = 15, .external_lex_state = 12}, - [3295] = {.lex_state = 15, .external_lex_state = 12}, - [3296] = {.lex_state = 5, .external_lex_state = 14}, - [3297] = {.lex_state = 5, .external_lex_state = 14}, - [3298] = {.lex_state = 5, .external_lex_state = 14}, - [3299] = {.lex_state = 5, .external_lex_state = 14}, - [3300] = {.lex_state = 5, .external_lex_state = 14}, - [3301] = {.lex_state = 5, .external_lex_state = 14}, - [3302] = {.lex_state = 66, .external_lex_state = 12}, - [3303] = {.lex_state = 5, .external_lex_state = 14}, - [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 = 9, .external_lex_state = 12}, - [3311] = {.lex_state = 5, .external_lex_state = 14}, - [3312] = {.lex_state = 5, .external_lex_state = 14}, - [3313] = {.lex_state = 5, .external_lex_state = 14}, - [3314] = {.lex_state = 5, .external_lex_state = 14}, - [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 = 66, .external_lex_state = 12}, - [3319] = {.lex_state = 5, .external_lex_state = 14}, - [3320] = {.lex_state = 66, .external_lex_state = 12}, - [3321] = {.lex_state = 18, .external_lex_state = 14}, - [3322] = {.lex_state = 5, .external_lex_state = 14}, - [3323] = {.lex_state = 18, .external_lex_state = 14}, - [3324] = {.lex_state = 9, .external_lex_state = 12}, - [3325] = {.lex_state = 9, .external_lex_state = 12}, - [3326] = {.lex_state = 5, .external_lex_state = 14}, - [3327] = {.lex_state = 5, .external_lex_state = 14}, - [3328] = {.lex_state = 5, .external_lex_state = 14}, - [3329] = {.lex_state = 5, .external_lex_state = 14}, - [3330] = {.lex_state = 5, .external_lex_state = 14}, - [3331] = {.lex_state = 5, .external_lex_state = 14}, - [3332] = {.lex_state = 5, .external_lex_state = 14}, - [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 = 5, .external_lex_state = 14}, - [3337] = {.lex_state = 5, .external_lex_state = 14}, - [3338] = {.lex_state = 5, .external_lex_state = 14}, - [3339] = {.lex_state = 18, .external_lex_state = 11}, - [3340] = {.lex_state = 5, .external_lex_state = 14}, - [3341] = {.lex_state = 9, .external_lex_state = 11}, - [3342] = {.lex_state = 5, .external_lex_state = 14}, - [3343] = {.lex_state = 9, .external_lex_state = 12}, - [3344] = {.lex_state = 5, .external_lex_state = 14}, - [3345] = {.lex_state = 66, .external_lex_state = 12}, + [3293] = {.lex_state = 15, .external_lex_state = 14}, + [3294] = {.lex_state = 9, .external_lex_state = 12}, + [3295] = {.lex_state = 15, .external_lex_state = 14}, + [3296] = {.lex_state = 9, .external_lex_state = 12}, + [3297] = {.lex_state = 15, .external_lex_state = 14}, + [3298] = {.lex_state = 15, .external_lex_state = 12}, + [3299] = {.lex_state = 15, .external_lex_state = 12}, + [3300] = {.lex_state = 15, .external_lex_state = 16}, + [3301] = {.lex_state = 15, .external_lex_state = 16}, + [3302] = {.lex_state = 15, .external_lex_state = 16}, + [3303] = {.lex_state = 15, .external_lex_state = 12}, + [3304] = {.lex_state = 15, .external_lex_state = 12}, + [3305] = {.lex_state = 15, .external_lex_state = 12}, + [3306] = {.lex_state = 15, .external_lex_state = 12}, + [3307] = {.lex_state = 15, .external_lex_state = 12}, + [3308] = {.lex_state = 9, .external_lex_state = 11}, + [3309] = {.lex_state = 15, .external_lex_state = 12}, + [3310] = {.lex_state = 18, .external_lex_state = 12}, + [3311] = {.lex_state = 66, .external_lex_state = 14}, + [3312] = {.lex_state = 9, .external_lex_state = 11}, + [3313] = {.lex_state = 15, .external_lex_state = 12}, + [3314] = {.lex_state = 15, .external_lex_state = 14}, + [3315] = {.lex_state = 66, .external_lex_state = 12}, + [3316] = {.lex_state = 66, .external_lex_state = 14}, + [3317] = {.lex_state = 9, .external_lex_state = 12}, + [3318] = {.lex_state = 66, .external_lex_state = 14}, + [3319] = {.lex_state = 5, .external_lex_state = 12}, + [3320] = {.lex_state = 15, .external_lex_state = 14}, + [3321] = {.lex_state = 9, .external_lex_state = 12}, + [3322] = {.lex_state = 15, .external_lex_state = 12}, + [3323] = {.lex_state = 66, .external_lex_state = 12}, + [3324] = {.lex_state = 66, .external_lex_state = 14}, + [3325] = {.lex_state = 15, .external_lex_state = 16}, + [3326] = {.lex_state = 15, .external_lex_state = 12}, + [3327] = {.lex_state = 18, .external_lex_state = 12}, + [3328] = {.lex_state = 15, .external_lex_state = 12}, + [3329] = {.lex_state = 9, .external_lex_state = 11}, + [3330] = {.lex_state = 15, .external_lex_state = 12}, + [3331] = {.lex_state = 15, .external_lex_state = 12}, + [3332] = {.lex_state = 15, .external_lex_state = 12}, + [3333] = {.lex_state = 15, .external_lex_state = 12}, + [3334] = {.lex_state = 15, .external_lex_state = 12}, + [3335] = {.lex_state = 15, .external_lex_state = 12}, + [3336] = {.lex_state = 15, .external_lex_state = 12}, + [3337] = {.lex_state = 15, .external_lex_state = 12}, + [3338] = {.lex_state = 9, .external_lex_state = 11}, + [3339] = {.lex_state = 15, .external_lex_state = 16}, + [3340] = {.lex_state = 66, .external_lex_state = 12}, + [3341] = {.lex_state = 66, .external_lex_state = 12}, + [3342] = {.lex_state = 66, .external_lex_state = 12}, + [3343] = {.lex_state = 9, .external_lex_state = 11}, + [3344] = {.lex_state = 66, .external_lex_state = 12}, + [3345] = {.lex_state = 5, .external_lex_state = 14}, [3346] = {.lex_state = 5, .external_lex_state = 14}, [3347] = {.lex_state = 5, .external_lex_state = 14}, [3348] = {.lex_state = 5, .external_lex_state = 14}, [3349] = {.lex_state = 5, .external_lex_state = 14}, [3350] = {.lex_state = 5, .external_lex_state = 14}, [3351] = {.lex_state = 5, .external_lex_state = 14}, - [3352] = {.lex_state = 66, .external_lex_state = 12}, - [3353] = {.lex_state = 66, .external_lex_state = 12}, + [3352] = {.lex_state = 5, .external_lex_state = 14}, + [3353] = {.lex_state = 18, .external_lex_state = 14}, [3354] = {.lex_state = 66, .external_lex_state = 12}, - [3355] = {.lex_state = 66, .external_lex_state = 12}, - [3356] = {.lex_state = 66, .external_lex_state = 12}, + [3355] = {.lex_state = 5, .external_lex_state = 14}, + [3356] = {.lex_state = 5, .external_lex_state = 14}, [3357] = {.lex_state = 66, .external_lex_state = 12}, [3358] = {.lex_state = 66, .external_lex_state = 12}, - [3359] = {.lex_state = 66, .external_lex_state = 12}, + [3359] = {.lex_state = 5, .external_lex_state = 14}, [3360] = {.lex_state = 66, .external_lex_state = 12}, - [3361] = {.lex_state = 66, .external_lex_state = 12}, - [3362] = {.lex_state = 66, .external_lex_state = 12}, - [3363] = {.lex_state = 66, .external_lex_state = 12}, - [3364] = {.lex_state = 66, .external_lex_state = 12}, + [3361] = {.lex_state = 9, .external_lex_state = 12}, + [3362] = {.lex_state = 5, .external_lex_state = 14}, + [3363] = {.lex_state = 9, .external_lex_state = 12}, + [3364] = {.lex_state = 18, .external_lex_state = 14}, [3365] = {.lex_state = 66, .external_lex_state = 12}, - [3366] = {.lex_state = 66, .external_lex_state = 12}, - [3367] = {.lex_state = 66, .external_lex_state = 12}, - [3368] = {.lex_state = 66, .external_lex_state = 12}, - [3369] = {.lex_state = 66, .external_lex_state = 12}, - [3370] = {.lex_state = 66, .external_lex_state = 12}, - [3371] = {.lex_state = 18, .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 = 5, .external_lex_state = 14}, + [3371] = {.lex_state = 5, .external_lex_state = 14}, [3372] = {.lex_state = 66, .external_lex_state = 12}, [3373] = {.lex_state = 66, .external_lex_state = 12}, [3374] = {.lex_state = 66, .external_lex_state = 12}, - [3375] = {.lex_state = 66, .external_lex_state = 12}, - [3376] = {.lex_state = 66, .external_lex_state = 12}, - [3377] = {.lex_state = 66, .external_lex_state = 12}, + [3375] = {.lex_state = 5, .external_lex_state = 14}, + [3376] = {.lex_state = 5, .external_lex_state = 14}, + [3377] = {.lex_state = 5, .external_lex_state = 14}, [3378] = {.lex_state = 66, .external_lex_state = 12}, [3379] = {.lex_state = 66, .external_lex_state = 12}, - [3380] = {.lex_state = 66, .external_lex_state = 12}, + [3380] = {.lex_state = 5, .external_lex_state = 14}, [3381] = {.lex_state = 66, .external_lex_state = 12}, [3382] = {.lex_state = 66, .external_lex_state = 12}, - [3383] = {.lex_state = 66, .external_lex_state = 12}, - [3384] = {.lex_state = 18, .external_lex_state = 11}, + [3383] = {.lex_state = 5, .external_lex_state = 14}, + [3384] = {.lex_state = 66, .external_lex_state = 12}, [3385] = {.lex_state = 66, .external_lex_state = 12}, - [3386] = {.lex_state = 66, .external_lex_state = 12}, + [3386] = {.lex_state = 5, .external_lex_state = 14}, [3387] = {.lex_state = 66, .external_lex_state = 12}, - [3388] = {.lex_state = 66, .external_lex_state = 12}, + [3388] = {.lex_state = 5, .external_lex_state = 14}, [3389] = {.lex_state = 66, .external_lex_state = 12}, - [3390] = {.lex_state = 66, .external_lex_state = 12}, - [3391] = {.lex_state = 66, .external_lex_state = 12}, + [3390] = {.lex_state = 5, .external_lex_state = 14}, + [3391] = {.lex_state = 5, .external_lex_state = 14}, [3392] = {.lex_state = 66, .external_lex_state = 12}, [3393] = {.lex_state = 66, .external_lex_state = 12}, - [3394] = {.lex_state = 66, .external_lex_state = 12}, + [3394] = {.lex_state = 5, .external_lex_state = 14}, [3395] = {.lex_state = 66, .external_lex_state = 12}, [3396] = {.lex_state = 66, .external_lex_state = 12}, [3397] = {.lex_state = 66, .external_lex_state = 12}, [3398] = {.lex_state = 66, .external_lex_state = 12}, - [3399] = {.lex_state = 66, .external_lex_state = 12}, - [3400] = {.lex_state = 66, .external_lex_state = 12}, - [3401] = {.lex_state = 66, .external_lex_state = 12}, - [3402] = {.lex_state = 66, .external_lex_state = 12}, + [3399] = {.lex_state = 5, .external_lex_state = 14}, + [3400] = {.lex_state = 5, .external_lex_state = 14}, + [3401] = {.lex_state = 5, .external_lex_state = 14}, + [3402] = {.lex_state = 5, .external_lex_state = 14}, [3403] = {.lex_state = 5, .external_lex_state = 14}, [3404] = {.lex_state = 66, .external_lex_state = 12}, [3405] = {.lex_state = 66, .external_lex_state = 12}, [3406] = {.lex_state = 66, .external_lex_state = 12}, - [3407] = {.lex_state = 5, .external_lex_state = 14}, - [3408] = {.lex_state = 5, .external_lex_state = 11}, - [3409] = {.lex_state = 5, .external_lex_state = 15}, - [3410] = {.lex_state = 18, .external_lex_state = 11}, - [3411] = {.lex_state = 5, .external_lex_state = 11}, - [3412] = {.lex_state = 5, .external_lex_state = 11}, - [3413] = {.lex_state = 18, .external_lex_state = 12}, - [3414] = {.lex_state = 5, .external_lex_state = 11}, - [3415] = {.lex_state = 5, .external_lex_state = 11}, - [3416] = {.lex_state = 18, .external_lex_state = 11}, - [3417] = {.lex_state = 18, .external_lex_state = 14}, - [3418] = {.lex_state = 5, .external_lex_state = 11}, - [3419] = {.lex_state = 18, .external_lex_state = 12}, - [3420] = {.lex_state = 18, .external_lex_state = 12}, - [3421] = {.lex_state = 18, .external_lex_state = 11}, - [3422] = {.lex_state = 18, .external_lex_state = 14}, - [3423] = {.lex_state = 18, .external_lex_state = 12}, - [3424] = {.lex_state = 18, .external_lex_state = 11}, - [3425] = {.lex_state = 15, .external_lex_state = 16}, - [3426] = {.lex_state = 5, .external_lex_state = 11}, - [3427] = {.lex_state = 5, .external_lex_state = 11}, - [3428] = {.lex_state = 5, .external_lex_state = 11}, - [3429] = {.lex_state = 18, .external_lex_state = 12}, - [3430] = {.lex_state = 5, .external_lex_state = 11}, - [3431] = {.lex_state = 18, .external_lex_state = 12}, - [3432] = {.lex_state = 5, .external_lex_state = 11}, - [3433] = {.lex_state = 5, .external_lex_state = 11}, - [3434] = {.lex_state = 18, .external_lex_state = 14}, - [3435] = {.lex_state = 18, .external_lex_state = 14}, - [3436] = {.lex_state = 5, .external_lex_state = 15}, - [3437] = {.lex_state = 18, .external_lex_state = 16}, - [3438] = {.lex_state = 5, .external_lex_state = 16}, - [3439] = {.lex_state = 5, .external_lex_state = 14}, - [3440] = {.lex_state = 18, .external_lex_state = 14}, - [3441] = {.lex_state = 18, .external_lex_state = 14}, - [3442] = {.lex_state = 5, .external_lex_state = 16}, - [3443] = {.lex_state = 18, .external_lex_state = 12}, - [3444] = {.lex_state = 5, .external_lex_state = 14}, - [3445] = {.lex_state = 18, .external_lex_state = 16}, - [3446] = {.lex_state = 18, .external_lex_state = 14}, - [3447] = {.lex_state = 5, .external_lex_state = 14}, - [3448] = {.lex_state = 5, .external_lex_state = 14}, - [3449] = {.lex_state = 18, .external_lex_state = 14}, - [3450] = {.lex_state = 18, .external_lex_state = 14}, - [3451] = {.lex_state = 18, .external_lex_state = 12}, - [3452] = {.lex_state = 9, .external_lex_state = 12}, - [3453] = {.lex_state = 5, .external_lex_state = 14}, - [3454] = {.lex_state = 5, .external_lex_state = 14}, - [3455] = {.lex_state = 5, .external_lex_state = 14}, - [3456] = {.lex_state = 5, .external_lex_state = 11}, - [3457] = {.lex_state = 5, .external_lex_state = 14}, - [3458] = {.lex_state = 18, .external_lex_state = 16}, - [3459] = {.lex_state = 5, .external_lex_state = 12}, - [3460] = {.lex_state = 18, .external_lex_state = 16}, - [3461] = {.lex_state = 18, .external_lex_state = 12}, - [3462] = {.lex_state = 18, .external_lex_state = 12}, - [3463] = {.lex_state = 18, .external_lex_state = 14}, - [3464] = {.lex_state = 18, .external_lex_state = 16}, - [3465] = {.lex_state = 18, .external_lex_state = 14}, - [3466] = {.lex_state = 18, .external_lex_state = 14}, - [3467] = {.lex_state = 18, .external_lex_state = 12}, - [3468] = {.lex_state = 18, .external_lex_state = 14}, - [3469] = {.lex_state = 15, .external_lex_state = 11}, - [3470] = {.lex_state = 66, .external_lex_state = 12}, - [3471] = {.lex_state = 18, .external_lex_state = 14}, - [3472] = {.lex_state = 18, .external_lex_state = 11}, - [3473] = {.lex_state = 5, .external_lex_state = 11}, - [3474] = {.lex_state = 5, .external_lex_state = 12}, - [3475] = {.lex_state = 18, .external_lex_state = 11}, - [3476] = {.lex_state = 5, .external_lex_state = 12}, - [3477] = {.lex_state = 18, .external_lex_state = 11}, + [3407] = {.lex_state = 66, .external_lex_state = 12}, + [3408] = {.lex_state = 66, .external_lex_state = 12}, + [3409] = {.lex_state = 66, .external_lex_state = 12}, + [3410] = {.lex_state = 66, .external_lex_state = 12}, + [3411] = {.lex_state = 66, .external_lex_state = 12}, + [3412] = {.lex_state = 9, .external_lex_state = 12}, + [3413] = {.lex_state = 66, .external_lex_state = 12}, + [3414] = {.lex_state = 66, .external_lex_state = 12}, + [3415] = {.lex_state = 5, .external_lex_state = 14}, + [3416] = {.lex_state = 66, .external_lex_state = 12}, + [3417] = {.lex_state = 66, .external_lex_state = 12}, + [3418] = {.lex_state = 5, .external_lex_state = 14}, + [3419] = {.lex_state = 66, .external_lex_state = 12}, + [3420] = {.lex_state = 66, .external_lex_state = 12}, + [3421] = {.lex_state = 5, .external_lex_state = 14}, + [3422] = {.lex_state = 66, .external_lex_state = 12}, + [3423] = {.lex_state = 66, .external_lex_state = 12}, + [3424] = {.lex_state = 5, .external_lex_state = 14}, + [3425] = {.lex_state = 66, .external_lex_state = 12}, + [3426] = {.lex_state = 66, .external_lex_state = 12}, + [3427] = {.lex_state = 66, .external_lex_state = 12}, + [3428] = {.lex_state = 18, .external_lex_state = 14}, + [3429] = {.lex_state = 18, .external_lex_state = 11}, + [3430] = {.lex_state = 66, .external_lex_state = 12}, + [3431] = {.lex_state = 9, .external_lex_state = 12}, + [3432] = {.lex_state = 66, .external_lex_state = 12}, + [3433] = {.lex_state = 66, .external_lex_state = 12}, + [3434] = {.lex_state = 18, .external_lex_state = 11}, + [3435] = {.lex_state = 66, .external_lex_state = 12}, + [3436] = {.lex_state = 5, .external_lex_state = 14}, + [3437] = {.lex_state = 66, .external_lex_state = 12}, + [3438] = {.lex_state = 66, .external_lex_state = 12}, + [3439] = {.lex_state = 66, .external_lex_state = 12}, + [3440] = {.lex_state = 66, .external_lex_state = 12}, + [3441] = {.lex_state = 66, .external_lex_state = 12}, + [3442] = {.lex_state = 66, .external_lex_state = 12}, + [3443] = {.lex_state = 66, .external_lex_state = 12}, + [3444] = {.lex_state = 66, .external_lex_state = 12}, + [3445] = {.lex_state = 66, .external_lex_state = 12}, + [3446] = {.lex_state = 66, .external_lex_state = 12}, + [3447] = {.lex_state = 66, .external_lex_state = 12}, + [3448] = {.lex_state = 66, .external_lex_state = 12}, + [3449] = {.lex_state = 66, .external_lex_state = 12}, + [3450] = {.lex_state = 66, .external_lex_state = 12}, + [3451] = {.lex_state = 66, .external_lex_state = 12}, + [3452] = {.lex_state = 18, .external_lex_state = 12}, + [3453] = {.lex_state = 5, .external_lex_state = 11}, + [3454] = {.lex_state = 5, .external_lex_state = 15}, + [3455] = {.lex_state = 18, .external_lex_state = 11}, + [3456] = {.lex_state = 18, .external_lex_state = 11}, + [3457] = {.lex_state = 18, .external_lex_state = 14}, + [3458] = {.lex_state = 5, .external_lex_state = 15}, + [3459] = {.lex_state = 18, .external_lex_state = 12}, + [3460] = {.lex_state = 5, .external_lex_state = 16}, + [3461] = {.lex_state = 5, .external_lex_state = 11}, + [3462] = {.lex_state = 5, .external_lex_state = 11}, + [3463] = {.lex_state = 18, .external_lex_state = 16}, + [3464] = {.lex_state = 5, .external_lex_state = 11}, + [3465] = {.lex_state = 18, .external_lex_state = 11}, + [3466] = {.lex_state = 18, .external_lex_state = 11}, + [3467] = {.lex_state = 5, .external_lex_state = 11}, + [3468] = {.lex_state = 5, .external_lex_state = 11}, + [3469] = {.lex_state = 5, .external_lex_state = 11}, + [3470] = {.lex_state = 18, .external_lex_state = 12}, + [3471] = {.lex_state = 18, .external_lex_state = 12}, + [3472] = {.lex_state = 5, .external_lex_state = 11}, + [3473] = {.lex_state = 18, .external_lex_state = 14}, + [3474] = {.lex_state = 18, .external_lex_state = 14}, + [3475] = {.lex_state = 15, .external_lex_state = 16}, + [3476] = {.lex_state = 5, .external_lex_state = 11}, + [3477] = {.lex_state = 5, .external_lex_state = 11}, [3478] = {.lex_state = 5, .external_lex_state = 11}, - [3479] = {.lex_state = 5, .external_lex_state = 11}, + [3479] = {.lex_state = 18, .external_lex_state = 12}, [3480] = {.lex_state = 5, .external_lex_state = 11}, - [3481] = {.lex_state = 18, .external_lex_state = 11}, - [3482] = {.lex_state = 5, .external_lex_state = 12}, - [3483] = {.lex_state = 15, .external_lex_state = 11}, - [3484] = {.lex_state = 5, .external_lex_state = 12}, - [3485] = {.lex_state = 18, .external_lex_state = 11}, - [3486] = {.lex_state = 18, .external_lex_state = 14}, - [3487] = {.lex_state = 19, .external_lex_state = 17}, - [3488] = {.lex_state = 18, .external_lex_state = 14}, - [3489] = {.lex_state = 18, .external_lex_state = 11}, - [3490] = {.lex_state = 5, .external_lex_state = 12}, - [3491] = {.lex_state = 18, .external_lex_state = 11}, - [3492] = {.lex_state = 18, .external_lex_state = 11}, - [3493] = {.lex_state = 18, .external_lex_state = 14}, - [3494] = {.lex_state = 18, .external_lex_state = 11}, - [3495] = {.lex_state = 18, .external_lex_state = 14}, - [3496] = {.lex_state = 18, .external_lex_state = 11}, - [3497] = {.lex_state = 18, .external_lex_state = 14}, - [3498] = {.lex_state = 5, .external_lex_state = 11}, - [3499] = {.lex_state = 18, .external_lex_state = 11}, - [3500] = {.lex_state = 5, .external_lex_state = 12}, - [3501] = {.lex_state = 18, .external_lex_state = 14}, - [3502] = {.lex_state = 5, .external_lex_state = 12}, - [3503] = {.lex_state = 5, .external_lex_state = 12}, - [3504] = {.lex_state = 18, .external_lex_state = 16}, - [3505] = {.lex_state = 5, .external_lex_state = 11}, - [3506] = {.lex_state = 15, .external_lex_state = 11}, - [3507] = {.lex_state = 18, .external_lex_state = 12}, - [3508] = {.lex_state = 18, .external_lex_state = 11}, - [3509] = {.lex_state = 5, .external_lex_state = 14}, - [3510] = {.lex_state = 15, .external_lex_state = 12}, - [3511] = {.lex_state = 15, .external_lex_state = 12}, + [3481] = {.lex_state = 18, .external_lex_state = 12}, + [3482] = {.lex_state = 18, .external_lex_state = 14}, + [3483] = {.lex_state = 18, .external_lex_state = 14}, + [3484] = {.lex_state = 18, .external_lex_state = 14}, + [3485] = {.lex_state = 18, .external_lex_state = 14}, + [3486] = {.lex_state = 5, .external_lex_state = 12}, + [3487] = {.lex_state = 5, .external_lex_state = 14}, + [3488] = {.lex_state = 18, .external_lex_state = 12}, + [3489] = {.lex_state = 18, .external_lex_state = 12}, + [3490] = {.lex_state = 18, .external_lex_state = 14}, + [3491] = {.lex_state = 18, .external_lex_state = 12}, + [3492] = {.lex_state = 5, .external_lex_state = 14}, + [3493] = {.lex_state = 5, .external_lex_state = 14}, + [3494] = {.lex_state = 18, .external_lex_state = 14}, + [3495] = {.lex_state = 5, .external_lex_state = 14}, + [3496] = {.lex_state = 18, .external_lex_state = 16}, + [3497] = {.lex_state = 5, .external_lex_state = 11}, + [3498] = {.lex_state = 18, .external_lex_state = 14}, + [3499] = {.lex_state = 18, .external_lex_state = 14}, + [3500] = {.lex_state = 5, .external_lex_state = 14}, + [3501] = {.lex_state = 18, .external_lex_state = 16}, + [3502] = {.lex_state = 18, .external_lex_state = 16}, + [3503] = {.lex_state = 5, .external_lex_state = 14}, + [3504] = {.lex_state = 5, .external_lex_state = 14}, + [3505] = {.lex_state = 18, .external_lex_state = 12}, + [3506] = {.lex_state = 9, .external_lex_state = 12}, + [3507] = {.lex_state = 18, .external_lex_state = 14}, + [3508] = {.lex_state = 5, .external_lex_state = 14}, + [3509] = {.lex_state = 5, .external_lex_state = 16}, + [3510] = {.lex_state = 18, .external_lex_state = 16}, + [3511] = {.lex_state = 18, .external_lex_state = 12}, [3512] = {.lex_state = 18, .external_lex_state = 14}, - [3513] = {.lex_state = 5, .external_lex_state = 14}, + [3513] = {.lex_state = 18, .external_lex_state = 11}, [3514] = {.lex_state = 5, .external_lex_state = 12}, - [3515] = {.lex_state = 15, .external_lex_state = 11}, - [3516] = {.lex_state = 5, .external_lex_state = 12}, - [3517] = {.lex_state = 5, .external_lex_state = 12}, - [3518] = {.lex_state = 15, .external_lex_state = 12}, - [3519] = {.lex_state = 15, .external_lex_state = 12}, - [3520] = {.lex_state = 5, .external_lex_state = 12}, - [3521] = {.lex_state = 15, .external_lex_state = 12}, - [3522] = {.lex_state = 18, .external_lex_state = 11}, + [3515] = {.lex_state = 5, .external_lex_state = 12}, + [3516] = {.lex_state = 5, .external_lex_state = 11}, + [3517] = {.lex_state = 5, .external_lex_state = 11}, + [3518] = {.lex_state = 66, .external_lex_state = 12}, + [3519] = {.lex_state = 5, .external_lex_state = 11}, + [3520] = {.lex_state = 18, .external_lex_state = 11}, + [3521] = {.lex_state = 15, .external_lex_state = 11}, + [3522] = {.lex_state = 15, .external_lex_state = 11}, [3523] = {.lex_state = 18, .external_lex_state = 11}, - [3524] = {.lex_state = 66, .external_lex_state = 13}, - [3525] = {.lex_state = 5, .external_lex_state = 12}, - [3526] = {.lex_state = 5, .external_lex_state = 12}, - [3527] = {.lex_state = 5, .external_lex_state = 16}, - [3528] = {.lex_state = 15, .external_lex_state = 12}, - [3529] = {.lex_state = 5, .external_lex_state = 12}, - [3530] = {.lex_state = 5, .external_lex_state = 14}, - [3531] = {.lex_state = 15, .external_lex_state = 11}, - [3532] = {.lex_state = 5, .external_lex_state = 16}, - [3533] = {.lex_state = 5, .external_lex_state = 14}, - [3534] = {.lex_state = 5, .external_lex_state = 16}, - [3535] = {.lex_state = 5, .external_lex_state = 12}, - [3536] = {.lex_state = 18, .external_lex_state = 11}, - [3537] = {.lex_state = 15, .external_lex_state = 11}, - [3538] = {.lex_state = 18, .external_lex_state = 12}, - [3539] = {.lex_state = 18, .external_lex_state = 12}, - [3540] = {.lex_state = 18, .external_lex_state = 12}, + [3524] = {.lex_state = 5, .external_lex_state = 11}, + [3525] = {.lex_state = 18, .external_lex_state = 11}, + [3526] = {.lex_state = 18, .external_lex_state = 11}, + [3527] = {.lex_state = 5, .external_lex_state = 11}, + [3528] = {.lex_state = 18, .external_lex_state = 14}, + [3529] = {.lex_state = 18, .external_lex_state = 11}, + [3530] = {.lex_state = 18, .external_lex_state = 11}, + [3531] = {.lex_state = 5, .external_lex_state = 12}, + [3532] = {.lex_state = 5, .external_lex_state = 12}, + [3533] = {.lex_state = 18, .external_lex_state = 11}, + [3534] = {.lex_state = 5, .external_lex_state = 12}, + [3535] = {.lex_state = 18, .external_lex_state = 11}, + [3536] = {.lex_state = 18, .external_lex_state = 14}, + [3537] = {.lex_state = 18, .external_lex_state = 14}, + [3538] = {.lex_state = 18, .external_lex_state = 11}, + [3539] = {.lex_state = 5, .external_lex_state = 12}, + [3540] = {.lex_state = 15, .external_lex_state = 11}, [3541] = {.lex_state = 5, .external_lex_state = 12}, - [3542] = {.lex_state = 5, .external_lex_state = 12}, - [3543] = {.lex_state = 15, .external_lex_state = 11}, + [3542] = {.lex_state = 18, .external_lex_state = 11}, + [3543] = {.lex_state = 18, .external_lex_state = 14}, [3544] = {.lex_state = 5, .external_lex_state = 12}, - [3545] = {.lex_state = 18, .external_lex_state = 16}, - [3546] = {.lex_state = 5, .external_lex_state = 12}, - [3547] = {.lex_state = 15, .external_lex_state = 11}, - [3548] = {.lex_state = 18, .external_lex_state = 11}, - [3549] = {.lex_state = 5, .external_lex_state = 12}, - [3550] = {.lex_state = 5, .external_lex_state = 12}, + [3545] = {.lex_state = 18, .external_lex_state = 14}, + [3546] = {.lex_state = 19, .external_lex_state = 17}, + [3547] = {.lex_state = 5, .external_lex_state = 11}, + [3548] = {.lex_state = 18, .external_lex_state = 14}, + [3549] = {.lex_state = 18, .external_lex_state = 14}, + [3550] = {.lex_state = 18, .external_lex_state = 16}, [3551] = {.lex_state = 5, .external_lex_state = 12}, - [3552] = {.lex_state = 5, .external_lex_state = 12}, - [3553] = {.lex_state = 5, .external_lex_state = 12}, - [3554] = {.lex_state = 15, .external_lex_state = 11}, + [3552] = {.lex_state = 18, .external_lex_state = 12}, + [3553] = {.lex_state = 15, .external_lex_state = 12}, + [3554] = {.lex_state = 5, .external_lex_state = 12}, [3555] = {.lex_state = 5, .external_lex_state = 12}, - [3556] = {.lex_state = 15, .external_lex_state = 11}, - [3557] = {.lex_state = 66, .external_lex_state = 12}, - [3558] = {.lex_state = 5, .external_lex_state = 12}, - [3559] = {.lex_state = 5, .external_lex_state = 12}, + [3556] = {.lex_state = 5, .external_lex_state = 12}, + [3557] = {.lex_state = 5, .external_lex_state = 14}, + [3558] = {.lex_state = 18, .external_lex_state = 11}, + [3559] = {.lex_state = 18, .external_lex_state = 16}, [3560] = {.lex_state = 5, .external_lex_state = 12}, - [3561] = {.lex_state = 5, .external_lex_state = 14}, - [3562] = {.lex_state = 18, .external_lex_state = 11}, + [3561] = {.lex_state = 5, .external_lex_state = 16}, + [3562] = {.lex_state = 5, .external_lex_state = 12}, [3563] = {.lex_state = 5, .external_lex_state = 12}, [3564] = {.lex_state = 5, .external_lex_state = 12}, - [3565] = {.lex_state = 5, .external_lex_state = 16}, - [3566] = {.lex_state = 15, .external_lex_state = 12}, + [3565] = {.lex_state = 5, .external_lex_state = 12}, + [3566] = {.lex_state = 15, .external_lex_state = 11}, [3567] = {.lex_state = 5, .external_lex_state = 12}, [3568] = {.lex_state = 5, .external_lex_state = 12}, [3569] = {.lex_state = 5, .external_lex_state = 12}, - [3570] = {.lex_state = 5, .external_lex_state = 16}, + [3570] = {.lex_state = 5, .external_lex_state = 12}, [3571] = {.lex_state = 5, .external_lex_state = 12}, - [3572] = {.lex_state = 5, .external_lex_state = 12}, - [3573] = {.lex_state = 5, .external_lex_state = 11}, - [3574] = {.lex_state = 5, .external_lex_state = 14}, - [3575] = {.lex_state = 5, .external_lex_state = 11}, - [3576] = {.lex_state = 5, .external_lex_state = 11}, - [3577] = {.lex_state = 5, .external_lex_state = 14}, - [3578] = {.lex_state = 5, .external_lex_state = 14}, - [3579] = {.lex_state = 5, .external_lex_state = 14}, - [3580] = {.lex_state = 5, .external_lex_state = 14}, - [3581] = {.lex_state = 5, .external_lex_state = 16}, - [3582] = {.lex_state = 5, .external_lex_state = 16}, - [3583] = {.lex_state = 5, .external_lex_state = 14}, - [3584] = {.lex_state = 5, .external_lex_state = 14}, - [3585] = {.lex_state = 5, .external_lex_state = 11}, - [3586] = {.lex_state = 5, .external_lex_state = 16}, - [3587] = {.lex_state = 5, .external_lex_state = 11}, - [3588] = {.lex_state = 5, .external_lex_state = 14}, - [3589] = {.lex_state = 5, .external_lex_state = 16}, - [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 = 14}, - [3594] = {.lex_state = 5, .external_lex_state = 11}, - [3595] = {.lex_state = 5, .external_lex_state = 14}, + [3572] = {.lex_state = 5, .external_lex_state = 16}, + [3573] = {.lex_state = 66, .external_lex_state = 13}, + [3574] = {.lex_state = 5, .external_lex_state = 12}, + [3575] = {.lex_state = 5, .external_lex_state = 12}, + [3576] = {.lex_state = 18, .external_lex_state = 11}, + [3577] = {.lex_state = 15, .external_lex_state = 11}, + [3578] = {.lex_state = 5, .external_lex_state = 12}, + [3579] = {.lex_state = 15, .external_lex_state = 11}, + [3580] = {.lex_state = 5, .external_lex_state = 12}, + [3581] = {.lex_state = 5, .external_lex_state = 14}, + [3582] = {.lex_state = 15, .external_lex_state = 11}, + [3583] = {.lex_state = 5, .external_lex_state = 12}, + [3584] = {.lex_state = 5, .external_lex_state = 12}, + [3585] = {.lex_state = 5, .external_lex_state = 12}, + [3586] = {.lex_state = 18, .external_lex_state = 11}, + [3587] = {.lex_state = 18, .external_lex_state = 12}, + [3588] = {.lex_state = 5, .external_lex_state = 16}, + [3589] = {.lex_state = 18, .external_lex_state = 11}, + [3590] = {.lex_state = 5, .external_lex_state = 12}, + [3591] = {.lex_state = 15, .external_lex_state = 11}, + [3592] = {.lex_state = 15, .external_lex_state = 11}, + [3593] = {.lex_state = 5, .external_lex_state = 12}, + [3594] = {.lex_state = 5, .external_lex_state = 12}, + [3595] = {.lex_state = 5, .external_lex_state = 12}, [3596] = {.lex_state = 5, .external_lex_state = 14}, - [3597] = {.lex_state = 5, .external_lex_state = 14}, + [3597] = {.lex_state = 18, .external_lex_state = 12}, [3598] = {.lex_state = 5, .external_lex_state = 16}, - [3599] = {.lex_state = 5, .external_lex_state = 11}, - [3600] = {.lex_state = 5, .external_lex_state = 14}, - [3601] = {.lex_state = 5, .external_lex_state = 16}, - [3602] = {.lex_state = 5, .external_lex_state = 16}, - [3603] = {.lex_state = 5, .external_lex_state = 16}, - [3604] = {.lex_state = 5, .external_lex_state = 16}, - [3605] = {.lex_state = 5, .external_lex_state = 14}, - [3606] = {.lex_state = 5, .external_lex_state = 12}, - [3607] = {.lex_state = 5, .external_lex_state = 14}, + [3599] = {.lex_state = 15, .external_lex_state = 11}, + [3600] = {.lex_state = 15, .external_lex_state = 12}, + [3601] = {.lex_state = 15, .external_lex_state = 12}, + [3602] = {.lex_state = 15, .external_lex_state = 12}, + [3603] = {.lex_state = 5, .external_lex_state = 12}, + [3604] = {.lex_state = 18, .external_lex_state = 11}, + [3605] = {.lex_state = 5, .external_lex_state = 12}, + [3606] = {.lex_state = 15, .external_lex_state = 12}, + [3607] = {.lex_state = 66, .external_lex_state = 12}, [3608] = {.lex_state = 5, .external_lex_state = 14}, - [3609] = {.lex_state = 5, .external_lex_state = 11}, - [3610] = {.lex_state = 5, .external_lex_state = 14}, - [3611] = {.lex_state = 18, .external_lex_state = 12}, - [3612] = {.lex_state = 5, .external_lex_state = 14}, - [3613] = {.lex_state = 5, .external_lex_state = 12}, - [3614] = {.lex_state = 5, .external_lex_state = 16}, - [3615] = {.lex_state = 5, .external_lex_state = 11}, - [3616] = {.lex_state = 5, .external_lex_state = 11}, + [3609] = {.lex_state = 5, .external_lex_state = 16}, + [3610] = {.lex_state = 5, .external_lex_state = 12}, + [3611] = {.lex_state = 15, .external_lex_state = 12}, + [3612] = {.lex_state = 15, .external_lex_state = 12}, + [3613] = {.lex_state = 5, .external_lex_state = 14}, + [3614] = {.lex_state = 18, .external_lex_state = 12}, + [3615] = {.lex_state = 18, .external_lex_state = 14}, + [3616] = {.lex_state = 18, .external_lex_state = 11}, [3617] = {.lex_state = 5, .external_lex_state = 11}, - [3618] = {.lex_state = 5, .external_lex_state = 11}, - [3619] = {.lex_state = 5, .external_lex_state = 14}, - [3620] = {.lex_state = 5, .external_lex_state = 14}, + [3618] = {.lex_state = 5, .external_lex_state = 16}, + [3619] = {.lex_state = 5, .external_lex_state = 16}, + [3620] = {.lex_state = 5, .external_lex_state = 12}, [3621] = {.lex_state = 5, .external_lex_state = 12}, [3622] = {.lex_state = 5, .external_lex_state = 11}, [3623] = {.lex_state = 5, .external_lex_state = 11}, - [3624] = {.lex_state = 5, .external_lex_state = 14}, - [3625] = {.lex_state = 5, .external_lex_state = 11}, + [3624] = {.lex_state = 5, .external_lex_state = 11}, + [3625] = {.lex_state = 5, .external_lex_state = 16}, [3626] = {.lex_state = 5, .external_lex_state = 14}, - [3627] = {.lex_state = 5, .external_lex_state = 12}, + [3627] = {.lex_state = 5, .external_lex_state = 16}, [3628] = {.lex_state = 5, .external_lex_state = 16}, - [3629] = {.lex_state = 5, .external_lex_state = 11}, - [3630] = {.lex_state = 66, .external_lex_state = 15}, - [3631] = {.lex_state = 5, .external_lex_state = 14}, - [3632] = {.lex_state = 5, .external_lex_state = 16}, + [3629] = {.lex_state = 5, .external_lex_state = 14}, + [3630] = {.lex_state = 5, .external_lex_state = 11}, + [3631] = {.lex_state = 5, .external_lex_state = 11}, + [3632] = {.lex_state = 5, .external_lex_state = 14}, [3633] = {.lex_state = 5, .external_lex_state = 11}, [3634] = {.lex_state = 5, .external_lex_state = 16}, [3635] = {.lex_state = 5, .external_lex_state = 14}, [3636] = {.lex_state = 5, .external_lex_state = 14}, - [3637] = {.lex_state = 5, .external_lex_state = 16}, - [3638] = {.lex_state = 5, .external_lex_state = 16}, - [3639] = {.lex_state = 66, .external_lex_state = 15}, - [3640] = {.lex_state = 5, .external_lex_state = 11}, - [3641] = {.lex_state = 5, .external_lex_state = 12}, - [3642] = {.lex_state = 5, .external_lex_state = 11}, - [3643] = {.lex_state = 5, .external_lex_state = 16}, - [3644] = {.lex_state = 66, .external_lex_state = 15}, - [3645] = {.lex_state = 5, .external_lex_state = 14}, - [3646] = {.lex_state = 5, .external_lex_state = 14}, - [3647] = {.lex_state = 5, .external_lex_state = 14}, - [3648] = {.lex_state = 5, .external_lex_state = 14}, - [3649] = {.lex_state = 5, .external_lex_state = 14}, - [3650] = {.lex_state = 66, .external_lex_state = 15}, - [3651] = {.lex_state = 66, .external_lex_state = 15}, + [3637] = {.lex_state = 5, .external_lex_state = 11}, + [3638] = {.lex_state = 5, .external_lex_state = 14}, + [3639] = {.lex_state = 5, .external_lex_state = 11}, + [3640] = {.lex_state = 5, .external_lex_state = 14}, + [3641] = {.lex_state = 5, .external_lex_state = 16}, + [3642] = {.lex_state = 18, .external_lex_state = 12}, + [3643] = {.lex_state = 5, .external_lex_state = 12}, + [3644] = {.lex_state = 5, .external_lex_state = 16}, + [3645] = {.lex_state = 5, .external_lex_state = 11}, + [3646] = {.lex_state = 5, .external_lex_state = 11}, + [3647] = {.lex_state = 5, .external_lex_state = 11}, + [3648] = {.lex_state = 5, .external_lex_state = 11}, + [3649] = {.lex_state = 5, .external_lex_state = 16}, + [3650] = {.lex_state = 5, .external_lex_state = 16}, + [3651] = {.lex_state = 5, .external_lex_state = 16}, [3652] = {.lex_state = 5, .external_lex_state = 14}, - [3653] = {.lex_state = 66, .external_lex_state = 15}, - [3654] = {.lex_state = 5, .external_lex_state = 14}, - [3655] = {.lex_state = 66, .external_lex_state = 15}, + [3653] = {.lex_state = 5, .external_lex_state = 14}, + [3654] = {.lex_state = 5, .external_lex_state = 11}, + [3655] = {.lex_state = 5, .external_lex_state = 16}, [3656] = {.lex_state = 5, .external_lex_state = 16}, - [3657] = {.lex_state = 5, .external_lex_state = 16}, - [3658] = {.lex_state = 5, .external_lex_state = 16}, - [3659] = {.lex_state = 5, .external_lex_state = 16}, + [3657] = {.lex_state = 5, .external_lex_state = 14}, + [3658] = {.lex_state = 5, .external_lex_state = 14}, + [3659] = {.lex_state = 5, .external_lex_state = 11}, [3660] = {.lex_state = 5, .external_lex_state = 14}, [3661] = {.lex_state = 5, .external_lex_state = 14}, [3662] = {.lex_state = 5, .external_lex_state = 16}, - [3663] = {.lex_state = 5, .external_lex_state = 16}, + [3663] = {.lex_state = 5, .external_lex_state = 14}, [3664] = {.lex_state = 5, .external_lex_state = 16}, - [3665] = {.lex_state = 5, .external_lex_state = 16}, + [3665] = {.lex_state = 66, .external_lex_state = 15}, [3666] = {.lex_state = 5, .external_lex_state = 14}, - [3667] = {.lex_state = 5, .external_lex_state = 11}, - [3668] = {.lex_state = 5, .external_lex_state = 11}, + [3667] = {.lex_state = 5, .external_lex_state = 14}, + [3668] = {.lex_state = 5, .external_lex_state = 12}, [3669] = {.lex_state = 5, .external_lex_state = 14}, - [3670] = {.lex_state = 5, .external_lex_state = 14}, - [3671] = {.lex_state = 5, .external_lex_state = 14}, + [3670] = {.lex_state = 5, .external_lex_state = 16}, + [3671] = {.lex_state = 5, .external_lex_state = 12}, [3672] = {.lex_state = 5, .external_lex_state = 16}, - [3673] = {.lex_state = 5, .external_lex_state = 11}, - [3674] = {.lex_state = 5, .external_lex_state = 14}, - [3675] = {.lex_state = 5, .external_lex_state = 14}, - [3676] = {.lex_state = 5, .external_lex_state = 16}, - [3677] = {.lex_state = 5, .external_lex_state = 14}, - [3678] = {.lex_state = 66, .external_lex_state = 15}, + [3673] = {.lex_state = 5, .external_lex_state = 12}, + [3674] = {.lex_state = 5, .external_lex_state = 11}, + [3675] = {.lex_state = 5, .external_lex_state = 11}, + [3676] = {.lex_state = 5, .external_lex_state = 11}, + [3677] = {.lex_state = 5, .external_lex_state = 16}, + [3678] = {.lex_state = 5, .external_lex_state = 11}, [3679] = {.lex_state = 5, .external_lex_state = 14}, - [3680] = {.lex_state = 5, .external_lex_state = 12}, + [3680] = {.lex_state = 5, .external_lex_state = 11}, [3681] = {.lex_state = 5, .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 = 5, .external_lex_state = 12}, - [3686] = {.lex_state = 0, .external_lex_state = 18}, - [3687] = {.lex_state = 5, .external_lex_state = 11}, - [3688] = {.lex_state = 5, .external_lex_state = 11}, - [3689] = {.lex_state = 5, .external_lex_state = 11}, - [3690] = {.lex_state = 66, .external_lex_state = 5}, - [3691] = {.lex_state = 66, .external_lex_state = 14}, - [3692] = {.lex_state = 5, .external_lex_state = 11}, - [3693] = {.lex_state = 0, .external_lex_state = 18}, - [3694] = {.lex_state = 66, .external_lex_state = 14}, + [3683] = {.lex_state = 5, .external_lex_state = 14}, + [3684] = {.lex_state = 66, .external_lex_state = 15}, + [3685] = {.lex_state = 5, .external_lex_state = 14}, + [3686] = {.lex_state = 5, .external_lex_state = 14}, + [3687] = {.lex_state = 5, .external_lex_state = 14}, + [3688] = {.lex_state = 5, .external_lex_state = 16}, + [3689] = {.lex_state = 5, .external_lex_state = 16}, + [3690] = {.lex_state = 5, .external_lex_state = 11}, + [3691] = {.lex_state = 5, .external_lex_state = 14}, + [3692] = {.lex_state = 5, .external_lex_state = 16}, + [3693] = {.lex_state = 66, .external_lex_state = 15}, + [3694] = {.lex_state = 5, .external_lex_state = 16}, [3695] = {.lex_state = 5, .external_lex_state = 11}, - [3696] = {.lex_state = 66, .external_lex_state = 14}, - [3697] = {.lex_state = 66, .external_lex_state = 16}, - [3698] = {.lex_state = 5, .external_lex_state = 12}, - [3699] = {.lex_state = 0, .external_lex_state = 18}, - [3700] = {.lex_state = 66, .external_lex_state = 5}, - [3701] = {.lex_state = 18, .external_lex_state = 16}, - [3702] = {.lex_state = 66, .external_lex_state = 14}, - [3703] = {.lex_state = 66, .external_lex_state = 5}, - [3704] = {.lex_state = 5, .external_lex_state = 12}, - [3705] = {.lex_state = 0, .external_lex_state = 18}, - [3706] = {.lex_state = 0, .external_lex_state = 18}, - [3707] = {.lex_state = 66, .external_lex_state = 14}, - [3708] = {.lex_state = 5, .external_lex_state = 11}, - [3709] = {.lex_state = 66, .external_lex_state = 5}, - [3710] = {.lex_state = 66, .external_lex_state = 14}, - [3711] = {.lex_state = 66, .external_lex_state = 12}, - [3712] = {.lex_state = 66, .external_lex_state = 16}, - [3713] = {.lex_state = 0, .external_lex_state = 18}, - [3714] = {.lex_state = 0, .external_lex_state = 18}, - [3715] = {.lex_state = 0, .external_lex_state = 18}, - [3716] = {.lex_state = 66, .external_lex_state = 14}, - [3717] = {.lex_state = 66, .external_lex_state = 14}, - [3718] = {.lex_state = 66, .external_lex_state = 16}, - [3719] = {.lex_state = 18, .external_lex_state = 16}, - [3720] = {.lex_state = 5, .external_lex_state = 12}, - [3721] = {.lex_state = 5, .external_lex_state = 11}, - [3722] = {.lex_state = 0, .external_lex_state = 18}, - [3723] = {.lex_state = 5, .external_lex_state = 12}, - [3724] = {.lex_state = 5, .external_lex_state = 11}, - [3725] = {.lex_state = 0, .external_lex_state = 18}, - [3726] = {.lex_state = 5, .external_lex_state = 11}, - [3727] = {.lex_state = 66, .external_lex_state = 16}, - [3728] = {.lex_state = 5, .external_lex_state = 12}, + [3696] = {.lex_state = 5, .external_lex_state = 14}, + [3697] = {.lex_state = 5, .external_lex_state = 14}, + [3698] = {.lex_state = 66, .external_lex_state = 15}, + [3699] = {.lex_state = 66, .external_lex_state = 15}, + [3700] = {.lex_state = 5, .external_lex_state = 14}, + [3701] = {.lex_state = 5, .external_lex_state = 14}, + [3702] = {.lex_state = 66, .external_lex_state = 15}, + [3703] = {.lex_state = 5, .external_lex_state = 16}, + [3704] = {.lex_state = 66, .external_lex_state = 15}, + [3705] = {.lex_state = 5, .external_lex_state = 14}, + [3706] = {.lex_state = 5, .external_lex_state = 16}, + [3707] = {.lex_state = 66, .external_lex_state = 15}, + [3708] = {.lex_state = 5, .external_lex_state = 14}, + [3709] = {.lex_state = 5, .external_lex_state = 14}, + [3710] = {.lex_state = 5, .external_lex_state = 14}, + [3711] = {.lex_state = 5, .external_lex_state = 14}, + [3712] = {.lex_state = 5, .external_lex_state = 16}, + [3713] = {.lex_state = 5, .external_lex_state = 14}, + [3714] = {.lex_state = 5, .external_lex_state = 14}, + [3715] = {.lex_state = 5, .external_lex_state = 11}, + [3716] = {.lex_state = 5, .external_lex_state = 14}, + [3717] = {.lex_state = 5, .external_lex_state = 14}, + [3718] = {.lex_state = 5, .external_lex_state = 11}, + [3719] = {.lex_state = 5, .external_lex_state = 14}, + [3720] = {.lex_state = 5, .external_lex_state = 14}, + [3721] = {.lex_state = 5, .external_lex_state = 14}, + [3722] = {.lex_state = 5, .external_lex_state = 14}, + [3723] = {.lex_state = 5, .external_lex_state = 14}, + [3724] = {.lex_state = 5, .external_lex_state = 16}, + [3725] = {.lex_state = 5, .external_lex_state = 14}, + [3726] = {.lex_state = 18, .external_lex_state = 16}, + [3727] = {.lex_state = 66, .external_lex_state = 14}, + [3728] = {.lex_state = 66, .external_lex_state = 5}, [3729] = {.lex_state = 5, .external_lex_state = 11}, - [3730] = {.lex_state = 0, .external_lex_state = 18}, - [3731] = {.lex_state = 66, .external_lex_state = 16}, - [3732] = {.lex_state = 0, .external_lex_state = 18}, + [3730] = {.lex_state = 5, .external_lex_state = 12}, + [3731] = {.lex_state = 5, .external_lex_state = 11}, + [3732] = {.lex_state = 66, .external_lex_state = 5}, [3733] = {.lex_state = 66, .external_lex_state = 14}, - [3734] = {.lex_state = 66, .external_lex_state = 16}, + [3734] = {.lex_state = 0, .external_lex_state = 18}, [3735] = {.lex_state = 0, .external_lex_state = 18}, - [3736] = {.lex_state = 18, .external_lex_state = 16}, - [3737] = {.lex_state = 5, .external_lex_state = 11}, - [3738] = {.lex_state = 0, .external_lex_state = 18}, - [3739] = {.lex_state = 66, .external_lex_state = 16}, + [3736] = {.lex_state = 66, .external_lex_state = 14}, + [3737] = {.lex_state = 5, .external_lex_state = 12}, + [3738] = {.lex_state = 66, .external_lex_state = 16}, + [3739] = {.lex_state = 0, .external_lex_state = 18}, [3740] = {.lex_state = 5, .external_lex_state = 11}, - [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 = 5, .external_lex_state = 11}, - [3745] = {.lex_state = 66, .external_lex_state = 14}, - [3746] = {.lex_state = 66, .external_lex_state = 14}, - [3747] = {.lex_state = 15, .external_lex_state = 11}, - [3748] = {.lex_state = 5, .external_lex_state = 11}, - [3749] = {.lex_state = 66, .external_lex_state = 5}, + [3741] = {.lex_state = 5, .external_lex_state = 11}, + [3742] = {.lex_state = 5, .external_lex_state = 11}, + [3743] = {.lex_state = 66, .external_lex_state = 5}, + [3744] = {.lex_state = 0, .external_lex_state = 18}, + [3745] = {.lex_state = 66, .external_lex_state = 5}, + [3746] = {.lex_state = 5, .external_lex_state = 11}, + [3747] = {.lex_state = 18, .external_lex_state = 16}, + [3748] = {.lex_state = 66, .external_lex_state = 14}, + [3749] = {.lex_state = 0, .external_lex_state = 18}, [3750] = {.lex_state = 0, .external_lex_state = 18}, - [3751] = {.lex_state = 0, .external_lex_state = 18}, - [3752] = {.lex_state = 5, .external_lex_state = 12}, - [3753] = {.lex_state = 66, .external_lex_state = 5}, - [3754] = {.lex_state = 0, .external_lex_state = 18}, + [3751] = {.lex_state = 5, .external_lex_state = 11}, + [3752] = {.lex_state = 5, .external_lex_state = 11}, + [3753] = {.lex_state = 66, .external_lex_state = 12}, + [3754] = {.lex_state = 5, .external_lex_state = 11}, [3755] = {.lex_state = 5, .external_lex_state = 11}, - [3756] = {.lex_state = 66, .external_lex_state = 14}, - [3757] = {.lex_state = 5, .external_lex_state = 11}, - [3758] = {.lex_state = 5, .external_lex_state = 11}, - [3759] = {.lex_state = 66, .external_lex_state = 14}, - [3760] = {.lex_state = 0, .external_lex_state = 18}, - [3761] = {.lex_state = 5, .external_lex_state = 11}, - [3762] = {.lex_state = 0, .external_lex_state = 18}, - [3763] = {.lex_state = 66, .external_lex_state = 14}, + [3756] = {.lex_state = 0, .external_lex_state = 18}, + [3757] = {.lex_state = 66, .external_lex_state = 14}, + [3758] = {.lex_state = 66, .external_lex_state = 16}, + [3759] = {.lex_state = 0, .external_lex_state = 18}, + [3760] = {.lex_state = 66, .external_lex_state = 14}, + [3761] = {.lex_state = 5, .external_lex_state = 12}, + [3762] = {.lex_state = 5, .external_lex_state = 11}, + [3763] = {.lex_state = 5, .external_lex_state = 12}, [3764] = {.lex_state = 5, .external_lex_state = 11}, - [3765] = {.lex_state = 0, .external_lex_state = 18}, - [3766] = {.lex_state = 66, .external_lex_state = 14}, - [3767] = {.lex_state = 5, .external_lex_state = 11}, - [3768] = {.lex_state = 66, .external_lex_state = 16}, - [3769] = {.lex_state = 0, .external_lex_state = 18}, - [3770] = {.lex_state = 5, .external_lex_state = 11}, - [3771] = {.lex_state = 66, .external_lex_state = 14}, - [3772] = {.lex_state = 66, .external_lex_state = 14}, - [3773] = {.lex_state = 18, .external_lex_state = 11}, - [3774] = {.lex_state = 5, .external_lex_state = 12}, - [3775] = {.lex_state = 5, .external_lex_state = 12}, - [3776] = {.lex_state = 5, .external_lex_state = 12}, - [3777] = {.lex_state = 5, .external_lex_state = 16}, - [3778] = {.lex_state = 5, .external_lex_state = 12}, - [3779] = {.lex_state = 5, .external_lex_state = 12}, - [3780] = {.lex_state = 5, .external_lex_state = 12}, - [3781] = {.lex_state = 18, .external_lex_state = 16}, + [3765] = {.lex_state = 66, .external_lex_state = 14}, + [3766] = {.lex_state = 66, .external_lex_state = 16}, + [3767] = {.lex_state = 5, .external_lex_state = 12}, + [3768] = {.lex_state = 66, .external_lex_state = 5}, + [3769] = {.lex_state = 66, .external_lex_state = 14}, + [3770] = {.lex_state = 66, .external_lex_state = 16}, + [3771] = {.lex_state = 5, .external_lex_state = 11}, + [3772] = {.lex_state = 0, .external_lex_state = 18}, + [3773] = {.lex_state = 0, .external_lex_state = 18}, + [3774] = {.lex_state = 0, .external_lex_state = 18}, + [3775] = {.lex_state = 66, .external_lex_state = 16}, + [3776] = {.lex_state = 0, .external_lex_state = 18}, + [3777] = {.lex_state = 5, .external_lex_state = 11}, + [3778] = {.lex_state = 66, .external_lex_state = 14}, + [3779] = {.lex_state = 5, .external_lex_state = 11}, + [3780] = {.lex_state = 66, .external_lex_state = 16}, + [3781] = {.lex_state = 66, .external_lex_state = 14}, [3782] = {.lex_state = 5, .external_lex_state = 12}, [3783] = {.lex_state = 5, .external_lex_state = 12}, - [3784] = {.lex_state = 5, .external_lex_state = 12}, - [3785] = {.lex_state = 5, .external_lex_state = 12}, - [3786] = {.lex_state = 5, .external_lex_state = 12}, - [3787] = {.lex_state = 5, .external_lex_state = 12}, - [3788] = {.lex_state = 5, .external_lex_state = 12}, - [3789] = {.lex_state = 20, .external_lex_state = 14}, - [3790] = {.lex_state = 5, .external_lex_state = 12}, + [3784] = {.lex_state = 5, .external_lex_state = 11}, + [3785] = {.lex_state = 0, .external_lex_state = 18}, + [3786] = {.lex_state = 66, .external_lex_state = 16}, + [3787] = {.lex_state = 0, .external_lex_state = 18}, + [3788] = {.lex_state = 66, .external_lex_state = 14}, + [3789] = {.lex_state = 66, .external_lex_state = 14}, + [3790] = {.lex_state = 0, .external_lex_state = 18}, [3791] = {.lex_state = 5, .external_lex_state = 12}, - [3792] = {.lex_state = 5, .external_lex_state = 16}, - [3793] = {.lex_state = 5, .external_lex_state = 16}, - [3794] = {.lex_state = 20, .external_lex_state = 11}, - [3795] = {.lex_state = 66, .external_lex_state = 15}, - [3796] = {.lex_state = 18, .external_lex_state = 16}, - [3797] = {.lex_state = 5, .external_lex_state = 12}, - [3798] = {.lex_state = 15, .external_lex_state = 12}, - [3799] = {.lex_state = 5, .external_lex_state = 12}, - [3800] = {.lex_state = 5, .external_lex_state = 12}, - [3801] = {.lex_state = 5, .external_lex_state = 12}, - [3802] = {.lex_state = 5, .external_lex_state = 12}, - [3803] = {.lex_state = 5, .external_lex_state = 12}, - [3804] = {.lex_state = 15, .external_lex_state = 12}, - [3805] = {.lex_state = 5, .external_lex_state = 12}, - [3806] = {.lex_state = 15, .external_lex_state = 12}, - [3807] = {.lex_state = 5, .external_lex_state = 12}, - [3808] = {.lex_state = 5, .external_lex_state = 12}, - [3809] = {.lex_state = 5, .external_lex_state = 12}, - [3810] = {.lex_state = 5, .external_lex_state = 12}, - [3811] = {.lex_state = 5, .external_lex_state = 12}, - [3812] = {.lex_state = 5, .external_lex_state = 12}, - [3813] = {.lex_state = 5, .external_lex_state = 12}, - [3814] = {.lex_state = 5, .external_lex_state = 12}, - [3815] = {.lex_state = 5, .external_lex_state = 12}, - [3816] = {.lex_state = 5, .external_lex_state = 12}, - [3817] = {.lex_state = 18, .external_lex_state = 16}, - [3818] = {.lex_state = 5, .external_lex_state = 16}, - [3819] = {.lex_state = 18, .external_lex_state = 16}, - [3820] = {.lex_state = 5, .external_lex_state = 14}, + [3792] = {.lex_state = 66, .external_lex_state = 5}, + [3793] = {.lex_state = 5, .external_lex_state = 12}, + [3794] = {.lex_state = 5, .external_lex_state = 11}, + [3795] = {.lex_state = 15, .external_lex_state = 11}, + [3796] = {.lex_state = 66, .external_lex_state = 14}, + [3797] = {.lex_state = 66, .external_lex_state = 14}, + [3798] = {.lex_state = 5, .external_lex_state = 11}, + [3799] = {.lex_state = 0, .external_lex_state = 18}, + [3800] = {.lex_state = 18, .external_lex_state = 16}, + [3801] = {.lex_state = 5, .external_lex_state = 11}, + [3802] = {.lex_state = 0, .external_lex_state = 18}, + [3803] = {.lex_state = 66, .external_lex_state = 14}, + [3804] = {.lex_state = 5, .external_lex_state = 11}, + [3805] = {.lex_state = 66, .external_lex_state = 14}, + [3806] = {.lex_state = 0, .external_lex_state = 18}, + [3807] = {.lex_state = 0, .external_lex_state = 18}, + [3808] = {.lex_state = 5, .external_lex_state = 11}, + [3809] = {.lex_state = 0, .external_lex_state = 18}, + [3810] = {.lex_state = 5, .external_lex_state = 11}, + [3811] = {.lex_state = 66, .external_lex_state = 16}, + [3812] = {.lex_state = 0, .external_lex_state = 18}, + [3813] = {.lex_state = 18, .external_lex_state = 16}, + [3814] = {.lex_state = 66, .external_lex_state = 14}, + [3815] = {.lex_state = 0, .external_lex_state = 18}, + [3816] = {.lex_state = 0, .external_lex_state = 18}, + [3817] = {.lex_state = 5, .external_lex_state = 12}, + [3818] = {.lex_state = 5, .external_lex_state = 12}, + [3819] = {.lex_state = 5, .external_lex_state = 12}, + [3820] = {.lex_state = 5, .external_lex_state = 12}, [3821] = {.lex_state = 5, .external_lex_state = 12}, [3822] = {.lex_state = 5, .external_lex_state = 12}, [3823] = {.lex_state = 5, .external_lex_state = 12}, - [3824] = {.lex_state = 5, .external_lex_state = 12}, + [3824] = {.lex_state = 5, .external_lex_state = 14}, [3825] = {.lex_state = 5, .external_lex_state = 12}, - [3826] = {.lex_state = 18, .external_lex_state = 16}, + [3826] = {.lex_state = 5, .external_lex_state = 12}, [3827] = {.lex_state = 5, .external_lex_state = 12}, - [3828] = {.lex_state = 5, .external_lex_state = 12}, - [3829] = {.lex_state = 5, .external_lex_state = 14}, - [3830] = {.lex_state = 5, .external_lex_state = 14}, + [3828] = {.lex_state = 5, .external_lex_state = 14}, + [3829] = {.lex_state = 5, .external_lex_state = 12}, + [3830] = {.lex_state = 5, .external_lex_state = 12}, [3831] = {.lex_state = 5, .external_lex_state = 16}, [3832] = {.lex_state = 18, .external_lex_state = 11}, - [3833] = {.lex_state = 18, .external_lex_state = 16}, - [3834] = {.lex_state = 5, .external_lex_state = 12}, - [3835] = {.lex_state = 15, .external_lex_state = 12}, - [3836] = {.lex_state = 66, .external_lex_state = 15}, - [3837] = {.lex_state = 5, .external_lex_state = 12}, - [3838] = {.lex_state = 5, .external_lex_state = 12}, - [3839] = {.lex_state = 5, .external_lex_state = 16}, - [3840] = {.lex_state = 15, .external_lex_state = 12}, - [3841] = {.lex_state = 18, .external_lex_state = 11}, - [3842] = {.lex_state = 18, .external_lex_state = 11}, - [3843] = {.lex_state = 18, .external_lex_state = 11}, - [3844] = {.lex_state = 18, .external_lex_state = 11}, - [3845] = {.lex_state = 15, .external_lex_state = 12}, + [3833] = {.lex_state = 18, .external_lex_state = 11}, + [3834] = {.lex_state = 15, .external_lex_state = 12}, + [3835] = {.lex_state = 18, .external_lex_state = 11}, + [3836] = {.lex_state = 18, .external_lex_state = 11}, + [3837] = {.lex_state = 18, .external_lex_state = 11}, + [3838] = {.lex_state = 18, .external_lex_state = 11}, + [3839] = {.lex_state = 5, .external_lex_state = 12}, + [3840] = {.lex_state = 5, .external_lex_state = 12}, + [3841] = {.lex_state = 5, .external_lex_state = 16}, + [3842] = {.lex_state = 5, .external_lex_state = 12}, + [3843] = {.lex_state = 5, .external_lex_state = 12}, + [3844] = {.lex_state = 5, .external_lex_state = 12}, + [3845] = {.lex_state = 5, .external_lex_state = 12}, [3846] = {.lex_state = 5, .external_lex_state = 12}, - [3847] = {.lex_state = 18, .external_lex_state = 11}, - [3848] = {.lex_state = 15, .external_lex_state = 12}, - [3849] = {.lex_state = 18, .external_lex_state = 11}, - [3850] = {.lex_state = 18, .external_lex_state = 11}, - [3851] = {.lex_state = 18, .external_lex_state = 11}, - [3852] = {.lex_state = 18, .external_lex_state = 11}, - [3853] = {.lex_state = 18, .external_lex_state = 11}, - [3854] = {.lex_state = 15, .external_lex_state = 12}, - [3855] = {.lex_state = 18, .external_lex_state = 11}, + [3847] = {.lex_state = 20, .external_lex_state = 11}, + [3848] = {.lex_state = 5, .external_lex_state = 12}, + [3849] = {.lex_state = 5, .external_lex_state = 12}, + [3850] = {.lex_state = 5, .external_lex_state = 14}, + [3851] = {.lex_state = 5, .external_lex_state = 12}, + [3852] = {.lex_state = 5, .external_lex_state = 16}, + [3853] = {.lex_state = 15, .external_lex_state = 12}, + [3854] = {.lex_state = 5, .external_lex_state = 12}, + [3855] = {.lex_state = 15, .external_lex_state = 12}, [3856] = {.lex_state = 5, .external_lex_state = 12}, - [3857] = {.lex_state = 66, .external_lex_state = 5}, - [3858] = {.lex_state = 5, .external_lex_state = 11}, - [3859] = {.lex_state = 5, .external_lex_state = 11}, - [3860] = {.lex_state = 66, .external_lex_state = 15}, - [3861] = {.lex_state = 5, .external_lex_state = 11}, - [3862] = {.lex_state = 18, .external_lex_state = 12}, - [3863] = {.lex_state = 66, .external_lex_state = 12}, - [3864] = {.lex_state = 5, .external_lex_state = 11}, - [3865] = {.lex_state = 66, .external_lex_state = 5}, - [3866] = {.lex_state = 66, .external_lex_state = 15}, + [3857] = {.lex_state = 5, .external_lex_state = 12}, + [3858] = {.lex_state = 18, .external_lex_state = 11}, + [3859] = {.lex_state = 5, .external_lex_state = 12}, + [3860] = {.lex_state = 5, .external_lex_state = 12}, + [3861] = {.lex_state = 18, .external_lex_state = 11}, + [3862] = {.lex_state = 5, .external_lex_state = 12}, + [3863] = {.lex_state = 5, .external_lex_state = 12}, + [3864] = {.lex_state = 5, .external_lex_state = 16}, + [3865] = {.lex_state = 18, .external_lex_state = 16}, + [3866] = {.lex_state = 5, .external_lex_state = 12}, [3867] = {.lex_state = 66, .external_lex_state = 15}, - [3868] = {.lex_state = 66, .external_lex_state = 11}, - [3869] = {.lex_state = 5, .external_lex_state = 16}, - [3870] = {.lex_state = 66, .external_lex_state = 15}, - [3871] = {.lex_state = 66, .external_lex_state = 15}, - [3872] = {.lex_state = 66, .external_lex_state = 15}, - [3873] = {.lex_state = 66, .external_lex_state = 11}, - [3874] = {.lex_state = 66, .external_lex_state = 15}, - [3875] = {.lex_state = 66, .external_lex_state = 15}, - [3876] = {.lex_state = 66, .external_lex_state = 5}, - [3877] = {.lex_state = 5, .external_lex_state = 11}, - [3878] = {.lex_state = 5, .external_lex_state = 11}, - [3879] = {.lex_state = 5, .external_lex_state = 11}, - [3880] = {.lex_state = 66, .external_lex_state = 5}, - [3881] = {.lex_state = 66, .external_lex_state = 15}, - [3882] = {.lex_state = 66, .external_lex_state = 15}, - [3883] = {.lex_state = 15, .external_lex_state = 16}, - [3884] = {.lex_state = 66, .external_lex_state = 5}, - [3885] = {.lex_state = 5, .external_lex_state = 11}, - [3886] = {.lex_state = 66, .external_lex_state = 15}, - [3887] = {.lex_state = 66, .external_lex_state = 15}, - [3888] = {.lex_state = 5, .external_lex_state = 11}, - [3889] = {.lex_state = 66, .external_lex_state = 15}, - [3890] = {.lex_state = 5, .external_lex_state = 11}, - [3891] = {.lex_state = 5, .external_lex_state = 11}, - [3892] = {.lex_state = 66, .external_lex_state = 5}, - [3893] = {.lex_state = 66, .external_lex_state = 5}, - [3894] = {.lex_state = 66, .external_lex_state = 5}, - [3895] = {.lex_state = 15, .external_lex_state = 16}, - [3896] = {.lex_state = 5, .external_lex_state = 11}, - [3897] = {.lex_state = 66, .external_lex_state = 5}, - [3898] = {.lex_state = 66, .external_lex_state = 15}, - [3899] = {.lex_state = 66, .external_lex_state = 15}, - [3900] = {.lex_state = 66, .external_lex_state = 11}, + [3868] = {.lex_state = 15, .external_lex_state = 12}, + [3869] = {.lex_state = 5, .external_lex_state = 12}, + [3870] = {.lex_state = 5, .external_lex_state = 12}, + [3871] = {.lex_state = 5, .external_lex_state = 12}, + [3872] = {.lex_state = 5, .external_lex_state = 12}, + [3873] = {.lex_state = 5, .external_lex_state = 16}, + [3874] = {.lex_state = 5, .external_lex_state = 12}, + [3875] = {.lex_state = 20, .external_lex_state = 14}, + [3876] = {.lex_state = 5, .external_lex_state = 12}, + [3877] = {.lex_state = 5, .external_lex_state = 12}, + [3878] = {.lex_state = 5, .external_lex_state = 12}, + [3879] = {.lex_state = 5, .external_lex_state = 12}, + [3880] = {.lex_state = 5, .external_lex_state = 12}, + [3881] = {.lex_state = 5, .external_lex_state = 12}, + [3882] = {.lex_state = 5, .external_lex_state = 12}, + [3883] = {.lex_state = 5, .external_lex_state = 16}, + [3884] = {.lex_state = 18, .external_lex_state = 16}, + [3885] = {.lex_state = 5, .external_lex_state = 12}, + [3886] = {.lex_state = 15, .external_lex_state = 12}, + [3887] = {.lex_state = 18, .external_lex_state = 16}, + [3888] = {.lex_state = 18, .external_lex_state = 16}, + [3889] = {.lex_state = 15, .external_lex_state = 12}, + [3890] = {.lex_state = 15, .external_lex_state = 12}, + [3891] = {.lex_state = 15, .external_lex_state = 12}, + [3892] = {.lex_state = 66, .external_lex_state = 15}, + [3893] = {.lex_state = 18, .external_lex_state = 16}, + [3894] = {.lex_state = 18, .external_lex_state = 16}, + [3895] = {.lex_state = 18, .external_lex_state = 11}, + [3896] = {.lex_state = 18, .external_lex_state = 11}, + [3897] = {.lex_state = 18, .external_lex_state = 11}, + [3898] = {.lex_state = 18, .external_lex_state = 11}, + [3899] = {.lex_state = 18, .external_lex_state = 11}, + [3900] = {.lex_state = 5, .external_lex_state = 12}, [3901] = {.lex_state = 66, .external_lex_state = 15}, - [3902] = {.lex_state = 5, .external_lex_state = 14}, - [3903] = {.lex_state = 66, .external_lex_state = 15}, - [3904] = {.lex_state = 66, .external_lex_state = 15}, - [3905] = {.lex_state = 66, .external_lex_state = 11}, + [3902] = {.lex_state = 15, .external_lex_state = 16}, + [3903] = {.lex_state = 5, .external_lex_state = 11}, + [3904] = {.lex_state = 66, .external_lex_state = 11}, + [3905] = {.lex_state = 66, .external_lex_state = 12}, [3906] = {.lex_state = 66, .external_lex_state = 15}, - [3907] = {.lex_state = 5, .external_lex_state = 11}, - [3908] = {.lex_state = 66, .external_lex_state = 5}, + [3907] = {.lex_state = 18, .external_lex_state = 12}, + [3908] = {.lex_state = 66, .external_lex_state = 15}, [3909] = {.lex_state = 15, .external_lex_state = 16}, - [3910] = {.lex_state = 5, .external_lex_state = 11}, - [3911] = {.lex_state = 5, .external_lex_state = 11}, - [3912] = {.lex_state = 15, .external_lex_state = 16}, - [3913] = {.lex_state = 15, .external_lex_state = 16}, - [3914] = {.lex_state = 5, .external_lex_state = 11}, - [3915] = {.lex_state = 66, .external_lex_state = 11}, - [3916] = {.lex_state = 66, .external_lex_state = 15}, - [3917] = {.lex_state = 66, .external_lex_state = 12}, - [3918] = {.lex_state = 15, .external_lex_state = 16}, - [3919] = {.lex_state = 5, .external_lex_state = 11}, - [3920] = {.lex_state = 5, .external_lex_state = 11}, - [3921] = {.lex_state = 15, .external_lex_state = 16}, - [3922] = {.lex_state = 5, .external_lex_state = 14}, - [3923] = {.lex_state = 5, .external_lex_state = 11}, + [3910] = {.lex_state = 66, .external_lex_state = 15}, + [3911] = {.lex_state = 66, .external_lex_state = 11}, + [3912] = {.lex_state = 66, .external_lex_state = 5}, + [3913] = {.lex_state = 5, .external_lex_state = 11}, + [3914] = {.lex_state = 66, .external_lex_state = 15}, + [3915] = {.lex_state = 66, .external_lex_state = 15}, + [3916] = {.lex_state = 5, .external_lex_state = 11}, + [3917] = {.lex_state = 66, .external_lex_state = 15}, + [3918] = {.lex_state = 5, .external_lex_state = 16}, + [3919] = {.lex_state = 15, .external_lex_state = 16}, + [3920] = {.lex_state = 66, .external_lex_state = 15}, + [3921] = {.lex_state = 66, .external_lex_state = 5}, + [3922] = {.lex_state = 5, .external_lex_state = 11}, + [3923] = {.lex_state = 66, .external_lex_state = 5}, [3924] = {.lex_state = 66, .external_lex_state = 15}, - [3925] = {.lex_state = 5, .external_lex_state = 11}, + [3925] = {.lex_state = 66, .external_lex_state = 15}, [3926] = {.lex_state = 66, .external_lex_state = 15}, - [3927] = {.lex_state = 5, .external_lex_state = 11}, - [3928] = {.lex_state = 66, .external_lex_state = 15}, - [3929] = {.lex_state = 66, .external_lex_state = 11}, - [3930] = {.lex_state = 15, .external_lex_state = 11}, - [3931] = {.lex_state = 66, .external_lex_state = 11}, - [3932] = {.lex_state = 66, .external_lex_state = 5}, - [3933] = {.lex_state = 66, .external_lex_state = 5}, - [3934] = {.lex_state = 5, .external_lex_state = 14}, - [3935] = {.lex_state = 66, .external_lex_state = 16}, - [3936] = {.lex_state = 67, .external_lex_state = 17}, - [3937] = {.lex_state = 67, .external_lex_state = 17}, - [3938] = {.lex_state = 66, .external_lex_state = 14}, - [3939] = {.lex_state = 66, .external_lex_state = 11}, - [3940] = {.lex_state = 66, .external_lex_state = 2}, - [3941] = {.lex_state = 66, .external_lex_state = 12}, - [3942] = {.lex_state = 66, .external_lex_state = 12}, - [3943] = {.lex_state = 66, .external_lex_state = 16}, - [3944] = {.lex_state = 66, .external_lex_state = 16}, - [3945] = {.lex_state = 66, .external_lex_state = 11}, - [3946] = {.lex_state = 66, .external_lex_state = 16}, - [3947] = {.lex_state = 66, .external_lex_state = 2}, - [3948] = {.lex_state = 18, .external_lex_state = 14}, - [3949] = {.lex_state = 14, .external_lex_state = 11}, - [3950] = {.lex_state = 14, .external_lex_state = 11}, - [3951] = {.lex_state = 66, .external_lex_state = 11}, - [3952] = {.lex_state = 66, .external_lex_state = 14}, - [3953] = {.lex_state = 66, .external_lex_state = 16}, - [3954] = {.lex_state = 66, .external_lex_state = 12}, - [3955] = {.lex_state = 66, .external_lex_state = 14}, - [3956] = {.lex_state = 66, .external_lex_state = 15}, - [3957] = {.lex_state = 66, .external_lex_state = 14}, - [3958] = {.lex_state = 67, .external_lex_state = 17}, + [3927] = {.lex_state = 66, .external_lex_state = 11}, + [3928] = {.lex_state = 66, .external_lex_state = 11}, + [3929] = {.lex_state = 66, .external_lex_state = 15}, + [3930] = {.lex_state = 66, .external_lex_state = 15}, + [3931] = {.lex_state = 5, .external_lex_state = 14}, + [3932] = {.lex_state = 5, .external_lex_state = 14}, + [3933] = {.lex_state = 66, .external_lex_state = 15}, + [3934] = {.lex_state = 5, .external_lex_state = 11}, + [3935] = {.lex_state = 5, .external_lex_state = 11}, + [3936] = {.lex_state = 5, .external_lex_state = 11}, + [3937] = {.lex_state = 5, .external_lex_state = 11}, + [3938] = {.lex_state = 66, .external_lex_state = 11}, + [3939] = {.lex_state = 5, .external_lex_state = 11}, + [3940] = {.lex_state = 5, .external_lex_state = 14}, + [3941] = {.lex_state = 15, .external_lex_state = 11}, + [3942] = {.lex_state = 5, .external_lex_state = 11}, + [3943] = {.lex_state = 5, .external_lex_state = 11}, + [3944] = {.lex_state = 66, .external_lex_state = 5}, + [3945] = {.lex_state = 66, .external_lex_state = 5}, + [3946] = {.lex_state = 66, .external_lex_state = 15}, + [3947] = {.lex_state = 66, .external_lex_state = 15}, + [3948] = {.lex_state = 5, .external_lex_state = 11}, + [3949] = {.lex_state = 66, .external_lex_state = 5}, + [3950] = {.lex_state = 66, .external_lex_state = 5}, + [3951] = {.lex_state = 66, .external_lex_state = 5}, + [3952] = {.lex_state = 5, .external_lex_state = 11}, + [3953] = {.lex_state = 5, .external_lex_state = 11}, + [3954] = {.lex_state = 5, .external_lex_state = 11}, + [3955] = {.lex_state = 66, .external_lex_state = 5}, + [3956] = {.lex_state = 66, .external_lex_state = 11}, + [3957] = {.lex_state = 5, .external_lex_state = 11}, + [3958] = {.lex_state = 66, .external_lex_state = 15}, [3959] = {.lex_state = 66, .external_lex_state = 15}, - [3960] = {.lex_state = 66, .external_lex_state = 16}, - [3961] = {.lex_state = 0, .external_lex_state = 18}, - [3962] = {.lex_state = 66, .external_lex_state = 16}, - [3963] = {.lex_state = 67, .external_lex_state = 17}, - [3964] = {.lex_state = 66, .external_lex_state = 11}, - [3965] = {.lex_state = 66, .external_lex_state = 16}, - [3966] = {.lex_state = 66, .external_lex_state = 16}, - [3967] = {.lex_state = 66, .external_lex_state = 15}, - [3968] = {.lex_state = 67, .external_lex_state = 17}, - [3969] = {.lex_state = 66, .external_lex_state = 16}, - [3970] = {.lex_state = 66, .external_lex_state = 16}, - [3971] = {.lex_state = 66, .external_lex_state = 11}, - [3972] = {.lex_state = 16, .external_lex_state = 19}, - [3973] = {.lex_state = 14, .external_lex_state = 11}, - [3974] = {.lex_state = 66, .external_lex_state = 11}, - [3975] = {.lex_state = 14, .external_lex_state = 11}, - [3976] = {.lex_state = 66, .external_lex_state = 16}, - [3977] = {.lex_state = 18, .external_lex_state = 12}, - [3978] = {.lex_state = 66, .external_lex_state = 14}, - [3979] = {.lex_state = 66, .external_lex_state = 11}, - [3980] = {.lex_state = 16, .external_lex_state = 19}, - [3981] = {.lex_state = 66, .external_lex_state = 11}, + [3960] = {.lex_state = 5, .external_lex_state = 11}, + [3961] = {.lex_state = 5, .external_lex_state = 11}, + [3962] = {.lex_state = 15, .external_lex_state = 16}, + [3963] = {.lex_state = 66, .external_lex_state = 12}, + [3964] = {.lex_state = 5, .external_lex_state = 11}, + [3965] = {.lex_state = 15, .external_lex_state = 16}, + [3966] = {.lex_state = 66, .external_lex_state = 5}, + [3967] = {.lex_state = 66, .external_lex_state = 5}, + [3968] = {.lex_state = 66, .external_lex_state = 15}, + [3969] = {.lex_state = 66, .external_lex_state = 11}, + [3970] = {.lex_state = 66, .external_lex_state = 15}, + [3971] = {.lex_state = 5, .external_lex_state = 11}, + [3972] = {.lex_state = 66, .external_lex_state = 15}, + [3973] = {.lex_state = 66, .external_lex_state = 15}, + [3974] = {.lex_state = 15, .external_lex_state = 16}, + [3975] = {.lex_state = 15, .external_lex_state = 16}, + [3976] = {.lex_state = 66, .external_lex_state = 15}, + [3977] = {.lex_state = 66, .external_lex_state = 5}, + [3978] = {.lex_state = 5, .external_lex_state = 11}, + [3979] = {.lex_state = 16, .external_lex_state = 19}, + [3980] = {.lex_state = 66, .external_lex_state = 14}, + [3981] = {.lex_state = 66, .external_lex_state = 16}, [3982] = {.lex_state = 14, .external_lex_state = 11}, - [3983] = {.lex_state = 66, .external_lex_state = 16}, - [3984] = {.lex_state = 66, .external_lex_state = 16}, - [3985] = {.lex_state = 66, .external_lex_state = 15}, - [3986] = {.lex_state = 0, .external_lex_state = 18}, - [3987] = {.lex_state = 66, .external_lex_state = 16}, - [3988] = {.lex_state = 14, .external_lex_state = 11}, - [3989] = {.lex_state = 18, .external_lex_state = 12}, - [3990] = {.lex_state = 18, .external_lex_state = 12}, - [3991] = {.lex_state = 14, .external_lex_state = 11}, - [3992] = {.lex_state = 66, .external_lex_state = 12}, - [3993] = {.lex_state = 66, .external_lex_state = 14}, - [3994] = {.lex_state = 66, .external_lex_state = 2}, - [3995] = {.lex_state = 18, .external_lex_state = 12}, - [3996] = {.lex_state = 18, .external_lex_state = 12}, - [3997] = {.lex_state = 66, .external_lex_state = 12}, - [3998] = {.lex_state = 18, .external_lex_state = 12}, - [3999] = {.lex_state = 18, .external_lex_state = 12}, + [3983] = {.lex_state = 66, .external_lex_state = 2}, + [3984] = {.lex_state = 66, .external_lex_state = 2}, + [3985] = {.lex_state = 66, .external_lex_state = 16}, + [3986] = {.lex_state = 66, .external_lex_state = 12}, + [3987] = {.lex_state = 66, .external_lex_state = 12}, + [3988] = {.lex_state = 66, .external_lex_state = 14}, + [3989] = {.lex_state = 66, .external_lex_state = 11}, + [3990] = {.lex_state = 16, .external_lex_state = 19}, + [3991] = {.lex_state = 66, .external_lex_state = 16}, + [3992] = {.lex_state = 68, .external_lex_state = 17}, + [3993] = {.lex_state = 18, .external_lex_state = 14}, + [3994] = {.lex_state = 66, .external_lex_state = 14}, + [3995] = {.lex_state = 66, .external_lex_state = 16}, + [3996] = {.lex_state = 66, .external_lex_state = 12}, + [3997] = {.lex_state = 66, .external_lex_state = 11}, + [3998] = {.lex_state = 66, .external_lex_state = 15}, + [3999] = {.lex_state = 14, .external_lex_state = 11}, [4000] = {.lex_state = 18, .external_lex_state = 12}, - [4001] = {.lex_state = 66, .external_lex_state = 16}, - [4002] = {.lex_state = 18, .external_lex_state = 12}, - [4003] = {.lex_state = 66, .external_lex_state = 11}, - [4004] = {.lex_state = 18, .external_lex_state = 12}, + [4001] = {.lex_state = 14, .external_lex_state = 11}, + [4002] = {.lex_state = 5, .external_lex_state = 12}, + [4003] = {.lex_state = 66, .external_lex_state = 14}, + [4004] = {.lex_state = 0, .external_lex_state = 18}, [4005] = {.lex_state = 14, .external_lex_state = 11}, - [4006] = {.lex_state = 18, .external_lex_state = 15}, + [4006] = {.lex_state = 66, .external_lex_state = 15}, [4007] = {.lex_state = 18, .external_lex_state = 16}, - [4008] = {.lex_state = 66, .external_lex_state = 12}, - [4009] = {.lex_state = 66, .external_lex_state = 14}, - [4010] = {.lex_state = 67, .external_lex_state = 17}, - [4011] = {.lex_state = 67, .external_lex_state = 17}, - [4012] = {.lex_state = 16, .external_lex_state = 19}, - [4013] = {.lex_state = 14, .external_lex_state = 11}, - [4014] = {.lex_state = 66, .external_lex_state = 12}, - [4015] = {.lex_state = 66, .external_lex_state = 16}, - [4016] = {.lex_state = 67, .external_lex_state = 17}, - [4017] = {.lex_state = 66, .external_lex_state = 14}, - [4018] = {.lex_state = 66, .external_lex_state = 14}, - [4019] = {.lex_state = 66, .external_lex_state = 11}, - [4020] = {.lex_state = 5, .external_lex_state = 12}, - [4021] = {.lex_state = 18, .external_lex_state = 12}, - [4022] = {.lex_state = 66, .external_lex_state = 12}, - [4023] = {.lex_state = 67, .external_lex_state = 17}, - [4024] = {.lex_state = 66, .external_lex_state = 16}, - [4025] = {.lex_state = 18, .external_lex_state = 12}, - [4026] = {.lex_state = 66, .external_lex_state = 2}, - [4027] = {.lex_state = 66, .external_lex_state = 2}, + [4008] = {.lex_state = 66, .external_lex_state = 14}, + [4009] = {.lex_state = 14, .external_lex_state = 11}, + [4010] = {.lex_state = 14, .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 = 12}, + [4014] = {.lex_state = 68, .external_lex_state = 17}, + [4015] = {.lex_state = 68, .external_lex_state = 17}, + [4016] = {.lex_state = 66, .external_lex_state = 16}, + [4017] = {.lex_state = 68, .external_lex_state = 17}, + [4018] = {.lex_state = 0, .external_lex_state = 18}, + [4019] = {.lex_state = 68, .external_lex_state = 17}, + [4020] = {.lex_state = 66, .external_lex_state = 16}, + [4021] = {.lex_state = 66, .external_lex_state = 14}, + [4022] = {.lex_state = 66, .external_lex_state = 16}, + [4023] = {.lex_state = 66, .external_lex_state = 11}, + [4024] = {.lex_state = 66, .external_lex_state = 2}, + [4025] = {.lex_state = 66, .external_lex_state = 16}, + [4026] = {.lex_state = 14, .external_lex_state = 11}, + [4027] = {.lex_state = 66, .external_lex_state = 15}, [4028] = {.lex_state = 66, .external_lex_state = 16}, - [4029] = {.lex_state = 67, .external_lex_state = 17}, - [4030] = {.lex_state = 67, .external_lex_state = 17}, - [4031] = {.lex_state = 18, .external_lex_state = 12}, - [4032] = {.lex_state = 14, .external_lex_state = 11}, - [4033] = {.lex_state = 67, .external_lex_state = 17}, - [4034] = {.lex_state = 66, .external_lex_state = 2}, - [4035] = {.lex_state = 66, .external_lex_state = 12}, - [4036] = {.lex_state = 14, .external_lex_state = 11}, - [4037] = {.lex_state = 66, .external_lex_state = 16}, - [4038] = {.lex_state = 66, .external_lex_state = 12}, - [4039] = {.lex_state = 16, .external_lex_state = 19}, - [4040] = {.lex_state = 66, .external_lex_state = 11}, - [4041] = {.lex_state = 66, .external_lex_state = 15}, - [4042] = {.lex_state = 66, .external_lex_state = 16}, - [4043] = {.lex_state = 14, .external_lex_state = 11}, - [4044] = {.lex_state = 66, .external_lex_state = 2}, - [4045] = {.lex_state = 66, .external_lex_state = 11}, - [4046] = {.lex_state = 66, .external_lex_state = 12}, - [4047] = {.lex_state = 66, .external_lex_state = 11}, - [4048] = {.lex_state = 15, .external_lex_state = 16}, - [4049] = {.lex_state = 66, .external_lex_state = 11}, - [4050] = {.lex_state = 66, .external_lex_state = 12}, - [4051] = {.lex_state = 66, .external_lex_state = 11}, - [4052] = {.lex_state = 66, .external_lex_state = 11}, - [4053] = {.lex_state = 66, .external_lex_state = 11}, - [4054] = {.lex_state = 66, .external_lex_state = 11}, - [4055] = {.lex_state = 66, .external_lex_state = 11}, - [4056] = {.lex_state = 66, .external_lex_state = 16}, - [4057] = {.lex_state = 66, .external_lex_state = 12}, - [4058] = {.lex_state = 66, .external_lex_state = 16}, - [4059] = {.lex_state = 66, .external_lex_state = 11}, - [4060] = {.lex_state = 66, .external_lex_state = 11}, - [4061] = {.lex_state = 66, .external_lex_state = 11}, - [4062] = {.lex_state = 66, .external_lex_state = 11}, - [4063] = {.lex_state = 66, .external_lex_state = 11}, - [4064] = {.lex_state = 66, .external_lex_state = 11}, - [4065] = {.lex_state = 66, .external_lex_state = 11}, - [4066] = {.lex_state = 12, .external_lex_state = 12}, - [4067] = {.lex_state = 66, .external_lex_state = 11}, - [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 = 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}, - [4075] = {.lex_state = 66, .external_lex_state = 11}, - [4076] = {.lex_state = 66, .external_lex_state = 11}, + [4029] = {.lex_state = 66, .external_lex_state = 14}, + [4030] = {.lex_state = 66, .external_lex_state = 16}, + [4031] = {.lex_state = 66, .external_lex_state = 14}, + [4032] = {.lex_state = 66, .external_lex_state = 16}, + [4033] = {.lex_state = 66, .external_lex_state = 11}, + [4034] = {.lex_state = 18, .external_lex_state = 12}, + [4035] = {.lex_state = 66, .external_lex_state = 16}, + [4036] = {.lex_state = 16, .external_lex_state = 19}, + [4037] = {.lex_state = 66, .external_lex_state = 11}, + [4038] = {.lex_state = 66, .external_lex_state = 16}, + [4039] = {.lex_state = 18, .external_lex_state = 12}, + [4040] = {.lex_state = 14, .external_lex_state = 11}, + [4041] = {.lex_state = 14, .external_lex_state = 11}, + [4042] = {.lex_state = 66, .external_lex_state = 14}, + [4043] = {.lex_state = 68, .external_lex_state = 17}, + [4044] = {.lex_state = 66, .external_lex_state = 12}, + [4045] = {.lex_state = 14, .external_lex_state = 11}, + [4046] = {.lex_state = 66, .external_lex_state = 2}, + [4047] = {.lex_state = 66, .external_lex_state = 16}, + [4048] = {.lex_state = 14, .external_lex_state = 11}, + [4049] = {.lex_state = 66, .external_lex_state = 16}, + [4050] = {.lex_state = 66, .external_lex_state = 2}, + [4051] = {.lex_state = 68, .external_lex_state = 17}, + [4052] = {.lex_state = 18, .external_lex_state = 15}, + [4053] = {.lex_state = 66, .external_lex_state = 12}, + [4054] = {.lex_state = 66, .external_lex_state = 16}, + [4055] = {.lex_state = 18, .external_lex_state = 12}, + [4056] = {.lex_state = 66, .external_lex_state = 11}, + [4057] = {.lex_state = 66, .external_lex_state = 2}, + [4058] = {.lex_state = 66, .external_lex_state = 11}, + [4059] = {.lex_state = 66, .external_lex_state = 16}, + [4060] = {.lex_state = 66, .external_lex_state = 16}, + [4061] = {.lex_state = 66, .external_lex_state = 12}, + [4062] = {.lex_state = 66, .external_lex_state = 16}, + [4063] = {.lex_state = 18, .external_lex_state = 12}, + [4064] = {.lex_state = 18, .external_lex_state = 12}, + [4065] = {.lex_state = 18, .external_lex_state = 12}, + [4066] = {.lex_state = 18, .external_lex_state = 12}, + [4067] = {.lex_state = 18, .external_lex_state = 12}, + [4068] = {.lex_state = 18, .external_lex_state = 12}, + [4069] = {.lex_state = 68, .external_lex_state = 17}, + [4070] = {.lex_state = 66, .external_lex_state = 16}, + [4071] = {.lex_state = 68, .external_lex_state = 17}, + [4072] = {.lex_state = 68, .external_lex_state = 17}, + [4073] = {.lex_state = 66, .external_lex_state = 16}, + [4074] = {.lex_state = 66, .external_lex_state = 12}, + [4075] = {.lex_state = 66, .external_lex_state = 15}, + [4076] = {.lex_state = 14, .external_lex_state = 11}, [4077] = {.lex_state = 66, .external_lex_state = 12}, - [4078] = {.lex_state = 66, .external_lex_state = 14}, - [4079] = {.lex_state = 66, .external_lex_state = 11}, - [4080] = {.lex_state = 66, .external_lex_state = 11}, - [4081] = {.lex_state = 66, .external_lex_state = 12}, - [4082] = {.lex_state = 66, .external_lex_state = 11}, - [4083] = {.lex_state = 66, .external_lex_state = 11}, - [4084] = {.lex_state = 66, .external_lex_state = 11}, + [4078] = {.lex_state = 66, .external_lex_state = 12}, + [4079] = {.lex_state = 16, .external_lex_state = 19}, + [4080] = {.lex_state = 18, .external_lex_state = 12}, + [4081] = {.lex_state = 66, .external_lex_state = 11}, + [4082] = {.lex_state = 18, .external_lex_state = 12}, + [4083] = {.lex_state = 66, .external_lex_state = 2}, + [4084] = {.lex_state = 68, .external_lex_state = 17}, [4085] = {.lex_state = 66, .external_lex_state = 11}, - [4086] = {.lex_state = 66, .external_lex_state = 11}, - [4087] = {.lex_state = 66, .external_lex_state = 11}, - [4088] = {.lex_state = 66, .external_lex_state = 11}, + [4086] = {.lex_state = 66, .external_lex_state = 15}, + [4087] = {.lex_state = 68, .external_lex_state = 17}, + [4088] = {.lex_state = 18, .external_lex_state = 12}, [4089] = {.lex_state = 66, .external_lex_state = 11}, - [4090] = {.lex_state = 66, .external_lex_state = 11}, + [4090] = {.lex_state = 66, .external_lex_state = 12}, [4091] = {.lex_state = 66, .external_lex_state = 11}, - [4092] = {.lex_state = 66, .external_lex_state = 11}, - [4093] = {.lex_state = 66, .external_lex_state = 16}, - [4094] = {.lex_state = 66, .external_lex_state = 16}, - [4095] = {.lex_state = 66, .external_lex_state = 11}, - [4096] = {.lex_state = 66, .external_lex_state = 11}, - [4097] = {.lex_state = 66, .external_lex_state = 11}, - [4098] = {.lex_state = 66, .external_lex_state = 11}, + [4092] = {.lex_state = 66, .external_lex_state = 14}, + [4093] = {.lex_state = 66, .external_lex_state = 11}, + [4094] = {.lex_state = 66, .external_lex_state = 11}, + [4095] = {.lex_state = 66, .external_lex_state = 16}, + [4096] = {.lex_state = 66, .external_lex_state = 16}, + [4097] = {.lex_state = 66, .external_lex_state = 14}, + [4098] = {.lex_state = 66, .external_lex_state = 15}, [4099] = {.lex_state = 66, .external_lex_state = 15}, [4100] = {.lex_state = 66, .external_lex_state = 11}, - [4101] = {.lex_state = 66, .external_lex_state = 16}, + [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 = 14}, - [4105] = {.lex_state = 66, .external_lex_state = 11}, - [4106] = {.lex_state = 66, .external_lex_state = 12}, - [4107] = {.lex_state = 66, .external_lex_state = 6}, - [4108] = {.lex_state = 66, .external_lex_state = 15}, - [4109] = {.lex_state = 66, .external_lex_state = 16}, - [4110] = {.lex_state = 66, .external_lex_state = 16}, - [4111] = {.lex_state = 66, .external_lex_state = 14}, - [4112] = {.lex_state = 66, .external_lex_state = 14}, - [4113] = {.lex_state = 66, .external_lex_state = 11}, - [4114] = {.lex_state = 66, .external_lex_state = 14}, + [4104] = {.lex_state = 66, .external_lex_state = 12}, + [4105] = {.lex_state = 66, .external_lex_state = 16}, + [4106] = {.lex_state = 66, .external_lex_state = 14}, + [4107] = {.lex_state = 66, .external_lex_state = 14}, + [4108] = {.lex_state = 66, .external_lex_state = 11}, + [4109] = {.lex_state = 66, .external_lex_state = 11}, + [4110] = {.lex_state = 66, .external_lex_state = 11}, + [4111] = {.lex_state = 66, .external_lex_state = 11}, + [4112] = {.lex_state = 66, .external_lex_state = 12}, + [4113] = {.lex_state = 66, .external_lex_state = 16}, + [4114] = {.lex_state = 66, .external_lex_state = 11}, [4115] = {.lex_state = 66, .external_lex_state = 11}, [4116] = {.lex_state = 66, .external_lex_state = 11}, [4117] = {.lex_state = 66, .external_lex_state = 11}, @@ -17441,11 +17567,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4120] = {.lex_state = 66, .external_lex_state = 11}, [4121] = {.lex_state = 66, .external_lex_state = 11}, [4122] = {.lex_state = 66, .external_lex_state = 11}, - [4123] = {.lex_state = 66, .external_lex_state = 12}, - [4124] = {.lex_state = 66, .external_lex_state = 7}, - [4125] = {.lex_state = 66, .external_lex_state = 16}, + [4123] = {.lex_state = 66, .external_lex_state = 8}, + [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}, + [4127] = {.lex_state = 66, .external_lex_state = 16}, [4128] = {.lex_state = 66, .external_lex_state = 11}, [4129] = {.lex_state = 66, .external_lex_state = 11}, [4130] = {.lex_state = 66, .external_lex_state = 11}, @@ -17458,7 +17584,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4137] = {.lex_state = 66, .external_lex_state = 11}, [4138] = {.lex_state = 66, .external_lex_state = 11}, [4139] = {.lex_state = 66, .external_lex_state = 11}, - [4140] = {.lex_state = 66, .external_lex_state = 12}, + [4140] = {.lex_state = 12, .external_lex_state = 12}, [4141] = {.lex_state = 66, .external_lex_state = 11}, [4142] = {.lex_state = 66, .external_lex_state = 11}, [4143] = {.lex_state = 66, .external_lex_state = 11}, @@ -17470,1681 +17596,1731 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4149] = {.lex_state = 66, .external_lex_state = 11}, [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 = 66, .external_lex_state = 12}, - [4154] = {.lex_state = 15, .external_lex_state = 15}, - [4155] = {.lex_state = 66, .external_lex_state = 14}, - [4156] = {.lex_state = 66, .external_lex_state = 8}, - [4157] = {.lex_state = 66, .external_lex_state = 16}, - [4158] = {.lex_state = 66, .external_lex_state = 15}, - [4159] = {.lex_state = 66, .external_lex_state = 15}, - [4160] = {.lex_state = 66, .external_lex_state = 15}, - [4161] = {.lex_state = 66, .external_lex_state = 15}, - [4162] = {.lex_state = 66, .external_lex_state = 14}, - [4163] = {.lex_state = 66, .external_lex_state = 15}, + [4152] = {.lex_state = 66, .external_lex_state = 14}, + [4153] = {.lex_state = 66, .external_lex_state = 11}, + [4154] = {.lex_state = 66, .external_lex_state = 14}, + [4155] = {.lex_state = 15, .external_lex_state = 15}, + [4156] = {.lex_state = 66, .external_lex_state = 15}, + [4157] = {.lex_state = 66, .external_lex_state = 15}, + [4158] = {.lex_state = 66, .external_lex_state = 14}, + [4159] = {.lex_state = 66, .external_lex_state = 16}, + [4160] = {.lex_state = 66, .external_lex_state = 12}, + [4161] = {.lex_state = 66, .external_lex_state = 14}, + [4162] = {.lex_state = 66, .external_lex_state = 15}, + [4163] = {.lex_state = 66, .external_lex_state = 16}, [4164] = {.lex_state = 66, .external_lex_state = 14}, - [4165] = {.lex_state = 15, .external_lex_state = 15}, - [4166] = {.lex_state = 66, .external_lex_state = 14}, + [4165] = {.lex_state = 66, .external_lex_state = 16}, + [4166] = {.lex_state = 66, .external_lex_state = 11}, [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 = 66, .external_lex_state = 16}, - [4171] = {.lex_state = 66, .external_lex_state = 15}, + [4168] = {.lex_state = 66, .external_lex_state = 11}, + [4169] = {.lex_state = 66, .external_lex_state = 11}, + [4170] = {.lex_state = 66, .external_lex_state = 11}, + [4171] = {.lex_state = 66, .external_lex_state = 11}, [4172] = {.lex_state = 66, .external_lex_state = 14}, [4173] = {.lex_state = 66, .external_lex_state = 11}, - [4174] = {.lex_state = 66, .external_lex_state = 14}, + [4174] = {.lex_state = 66, .external_lex_state = 11}, [4175] = {.lex_state = 66, .external_lex_state = 11}, - [4176] = {.lex_state = 15, .external_lex_state = 16}, - [4177] = {.lex_state = 66, .external_lex_state = 11}, - [4178] = {.lex_state = 66, .external_lex_state = 14}, + [4176] = {.lex_state = 66, .external_lex_state = 11}, + [4177] = {.lex_state = 66, .external_lex_state = 15}, + [4178] = {.lex_state = 66, .external_lex_state = 12}, [4179] = {.lex_state = 66, .external_lex_state = 14}, - [4180] = {.lex_state = 66, .external_lex_state = 16}, - [4181] = {.lex_state = 66, .external_lex_state = 11}, - [4182] = {.lex_state = 66, .external_lex_state = 15}, - [4183] = {.lex_state = 15, .external_lex_state = 15}, - [4184] = {.lex_state = 66, .external_lex_state = 12}, - [4185] = {.lex_state = 66, .external_lex_state = 11}, - [4186] = {.lex_state = 66, .external_lex_state = 12}, + [4180] = {.lex_state = 66, .external_lex_state = 15}, + [4181] = {.lex_state = 15, .external_lex_state = 12}, + [4182] = {.lex_state = 66, .external_lex_state = 12}, + [4183] = {.lex_state = 66, .external_lex_state = 16}, + [4184] = {.lex_state = 66, .external_lex_state = 11}, + [4185] = {.lex_state = 66, .external_lex_state = 16}, + [4186] = {.lex_state = 66, .external_lex_state = 14}, [4187] = {.lex_state = 66, .external_lex_state = 11}, - [4188] = {.lex_state = 66, .external_lex_state = 12}, - [4189] = {.lex_state = 66, .external_lex_state = 12}, - [4190] = {.lex_state = 66, .external_lex_state = 12}, + [4188] = {.lex_state = 15, .external_lex_state = 15}, + [4189] = {.lex_state = 66, .external_lex_state = 11}, + [4190] = {.lex_state = 66, .external_lex_state = 11}, [4191] = {.lex_state = 66, .external_lex_state = 11}, - [4192] = {.lex_state = 66, .external_lex_state = 11}, + [4192] = {.lex_state = 66, .external_lex_state = 14}, [4193] = {.lex_state = 66, .external_lex_state = 11}, - [4194] = {.lex_state = 66, .external_lex_state = 14}, - [4195] = {.lex_state = 15, .external_lex_state = 14}, + [4194] = {.lex_state = 66, .external_lex_state = 11}, + [4195] = {.lex_state = 66, .external_lex_state = 12}, [4196] = {.lex_state = 66, .external_lex_state = 11}, [4197] = {.lex_state = 66, .external_lex_state = 11}, - [4198] = {.lex_state = 66, .external_lex_state = 11}, + [4198] = {.lex_state = 15, .external_lex_state = 16}, [4199] = {.lex_state = 66, .external_lex_state = 11}, - [4200] = {.lex_state = 66, .external_lex_state = 11}, + [4200] = {.lex_state = 66, .external_lex_state = 14}, [4201] = {.lex_state = 66, .external_lex_state = 11}, - [4202] = {.lex_state = 66, .external_lex_state = 11}, - [4203] = {.lex_state = 66, .external_lex_state = 11}, - [4204] = {.lex_state = 66, .external_lex_state = 15}, - [4205] = {.lex_state = 66, .external_lex_state = 16}, + [4202] = {.lex_state = 66, .external_lex_state = 15}, + [4203] = {.lex_state = 66, .external_lex_state = 12}, + [4204] = {.lex_state = 66, .external_lex_state = 11}, + [4205] = {.lex_state = 66, .external_lex_state = 11}, [4206] = {.lex_state = 66, .external_lex_state = 11}, - [4207] = {.lex_state = 66, .external_lex_state = 14}, - [4208] = {.lex_state = 66, .external_lex_state = 14}, - [4209] = {.lex_state = 15, .external_lex_state = 14}, - [4210] = {.lex_state = 66, .external_lex_state = 15}, + [4207] = {.lex_state = 66, .external_lex_state = 11}, + [4208] = {.lex_state = 66, .external_lex_state = 11}, + [4209] = {.lex_state = 15, .external_lex_state = 16}, + [4210] = {.lex_state = 66, .external_lex_state = 11}, [4211] = {.lex_state = 66, .external_lex_state = 11}, [4212] = {.lex_state = 66, .external_lex_state = 11}, - [4213] = {.lex_state = 66, .external_lex_state = 12}, - [4214] = {.lex_state = 66, .external_lex_state = 11}, - [4215] = {.lex_state = 15, .external_lex_state = 12}, - [4216] = {.lex_state = 66, .external_lex_state = 11}, + [4213] = {.lex_state = 66, .external_lex_state = 11}, + [4214] = {.lex_state = 66, .external_lex_state = 12}, + [4215] = {.lex_state = 66, .external_lex_state = 11}, + [4216] = {.lex_state = 66, .external_lex_state = 12}, [4217] = {.lex_state = 66, .external_lex_state = 11}, - [4218] = {.lex_state = 18, .external_lex_state = 11}, - [4219] = {.lex_state = 66, .external_lex_state = 16}, - [4220] = {.lex_state = 66, .external_lex_state = 14}, - [4221] = {.lex_state = 0, .external_lex_state = 18}, - [4222] = {.lex_state = 66, .external_lex_state = 14}, - [4223] = {.lex_state = 0, .external_lex_state = 18}, - [4224] = {.lex_state = 66, .external_lex_state = 16}, + [4218] = {.lex_state = 66, .external_lex_state = 14}, + [4219] = {.lex_state = 15, .external_lex_state = 14}, + [4220] = {.lex_state = 66, .external_lex_state = 12}, + [4221] = {.lex_state = 66, .external_lex_state = 11}, + [4222] = {.lex_state = 66, .external_lex_state = 12}, + [4223] = {.lex_state = 66, .external_lex_state = 12}, + [4224] = {.lex_state = 66, .external_lex_state = 11}, [4225] = {.lex_state = 66, .external_lex_state = 11}, [4226] = {.lex_state = 66, .external_lex_state = 16}, - [4227] = {.lex_state = 66, .external_lex_state = 14}, - [4228] = {.lex_state = 66, .external_lex_state = 12}, - [4229] = {.lex_state = 66, .external_lex_state = 12}, - [4230] = {.lex_state = 66, .external_lex_state = 16}, - [4231] = {.lex_state = 15, .external_lex_state = 16}, + [4227] = {.lex_state = 66, .external_lex_state = 11}, + [4228] = {.lex_state = 66, .external_lex_state = 11}, + [4229] = {.lex_state = 66, .external_lex_state = 11}, + [4230] = {.lex_state = 66, .external_lex_state = 11}, + [4231] = {.lex_state = 66, .external_lex_state = 11}, [4232] = {.lex_state = 66, .external_lex_state = 11}, - [4233] = {.lex_state = 66, .external_lex_state = 12}, - [4234] = {.lex_state = 18, .external_lex_state = 11}, - [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 = 0, .external_lex_state = 18}, - [4239] = {.lex_state = 0, .external_lex_state = 18}, - [4240] = {.lex_state = 0, .external_lex_state = 18}, + [4233] = {.lex_state = 66, .external_lex_state = 11}, + [4234] = {.lex_state = 66, .external_lex_state = 11}, + [4235] = {.lex_state = 66, .external_lex_state = 11}, + [4236] = {.lex_state = 66, .external_lex_state = 16}, + [4237] = {.lex_state = 66, .external_lex_state = 11}, + [4238] = {.lex_state = 66, .external_lex_state = 11}, + [4239] = {.lex_state = 66, .external_lex_state = 11}, + [4240] = {.lex_state = 66, .external_lex_state = 11}, [4241] = {.lex_state = 66, .external_lex_state = 11}, - [4242] = {.lex_state = 66, .external_lex_state = 14}, - [4243] = {.lex_state = 66, .external_lex_state = 15}, - [4244] = {.lex_state = 66, .external_lex_state = 12}, - [4245] = {.lex_state = 66, .external_lex_state = 16}, - [4246] = {.lex_state = 67, .external_lex_state = 17}, - [4247] = {.lex_state = 66, .external_lex_state = 12}, - [4248] = {.lex_state = 66, .external_lex_state = 11}, + [4242] = {.lex_state = 66, .external_lex_state = 16}, + [4243] = {.lex_state = 66, .external_lex_state = 11}, + [4244] = {.lex_state = 15, .external_lex_state = 14}, + [4245] = {.lex_state = 66, .external_lex_state = 15}, + [4246] = {.lex_state = 66, .external_lex_state = 11}, + [4247] = {.lex_state = 66, .external_lex_state = 11}, + [4248] = {.lex_state = 15, .external_lex_state = 15}, [4249] = {.lex_state = 66, .external_lex_state = 11}, - [4250] = {.lex_state = 66, .external_lex_state = 12}, - [4251] = {.lex_state = 66, .external_lex_state = 15}, - [4252] = {.lex_state = 66, .external_lex_state = 15}, - [4253] = {.lex_state = 66, .external_lex_state = 14}, + [4250] = {.lex_state = 66, .external_lex_state = 11}, + [4251] = {.lex_state = 66, .external_lex_state = 11}, + [4252] = {.lex_state = 66, .external_lex_state = 12}, + [4253] = {.lex_state = 66, .external_lex_state = 11}, [4254] = {.lex_state = 66, .external_lex_state = 11}, - [4255] = {.lex_state = 66, .external_lex_state = 12}, + [4255] = {.lex_state = 66, .external_lex_state = 15}, [4256] = {.lex_state = 66, .external_lex_state = 14}, - [4257] = {.lex_state = 66, .external_lex_state = 15}, - [4258] = {.lex_state = 66, .external_lex_state = 14}, - [4259] = {.lex_state = 66, .external_lex_state = 11}, - [4260] = {.lex_state = 66, .external_lex_state = 11}, - [4261] = {.lex_state = 66, .external_lex_state = 12}, - [4262] = {.lex_state = 66, .external_lex_state = 11}, - [4263] = {.lex_state = 66, .external_lex_state = 16}, - [4264] = {.lex_state = 66, .external_lex_state = 16}, - [4265] = {.lex_state = 66, .external_lex_state = 12}, + [4257] = {.lex_state = 66, .external_lex_state = 7}, + [4258] = {.lex_state = 66, .external_lex_state = 15}, + [4259] = {.lex_state = 66, .external_lex_state = 6}, + [4260] = {.lex_state = 66, .external_lex_state = 15}, + [4261] = {.lex_state = 66, .external_lex_state = 14}, + [4262] = {.lex_state = 15, .external_lex_state = 16}, + [4263] = {.lex_state = 66, .external_lex_state = 15}, + [4264] = {.lex_state = 66, .external_lex_state = 12}, + [4265] = {.lex_state = 66, .external_lex_state = 14}, [4266] = {.lex_state = 66, .external_lex_state = 12}, - [4267] = {.lex_state = 66, .external_lex_state = 14}, + [4267] = {.lex_state = 66, .external_lex_state = 11}, [4268] = {.lex_state = 66, .external_lex_state = 11}, - [4269] = {.lex_state = 66, .external_lex_state = 14}, - [4270] = {.lex_state = 66, .external_lex_state = 12}, - [4271] = {.lex_state = 18, .external_lex_state = 11}, - [4272] = {.lex_state = 66, .external_lex_state = 12}, - [4273] = {.lex_state = 66, .external_lex_state = 15}, - [4274] = {.lex_state = 66, .external_lex_state = 12}, - [4275] = {.lex_state = 66, .external_lex_state = 16}, - [4276] = {.lex_state = 18, .external_lex_state = 11}, + [4269] = {.lex_state = 66, .external_lex_state = 11}, + [4270] = {.lex_state = 66, .external_lex_state = 16}, + [4271] = {.lex_state = 66, .external_lex_state = 14}, + [4272] = {.lex_state = 66, .external_lex_state = 15}, + [4273] = {.lex_state = 66, .external_lex_state = 14}, + [4274] = {.lex_state = 66, .external_lex_state = 11}, + [4275] = {.lex_state = 66, .external_lex_state = 11}, + [4276] = {.lex_state = 66, .external_lex_state = 11}, [4277] = {.lex_state = 66, .external_lex_state = 11}, - [4278] = {.lex_state = 66, .external_lex_state = 14}, - [4279] = {.lex_state = 66, .external_lex_state = 14}, - [4280] = {.lex_state = 18, .external_lex_state = 11}, - [4281] = {.lex_state = 18, .external_lex_state = 11}, - [4282] = {.lex_state = 66, .external_lex_state = 12}, - [4283] = {.lex_state = 66, .external_lex_state = 12}, - [4284] = {.lex_state = 66, .external_lex_state = 15}, - [4285] = {.lex_state = 66, .external_lex_state = 16}, - [4286] = {.lex_state = 66, .external_lex_state = 16}, - [4287] = {.lex_state = 66, .external_lex_state = 16}, - [4288] = {.lex_state = 67, .external_lex_state = 17}, - [4289] = {.lex_state = 66, .external_lex_state = 11}, - [4290] = {.lex_state = 18, .external_lex_state = 11}, - [4291] = {.lex_state = 66, .external_lex_state = 15}, - [4292] = {.lex_state = 66, .external_lex_state = 14}, - [4293] = {.lex_state = 66, .external_lex_state = 16}, - [4294] = {.lex_state = 66, .external_lex_state = 15}, - [4295] = {.lex_state = 66, .external_lex_state = 15}, - [4296] = {.lex_state = 15, .external_lex_state = 16}, + [4278] = {.lex_state = 66, .external_lex_state = 11}, + [4279] = {.lex_state = 66, .external_lex_state = 12}, + [4280] = {.lex_state = 66, .external_lex_state = 12}, + [4281] = {.lex_state = 66, .external_lex_state = 15}, + [4282] = {.lex_state = 66, .external_lex_state = 14}, + [4283] = {.lex_state = 66, .external_lex_state = 14}, + [4284] = {.lex_state = 66, .external_lex_state = 16}, + [4285] = {.lex_state = 66, .external_lex_state = 14}, + [4286] = {.lex_state = 66, .external_lex_state = 11}, + [4287] = {.lex_state = 5, .external_lex_state = 12}, + [4288] = {.lex_state = 66, .external_lex_state = 11}, + [4289] = {.lex_state = 18, .external_lex_state = 11}, + [4290] = {.lex_state = 66, .external_lex_state = 12}, + [4291] = {.lex_state = 66, .external_lex_state = 11}, + [4292] = {.lex_state = 66, .external_lex_state = 11}, + [4293] = {.lex_state = 66, .external_lex_state = 15}, + [4294] = {.lex_state = 15, .external_lex_state = 16}, + [4295] = {.lex_state = 66, .external_lex_state = 12}, + [4296] = {.lex_state = 15, .external_lex_state = 15}, [4297] = {.lex_state = 66, .external_lex_state = 12}, - [4298] = {.lex_state = 66, .external_lex_state = 11}, - [4299] = {.lex_state = 66, .external_lex_state = 11}, + [4298] = {.lex_state = 66, .external_lex_state = 14}, + [4299] = {.lex_state = 66, .external_lex_state = 12}, [4300] = {.lex_state = 66, .external_lex_state = 16}, - [4301] = {.lex_state = 66, .external_lex_state = 11}, - [4302] = {.lex_state = 66, .external_lex_state = 11}, - [4303] = {.lex_state = 18, .external_lex_state = 11}, - [4304] = {.lex_state = 67, .external_lex_state = 17}, - [4305] = {.lex_state = 66, .external_lex_state = 11}, - [4306] = {.lex_state = 66, .external_lex_state = 15}, - [4307] = {.lex_state = 66, .external_lex_state = 15}, - [4308] = {.lex_state = 66, .external_lex_state = 16}, - [4309] = {.lex_state = 66, .external_lex_state = 12}, - [4310] = {.lex_state = 15, .external_lex_state = 15}, - [4311] = {.lex_state = 5, .external_lex_state = 12}, - [4312] = {.lex_state = 66, .external_lex_state = 14}, - [4313] = {.lex_state = 66, .external_lex_state = 11}, - [4314] = {.lex_state = 18, .external_lex_state = 11}, - [4315] = {.lex_state = 18, .external_lex_state = 11}, - [4316] = {.lex_state = 5, .external_lex_state = 12}, - [4317] = {.lex_state = 12, .external_lex_state = 11}, + [4301] = {.lex_state = 18, .external_lex_state = 11}, + [4302] = {.lex_state = 66, .external_lex_state = 14}, + [4303] = {.lex_state = 0, .external_lex_state = 18}, + [4304] = {.lex_state = 66, .external_lex_state = 14}, + [4305] = {.lex_state = 66, .external_lex_state = 12}, + [4306] = {.lex_state = 66, .external_lex_state = 12}, + [4307] = {.lex_state = 66, .external_lex_state = 14}, + [4308] = {.lex_state = 66, .external_lex_state = 15}, + [4309] = {.lex_state = 18, .external_lex_state = 11}, + [4310] = {.lex_state = 66, .external_lex_state = 11}, + [4311] = {.lex_state = 66, .external_lex_state = 14}, + [4312] = {.lex_state = 66, .external_lex_state = 12}, + [4313] = {.lex_state = 18, .external_lex_state = 11}, + [4314] = {.lex_state = 0, .external_lex_state = 18}, + [4315] = {.lex_state = 0, .external_lex_state = 18}, + [4316] = {.lex_state = 66, .external_lex_state = 14}, + [4317] = {.lex_state = 66, .external_lex_state = 15}, [4318] = {.lex_state = 66, .external_lex_state = 14}, - [4319] = {.lex_state = 66, .external_lex_state = 12}, - [4320] = {.lex_state = 66, .external_lex_state = 14}, - [4321] = {.lex_state = 66, .external_lex_state = 14}, + [4319] = {.lex_state = 0, .external_lex_state = 18}, + [4320] = {.lex_state = 66, .external_lex_state = 16}, + [4321] = {.lex_state = 66, .external_lex_state = 16}, [4322] = {.lex_state = 66, .external_lex_state = 12}, - [4323] = {.lex_state = 66, .external_lex_state = 14}, - [4324] = {.lex_state = 66, .external_lex_state = 14}, + [4323] = {.lex_state = 0, .external_lex_state = 18}, + [4324] = {.lex_state = 0, .external_lex_state = 18}, [4325] = {.lex_state = 66, .external_lex_state = 14}, - [4326] = {.lex_state = 12, .external_lex_state = 11}, - [4327] = {.lex_state = 0, .external_lex_state = 18}, - [4328] = {.lex_state = 66, .external_lex_state = 16}, - [4329] = {.lex_state = 66, .external_lex_state = 11}, - [4330] = {.lex_state = 15, .external_lex_state = 16}, + [4326] = {.lex_state = 66, .external_lex_state = 16}, + [4327] = {.lex_state = 18, .external_lex_state = 11}, + [4328] = {.lex_state = 66, .external_lex_state = 14}, + [4329] = {.lex_state = 0, .external_lex_state = 18}, + [4330] = {.lex_state = 66, .external_lex_state = 15}, [4331] = {.lex_state = 66, .external_lex_state = 15}, - [4332] = {.lex_state = 66, .external_lex_state = 15}, - [4333] = {.lex_state = 0, .external_lex_state = 18}, - [4334] = {.lex_state = 66, .external_lex_state = 14}, - [4335] = {.lex_state = 66, .external_lex_state = 15}, + [4332] = {.lex_state = 66, .external_lex_state = 16}, + [4333] = {.lex_state = 66, .external_lex_state = 11}, + [4334] = {.lex_state = 68, .external_lex_state = 17}, + [4335] = {.lex_state = 66, .external_lex_state = 11}, [4336] = {.lex_state = 66, .external_lex_state = 14}, - [4337] = {.lex_state = 66, .external_lex_state = 14}, - [4338] = {.lex_state = 66, .external_lex_state = 14}, - [4339] = {.lex_state = 67, .external_lex_state = 17}, - [4340] = {.lex_state = 66, .external_lex_state = 15}, - [4341] = {.lex_state = 66, .external_lex_state = 14}, - [4342] = {.lex_state = 66, .external_lex_state = 15}, - [4343] = {.lex_state = 66, .external_lex_state = 15}, + [4337] = {.lex_state = 66, .external_lex_state = 11}, + [4338] = {.lex_state = 18, .external_lex_state = 11}, + [4339] = {.lex_state = 68, .external_lex_state = 17}, + [4340] = {.lex_state = 66, .external_lex_state = 14}, + [4341] = {.lex_state = 66, .external_lex_state = 15}, + [4342] = {.lex_state = 66, .external_lex_state = 14}, + [4343] = {.lex_state = 66, .external_lex_state = 14}, [4344] = {.lex_state = 66, .external_lex_state = 15}, - [4345] = {.lex_state = 66, .external_lex_state = 15}, - [4346] = {.lex_state = 66, .external_lex_state = 15}, - [4347] = {.lex_state = 66, .external_lex_state = 15}, - [4348] = {.lex_state = 66, .external_lex_state = 16}, - [4349] = {.lex_state = 66, .external_lex_state = 14}, - [4350] = {.lex_state = 66, .external_lex_state = 16}, + [4345] = {.lex_state = 66, .external_lex_state = 16}, + [4346] = {.lex_state = 66, .external_lex_state = 16}, + [4347] = {.lex_state = 66, .external_lex_state = 14}, + [4348] = {.lex_state = 66, .external_lex_state = 14}, + [4349] = {.lex_state = 66, .external_lex_state = 12}, + [4350] = {.lex_state = 66, .external_lex_state = 12}, [4351] = {.lex_state = 66, .external_lex_state = 14}, - [4352] = {.lex_state = 66, .external_lex_state = 12}, - [4353] = {.lex_state = 66, .external_lex_state = 15}, - [4354] = {.lex_state = 66, .external_lex_state = 15}, - [4355] = {.lex_state = 0, .external_lex_state = 18}, - [4356] = {.lex_state = 15, .external_lex_state = 11}, - [4357] = {.lex_state = 66, .external_lex_state = 20}, - [4358] = {.lex_state = 66, .external_lex_state = 12}, - [4359] = {.lex_state = 18, .external_lex_state = 12}, - [4360] = {.lex_state = 15, .external_lex_state = 16}, - [4361] = {.lex_state = 66, .external_lex_state = 11}, + [4352] = {.lex_state = 12, .external_lex_state = 11}, + [4353] = {.lex_state = 66, .external_lex_state = 12}, + [4354] = {.lex_state = 66, .external_lex_state = 16}, + [4355] = {.lex_state = 66, .external_lex_state = 16}, + [4356] = {.lex_state = 66, .external_lex_state = 12}, + [4357] = {.lex_state = 66, .external_lex_state = 16}, + [4358] = {.lex_state = 15, .external_lex_state = 16}, + [4359] = {.lex_state = 66, .external_lex_state = 16}, + [4360] = {.lex_state = 66, .external_lex_state = 11}, + [4361] = {.lex_state = 12, .external_lex_state = 11}, [4362] = {.lex_state = 66, .external_lex_state = 12}, - [4363] = {.lex_state = 66, .external_lex_state = 20}, - [4364] = {.lex_state = 66, .external_lex_state = 12}, + [4363] = {.lex_state = 66, .external_lex_state = 15}, + [4364] = {.lex_state = 18, .external_lex_state = 11}, [4365] = {.lex_state = 66, .external_lex_state = 16}, - [4366] = {.lex_state = 66, .external_lex_state = 16}, - [4367] = {.lex_state = 66, .external_lex_state = 14}, - [4368] = {.lex_state = 66, .external_lex_state = 12}, - [4369] = {.lex_state = 66, .external_lex_state = 14}, + [4366] = {.lex_state = 66, .external_lex_state = 12}, + [4367] = {.lex_state = 66, .external_lex_state = 16}, + [4368] = {.lex_state = 66, .external_lex_state = 16}, + [4369] = {.lex_state = 66, .external_lex_state = 12}, [4370] = {.lex_state = 66, .external_lex_state = 14}, - [4371] = {.lex_state = 66, .external_lex_state = 11}, - [4372] = {.lex_state = 66, .external_lex_state = 14}, - [4373] = {.lex_state = 66, .external_lex_state = 14}, - [4374] = {.lex_state = 15, .external_lex_state = 16}, - [4375] = {.lex_state = 66, .external_lex_state = 11}, - [4376] = {.lex_state = 66, .external_lex_state = 14}, - [4377] = {.lex_state = 66, .external_lex_state = 20}, - [4378] = {.lex_state = 66, .external_lex_state = 14}, + [4371] = {.lex_state = 66, .external_lex_state = 15}, + [4372] = {.lex_state = 66, .external_lex_state = 15}, + [4373] = {.lex_state = 66, .external_lex_state = 11}, + [4374] = {.lex_state = 66, .external_lex_state = 11}, + [4375] = {.lex_state = 68, .external_lex_state = 17}, + [4376] = {.lex_state = 66, .external_lex_state = 16}, + [4377] = {.lex_state = 66, .external_lex_state = 15}, + [4378] = {.lex_state = 18, .external_lex_state = 11}, [4379] = {.lex_state = 66, .external_lex_state = 12}, - [4380] = {.lex_state = 66, .external_lex_state = 15}, - [4381] = {.lex_state = 66, .external_lex_state = 14}, - [4382] = {.lex_state = 15, .external_lex_state = 16}, - [4383] = {.lex_state = 66, .external_lex_state = 11}, - [4384] = {.lex_state = 15, .external_lex_state = 16}, - [4385] = {.lex_state = 15, .external_lex_state = 16}, - [4386] = {.lex_state = 66, .external_lex_state = 20}, - [4387] = {.lex_state = 66, .external_lex_state = 16}, + [4380] = {.lex_state = 18, .external_lex_state = 11}, + [4381] = {.lex_state = 66, .external_lex_state = 12}, + [4382] = {.lex_state = 5, .external_lex_state = 12}, + [4383] = {.lex_state = 66, .external_lex_state = 14}, + [4384] = {.lex_state = 66, .external_lex_state = 15}, + [4385] = {.lex_state = 0, .external_lex_state = 18}, + [4386] = {.lex_state = 66, .external_lex_state = 15}, + [4387] = {.lex_state = 66, .external_lex_state = 15}, [4388] = {.lex_state = 66, .external_lex_state = 15}, [4389] = {.lex_state = 66, .external_lex_state = 15}, - [4390] = {.lex_state = 66, .external_lex_state = 20}, - [4391] = {.lex_state = 66, .external_lex_state = 12}, + [4390] = {.lex_state = 66, .external_lex_state = 15}, + [4391] = {.lex_state = 66, .external_lex_state = 14}, [4392] = {.lex_state = 66, .external_lex_state = 15}, - [4393] = {.lex_state = 66, .external_lex_state = 15}, - [4394] = {.lex_state = 66, .external_lex_state = 14}, - [4395] = {.lex_state = 66, .external_lex_state = 12}, - [4396] = {.lex_state = 66, .external_lex_state = 5}, - [4397] = {.lex_state = 66, .external_lex_state = 11}, - [4398] = {.lex_state = 66, .external_lex_state = 12}, - [4399] = {.lex_state = 66, .external_lex_state = 12}, - [4400] = {.lex_state = 66, .external_lex_state = 20}, - [4401] = {.lex_state = 66, .external_lex_state = 15}, - [4402] = {.lex_state = 66, .external_lex_state = 12}, - [4403] = {.lex_state = 66, .external_lex_state = 20}, - [4404] = {.lex_state = 12, .external_lex_state = 12}, - [4405] = {.lex_state = 66, .external_lex_state = 16}, - [4406] = {.lex_state = 66, .external_lex_state = 14}, + [4393] = {.lex_state = 66, .external_lex_state = 14}, + [4394] = {.lex_state = 66, .external_lex_state = 15}, + [4395] = {.lex_state = 66, .external_lex_state = 14}, + [4396] = {.lex_state = 18, .external_lex_state = 11}, + [4397] = {.lex_state = 68, .external_lex_state = 17}, + [4398] = {.lex_state = 66, .external_lex_state = 15}, + [4399] = {.lex_state = 66, .external_lex_state = 11}, + [4400] = {.lex_state = 66, .external_lex_state = 15}, + [4401] = {.lex_state = 66, .external_lex_state = 14}, + [4402] = {.lex_state = 15, .external_lex_state = 16}, + [4403] = {.lex_state = 66, .external_lex_state = 12}, + [4404] = {.lex_state = 66, .external_lex_state = 16}, + [4405] = {.lex_state = 66, .external_lex_state = 12}, + [4406] = {.lex_state = 66, .external_lex_state = 12}, [4407] = {.lex_state = 66, .external_lex_state = 12}, [4408] = {.lex_state = 66, .external_lex_state = 20}, - [4409] = {.lex_state = 66, .external_lex_state = 15}, - [4410] = {.lex_state = 66, .external_lex_state = 15}, - [4411] = {.lex_state = 66, .external_lex_state = 20}, - [4412] = {.lex_state = 66, .external_lex_state = 15}, - [4413] = {.lex_state = 66, .external_lex_state = 20}, - [4414] = {.lex_state = 66, .external_lex_state = 15}, + [4409] = {.lex_state = 66, .external_lex_state = 20}, + [4410] = {.lex_state = 66, .external_lex_state = 12}, + [4411] = {.lex_state = 66, .external_lex_state = 12}, + [4412] = {.lex_state = 66, .external_lex_state = 5}, + [4413] = {.lex_state = 66, .external_lex_state = 11}, + [4414] = {.lex_state = 66, .external_lex_state = 14}, [4415] = {.lex_state = 66, .external_lex_state = 12}, - [4416] = {.lex_state = 66, .external_lex_state = 15}, - [4417] = {.lex_state = 66, .external_lex_state = 12}, - [4418] = {.lex_state = 66, .external_lex_state = 12}, - [4419] = {.lex_state = 66, .external_lex_state = 15}, - [4420] = {.lex_state = 66, .external_lex_state = 15}, - [4421] = {.lex_state = 66, .external_lex_state = 12}, - [4422] = {.lex_state = 66, .external_lex_state = 12}, - [4423] = {.lex_state = 66, .external_lex_state = 11}, - [4424] = {.lex_state = 66, .external_lex_state = 12}, - [4425] = {.lex_state = 66, .external_lex_state = 15}, - [4426] = {.lex_state = 66, .external_lex_state = 11}, - [4427] = {.lex_state = 66, .external_lex_state = 12}, - [4428] = {.lex_state = 66, .external_lex_state = 12}, - [4429] = {.lex_state = 66, .external_lex_state = 12}, + [4416] = {.lex_state = 18, .external_lex_state = 12}, + [4417] = {.lex_state = 66, .external_lex_state = 11}, + [4418] = {.lex_state = 66, .external_lex_state = 20}, + [4419] = {.lex_state = 12, .external_lex_state = 12}, + [4420] = {.lex_state = 66, .external_lex_state = 20}, + [4421] = {.lex_state = 66, .external_lex_state = 20}, + [4422] = {.lex_state = 66, .external_lex_state = 14}, + [4423] = {.lex_state = 66, .external_lex_state = 12}, + [4424] = {.lex_state = 3, .external_lex_state = 15}, + [4425] = {.lex_state = 12, .external_lex_state = 12}, + [4426] = {.lex_state = 66, .external_lex_state = 12}, + [4427] = {.lex_state = 66, .external_lex_state = 11}, + [4428] = {.lex_state = 66, .external_lex_state = 11}, + [4429] = {.lex_state = 66, .external_lex_state = 20}, [4430] = {.lex_state = 66, .external_lex_state = 12}, - [4431] = {.lex_state = 66, .external_lex_state = 12}, - [4432] = {.lex_state = 66, .external_lex_state = 12}, - [4433] = {.lex_state = 66, .external_lex_state = 14}, + [4431] = {.lex_state = 66, .external_lex_state = 20}, + [4432] = {.lex_state = 66, .external_lex_state = 15}, + [4433] = {.lex_state = 66, .external_lex_state = 11}, [4434] = {.lex_state = 66, .external_lex_state = 12}, - [4435] = {.lex_state = 66, .external_lex_state = 11}, - [4436] = {.lex_state = 66, .external_lex_state = 20}, + [4435] = {.lex_state = 66, .external_lex_state = 14}, + [4436] = {.lex_state = 15, .external_lex_state = 16}, [4437] = {.lex_state = 66, .external_lex_state = 12}, [4438] = {.lex_state = 66, .external_lex_state = 12}, - [4439] = {.lex_state = 66, .external_lex_state = 20}, - [4440] = {.lex_state = 18, .external_lex_state = 12}, - [4441] = {.lex_state = 66, .external_lex_state = 20}, + [4439] = {.lex_state = 66, .external_lex_state = 11}, + [4440] = {.lex_state = 66, .external_lex_state = 15}, + [4441] = {.lex_state = 66, .external_lex_state = 12}, [4442] = {.lex_state = 66, .external_lex_state = 12}, - [4443] = {.lex_state = 66, .external_lex_state = 15}, - [4444] = {.lex_state = 66, .external_lex_state = 12}, - [4445] = {.lex_state = 66, .external_lex_state = 12}, - [4446] = {.lex_state = 66, .external_lex_state = 12}, - [4447] = {.lex_state = 66, .external_lex_state = 11}, - [4448] = {.lex_state = 66, .external_lex_state = 11}, - [4449] = {.lex_state = 66, .external_lex_state = 12}, - [4450] = {.lex_state = 66, .external_lex_state = 11}, + [4443] = {.lex_state = 66, .external_lex_state = 12}, + [4444] = {.lex_state = 66, .external_lex_state = 11}, + [4445] = {.lex_state = 3, .external_lex_state = 15}, + [4446] = {.lex_state = 66, .external_lex_state = 16}, + [4447] = {.lex_state = 66, .external_lex_state = 15}, + [4448] = {.lex_state = 66, .external_lex_state = 12}, + [4449] = {.lex_state = 15, .external_lex_state = 16}, + [4450] = {.lex_state = 66, .external_lex_state = 20}, [4451] = {.lex_state = 66, .external_lex_state = 12}, - [4452] = {.lex_state = 66, .external_lex_state = 12}, + [4452] = {.lex_state = 66, .external_lex_state = 20}, [4453] = {.lex_state = 66, .external_lex_state = 12}, - [4454] = {.lex_state = 66, .external_lex_state = 12}, - [4455] = {.lex_state = 66, .external_lex_state = 11}, - [4456] = {.lex_state = 66, .external_lex_state = 20}, - [4457] = {.lex_state = 66, .external_lex_state = 12}, - [4458] = {.lex_state = 3, .external_lex_state = 15}, - [4459] = {.lex_state = 66, .external_lex_state = 20}, - [4460] = {.lex_state = 66, .external_lex_state = 15}, + [4454] = {.lex_state = 66, .external_lex_state = 15}, + [4455] = {.lex_state = 66, .external_lex_state = 12}, + [4456] = {.lex_state = 66, .external_lex_state = 11}, + [4457] = {.lex_state = 66, .external_lex_state = 14}, + [4458] = {.lex_state = 66, .external_lex_state = 11}, + [4459] = {.lex_state = 66, .external_lex_state = 12}, + [4460] = {.lex_state = 66, .external_lex_state = 12}, [4461] = {.lex_state = 66, .external_lex_state = 12}, - [4462] = {.lex_state = 66, .external_lex_state = 11}, - [4463] = {.lex_state = 66, .external_lex_state = 12}, + [4462] = {.lex_state = 66, .external_lex_state = 14}, + [4463] = {.lex_state = 66, .external_lex_state = 11}, [4464] = {.lex_state = 66, .external_lex_state = 12}, [4465] = {.lex_state = 66, .external_lex_state = 20}, - [4466] = {.lex_state = 66, .external_lex_state = 20}, - [4467] = {.lex_state = 66, .external_lex_state = 12}, - [4468] = {.lex_state = 66, .external_lex_state = 16}, - [4469] = {.lex_state = 66, .external_lex_state = 20}, - [4470] = {.lex_state = 3, .external_lex_state = 15}, + [4466] = {.lex_state = 66, .external_lex_state = 12}, + [4467] = {.lex_state = 66, .external_lex_state = 11}, + [4468] = {.lex_state = 66, .external_lex_state = 20}, + [4469] = {.lex_state = 66, .external_lex_state = 16}, + [4470] = {.lex_state = 66, .external_lex_state = 20}, [4471] = {.lex_state = 66, .external_lex_state = 12}, - [4472] = {.lex_state = 66, .external_lex_state = 20}, - [4473] = {.lex_state = 15, .external_lex_state = 16}, - [4474] = {.lex_state = 66, .external_lex_state = 20}, - [4475] = {.lex_state = 12, .external_lex_state = 12}, - [4476] = {.lex_state = 66, .external_lex_state = 16}, - [4477] = {.lex_state = 66, .external_lex_state = 20}, - [4478] = {.lex_state = 66, .external_lex_state = 16}, - [4479] = {.lex_state = 66, .external_lex_state = 11}, - [4480] = {.lex_state = 66, .external_lex_state = 15}, - [4481] = {.lex_state = 66, .external_lex_state = 11}, + [4472] = {.lex_state = 66, .external_lex_state = 11}, + [4473] = {.lex_state = 66, .external_lex_state = 12}, + [4474] = {.lex_state = 66, .external_lex_state = 15}, + [4475] = {.lex_state = 66, .external_lex_state = 20}, + [4476] = {.lex_state = 66, .external_lex_state = 12}, + [4477] = {.lex_state = 66, .external_lex_state = 12}, + [4478] = {.lex_state = 66, .external_lex_state = 12}, + [4479] = {.lex_state = 66, .external_lex_state = 12}, + [4480] = {.lex_state = 66, .external_lex_state = 11}, + [4481] = {.lex_state = 66, .external_lex_state = 15}, [4482] = {.lex_state = 66, .external_lex_state = 12}, [4483] = {.lex_state = 66, .external_lex_state = 12}, - [4484] = {.lex_state = 66, .external_lex_state = 14}, - [4485] = {.lex_state = 66, .external_lex_state = 14}, + [4484] = {.lex_state = 66, .external_lex_state = 11}, + [4485] = {.lex_state = 66, .external_lex_state = 12}, [4486] = {.lex_state = 66, .external_lex_state = 12}, - [4487] = {.lex_state = 66, .external_lex_state = 11}, - [4488] = {.lex_state = 66, .external_lex_state = 20}, - [4489] = {.lex_state = 18, .external_lex_state = 12}, + [4487] = {.lex_state = 66, .external_lex_state = 14}, + [4488] = {.lex_state = 66, .external_lex_state = 12}, + [4489] = {.lex_state = 66, .external_lex_state = 20}, [4490] = {.lex_state = 66, .external_lex_state = 11}, - [4491] = {.lex_state = 66, .external_lex_state = 16}, - [4492] = {.lex_state = 66, .external_lex_state = 11}, - [4493] = {.lex_state = 66, .external_lex_state = 14}, - [4494] = {.lex_state = 66, .external_lex_state = 11}, - [4495] = {.lex_state = 66, .external_lex_state = 20}, - [4496] = {.lex_state = 66, .external_lex_state = 16}, - [4497] = {.lex_state = 66, .external_lex_state = 20}, - [4498] = {.lex_state = 66, .external_lex_state = 11}, - [4499] = {.lex_state = 15, .external_lex_state = 16}, - [4500] = {.lex_state = 66, .external_lex_state = 15}, - [4501] = {.lex_state = 66, .external_lex_state = 15}, - [4502] = {.lex_state = 66, .external_lex_state = 11}, - [4503] = {.lex_state = 66, .external_lex_state = 11}, + [4491] = {.lex_state = 66, .external_lex_state = 12}, + [4492] = {.lex_state = 15, .external_lex_state = 16}, + [4493] = {.lex_state = 66, .external_lex_state = 15}, + [4494] = {.lex_state = 66, .external_lex_state = 16}, + [4495] = {.lex_state = 66, .external_lex_state = 15}, + [4496] = {.lex_state = 66, .external_lex_state = 15}, + [4497] = {.lex_state = 66, .external_lex_state = 16}, + [4498] = {.lex_state = 66, .external_lex_state = 16}, + [4499] = {.lex_state = 66, .external_lex_state = 15}, + [4500] = {.lex_state = 66, .external_lex_state = 20}, + [4501] = {.lex_state = 66, .external_lex_state = 16}, + [4502] = {.lex_state = 66, .external_lex_state = 20}, + [4503] = {.lex_state = 66, .external_lex_state = 16}, [4504] = {.lex_state = 66, .external_lex_state = 16}, - [4505] = {.lex_state = 15, .external_lex_state = 16}, - [4506] = {.lex_state = 66, .external_lex_state = 16}, - [4507] = {.lex_state = 15, .external_lex_state = 16}, - [4508] = {.lex_state = 66, .external_lex_state = 12}, - [4509] = {.lex_state = 66, .external_lex_state = 12}, - [4510] = {.lex_state = 66, .external_lex_state = 12}, + [4505] = {.lex_state = 66, .external_lex_state = 11}, + [4506] = {.lex_state = 66, .external_lex_state = 12}, + [4507] = {.lex_state = 66, .external_lex_state = 20}, + [4508] = {.lex_state = 66, .external_lex_state = 20}, + [4509] = {.lex_state = 66, .external_lex_state = 14}, + [4510] = {.lex_state = 66, .external_lex_state = 20}, [4511] = {.lex_state = 66, .external_lex_state = 14}, - [4512] = {.lex_state = 66, .external_lex_state = 20}, - [4513] = {.lex_state = 66, .external_lex_state = 11}, - [4514] = {.lex_state = 66, .external_lex_state = 14}, + [4512] = {.lex_state = 66, .external_lex_state = 12}, + [4513] = {.lex_state = 18, .external_lex_state = 12}, + [4514] = {.lex_state = 66, .external_lex_state = 11}, [4515] = {.lex_state = 66, .external_lex_state = 20}, [4516] = {.lex_state = 66, .external_lex_state = 12}, - [4517] = {.lex_state = 66, .external_lex_state = 14}, - [4518] = {.lex_state = 66, .external_lex_state = 12}, - [4519] = {.lex_state = 66, .external_lex_state = 12}, - [4520] = {.lex_state = 66, .external_lex_state = 11}, - [4521] = {.lex_state = 66, .external_lex_state = 16}, + [4517] = {.lex_state = 66, .external_lex_state = 12}, + [4518] = {.lex_state = 15, .external_lex_state = 16}, + [4519] = {.lex_state = 15, .external_lex_state = 16}, + [4520] = {.lex_state = 66, .external_lex_state = 12}, + [4521] = {.lex_state = 66, .external_lex_state = 12}, [4522] = {.lex_state = 66, .external_lex_state = 12}, [4523] = {.lex_state = 66, .external_lex_state = 12}, - [4524] = {.lex_state = 66, .external_lex_state = 12}, + [4524] = {.lex_state = 66, .external_lex_state = 14}, [4525] = {.lex_state = 66, .external_lex_state = 12}, [4526] = {.lex_state = 66, .external_lex_state = 16}, - [4527] = {.lex_state = 66, .external_lex_state = 15}, - [4528] = {.lex_state = 66, .external_lex_state = 11}, - [4529] = {.lex_state = 66, .external_lex_state = 11}, + [4527] = {.lex_state = 66, .external_lex_state = 12}, + [4528] = {.lex_state = 66, .external_lex_state = 12}, + [4529] = {.lex_state = 66, .external_lex_state = 12}, [4530] = {.lex_state = 66, .external_lex_state = 12}, - [4531] = {.lex_state = 66, .external_lex_state = 11}, - [4532] = {.lex_state = 66, .external_lex_state = 12}, + [4531] = {.lex_state = 66, .external_lex_state = 16}, + [4532] = {.lex_state = 15, .external_lex_state = 11}, [4533] = {.lex_state = 66, .external_lex_state = 12}, - [4534] = {.lex_state = 3, .external_lex_state = 15}, - [4535] = {.lex_state = 15, .external_lex_state = 16}, - [4536] = {.lex_state = 66, .external_lex_state = 12}, - [4537] = {.lex_state = 66, .external_lex_state = 12}, - [4538] = {.lex_state = 66, .external_lex_state = 14}, - [4539] = {.lex_state = 15, .external_lex_state = 11}, - [4540] = {.lex_state = 66, .external_lex_state = 15}, - [4541] = {.lex_state = 66, .external_lex_state = 12}, - [4542] = {.lex_state = 66, .external_lex_state = 20}, - [4543] = {.lex_state = 66, .external_lex_state = 14}, - [4544] = {.lex_state = 66, .external_lex_state = 16}, - [4545] = {.lex_state = 66, .external_lex_state = 15}, - [4546] = {.lex_state = 66, .external_lex_state = 14}, - [4547] = {.lex_state = 18, .external_lex_state = 12}, - [4548] = {.lex_state = 66, .external_lex_state = 16}, - [4549] = {.lex_state = 66, .external_lex_state = 21}, - [4550] = {.lex_state = 66, .external_lex_state = 16}, - [4551] = {.lex_state = 66, .external_lex_state = 5}, - [4552] = {.lex_state = 66, .external_lex_state = 14}, - [4553] = {.lex_state = 66, .external_lex_state = 14}, - [4554] = {.lex_state = 66, .external_lex_state = 16}, - [4555] = {.lex_state = 66, .external_lex_state = 11}, - [4556] = {.lex_state = 66, .external_lex_state = 14}, + [4534] = {.lex_state = 15, .external_lex_state = 16}, + [4535] = {.lex_state = 66, .external_lex_state = 15}, + [4536] = {.lex_state = 66, .external_lex_state = 15}, + [4537] = {.lex_state = 66, .external_lex_state = 11}, + [4538] = {.lex_state = 66, .external_lex_state = 16}, + [4539] = {.lex_state = 66, .external_lex_state = 12}, + [4540] = {.lex_state = 66, .external_lex_state = 16}, + [4541] = {.lex_state = 66, .external_lex_state = 11}, + [4542] = {.lex_state = 66, .external_lex_state = 12}, + [4543] = {.lex_state = 66, .external_lex_state = 12}, + [4544] = {.lex_state = 66, .external_lex_state = 11}, + [4545] = {.lex_state = 66, .external_lex_state = 11}, + [4546] = {.lex_state = 15, .external_lex_state = 16}, + [4547] = {.lex_state = 15, .external_lex_state = 16}, + [4548] = {.lex_state = 15, .external_lex_state = 16}, + [4549] = {.lex_state = 66, .external_lex_state = 14}, + [4550] = {.lex_state = 66, .external_lex_state = 12}, + [4551] = {.lex_state = 66, .external_lex_state = 11}, + [4552] = {.lex_state = 66, .external_lex_state = 15}, + [4553] = {.lex_state = 66, .external_lex_state = 20}, + [4554] = {.lex_state = 66, .external_lex_state = 14}, + [4555] = {.lex_state = 66, .external_lex_state = 14}, + [4556] = {.lex_state = 66, .external_lex_state = 15}, [4557] = {.lex_state = 66, .external_lex_state = 14}, - [4558] = {.lex_state = 66, .external_lex_state = 14}, - [4559] = {.lex_state = 66, .external_lex_state = 15}, - [4560] = {.lex_state = 66, .external_lex_state = 15}, - [4561] = {.lex_state = 66, .external_lex_state = 14}, - [4562] = {.lex_state = 66, .external_lex_state = 14}, + [4558] = {.lex_state = 66, .external_lex_state = 20}, + [4559] = {.lex_state = 66, .external_lex_state = 11}, + [4560] = {.lex_state = 66, .external_lex_state = 14}, + [4561] = {.lex_state = 66, .external_lex_state = 11}, + [4562] = {.lex_state = 66, .external_lex_state = 12}, [4563] = {.lex_state = 66, .external_lex_state = 15}, - [4564] = {.lex_state = 66, .external_lex_state = 14}, - [4565] = {.lex_state = 66, .external_lex_state = 16}, - [4566] = {.lex_state = 66, .external_lex_state = 15}, - [4567] = {.lex_state = 66, .external_lex_state = 12}, + [4564] = {.lex_state = 66, .external_lex_state = 11}, + [4565] = {.lex_state = 66, .external_lex_state = 14}, + [4566] = {.lex_state = 18, .external_lex_state = 12}, + [4567] = {.lex_state = 66, .external_lex_state = 15}, [4568] = {.lex_state = 66, .external_lex_state = 14}, - [4569] = {.lex_state = 66, .external_lex_state = 16}, - [4570] = {.lex_state = 66, .external_lex_state = 14}, + [4569] = {.lex_state = 3, .external_lex_state = 15}, + [4570] = {.lex_state = 66, .external_lex_state = 20}, [4571] = {.lex_state = 66, .external_lex_state = 12}, - [4572] = {.lex_state = 66, .external_lex_state = 14}, - [4573] = {.lex_state = 66, .external_lex_state = 14}, - [4574] = {.lex_state = 66, .external_lex_state = 16}, - [4575] = {.lex_state = 66, .external_lex_state = 12}, - [4576] = {.lex_state = 66, .external_lex_state = 11}, - [4577] = {.lex_state = 66, .external_lex_state = 16}, - [4578] = {.lex_state = 66, .external_lex_state = 2}, - [4579] = {.lex_state = 66, .external_lex_state = 16}, - [4580] = {.lex_state = 66, .external_lex_state = 14}, - [4581] = {.lex_state = 66, .external_lex_state = 14}, - [4582] = {.lex_state = 66, .external_lex_state = 14}, + [4572] = {.lex_state = 66, .external_lex_state = 12}, + [4573] = {.lex_state = 66, .external_lex_state = 12}, + [4574] = {.lex_state = 66, .external_lex_state = 15}, + [4575] = {.lex_state = 66, .external_lex_state = 15}, + [4576] = {.lex_state = 66, .external_lex_state = 15}, + [4577] = {.lex_state = 66, .external_lex_state = 15}, + [4578] = {.lex_state = 66, .external_lex_state = 11}, + [4579] = {.lex_state = 66, .external_lex_state = 14}, + [4580] = {.lex_state = 66, .external_lex_state = 20}, + [4581] = {.lex_state = 66, .external_lex_state = 12}, + [4582] = {.lex_state = 66, .external_lex_state = 12}, [4583] = {.lex_state = 66, .external_lex_state = 12}, - [4584] = {.lex_state = 66, .external_lex_state = 12}, - [4585] = {.lex_state = 66, .external_lex_state = 16}, + [4584] = {.lex_state = 15, .external_lex_state = 11}, + [4585] = {.lex_state = 66, .external_lex_state = 20}, [4586] = {.lex_state = 66, .external_lex_state = 12}, - [4587] = {.lex_state = 66, .external_lex_state = 16}, - [4588] = {.lex_state = 18, .external_lex_state = 12}, - [4589] = {.lex_state = 66, .external_lex_state = 12}, - [4590] = {.lex_state = 66, .external_lex_state = 11}, - [4591] = {.lex_state = 66, .external_lex_state = 16}, - [4592] = {.lex_state = 66, .external_lex_state = 16}, - [4593] = {.lex_state = 66, .external_lex_state = 16}, + [4587] = {.lex_state = 66, .external_lex_state = 20}, + [4588] = {.lex_state = 66, .external_lex_state = 12}, + [4589] = {.lex_state = 66, .external_lex_state = 11}, + [4590] = {.lex_state = 66, .external_lex_state = 20}, + [4591] = {.lex_state = 66, .external_lex_state = 14}, + [4592] = {.lex_state = 66, .external_lex_state = 14}, + [4593] = {.lex_state = 66, .external_lex_state = 12}, [4594] = {.lex_state = 66, .external_lex_state = 11}, - [4595] = {.lex_state = 66, .external_lex_state = 16}, - [4596] = {.lex_state = 66, .external_lex_state = 15}, - [4597] = {.lex_state = 66, .external_lex_state = 15}, - [4598] = {.lex_state = 66, .external_lex_state = 12}, - [4599] = {.lex_state = 66, .external_lex_state = 2}, - [4600] = {.lex_state = 66, .external_lex_state = 14}, - [4601] = {.lex_state = 18, .external_lex_state = 12}, - [4602] = {.lex_state = 66, .external_lex_state = 21}, - [4603] = {.lex_state = 66, .external_lex_state = 14}, - [4604] = {.lex_state = 18, .external_lex_state = 12}, - [4605] = {.lex_state = 66, .external_lex_state = 16}, - [4606] = {.lex_state = 66, .external_lex_state = 11}, + [4595] = {.lex_state = 66, .external_lex_state = 11}, + [4596] = {.lex_state = 66, .external_lex_state = 16}, + [4597] = {.lex_state = 66, .external_lex_state = 16}, + [4598] = {.lex_state = 66, .external_lex_state = 11}, + [4599] = {.lex_state = 66, .external_lex_state = 21}, + [4600] = {.lex_state = 66, .external_lex_state = 16}, + [4601] = {.lex_state = 66, .external_lex_state = 16}, + [4602] = {.lex_state = 66, .external_lex_state = 12}, + [4603] = {.lex_state = 66, .external_lex_state = 16}, + [4604] = {.lex_state = 66, .external_lex_state = 16}, + [4605] = {.lex_state = 66, .external_lex_state = 12}, + [4606] = {.lex_state = 66, .external_lex_state = 21}, [4607] = {.lex_state = 66, .external_lex_state = 16}, - [4608] = {.lex_state = 66, .external_lex_state = 14}, - [4609] = {.lex_state = 66, .external_lex_state = 14}, - [4610] = {.lex_state = 66, .external_lex_state = 14}, - [4611] = {.lex_state = 66, .external_lex_state = 16}, - [4612] = {.lex_state = 66, .external_lex_state = 14}, + [4608] = {.lex_state = 66, .external_lex_state = 11}, + [4609] = {.lex_state = 66, .external_lex_state = 11}, + [4610] = {.lex_state = 66, .external_lex_state = 11}, + [4611] = {.lex_state = 66, .external_lex_state = 11}, + [4612] = {.lex_state = 18, .external_lex_state = 12}, [4613] = {.lex_state = 66, .external_lex_state = 16}, - [4614] = {.lex_state = 66, .external_lex_state = 16}, - [4615] = {.lex_state = 66, .external_lex_state = 15}, - [4616] = {.lex_state = 66, .external_lex_state = 16}, - [4617] = {.lex_state = 66, .external_lex_state = 14}, - [4618] = {.lex_state = 66, .external_lex_state = 13}, - [4619] = {.lex_state = 66, .external_lex_state = 12}, + [4614] = {.lex_state = 66, .external_lex_state = 14}, + [4615] = {.lex_state = 66, .external_lex_state = 14}, + [4616] = {.lex_state = 66, .external_lex_state = 12}, + [4617] = {.lex_state = 66, .external_lex_state = 15}, + [4618] = {.lex_state = 66, .external_lex_state = 16}, + [4619] = {.lex_state = 66, .external_lex_state = 14}, [4620] = {.lex_state = 66, .external_lex_state = 11}, - [4621] = {.lex_state = 66, .external_lex_state = 11}, - [4622] = {.lex_state = 66, .external_lex_state = 16}, - [4623] = {.lex_state = 66, .external_lex_state = 16}, - [4624] = {.lex_state = 66, .external_lex_state = 14}, - [4625] = {.lex_state = 66, .external_lex_state = 5}, - [4626] = {.lex_state = 66, .external_lex_state = 16}, + [4621] = {.lex_state = 66, .external_lex_state = 13}, + [4622] = {.lex_state = 18, .external_lex_state = 12}, + [4623] = {.lex_state = 66, .external_lex_state = 14}, + [4624] = {.lex_state = 66, .external_lex_state = 16}, + [4625] = {.lex_state = 66, .external_lex_state = 16}, + [4626] = {.lex_state = 66, .external_lex_state = 11}, [4627] = {.lex_state = 66, .external_lex_state = 12}, - [4628] = {.lex_state = 66, .external_lex_state = 15}, - [4629] = {.lex_state = 66, .external_lex_state = 21}, - [4630] = {.lex_state = 66, .external_lex_state = 5}, - [4631] = {.lex_state = 66, .external_lex_state = 21}, - [4632] = {.lex_state = 66, .external_lex_state = 15}, + [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 = 12, .external_lex_state = 12}, + [4632] = {.lex_state = 66, .external_lex_state = 13}, [4633] = {.lex_state = 66, .external_lex_state = 14}, - [4634] = {.lex_state = 66, .external_lex_state = 14}, - [4635] = {.lex_state = 66, .external_lex_state = 12}, - [4636] = {.lex_state = 66, .external_lex_state = 12}, - [4637] = {.lex_state = 66, .external_lex_state = 15}, - [4638] = {.lex_state = 66, .external_lex_state = 14}, - [4639] = {.lex_state = 66, .external_lex_state = 13}, - [4640] = {.lex_state = 66, .external_lex_state = 11}, - [4641] = {.lex_state = 66, .external_lex_state = 21}, - [4642] = {.lex_state = 66, .external_lex_state = 11}, - [4643] = {.lex_state = 66, .external_lex_state = 11}, - [4644] = {.lex_state = 66, .external_lex_state = 11}, - [4645] = {.lex_state = 66, .external_lex_state = 11}, + [4634] = {.lex_state = 66, .external_lex_state = 11}, + [4635] = {.lex_state = 66, .external_lex_state = 16}, + [4636] = {.lex_state = 18, .external_lex_state = 12}, + [4637] = {.lex_state = 66, .external_lex_state = 14}, + [4638] = {.lex_state = 18, .external_lex_state = 12}, + [4639] = {.lex_state = 66, .external_lex_state = 14}, + [4640] = {.lex_state = 66, .external_lex_state = 12}, + [4641] = {.lex_state = 66, .external_lex_state = 12}, + [4642] = {.lex_state = 66, .external_lex_state = 21}, + [4643] = {.lex_state = 66, .external_lex_state = 21}, + [4644] = {.lex_state = 18, .external_lex_state = 12}, + [4645] = {.lex_state = 66, .external_lex_state = 14}, [4646] = {.lex_state = 66, .external_lex_state = 11}, - [4647] = {.lex_state = 66, .external_lex_state = 15}, - [4648] = {.lex_state = 66, .external_lex_state = 15}, + [4647] = {.lex_state = 66, .external_lex_state = 16}, + [4648] = {.lex_state = 66, .external_lex_state = 16}, [4649] = {.lex_state = 66, .external_lex_state = 12}, - [4650] = {.lex_state = 66, .external_lex_state = 12}, - [4651] = {.lex_state = 66, .external_lex_state = 12}, - [4652] = {.lex_state = 66, .external_lex_state = 12}, - [4653] = {.lex_state = 18, .external_lex_state = 12}, - [4654] = {.lex_state = 66, .external_lex_state = 12}, - [4655] = {.lex_state = 66, .external_lex_state = 14}, - [4656] = {.lex_state = 66, .external_lex_state = 16}, - [4657] = {.lex_state = 66, .external_lex_state = 13}, - [4658] = {.lex_state = 66, .external_lex_state = 12}, - [4659] = {.lex_state = 66, .external_lex_state = 15}, + [4650] = {.lex_state = 66, .external_lex_state = 16}, + [4651] = {.lex_state = 66, .external_lex_state = 16}, + [4652] = {.lex_state = 66, .external_lex_state = 13}, + [4653] = {.lex_state = 66, .external_lex_state = 12}, + [4654] = {.lex_state = 66, .external_lex_state = 14}, + [4655] = {.lex_state = 66, .external_lex_state = 16}, + [4656] = {.lex_state = 66, .external_lex_state = 14}, + [4657] = {.lex_state = 66, .external_lex_state = 14}, + [4658] = {.lex_state = 66, .external_lex_state = 2}, + [4659] = {.lex_state = 66, .external_lex_state = 21}, [4660] = {.lex_state = 66, .external_lex_state = 16}, - [4661] = {.lex_state = 66, .external_lex_state = 16}, - [4662] = {.lex_state = 66, .external_lex_state = 11}, + [4661] = {.lex_state = 66, .external_lex_state = 13}, + [4662] = {.lex_state = 66, .external_lex_state = 16}, [4663] = {.lex_state = 66, .external_lex_state = 16}, - [4664] = {.lex_state = 66, .external_lex_state = 21}, - [4665] = {.lex_state = 66, .external_lex_state = 14}, - [4666] = {.lex_state = 66, .external_lex_state = 11}, - [4667] = {.lex_state = 66, .external_lex_state = 5}, - [4668] = {.lex_state = 66, .external_lex_state = 15}, - [4669] = {.lex_state = 66, .external_lex_state = 11}, - [4670] = {.lex_state = 66, .external_lex_state = 14}, + [4664] = {.lex_state = 66, .external_lex_state = 13}, + [4665] = {.lex_state = 66, .external_lex_state = 21}, + [4666] = {.lex_state = 66, .external_lex_state = 12}, + [4667] = {.lex_state = 66, .external_lex_state = 16}, + [4668] = {.lex_state = 66, .external_lex_state = 14}, + [4669] = {.lex_state = 66, .external_lex_state = 14}, + [4670] = {.lex_state = 66, .external_lex_state = 12}, [4671] = {.lex_state = 66, .external_lex_state = 14}, [4672] = {.lex_state = 66, .external_lex_state = 21}, - [4673] = {.lex_state = 66, .external_lex_state = 13}, - [4674] = {.lex_state = 66, .external_lex_state = 16}, - [4675] = {.lex_state = 66, .external_lex_state = 15}, + [4673] = {.lex_state = 66, .external_lex_state = 14}, + [4674] = {.lex_state = 66, .external_lex_state = 14}, + [4675] = {.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 = 18, .external_lex_state = 12}, - [4679] = {.lex_state = 66, .external_lex_state = 13}, - [4680] = {.lex_state = 66, .external_lex_state = 15}, + [4677] = {.lex_state = 66, .external_lex_state = 16}, + [4678] = {.lex_state = 66, .external_lex_state = 14}, + [4679] = {.lex_state = 66, .external_lex_state = 14}, + [4680] = {.lex_state = 66, .external_lex_state = 14}, [4681] = {.lex_state = 66, .external_lex_state = 14}, [4682] = {.lex_state = 66, .external_lex_state = 14}, [4683] = {.lex_state = 66, .external_lex_state = 14}, - [4684] = {.lex_state = 66, .external_lex_state = 21}, + [4684] = {.lex_state = 66, .external_lex_state = 14}, [4685] = {.lex_state = 66, .external_lex_state = 14}, [4686] = {.lex_state = 66, .external_lex_state = 14}, [4687] = {.lex_state = 66, .external_lex_state = 14}, - [4688] = {.lex_state = 66, .external_lex_state = 14}, - [4689] = {.lex_state = 66, .external_lex_state = 16}, - [4690] = {.lex_state = 66, .external_lex_state = 16}, - [4691] = {.lex_state = 66, .external_lex_state = 15}, - [4692] = {.lex_state = 66, .external_lex_state = 15}, - [4693] = {.lex_state = 66, .external_lex_state = 15}, - [4694] = {.lex_state = 66, .external_lex_state = 11}, - [4695] = {.lex_state = 66, .external_lex_state = 14}, - [4696] = {.lex_state = 66, .external_lex_state = 15}, - [4697] = {.lex_state = 66, .external_lex_state = 15}, - [4698] = {.lex_state = 66, .external_lex_state = 15}, - [4699] = {.lex_state = 66, .external_lex_state = 15}, - [4700] = {.lex_state = 66, .external_lex_state = 21}, - [4701] = {.lex_state = 66, .external_lex_state = 5}, - [4702] = {.lex_state = 66, .external_lex_state = 12}, - [4703] = {.lex_state = 66, .external_lex_state = 16}, - [4704] = {.lex_state = 66, .external_lex_state = 14}, - [4705] = {.lex_state = 18, .external_lex_state = 12}, - [4706] = {.lex_state = 66, .external_lex_state = 12}, + [4688] = {.lex_state = 66, .external_lex_state = 12}, + [4689] = {.lex_state = 66, .external_lex_state = 14}, + [4690] = {.lex_state = 66, .external_lex_state = 21}, + [4691] = {.lex_state = 66, .external_lex_state = 14}, + [4692] = {.lex_state = 66, .external_lex_state = 14}, + [4693] = {.lex_state = 66, .external_lex_state = 14}, + [4694] = {.lex_state = 66, .external_lex_state = 15}, + [4695] = {.lex_state = 66, .external_lex_state = 21}, + [4696] = {.lex_state = 66, .external_lex_state = 2}, + [4697] = {.lex_state = 66, .external_lex_state = 14}, + [4698] = {.lex_state = 66, .external_lex_state = 16}, + [4699] = {.lex_state = 66, .external_lex_state = 14}, + [4700] = {.lex_state = 66, .external_lex_state = 15}, + [4701] = {.lex_state = 66, .external_lex_state = 16}, + [4702] = {.lex_state = 66, .external_lex_state = 5}, + [4703] = {.lex_state = 66, .external_lex_state = 15}, + [4704] = {.lex_state = 66, .external_lex_state = 15}, + [4705] = {.lex_state = 66, .external_lex_state = 16}, + [4706] = {.lex_state = 66, .external_lex_state = 5}, [4707] = {.lex_state = 66, .external_lex_state = 5}, - [4708] = {.lex_state = 66, .external_lex_state = 14}, - [4709] = {.lex_state = 66, .external_lex_state = 15}, + [4708] = {.lex_state = 66, .external_lex_state = 12}, + [4709] = {.lex_state = 66, .external_lex_state = 14}, [4710] = {.lex_state = 66, .external_lex_state = 16}, - [4711] = {.lex_state = 66, .external_lex_state = 12}, - [4712] = {.lex_state = 66, .external_lex_state = 11}, - [4713] = {.lex_state = 12, .external_lex_state = 12}, - [4714] = {.lex_state = 66, .external_lex_state = 15}, - [4715] = {.lex_state = 66, .external_lex_state = 16}, - [4716] = {.lex_state = 66, .external_lex_state = 11}, - [4717] = {.lex_state = 66, .external_lex_state = 11}, + [4711] = {.lex_state = 66, .external_lex_state = 14}, + [4712] = {.lex_state = 66, .external_lex_state = 16}, + [4713] = {.lex_state = 66, .external_lex_state = 11}, + [4714] = {.lex_state = 66, .external_lex_state = 16}, + [4715] = {.lex_state = 66, .external_lex_state = 15}, + [4716] = {.lex_state = 66, .external_lex_state = 15}, + [4717] = {.lex_state = 66, .external_lex_state = 16}, [4718] = {.lex_state = 66, .external_lex_state = 15}, - [4719] = {.lex_state = 66, .external_lex_state = 11}, - [4720] = {.lex_state = 3, .external_lex_state = 15}, - [4721] = {.lex_state = 66, .external_lex_state = 11}, - [4722] = {.lex_state = 66, .external_lex_state = 11}, - [4723] = {.lex_state = 66, .external_lex_state = 16}, - [4724] = {.lex_state = 66, .external_lex_state = 15}, - [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 = 11}, + [4719] = {.lex_state = 66, .external_lex_state = 15}, + [4720] = {.lex_state = 66, .external_lex_state = 15}, + [4721] = {.lex_state = 66, .external_lex_state = 16}, + [4722] = {.lex_state = 66, .external_lex_state = 5}, + [4723] = {.lex_state = 66, .external_lex_state = 15}, + [4724] = {.lex_state = 66, .external_lex_state = 12}, + [4725] = {.lex_state = 66, .external_lex_state = 12}, + [4726] = {.lex_state = 66, .external_lex_state = 16}, + [4727] = {.lex_state = 66, .external_lex_state = 14}, + [4728] = {.lex_state = 66, .external_lex_state = 15}, + [4729] = {.lex_state = 66, .external_lex_state = 15}, [4730] = {.lex_state = 66, .external_lex_state = 11}, - [4731] = {.lex_state = 66, .external_lex_state = 16}, - [4732] = {.lex_state = 66, .external_lex_state = 11}, - [4733] = {.lex_state = 66, .external_lex_state = 11}, - [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 = 14}, - [4738] = {.lex_state = 66, .external_lex_state = 11}, - [4739] = {.lex_state = 66, .external_lex_state = 14}, - [4740] = {.lex_state = 66, .external_lex_state = 11}, - [4741] = {.lex_state = 66, .external_lex_state = 11}, - [4742] = {.lex_state = 66, .external_lex_state = 11}, - [4743] = {.lex_state = 66, .external_lex_state = 14}, - [4744] = {.lex_state = 66, .external_lex_state = 11}, - [4745] = {.lex_state = 66, .external_lex_state = 16}, - [4746] = {.lex_state = 66, .external_lex_state = 12}, - [4747] = {.lex_state = 66, .external_lex_state = 15}, - [4748] = {.lex_state = 66, .external_lex_state = 15}, - [4749] = {.lex_state = 66, .external_lex_state = 11}, - [4750] = {.lex_state = 66, .external_lex_state = 11}, - [4751] = {.lex_state = 3, .external_lex_state = 15}, - [4752] = {.lex_state = 66, .external_lex_state = 11}, - [4753] = {.lex_state = 66, .external_lex_state = 11}, - [4754] = {.lex_state = 66, .external_lex_state = 16}, - [4755] = {.lex_state = 66, .external_lex_state = 11}, - [4756] = {.lex_state = 66, .external_lex_state = 11}, - [4757] = {.lex_state = 66, .external_lex_state = 11}, + [4731] = {.lex_state = 66, .external_lex_state = 15}, + [4732] = {.lex_state = 18, .external_lex_state = 12}, + [4733] = {.lex_state = 66, .external_lex_state = 15}, + [4734] = {.lex_state = 66, .external_lex_state = 14}, + [4735] = {.lex_state = 66, .external_lex_state = 12}, + [4736] = {.lex_state = 66, .external_lex_state = 16}, + [4737] = {.lex_state = 66, .external_lex_state = 15}, + [4738] = {.lex_state = 66, .external_lex_state = 15}, + [4739] = {.lex_state = 66, .external_lex_state = 15}, + [4740] = {.lex_state = 66, .external_lex_state = 15}, + [4741] = {.lex_state = 66, .external_lex_state = 15}, + [4742] = {.lex_state = 66, .external_lex_state = 15}, + [4743] = {.lex_state = 66, .external_lex_state = 12}, + [4744] = {.lex_state = 66, .external_lex_state = 5}, + [4745] = {.lex_state = 66, .external_lex_state = 15}, + [4746] = {.lex_state = 66, .external_lex_state = 15}, + [4747] = {.lex_state = 66, .external_lex_state = 16}, + [4748] = {.lex_state = 66, .external_lex_state = 11}, + [4749] = {.lex_state = 66, .external_lex_state = 14}, + [4750] = {.lex_state = 66, .external_lex_state = 16}, + [4751] = {.lex_state = 66, .external_lex_state = 15}, + [4752] = {.lex_state = 66, .external_lex_state = 14}, + [4753] = {.lex_state = 66, .external_lex_state = 12}, + [4754] = {.lex_state = 66, .external_lex_state = 15}, + [4755] = {.lex_state = 66, .external_lex_state = 15}, + [4756] = {.lex_state = 66, .external_lex_state = 5}, + [4757] = {.lex_state = 66, .external_lex_state = 12}, [4758] = {.lex_state = 66, .external_lex_state = 11}, - [4759] = {.lex_state = 66, .external_lex_state = 20}, - [4760] = {.lex_state = 66, .external_lex_state = 11}, - [4761] = {.lex_state = 66, .external_lex_state = 14}, + [4759] = {.lex_state = 66, .external_lex_state = 12}, + [4760] = {.lex_state = 18, .external_lex_state = 12}, + [4761] = {.lex_state = 66, .external_lex_state = 11}, [4762] = {.lex_state = 66, .external_lex_state = 11}, - [4763] = {.lex_state = 66, .external_lex_state = 16}, - [4764] = {.lex_state = 66, .external_lex_state = 11}, - [4765] = {.lex_state = 66, .external_lex_state = 11}, - [4766] = {.lex_state = 66, .external_lex_state = 11}, + [4763] = {.lex_state = 66, .external_lex_state = 14}, + [4764] = {.lex_state = 66, .external_lex_state = 15}, + [4765] = {.lex_state = 66, .external_lex_state = 14}, + [4766] = {.lex_state = 66, .external_lex_state = 14}, [4767] = {.lex_state = 66, .external_lex_state = 11}, - [4768] = {.lex_state = 66, .external_lex_state = 14}, - [4769] = {.lex_state = 66, .external_lex_state = 12}, - [4770] = {.lex_state = 66, .external_lex_state = 16}, - [4771] = {.lex_state = 16, .external_lex_state = 19}, + [4768] = {.lex_state = 66, .external_lex_state = 11}, + [4769] = {.lex_state = 66, .external_lex_state = 11}, + [4770] = {.lex_state = 66, .external_lex_state = 11}, + [4771] = {.lex_state = 66, .external_lex_state = 16}, [4772] = {.lex_state = 66, .external_lex_state = 11}, - [4773] = {.lex_state = 66, .external_lex_state = 11}, - [4774] = {.lex_state = 66, .external_lex_state = 14}, - [4775] = {.lex_state = 66, .external_lex_state = 12}, + [4773] = {.lex_state = 66, .external_lex_state = 16}, + [4774] = {.lex_state = 66, .external_lex_state = 11}, + [4775] = {.lex_state = 66, .external_lex_state = 20}, [4776] = {.lex_state = 66, .external_lex_state = 11}, [4777] = {.lex_state = 66, .external_lex_state = 11}, [4778] = {.lex_state = 66, .external_lex_state = 11}, - [4779] = {.lex_state = 66, .external_lex_state = 11}, + [4779] = {.lex_state = 66, .external_lex_state = 12}, [4780] = {.lex_state = 66, .external_lex_state = 11}, - [4781] = {.lex_state = 66, .external_lex_state = 11}, + [4781] = {.lex_state = 66, .external_lex_state = 2}, [4782] = {.lex_state = 66, .external_lex_state = 11}, [4783] = {.lex_state = 66, .external_lex_state = 11}, - [4784] = {.lex_state = 66, .external_lex_state = 11}, + [4784] = {.lex_state = 66, .external_lex_state = 14}, [4785] = {.lex_state = 66, .external_lex_state = 11}, [4786] = {.lex_state = 66, .external_lex_state = 11}, - [4787] = {.lex_state = 66, .external_lex_state = 12}, - [4788] = {.lex_state = 66, .external_lex_state = 14}, - [4789] = {.lex_state = 66, .external_lex_state = 11}, - [4790] = {.lex_state = 66, .external_lex_state = 11}, - [4791] = {.lex_state = 66, .external_lex_state = 11}, - [4792] = {.lex_state = 15, .external_lex_state = 12}, - [4793] = {.lex_state = 66, .external_lex_state = 11}, - [4794] = {.lex_state = 66, .external_lex_state = 11}, - [4795] = {.lex_state = 66, .external_lex_state = 11}, - [4796] = {.lex_state = 66, .external_lex_state = 11}, - [4797] = {.lex_state = 66, .external_lex_state = 16}, - [4798] = {.lex_state = 66, .external_lex_state = 11}, - [4799] = {.lex_state = 66, .external_lex_state = 16}, - [4800] = {.lex_state = 66, .external_lex_state = 16}, - [4801] = {.lex_state = 66, .external_lex_state = 15}, - [4802] = {.lex_state = 66, .external_lex_state = 11}, - [4803] = {.lex_state = 66, .external_lex_state = 12}, + [4787] = {.lex_state = 66, .external_lex_state = 11}, + [4788] = {.lex_state = 66, .external_lex_state = 12}, + [4789] = {.lex_state = 66, .external_lex_state = 16}, + [4790] = {.lex_state = 66, .external_lex_state = 16}, + [4791] = {.lex_state = 66, .external_lex_state = 16}, + [4792] = {.lex_state = 66, .external_lex_state = 11}, + [4793] = {.lex_state = 66, .external_lex_state = 14}, + [4794] = {.lex_state = 66, .external_lex_state = 15}, + [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 = 12}, + [4799] = {.lex_state = 66, .external_lex_state = 11}, + [4800] = {.lex_state = 66, .external_lex_state = 11}, + [4801] = {.lex_state = 66, .external_lex_state = 11}, + [4802] = {.lex_state = 3, .external_lex_state = 15}, + [4803] = {.lex_state = 66, .external_lex_state = 11}, [4804] = {.lex_state = 66, .external_lex_state = 11}, - [4805] = {.lex_state = 66, .external_lex_state = 12}, - [4806] = {.lex_state = 66, .external_lex_state = 16}, + [4805] = {.lex_state = 66, .external_lex_state = 11}, + [4806] = {.lex_state = 66, .external_lex_state = 11}, [4807] = {.lex_state = 66, .external_lex_state = 11}, - [4808] = {.lex_state = 66, .external_lex_state = 12}, - [4809] = {.lex_state = 66, .external_lex_state = 14}, + [4808] = {.lex_state = 66, .external_lex_state = 14}, + [4809] = {.lex_state = 66, .external_lex_state = 15}, [4810] = {.lex_state = 66, .external_lex_state = 11}, - [4811] = {.lex_state = 66, .external_lex_state = 14}, - [4812] = {.lex_state = 66, .external_lex_state = 11}, + [4811] = {.lex_state = 66, .external_lex_state = 11}, + [4812] = {.lex_state = 66, .external_lex_state = 15}, [4813] = {.lex_state = 66, .external_lex_state = 12}, [4814] = {.lex_state = 66, .external_lex_state = 14}, - [4815] = {.lex_state = 15, .external_lex_state = 12}, - [4816] = {.lex_state = 66, .external_lex_state = 15}, - [4817] = {.lex_state = 66, .external_lex_state = 11}, - [4818] = {.lex_state = 66, .external_lex_state = 12}, + [4815] = {.lex_state = 66, .external_lex_state = 12}, + [4816] = {.lex_state = 66, .external_lex_state = 14}, + [4817] = {.lex_state = 66, .external_lex_state = 16}, + [4818] = {.lex_state = 66, .external_lex_state = 11}, [4819] = {.lex_state = 66, .external_lex_state = 11}, [4820] = {.lex_state = 66, .external_lex_state = 11}, - [4821] = {.lex_state = 3, .external_lex_state = 15}, - [4822] = {.lex_state = 66, .external_lex_state = 15}, - [4823] = {.lex_state = 66, .external_lex_state = 14}, - [4824] = {.lex_state = 66, .external_lex_state = 14}, - [4825] = {.lex_state = 66, .external_lex_state = 11}, - [4826] = {.lex_state = 66, .external_lex_state = 16}, + [4821] = {.lex_state = 66, .external_lex_state = 11}, + [4822] = {.lex_state = 66, .external_lex_state = 11}, + [4823] = {.lex_state = 66, .external_lex_state = 11}, + [4824] = {.lex_state = 66, .external_lex_state = 11}, + [4825] = {.lex_state = 66, .external_lex_state = 12}, + [4826] = {.lex_state = 66, .external_lex_state = 11}, [4827] = {.lex_state = 66, .external_lex_state = 11}, [4828] = {.lex_state = 66, .external_lex_state = 11}, - [4829] = {.lex_state = 66, .external_lex_state = 16}, - [4830] = {.lex_state = 66, .external_lex_state = 12}, - [4831] = {.lex_state = 66, .external_lex_state = 14}, - [4832] = {.lex_state = 66, .external_lex_state = 16}, + [4829] = {.lex_state = 66, .external_lex_state = 11}, + [4830] = {.lex_state = 66, .external_lex_state = 14}, + [4831] = {.lex_state = 66, .external_lex_state = 12}, + [4832] = {.lex_state = 66, .external_lex_state = 11}, [4833] = {.lex_state = 66, .external_lex_state = 14}, - [4834] = {.lex_state = 66, .external_lex_state = 16}, - [4835] = {.lex_state = 66, .external_lex_state = 16}, + [4834] = {.lex_state = 66, .external_lex_state = 11}, + [4835] = {.lex_state = 66, .external_lex_state = 11}, [4836] = {.lex_state = 66, .external_lex_state = 11}, - [4837] = {.lex_state = 66, .external_lex_state = 16}, - [4838] = {.lex_state = 66, .external_lex_state = 16}, - [4839] = {.lex_state = 66, .external_lex_state = 14}, - [4840] = {.lex_state = 66, .external_lex_state = 15}, - [4841] = {.lex_state = 66, .external_lex_state = 16}, - [4842] = {.lex_state = 66, .external_lex_state = 16}, - [4843] = {.lex_state = 66, .external_lex_state = 14}, - [4844] = {.lex_state = 66, .external_lex_state = 14}, + [4837] = {.lex_state = 66, .external_lex_state = 11}, + [4838] = {.lex_state = 66, .external_lex_state = 11}, + [4839] = {.lex_state = 66, .external_lex_state = 11}, + [4840] = {.lex_state = 66, .external_lex_state = 14}, + [4841] = {.lex_state = 66, .external_lex_state = 11}, + [4842] = {.lex_state = 66, .external_lex_state = 14}, + [4843] = {.lex_state = 66, .external_lex_state = 11}, + [4844] = {.lex_state = 66, .external_lex_state = 11}, [4845] = {.lex_state = 66, .external_lex_state = 15}, - [4846] = {.lex_state = 3, .external_lex_state = 15}, - [4847] = {.lex_state = 66, .external_lex_state = 16}, - [4848] = {.lex_state = 66, .external_lex_state = 14}, + [4846] = {.lex_state = 66, .external_lex_state = 11}, + [4847] = {.lex_state = 66, .external_lex_state = 11}, + [4848] = {.lex_state = 66, .external_lex_state = 11}, [4849] = {.lex_state = 66, .external_lex_state = 15}, - [4850] = {.lex_state = 66, .external_lex_state = 16}, - [4851] = {.lex_state = 3, .external_lex_state = 15}, - [4852] = {.lex_state = 66, .external_lex_state = 15}, - [4853] = {.lex_state = 66, .external_lex_state = 15}, - [4854] = {.lex_state = 66, .external_lex_state = 12}, - [4855] = {.lex_state = 66, .external_lex_state = 12}, - [4856] = {.lex_state = 66, .external_lex_state = 14}, - [4857] = {.lex_state = 66, .external_lex_state = 12}, - [4858] = {.lex_state = 66, .external_lex_state = 14}, - [4859] = {.lex_state = 3, .external_lex_state = 15}, - [4860] = {.lex_state = 66, .external_lex_state = 12}, - [4861] = {.lex_state = 66, .external_lex_state = 11}, - [4862] = {.lex_state = 66, .external_lex_state = 16}, - [4863] = {.lex_state = 66, .external_lex_state = 16}, - [4864] = {.lex_state = 66, .external_lex_state = 14}, - [4865] = {.lex_state = 66, .external_lex_state = 11}, - [4866] = {.lex_state = 66, .external_lex_state = 15}, - [4867] = {.lex_state = 66, .external_lex_state = 12}, - [4868] = {.lex_state = 66, .external_lex_state = 12}, - [4869] = {.lex_state = 66, .external_lex_state = 15}, - [4870] = {.lex_state = 66, .external_lex_state = 11}, - [4871] = {.lex_state = 66, .external_lex_state = 11}, + [4850] = {.lex_state = 66, .external_lex_state = 11}, + [4851] = {.lex_state = 66, .external_lex_state = 14}, + [4852] = {.lex_state = 66, .external_lex_state = 14}, + [4853] = {.lex_state = 66, .external_lex_state = 11}, + [4854] = {.lex_state = 66, .external_lex_state = 11}, + [4855] = {.lex_state = 66, .external_lex_state = 11}, + [4856] = {.lex_state = 66, .external_lex_state = 12}, + [4857] = {.lex_state = 66, .external_lex_state = 14}, + [4858] = {.lex_state = 66, .external_lex_state = 11}, + [4859] = {.lex_state = 66, .external_lex_state = 15}, + [4860] = {.lex_state = 66, .external_lex_state = 15}, + [4861] = {.lex_state = 66, .external_lex_state = 14}, + [4862] = {.lex_state = 66, .external_lex_state = 12}, + [4863] = {.lex_state = 66, .external_lex_state = 11}, + [4864] = {.lex_state = 66, .external_lex_state = 20}, + [4865] = {.lex_state = 66, .external_lex_state = 15}, + [4866] = {.lex_state = 66, .external_lex_state = 16}, + [4867] = {.lex_state = 66, .external_lex_state = 15}, + [4868] = {.lex_state = 66, .external_lex_state = 14}, + [4869] = {.lex_state = 66, .external_lex_state = 14}, + [4870] = {.lex_state = 66, .external_lex_state = 15}, + [4871] = {.lex_state = 66, .external_lex_state = 16}, [4872] = {.lex_state = 66, .external_lex_state = 15}, - [4873] = {.lex_state = 66, .external_lex_state = 14}, + [4873] = {.lex_state = 66, .external_lex_state = 16}, [4874] = {.lex_state = 66, .external_lex_state = 11}, - [4875] = {.lex_state = 66, .external_lex_state = 14}, - [4876] = {.lex_state = 66, .external_lex_state = 14}, - [4877] = {.lex_state = 66, .external_lex_state = 16}, + [4875] = {.lex_state = 66, .external_lex_state = 11}, + [4876] = {.lex_state = 66, .external_lex_state = 12}, + [4877] = {.lex_state = 66, .external_lex_state = 14}, [4878] = {.lex_state = 66, .external_lex_state = 11}, - [4879] = {.lex_state = 15, .external_lex_state = 12}, - [4880] = {.lex_state = 66, .external_lex_state = 14}, - [4881] = {.lex_state = 66, .external_lex_state = 15}, - [4882] = {.lex_state = 66, .external_lex_state = 14}, + [4879] = {.lex_state = 66, .external_lex_state = 14}, + [4880] = {.lex_state = 66, .external_lex_state = 16}, + [4881] = {.lex_state = 66, .external_lex_state = 16}, + [4882] = {.lex_state = 66, .external_lex_state = 16}, [4883] = {.lex_state = 66, .external_lex_state = 16}, [4884] = {.lex_state = 66, .external_lex_state = 16}, - [4885] = {.lex_state = 66, .external_lex_state = 16}, + [4885] = {.lex_state = 66, .external_lex_state = 14}, [4886] = {.lex_state = 66, .external_lex_state = 14}, [4887] = {.lex_state = 66, .external_lex_state = 11}, [4888] = {.lex_state = 66, .external_lex_state = 14}, - [4889] = {.lex_state = 66, .external_lex_state = 14}, - [4890] = {.lex_state = 66, .external_lex_state = 14}, - [4891] = {.lex_state = 66, .external_lex_state = 14}, - [4892] = {.lex_state = 66, .external_lex_state = 14}, - [4893] = {.lex_state = 66, .external_lex_state = 11}, - [4894] = {.lex_state = 66, .external_lex_state = 14}, - [4895] = {.lex_state = 66, .external_lex_state = 14}, - [4896] = {.lex_state = 66, .external_lex_state = 12}, - [4897] = {.lex_state = 66, .external_lex_state = 15}, - [4898] = {.lex_state = 66, .external_lex_state = 11}, - [4899] = {.lex_state = 66, .external_lex_state = 12}, - [4900] = {.lex_state = 66, .external_lex_state = 11}, - [4901] = {.lex_state = 66, .external_lex_state = 16}, + [4889] = {.lex_state = 66, .external_lex_state = 11}, + [4890] = {.lex_state = 66, .external_lex_state = 16}, + [4891] = {.lex_state = 66, .external_lex_state = 16}, + [4892] = {.lex_state = 66, .external_lex_state = 11}, + [4893] = {.lex_state = 66, .external_lex_state = 15}, + [4894] = {.lex_state = 66, .external_lex_state = 20}, + [4895] = {.lex_state = 66, .external_lex_state = 16}, + [4896] = {.lex_state = 66, .external_lex_state = 16}, + [4897] = {.lex_state = 66, .external_lex_state = 16}, + [4898] = {.lex_state = 66, .external_lex_state = 14}, + [4899] = {.lex_state = 66, .external_lex_state = 11}, + [4900] = {.lex_state = 66, .external_lex_state = 16}, + [4901] = {.lex_state = 66, .external_lex_state = 11}, [4902] = {.lex_state = 66, .external_lex_state = 15}, [4903] = {.lex_state = 66, .external_lex_state = 15}, - [4904] = {.lex_state = 66, .external_lex_state = 11}, - [4905] = {.lex_state = 66, .external_lex_state = 14}, - [4906] = {.lex_state = 66, .external_lex_state = 14}, - [4907] = {.lex_state = 66, .external_lex_state = 14}, - [4908] = {.lex_state = 66, .external_lex_state = 16}, - [4909] = {.lex_state = 66, .external_lex_state = 16}, + [4904] = {.lex_state = 66, .external_lex_state = 12}, + [4905] = {.lex_state = 66, .external_lex_state = 11}, + [4906] = {.lex_state = 66, .external_lex_state = 11}, + [4907] = {.lex_state = 66, .external_lex_state = 11}, + [4908] = {.lex_state = 66, .external_lex_state = 14}, + [4909] = {.lex_state = 66, .external_lex_state = 11}, [4910] = {.lex_state = 66, .external_lex_state = 11}, [4911] = {.lex_state = 66, .external_lex_state = 14}, - [4912] = {.lex_state = 66, .external_lex_state = 14}, - [4913] = {.lex_state = 66, .external_lex_state = 12}, - [4914] = {.lex_state = 66, .external_lex_state = 16}, - [4915] = {.lex_state = 66, .external_lex_state = 16}, - [4916] = {.lex_state = 66, .external_lex_state = 11}, - [4917] = {.lex_state = 66, .external_lex_state = 11}, - [4918] = {.lex_state = 66, .external_lex_state = 14}, - [4919] = {.lex_state = 66, .external_lex_state = 11}, + [4912] = {.lex_state = 66, .external_lex_state = 11}, + [4913] = {.lex_state = 66, .external_lex_state = 11}, + [4914] = {.lex_state = 66, .external_lex_state = 11}, + [4915] = {.lex_state = 66, .external_lex_state = 14}, + [4916] = {.lex_state = 66, .external_lex_state = 15}, + [4917] = {.lex_state = 66, .external_lex_state = 15}, + [4918] = {.lex_state = 66, .external_lex_state = 15}, + [4919] = {.lex_state = 66, .external_lex_state = 12}, [4920] = {.lex_state = 66, .external_lex_state = 11}, [4921] = {.lex_state = 66, .external_lex_state = 11}, - [4922] = {.lex_state = 66, .external_lex_state = 11}, - [4923] = {.lex_state = 66, .external_lex_state = 14}, - [4924] = {.lex_state = 66, .external_lex_state = 15}, - [4925] = {.lex_state = 66, .external_lex_state = 12}, - [4926] = {.lex_state = 66, .external_lex_state = 11}, - [4927] = {.lex_state = 66, .external_lex_state = 15}, - [4928] = {.lex_state = 66, .external_lex_state = 14}, + [4922] = {.lex_state = 66, .external_lex_state = 15}, + [4923] = {.lex_state = 66, .external_lex_state = 11}, + [4924] = {.lex_state = 66, .external_lex_state = 14}, + [4925] = {.lex_state = 66, .external_lex_state = 14}, + [4926] = {.lex_state = 66, .external_lex_state = 14}, + [4927] = {.lex_state = 66, .external_lex_state = 16}, + [4928] = {.lex_state = 66, .external_lex_state = 11}, [4929] = {.lex_state = 66, .external_lex_state = 14}, [4930] = {.lex_state = 66, .external_lex_state = 14}, - [4931] = {.lex_state = 66, .external_lex_state = 14}, + [4931] = {.lex_state = 15, .external_lex_state = 12}, [4932] = {.lex_state = 66, .external_lex_state = 16}, [4933] = {.lex_state = 66, .external_lex_state = 16}, - [4934] = {.lex_state = 66, .external_lex_state = 14}, - [4935] = {.lex_state = 66, .external_lex_state = 16}, - [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 = 16}, - [4941] = {.lex_state = 16, .external_lex_state = 19}, - [4942] = {.lex_state = 16, .external_lex_state = 19}, + [4934] = {.lex_state = 66, .external_lex_state = 12}, + [4935] = {.lex_state = 66, .external_lex_state = 11}, + [4936] = {.lex_state = 16, .external_lex_state = 19}, + [4937] = {.lex_state = 66, .external_lex_state = 11}, + [4938] = {.lex_state = 66, .external_lex_state = 11}, + [4939] = {.lex_state = 66, .external_lex_state = 11}, + [4940] = {.lex_state = 66, .external_lex_state = 11}, + [4941] = {.lex_state = 66, .external_lex_state = 11}, + [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 = 15}, - [4946] = {.lex_state = 66, .external_lex_state = 14}, + [4945] = {.lex_state = 66, .external_lex_state = 11}, + [4946] = {.lex_state = 3, .external_lex_state = 15}, [4947] = {.lex_state = 66, .external_lex_state = 11}, - [4948] = {.lex_state = 66, .external_lex_state = 14}, - [4949] = {.lex_state = 66, .external_lex_state = 15}, + [4948] = {.lex_state = 66, .external_lex_state = 15}, + [4949] = {.lex_state = 66, .external_lex_state = 12}, [4950] = {.lex_state = 66, .external_lex_state = 12}, [4951] = {.lex_state = 66, .external_lex_state = 11}, - [4952] = {.lex_state = 66, .external_lex_state = 16}, - [4953] = {.lex_state = 66, .external_lex_state = 15}, - [4954] = {.lex_state = 66, .external_lex_state = 14}, - [4955] = {.lex_state = 66, .external_lex_state = 12}, - [4956] = {.lex_state = 66, .external_lex_state = 14}, - [4957] = {.lex_state = 66, .external_lex_state = 14}, - [4958] = {.lex_state = 66, .external_lex_state = 16}, - [4959] = {.lex_state = 66, .external_lex_state = 11}, - [4960] = {.lex_state = 66, .external_lex_state = 16}, + [4952] = {.lex_state = 66, .external_lex_state = 11}, + [4953] = {.lex_state = 66, .external_lex_state = 14}, + [4954] = {.lex_state = 66, .external_lex_state = 15}, + [4955] = {.lex_state = 66, .external_lex_state = 11}, + [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 = 14}, + [4960] = {.lex_state = 66, .external_lex_state = 11}, [4961] = {.lex_state = 66, .external_lex_state = 11}, - [4962] = {.lex_state = 66, .external_lex_state = 14}, - [4963] = {.lex_state = 66, .external_lex_state = 14}, - [4964] = {.lex_state = 12, .external_lex_state = 12}, - [4965] = {.lex_state = 66, .external_lex_state = 16}, - [4966] = {.lex_state = 66, .external_lex_state = 16}, - [4967] = {.lex_state = 66, .external_lex_state = 16}, + [4962] = {.lex_state = 66, .external_lex_state = 16}, + [4963] = {.lex_state = 66, .external_lex_state = 11}, + [4964] = {.lex_state = 66, .external_lex_state = 11}, + [4965] = {.lex_state = 66, .external_lex_state = 14}, + [4966] = {.lex_state = 66, .external_lex_state = 11}, + [4967] = {.lex_state = 66, .external_lex_state = 14}, [4968] = {.lex_state = 66, .external_lex_state = 11}, - [4969] = {.lex_state = 66, .external_lex_state = 11}, - [4970] = {.lex_state = 66, .external_lex_state = 14}, + [4969] = {.lex_state = 66, .external_lex_state = 16}, + [4970] = {.lex_state = 66, .external_lex_state = 16}, [4971] = {.lex_state = 66, .external_lex_state = 11}, - [4972] = {.lex_state = 66, .external_lex_state = 11}, + [4972] = {.lex_state = 66, .external_lex_state = 16}, [4973] = {.lex_state = 66, .external_lex_state = 11}, [4974] = {.lex_state = 66, .external_lex_state = 11}, - [4975] = {.lex_state = 66, .external_lex_state = 14}, - [4976] = {.lex_state = 66, .external_lex_state = 12}, - [4977] = {.lex_state = 66, .external_lex_state = 11}, - [4978] = {.lex_state = 66, .external_lex_state = 14}, - [4979] = {.lex_state = 66, .external_lex_state = 14}, - [4980] = {.lex_state = 66, .external_lex_state = 16}, - [4981] = {.lex_state = 66, .external_lex_state = 16}, + [4975] = {.lex_state = 66, .external_lex_state = 11}, + [4976] = {.lex_state = 66, .external_lex_state = 11}, + [4977] = {.lex_state = 15, .external_lex_state = 12}, + [4978] = {.lex_state = 66, .external_lex_state = 15}, + [4979] = {.lex_state = 66, .external_lex_state = 11}, + [4980] = {.lex_state = 66, .external_lex_state = 11}, + [4981] = {.lex_state = 66, .external_lex_state = 14}, [4982] = {.lex_state = 66, .external_lex_state = 14}, - [4983] = {.lex_state = 66, .external_lex_state = 14}, - [4984] = {.lex_state = 66, .external_lex_state = 16}, - [4985] = {.lex_state = 66, .external_lex_state = 16}, - [4986] = {.lex_state = 66, .external_lex_state = 14}, + [4983] = {.lex_state = 66, .external_lex_state = 11}, + [4984] = {.lex_state = 66, .external_lex_state = 15}, + [4985] = {.lex_state = 66, .external_lex_state = 20}, + [4986] = {.lex_state = 66, .external_lex_state = 12}, [4987] = {.lex_state = 66, .external_lex_state = 11}, - [4988] = {.lex_state = 66, .external_lex_state = 14}, - [4989] = {.lex_state = 66, .external_lex_state = 16}, - [4990] = {.lex_state = 66, .external_lex_state = 14}, - [4991] = {.lex_state = 66, .external_lex_state = 11}, + [4988] = {.lex_state = 66, .external_lex_state = 11}, + [4989] = {.lex_state = 66, .external_lex_state = 15}, + [4990] = {.lex_state = 66, .external_lex_state = 11}, + [4991] = {.lex_state = 66, .external_lex_state = 14}, [4992] = {.lex_state = 66, .external_lex_state = 14}, [4993] = {.lex_state = 66, .external_lex_state = 14}, - [4994] = {.lex_state = 66, .external_lex_state = 14}, - [4995] = {.lex_state = 66, .external_lex_state = 14}, - [4996] = {.lex_state = 66, .external_lex_state = 11}, - [4997] = {.lex_state = 66, .external_lex_state = 16}, - [4998] = {.lex_state = 66, .external_lex_state = 16}, + [4994] = {.lex_state = 66, .external_lex_state = 15}, + [4995] = {.lex_state = 66, .external_lex_state = 16}, + [4996] = {.lex_state = 66, .external_lex_state = 14}, + [4997] = {.lex_state = 66, .external_lex_state = 14}, + [4998] = {.lex_state = 66, .external_lex_state = 14}, [4999] = {.lex_state = 66, .external_lex_state = 14}, - [5000] = {.lex_state = 66, .external_lex_state = 14}, - [5001] = {.lex_state = 66, .external_lex_state = 14}, + [5000] = {.lex_state = 66, .external_lex_state = 16}, + [5001] = {.lex_state = 66, .external_lex_state = 16}, [5002] = {.lex_state = 66, .external_lex_state = 16}, - [5003] = {.lex_state = 66, .external_lex_state = 16}, - [5004] = {.lex_state = 66, .external_lex_state = 16}, - [5005] = {.lex_state = 66, .external_lex_state = 12}, - [5006] = {.lex_state = 66, .external_lex_state = 11}, - [5007] = {.lex_state = 66, .external_lex_state = 12}, - [5008] = {.lex_state = 66, .external_lex_state = 11}, - [5009] = {.lex_state = 66, .external_lex_state = 11}, - [5010] = {.lex_state = 66, .external_lex_state = 14}, - [5011] = {.lex_state = 66, .external_lex_state = 14}, - [5012] = {.lex_state = 66, .external_lex_state = 16}, - [5013] = {.lex_state = 66, .external_lex_state = 15}, - [5014] = {.lex_state = 66, .external_lex_state = 14}, - [5015] = {.lex_state = 66, .external_lex_state = 14}, + [5003] = {.lex_state = 66, .external_lex_state = 12}, + [5004] = {.lex_state = 66, .external_lex_state = 14}, + [5005] = {.lex_state = 66, .external_lex_state = 14}, + [5006] = {.lex_state = 66, .external_lex_state = 12}, + [5007] = {.lex_state = 66, .external_lex_state = 11}, + [5008] = {.lex_state = 66, .external_lex_state = 14}, + [5009] = {.lex_state = 66, .external_lex_state = 14}, + [5010] = {.lex_state = 66, .external_lex_state = 15}, + [5011] = {.lex_state = 66, .external_lex_state = 12}, + [5012] = {.lex_state = 66, .external_lex_state = 15}, + [5013] = {.lex_state = 66, .external_lex_state = 11}, + [5014] = {.lex_state = 66, .external_lex_state = 15}, + [5015] = {.lex_state = 66, .external_lex_state = 12}, [5016] = {.lex_state = 66, .external_lex_state = 16}, [5017] = {.lex_state = 66, .external_lex_state = 16}, - [5018] = {.lex_state = 66, .external_lex_state = 11}, - [5019] = {.lex_state = 66, .external_lex_state = 11}, + [5018] = {.lex_state = 66, .external_lex_state = 14}, + [5019] = {.lex_state = 66, .external_lex_state = 14}, [5020] = {.lex_state = 66, .external_lex_state = 15}, - [5021] = {.lex_state = 66, .external_lex_state = 14}, - [5022] = {.lex_state = 66, .external_lex_state = 16}, - [5023] = {.lex_state = 66, .external_lex_state = 16}, - [5024] = {.lex_state = 66, .external_lex_state = 16}, - [5025] = {.lex_state = 66, .external_lex_state = 16}, - [5026] = {.lex_state = 66, .external_lex_state = 14}, - [5027] = {.lex_state = 66, .external_lex_state = 15}, - [5028] = {.lex_state = 66, .external_lex_state = 12}, - [5029] = {.lex_state = 66, .external_lex_state = 11}, - [5030] = {.lex_state = 66, .external_lex_state = 16}, - [5031] = {.lex_state = 66, .external_lex_state = 14}, - [5032] = {.lex_state = 66, .external_lex_state = 14}, - [5033] = {.lex_state = 66, .external_lex_state = 15}, - [5034] = {.lex_state = 66, .external_lex_state = 14}, - [5035] = {.lex_state = 66, .external_lex_state = 15}, - [5036] = {.lex_state = 66, .external_lex_state = 11}, - [5037] = {.lex_state = 66, .external_lex_state = 12}, - [5038] = {.lex_state = 66, .external_lex_state = 14}, - [5039] = {.lex_state = 66, .external_lex_state = 11}, - [5040] = {.lex_state = 66, .external_lex_state = 2}, - [5041] = {.lex_state = 66, .external_lex_state = 11}, + [5021] = {.lex_state = 66, .external_lex_state = 16}, + [5022] = {.lex_state = 66, .external_lex_state = 15}, + [5023] = {.lex_state = 66, .external_lex_state = 14}, + [5024] = {.lex_state = 66, .external_lex_state = 14}, + [5025] = {.lex_state = 66, .external_lex_state = 20}, + [5026] = {.lex_state = 66, .external_lex_state = 16}, + [5027] = {.lex_state = 66, .external_lex_state = 16}, + [5028] = {.lex_state = 66, .external_lex_state = 16}, + [5029] = {.lex_state = 66, .external_lex_state = 15}, + [5030] = {.lex_state = 66, .external_lex_state = 11}, + [5031] = {.lex_state = 66, .external_lex_state = 16}, + [5032] = {.lex_state = 66, .external_lex_state = 16}, + [5033] = {.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 = 14}, + [5037] = {.lex_state = 66, .external_lex_state = 14}, + [5038] = {.lex_state = 66, .external_lex_state = 12}, + [5039] = {.lex_state = 66, .external_lex_state = 16}, + [5040] = {.lex_state = 66, .external_lex_state = 11}, + [5041] = {.lex_state = 66, .external_lex_state = 14}, [5042] = {.lex_state = 66, .external_lex_state = 14}, - [5043] = {.lex_state = 66, .external_lex_state = 20}, - [5044] = {.lex_state = 66, .external_lex_state = 12}, + [5043] = {.lex_state = 66, .external_lex_state = 14}, + [5044] = {.lex_state = 66, .external_lex_state = 11}, [5045] = {.lex_state = 66, .external_lex_state = 16}, - [5046] = {.lex_state = 66, .external_lex_state = 11}, - [5047] = {.lex_state = 66, .external_lex_state = 14}, - [5048] = {.lex_state = 66, .external_lex_state = 20}, - [5049] = {.lex_state = 66, .external_lex_state = 12}, - [5050] = {.lex_state = 12, .external_lex_state = 12}, - [5051] = {.lex_state = 66, .external_lex_state = 11}, - [5052] = {.lex_state = 66, .external_lex_state = 2}, - [5053] = {.lex_state = 66, .external_lex_state = 11}, - [5054] = {.lex_state = 66, .external_lex_state = 11}, - [5055] = {.lex_state = 66, .external_lex_state = 11}, - [5056] = {.lex_state = 66, .external_lex_state = 12}, - [5057] = {.lex_state = 66, .external_lex_state = 11}, - [5058] = {.lex_state = 66, .external_lex_state = 11}, - [5059] = {.lex_state = 66, .external_lex_state = 12}, - [5060] = {.lex_state = 66, .external_lex_state = 20}, - [5061] = {.lex_state = 66, .external_lex_state = 12}, + [5046] = {.lex_state = 66, .external_lex_state = 16}, + [5047] = {.lex_state = 66, .external_lex_state = 16}, + [5048] = {.lex_state = 66, .external_lex_state = 11}, + [5049] = {.lex_state = 66, .external_lex_state = 14}, + [5050] = {.lex_state = 66, .external_lex_state = 11}, + [5051] = {.lex_state = 66, .external_lex_state = 16}, + [5052] = {.lex_state = 66, .external_lex_state = 14}, + [5053] = {.lex_state = 66, .external_lex_state = 14}, + [5054] = {.lex_state = 66, .external_lex_state = 14}, + [5055] = {.lex_state = 66, .external_lex_state = 16}, + [5056] = {.lex_state = 66, .external_lex_state = 11}, + [5057] = {.lex_state = 66, .external_lex_state = 14}, + [5058] = {.lex_state = 66, .external_lex_state = 14}, + [5059] = {.lex_state = 66, .external_lex_state = 14}, + [5060] = {.lex_state = 66, .external_lex_state = 16}, + [5061] = {.lex_state = 66, .external_lex_state = 16}, [5062] = {.lex_state = 66, .external_lex_state = 12}, - [5063] = {.lex_state = 66, .external_lex_state = 11}, - [5064] = {.lex_state = 15, .external_lex_state = 12}, + [5063] = {.lex_state = 66, .external_lex_state = 16}, + [5064] = {.lex_state = 12, .external_lex_state = 12}, [5065] = {.lex_state = 66, .external_lex_state = 14}, - [5066] = {.lex_state = 66, .external_lex_state = 16}, - [5067] = {.lex_state = 66, .external_lex_state = 11}, - [5068] = {.lex_state = 66, .external_lex_state = 14}, - [5069] = {.lex_state = 66, .external_lex_state = 12}, + [5066] = {.lex_state = 66, .external_lex_state = 14}, + [5067] = {.lex_state = 66, .external_lex_state = 14}, + [5068] = {.lex_state = 66, .external_lex_state = 16}, + [5069] = {.lex_state = 66, .external_lex_state = 16}, [5070] = {.lex_state = 66, .external_lex_state = 11}, - [5071] = {.lex_state = 15, .external_lex_state = 12}, - [5072] = {.lex_state = 66, .external_lex_state = 16}, - [5073] = {.lex_state = 15, .external_lex_state = 12}, - [5074] = {.lex_state = 66, .external_lex_state = 12}, - [5075] = {.lex_state = 66, .external_lex_state = 11}, - [5076] = {.lex_state = 66, .external_lex_state = 16}, - [5077] = {.lex_state = 15, .external_lex_state = 12}, - [5078] = {.lex_state = 66, .external_lex_state = 15}, - [5079] = {.lex_state = 66, .external_lex_state = 12}, - [5080] = {.lex_state = 66, .external_lex_state = 14}, - [5081] = {.lex_state = 66, .external_lex_state = 11}, - [5082] = {.lex_state = 66, .external_lex_state = 14}, - [5083] = {.lex_state = 66, .external_lex_state = 12}, - [5084] = {.lex_state = 66, .external_lex_state = 11}, + [5071] = {.lex_state = 66, .external_lex_state = 14}, + [5072] = {.lex_state = 66, .external_lex_state = 14}, + [5073] = {.lex_state = 66, .external_lex_state = 16}, + [5074] = {.lex_state = 66, .external_lex_state = 16}, + [5075] = {.lex_state = 66, .external_lex_state = 12}, + [5076] = {.lex_state = 66, .external_lex_state = 12}, + [5077] = {.lex_state = 66, .external_lex_state = 16}, + [5078] = {.lex_state = 66, .external_lex_state = 16}, + [5079] = {.lex_state = 66, .external_lex_state = 16}, + [5080] = {.lex_state = 66, .external_lex_state = 16}, + [5081] = {.lex_state = 66, .external_lex_state = 20}, + [5082] = {.lex_state = 66, .external_lex_state = 15}, + [5083] = {.lex_state = 3, .external_lex_state = 15}, + [5084] = {.lex_state = 15, .external_lex_state = 12}, [5085] = {.lex_state = 66, .external_lex_state = 11}, - [5086] = {.lex_state = 66, .external_lex_state = 12}, - [5087] = {.lex_state = 66, .external_lex_state = 11}, - [5088] = {.lex_state = 66, .external_lex_state = 20}, - [5089] = {.lex_state = 66, .external_lex_state = 12}, - [5090] = {.lex_state = 66, .external_lex_state = 11}, - [5091] = {.lex_state = 66, .external_lex_state = 16}, - [5092] = {.lex_state = 66, .external_lex_state = 2}, + [5086] = {.lex_state = 66, .external_lex_state = 11}, + [5087] = {.lex_state = 66, .external_lex_state = 16}, + [5088] = {.lex_state = 66, .external_lex_state = 11}, + [5089] = {.lex_state = 66, .external_lex_state = 11}, + [5090] = {.lex_state = 66, .external_lex_state = 16}, + [5091] = {.lex_state = 66, .external_lex_state = 20}, + [5092] = {.lex_state = 66, .external_lex_state = 12}, [5093] = {.lex_state = 66, .external_lex_state = 11}, - [5094] = {.lex_state = 66, .external_lex_state = 11}, - [5095] = {.lex_state = 66, .external_lex_state = 12}, - [5096] = {.lex_state = 66, .external_lex_state = 15}, - [5097] = {.lex_state = 66, .external_lex_state = 2}, + [5094] = {.lex_state = 66, .external_lex_state = 16}, + [5095] = {.lex_state = 16, .external_lex_state = 19}, + [5096] = {.lex_state = 66, .external_lex_state = 11}, + [5097] = {.lex_state = 66, .external_lex_state = 11}, [5098] = {.lex_state = 66, .external_lex_state = 11}, - [5099] = {.lex_state = 66, .external_lex_state = 12}, - [5100] = {.lex_state = 66, .external_lex_state = 12}, - [5101] = {.lex_state = 66, .external_lex_state = 11}, - [5102] = {.lex_state = 66, .external_lex_state = 12}, - [5103] = {.lex_state = 66, .external_lex_state = 12}, - [5104] = {.lex_state = 66, .external_lex_state = 15}, - [5105] = {.lex_state = 66, .external_lex_state = 11}, - [5106] = {.lex_state = 66, .external_lex_state = 12}, - [5107] = {.lex_state = 66, .external_lex_state = 12}, - [5108] = {.lex_state = 66, .external_lex_state = 16}, - [5109] = {.lex_state = 66, .external_lex_state = 12}, - [5110] = {.lex_state = 66, .external_lex_state = 11}, - [5111] = {.lex_state = 66, .external_lex_state = 16}, - [5112] = {.lex_state = 66, .external_lex_state = 16}, - [5113] = {.lex_state = 66, .external_lex_state = 11}, - [5114] = {.lex_state = 66, .external_lex_state = 12}, + [5099] = {.lex_state = 66, .external_lex_state = 11}, + [5100] = {.lex_state = 66, .external_lex_state = 11}, + [5101] = {.lex_state = 66, .external_lex_state = 2}, + [5102] = {.lex_state = 66, .external_lex_state = 14}, + [5103] = {.lex_state = 66, .external_lex_state = 11}, + [5104] = {.lex_state = 66, .external_lex_state = 12}, + [5105] = {.lex_state = 12, .external_lex_state = 12}, + [5106] = {.lex_state = 66, .external_lex_state = 14}, + [5107] = {.lex_state = 66, .external_lex_state = 2}, + [5108] = {.lex_state = 66, .external_lex_state = 11}, + [5109] = {.lex_state = 66, .external_lex_state = 15}, + [5110] = {.lex_state = 66, .external_lex_state = 12}, + [5111] = {.lex_state = 66, .external_lex_state = 12}, + [5112] = {.lex_state = 66, .external_lex_state = 12}, + [5113] = {.lex_state = 66, .external_lex_state = 12}, + [5114] = {.lex_state = 66, .external_lex_state = 14}, [5115] = {.lex_state = 66, .external_lex_state = 12}, - [5116] = {.lex_state = 66, .external_lex_state = 14}, - [5117] = {.lex_state = 66, .external_lex_state = 11}, - [5118] = {.lex_state = 66, .external_lex_state = 12}, - [5119] = {.lex_state = 66, .external_lex_state = 16}, - [5120] = {.lex_state = 66, .external_lex_state = 16}, - [5121] = {.lex_state = 66, .external_lex_state = 16}, - [5122] = {.lex_state = 66, .external_lex_state = 16}, - [5123] = {.lex_state = 66, .external_lex_state = 11}, - [5124] = {.lex_state = 66, .external_lex_state = 11}, - [5125] = {.lex_state = 66, .external_lex_state = 11}, - [5126] = {.lex_state = 66, .external_lex_state = 11}, - [5127] = {.lex_state = 66, .external_lex_state = 16}, - [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 = 11}, - [5136] = {.lex_state = 66, .external_lex_state = 14}, - [5137] = {.lex_state = 66, .external_lex_state = 15}, - [5138] = {.lex_state = 66, .external_lex_state = 14}, - [5139] = {.lex_state = 66, .external_lex_state = 11}, - [5140] = {.lex_state = 66, .external_lex_state = 16}, - [5141] = {.lex_state = 66, .external_lex_state = 15}, - [5142] = {.lex_state = 66, .external_lex_state = 15}, - [5143] = {.lex_state = 66, .external_lex_state = 14}, - [5144] = {.lex_state = 66, .external_lex_state = 20}, - [5145] = {.lex_state = 66, .external_lex_state = 16}, - [5146] = {.lex_state = 66, .external_lex_state = 11}, + [5116] = {.lex_state = 66, .external_lex_state = 12}, + [5117] = {.lex_state = 66, .external_lex_state = 14}, + [5118] = {.lex_state = 15, .external_lex_state = 12}, + [5119] = {.lex_state = 66, .external_lex_state = 11}, + [5120] = {.lex_state = 66, .external_lex_state = 14}, + [5121] = {.lex_state = 66, .external_lex_state = 14}, + [5122] = {.lex_state = 66, .external_lex_state = 11}, + [5123] = {.lex_state = 66, .external_lex_state = 12}, + [5124] = {.lex_state = 66, .external_lex_state = 20}, + [5125] = {.lex_state = 66, .external_lex_state = 16}, + [5126] = {.lex_state = 15, .external_lex_state = 12}, + [5127] = {.lex_state = 15, .external_lex_state = 12}, + [5128] = {.lex_state = 66, .external_lex_state = 12}, + [5129] = {.lex_state = 66, .external_lex_state = 14}, + [5130] = {.lex_state = 66, .external_lex_state = 14}, + [5131] = {.lex_state = 15, .external_lex_state = 12}, + [5132] = {.lex_state = 66, .external_lex_state = 16}, + [5133] = {.lex_state = 66, .external_lex_state = 12}, + [5134] = {.lex_state = 66, .external_lex_state = 15}, + [5135] = {.lex_state = 66, .external_lex_state = 12}, + [5136] = {.lex_state = 66, .external_lex_state = 12}, + [5137] = {.lex_state = 66, .external_lex_state = 14}, + [5138] = {.lex_state = 66, .external_lex_state = 15}, + [5139] = {.lex_state = 66, .external_lex_state = 12}, + [5140] = {.lex_state = 66, .external_lex_state = 12}, + [5141] = {.lex_state = 66, .external_lex_state = 11}, + [5142] = {.lex_state = 66, .external_lex_state = 11}, + [5143] = {.lex_state = 66, .external_lex_state = 16}, + [5144] = {.lex_state = 66, .external_lex_state = 11}, + [5145] = {.lex_state = 66, .external_lex_state = 11}, + [5146] = {.lex_state = 66, .external_lex_state = 12}, [5147] = {.lex_state = 66, .external_lex_state = 11}, - [5148] = {.lex_state = 66, .external_lex_state = 11}, - [5149] = {.lex_state = 16, .external_lex_state = 19}, - [5150] = {.lex_state = 66, .external_lex_state = 11}, - [5151] = {.lex_state = 66, .external_lex_state = 12}, - [5152] = {.lex_state = 66, .external_lex_state = 11}, - [5153] = {.lex_state = 66, .external_lex_state = 11}, - [5154] = {.lex_state = 66, .external_lex_state = 11}, - [5155] = {.lex_state = 66, .external_lex_state = 14}, - [5156] = {.lex_state = 66, .external_lex_state = 11}, - [5157] = {.lex_state = 66, .external_lex_state = 11}, - [5158] = {.lex_state = 66, .external_lex_state = 14}, - [5159] = {.lex_state = 66, .external_lex_state = 14}, - [5160] = {.lex_state = 66, .external_lex_state = 14}, - [5161] = {.lex_state = 66, .external_lex_state = 11}, - [5162] = {.lex_state = 66, .external_lex_state = 16}, - [5163] = {.lex_state = 66, .external_lex_state = 11}, - [5164] = {.lex_state = 66, .external_lex_state = 15}, - [5165] = {.lex_state = 66, .external_lex_state = 14}, - [5166] = {.lex_state = 66, .external_lex_state = 11}, - [5167] = {.lex_state = 15, .external_lex_state = 12}, - [5168] = {.lex_state = 66, .external_lex_state = 11}, + [5148] = {.lex_state = 66, .external_lex_state = 2}, + [5149] = {.lex_state = 66, .external_lex_state = 16}, + [5150] = {.lex_state = 66, .external_lex_state = 12}, + [5151] = {.lex_state = 66, .external_lex_state = 11}, + [5152] = {.lex_state = 66, .external_lex_state = 12}, + [5153] = {.lex_state = 66, .external_lex_state = 16}, + [5154] = {.lex_state = 66, .external_lex_state = 14}, + [5155] = {.lex_state = 66, .external_lex_state = 12}, + [5156] = {.lex_state = 66, .external_lex_state = 12}, + [5157] = {.lex_state = 66, .external_lex_state = 16}, + [5158] = {.lex_state = 66, .external_lex_state = 12}, + [5159] = {.lex_state = 66, .external_lex_state = 12}, + [5160] = {.lex_state = 66, .external_lex_state = 12}, + [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 = 11}, + [5165] = {.lex_state = 66, .external_lex_state = 16}, + [5166] = {.lex_state = 66, .external_lex_state = 16}, + [5167] = {.lex_state = 66, .external_lex_state = 11}, + [5168] = {.lex_state = 66, .external_lex_state = 12}, [5169] = {.lex_state = 66, .external_lex_state = 14}, - [5170] = {.lex_state = 66, .external_lex_state = 15}, - [5171] = {.lex_state = 66, .external_lex_state = 12}, - [5172] = {.lex_state = 66, .external_lex_state = 16}, - [5173] = {.lex_state = 66, .external_lex_state = 16}, - [5174] = {.lex_state = 12, .external_lex_state = 12}, - [5175] = {.lex_state = 3, .external_lex_state = 15}, - [5176] = {.lex_state = 66, .external_lex_state = 11}, - [5177] = {.lex_state = 66, .external_lex_state = 11}, - [5178] = {.lex_state = 3, .external_lex_state = 15}, - [5179] = {.lex_state = 3, .external_lex_state = 15}, - [5180] = {.lex_state = 66, .external_lex_state = 12}, - [5181] = {.lex_state = 66, .external_lex_state = 15}, + [5170] = {.lex_state = 66, .external_lex_state = 11}, + [5171] = {.lex_state = 66, .external_lex_state = 15}, + [5172] = {.lex_state = 66, .external_lex_state = 11}, + [5173] = {.lex_state = 66, .external_lex_state = 11}, + [5174] = {.lex_state = 66, .external_lex_state = 16}, + [5175] = {.lex_state = 66, .external_lex_state = 16}, + [5176] = {.lex_state = 66, .external_lex_state = 16}, + [5177] = {.lex_state = 66, .external_lex_state = 16}, + [5178] = {.lex_state = 12, .external_lex_state = 12}, + [5179] = {.lex_state = 66, .external_lex_state = 14}, + [5180] = {.lex_state = 66, .external_lex_state = 14}, + [5181] = {.lex_state = 66, .external_lex_state = 11}, [5182] = {.lex_state = 66, .external_lex_state = 11}, [5183] = {.lex_state = 66, .external_lex_state = 11}, - [5184] = {.lex_state = 66, .external_lex_state = 11}, - [5185] = {.lex_state = 66, .external_lex_state = 11}, - [5186] = {.lex_state = 66, .external_lex_state = 14}, - [5187] = {.lex_state = 66, .external_lex_state = 11}, - [5188] = {.lex_state = 66, .external_lex_state = 16}, + [5184] = {.lex_state = 16, .external_lex_state = 19}, + [5185] = {.lex_state = 66, .external_lex_state = 16}, + [5186] = {.lex_state = 66, .external_lex_state = 11}, + [5187] = {.lex_state = 66, .external_lex_state = 14}, + [5188] = {.lex_state = 66, .external_lex_state = 11}, [5189] = {.lex_state = 66, .external_lex_state = 11}, - [5190] = {.lex_state = 66, .external_lex_state = 11}, + [5190] = {.lex_state = 66, .external_lex_state = 14}, [5191] = {.lex_state = 66, .external_lex_state = 11}, - [5192] = {.lex_state = 66, .external_lex_state = 11}, + [5192] = {.lex_state = 15, .external_lex_state = 12}, [5193] = {.lex_state = 66, .external_lex_state = 11}, - [5194] = {.lex_state = 66, .external_lex_state = 11}, - [5195] = {.lex_state = 66, .external_lex_state = 11}, - [5196] = {.lex_state = 66, .external_lex_state = 20}, - [5197] = {.lex_state = 66, .external_lex_state = 11}, - [5198] = {.lex_state = 66, .external_lex_state = 12}, - [5199] = {.lex_state = 66, .external_lex_state = 11}, - [5200] = {.lex_state = 66, .external_lex_state = 15}, + [5194] = {.lex_state = 66, .external_lex_state = 16}, + [5195] = {.lex_state = 3, .external_lex_state = 15}, + [5196] = {.lex_state = 66, .external_lex_state = 14}, + [5197] = {.lex_state = 66, .external_lex_state = 14}, + [5198] = {.lex_state = 66, .external_lex_state = 16}, + [5199] = {.lex_state = 66, .external_lex_state = 16}, + [5200] = {.lex_state = 3, .external_lex_state = 15}, [5201] = {.lex_state = 66, .external_lex_state = 11}, - [5202] = {.lex_state = 66, .external_lex_state = 11}, - [5203] = {.lex_state = 66, .external_lex_state = 16}, - [5204] = {.lex_state = 66, .external_lex_state = 12}, + [5202] = {.lex_state = 3, .external_lex_state = 15}, + [5203] = {.lex_state = 66, .external_lex_state = 11}, + [5204] = {.lex_state = 66, .external_lex_state = 16}, [5205] = {.lex_state = 66, .external_lex_state = 11}, [5206] = {.lex_state = 66, .external_lex_state = 11}, [5207] = {.lex_state = 66, .external_lex_state = 11}, [5208] = {.lex_state = 66, .external_lex_state = 11}, [5209] = {.lex_state = 66, .external_lex_state = 11}, - [5210] = {.lex_state = 66, .external_lex_state = 11}, + [5210] = {.lex_state = 66, .external_lex_state = 14}, [5211] = {.lex_state = 66, .external_lex_state = 16}, - [5212] = {.lex_state = 15, .external_lex_state = 12}, + [5212] = {.lex_state = 66, .external_lex_state = 16}, [5213] = {.lex_state = 66, .external_lex_state = 11}, - [5214] = {.lex_state = 66, .external_lex_state = 11}, - [5215] = {.lex_state = 16, .external_lex_state = 19}, - [5216] = {.lex_state = 66, .external_lex_state = 15}, - [5217] = {.lex_state = 66, .external_lex_state = 14}, - [5218] = {.lex_state = 66, .external_lex_state = 14}, - [5219] = {.lex_state = 66, .external_lex_state = 14}, + [5214] = {.lex_state = 66, .external_lex_state = 14}, + [5215] = {.lex_state = 66, .external_lex_state = 16}, + [5216] = {.lex_state = 66, .external_lex_state = 11}, + [5217] = {.lex_state = 66, .external_lex_state = 11}, + [5218] = {.lex_state = 66, .external_lex_state = 12}, + [5219] = {.lex_state = 66, .external_lex_state = 11}, [5220] = {.lex_state = 66, .external_lex_state = 14}, - [5221] = {.lex_state = 66, .external_lex_state = 20}, - [5222] = {.lex_state = 66, .external_lex_state = 15}, + [5221] = {.lex_state = 3, .external_lex_state = 15}, + [5222] = {.lex_state = 66, .external_lex_state = 14}, [5223] = {.lex_state = 66, .external_lex_state = 11}, - [5224] = {.lex_state = 66, .external_lex_state = 15}, - [5225] = {.lex_state = 66, .external_lex_state = 16}, - [5226] = {.lex_state = 66, .external_lex_state = 16}, - [5227] = {.lex_state = 66, .external_lex_state = 11}, - [5228] = {.lex_state = 66, .external_lex_state = 16}, + [5224] = {.lex_state = 15, .external_lex_state = 12}, + [5225] = {.lex_state = 66, .external_lex_state = 11}, + [5226] = {.lex_state = 66, .external_lex_state = 11}, + [5227] = {.lex_state = 3, .external_lex_state = 15}, + [5228] = {.lex_state = 66, .external_lex_state = 15}, [5229] = {.lex_state = 66, .external_lex_state = 11}, - [5230] = {.lex_state = 66, .external_lex_state = 12}, - [5231] = {.lex_state = 66, .external_lex_state = 12}, - [5232] = {.lex_state = 66, .external_lex_state = 14}, - [5233] = {.lex_state = 66, .external_lex_state = 14}, - [5234] = {.lex_state = 66, .external_lex_state = 12}, - [5235] = {.lex_state = 66, .external_lex_state = 12}, - [5236] = {.lex_state = 66, .external_lex_state = 12}, - [5237] = {.lex_state = 66, .external_lex_state = 12}, + [5230] = {.lex_state = 66, .external_lex_state = 11}, + [5231] = {.lex_state = 3, .external_lex_state = 15}, + [5232] = {.lex_state = 66, .external_lex_state = 12}, + [5233] = {.lex_state = 66, .external_lex_state = 11}, + [5234] = {.lex_state = 66, .external_lex_state = 11}, + [5235] = {.lex_state = 66, .external_lex_state = 16}, + [5236] = {.lex_state = 66, .external_lex_state = 11}, + [5237] = {.lex_state = 66, .external_lex_state = 16}, [5238] = {.lex_state = 66, .external_lex_state = 11}, - [5239] = {.lex_state = 66, .external_lex_state = 14}, - [5240] = {.lex_state = 66, .external_lex_state = 12}, - [5241] = {.lex_state = 66, .external_lex_state = 12}, - [5242] = {.lex_state = 66, .external_lex_state = 13}, - [5243] = {.lex_state = 66, .external_lex_state = 11}, - [5244] = {.lex_state = 66, .external_lex_state = 12}, + [5239] = {.lex_state = 66, .external_lex_state = 11}, + [5240] = {.lex_state = 66, .external_lex_state = 11}, + [5241] = {.lex_state = 66, .external_lex_state = 14}, + [5242] = {.lex_state = 66, .external_lex_state = 15}, + [5243] = {.lex_state = 16, .external_lex_state = 19}, + [5244] = {.lex_state = 16, .external_lex_state = 19}, [5245] = {.lex_state = 66, .external_lex_state = 14}, - [5246] = {.lex_state = 66, .external_lex_state = 11}, + [5246] = {.lex_state = 66, .external_lex_state = 16}, [5247] = {.lex_state = 66, .external_lex_state = 14}, - [5248] = {.lex_state = 66, .external_lex_state = 12}, + [5248] = {.lex_state = 66, .external_lex_state = 16}, [5249] = {.lex_state = 66, .external_lex_state = 11}, - [5250] = {.lex_state = 66, .external_lex_state = 12}, - [5251] = {.lex_state = 66, .external_lex_state = 12}, + [5250] = {.lex_state = 66, .external_lex_state = 14}, + [5251] = {.lex_state = 66, .external_lex_state = 14}, [5252] = {.lex_state = 66, .external_lex_state = 14}, - [5253] = {.lex_state = 66, .external_lex_state = 12}, - [5254] = {.lex_state = 66, .external_lex_state = 14}, - [5255] = {.lex_state = 66, .external_lex_state = 12}, - [5256] = {.lex_state = 66, .external_lex_state = 14}, - [5257] = {.lex_state = 66, .external_lex_state = 12}, - [5258] = {.lex_state = 66, .external_lex_state = 11}, - [5259] = {.lex_state = 66, .external_lex_state = 12}, - [5260] = {.lex_state = 66, .external_lex_state = 12}, + [5253] = {.lex_state = 66, .external_lex_state = 11}, + [5254] = {.lex_state = 66, .external_lex_state = 15}, + [5255] = {.lex_state = 66, .external_lex_state = 11}, + [5256] = {.lex_state = 66, .external_lex_state = 12}, + [5257] = {.lex_state = 66, .external_lex_state = 14}, + [5258] = {.lex_state = 66, .external_lex_state = 12}, + [5259] = {.lex_state = 66, .external_lex_state = 11}, + [5260] = {.lex_state = 66, .external_lex_state = 16}, [5261] = {.lex_state = 66, .external_lex_state = 11}, - [5262] = {.lex_state = 66, .external_lex_state = 12}, - [5263] = {.lex_state = 66, .external_lex_state = 14}, - [5264] = {.lex_state = 66, .external_lex_state = 14}, + [5262] = {.lex_state = 66, .external_lex_state = 11}, + [5263] = {.lex_state = 66, .external_lex_state = 11}, + [5264] = {.lex_state = 66, .external_lex_state = 11}, [5265] = {.lex_state = 66, .external_lex_state = 11}, - [5266] = {.lex_state = 66, .external_lex_state = 14}, - [5267] = {.lex_state = 66, .external_lex_state = 13}, - [5268] = {.lex_state = 66, .external_lex_state = 11}, - [5269] = {.lex_state = 66, .external_lex_state = 14}, - [5270] = {.lex_state = 66, .external_lex_state = 11}, + [5266] = {.lex_state = 66, .external_lex_state = 11}, + [5267] = {.lex_state = 66, .external_lex_state = 11}, + [5268] = {.lex_state = 66, .external_lex_state = 14}, + [5269] = {.lex_state = 66, .external_lex_state = 12}, + [5270] = {.lex_state = 66, .external_lex_state = 15}, [5271] = {.lex_state = 66, .external_lex_state = 14}, - [5272] = {.lex_state = 66, .external_lex_state = 12}, + [5272] = {.lex_state = 66, .external_lex_state = 11}, [5273] = {.lex_state = 66, .external_lex_state = 11}, - [5274] = {.lex_state = 66, .external_lex_state = 16}, - [5275] = {.lex_state = 66, .external_lex_state = 12}, - [5276] = {.lex_state = 66, .external_lex_state = 16}, - [5277] = {.lex_state = 66, .external_lex_state = 12}, - [5278] = {.lex_state = 66, .external_lex_state = 12}, - [5279] = {.lex_state = 66, .external_lex_state = 11}, + [5274] = {.lex_state = 66, .external_lex_state = 11}, + [5275] = {.lex_state = 66, .external_lex_state = 14}, + [5276] = {.lex_state = 66, .external_lex_state = 11}, + [5277] = {.lex_state = 66, .external_lex_state = 11}, + [5278] = {.lex_state = 66, .external_lex_state = 14}, + [5279] = {.lex_state = 66, .external_lex_state = 13}, [5280] = {.lex_state = 66, .external_lex_state = 12}, - [5281] = {.lex_state = 66, .external_lex_state = 14}, - [5282] = {.lex_state = 66, .external_lex_state = 14}, - [5283] = {.lex_state = 66, .external_lex_state = 14}, - [5284] = {.lex_state = 66, .external_lex_state = 11}, - [5285] = {.lex_state = 66, .external_lex_state = 14}, - [5286] = {.lex_state = 66, .external_lex_state = 12}, + [5281] = {.lex_state = 66, .external_lex_state = 12}, + [5282] = {.lex_state = 66, .external_lex_state = 16}, + [5283] = {.lex_state = 66, .external_lex_state = 11}, + [5284] = {.lex_state = 66, .external_lex_state = 12}, + [5285] = {.lex_state = 66, .external_lex_state = 12}, + [5286] = {.lex_state = 66, .external_lex_state = 14}, [5287] = {.lex_state = 66, .external_lex_state = 12}, - [5288] = {.lex_state = 66, .external_lex_state = 12}, + [5288] = {.lex_state = 66, .external_lex_state = 14}, [5289] = {.lex_state = 66, .external_lex_state = 12}, [5290] = {.lex_state = 66, .external_lex_state = 12}, [5291] = {.lex_state = 66, .external_lex_state = 14}, - [5292] = {.lex_state = 66, .external_lex_state = 12}, + [5292] = {.lex_state = 66, .external_lex_state = 14}, [5293] = {.lex_state = 66, .external_lex_state = 14}, [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 = 11}, - [5299] = {.lex_state = 66, .external_lex_state = 12}, - [5300] = {.lex_state = 66, .external_lex_state = 12}, - [5301] = {.lex_state = 66, .external_lex_state = 11}, - [5302] = {.lex_state = 66, .external_lex_state = 14}, - [5303] = {.lex_state = 66, .external_lex_state = 2}, - [5304] = {.lex_state = 66, .external_lex_state = 14}, - [5305] = {.lex_state = 66, .external_lex_state = 12}, - [5306] = {.lex_state = 66, .external_lex_state = 2}, + [5295] = {.lex_state = 66, .external_lex_state = 12}, + [5296] = {.lex_state = 66, .external_lex_state = 14}, + [5297] = {.lex_state = 66, .external_lex_state = 16}, + [5298] = {.lex_state = 66, .external_lex_state = 14}, + [5299] = {.lex_state = 66, .external_lex_state = 16}, + [5300] = {.lex_state = 66, .external_lex_state = 13}, + [5301] = {.lex_state = 66, .external_lex_state = 13}, + [5302] = {.lex_state = 66, .external_lex_state = 13}, + [5303] = {.lex_state = 66, .external_lex_state = 14}, + [5304] = {.lex_state = 66, .external_lex_state = 15}, + [5305] = {.lex_state = 66, .external_lex_state = 11}, + [5306] = {.lex_state = 66, .external_lex_state = 12}, [5307] = {.lex_state = 66, .external_lex_state = 14}, - [5308] = {.lex_state = 66, .external_lex_state = 14}, - [5309] = {.lex_state = 66, .external_lex_state = 14}, - [5310] = {.lex_state = 66, .external_lex_state = 14}, - [5311] = {.lex_state = 66, .external_lex_state = 14}, - [5312] = {.lex_state = 66, .external_lex_state = 14}, - [5313] = {.lex_state = 66, .external_lex_state = 11}, + [5308] = {.lex_state = 66, .external_lex_state = 15}, + [5309] = {.lex_state = 66, .external_lex_state = 15}, + [5310] = {.lex_state = 66, .external_lex_state = 12}, + [5311] = {.lex_state = 66, .external_lex_state = 16}, + [5312] = {.lex_state = 66, .external_lex_state = 16}, + [5313] = {.lex_state = 66, .external_lex_state = 12}, [5314] = {.lex_state = 66, .external_lex_state = 11}, - [5315] = {.lex_state = 66, .external_lex_state = 14}, - [5316] = {.lex_state = 66, .external_lex_state = 11}, + [5315] = {.lex_state = 66, .external_lex_state = 11}, + [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 = 16}, - [5320] = {.lex_state = 66, .external_lex_state = 12}, - [5321] = {.lex_state = 66, .external_lex_state = 12}, - [5322] = {.lex_state = 66, .external_lex_state = 12}, - [5323] = {.lex_state = 66, .external_lex_state = 12}, - [5324] = {.lex_state = 66, .external_lex_state = 12}, + [5318] = {.lex_state = 66, .external_lex_state = 13}, + [5319] = {.lex_state = 66, .external_lex_state = 2}, + [5320] = {.lex_state = 66, .external_lex_state = 11}, + [5321] = {.lex_state = 66, .external_lex_state = 13}, + [5322] = {.lex_state = 66, .external_lex_state = 11}, + [5323] = {.lex_state = 66, .external_lex_state = 11}, + [5324] = {.lex_state = 66, .external_lex_state = 11}, [5325] = {.lex_state = 66, .external_lex_state = 12}, - [5326] = {.lex_state = 66, .external_lex_state = 12}, - [5327] = {.lex_state = 66, .external_lex_state = 14}, + [5326] = {.lex_state = 66, .external_lex_state = 14}, + [5327] = {.lex_state = 66, .external_lex_state = 12}, [5328] = {.lex_state = 66, .external_lex_state = 14}, - [5329] = {.lex_state = 66, .external_lex_state = 11}, - [5330] = {.lex_state = 66, .external_lex_state = 12}, - [5331] = {.lex_state = 66, .external_lex_state = 13}, - [5332] = {.lex_state = 66, .external_lex_state = 11}, - [5333] = {.lex_state = 66, .external_lex_state = 14}, - [5334] = {.lex_state = 66, .external_lex_state = 12}, - [5335] = {.lex_state = 66, .external_lex_state = 11}, + [5329] = {.lex_state = 66, .external_lex_state = 12}, + [5330] = {.lex_state = 66, .external_lex_state = 11}, + [5331] = {.lex_state = 66, .external_lex_state = 12}, + [5332] = {.lex_state = 66, .external_lex_state = 12}, + [5333] = {.lex_state = 66, .external_lex_state = 12}, + [5334] = {.lex_state = 66, .external_lex_state = 14}, + [5335] = {.lex_state = 66, .external_lex_state = 14}, [5336] = {.lex_state = 66, .external_lex_state = 14}, [5337] = {.lex_state = 66, .external_lex_state = 12}, - [5338] = {.lex_state = 66, .external_lex_state = 14}, - [5339] = {.lex_state = 66, .external_lex_state = 13}, - [5340] = {.lex_state = 66, .external_lex_state = 13}, + [5338] = {.lex_state = 66, .external_lex_state = 12}, + [5339] = {.lex_state = 66, .external_lex_state = 12}, + [5340] = {.lex_state = 66, .external_lex_state = 12}, [5341] = {.lex_state = 66, .external_lex_state = 12}, - [5342] = {.lex_state = 66, .external_lex_state = 14}, - [5343] = {.lex_state = 66, .external_lex_state = 2}, - [5344] = {.lex_state = 66, .external_lex_state = 14}, + [5342] = {.lex_state = 66, .external_lex_state = 12}, + [5343] = {.lex_state = 66, .external_lex_state = 14}, + [5344] = {.lex_state = 66, .external_lex_state = 12}, [5345] = {.lex_state = 66, .external_lex_state = 14}, [5346] = {.lex_state = 66, .external_lex_state = 14}, - [5347] = {.lex_state = 66, .external_lex_state = 14}, - [5348] = {.lex_state = 66, .external_lex_state = 12}, - [5349] = {.lex_state = 66, .external_lex_state = 13}, - [5350] = {.lex_state = 66, .external_lex_state = 14}, - [5351] = {.lex_state = 66, .external_lex_state = 13}, - [5352] = {.lex_state = 66, .external_lex_state = 14}, + [5347] = {.lex_state = 66, .external_lex_state = 12}, + [5348] = {.lex_state = 66, .external_lex_state = 14}, + [5349] = {.lex_state = 66, .external_lex_state = 14}, + [5350] = {.lex_state = 66, .external_lex_state = 12}, + [5351] = {.lex_state = 66, .external_lex_state = 12}, + [5352] = {.lex_state = 66, .external_lex_state = 12}, [5353] = {.lex_state = 66, .external_lex_state = 14}, - [5354] = {.lex_state = 66, .external_lex_state = 12}, - [5355] = {.lex_state = 66, .external_lex_state = 14}, - [5356] = {.lex_state = 66, .external_lex_state = 16}, + [5354] = {.lex_state = 66, .external_lex_state = 14}, + [5355] = {.lex_state = 66, .external_lex_state = 2}, + [5356] = {.lex_state = 66, .external_lex_state = 14}, [5357] = {.lex_state = 66, .external_lex_state = 14}, - [5358] = {.lex_state = 66, .external_lex_state = 13}, - [5359] = {.lex_state = 66, .external_lex_state = 11}, - [5360] = {.lex_state = 66, .external_lex_state = 12}, - [5361] = {.lex_state = 66, .external_lex_state = 12}, - [5362] = {.lex_state = 66, .external_lex_state = 12}, - [5363] = {.lex_state = 66, .external_lex_state = 12}, - [5364] = {.lex_state = 66, .external_lex_state = 12}, + [5358] = {.lex_state = 66, .external_lex_state = 12}, + [5359] = {.lex_state = 66, .external_lex_state = 14}, + [5360] = {.lex_state = 66, .external_lex_state = 14}, + [5361] = {.lex_state = 66, .external_lex_state = 14}, + [5362] = {.lex_state = 66, .external_lex_state = 14}, + [5363] = {.lex_state = 66, .external_lex_state = 14}, + [5364] = {.lex_state = 66, .external_lex_state = 11}, [5365] = {.lex_state = 66, .external_lex_state = 14}, - [5366] = {.lex_state = 66, .external_lex_state = 16}, - [5367] = {.lex_state = 66, .external_lex_state = 14}, - [5368] = {.lex_state = 66, .external_lex_state = 12}, - [5369] = {.lex_state = 66, .external_lex_state = 16}, - [5370] = {.lex_state = 66, .external_lex_state = 11}, - [5371] = {.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 = 14}, + [5369] = {.lex_state = 66, .external_lex_state = 12}, + [5370] = {.lex_state = 66, .external_lex_state = 12}, + [5371] = {.lex_state = 66, .external_lex_state = 12}, [5372] = {.lex_state = 66, .external_lex_state = 12}, - [5373] = {.lex_state = 66, .external_lex_state = 14}, - [5374] = {.lex_state = 66, .external_lex_state = 11}, - [5375] = {.lex_state = 66, .external_lex_state = 16}, + [5373] = {.lex_state = 66, .external_lex_state = 12}, + [5374] = {.lex_state = 66, .external_lex_state = 12}, + [5375] = {.lex_state = 66, .external_lex_state = 12}, [5376] = {.lex_state = 66, .external_lex_state = 14}, - [5377] = {.lex_state = 66, .external_lex_state = 11}, - [5378] = {.lex_state = 66, .external_lex_state = 2}, - [5379] = {.lex_state = 66, .external_lex_state = 11}, + [5377] = {.lex_state = 66, .external_lex_state = 14}, + [5378] = {.lex_state = 66, .external_lex_state = 12}, + [5379] = {.lex_state = 66, .external_lex_state = 12}, [5380] = {.lex_state = 66, .external_lex_state = 11}, - [5381] = {.lex_state = 66, .external_lex_state = 11}, - [5382] = {.lex_state = 66, .external_lex_state = 16}, - [5383] = {.lex_state = 66, .external_lex_state = 14}, + [5381] = {.lex_state = 66, .external_lex_state = 12}, + [5382] = {.lex_state = 66, .external_lex_state = 11}, + [5383] = {.lex_state = 66, .external_lex_state = 12}, [5384] = {.lex_state = 66, .external_lex_state = 11}, - [5385] = {.lex_state = 66, .external_lex_state = 13}, - [5386] = {.lex_state = 66, .external_lex_state = 11}, + [5385] = {.lex_state = 66, .external_lex_state = 11}, + [5386] = {.lex_state = 66, .external_lex_state = 14}, [5387] = {.lex_state = 66, .external_lex_state = 14}, - [5388] = {.lex_state = 66, .external_lex_state = 13}, - [5389] = {.lex_state = 66, .external_lex_state = 13}, - [5390] = {.lex_state = 66, .external_lex_state = 11}, + [5388] = {.lex_state = 66, .external_lex_state = 2}, + [5389] = {.lex_state = 66, .external_lex_state = 14}, + [5390] = {.lex_state = 66, .external_lex_state = 12}, [5391] = {.lex_state = 66, .external_lex_state = 11}, - [5392] = {.lex_state = 66, .external_lex_state = 16}, - [5393] = {.lex_state = 66, .external_lex_state = 12}, - [5394] = {.lex_state = 66, .external_lex_state = 14}, - [5395] = {.lex_state = 66, .external_lex_state = 14}, - [5396] = {.lex_state = 66, .external_lex_state = 11}, + [5392] = {.lex_state = 66, .external_lex_state = 14}, + [5393] = {.lex_state = 66, .external_lex_state = 14}, + [5394] = {.lex_state = 66, .external_lex_state = 11}, + [5395] = {.lex_state = 66, .external_lex_state = 11}, + [5396] = {.lex_state = 66, .external_lex_state = 14}, [5397] = {.lex_state = 66, .external_lex_state = 11}, - [5398] = {.lex_state = 66, .external_lex_state = 12}, - [5399] = {.lex_state = 66, .external_lex_state = 11}, - [5400] = {.lex_state = 66, .external_lex_state = 15}, - [5401] = {.lex_state = 66, .external_lex_state = 12}, - [5402] = {.lex_state = 66, .external_lex_state = 12}, - [5403] = {.lex_state = 66, .external_lex_state = 12}, + [5398] = {.lex_state = 66, .external_lex_state = 2}, + [5399] = {.lex_state = 66, .external_lex_state = 14}, + [5400] = {.lex_state = 66, .external_lex_state = 14}, + [5401] = {.lex_state = 66, .external_lex_state = 15}, + [5402] = {.lex_state = 66, .external_lex_state = 14}, + [5403] = {.lex_state = 66, .external_lex_state = 14}, [5404] = {.lex_state = 66, .external_lex_state = 14}, [5405] = {.lex_state = 66, .external_lex_state = 12}, [5406] = {.lex_state = 66, .external_lex_state = 14}, - [5407] = {.lex_state = 66, .external_lex_state = 12}, - [5408] = {.lex_state = 66, .external_lex_state = 16}, - [5409] = {.lex_state = 66, .external_lex_state = 14}, - [5410] = {.lex_state = 66, .external_lex_state = 11}, - [5411] = {.lex_state = 66, .external_lex_state = 12}, + [5407] = {.lex_state = 66, .external_lex_state = 11}, + [5408] = {.lex_state = 66, .external_lex_state = 11}, + [5409] = {.lex_state = 66, .external_lex_state = 12}, + [5410] = {.lex_state = 66, .external_lex_state = 12}, + [5411] = {.lex_state = 66, .external_lex_state = 11}, [5412] = {.lex_state = 66, .external_lex_state = 12}, - [5413] = {.lex_state = 66, .external_lex_state = 14}, - [5414] = {.lex_state = 66, .external_lex_state = 12}, + [5413] = {.lex_state = 66, .external_lex_state = 16}, + [5414] = {.lex_state = 66, .external_lex_state = 14}, [5415] = {.lex_state = 66, .external_lex_state = 12}, - [5416] = {.lex_state = 66, .external_lex_state = 14}, - [5417] = {.lex_state = 66, .external_lex_state = 12}, + [5416] = {.lex_state = 66, .external_lex_state = 11}, + [5417] = {.lex_state = 66, .external_lex_state = 14}, [5418] = {.lex_state = 66, .external_lex_state = 12}, [5419] = {.lex_state = 66, .external_lex_state = 11}, [5420] = {.lex_state = 66, .external_lex_state = 16}, - [5421] = {.lex_state = 66, .external_lex_state = 12}, + [5421] = {.lex_state = 66, .external_lex_state = 11}, [5422] = {.lex_state = 66, .external_lex_state = 11}, - [5423] = {.lex_state = 66, .external_lex_state = 11}, - [5424] = {.lex_state = 66, .external_lex_state = 14}, - [5425] = {.lex_state = 66, .external_lex_state = 14}, + [5423] = {.lex_state = 66, .external_lex_state = 12}, + [5424] = {.lex_state = 66, .external_lex_state = 11}, + [5425] = {.lex_state = 66, .external_lex_state = 11}, [5426] = {.lex_state = 66, .external_lex_state = 11}, - [5427] = {.lex_state = 66, .external_lex_state = 12}, - [5428] = {.lex_state = 66, .external_lex_state = 14}, - [5429] = {.lex_state = 66, .external_lex_state = 11}, - [5430] = {.lex_state = 66, .external_lex_state = 11}, - [5431] = {.lex_state = 66, .external_lex_state = 12}, - [5432] = {.lex_state = 66, .external_lex_state = 11}, - [5433] = {.lex_state = 66, .external_lex_state = 12}, + [5427] = {.lex_state = 66, .external_lex_state = 14}, + [5428] = {.lex_state = 66, .external_lex_state = 11}, + [5429] = {.lex_state = 66, .external_lex_state = 12}, + [5430] = {.lex_state = 66, .external_lex_state = 12}, + [5431] = {.lex_state = 66, .external_lex_state = 11}, + [5432] = {.lex_state = 66, .external_lex_state = 12}, + [5433] = {.lex_state = 66, .external_lex_state = 16}, [5434] = {.lex_state = 66, .external_lex_state = 11}, - [5435] = {.lex_state = 66, .external_lex_state = 11}, - [5436] = {.lex_state = 66, .external_lex_state = 12}, + [5435] = {.lex_state = 66, .external_lex_state = 12}, + [5436] = {.lex_state = 66, .external_lex_state = 11}, [5437] = {.lex_state = 66, .external_lex_state = 14}, - [5438] = {.lex_state = 66, .external_lex_state = 13}, + [5438] = {.lex_state = 66, .external_lex_state = 11}, [5439] = {.lex_state = 66, .external_lex_state = 12}, [5440] = {.lex_state = 66, .external_lex_state = 12}, [5441] = {.lex_state = 66, .external_lex_state = 12}, - [5442] = {.lex_state = 66, .external_lex_state = 12}, - [5443] = {.lex_state = 66, .external_lex_state = 14}, - [5444] = {.lex_state = 66, .external_lex_state = 12}, - [5445] = {.lex_state = 66, .external_lex_state = 12}, - [5446] = {.lex_state = 66, .external_lex_state = 15}, + [5442] = {.lex_state = 66, .external_lex_state = 15}, + [5443] = {.lex_state = 66, .external_lex_state = 12}, + [5444] = {.lex_state = 66, .external_lex_state = 14}, + [5445] = {.lex_state = 66, .external_lex_state = 14}, + [5446] = {.lex_state = 66, .external_lex_state = 11}, [5447] = {.lex_state = 66, .external_lex_state = 12}, [5448] = {.lex_state = 66, .external_lex_state = 12}, - [5449] = {.lex_state = 66, .external_lex_state = 12}, - [5450] = {.lex_state = 66, .external_lex_state = 13}, - [5451] = {.lex_state = 66, .external_lex_state = 16}, - [5452] = {.lex_state = 66, .external_lex_state = 11}, - [5453] = {.lex_state = 66, .external_lex_state = 11}, + [5449] = {.lex_state = 66, .external_lex_state = 14}, + [5450] = {.lex_state = 66, .external_lex_state = 14}, + [5451] = {.lex_state = 66, .external_lex_state = 13}, + [5452] = {.lex_state = 66, .external_lex_state = 13}, + [5453] = {.lex_state = 66, .external_lex_state = 12}, [5454] = {.lex_state = 66, .external_lex_state = 12}, - [5455] = {.lex_state = 66, .external_lex_state = 12}, + [5455] = {.lex_state = 66, .external_lex_state = 14}, [5456] = {.lex_state = 66, .external_lex_state = 11}, - [5457] = {.lex_state = 66, .external_lex_state = 11}, - [5458] = {.lex_state = 66, .external_lex_state = 16}, - [5459] = {.lex_state = 66, .external_lex_state = 15}, - [5460] = {.lex_state = 66, .external_lex_state = 12}, - [5461] = {.lex_state = 66, .external_lex_state = 15}, + [5457] = {.lex_state = 66, .external_lex_state = 12}, + [5458] = {.lex_state = 66, .external_lex_state = 14}, + [5459] = {.lex_state = 66, .external_lex_state = 12}, + [5460] = {.lex_state = 66, .external_lex_state = 11}, + [5461] = {.lex_state = 66, .external_lex_state = 12}, [5462] = {.lex_state = 66, .external_lex_state = 11}, - [5463] = {.lex_state = 66, .external_lex_state = 12}, + [5463] = {.lex_state = 66, .external_lex_state = 13}, [5464] = {.lex_state = 66, .external_lex_state = 12}, - [5465] = {.lex_state = 66, .external_lex_state = 11}, - [5466] = {.lex_state = 66, .external_lex_state = 12}, - [5467] = {.lex_state = 66, .external_lex_state = 15}, - [5468] = {.lex_state = 66, .external_lex_state = 12}, + [5465] = {.lex_state = 66, .external_lex_state = 13}, + [5466] = {.lex_state = 66, .external_lex_state = 11}, + [5467] = {.lex_state = 66, .external_lex_state = 16}, + [5468] = {.lex_state = 66, .external_lex_state = 11}, [5469] = {.lex_state = 66, .external_lex_state = 12}, - [5470] = {.lex_state = 66, .external_lex_state = 15}, + [5470] = {.lex_state = 66, .external_lex_state = 16}, [5471] = {.lex_state = 66, .external_lex_state = 12}, [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 = 16}, + [5474] = {.lex_state = 66, .external_lex_state = 12}, + [5475] = {.lex_state = 66, .external_lex_state = 12}, [5476] = {.lex_state = 66, .external_lex_state = 12}, - [5477] = {.lex_state = 66, .external_lex_state = 14}, - [5478] = {.lex_state = 66, .external_lex_state = 12}, - [5479] = {.lex_state = 66, .external_lex_state = 12}, - [5480] = {.lex_state = 66, .external_lex_state = 14}, + [5477] = {.lex_state = 66, .external_lex_state = 11}, + [5478] = {.lex_state = 66, .external_lex_state = 14}, + [5479] = {.lex_state = 66, .external_lex_state = 14}, + [5480] = {.lex_state = 66, .external_lex_state = 11}, [5481] = {.lex_state = 66, .external_lex_state = 12}, [5482] = {.lex_state = 66, .external_lex_state = 12}, - [5483] = {.lex_state = 66, .external_lex_state = 12}, - [5484] = {.lex_state = 66, .external_lex_state = 15}, - [5485] = {.lex_state = 66, .external_lex_state = 15}, - [5486] = {.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 = 14}, + [5486] = {.lex_state = 66, .external_lex_state = 14}, [5487] = {.lex_state = 66, .external_lex_state = 12}, [5488] = {.lex_state = 66, .external_lex_state = 12}, - [5489] = {.lex_state = 66, .external_lex_state = 14}, - [5490] = {.lex_state = 66, .external_lex_state = 15}, - [5491] = {.lex_state = 6, .external_lex_state = 12}, - [5492] = {.lex_state = 66, .external_lex_state = 15}, - [5493] = {.lex_state = 66, .external_lex_state = 12}, - [5494] = {.lex_state = 66, .external_lex_state = 14}, - [5495] = {.lex_state = 66, .external_lex_state = 14}, - [5496] = {.lex_state = 66, .external_lex_state = 12}, - [5497] = {.lex_state = 66, .external_lex_state = 21}, - [5498] = {.lex_state = 66, .external_lex_state = 12}, - [5499] = {.lex_state = 66, .external_lex_state = 12}, + [5489] = {.lex_state = 66, .external_lex_state = 13}, + [5490] = {.lex_state = 66, .external_lex_state = 11}, + [5491] = {.lex_state = 66, .external_lex_state = 11}, + [5492] = {.lex_state = 66, .external_lex_state = 12}, + [5493] = {.lex_state = 66, .external_lex_state = 16}, + [5494] = {.lex_state = 66, .external_lex_state = 12}, + [5495] = {.lex_state = 66, .external_lex_state = 11}, + [5496] = {.lex_state = 66, .external_lex_state = 11}, + [5497] = {.lex_state = 66, .external_lex_state = 12}, + [5498] = {.lex_state = 66, .external_lex_state = 11}, + [5499] = {.lex_state = 66, .external_lex_state = 11}, [5500] = {.lex_state = 66, .external_lex_state = 12}, - [5501] = {.lex_state = 66, .external_lex_state = 12}, - [5502] = {.lex_state = 66, .external_lex_state = 14}, - [5503] = {.lex_state = 66, .external_lex_state = 12}, + [5501] = {.lex_state = 66, .external_lex_state = 14}, + [5502] = {.lex_state = 66, .external_lex_state = 12}, + [5503] = {.lex_state = 66, .external_lex_state = 13}, [5504] = {.lex_state = 66, .external_lex_state = 12}, [5505] = {.lex_state = 66, .external_lex_state = 12}, - [5506] = {.lex_state = 66, .external_lex_state = 14}, - [5507] = {.lex_state = 66, .external_lex_state = 21}, - [5508] = {.lex_state = 66, .external_lex_state = 12}, + [5506] = {.lex_state = 66, .external_lex_state = 11}, + [5507] = {.lex_state = 66, .external_lex_state = 11}, + [5508] = {.lex_state = 66, .external_lex_state = 13}, [5509] = {.lex_state = 66, .external_lex_state = 12}, [5510] = {.lex_state = 66, .external_lex_state = 12}, - [5511] = {.lex_state = 66, .external_lex_state = 14}, - [5512] = {.lex_state = 6, .external_lex_state = 12}, + [5511] = {.lex_state = 66, .external_lex_state = 16}, + [5512] = {.lex_state = 66, .external_lex_state = 16}, [5513] = {.lex_state = 66, .external_lex_state = 12}, - [5514] = {.lex_state = 66, .external_lex_state = 12}, - [5515] = {.lex_state = 66, .external_lex_state = 12}, - [5516] = {.lex_state = 66, .external_lex_state = 14}, - [5517] = {.lex_state = 66, .external_lex_state = 14}, - [5518] = {.lex_state = 66, .external_lex_state = 14}, - [5519] = {.lex_state = 66, .external_lex_state = 14}, + [5514] = {.lex_state = 66, .external_lex_state = 14}, + [5515] = {.lex_state = 66, .external_lex_state = 14}, + [5516] = {.lex_state = 66, .external_lex_state = 12}, + [5517] = {.lex_state = 66, .external_lex_state = 12}, + [5518] = {.lex_state = 66, .external_lex_state = 12}, + [5519] = {.lex_state = 66, .external_lex_state = 12}, [5520] = {.lex_state = 66, .external_lex_state = 12}, - [5521] = {.lex_state = 66, .external_lex_state = 12}, - [5522] = {.lex_state = 66, .external_lex_state = 15}, - [5523] = {.lex_state = 66, .external_lex_state = 12}, - [5524] = {.lex_state = 66, .external_lex_state = 12}, - [5525] = {.lex_state = 66, .external_lex_state = 21}, - [5526] = {.lex_state = 66, .external_lex_state = 16}, - [5527] = {.lex_state = 66, .external_lex_state = 13}, - [5528] = {.lex_state = 66, .external_lex_state = 16}, + [5521] = {.lex_state = 66, .external_lex_state = 14}, + [5522] = {.lex_state = 66, .external_lex_state = 12}, + [5523] = {.lex_state = 66, .external_lex_state = 14}, + [5524] = {.lex_state = 66, .external_lex_state = 15}, + [5525] = {.lex_state = 66, .external_lex_state = 14}, + [5526] = {.lex_state = 66, .external_lex_state = 14}, + [5527] = {.lex_state = 66, .external_lex_state = 12}, + [5528] = {.lex_state = 66, .external_lex_state = 15}, [5529] = {.lex_state = 66, .external_lex_state = 12}, - [5530] = {.lex_state = 66, .external_lex_state = 21}, + [5530] = {.lex_state = 66, .external_lex_state = 12}, [5531] = {.lex_state = 66, .external_lex_state = 12}, [5532] = {.lex_state = 66, .external_lex_state = 12}, - [5533] = {.lex_state = 66, .external_lex_state = 14}, - [5534] = {.lex_state = 66, .external_lex_state = 12}, + [5533] = {.lex_state = 66, .external_lex_state = 12}, + [5534] = {.lex_state = 66, .external_lex_state = 14}, [5535] = {.lex_state = 66, .external_lex_state = 12}, [5536] = {.lex_state = 66, .external_lex_state = 12}, - [5537] = {.lex_state = 66, .external_lex_state = 15}, - [5538] = {.lex_state = 66, .external_lex_state = 14}, + [5537] = {.lex_state = 66, .external_lex_state = 12}, + [5538] = {.lex_state = 66, .external_lex_state = 16}, [5539] = {.lex_state = 66, .external_lex_state = 12}, [5540] = {.lex_state = 66, .external_lex_state = 12}, - [5541] = {.lex_state = 66, .external_lex_state = 12}, - [5542] = {.lex_state = 66, .external_lex_state = 14}, - [5543] = {.lex_state = 66, .external_lex_state = 15}, + [5541] = {.lex_state = 66, .external_lex_state = 15}, + [5542] = {.lex_state = 66, .external_lex_state = 15}, + [5543] = {.lex_state = 66, .external_lex_state = 12}, [5544] = {.lex_state = 66, .external_lex_state = 12}, - [5545] = {.lex_state = 66, .external_lex_state = 14}, - [5546] = {.lex_state = 66, .external_lex_state = 14}, - [5547] = {.lex_state = 6, .external_lex_state = 12}, - [5548] = {.lex_state = 66, .external_lex_state = 21}, + [5545] = {.lex_state = 66, .external_lex_state = 12}, + [5546] = {.lex_state = 66, .external_lex_state = 16}, + [5547] = {.lex_state = 66, .external_lex_state = 16}, + [5548] = {.lex_state = 66, .external_lex_state = 12}, [5549] = {.lex_state = 66, .external_lex_state = 12}, - [5550] = {.lex_state = 66, .external_lex_state = 15}, - [5551] = {.lex_state = 66, .external_lex_state = 12}, + [5550] = {.lex_state = 66, .external_lex_state = 12}, + [5551] = {.lex_state = 66, .external_lex_state = 15}, [5552] = {.lex_state = 66, .external_lex_state = 12}, - [5553] = {.lex_state = 66, .external_lex_state = 12}, + [5553] = {.lex_state = 66, .external_lex_state = 15}, [5554] = {.lex_state = 66, .external_lex_state = 12}, - [5555] = {.lex_state = 66, .external_lex_state = 12}, - [5556] = {.lex_state = 66, .external_lex_state = 12}, - [5557] = {.lex_state = 66, .external_lex_state = 15}, + [5555] = {.lex_state = 66, .external_lex_state = 21}, + [5556] = {.lex_state = 6, .external_lex_state = 12}, + [5557] = {.lex_state = 66, .external_lex_state = 12}, [5558] = {.lex_state = 66, .external_lex_state = 12}, - [5559] = {.lex_state = 6, .external_lex_state = 12}, - [5560] = {.lex_state = 6, .external_lex_state = 12}, - [5561] = {.lex_state = 66, .external_lex_state = 12}, - [5562] = {.lex_state = 66, .external_lex_state = 12}, - [5563] = {.lex_state = 66, .external_lex_state = 16}, + [5559] = {.lex_state = 66, .external_lex_state = 14}, + [5560] = {.lex_state = 66, .external_lex_state = 12}, + [5561] = {.lex_state = 6, .external_lex_state = 12}, + [5562] = {.lex_state = 66, .external_lex_state = 14}, + [5563] = {.lex_state = 66, .external_lex_state = 12}, [5564] = {.lex_state = 66, .external_lex_state = 12}, [5565] = {.lex_state = 66, .external_lex_state = 12}, [5566] = {.lex_state = 66, .external_lex_state = 12}, - [5567] = {.lex_state = 4, .external_lex_state = 12}, - [5568] = {.lex_state = 66, .external_lex_state = 12}, - [5569] = {.lex_state = 66, .external_lex_state = 12}, - [5570] = {.lex_state = 66, .external_lex_state = 16}, + [5567] = {.lex_state = 66, .external_lex_state = 15}, + [5568] = {.lex_state = 66, .external_lex_state = 15}, + [5569] = {.lex_state = 66, .external_lex_state = 14}, + [5570] = {.lex_state = 66, .external_lex_state = 12}, [5571] = {.lex_state = 66, .external_lex_state = 12}, [5572] = {.lex_state = 66, .external_lex_state = 12}, [5573] = {.lex_state = 66, .external_lex_state = 12}, [5574] = {.lex_state = 66, .external_lex_state = 12}, - [5575] = {.lex_state = 6, .external_lex_state = 12}, - [5576] = {.lex_state = 66, .external_lex_state = 12}, - [5577] = {.lex_state = 66, .external_lex_state = 14}, - [5578] = {.lex_state = 66, .external_lex_state = 12}, + [5575] = {.lex_state = 66, .external_lex_state = 15}, + [5576] = {.lex_state = 66, .external_lex_state = 16}, + [5577] = {.lex_state = 66, .external_lex_state = 12}, + [5578] = {.lex_state = 6, .external_lex_state = 12}, [5579] = {.lex_state = 66, .external_lex_state = 12}, - [5580] = {.lex_state = 66, .external_lex_state = 14}, - [5581] = {.lex_state = 6, .external_lex_state = 12}, + [5580] = {.lex_state = 66, .external_lex_state = 15}, + [5581] = {.lex_state = 66, .external_lex_state = 12}, [5582] = {.lex_state = 66, .external_lex_state = 12}, - [5583] = {.lex_state = 66, .external_lex_state = 16}, + [5583] = {.lex_state = 6, .external_lex_state = 12}, [5584] = {.lex_state = 66, .external_lex_state = 12}, - [5585] = {.lex_state = 66, .external_lex_state = 16}, - [5586] = {.lex_state = 66, .external_lex_state = 15}, + [5585] = {.lex_state = 66, .external_lex_state = 12}, + [5586] = {.lex_state = 66, .external_lex_state = 12}, [5587] = {.lex_state = 66, .external_lex_state = 12}, [5588] = {.lex_state = 6, .external_lex_state = 12}, [5589] = {.lex_state = 66, .external_lex_state = 12}, [5590] = {.lex_state = 66, .external_lex_state = 12}, - [5591] = {.lex_state = 66, .external_lex_state = 15}, - [5592] = {.lex_state = 66, .external_lex_state = 13}, - [5593] = {.lex_state = 6, .external_lex_state = 12}, - [5594] = {.lex_state = 66, .external_lex_state = 14}, + [5591] = {.lex_state = 66, .external_lex_state = 12}, + [5592] = {.lex_state = 66, .external_lex_state = 12}, + [5593] = {.lex_state = 66, .external_lex_state = 12}, + [5594] = {.lex_state = 66, .external_lex_state = 12}, [5595] = {.lex_state = 66, .external_lex_state = 14}, - [5596] = {.lex_state = 66, .external_lex_state = 12}, - [5597] = {.lex_state = 66, .external_lex_state = 14}, - [5598] = {.lex_state = 66, .external_lex_state = 16}, - [5599] = {.lex_state = 66, .external_lex_state = 15}, + [5596] = {.lex_state = 66, .external_lex_state = 21}, + [5597] = {.lex_state = 66, .external_lex_state = 12}, + [5598] = {.lex_state = 66, .external_lex_state = 15}, + [5599] = {.lex_state = 66, .external_lex_state = 12}, [5600] = {.lex_state = 66, .external_lex_state = 12}, - [5601] = {.lex_state = 66, .external_lex_state = 16}, + [5601] = {.lex_state = 66, .external_lex_state = 12}, [5602] = {.lex_state = 66, .external_lex_state = 12}, [5603] = {.lex_state = 66, .external_lex_state = 12}, - [5604] = {.lex_state = 66, .external_lex_state = 16}, - [5605] = {.lex_state = 66, .external_lex_state = 15}, - [5606] = {.lex_state = 66, .external_lex_state = 14}, + [5604] = {.lex_state = 66, .external_lex_state = 12}, + [5605] = {.lex_state = 6, .external_lex_state = 12}, + [5606] = {.lex_state = 66, .external_lex_state = 12}, [5607] = {.lex_state = 66, .external_lex_state = 12}, - [5608] = {.lex_state = 66, .external_lex_state = 12}, + [5608] = {.lex_state = 6, .external_lex_state = 12}, [5609] = {.lex_state = 66, .external_lex_state = 12}, - [5610] = {.lex_state = 66, .external_lex_state = 15}, + [5610] = {.lex_state = 66, .external_lex_state = 12}, [5611] = {.lex_state = 66, .external_lex_state = 12}, [5612] = {.lex_state = 66, .external_lex_state = 12}, [5613] = {.lex_state = 66, .external_lex_state = 12}, - [5614] = {.lex_state = 6, .external_lex_state = 12}, - [5615] = {.lex_state = 66, .external_lex_state = 14}, - [5616] = {.lex_state = 66, .external_lex_state = 14}, - [5617] = {.lex_state = 66, .external_lex_state = 16}, - [5618] = {.lex_state = 66, .external_lex_state = 14}, - [5619] = {.lex_state = 66, .external_lex_state = 15}, - [5620] = {.lex_state = 66, .external_lex_state = 14}, - [5621] = {.lex_state = 66, .external_lex_state = 14}, + [5614] = {.lex_state = 66, .external_lex_state = 14}, + [5615] = {.lex_state = 66, .external_lex_state = 12}, + [5616] = {.lex_state = 66, .external_lex_state = 21}, + [5617] = {.lex_state = 66, .external_lex_state = 14}, + [5618] = {.lex_state = 6, .external_lex_state = 12}, + [5619] = {.lex_state = 66, .external_lex_state = 12}, + [5620] = {.lex_state = 66, .external_lex_state = 12}, + [5621] = {.lex_state = 66, .external_lex_state = 12}, [5622] = {.lex_state = 66, .external_lex_state = 12}, [5623] = {.lex_state = 66, .external_lex_state = 12}, - [5624] = {.lex_state = 66, .external_lex_state = 14}, - [5625] = {.lex_state = 66, .external_lex_state = 15}, - [5626] = {.lex_state = 66, .external_lex_state = 13}, - [5627] = {.lex_state = 66, .external_lex_state = 12}, + [5624] = {.lex_state = 66, .external_lex_state = 12}, + [5625] = {.lex_state = 66, .external_lex_state = 12}, + [5626] = {.lex_state = 66, .external_lex_state = 14}, + [5627] = {.lex_state = 6, .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 = 15}, + [5629] = {.lex_state = 66, .external_lex_state = 21}, + [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 = 21}, - [5634] = {.lex_state = 66, .external_lex_state = 15}, + [5632] = {.lex_state = 66, .external_lex_state = 14}, + [5633] = {.lex_state = 66, .external_lex_state = 15}, + [5634] = {.lex_state = 66, .external_lex_state = 13}, [5635] = {.lex_state = 66, .external_lex_state = 12}, [5636] = {.lex_state = 66, .external_lex_state = 16}, - [5637] = {.lex_state = 66, .external_lex_state = 14}, - [5638] = {.lex_state = 66, .external_lex_state = 15}, - [5639] = {.lex_state = 66, .external_lex_state = 12}, - [5640] = {.lex_state = 66, .external_lex_state = 12}, - [5641] = {.lex_state = 66, .external_lex_state = 14}, + [5637] = {.lex_state = 66, .external_lex_state = 15}, + [5638] = {.lex_state = 66, .external_lex_state = 12}, + [5639] = {.lex_state = 66, .external_lex_state = 14}, + [5640] = {.lex_state = 66, .external_lex_state = 21}, + [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 = 14}, + [5643] = {.lex_state = 66, .external_lex_state = 12}, + [5644] = {.lex_state = 66, .external_lex_state = 12}, [5645] = {.lex_state = 66, .external_lex_state = 12}, [5646] = {.lex_state = 66, .external_lex_state = 12}, - [5647] = {.lex_state = 66, .external_lex_state = 12}, - [5648] = {.lex_state = 66, .external_lex_state = 14}, + [5647] = {.lex_state = 66, .external_lex_state = 15}, + [5648] = {.lex_state = 66, .external_lex_state = 12}, [5649] = {.lex_state = 66, .external_lex_state = 12}, - [5650] = {.lex_state = 66, .external_lex_state = 16}, - [5651] = {.lex_state = 66, .external_lex_state = 12}, - [5652] = {.lex_state = 66, .external_lex_state = 15}, - [5653] = {.lex_state = 66, .external_lex_state = 12}, - [5654] = {.lex_state = 66, .external_lex_state = 21}, + [5650] = {.lex_state = 66, .external_lex_state = 12}, + [5651] = {.lex_state = 66, .external_lex_state = 16}, + [5652] = {.lex_state = 66, .external_lex_state = 14}, + [5653] = {.lex_state = 66, .external_lex_state = 16}, + [5654] = {.lex_state = 66, .external_lex_state = 12}, [5655] = {.lex_state = 66, .external_lex_state = 12}, [5656] = {.lex_state = 66, .external_lex_state = 12}, - [5657] = {.lex_state = 6, .external_lex_state = 12}, - [5658] = {.lex_state = 66, .external_lex_state = 12}, - [5659] = {.lex_state = 66, .external_lex_state = 12}, - [5660] = {.lex_state = 66, .external_lex_state = 13}, - [5661] = {.lex_state = 66, .external_lex_state = 12}, - [5662] = {.lex_state = 66, .external_lex_state = 12}, - [5663] = {.lex_state = 66, .external_lex_state = 14}, - [5664] = {.lex_state = 66, .external_lex_state = 15}, + [5657] = {.lex_state = 66, .external_lex_state = 12}, + [5658] = {.lex_state = 6, .external_lex_state = 12}, + [5659] = {.lex_state = 66, .external_lex_state = 13}, + [5660] = {.lex_state = 66, .external_lex_state = 12}, + [5661] = {.lex_state = 66, .external_lex_state = 14}, + [5662] = {.lex_state = 66, .external_lex_state = 11}, + [5663] = {.lex_state = 66, .external_lex_state = 12}, + [5664] = {.lex_state = 66, .external_lex_state = 14}, [5665] = {.lex_state = 66, .external_lex_state = 12}, - [5666] = {.lex_state = 66, .external_lex_state = 12}, - [5667] = {.lex_state = 66, .external_lex_state = 12}, - [5668] = {.lex_state = 66, .external_lex_state = 12}, - [5669] = {.lex_state = 66, .external_lex_state = 12}, - [5670] = {.lex_state = 66, .external_lex_state = 14}, + [5666] = {.lex_state = 66, .external_lex_state = 14}, + [5667] = {.lex_state = 66, .external_lex_state = 14}, + [5668] = {.lex_state = 66, .external_lex_state = 16}, + [5669] = {.lex_state = 66, .external_lex_state = 15}, + [5670] = {.lex_state = 66, .external_lex_state = 13}, [5671] = {.lex_state = 66, .external_lex_state = 12}, - [5672] = {.lex_state = 66, .external_lex_state = 12}, + [5672] = {.lex_state = 66, .external_lex_state = 14}, [5673] = {.lex_state = 66, .external_lex_state = 12}, - [5674] = {.lex_state = 66, .external_lex_state = 12}, + [5674] = {.lex_state = 66, .external_lex_state = 16}, [5675] = {.lex_state = 66, .external_lex_state = 15}, - [5676] = {.lex_state = 66, .external_lex_state = 14}, + [5676] = {.lex_state = 66, .external_lex_state = 15}, [5677] = {.lex_state = 66, .external_lex_state = 12}, - [5678] = {.lex_state = 66, .external_lex_state = 21}, + [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}, + [5680] = {.lex_state = 66, .external_lex_state = 14}, + [5681] = {.lex_state = 66, .external_lex_state = 12}, [5682] = {.lex_state = 66, .external_lex_state = 12}, - [5683] = {.lex_state = 66, .external_lex_state = 12}, - [5684] = {.lex_state = 66, .external_lex_state = 12}, - [5685] = {.lex_state = 66, .external_lex_state = 12}, - [5686] = {.lex_state = 66, .external_lex_state = 16}, - [5687] = {.lex_state = 66, .external_lex_state = 12}, - [5688] = {.lex_state = 66, .external_lex_state = 15}, - [5689] = {.lex_state = 6, .external_lex_state = 12}, + [5683] = {.lex_state = 66, .external_lex_state = 14}, + [5684] = {.lex_state = 66, .external_lex_state = 14}, + [5685] = {.lex_state = 66, .external_lex_state = 16}, + [5686] = {.lex_state = 66, .external_lex_state = 14}, + [5687] = {.lex_state = 6, .external_lex_state = 12}, + [5688] = {.lex_state = 66, .external_lex_state = 12}, + [5689] = {.lex_state = 66, .external_lex_state = 21}, [5690] = {.lex_state = 66, .external_lex_state = 16}, - [5691] = {.lex_state = 66, .external_lex_state = 21}, + [5691] = {.lex_state = 66, .external_lex_state = 12}, [5692] = {.lex_state = 66, .external_lex_state = 12}, - [5693] = {.lex_state = 66, .external_lex_state = 21}, + [5693] = {.lex_state = 66, .external_lex_state = 12}, [5694] = {.lex_state = 66, .external_lex_state = 12}, - [5695] = {.lex_state = 66, .external_lex_state = 16}, + [5695] = {.lex_state = 6, .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 = 14}, - [5700] = {.lex_state = 6, .external_lex_state = 12}, + [5698] = {.lex_state = 66, .external_lex_state = 16}, + [5699] = {.lex_state = 66, .external_lex_state = 12}, + [5700] = {.lex_state = 66, .external_lex_state = 14}, [5701] = {.lex_state = 66, .external_lex_state = 15}, [5702] = {.lex_state = 66, .external_lex_state = 12}, [5703] = {.lex_state = 66, .external_lex_state = 12}, - [5704] = {.lex_state = 66, .external_lex_state = 21}, - [5705] = {.lex_state = 66, .external_lex_state = 21}, - [5706] = {.lex_state = 66, .external_lex_state = 12}, - [5707] = {.lex_state = 66, .external_lex_state = 15}, - [5708] = {.lex_state = 66, .external_lex_state = 12}, - [5709] = {.lex_state = 66, .external_lex_state = 16}, - [5710] = {.lex_state = 66, .external_lex_state = 15}, - [5711] = {.lex_state = 66, .external_lex_state = 15}, + [5704] = {.lex_state = 66, .external_lex_state = 14}, + [5705] = {.lex_state = 66, .external_lex_state = 15}, + [5706] = {.lex_state = 66, .external_lex_state = 14}, + [5707] = {.lex_state = 66, .external_lex_state = 14}, + [5708] = {.lex_state = 66, .external_lex_state = 14}, + [5709] = {.lex_state = 66, .external_lex_state = 14}, + [5710] = {.lex_state = 4, .external_lex_state = 12}, + [5711] = {.lex_state = 66, .external_lex_state = 12}, [5712] = {.lex_state = 66, .external_lex_state = 12}, - [5713] = {.lex_state = 66, .external_lex_state = 16}, - [5714] = {.lex_state = 66, .external_lex_state = 13}, - [5715] = {.lex_state = 66, .external_lex_state = 12}, - [5716] = {.lex_state = 66, .external_lex_state = 12}, - [5717] = {.lex_state = 66, .external_lex_state = 15}, + [5713] = {.lex_state = 66, .external_lex_state = 12}, + [5714] = {.lex_state = 66, .external_lex_state = 14}, + [5715] = {.lex_state = 66, .external_lex_state = 14}, + [5716] = {.lex_state = 66, .external_lex_state = 15}, + [5717] = {.lex_state = 66, .external_lex_state = 12}, [5718] = {.lex_state = 66, .external_lex_state = 12}, [5719] = {.lex_state = 66, .external_lex_state = 12}, - [5720] = {.lex_state = 66, .external_lex_state = 14}, - [5721] = {.lex_state = 6, .external_lex_state = 12}, + [5720] = {.lex_state = 66, .external_lex_state = 15}, + [5721] = {.lex_state = 66, .external_lex_state = 12}, [5722] = {.lex_state = 66, .external_lex_state = 12}, [5723] = {.lex_state = 66, .external_lex_state = 12}, - [5724] = {.lex_state = 66, .external_lex_state = 14}, - [5725] = {.lex_state = 66, .external_lex_state = 12}, + [5724] = {.lex_state = 66, .external_lex_state = 13}, + [5725] = {.lex_state = 66, .external_lex_state = 15}, [5726] = {.lex_state = 66, .external_lex_state = 12}, - [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 = 12}, + [5727] = {.lex_state = 66, .external_lex_state = 21}, + [5728] = {.lex_state = 66, .external_lex_state = 12}, + [5729] = {.lex_state = 66, .external_lex_state = 14}, + [5730] = {.lex_state = 66, .external_lex_state = 16}, [5731] = {.lex_state = 66, .external_lex_state = 12}, - [5732] = {.lex_state = 66, .external_lex_state = 13}, - [5733] = {.lex_state = 66, .external_lex_state = 12}, - [5734] = {.lex_state = 66, .external_lex_state = 16}, + [5732] = {.lex_state = 66, .external_lex_state = 15}, + [5733] = {.lex_state = 66, .external_lex_state = 14}, + [5734] = {.lex_state = 66, .external_lex_state = 12}, [5735] = {.lex_state = 66, .external_lex_state = 15}, - [5736] = {.lex_state = 66, .external_lex_state = 14}, - [5737] = {.lex_state = 6, .external_lex_state = 12}, + [5736] = {.lex_state = 66, .external_lex_state = 16}, + [5737] = {.lex_state = 66, .external_lex_state = 12}, [5738] = {.lex_state = 66, .external_lex_state = 12}, [5739] = {.lex_state = 66, .external_lex_state = 15}, - [5740] = {.lex_state = 66, .external_lex_state = 14}, + [5740] = {.lex_state = 66, .external_lex_state = 21}, [5741] = {.lex_state = 66, .external_lex_state = 12}, - [5742] = {.lex_state = 66, .external_lex_state = 12}, + [5742] = {.lex_state = 66, .external_lex_state = 21}, [5743] = {.lex_state = 66, .external_lex_state = 12}, - [5744] = {.lex_state = 66, .external_lex_state = 12}, - [5745] = {.lex_state = 66, .external_lex_state = 16}, - [5746] = {.lex_state = 66, .external_lex_state = 12}, + [5744] = {.lex_state = 6, .external_lex_state = 12}, + [5745] = {.lex_state = 66, .external_lex_state = 14}, + [5746] = {.lex_state = 66, .external_lex_state = 14}, [5747] = {.lex_state = 66, .external_lex_state = 12}, - [5748] = {.lex_state = 66, .external_lex_state = 12}, - [5749] = {.lex_state = 66, .external_lex_state = 16}, - [5750] = {.lex_state = 66, .external_lex_state = 12}, - [5751] = {.lex_state = 6, .external_lex_state = 12}, - [5752] = {.lex_state = 66, .external_lex_state = 12}, - [5753] = {.lex_state = 66, .external_lex_state = 14}, - [5754] = {.lex_state = 66, .external_lex_state = 16}, - [5755] = {.lex_state = 66, .external_lex_state = 14}, + [5748] = {.lex_state = 66, .external_lex_state = 16}, + [5749] = {.lex_state = 66, .external_lex_state = 12}, + [5750] = {.lex_state = 66, .external_lex_state = 16}, + [5751] = {.lex_state = 66, .external_lex_state = 12}, + [5752] = {.lex_state = 66, .external_lex_state = 14}, + [5753] = {.lex_state = 66, .external_lex_state = 21}, + [5754] = {.lex_state = 66, .external_lex_state = 21}, + [5755] = {.lex_state = 66, .external_lex_state = 12}, [5756] = {.lex_state = 66, .external_lex_state = 14}, - [5757] = {.lex_state = 6, .external_lex_state = 12}, - [5758] = {.lex_state = 66, .external_lex_state = 12}, - [5759] = {.lex_state = 66, .external_lex_state = 12}, + [5757] = {.lex_state = 66, .external_lex_state = 12}, + [5758] = {.lex_state = 66, .external_lex_state = 15}, + [5759] = {.lex_state = 66, .external_lex_state = 15}, [5760] = {.lex_state = 66, .external_lex_state = 12}, - [5761] = {.lex_state = 66, .external_lex_state = 15}, - [5762] = {.lex_state = 66, .external_lex_state = 12}, + [5761] = {.lex_state = 66, .external_lex_state = 16}, + [5762] = {.lex_state = 66, .external_lex_state = 16}, [5763] = {.lex_state = 66, .external_lex_state = 15}, [5764] = {.lex_state = 66, .external_lex_state = 12}, - [5765] = {.lex_state = 66, .external_lex_state = 16}, - [5766] = {.lex_state = 66, .external_lex_state = 12}, - [5767] = {.lex_state = 66, .external_lex_state = 12}, - [5768] = {.lex_state = 66, .external_lex_state = 21}, - [5769] = {.lex_state = 66, .external_lex_state = 11}, + [5765] = {.lex_state = 66, .external_lex_state = 12}, + [5766] = {.lex_state = 6, .external_lex_state = 12}, + [5767] = {.lex_state = 66, .external_lex_state = 15}, + [5768] = {.lex_state = 66, .external_lex_state = 12}, + [5769] = {.lex_state = 66, .external_lex_state = 12}, [5770] = {.lex_state = 66, .external_lex_state = 12}, - [5771] = {.lex_state = 6, .external_lex_state = 12}, - [5772] = {.lex_state = 66, .external_lex_state = 15}, - [5773] = {.lex_state = 66, .external_lex_state = 12}, - [5774] = {.lex_state = 66, .external_lex_state = 14}, + [5771] = {.lex_state = 66, .external_lex_state = 12}, + [5772] = {.lex_state = 66, .external_lex_state = 12}, + [5773] = {.lex_state = 66, .external_lex_state = 14}, + [5774] = {.lex_state = 66, .external_lex_state = 16}, [5775] = {.lex_state = 66, .external_lex_state = 12}, [5776] = {.lex_state = 66, .external_lex_state = 12}, - [5777] = {.lex_state = 66, .external_lex_state = 12}, - [5778] = {.lex_state = 66, .external_lex_state = 12}, - [5779] = {.lex_state = 66, .external_lex_state = 12}, + [5777] = {.lex_state = 66, .external_lex_state = 14}, + [5778] = {.lex_state = 66, .external_lex_state = 15}, + [5779] = {.lex_state = 66, .external_lex_state = 16}, [5780] = {.lex_state = 66, .external_lex_state = 12}, [5781] = {.lex_state = 66, .external_lex_state = 12}, - [5782] = {.lex_state = 66, .external_lex_state = 12}, + [5782] = {.lex_state = 66, .external_lex_state = 14}, [5783] = {.lex_state = 66, .external_lex_state = 12}, [5784] = {.lex_state = 66, .external_lex_state = 12}, - [5785] = {.lex_state = 66, .external_lex_state = 12}, + [5785] = {.lex_state = 6, .external_lex_state = 12}, [5786] = {.lex_state = 66, .external_lex_state = 12}, - [5787] = {.lex_state = 66, .external_lex_state = 12}, - [5788] = {.lex_state = 66, .external_lex_state = 14}, - [5789] = {.lex_state = 66, .external_lex_state = 12}, + [5787] = {.lex_state = 66, .external_lex_state = 14}, + [5788] = {.lex_state = 66, .external_lex_state = 12}, + [5789] = {.lex_state = 66, .external_lex_state = 15}, [5790] = {.lex_state = 66, .external_lex_state = 12}, - [5791] = {.lex_state = 66, .external_lex_state = 16}, + [5791] = {.lex_state = 66, .external_lex_state = 12}, [5792] = {.lex_state = 66, .external_lex_state = 12}, [5793] = {.lex_state = 66, .external_lex_state = 12}, - [5794] = {.lex_state = 66, .external_lex_state = 12}, - [5795] = {.lex_state = 66, .external_lex_state = 12}, + [5794] = {.lex_state = 66, .external_lex_state = 15}, + [5795] = {.lex_state = 66, .external_lex_state = 16}, [5796] = {.lex_state = 66, .external_lex_state = 12}, - [5797] = {.lex_state = 66, .external_lex_state = 12}, - [5798] = {.lex_state = 66, .external_lex_state = 12}, + [5797] = {.lex_state = 66, .external_lex_state = 15}, + [5798] = {.lex_state = 66, .external_lex_state = 15}, [5799] = {.lex_state = 66, .external_lex_state = 12}, - [5800] = {.lex_state = 6, .external_lex_state = 12}, - [5801] = {.lex_state = 66, .external_lex_state = 12}, + [5800] = {.lex_state = 66, .external_lex_state = 12}, + [5801] = {.lex_state = 6, .external_lex_state = 12}, [5802] = {.lex_state = 66, .external_lex_state = 12}, [5803] = {.lex_state = 66, .external_lex_state = 12}, [5804] = {.lex_state = 66, .external_lex_state = 15}, - [5805] = {.lex_state = 66, .external_lex_state = 15}, + [5805] = {.lex_state = 66, .external_lex_state = 14}, [5806] = {.lex_state = 66, .external_lex_state = 12}, - [5807] = {.lex_state = 66, .external_lex_state = 14}, + [5807] = {.lex_state = 6, .external_lex_state = 12}, [5808] = {.lex_state = 66, .external_lex_state = 12}, - [5809] = {.lex_state = 66, .external_lex_state = 15}, - [5810] = {.lex_state = 66, .external_lex_state = 12}, - [5811] = {.lex_state = 66, .external_lex_state = 12}, + [5809] = {.lex_state = 66, .external_lex_state = 12}, + [5810] = {.lex_state = 66, .external_lex_state = 15}, + [5811] = {.lex_state = 66, .external_lex_state = 13}, [5812] = {.lex_state = 66, .external_lex_state = 12}, - [5813] = {.lex_state = 66, .external_lex_state = 12}, + [5813] = {.lex_state = 66, .external_lex_state = 14}, [5814] = {.lex_state = 66, .external_lex_state = 12}, - [5815] = {.lex_state = 66, .external_lex_state = 12}, + [5815] = {.lex_state = 66, .external_lex_state = 21}, [5816] = {.lex_state = 66, .external_lex_state = 12}, [5817] = {.lex_state = 66, .external_lex_state = 12}, - [5818] = {.lex_state = 66, .external_lex_state = 12}, + [5818] = {.lex_state = 66, .external_lex_state = 14}, [5819] = {.lex_state = 66, .external_lex_state = 12}, - [5820] = {.lex_state = 66, .external_lex_state = 15}, - [5821] = {.lex_state = 66, .external_lex_state = 12}, - [5822] = {.lex_state = 6, .external_lex_state = 12}, + [5820] = {.lex_state = 66, .external_lex_state = 12}, + [5821] = {.lex_state = 66, .external_lex_state = 15}, + [5822] = {.lex_state = 66, .external_lex_state = 12}, [5823] = {.lex_state = 66, .external_lex_state = 12}, - [5824] = {.lex_state = 66, .external_lex_state = 12}, + [5824] = {.lex_state = 66, .external_lex_state = 13}, [5825] = {.lex_state = 66, .external_lex_state = 12}, - [5826] = {.lex_state = 66, .external_lex_state = 16}, + [5826] = {.lex_state = 66, .external_lex_state = 12}, + [5827] = {.lex_state = 66, .external_lex_state = 12}, + [5828] = {.lex_state = 66, .external_lex_state = 12}, + [5829] = {.lex_state = 66, .external_lex_state = 12}, + [5830] = {.lex_state = 66, .external_lex_state = 12}, + [5831] = {.lex_state = 66, .external_lex_state = 12}, + [5832] = {.lex_state = 66, .external_lex_state = 12}, + [5833] = {.lex_state = 66, .external_lex_state = 12}, + [5834] = {.lex_state = 6, .external_lex_state = 12}, + [5835] = {.lex_state = 66, .external_lex_state = 12}, + [5836] = {.lex_state = 66, .external_lex_state = 14}, + [5837] = {.lex_state = 66, .external_lex_state = 12}, + [5838] = {.lex_state = 66, .external_lex_state = 12}, + [5839] = {.lex_state = 66, .external_lex_state = 12}, + [5840] = {.lex_state = 66, .external_lex_state = 12}, + [5841] = {.lex_state = 66, .external_lex_state = 14}, + [5842] = {.lex_state = 66, .external_lex_state = 12}, + [5843] = {.lex_state = 66, .external_lex_state = 15}, + [5844] = {.lex_state = 66, .external_lex_state = 12}, + [5845] = {.lex_state = 66, .external_lex_state = 12}, + [5846] = {.lex_state = 66, .external_lex_state = 12}, + [5847] = {.lex_state = 66, .external_lex_state = 12}, + [5848] = {.lex_state = 66, .external_lex_state = 12}, + [5849] = {.lex_state = 66, .external_lex_state = 14}, + [5850] = {.lex_state = 66, .external_lex_state = 12}, + [5851] = {.lex_state = 66, .external_lex_state = 12}, + [5852] = {.lex_state = 66, .external_lex_state = 15}, + [5853] = {.lex_state = 66, .external_lex_state = 12}, + [5854] = {.lex_state = 66, .external_lex_state = 21}, + [5855] = {.lex_state = 66, .external_lex_state = 14}, + [5856] = {.lex_state = 66, .external_lex_state = 16}, + [5857] = {.lex_state = 66, .external_lex_state = 12}, + [5858] = {.lex_state = 66, .external_lex_state = 14}, + [5859] = {.lex_state = 66, .external_lex_state = 12}, + [5860] = {.lex_state = 66, .external_lex_state = 12}, + [5861] = {.lex_state = 66, .external_lex_state = 16}, + [5862] = {.lex_state = 66, .external_lex_state = 12}, + [5863] = {.lex_state = 66, .external_lex_state = 16}, + [5864] = {.lex_state = 66, .external_lex_state = 12}, + [5865] = {.lex_state = 66, .external_lex_state = 14}, + [5866] = {.lex_state = 66, .external_lex_state = 12}, + [5867] = {.lex_state = 66, .external_lex_state = 12}, + [5868] = {.lex_state = 66, .external_lex_state = 12}, + [5869] = {.lex_state = 66, .external_lex_state = 12}, + [5870] = {.lex_state = 66, .external_lex_state = 16}, + [5871] = {.lex_state = 66, .external_lex_state = 12}, + [5872] = {.lex_state = 6, .external_lex_state = 12}, + [5873] = {.lex_state = 66, .external_lex_state = 12}, + [5874] = {.lex_state = 6, .external_lex_state = 12}, + [5875] = {.lex_state = 66, .external_lex_state = 15}, + [5876] = {.lex_state = 66, .external_lex_state = 12}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -19257,6 +19433,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1), [anon_sym_include] = ACTIONS(1), [anon_sym_DEF] = ACTIONS(1), + [anon_sym_IF] = ACTIONS(1), + [anon_sym_ELIF] = ACTIONS(1), + [anon_sym_ELSE] = ACTIONS(1), [anon_sym_cdef] = ACTIONS(1), [anon_sym_cpdef] = ACTIONS(1), [anon_sym_extern] = ACTIONS(1), @@ -19317,85 +19496,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(5565), - [sym__statement] = STATE(209), - [sym__simple_statements] = STATE(209), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [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(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_class_definition] = STATE(209), - [sym_decorated_definition] = STATE(209), - [sym_decorator] = STATE(3277), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_run_directive] = STATE(210), - [sym_property_definition] = STATE(209), - [sym_include_statement] = STATE(4836), - [sym_def_statement] = STATE(209), - [sym_cdef_statement] = STATE(209), - [sym_ctypedef_statement] = STATE(209), - [sym_storageclass] = STATE(3917), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(209), - [aux_sym_class_definition_repeat1] = STATE(3917), - [aux_sym_decorated_definition_repeat1] = STATE(3277), + [sym_module] = STATE(5613), + [sym__statement] = STATE(213), + [sym__simple_statements] = STATE(213), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_if_statement] = STATE(213), + [sym_match_statement] = STATE(213), + [sym_for_statement] = STATE(213), + [sym_while_statement] = STATE(213), + [sym_try_statement] = STATE(213), + [sym_with_statement] = STATE(213), + [sym_function_definition] = STATE(213), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_class_definition] = STATE(213), + [sym_decorated_definition] = STATE(213), + [sym_decorator] = STATE(3315), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_run_directive] = STATE(216), + [sym_property_definition] = STATE(213), + [sym_include_statement] = STATE(5070), + [sym_DEF_statement] = STATE(213), + [sym_IF_statement] = STATE(213), + [sym_cdef_statement] = STATE(213), + [sym_ctypedef_statement] = STATE(213), + [sym_storageclass] = STATE(3963), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(213), + [aux_sym_class_definition_repeat1] = STATE(3963), + [aux_sym_decorated_definition_repeat1] = STATE(3315), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -19449,96 +19629,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(91), [anon_sym_include] = ACTIONS(93), [anon_sym_DEF] = ACTIONS(95), - [anon_sym_cdef] = ACTIONS(97), - [anon_sym_cpdef] = ACTIONS(97), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(101), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), + [anon_sym_IF] = ACTIONS(97), + [anon_sym_cdef] = ACTIONS(99), + [anon_sym_cpdef] = ACTIONS(99), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(103), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, [2] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(576), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(585), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19553,19 +19735,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -19587,100 +19769,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [3] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [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(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3972), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(215), + [sym__simple_statements] = STATE(215), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(215), + [sym_match_statement] = STATE(215), + [sym_for_statement] = STATE(215), + [sym_while_statement] = STATE(215), + [sym_try_statement] = STATE(215), + [sym_with_statement] = STATE(215), + [sym_function_definition] = STATE(215), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(215), + [sym_decorated_definition] = STATE(215), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3990), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(215), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(215), + [sym_IF_statement] = STATE(215), + [sym_cdef_statement] = STATE(215), + [sym_ctypedef_statement] = STATE(215), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(215), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19695,19 +19879,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -19729,100 +19913,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(141), + [sym_string_start] = ACTIONS(109), }, [4] = { - [sym__statement] = STATE(206), - [sym__simple_statements] = STATE(206), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [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(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(206), - [sym_decorated_definition] = STATE(206), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3980), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(206), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(206), - [sym_cdef_statement] = STATE(206), - [sym_ctypedef_statement] = STATE(206), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(206), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(215), + [sym__simple_statements] = STATE(215), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(215), + [sym_match_statement] = STATE(215), + [sym_for_statement] = STATE(215), + [sym_while_statement] = STATE(215), + [sym_try_statement] = STATE(215), + [sym_with_statement] = STATE(215), + [sym_function_definition] = STATE(215), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(215), + [sym_decorated_definition] = STATE(215), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(4079), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(215), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(215), + [sym_IF_statement] = STATE(215), + [sym_cdef_statement] = STATE(215), + [sym_ctypedef_statement] = STATE(215), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(215), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19837,19 +20023,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -19871,100 +20057,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(141), + [sym_string_start] = ACTIONS(109), }, [5] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(945), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(881), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -19979,19 +20167,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20013,100 +20201,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [6] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1113), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1109), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20121,19 +20311,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20155,100 +20345,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [7] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1117), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1071), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20263,19 +20455,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20297,100 +20489,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [8] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1773), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1481), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20405,19 +20599,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20439,100 +20633,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [9] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1227), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1365), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20547,19 +20743,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20581,100 +20777,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [10] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1487), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1597), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20689,19 +20887,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20723,100 +20921,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [11] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1365), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(894), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20831,19 +21031,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -20865,100 +21065,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [12] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1101), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1201), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -20973,19 +21175,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21007,100 +21209,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [13] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1581), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1061), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21115,19 +21319,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21149,100 +21353,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [14] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1659), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1470), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21257,19 +21463,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21291,100 +21497,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [15] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1285), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1567), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21399,19 +21607,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21433,100 +21641,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [16] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1290), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1313), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21541,19 +21751,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21575,100 +21785,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [17] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1292), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1320), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21683,19 +21895,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21717,100 +21929,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [18] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1325), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1321), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21825,19 +22039,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -21859,100 +22073,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [19] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1350), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1358), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -21967,19 +22183,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22001,100 +22217,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [20] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1257), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1394), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22109,19 +22327,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22143,100 +22361,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [21] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1746), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1423), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22251,19 +22471,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22285,100 +22505,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [22] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1088), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1517), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22393,19 +22615,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22427,100 +22649,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [23] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1089), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1059), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22535,19 +22759,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22569,100 +22793,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [24] = { - [sym__statement] = STATE(211), - [sym__simple_statements] = STATE(211), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(211), - [sym_match_statement] = STATE(211), - [sym_for_statement] = STATE(211), - [sym_while_statement] = STATE(211), - [sym_try_statement] = STATE(211), - [sym_with_statement] = STATE(211), - [sym_function_definition] = STATE(211), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(211), - [sym_decorated_definition] = STATE(211), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1073), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(211), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(211), - [sym_cdef_statement] = STATE(211), - [sym_ctypedef_statement] = STATE(211), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(211), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22677,19 +22903,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22711,100 +22937,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [25] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1761), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(217), + [sym__simple_statements] = STATE(217), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(217), + [sym_match_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_try_statement] = STATE(217), + [sym_with_statement] = STATE(217), + [sym_function_definition] = STATE(217), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(217), + [sym_decorated_definition] = STATE(217), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(998), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(217), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(217), + [sym_IF_statement] = STATE(217), + [sym_cdef_statement] = STATE(217), + [sym_ctypedef_statement] = STATE(217), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(217), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22819,19 +23047,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22853,100 +23081,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(109), }, [26] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1767), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1460), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -22961,19 +23191,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -22995,100 +23225,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [27] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1263), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1516), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23103,19 +23335,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23137,100 +23369,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [28] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1281), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1300), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23245,19 +23479,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23279,100 +23513,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [29] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1291), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1310), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23387,19 +23623,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23421,100 +23657,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [30] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1302), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1323), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23529,19 +23767,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23563,100 +23801,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [31] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1361), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1329), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23671,19 +23911,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23705,100 +23945,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [32] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1415), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1366), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23813,19 +24055,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23847,100 +24089,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [33] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1195), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1244), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -23955,19 +24199,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -23989,100 +24233,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [34] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1196), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1250), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24097,19 +24343,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24131,100 +24377,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [35] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1208), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1252), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24239,19 +24487,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24273,100 +24521,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [36] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1123), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1264), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24381,19 +24631,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24415,100 +24665,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [37] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1124), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1072), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24523,19 +24775,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24557,100 +24809,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [38] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1553), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1085), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24665,19 +24919,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24699,100 +24953,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [39] = { - [sym__statement] = STATE(211), - [sym__simple_statements] = STATE(211), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(211), - [sym_match_statement] = STATE(211), - [sym_for_statement] = STATE(211), - [sym_while_statement] = STATE(211), - [sym_try_statement] = STATE(211), - [sym_with_statement] = STATE(211), - [sym_function_definition] = STATE(211), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(211), - [sym_decorated_definition] = STATE(211), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1035), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(211), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(211), - [sym_cdef_statement] = STATE(211), - [sym_ctypedef_statement] = STATE(211), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(211), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1436), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24807,19 +25063,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24841,100 +25097,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [40] = { - [sym__statement] = STATE(215), - [sym__simple_statements] = STATE(215), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(215), - [sym_match_statement] = STATE(215), - [sym_for_statement] = STATE(215), - [sym_while_statement] = STATE(215), - [sym_try_statement] = STATE(215), - [sym_with_statement] = STATE(215), - [sym_function_definition] = STATE(215), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(215), - [sym_decorated_definition] = STATE(215), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1036), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(215), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(215), - [sym_cdef_statement] = STATE(215), - [sym_ctypedef_statement] = STATE(215), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(215), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(217), + [sym__simple_statements] = STATE(217), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(217), + [sym_match_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_try_statement] = STATE(217), + [sym_with_statement] = STATE(217), + [sym_function_definition] = STATE(217), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(217), + [sym_decorated_definition] = STATE(217), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1000), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(217), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(217), + [sym_IF_statement] = STATE(217), + [sym_cdef_statement] = STATE(217), + [sym_ctypedef_statement] = STATE(217), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(217), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -24949,19 +25207,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -24983,100 +25241,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(109), }, [41] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1558), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(221), + [sym__simple_statements] = STATE(221), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(221), + [sym_match_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_try_statement] = STATE(221), + [sym_with_statement] = STATE(221), + [sym_function_definition] = STATE(221), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(221), + [sym_decorated_definition] = STATE(221), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1002), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(221), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(221), + [sym_IF_statement] = STATE(221), + [sym_cdef_statement] = STATE(221), + [sym_ctypedef_statement] = STATE(221), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(221), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25091,19 +25351,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25125,100 +25385,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(109), }, [42] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1223), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1476), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25233,19 +25495,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25267,100 +25529,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [43] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1248), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1277), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25375,19 +25639,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25409,100 +25673,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [44] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1250), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1289), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25517,19 +25783,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25551,100 +25817,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [45] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1269), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1566), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25659,19 +25927,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25693,100 +25961,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [46] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1328), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1298), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25801,19 +26071,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25835,100 +26105,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [47] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1338), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1307), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -25943,19 +26215,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -25977,100 +26249,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [48] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1355), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1347), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26085,19 +26359,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26119,100 +26393,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [49] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1167), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1351), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26227,19 +26503,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26261,100 +26537,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [50] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(5242), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1356), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26369,19 +26647,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26403,100 +26681,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [51] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1666), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1097), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26511,19 +26791,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26545,100 +26825,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [52] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1171), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(5503), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26653,19 +26935,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26687,100 +26969,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [53] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1674), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1514), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26795,19 +27079,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26829,100 +27113,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [54] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1384), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1103), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -26937,19 +27223,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -26971,100 +27257,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [55] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1399), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1528), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27079,19 +27367,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27113,100 +27401,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [56] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1400), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1375), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27221,19 +27511,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27255,100 +27545,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [57] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1417), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1378), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27363,19 +27655,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27397,100 +27689,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [58] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1419), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1379), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27505,19 +27799,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27539,100 +27833,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [59] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1305), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1118), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27647,19 +27943,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27681,100 +27977,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [60] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1258), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1392), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27789,19 +28087,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27823,100 +28121,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [61] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(5388), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1407), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -27931,19 +28231,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -27965,100 +28265,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [62] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(5438), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1179), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28073,19 +28375,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28107,100 +28409,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [63] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1148), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1185), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28215,19 +28519,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28249,100 +28553,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [64] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1704), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(5451), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28357,19 +28663,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28391,100 +28697,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [65] = { - [sym__statement] = STATE(211), - [sym__simple_statements] = STATE(211), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(211), - [sym_match_statement] = STATE(211), - [sym_for_statement] = STATE(211), - [sym_while_statement] = STATE(211), - [sym_try_statement] = STATE(211), - [sym_with_statement] = STATE(211), - [sym_function_definition] = STATE(211), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(211), - [sym_decorated_definition] = STATE(211), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1066), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(211), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(211), - [sym_cdef_statement] = STATE(211), - [sym_ctypedef_statement] = STATE(211), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(211), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(5463), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28499,19 +28807,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28533,100 +28841,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [66] = { - [sym__statement] = STATE(215), - [sym__simple_statements] = STATE(215), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(215), - [sym_match_statement] = STATE(215), - [sym_for_statement] = STATE(215), - [sym_while_statement] = STATE(215), - [sym_try_statement] = STATE(215), - [sym_with_statement] = STATE(215), - [sym_function_definition] = STATE(215), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(215), - [sym_decorated_definition] = STATE(215), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1072), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(215), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(215), - [sym_cdef_statement] = STATE(215), - [sym_ctypedef_statement] = STATE(215), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(215), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1136), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28641,19 +28951,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28675,100 +28985,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [sym__dedent] = ACTIONS(143), - [sym_string_start] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, [67] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1330), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1537), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -28783,19 +29095,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28817,127 +29129,129 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [68] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1331), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), - [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), + [sym__statement] = STATE(217), + [sym__simple_statements] = STATE(217), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(217), + [sym_match_statement] = STATE(217), + [sym_for_statement] = STATE(217), + [sym_while_statement] = STATE(217), + [sym_try_statement] = STATE(217), + [sym_with_statement] = STATE(217), + [sym_function_definition] = STATE(217), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(217), + [sym_decorated_definition] = STATE(217), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1052), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(217), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(217), + [sym_IF_statement] = STATE(217), + [sym_cdef_statement] = STATE(217), + [sym_ctypedef_statement] = STATE(217), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(217), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), + [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_if] = ACTIONS(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -28959,100 +29273,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(145), + [sym_string_start] = ACTIONS(109), }, [69] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1377), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(221), + [sym__simple_statements] = STATE(221), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(221), + [sym_match_statement] = STATE(221), + [sym_for_statement] = STATE(221), + [sym_while_statement] = STATE(221), + [sym_try_statement] = STATE(221), + [sym_with_statement] = STATE(221), + [sym_function_definition] = STATE(221), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(221), + [sym_decorated_definition] = STATE(221), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1053), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(221), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(221), + [sym_IF_statement] = STATE(221), + [sym_cdef_statement] = STATE(221), + [sym_ctypedef_statement] = STATE(221), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(221), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29067,19 +29383,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29101,100 +29417,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(147), + [sym_string_start] = ACTIONS(109), }, [70] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1382), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1192), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29209,19 +29527,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29243,100 +29561,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [71] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1409), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1193), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29351,19 +29671,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29385,100 +29705,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [72] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1201), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1197), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29493,19 +29815,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29527,100 +29849,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [73] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1207), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1198), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29635,19 +29959,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29669,100 +29993,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [74] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1213), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1202), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29777,19 +30103,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29811,100 +30137,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [75] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(5339), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1213), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -29919,19 +30247,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -29953,100 +30281,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [76] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(5340), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1216), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30061,19 +30391,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30095,100 +30425,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [77] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1276), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1217), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30203,19 +30535,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30237,100 +30569,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [78] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1341), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(5300), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30345,19 +30679,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30379,100 +30713,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [79] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1210), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(5301), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30487,19 +30823,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30521,100 +30857,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [80] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1211), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1222), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30629,19 +30967,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30663,100 +31001,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [81] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1221), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1225), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30771,19 +31111,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30805,100 +31145,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [82] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(5385), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1231), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -30913,19 +31255,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -30947,100 +31289,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [83] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1225), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1232), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31055,19 +31399,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31089,100 +31433,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [84] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1233), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1235), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31197,19 +31543,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31231,100 +31577,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [85] = { - [sym__statement] = STATE(213), - [sym__simple_statements] = STATE(213), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(213), - [sym_match_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_function_definition] = STATE(213), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(213), - [sym_decorated_definition] = STATE(213), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1234), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(213), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(213), - [sym_cdef_statement] = STATE(213), - [sym_ctypedef_statement] = STATE(213), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(213), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(5321), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31339,19 +31687,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31373,100 +31721,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [86] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(933), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1236), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31481,19 +31831,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31515,100 +31865,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [87] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1154), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1239), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31623,19 +31975,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31657,100 +32009,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [88] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1155), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(218), + [sym__simple_statements] = STATE(218), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(218), + [sym_match_statement] = STATE(218), + [sym_for_statement] = STATE(218), + [sym_while_statement] = STATE(218), + [sym_try_statement] = STATE(218), + [sym_with_statement] = STATE(218), + [sym_function_definition] = STATE(218), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(218), + [sym_decorated_definition] = STATE(218), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1240), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(218), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(218), + [sym_IF_statement] = STATE(218), + [sym_cdef_statement] = STATE(218), + [sym_ctypedef_statement] = STATE(218), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(218), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31765,19 +32119,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31799,100 +32153,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(143), + [sym_string_start] = ACTIONS(109), }, [89] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1517), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(904), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -31907,19 +32263,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -31941,100 +32297,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [90] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(531), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1150), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32049,19 +32407,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32083,100 +32441,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [91] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1523), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1151), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32191,19 +32551,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32225,100 +32585,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [92] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3010), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1466), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32333,19 +32695,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32367,100 +32729,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [93] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1159), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(540), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32475,19 +32839,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32509,100 +32873,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [94] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1535), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1473), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32617,19 +32983,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32651,100 +33017,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [95] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1546), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(912), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32759,19 +33127,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32793,100 +33161,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [96] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(541), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3067), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -32901,19 +33271,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -32935,100 +33305,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [97] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(543), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1080), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33043,19 +33415,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33077,100 +33449,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [98] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(544), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1505), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33185,19 +33559,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33219,100 +33593,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [99] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3032), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1533), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33327,19 +33703,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33361,100 +33737,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [100] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(2946), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(550), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33469,19 +33847,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33503,100 +33881,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [101] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(554), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(552), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33611,19 +33991,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33645,100 +34025,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [102] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1564), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(553), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33753,19 +34135,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33787,100 +34169,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [103] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1188), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3116), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -33895,19 +34279,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -33929,100 +34313,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [104] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1191), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3007), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34037,19 +34423,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34071,100 +34457,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [105] = { - [sym__statement] = STATE(217), - [sym__simple_statements] = STATE(217), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(217), - [sym_match_statement] = STATE(217), - [sym_for_statement] = STATE(217), - [sym_while_statement] = STATE(217), - [sym_try_statement] = STATE(217), - [sym_with_statement] = STATE(217), - [sym_function_definition] = STATE(217), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(217), - [sym_decorated_definition] = STATE(217), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1031), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(217), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(217), - [sym_cdef_statement] = STATE(217), - [sym_ctypedef_statement] = STATE(217), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(217), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(563), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34179,19 +34567,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34213,100 +34601,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [106] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1569), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1580), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34321,19 +34711,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34355,100 +34745,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [107] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1572), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1162), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34463,19 +34855,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34497,100 +34889,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [108] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(559), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1115), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34605,19 +34999,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34639,100 +35033,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [109] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(561), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(223), + [sym__simple_statements] = STATE(223), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(223), + [sym_match_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_try_statement] = STATE(223), + [sym_with_statement] = STATE(223), + [sym_function_definition] = STATE(223), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(223), + [sym_decorated_definition] = STATE(223), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1012), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(223), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(223), + [sym_IF_statement] = STATE(223), + [sym_cdef_statement] = STATE(223), + [sym_ctypedef_statement] = STATE(223), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(223), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34747,19 +35143,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34781,100 +35177,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(151), + [sym_string_start] = ACTIONS(109), }, [110] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(563), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1600), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -34889,19 +35287,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -34923,100 +35321,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [111] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3053), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1523), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35031,19 +35431,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35065,100 +35465,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [112] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(2956), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(568), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35173,19 +35575,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35207,100 +35609,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [113] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(578), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(570), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35315,19 +35719,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35349,100 +35753,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [114] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(579), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(572), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35457,19 +35863,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35491,100 +35897,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [115] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1091), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3035), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35599,19 +36007,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35633,100 +36041,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [116] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1092), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(2996), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35741,19 +36151,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35775,100 +36185,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [117] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1593), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(587), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -35883,19 +36295,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -35917,100 +36329,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [118] = { - [sym__statement] = STATE(217), - [sym__simple_statements] = STATE(217), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(217), - [sym_match_statement] = STATE(217), - [sym_for_statement] = STATE(217), - [sym_while_statement] = STATE(217), - [sym_try_statement] = STATE(217), - [sym_with_statement] = STATE(217), - [sym_function_definition] = STATE(217), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(217), - [sym_decorated_definition] = STATE(217), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1070), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(217), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(217), - [sym_cdef_statement] = STATE(217), - [sym_ctypedef_statement] = STATE(217), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(217), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(588), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36025,19 +36439,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36059,100 +36473,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [119] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(218), - [sym_match_statement] = STATE(218), - [sym_for_statement] = STATE(218), - [sym_while_statement] = STATE(218), - [sym_try_statement] = STATE(218), - [sym_with_statement] = STATE(218), - [sym_function_definition] = STATE(218), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1071), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(218), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1130), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36167,19 +36583,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36201,100 +36617,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(149), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [120] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1598), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1131), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36309,19 +36727,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36343,100 +36761,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [121] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(582), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1532), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36451,19 +36871,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36485,100 +36905,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [122] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(586), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(223), + [sym__simple_statements] = STATE(223), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(223), + [sym_match_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_try_statement] = STATE(223), + [sym_with_statement] = STATE(223), + [sym_function_definition] = STATE(223), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(223), + [sym_decorated_definition] = STATE(223), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1054), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(223), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(223), + [sym_IF_statement] = STATE(223), + [sym_cdef_statement] = STATE(223), + [sym_ctypedef_statement] = STATE(223), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(223), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36593,19 +37015,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36627,100 +37049,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(151), + [sym_string_start] = ACTIONS(109), }, [123] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3073), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(224), + [sym__simple_statements] = STATE(224), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(224), + [sym_match_statement] = STATE(224), + [sym_for_statement] = STATE(224), + [sym_while_statement] = STATE(224), + [sym_try_statement] = STATE(224), + [sym_with_statement] = STATE(224), + [sym_function_definition] = STATE(224), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(224), + [sym_decorated_definition] = STATE(224), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1055), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(224), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(224), + [sym_IF_statement] = STATE(224), + [sym_cdef_statement] = STATE(224), + [sym_ctypedef_statement] = STATE(224), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(224), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36735,19 +37159,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36769,100 +37193,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(109), }, [124] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(2966), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1548), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -36877,19 +37303,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -36911,100 +37337,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [125] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(602), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(591), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37019,19 +37447,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37053,100 +37481,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [126] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(604), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(595), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37161,19 +37591,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37195,100 +37625,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [127] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(606), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1558), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37303,19 +37735,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37337,100 +37769,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [128] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1107), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3090), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37445,19 +37879,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37479,100 +37913,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [129] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1675), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(2983), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37587,19 +38023,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37621,100 +38057,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [130] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1109), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(611), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37729,19 +38167,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37763,100 +38201,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [131] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1679), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(613), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -37871,19 +38311,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -37905,100 +38345,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [132] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(607), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(615), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38013,19 +38455,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38047,100 +38489,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [133] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(609), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1123), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38155,19 +38599,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38189,100 +38633,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [134] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(610), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1437), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38297,19 +38743,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38331,100 +38777,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [135] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3085), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1153), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38439,19 +38887,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38473,100 +38921,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [136] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(2970), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1450), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38581,19 +39031,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38615,100 +39065,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [137] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(627), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(616), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38723,19 +39175,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38757,100 +39209,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [138] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(631), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(618), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -38865,19 +39319,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -38899,100 +39353,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [139] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1116), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(619), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39007,19 +39463,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39041,100 +39497,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [140] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1693), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1076), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39149,19 +39607,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39183,100 +39641,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [141] = { - [sym__statement] = STATE(217), - [sym__simple_statements] = STATE(217), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(217), - [sym_match_statement] = STATE(217), - [sym_for_statement] = STATE(217), - [sym_while_statement] = STATE(217), - [sym_try_statement] = STATE(217), - [sym_with_statement] = STATE(217), - [sym_function_definition] = STATE(217), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(217), - [sym_decorated_definition] = STATE(217), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1023), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(217), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(217), - [sym_cdef_statement] = STATE(217), - [sym_ctypedef_statement] = STATE(217), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(217), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3062), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39291,19 +39751,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39325,100 +39785,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [142] = { - [sym__statement] = STATE(218), - [sym__simple_statements] = STATE(218), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(218), - [sym_match_statement] = STATE(218), - [sym_for_statement] = STATE(218), - [sym_while_statement] = STATE(218), - [sym_try_statement] = STATE(218), - [sym_with_statement] = STATE(218), - [sym_function_definition] = STATE(218), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(218), - [sym_decorated_definition] = STATE(218), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1024), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(218), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(218), - [sym_cdef_statement] = STATE(218), - [sym_ctypedef_statement] = STATE(218), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(218), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(2935), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39433,19 +39895,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39467,100 +39929,102 @@ 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(129), [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), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [sym__dedent] = ACTIONS(149), - [sym_string_start] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, [143] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(632), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(635), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39575,19 +40039,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39609,100 +40073,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [144] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(633), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(639), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39717,19 +40183,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39751,100 +40217,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [145] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(635), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1158), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -39859,19 +40327,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -39893,100 +40361,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [146] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3092), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1560), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40001,19 +40471,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40035,100 +40505,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [147] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(2978), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(223), + [sym__simple_statements] = STATE(223), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(223), + [sym_match_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_try_statement] = STATE(223), + [sym_with_statement] = STATE(223), + [sym_function_definition] = STATE(223), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(223), + [sym_decorated_definition] = STATE(223), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(993), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(223), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(223), + [sym_IF_statement] = STATE(223), + [sym_cdef_statement] = STATE(223), + [sym_ctypedef_statement] = STATE(223), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(223), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40143,19 +40615,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40177,100 +40649,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(151), + [sym_string_start] = ACTIONS(109), }, [148] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(646), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(224), + [sym__simple_statements] = STATE(224), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(224), + [sym_match_statement] = STATE(224), + [sym_for_statement] = STATE(224), + [sym_while_statement] = STATE(224), + [sym_try_statement] = STATE(224), + [sym_with_statement] = STATE(224), + [sym_function_definition] = STATE(224), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(224), + [sym_decorated_definition] = STATE(224), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(994), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(224), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(224), + [sym_IF_statement] = STATE(224), + [sym_cdef_statement] = STATE(224), + [sym_ctypedef_statement] = STATE(224), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(224), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40285,19 +40759,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40319,100 +40793,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(153), + [sym_string_start] = ACTIONS(109), }, [149] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(648), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(640), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40427,19 +40903,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40461,100 +40937,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [150] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(649), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(641), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40569,19 +41047,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40603,100 +41081,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [151] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(652), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(643), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40711,19 +41191,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40745,100 +41225,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [152] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3098), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3041), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40853,19 +41335,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -40887,100 +41369,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [153] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(658), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(2955), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -40995,19 +41479,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41029,100 +41513,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [154] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(659), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(654), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41137,19 +41623,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41171,100 +41657,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [155] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(661), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(656), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41279,19 +41767,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41313,100 +41801,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [156] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3100), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(657), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41421,19 +41911,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41455,100 +41945,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [157] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(663), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(660), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41563,19 +42055,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41597,100 +42089,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [158] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3102), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3089), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41705,19 +42199,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41739,100 +42233,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [159] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3019), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(666), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41847,19 +42343,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -41881,100 +42377,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [160] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(680), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(667), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -41989,19 +42487,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42023,100 +42521,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [161] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3065), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(669), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42131,19 +42631,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42165,100 +42665,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [162] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3069), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3094), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42273,19 +42775,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42307,100 +42809,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [163] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3071), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(671), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42415,19 +42919,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42449,100 +42953,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [164] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(689), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3097), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42557,19 +43063,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42591,100 +43097,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [165] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(694), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3036), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42699,19 +43207,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42733,100 +43241,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [166] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3096), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(688), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42841,19 +43351,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -42875,100 +43385,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [167] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3055), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3077), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -42983,19 +43495,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43017,100 +43529,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [168] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3015), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3079), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43125,19 +43639,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43159,100 +43673,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [169] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3001), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3027), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43267,19 +43783,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43301,100 +43817,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [170] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(699), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(697), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43409,19 +43927,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43443,100 +43961,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [171] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(703), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(702), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43551,19 +44071,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43585,100 +44105,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [172] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3016), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3126), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43693,19 +44215,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43727,100 +44249,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [173] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3020), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3133), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43835,19 +44359,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -43869,100 +44393,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [174] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3045), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3138), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -43977,19 +44503,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44011,100 +44537,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [175] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3057), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3141), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44119,19 +44647,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44153,100 +44681,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [176] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(2990), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(707), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44261,19 +44791,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44295,100 +44825,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [177] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(707), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(711), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44403,19 +44935,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44437,100 +44969,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [178] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(709), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3044), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44545,19 +45079,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44579,100 +45113,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [179] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3062), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3074), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44687,19 +45223,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44721,100 +45257,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [180] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3067), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3065), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44829,19 +45367,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -44863,100 +45401,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [181] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3070), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3132), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -44971,19 +45511,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45005,100 +45545,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [182] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3093), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3071), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45113,19 +45655,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45147,100 +45689,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [183] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3104), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(715), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45255,19 +45799,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45289,100 +45833,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [184] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3110), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(717), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45397,19 +45943,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45431,100 +45977,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [185] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(714), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3123), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45539,19 +46087,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45573,100 +46121,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [186] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(715), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3145), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45681,19 +46231,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45715,100 +46265,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [187] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3021), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3150), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45823,19 +46375,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45857,100 +46409,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [188] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3038), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3031), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -45965,19 +46519,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -45999,100 +46553,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [189] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3039), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3040), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46107,19 +46663,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46141,100 +46697,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [190] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3040), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3046), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46249,19 +46807,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46283,100 +46841,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [191] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3044), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(722), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46391,19 +46951,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46425,100 +46985,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [192] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(717), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(723), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46533,19 +47095,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46567,100 +47129,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [193] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(719), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3045), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46675,19 +47239,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46709,100 +47273,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [194] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3076), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3043), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46817,19 +47383,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46851,100 +47417,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [195] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), [sym_block] = STATE(3081), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -46959,19 +47527,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -46993,100 +47561,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [196] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3088), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3122), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47101,19 +47671,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47135,100 +47705,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [197] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3091), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3087), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47243,19 +47815,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47277,100 +47849,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [198] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(722), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(725), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47385,19 +47959,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47419,100 +47993,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [199] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(2985), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(727), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47527,19 +48103,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47561,100 +48137,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [200] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(2987), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3153), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47669,19 +48247,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47703,100 +48281,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [201] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(2989), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3051), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47811,19 +48391,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47845,100 +48425,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [202] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(729), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3055), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -47953,19 +48535,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -47987,100 +48569,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [203] = { - [sym__statement] = STATE(214), - [sym__simple_statements] = STATE(214), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(214), - [sym_match_statement] = STATE(214), - [sym_for_statement] = STATE(214), - [sym_while_statement] = STATE(214), - [sym_try_statement] = STATE(214), - [sym_with_statement] = STATE(214), - [sym_function_definition] = STATE(214), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(214), - [sym_decorated_definition] = STATE(214), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(3000), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(214), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(214), - [sym_cdef_statement] = STATE(214), - [sym_ctypedef_statement] = STATE(214), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(214), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3080), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48095,19 +48679,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48129,100 +48713,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(145), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [204] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(641), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(729), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48237,19 +48823,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48271,100 +48857,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [205] = { - [sym__statement] = STATE(216), - [sym__simple_statements] = STATE(216), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_if_statement] = STATE(216), - [sym_match_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_try_statement] = STATE(216), - [sym_with_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(216), - [sym_decorated_definition] = STATE(216), - [sym_decorator] = STATE(3251), - [sym_block] = STATE(1371), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(216), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(216), - [sym_cdef_statement] = STATE(216), - [sym_ctypedef_statement] = STATE(216), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(216), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3146), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48379,19 +48967,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48413,99 +49001,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(135), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [206] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [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(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3251), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3086), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48520,19 +49111,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48554,241 +49145,246 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(151), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [207] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [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(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3251), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), - [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__dedent] = ACTIONS(297), - [sym_string_start] = ACTIONS(299), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3144), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), + [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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(127), + [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(129), + [anon_sym_include] = ACTIONS(93), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [208] = { - [sym__statement] = STATE(212), - [sym__simple_statements] = STATE(212), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_if_statement] = STATE(212), - [sym_match_statement] = STATE(212), - [sym_for_statement] = STATE(212), - [sym_while_statement] = STATE(212), - [sym_try_statement] = STATE(212), - [sym_with_statement] = STATE(212), - [sym_function_definition] = STATE(212), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_class_definition] = STATE(212), - [sym_decorated_definition] = STATE(212), - [sym_decorator] = STATE(3277), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(212), - [sym_include_statement] = STATE(4836), - [sym_def_statement] = STATE(212), - [sym_cdef_statement] = STATE(212), - [sym_ctypedef_statement] = STATE(212), - [sym_storageclass] = STATE(3917), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(212), - [aux_sym_class_definition_repeat1] = STATE(3917), - [aux_sym_decorated_definition_repeat1] = STATE(3277), - [ts_builtin_sym_end] = ACTIONS(302), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(730), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48803,19 +49399,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48837,99 +49433,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(95), - [anon_sym_cdef] = ACTIONS(97), - [anon_sym_cpdef] = ACTIONS(97), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(101), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [209] = { - [sym__statement] = STATE(212), - [sym__simple_statements] = STATE(212), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_if_statement] = STATE(212), - [sym_match_statement] = STATE(212), - [sym_for_statement] = STATE(212), - [sym_while_statement] = STATE(212), - [sym_try_statement] = STATE(212), - [sym_with_statement] = STATE(212), - [sym_function_definition] = STATE(212), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_class_definition] = STATE(212), - [sym_decorated_definition] = STATE(212), - [sym_decorator] = STATE(3277), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(212), - [sym_include_statement] = STATE(4836), - [sym_def_statement] = STATE(212), - [sym_cdef_statement] = STATE(212), - [sym_ctypedef_statement] = STATE(212), - [sym_storageclass] = STATE(3917), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(212), - [aux_sym_class_definition_repeat1] = STATE(3917), - [aux_sym_decorated_definition_repeat1] = STATE(3277), - [ts_builtin_sym_end] = ACTIONS(304), + [sym__statement] = STATE(220), + [sym__simple_statements] = STATE(220), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(220), + [sym_match_statement] = STATE(220), + [sym_for_statement] = STATE(220), + [sym_while_statement] = STATE(220), + [sym_try_statement] = STATE(220), + [sym_with_statement] = STATE(220), + [sym_function_definition] = STATE(220), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(220), + [sym_decorated_definition] = STATE(220), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(3033), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(220), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(220), + [sym_IF_statement] = STATE(220), + [sym_cdef_statement] = STATE(220), + [sym_ctypedef_statement] = STATE(220), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(220), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -48944,19 +49543,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -48978,99 +49577,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(95), - [anon_sym_cdef] = ACTIONS(97), - [anon_sym_cpdef] = ACTIONS(97), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(101), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(149), + [sym_string_start] = ACTIONS(109), }, [210] = { - [sym__statement] = STATE(208), - [sym__simple_statements] = STATE(208), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [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(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_class_definition] = STATE(208), - [sym_decorated_definition] = STATE(208), - [sym_decorator] = STATE(3277), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(208), - [sym_include_statement] = STATE(4836), - [sym_def_statement] = STATE(208), - [sym_cdef_statement] = STATE(208), - [sym_ctypedef_statement] = STATE(208), - [sym_storageclass] = STATE(3917), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(208), - [aux_sym_class_definition_repeat1] = STATE(3917), - [aux_sym_decorated_definition_repeat1] = STATE(3277), - [ts_builtin_sym_end] = ACTIONS(304), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(650), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49085,19 +49687,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -49119,98 +49721,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(95), - [anon_sym_cdef] = ACTIONS(97), - [anon_sym_cpdef] = ACTIONS(97), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(101), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [211] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [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(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3251), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(222), + [sym__simple_statements] = STATE(222), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(222), + [sym_match_statement] = STATE(222), + [sym_for_statement] = STATE(222), + [sym_while_statement] = STATE(222), + [sym_try_statement] = STATE(222), + [sym_with_statement] = STATE(222), + [sym_function_definition] = STATE(222), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(222), + [sym_decorated_definition] = STATE(222), + [sym_decorator] = STATE(3323), + [sym_block] = STATE(1368), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(222), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(222), + [sym_IF_statement] = STATE(222), + [sym_cdef_statement] = STATE(222), + [sym_ctypedef_statement] = STATE(222), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(222), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49225,19 +49831,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -49259,38 +49865,39 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(306), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(139), + [sym_string_start] = ACTIONS(109), }, [212] = { [sym__statement] = STATE(212), [sym__simple_statements] = STATE(212), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), [sym_if_statement] = STATE(212), [sym_match_statement] = STATE(212), [sym_for_statement] = STATE(212), @@ -49298,201 +49905,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(212), [sym_with_statement] = STATE(212), [sym_function_definition] = STATE(212), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), [sym_class_definition] = STATE(212), [sym_decorated_definition] = STATE(212), - [sym_decorator] = STATE(3277), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), + [sym_decorator] = STATE(3315), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), [sym_property_definition] = STATE(212), - [sym_include_statement] = STATE(4836), - [sym_def_statement] = STATE(212), + [sym_include_statement] = STATE(5070), + [sym_DEF_statement] = STATE(212), + [sym_IF_statement] = STATE(212), [sym_cdef_statement] = STATE(212), [sym_ctypedef_statement] = STATE(212), - [sym_storageclass] = STATE(3917), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [sym_storageclass] = STATE(3963), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [aux_sym_module_repeat1] = STATE(212), - [aux_sym_class_definition_repeat1] = STATE(3917), - [aux_sym_decorated_definition_repeat1] = STATE(3277), - [ts_builtin_sym_end] = ACTIONS(297), - [sym_identifier] = ACTIONS(153), - [anon_sym_import] = ACTIONS(156), - [anon_sym_cimport] = ACTIONS(156), - [anon_sym_from] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(162), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_print] = ACTIONS(168), - [anon_sym_assert] = ACTIONS(171), - [anon_sym_return] = ACTIONS(174), - [anon_sym_del] = ACTIONS(177), - [anon_sym_raise] = ACTIONS(180), - [anon_sym_pass] = ACTIONS(183), - [anon_sym_break] = ACTIONS(186), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_if] = ACTIONS(308), - [anon_sym_match] = ACTIONS(311), - [anon_sym_async] = ACTIONS(314), - [anon_sym_for] = ACTIONS(317), - [anon_sym_while] = ACTIONS(320), - [anon_sym_try] = ACTIONS(323), - [anon_sym_with] = ACTIONS(326), - [anon_sym_def] = ACTIONS(329), - [anon_sym_global] = ACTIONS(216), - [anon_sym_nonlocal] = ACTIONS(219), - [anon_sym_exec] = ACTIONS(222), - [anon_sym_type] = ACTIONS(225), - [anon_sym_class] = ACTIONS(332), - [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(335), - [anon_sym_include] = ACTIONS(276), - [anon_sym_DEF] = ACTIONS(338), - [anon_sym_cdef] = ACTIONS(341), - [anon_sym_cpdef] = ACTIONS(341), - [anon_sym_new] = ACTIONS(285), - [anon_sym_ctypedef] = ACTIONS(344), - [anon_sym_public] = ACTIONS(291), - [anon_sym_packed] = ACTIONS(291), - [anon_sym_inline] = ACTIONS(291), - [anon_sym_readonly] = ACTIONS(291), - [anon_sym_sizeof] = ACTIONS(294), - [sym_string_start] = ACTIONS(299), + [aux_sym_class_definition_repeat1] = STATE(3963), + [aux_sym_decorated_definition_repeat1] = STATE(3315), + [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_IF] = ACTIONS(286), + [anon_sym_cdef] = ACTIONS(289), + [anon_sym_cpdef] = ACTIONS(289), + [anon_sym_new] = ACTIONS(292), + [anon_sym_ctypedef] = ACTIONS(295), + [anon_sym_public] = ACTIONS(298), + [anon_sym_packed] = ACTIONS(298), + [anon_sym_inline] = ACTIONS(298), + [anon_sym_readonly] = ACTIONS(298), + [anon_sym_sizeof] = ACTIONS(301), + [sym_string_start] = ACTIONS(304), }, [213] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [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(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3251), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(212), + [sym__simple_statements] = STATE(212), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_if_statement] = STATE(212), + [sym_match_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_with_statement] = STATE(212), + [sym_function_definition] = STATE(212), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_class_definition] = STATE(212), + [sym_decorated_definition] = STATE(212), + [sym_decorator] = STATE(3315), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(212), + [sym_include_statement] = STATE(5070), + [sym_DEF_statement] = STATE(212), + [sym_IF_statement] = STATE(212), + [sym_cdef_statement] = STATE(212), + [sym_ctypedef_statement] = STATE(212), + [sym_storageclass] = STATE(3963), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(212), + [aux_sym_class_definition_repeat1] = STATE(3963), + [aux_sym_decorated_definition_repeat1] = STATE(3315), + [ts_builtin_sym_end] = ACTIONS(307), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49507,19 +50118,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), @@ -49541,99 +50152,101 @@ 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_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(347), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(95), + [anon_sym_IF] = ACTIONS(97), + [anon_sym_cdef] = ACTIONS(99), + [anon_sym_cpdef] = ACTIONS(99), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(103), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, [214] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [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(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3251), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(212), + [sym__simple_statements] = STATE(212), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_if_statement] = STATE(212), + [sym_match_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_try_statement] = STATE(212), + [sym_with_statement] = STATE(212), + [sym_function_definition] = STATE(212), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_class_definition] = STATE(212), + [sym_decorated_definition] = STATE(212), + [sym_decorator] = STATE(3315), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(212), + [sym_include_statement] = STATE(5070), + [sym_DEF_statement] = STATE(212), + [sym_IF_statement] = STATE(212), + [sym_cdef_statement] = STATE(212), + [sym_ctypedef_statement] = STATE(212), + [sym_storageclass] = STATE(3963), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(212), + [aux_sym_class_definition_repeat1] = STATE(3963), + [aux_sym_decorated_definition_repeat1] = STATE(3315), + [ts_builtin_sym_end] = ACTIONS(309), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49648,19 +50261,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), @@ -49682,99 +50295,100 @@ 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_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(349), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(95), + [anon_sym_IF] = ACTIONS(97), + [anon_sym_cdef] = ACTIONS(99), + [anon_sym_cpdef] = ACTIONS(99), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(103), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, [215] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [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(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3251), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(219), + [sym__simple_statements] = STATE(219), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(219), + [sym_match_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_try_statement] = STATE(219), + [sym_with_statement] = STATE(219), + [sym_function_definition] = STATE(219), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(219), + [sym_decorated_definition] = STATE(219), + [sym_decorator] = STATE(3323), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(219), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(219), + [sym_IF_statement] = STATE(219), + [sym_cdef_statement] = STATE(219), + [sym_ctypedef_statement] = STATE(219), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(219), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49789,19 +50403,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -49823,99 +50437,102 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(351), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(311), + [sym_string_start] = ACTIONS(109), }, [216] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [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(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3251), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(214), + [sym__simple_statements] = STATE(214), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_if_statement] = STATE(214), + [sym_match_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_function_definition] = STATE(214), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_class_definition] = STATE(214), + [sym_decorated_definition] = STATE(214), + [sym_decorator] = STATE(3315), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(214), + [sym_include_statement] = STATE(5070), + [sym_DEF_statement] = STATE(214), + [sym_IF_statement] = STATE(214), + [sym_cdef_statement] = STATE(214), + [sym_ctypedef_statement] = STATE(214), + [sym_storageclass] = STATE(3963), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(214), + [aux_sym_class_definition_repeat1] = STATE(3963), + [aux_sym_decorated_definition_repeat1] = STATE(3315), + [ts_builtin_sym_end] = ACTIONS(307), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -49930,19 +50547,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), @@ -49964,99 +50581,100 @@ 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_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(353), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(95), + [anon_sym_IF] = ACTIONS(97), + [anon_sym_cdef] = ACTIONS(99), + [anon_sym_cpdef] = ACTIONS(99), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(103), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, [217] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [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(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3251), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(219), + [sym__simple_statements] = STATE(219), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(219), + [sym_match_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_try_statement] = STATE(219), + [sym_with_statement] = STATE(219), + [sym_function_definition] = STATE(219), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(219), + [sym_decorated_definition] = STATE(219), + [sym_decorator] = STATE(3323), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(219), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(219), + [sym_IF_statement] = STATE(219), + [sym_cdef_statement] = STATE(219), + [sym_ctypedef_statement] = STATE(219), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(219), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50071,19 +50689,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -50105,99 +50723,101 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(355), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(313), + [sym_string_start] = ACTIONS(109), }, [218] = { - [sym__statement] = STATE(207), - [sym__simple_statements] = STATE(207), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [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(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_class_definition] = STATE(207), - [sym_decorated_definition] = STATE(207), - [sym_decorator] = STATE(3251), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_property_definition] = STATE(207), - [sym_include_statement] = STATE(4878), - [sym_def_statement] = STATE(207), - [sym_cdef_statement] = STATE(207), - [sym_ctypedef_statement] = STATE(207), - [sym_storageclass] = STATE(3863), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [aux_sym_module_repeat1] = STATE(207), - [aux_sym_class_definition_repeat1] = STATE(3863), - [aux_sym_decorated_definition_repeat1] = STATE(3251), + [sym__statement] = STATE(219), + [sym__simple_statements] = STATE(219), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(219), + [sym_match_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_try_statement] = STATE(219), + [sym_with_statement] = STATE(219), + [sym_function_definition] = STATE(219), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(219), + [sym_decorated_definition] = STATE(219), + [sym_decorator] = STATE(3323), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(219), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(219), + [sym_IF_statement] = STATE(219), + [sym_cdef_statement] = STATE(219), + [sym_ctypedef_statement] = STATE(219), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(219), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -50212,19 +50832,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(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [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(127), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -50246,90 +50866,249 @@ 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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_DEF] = ACTIONS(129), - [anon_sym_cdef] = ACTIONS(131), - [anon_sym_cpdef] = ACTIONS(131), - [anon_sym_new] = ACTIONS(99), - [anon_sym_ctypedef] = ACTIONS(133), - [anon_sym_public] = ACTIONS(103), - [anon_sym_packed] = ACTIONS(103), - [anon_sym_inline] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym__dedent] = ACTIONS(357), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(315), + [sym_string_start] = ACTIONS(109), }, [219] = { - [sym__simple_statements] = STATE(1412), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(4786), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [sym__statement] = STATE(219), + [sym__simple_statements] = STATE(219), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(219), + [sym_match_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_try_statement] = STATE(219), + [sym_with_statement] = STATE(219), + [sym_function_definition] = STATE(219), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(219), + [sym_decorated_definition] = STATE(219), + [sym_decorator] = STATE(3323), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(219), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(219), + [sym_IF_statement] = STATE(219), + [sym_cdef_statement] = STATE(219), + [sym_ctypedef_statement] = STATE(219), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(219), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), + [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(317), + [anon_sym_match] = ACTIONS(320), + [anon_sym_async] = ACTIONS(323), + [anon_sym_for] = ACTIONS(326), + [anon_sym_while] = ACTIONS(329), + [anon_sym_try] = ACTIONS(332), + [anon_sym_with] = ACTIONS(335), + [anon_sym_def] = ACTIONS(338), + [anon_sym_global] = ACTIONS(220), + [anon_sym_nonlocal] = ACTIONS(223), + [anon_sym_exec] = ACTIONS(226), + [anon_sym_type] = ACTIONS(229), + [anon_sym_class] = ACTIONS(341), + [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(344), + [anon_sym_include] = ACTIONS(280), + [anon_sym_DEF] = ACTIONS(347), + [anon_sym_IF] = ACTIONS(350), + [anon_sym_cdef] = ACTIONS(353), + [anon_sym_cpdef] = ACTIONS(353), + [anon_sym_new] = ACTIONS(292), + [anon_sym_ctypedef] = ACTIONS(356), + [anon_sym_public] = ACTIONS(298), + [anon_sym_packed] = ACTIONS(298), + [anon_sym_inline] = ACTIONS(298), + [anon_sym_readonly] = ACTIONS(298), + [anon_sym_sizeof] = ACTIONS(301), + [sym__dedent] = ACTIONS(155), + [sym_string_start] = ACTIONS(304), + }, + [220] = { + [sym__statement] = STATE(219), + [sym__simple_statements] = STATE(219), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(219), + [sym_match_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_try_statement] = STATE(219), + [sym_with_statement] = STATE(219), + [sym_function_definition] = STATE(219), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(219), + [sym_decorated_definition] = STATE(219), + [sym_decorator] = STATE(3323), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(219), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(219), + [sym_IF_statement] = STATE(219), + [sym_cdef_statement] = STATE(219), + [sym_ctypedef_statement] = STATE(219), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(219), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -50339,13 +51118,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(127), [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), @@ -50360,97 +51147,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(375), - [sym__indent] = ACTIONS(377), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(359), + [sym_string_start] = ACTIONS(109), }, - [220] = { - [sym__simple_statements] = STATE(1329), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(5006), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [221] = { + [sym__statement] = STATE(219), + [sym__simple_statements] = STATE(219), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(219), + [sym_match_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_try_statement] = STATE(219), + [sym_with_statement] = STATE(219), + [sym_function_definition] = STATE(219), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(219), + [sym_decorated_definition] = STATE(219), + [sym_decorator] = STATE(3323), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(219), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(219), + [sym_IF_statement] = STATE(219), + [sym_cdef_statement] = STATE(219), + [sym_ctypedef_statement] = STATE(219), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(219), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -50460,13 +51261,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(127), [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), @@ -50481,97 +51290,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(379), - [sym__indent] = ACTIONS(381), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(361), + [sym_string_start] = ACTIONS(109), }, - [221] = { - [sym__simple_statements] = STATE(681), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(5124), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [222] = { + [sym__statement] = STATE(219), + [sym__simple_statements] = STATE(219), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(219), + [sym_match_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_try_statement] = STATE(219), + [sym_with_statement] = STATE(219), + [sym_function_definition] = STATE(219), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(219), + [sym_decorated_definition] = STATE(219), + [sym_decorator] = STATE(3323), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(219), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(219), + [sym_IF_statement] = STATE(219), + [sym_cdef_statement] = STATE(219), + [sym_ctypedef_statement] = STATE(219), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(219), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -50581,13 +51404,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(127), [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), @@ -50602,97 +51433,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(383), - [sym__indent] = ACTIONS(385), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(363), + [sym_string_start] = ACTIONS(109), }, - [222] = { - [sym__simple_statements] = STATE(1339), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(4959), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [223] = { + [sym__statement] = STATE(219), + [sym__simple_statements] = STATE(219), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(219), + [sym_match_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_try_statement] = STATE(219), + [sym_with_statement] = STATE(219), + [sym_function_definition] = STATE(219), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(219), + [sym_decorated_definition] = STATE(219), + [sym_decorator] = STATE(3323), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(219), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(219), + [sym_IF_statement] = STATE(219), + [sym_cdef_statement] = STATE(219), + [sym_ctypedef_statement] = STATE(219), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(219), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -50702,13 +51547,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(127), [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), @@ -50723,97 +51576,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(387), - [sym__indent] = ACTIONS(389), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(365), + [sym_string_start] = ACTIONS(109), }, - [223] = { - [sym__simple_statements] = STATE(690), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(5185), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [224] = { + [sym__statement] = STATE(219), + [sym__simple_statements] = STATE(219), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_if_statement] = STATE(219), + [sym_match_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_try_statement] = STATE(219), + [sym_with_statement] = STATE(219), + [sym_function_definition] = STATE(219), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_class_definition] = STATE(219), + [sym_decorated_definition] = STATE(219), + [sym_decorator] = STATE(3323), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_property_definition] = STATE(219), + [sym_include_statement] = STATE(5099), + [sym_DEF_statement] = STATE(219), + [sym_IF_statement] = STATE(219), + [sym_cdef_statement] = STATE(219), + [sym_ctypedef_statement] = STATE(219), + [sym_storageclass] = STATE(3905), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [aux_sym_module_repeat1] = STATE(219), + [aux_sym_class_definition_repeat1] = STATE(3905), + [aux_sym_decorated_definition_repeat1] = STATE(3323), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -50823,13 +51690,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_async] = ACTIONS(115), + [anon_sym_for] = ACTIONS(117), + [anon_sym_while] = ACTIONS(119), + [anon_sym_try] = ACTIONS(121), + [anon_sym_with] = ACTIONS(123), + [anon_sym_def] = ACTIONS(125), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(127), [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), @@ -50844,97 +51719,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [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(129), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(391), - [sym__indent] = ACTIONS(393), - [sym_string_start] = ACTIONS(107), + [anon_sym_DEF] = ACTIONS(131), + [anon_sym_IF] = ACTIONS(133), + [anon_sym_cdef] = ACTIONS(135), + [anon_sym_cpdef] = ACTIONS(135), + [anon_sym_new] = ACTIONS(101), + [anon_sym_ctypedef] = ACTIONS(137), + [anon_sym_public] = ACTIONS(105), + [anon_sym_packed] = ACTIONS(105), + [anon_sym_inline] = ACTIONS(105), + [anon_sym_readonly] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [sym__dedent] = ACTIONS(367), + [sym_string_start] = ACTIONS(109), }, - [224] = { - [sym__simple_statements] = STATE(1366), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(5207), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [225] = { + [sym__simple_statements] = STATE(708), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(4776), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -50944,8 +51818,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -50965,97 +51839,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(395), - [sym__indent] = ACTIONS(397), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(385), + [sym__indent] = ACTIONS(387), + [sym_string_start] = ACTIONS(109), }, - [225] = { - [sym__simple_statements] = STATE(708), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(4753), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [226] = { + [sym__simple_statements] = STATE(716), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(4801), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -51065,8 +51939,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51086,97 +51960,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(399), - [sym__indent] = ACTIONS(401), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(389), + [sym__indent] = ACTIONS(391), + [sym_string_start] = ACTIONS(109), }, - [226] = { - [sym__simple_statements] = STATE(718), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(4793), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [227] = { + [sym__simple_statements] = STATE(689), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(5219), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -51186,8 +52060,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51207,97 +52081,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(403), - [sym__indent] = ACTIONS(405), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(393), + [sym__indent] = ACTIONS(395), + [sym_string_start] = ACTIONS(109), }, - [227] = { - [sym__simple_statements] = STATE(1255), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), + [228] = { + [sym__simple_statements] = STATE(1359), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(4928), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), + [anon_sym_import] = ACTIONS(11), + [anon_sym_cimport] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(371), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(373), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(397), + [sym__indent] = ACTIONS(399), + [sym_string_start] = ACTIONS(109), + }, + [229] = { + [sym__simple_statements] = STATE(698), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(5255), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), + [anon_sym_import] = ACTIONS(11), + [anon_sym_cimport] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(371), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(373), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(401), + [sym__indent] = ACTIONS(403), + [sym_string_start] = ACTIONS(109), + }, + [230] = { + [sym__simple_statements] = STATE(1386), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), [sym_c_type] = STATE(4921), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -51307,8 +52423,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51328,97 +52444,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(407), - [sym__indent] = ACTIONS(409), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(405), + [sym__indent] = ACTIONS(407), + [sym_string_start] = ACTIONS(109), }, - [228] = { - [sym__simple_statements] = STATE(3033), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(5193), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [231] = { + [sym__simple_statements] = STATE(726), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(4836), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -51428,8 +52544,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51449,97 +52565,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(411), - [sym__indent] = ACTIONS(413), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(409), + [sym__indent] = ACTIONS(411), + [sym_string_start] = ACTIONS(109), }, - [229] = { - [sym__simple_statements] = STATE(3074), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(5058), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [232] = { + [sym__simple_statements] = STATE(1342), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(4818), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -51549,8 +52665,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51570,97 +52686,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(415), - [sym__indent] = ACTIONS(417), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(413), + [sym__indent] = ACTIONS(415), + [sym_string_start] = ACTIONS(109), }, - [230] = { - [sym__simple_statements] = STATE(713), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(4776), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [233] = { + [sym__simple_statements] = STATE(3091), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(4889), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -51670,8 +52786,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51691,97 +52807,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(419), - [sym__indent] = ACTIONS(421), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(417), + [sym__indent] = ACTIONS(419), + [sym_string_start] = ACTIONS(109), }, - [231] = { - [sym__simple_statements] = STATE(700), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(4726), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [234] = { + [sym__simple_statements] = STATE(3068), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(5186), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -51791,8 +52907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51812,97 +52928,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(423), - [sym__indent] = ACTIONS(425), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(421), + [sym__indent] = ACTIONS(423), + [sym_string_start] = ACTIONS(109), }, - [232] = { - [sym__simple_statements] = STATE(3011), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(4722), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [235] = { + [sym__simple_statements] = STATE(721), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(4819), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -51912,8 +53028,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -51933,97 +53049,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(427), - [sym__indent] = ACTIONS(429), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(425), + [sym__indent] = ACTIONS(427), + [sym_string_start] = ACTIONS(109), }, - [233] = { - [sym__simple_statements] = STATE(3094), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(5223), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [236] = { + [sym__simple_statements] = STATE(3076), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(4829), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -52033,8 +53149,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52054,97 +53170,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(431), - [sym__indent] = ACTIONS(433), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(429), + [sym__indent] = ACTIONS(431), + [sym_string_start] = ACTIONS(109), }, - [234] = { - [sym__simple_statements] = STATE(1286), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(4919), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [237] = { + [sym__simple_statements] = STATE(1200), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(5034), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -52154,8 +53270,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52175,97 +53291,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(435), - [sym__indent] = ACTIONS(437), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(433), + [sym__indent] = ACTIONS(435), + [sym_string_start] = ACTIONS(109), }, - [235] = { - [sym__simple_statements] = STATE(3054), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(4865), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [238] = { + [sym__simple_statements] = STATE(3042), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(4971), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -52275,8 +53391,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52296,97 +53412,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(439), - [sym__indent] = ACTIONS(441), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(437), + [sym__indent] = ACTIONS(439), + [sym_string_start] = ACTIONS(109), }, - [236] = { - [sym__simple_statements] = STATE(3084), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_int_type] = STATE(3587), - [sym__signedness] = STATE(3210), - [sym__longness] = STATE(3416), - [sym_function_pointer_type] = STATE(3587), - [sym_c_type] = STATE(5176), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(359), + [239] = { + [sym__simple_statements] = STATE(1301), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(5226), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(17), [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), @@ -52396,8 +53512,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -52417,100 +53533,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [anon_sym_include] = ACTIONS(93), - [anon_sym_int] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [anon_sym_complex] = ACTIONS(365), - [anon_sym_new] = ACTIONS(99), - [anon_sym_signed] = ACTIONS(367), - [anon_sym_unsigned] = ACTIONS(367), - [anon_sym_char] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_long] = ACTIONS(371), - [anon_sym_const] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(443), - [sym__indent] = ACTIONS(445), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(441), + [sym__indent] = ACTIONS(443), + [sym_string_start] = ACTIONS(109), }, - [237] = { - [sym__simple_statements] = STATE(1592), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1942), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3747), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1943), - [sym_subscript] = STATE(1943), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(5167), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(447), + [240] = { + [sym__simple_statements] = STATE(3117), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(5259), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), + [anon_sym_import] = ACTIONS(11), + [anon_sym_cimport] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(371), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(373), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_include] = ACTIONS(93), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(445), + [sym__indent] = ACTIONS(447), + [sym_string_start] = ACTIONS(109), + }, + [241] = { + [sym__simple_statements] = STATE(1215), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(5119), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(371), + [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), @@ -52518,14 +53754,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -52539,91 +53774,100 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(373), [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(465), - [sym__indent] = ACTIONS(467), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(449), + [sym__indent] = ACTIONS(451), + [sym_string_start] = ACTIONS(109), }, - [238] = { - [sym__simple_statements] = STATE(1552), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1942), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3747), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1943), - [sym_subscript] = STATE(1943), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(5167), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(447), + [242] = { + [sym__simple_statements] = STATE(3058), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_int_type] = STATE(3676), + [sym__signedness] = STATE(3253), + [sym__longness] = STATE(3466), + [sym_function_pointer_type] = STATE(3676), + [sym_c_type] = STATE(4938), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(369), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(371), + [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), @@ -52631,14 +53875,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -52652,91 +53895,101 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(373), [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(469), - [sym__indent] = ACTIONS(471), - [sym_string_start] = ACTIONS(107), + [anon_sym_int] = ACTIONS(375), + [anon_sym_double] = ACTIONS(375), + [anon_sym_complex] = ACTIONS(375), + [anon_sym_new] = ACTIONS(101), + [anon_sym_signed] = ACTIONS(377), + [anon_sym_unsigned] = ACTIONS(377), + [anon_sym_char] = ACTIONS(379), + [anon_sym_short] = ACTIONS(379), + [anon_sym_long] = ACTIONS(381), + [anon_sym_const] = ACTIONS(383), + [anon_sym_volatile] = ACTIONS(383), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(453), + [sym__indent] = ACTIONS(455), + [sym_string_start] = ACTIONS(109), }, - [239] = { - [sym__simple_statements] = STATE(1607), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1942), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3747), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1943), - [sym_subscript] = STATE(1943), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(5167), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(447), + [243] = { + [sym__simple_statements] = STATE(1478), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(1999), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3795), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1992), + [sym_subscript] = STATE(1992), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(5224), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(457), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_print] = ACTIONS(463), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -52744,14 +53997,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(465), + [anon_sym_async] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(467), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(469), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -52765,91 +54018,91 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [anon_sym_await] = ACTIONS(473), + [anon_sym_api] = ACTIONS(465), [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(473), - [sym__indent] = ACTIONS(475), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(475), + [sym__indent] = ACTIONS(477), + [sym_string_start] = ACTIONS(109), }, - [240] = { - [sym__simple_statements] = STATE(1667), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1942), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3747), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1943), - [sym_subscript] = STATE(1943), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(5167), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(447), + [244] = { + [sym__simple_statements] = STATE(1510), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(1999), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3795), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1992), + [sym_subscript] = STATE(1992), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(5224), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(457), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_print] = ACTIONS(463), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -52857,14 +54110,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(465), + [anon_sym_async] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(467), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(469), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -52878,91 +54131,91 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [anon_sym_await] = ACTIONS(473), + [anon_sym_api] = ACTIONS(465), [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(477), - [sym__indent] = ACTIONS(479), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(479), + [sym__indent] = ACTIONS(481), + [sym_string_start] = ACTIONS(109), }, - [241] = { - [sym__simple_statements] = STATE(1571), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1942), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3747), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1943), - [sym_subscript] = STATE(1943), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(5167), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(447), + [245] = { + [sym__simple_statements] = STATE(1549), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(1999), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3795), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1992), + [sym_subscript] = STATE(1992), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(5224), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(457), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_print] = ACTIONS(463), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -52970,14 +54223,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(465), + [anon_sym_async] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(467), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(469), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -52991,91 +54244,91 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [anon_sym_await] = ACTIONS(473), + [anon_sym_api] = ACTIONS(465), [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(481), - [sym__indent] = ACTIONS(483), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(483), + [sym__indent] = ACTIONS(485), + [sym_string_start] = ACTIONS(109), }, - [242] = { - [sym__simple_statements] = STATE(1676), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1942), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3747), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1943), - [sym_subscript] = STATE(1943), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(5167), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(447), + [246] = { + [sym__simple_statements] = STATE(1433), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(1999), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3795), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1992), + [sym_subscript] = STATE(1992), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(5224), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(457), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_print] = ACTIONS(463), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -53083,14 +54336,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(465), + [anon_sym_async] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(467), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(469), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -53104,91 +54357,91 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [anon_sym_await] = ACTIONS(473), + [anon_sym_api] = ACTIONS(465), [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(485), - [sym__indent] = ACTIONS(487), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(487), + [sym__indent] = ACTIONS(489), + [sym_string_start] = ACTIONS(109), }, - [243] = { - [sym__simple_statements] = STATE(1559), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1942), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3747), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1943), - [sym_subscript] = STATE(1943), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(5167), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(447), + [247] = { + [sym__simple_statements] = STATE(1602), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(1999), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3795), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1992), + [sym_subscript] = STATE(1992), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(5224), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(457), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_print] = ACTIONS(463), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -53196,14 +54449,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(465), + [anon_sym_async] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(467), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(469), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -53217,91 +54470,91 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [anon_sym_await] = ACTIONS(473), + [anon_sym_api] = ACTIONS(465), [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(489), - [sym__indent] = ACTIONS(491), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(491), + [sym__indent] = ACTIONS(493), + [sym_string_start] = ACTIONS(109), }, - [244] = { - [sym__simple_statements] = STATE(1765), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1942), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3747), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1943), - [sym_subscript] = STATE(1943), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(5167), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(447), + [248] = { + [sym__simple_statements] = STATE(1515), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(1999), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3795), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1992), + [sym_subscript] = STATE(1992), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(5224), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(457), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_print] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_print] = ACTIONS(463), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -53309,14 +54562,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(455), - [anon_sym_async] = ACTIONS(455), - [anon_sym_STAR_STAR] = ACTIONS(457), + [anon_sym_match] = ACTIONS(465), + [anon_sym_async] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(467), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(459), + [anon_sym_exec] = ACTIONS(469), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -53330,85 +54583,91 @@ 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(463), - [anon_sym_api] = ACTIONS(455), + [anon_sym_await] = ACTIONS(473), + [anon_sym_api] = ACTIONS(465), [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(493), - [sym__indent] = ACTIONS(495), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(495), + [sym__indent] = ACTIONS(497), + [sym_string_start] = ACTIONS(109), }, - [245] = { - [sym__simple_statements] = STATE(3095), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(9), + [249] = { + [sym__simple_statements] = STATE(1480), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(1999), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3795), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1992), + [sym_subscript] = STATE(1992), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(5224), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(457), [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_LPAREN] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_print] = ACTIONS(463), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -53416,13 +54675,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(465), + [anon_sym_async] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(467), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), + [anon_sym_exec] = ACTIONS(469), [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(471), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -53436,78 +54696,191 @@ 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(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_await] = ACTIONS(473), + [anon_sym_api] = ACTIONS(465), [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(497), - [sym__indent] = ACTIONS(499), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(499), + [sym__indent] = ACTIONS(501), + [sym_string_start] = ACTIONS(109), }, - [246] = { - [sym__simple_statements] = STATE(1038), - [sym_import_statement] = STATE(4947), - [sym_future_import_statement] = STATE(4947), - [sym_import_from_statement] = STATE(4947), - [sym_print_statement] = STATE(4947), - [sym_assert_statement] = STATE(4947), - [sym_expression_statement] = STATE(4947), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4947), - [sym_delete_statement] = STATE(4947), - [sym_raise_statement] = STATE(4947), - [sym_pass_statement] = STATE(4947), - [sym_break_statement] = STATE(4947), - [sym_continue_statement] = STATE(4947), - [sym_global_statement] = STATE(4947), - [sym_nonlocal_statement] = STATE(4947), - [sym_exec_statement] = STATE(4947), - [sym_type_alias_statement] = STATE(4947), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4947), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [250] = { + [sym__simple_statements] = STATE(1531), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(1999), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3795), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1992), + [sym_subscript] = STATE(1992), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(5224), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(457), + [anon_sym_import] = ACTIONS(11), + [anon_sym_cimport] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_print] = ACTIONS(463), + [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(465), + [anon_sym_async] = ACTIONS(465), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(469), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(471), + [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(473), + [anon_sym_api] = ACTIONS(465), + [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(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(503), + [sym__indent] = ACTIONS(505), + [sym_string_start] = ACTIONS(109), + }, + [251] = { + [sym__simple_statements] = STATE(1444), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53522,8 +54895,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53543,77 +54916,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(501), - [sym__indent] = ACTIONS(503), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(507), + [sym__indent] = ACTIONS(509), + [sym_string_start] = ACTIONS(109), }, - [247] = { - [sym__simple_statements] = STATE(1247), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [252] = { + [sym__simple_statements] = STATE(1424), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53628,8 +55001,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53649,77 +55022,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(505), - [sym__indent] = ACTIONS(507), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(511), + [sym__indent] = ACTIONS(513), + [sym_string_start] = ACTIONS(109), }, - [248] = { - [sym__simple_statements] = STATE(1320), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [253] = { + [sym__simple_statements] = STATE(1015), + [sym_import_statement] = STATE(4980), + [sym_future_import_statement] = STATE(4980), + [sym_import_from_statement] = STATE(4980), + [sym_print_statement] = STATE(4980), + [sym_assert_statement] = STATE(4980), + [sym_expression_statement] = STATE(4980), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4980), + [sym_delete_statement] = STATE(4980), + [sym_raise_statement] = STATE(4980), + [sym_pass_statement] = STATE(4980), + [sym_break_statement] = STATE(4980), + [sym_continue_statement] = STATE(4980), + [sym_global_statement] = STATE(4980), + [sym_nonlocal_statement] = STATE(4980), + [sym_exec_statement] = STATE(4980), + [sym_type_alias_statement] = STATE(4980), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4980), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53734,8 +55107,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53755,77 +55128,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(509), - [sym__indent] = ACTIONS(511), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(515), + [sym__indent] = ACTIONS(517), + [sym_string_start] = ACTIONS(109), }, - [249] = { - [sym__simple_statements] = STATE(1212), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [254] = { + [sym__simple_statements] = STATE(1016), + [sym_import_statement] = STATE(5007), + [sym_future_import_statement] = STATE(5007), + [sym_import_from_statement] = STATE(5007), + [sym_print_statement] = STATE(5007), + [sym_assert_statement] = STATE(5007), + [sym_expression_statement] = STATE(5007), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5007), + [sym_delete_statement] = STATE(5007), + [sym_raise_statement] = STATE(5007), + [sym_pass_statement] = STATE(5007), + [sym_break_statement] = STATE(5007), + [sym_continue_statement] = STATE(5007), + [sym_global_statement] = STATE(5007), + [sym_nonlocal_statement] = STATE(5007), + [sym_exec_statement] = STATE(5007), + [sym_type_alias_statement] = STATE(5007), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5007), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53840,8 +55213,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53861,77 +55234,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(513), - [sym__indent] = ACTIONS(515), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(519), + [sym__indent] = ACTIONS(521), + [sym_string_start] = ACTIONS(109), }, - [250] = { - [sym__simple_statements] = STATE(558), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [255] = { + [sym__simple_statements] = STATE(5508), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -53946,8 +55319,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -53967,183 +55340,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(517), - [sym__indent] = ACTIONS(519), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(523), + [sym__indent] = ACTIONS(525), + [sym_string_start] = ACTIONS(109), }, - [251] = { - [sym__simple_statements] = STATE(1068), - [sym_import_statement] = STATE(4810), - [sym_future_import_statement] = STATE(4810), - [sym_import_from_statement] = STATE(4810), - [sym_print_statement] = STATE(4810), - [sym_assert_statement] = STATE(4810), - [sym_expression_statement] = STATE(4810), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4810), - [sym_delete_statement] = STATE(4810), - [sym_raise_statement] = STATE(4810), - [sym_pass_statement] = STATE(4810), - [sym_break_statement] = STATE(4810), - [sym_continue_statement] = STATE(4810), - [sym_global_statement] = STATE(4810), - [sym_nonlocal_statement] = STATE(4810), - [sym_exec_statement] = STATE(4810), - [sym_type_alias_statement] = STATE(4810), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4810), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [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(521), - [sym__indent] = ACTIONS(523), - [sym_string_start] = ACTIONS(107), - }, - [252] = { - [sym__simple_statements] = STATE(1085), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [256] = { + [sym__simple_statements] = STATE(1100), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54158,8 +55425,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54179,77 +55446,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(525), - [sym__indent] = ACTIONS(527), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(527), + [sym__indent] = ACTIONS(529), + [sym_string_start] = ACTIONS(109), }, - [253] = { - [sym__simple_statements] = STATE(562), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [257] = { + [sym__simple_statements] = STATE(1241), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54264,8 +55531,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54285,77 +55552,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(529), - [sym__indent] = ACTIONS(531), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(531), + [sym__indent] = ACTIONS(533), + [sym_string_start] = ACTIONS(109), }, - [254] = { - [sym__simple_statements] = STATE(1086), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [258] = { + [sym__simple_statements] = STATE(567), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54370,8 +55637,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54391,77 +55658,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(533), - [sym__indent] = ACTIONS(535), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(535), + [sym__indent] = ACTIONS(537), + [sym_string_start] = ACTIONS(109), }, - [255] = { - [sym__simple_statements] = STATE(1386), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [259] = { + [sym__simple_statements] = STATE(1262), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54476,8 +55743,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54497,77 +55764,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(537), - [sym__indent] = ACTIONS(539), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(539), + [sym__indent] = ACTIONS(541), + [sym_string_start] = ACTIONS(109), }, - [256] = { - [sym__simple_statements] = STATE(3054), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [260] = { + [sym__simple_statements] = STATE(1291), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54582,8 +55849,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54603,77 +55870,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(543), + [sym__indent] = ACTIONS(545), + [sym_string_start] = ACTIONS(109), }, - [257] = { - [sym__simple_statements] = STATE(2957), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [261] = { + [sym__simple_statements] = STATE(571), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54688,8 +55955,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54709,77 +55976,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(541), - [sym__indent] = ACTIONS(543), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(547), + [sym__indent] = ACTIONS(549), + [sym_string_start] = ACTIONS(109), }, - [258] = { - [sym__simple_statements] = STATE(1748), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [262] = { + [sym__simple_statements] = STATE(1043), + [sym_import_statement] = STATE(4855), + [sym_future_import_statement] = STATE(4855), + [sym_import_from_statement] = STATE(4855), + [sym_print_statement] = STATE(4855), + [sym_assert_statement] = STATE(4855), + [sym_expression_statement] = STATE(4855), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4855), + [sym_delete_statement] = STATE(4855), + [sym_raise_statement] = STATE(4855), + [sym_pass_statement] = STATE(4855), + [sym_break_statement] = STATE(4855), + [sym_continue_statement] = STATE(4855), + [sym_global_statement] = STATE(4855), + [sym_nonlocal_statement] = STATE(4855), + [sym_exec_statement] = STATE(4855), + [sym_type_alias_statement] = STATE(4855), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4855), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54794,8 +56061,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54815,77 +56082,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(545), - [sym__indent] = ACTIONS(547), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(551), + [sym__indent] = ACTIONS(553), + [sym_string_start] = ACTIONS(109), }, - [259] = { - [sym__simple_statements] = STATE(1401), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [263] = { + [sym__simple_statements] = STATE(1116), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -54900,8 +56167,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -54921,77 +56188,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(549), - [sym__indent] = ACTIONS(551), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(555), + [sym__indent] = ACTIONS(557), + [sym_string_start] = ACTIONS(109), }, - [260] = { - [sym__simple_statements] = STATE(577), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [264] = { + [sym__simple_statements] = STATE(3076), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55006,8 +56273,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55027,77 +56294,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(553), - [sym__indent] = ACTIONS(555), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(429), + [sym__indent] = ACTIONS(431), + [sym_string_start] = ACTIONS(109), }, - [261] = { - [sym__simple_statements] = STATE(1407), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [265] = { + [sym__simple_statements] = STATE(1156), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55112,8 +56379,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55133,77 +56400,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(557), - [sym__indent] = ACTIONS(559), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(559), + [sym__indent] = ACTIONS(561), + [sym_string_start] = ACTIONS(109), }, - [262] = { - [sym__simple_statements] = STATE(580), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [266] = { + [sym__simple_statements] = STATE(2997), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55218,8 +56485,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55239,77 +56506,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(561), - [sym__indent] = ACTIONS(563), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(563), + [sym__indent] = ACTIONS(565), + [sym_string_start] = ACTIONS(109), }, - [263] = { - [sym__simple_statements] = STATE(581), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [267] = { + [sym__simple_statements] = STATE(1376), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55324,8 +56591,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55345,77 +56612,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(565), - [sym__indent] = ACTIONS(567), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(567), + [sym__indent] = ACTIONS(569), + [sym_string_start] = ACTIONS(109), }, - [264] = { - [sym__simple_statements] = STATE(1090), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [268] = { + [sym__simple_statements] = STATE(1495), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55430,8 +56697,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55451,77 +56718,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(569), - [sym__indent] = ACTIONS(571), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(571), + [sym__indent] = ACTIONS(573), + [sym_string_start] = ACTIONS(109), }, - [265] = { - [sym__simple_statements] = STATE(1229), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [269] = { + [sym__simple_statements] = STATE(586), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55536,8 +56803,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55557,77 +56824,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(573), - [sym__indent] = ACTIONS(575), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(575), + [sym__indent] = ACTIONS(577), + [sym_string_start] = ACTIONS(109), }, - [266] = { - [sym__simple_statements] = STATE(1239), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [270] = { + [sym__simple_statements] = STATE(1520), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55642,8 +56909,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55663,77 +56930,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(577), - [sym__indent] = ACTIONS(579), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(579), + [sym__indent] = ACTIONS(581), + [sym_string_start] = ACTIONS(109), }, - [267] = { - [sym__simple_statements] = STATE(1420), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [271] = { + [sym__simple_statements] = STATE(1380), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55748,8 +57015,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55769,77 +57036,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(581), - [sym__indent] = ACTIONS(583), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(583), + [sym__indent] = ACTIONS(585), + [sym_string_start] = ACTIONS(109), }, - [268] = { - [sym__simple_statements] = STATE(1412), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [272] = { + [sym__simple_statements] = STATE(589), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55854,8 +57121,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55875,77 +57142,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(375), - [sym__indent] = ACTIONS(377), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(587), + [sym__indent] = ACTIONS(589), + [sym_string_start] = ACTIONS(109), }, - [269] = { - [sym__simple_statements] = STATE(1074), - [sym_import_statement] = STATE(4810), - [sym_future_import_statement] = STATE(4810), - [sym_import_from_statement] = STATE(4810), - [sym_print_statement] = STATE(4810), - [sym_assert_statement] = STATE(4810), - [sym_expression_statement] = STATE(4810), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4810), - [sym_delete_statement] = STATE(4810), - [sym_raise_statement] = STATE(4810), - [sym_pass_statement] = STATE(4810), - [sym_break_statement] = STATE(4810), - [sym_continue_statement] = STATE(4810), - [sym_global_statement] = STATE(4810), - [sym_nonlocal_statement] = STATE(4810), - [sym_exec_statement] = STATE(4810), - [sym_type_alias_statement] = STATE(4810), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4810), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [273] = { + [sym__simple_statements] = STATE(590), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -55960,8 +57227,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -55981,77 +57248,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(585), - [sym__indent] = ACTIONS(587), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(591), + [sym__indent] = ACTIONS(593), + [sym_string_start] = ACTIONS(109), }, - [270] = { - [sym__simple_statements] = STATE(1093), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [274] = { + [sym__simple_statements] = STATE(1122), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56066,8 +57333,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56087,77 +57354,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(589), - [sym__indent] = ACTIONS(591), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(595), + [sym__indent] = ACTIONS(597), + [sym_string_start] = ACTIONS(109), }, - [271] = { - [sym__simple_statements] = STATE(1314), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [275] = { + [sym__simple_statements] = STATE(1383), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56172,8 +57439,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56193,77 +57460,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(593), - [sym__indent] = ACTIONS(595), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(599), + [sym__indent] = ACTIONS(601), + [sym_string_start] = ACTIONS(109), }, - [272] = { - [sym__simple_statements] = STATE(1251), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [276] = { + [sym__simple_statements] = STATE(1487), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56278,8 +57545,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56299,77 +57566,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(597), - [sym__indent] = ACTIONS(599), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(603), + [sym__indent] = ACTIONS(605), + [sym_string_start] = ACTIONS(109), }, - [273] = { - [sym__simple_statements] = STATE(1272), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [277] = { + [sym__simple_statements] = STATE(1367), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56384,8 +57651,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56405,77 +57672,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(601), - [sym__indent] = ACTIONS(603), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(607), + [sym__indent] = ACTIONS(609), + [sym_string_start] = ACTIONS(109), }, - [274] = { - [sym__simple_statements] = STATE(999), - [sym_import_statement] = STATE(4893), - [sym_future_import_statement] = STATE(4893), - [sym_import_from_statement] = STATE(4893), - [sym_print_statement] = STATE(4893), - [sym_assert_statement] = STATE(4893), - [sym_expression_statement] = STATE(4893), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4893), - [sym_delete_statement] = STATE(4893), - [sym_raise_statement] = STATE(4893), - [sym_pass_statement] = STATE(4893), - [sym_break_statement] = STATE(4893), - [sym_continue_statement] = STATE(4893), - [sym_global_statement] = STATE(4893), - [sym_nonlocal_statement] = STATE(4893), - [sym_exec_statement] = STATE(4893), - [sym_type_alias_statement] = STATE(4893), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4893), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [278] = { + [sym__simple_statements] = STATE(1372), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56490,8 +57757,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56511,77 +57778,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(605), - [sym__indent] = ACTIONS(607), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(611), + [sym__indent] = ACTIONS(613), + [sym_string_start] = ACTIONS(109), }, - [275] = { - [sym__simple_statements] = STATE(1268), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [279] = { + [sym__simple_statements] = STATE(1001), + [sym_import_statement] = STATE(4855), + [sym_future_import_statement] = STATE(4855), + [sym_import_from_statement] = STATE(4855), + [sym_print_statement] = STATE(4855), + [sym_assert_statement] = STATE(4855), + [sym_expression_statement] = STATE(4855), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4855), + [sym_delete_statement] = STATE(4855), + [sym_raise_statement] = STATE(4855), + [sym_pass_statement] = STATE(4855), + [sym_break_statement] = STATE(4855), + [sym_continue_statement] = STATE(4855), + [sym_global_statement] = STATE(4855), + [sym_nonlocal_statement] = STATE(4855), + [sym_exec_statement] = STATE(4855), + [sym_type_alias_statement] = STATE(4855), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4855), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56596,8 +57863,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56617,77 +57884,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(609), - [sym__indent] = ACTIONS(611), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(615), + [sym__indent] = ACTIONS(617), + [sym_string_start] = ACTIONS(109), }, - [276] = { - [sym__simple_statements] = STATE(583), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [280] = { + [sym__simple_statements] = STATE(1149), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56702,8 +57969,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56723,77 +57990,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(613), - [sym__indent] = ACTIONS(615), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(619), + [sym__indent] = ACTIONS(621), + [sym_string_start] = ACTIONS(109), }, - [277] = { - [sym__simple_statements] = STATE(584), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [281] = { + [sym__simple_statements] = STATE(1409), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56808,8 +58075,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56829,77 +58096,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(617), - [sym__indent] = ACTIONS(619), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(623), + [sym__indent] = ACTIONS(625), + [sym_string_start] = ACTIONS(109), }, - [278] = { - [sym__simple_statements] = STATE(585), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [282] = { + [sym__simple_statements] = STATE(1386), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -56914,8 +58181,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -56935,77 +58202,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(621), - [sym__indent] = ACTIONS(623), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(405), + [sym__indent] = ACTIONS(407), + [sym_string_start] = ACTIONS(109), }, - [279] = { - [sym__simple_statements] = STATE(5389), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [283] = { + [sym__simple_statements] = STATE(1003), + [sym_import_statement] = STATE(4941), + [sym_future_import_statement] = STATE(4941), + [sym_import_from_statement] = STATE(4941), + [sym_print_statement] = STATE(4941), + [sym_assert_statement] = STATE(4941), + [sym_expression_statement] = STATE(4941), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4941), + [sym_delete_statement] = STATE(4941), + [sym_raise_statement] = STATE(4941), + [sym_pass_statement] = STATE(4941), + [sym_break_statement] = STATE(4941), + [sym_continue_statement] = STATE(4941), + [sym_global_statement] = STATE(4941), + [sym_nonlocal_statement] = STATE(4941), + [sym_exec_statement] = STATE(4941), + [sym_type_alias_statement] = STATE(4941), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4941), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57020,8 +58287,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57041,77 +58308,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(625), - [sym__indent] = ACTIONS(627), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(627), + [sym__indent] = ACTIONS(629), + [sym_string_start] = ACTIONS(109), }, - [280] = { - [sym__simple_statements] = STATE(3074), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [284] = { + [sym__simple_statements] = STATE(1180), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57126,8 +58393,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57147,77 +58414,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(415), - [sym__indent] = ACTIONS(417), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(631), + [sym__indent] = ACTIONS(633), + [sym_string_start] = ACTIONS(109), }, - [281] = { - [sym__simple_statements] = STATE(5450), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [285] = { + [sym__simple_statements] = STATE(1182), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57232,8 +58499,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57253,77 +58520,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(629), - [sym__indent] = ACTIONS(631), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(635), + [sym__indent] = ACTIONS(637), + [sym_string_start] = ACTIONS(109), }, - [282] = { - [sym__simple_statements] = STATE(1568), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [286] = { + [sym__simple_statements] = STATE(592), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57338,8 +58605,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57359,77 +58626,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(633), - [sym__indent] = ACTIONS(635), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(639), + [sym__indent] = ACTIONS(641), + [sym_string_start] = ACTIONS(109), }, - [283] = { - [sym__simple_statements] = STATE(2967), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [287] = { + [sym__simple_statements] = STATE(593), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57444,8 +58711,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57465,77 +58732,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(637), - [sym__indent] = ACTIONS(639), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(643), + [sym__indent] = ACTIONS(645), + [sym_string_start] = ACTIONS(109), }, - [284] = { - [sym__simple_statements] = STATE(601), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [288] = { + [sym__simple_statements] = STATE(594), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57550,8 +58817,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57571,77 +58838,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(641), - [sym__indent] = ACTIONS(643), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(647), + [sym__indent] = ACTIONS(649), + [sym_string_start] = ACTIONS(109), }, - [285] = { - [sym__simple_statements] = STATE(1246), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [289] = { + [sym__simple_statements] = STATE(1183), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57656,8 +58923,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57677,77 +58944,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(645), - [sym__indent] = ACTIONS(647), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(651), + [sym__indent] = ACTIONS(653), + [sym_string_start] = ACTIONS(109), }, - [286] = { - [sym__simple_statements] = STATE(1244), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [290] = { + [sym__simple_statements] = STATE(1058), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57762,8 +59029,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57783,77 +59050,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(649), - [sym__indent] = ACTIONS(651), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(655), + [sym__indent] = ACTIONS(657), + [sym_string_start] = ACTIONS(109), }, - [287] = { - [sym__simple_statements] = STATE(605), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [291] = { + [sym__simple_statements] = STATE(1381), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57868,8 +59135,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57889,77 +59156,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(653), - [sym__indent] = ACTIONS(655), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(659), + [sym__indent] = ACTIONS(661), + [sym_string_start] = ACTIONS(109), }, - [288] = { - [sym__simple_statements] = STATE(1366), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [292] = { + [sym__simple_statements] = STATE(3091), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -57974,8 +59241,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -57995,77 +59262,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(395), - [sym__indent] = ACTIONS(397), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(417), + [sym__indent] = ACTIONS(419), + [sym_string_start] = ACTIONS(109), }, - [289] = { - [sym__simple_statements] = STATE(1282), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [293] = { + [sym__simple_statements] = STATE(5452), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58080,8 +59347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58101,77 +59368,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(657), - [sym__indent] = ACTIONS(659), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(663), + [sym__indent] = ACTIONS(665), + [sym_string_start] = ACTIONS(109), }, - [290] = { - [sym__simple_statements] = STATE(1108), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [294] = { + [sym__simple_statements] = STATE(1288), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58186,8 +59453,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58207,77 +59474,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(661), - [sym__indent] = ACTIONS(663), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(667), + [sym__indent] = ACTIONS(669), + [sym_string_start] = ACTIONS(109), }, - [291] = { - [sym__simple_statements] = STATE(1340), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [295] = { + [sym__simple_statements] = STATE(2987), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58292,8 +59559,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58313,77 +59580,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(665), - [sym__indent] = ACTIONS(667), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(671), + [sym__indent] = ACTIONS(673), + [sym_string_start] = ACTIONS(109), }, - [292] = { - [sym__simple_statements] = STATE(1405), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [296] = { + [sym__simple_statements] = STATE(610), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58398,8 +59665,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58419,77 +59686,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(669), - [sym__indent] = ACTIONS(671), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(675), + [sym__indent] = ACTIONS(677), + [sym_string_start] = ACTIONS(109), }, - [293] = { - [sym__simple_statements] = STATE(1014), - [sym_import_statement] = STATE(4920), - [sym_future_import_statement] = STATE(4920), - [sym_import_from_statement] = STATE(4920), - [sym_print_statement] = STATE(4920), - [sym_assert_statement] = STATE(4920), - [sym_expression_statement] = STATE(4920), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4920), - [sym_delete_statement] = STATE(4920), - [sym_raise_statement] = STATE(4920), - [sym_pass_statement] = STATE(4920), - [sym_break_statement] = STATE(4920), - [sym_continue_statement] = STATE(4920), - [sym_global_statement] = STATE(4920), - [sym_nonlocal_statement] = STATE(4920), - [sym_exec_statement] = STATE(4920), - [sym_type_alias_statement] = STATE(4920), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4920), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [297] = { + [sym__simple_statements] = STATE(5465), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58504,8 +59771,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58525,77 +59792,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(673), - [sym__indent] = ACTIONS(675), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(679), + [sym__indent] = ACTIONS(681), + [sym_string_start] = ACTIONS(109), }, - [294] = { - [sym__simple_statements] = STATE(1339), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [298] = { + [sym__simple_statements] = STATE(1284), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58610,8 +59877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58631,77 +59898,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(387), - [sym__indent] = ACTIONS(389), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(683), + [sym__indent] = ACTIONS(685), + [sym_string_start] = ACTIONS(109), }, - [295] = { - [sym__simple_statements] = STATE(1286), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [299] = { + [sym__simple_statements] = STATE(614), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58716,8 +59983,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58737,77 +60004,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(687), + [sym__indent] = ACTIONS(689), + [sym_string_start] = ACTIONS(109), }, - [296] = { - [sym__simple_statements] = STATE(608), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [300] = { + [sym__simple_statements] = STATE(1550), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58822,8 +60089,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58843,77 +60110,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(677), - [sym__indent] = ACTIONS(679), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(691), + [sym__indent] = ACTIONS(693), + [sym_string_start] = ACTIONS(109), }, - [297] = { - [sym__simple_statements] = STATE(1369), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [301] = { + [sym__simple_statements] = STATE(1159), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -58928,8 +60195,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -58949,77 +60216,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(681), - [sym__indent] = ACTIONS(683), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(695), + [sym__indent] = ACTIONS(697), + [sym_string_start] = ACTIONS(109), }, - [298] = { - [sym__simple_statements] = STATE(611), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [302] = { + [sym__simple_statements] = STATE(1312), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59034,8 +60301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59055,77 +60322,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(685), - [sym__indent] = ACTIONS(687), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(699), + [sym__indent] = ACTIONS(701), + [sym_string_start] = ACTIONS(109), }, - [299] = { - [sym__simple_statements] = STATE(612), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [303] = { + [sym__simple_statements] = STATE(1215), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59140,8 +60407,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59161,77 +60428,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(689), - [sym__indent] = ACTIONS(691), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(449), + [sym__indent] = ACTIONS(451), + [sym_string_start] = ACTIONS(109), }, - [300] = { - [sym__simple_statements] = STATE(1240), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [304] = { + [sym__simple_statements] = STATE(1448), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59246,8 +60513,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59267,77 +60534,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(693), - [sym__indent] = ACTIONS(695), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(703), + [sym__indent] = ACTIONS(705), + [sym_string_start] = ACTIONS(109), }, - [301] = { - [sym__simple_statements] = STATE(1202), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [305] = { + [sym__simple_statements] = STATE(1045), + [sym_import_statement] = STATE(4980), + [sym_future_import_statement] = STATE(4980), + [sym_import_from_statement] = STATE(4980), + [sym_print_statement] = STATE(4980), + [sym_assert_statement] = STATE(4980), + [sym_expression_statement] = STATE(4980), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4980), + [sym_delete_statement] = STATE(4980), + [sym_raise_statement] = STATE(4980), + [sym_pass_statement] = STATE(4980), + [sym_break_statement] = STATE(4980), + [sym_continue_statement] = STATE(4980), + [sym_global_statement] = STATE(4980), + [sym_nonlocal_statement] = STATE(4980), + [sym_exec_statement] = STATE(4980), + [sym_type_alias_statement] = STATE(4980), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4980), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59352,8 +60619,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59373,77 +60640,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(697), - [sym__indent] = ACTIONS(699), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(707), + [sym__indent] = ACTIONS(709), + [sym_string_start] = ACTIONS(109), }, - [302] = { - [sym__simple_statements] = STATE(1662), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [306] = { + [sym__simple_statements] = STATE(1194), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59458,8 +60725,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59479,77 +60746,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(701), - [sym__indent] = ACTIONS(703), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(711), + [sym__indent] = ACTIONS(713), + [sym_string_start] = ACTIONS(109), }, - [303] = { - [sym__simple_statements] = STATE(2971), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [307] = { + [sym__simple_statements] = STATE(961), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59564,8 +60831,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59585,77 +60852,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(705), - [sym__indent] = ACTIONS(707), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(715), + [sym__indent] = ACTIONS(717), + [sym_string_start] = ACTIONS(109), }, - [304] = { - [sym__simple_statements] = STATE(3084), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [308] = { + [sym__simple_statements] = STATE(617), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59670,8 +60937,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59691,77 +60958,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(443), - [sym__indent] = ACTIONS(445), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(719), + [sym__indent] = ACTIONS(721), + [sym_string_start] = ACTIONS(109), }, - [305] = { - [sym__simple_statements] = STATE(1422), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [309] = { + [sym__simple_statements] = STATE(1342), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59776,8 +61043,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59797,77 +61064,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(709), - [sym__indent] = ACTIONS(711), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(413), + [sym__indent] = ACTIONS(415), + [sym_string_start] = ACTIONS(109), }, - [306] = { - [sym__simple_statements] = STATE(628), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [310] = { + [sym__simple_statements] = STATE(1200), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59882,8 +61149,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -59903,77 +61170,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(713), - [sym__indent] = ACTIONS(715), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(433), + [sym__indent] = ACTIONS(435), + [sym_string_start] = ACTIONS(109), }, - [307] = { - [sym__simple_statements] = STATE(629), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [311] = { + [sym__simple_statements] = STATE(620), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -59988,8 +61255,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60009,77 +61276,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(717), - [sym__indent] = ACTIONS(719), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(723), + [sym__indent] = ACTIONS(725), + [sym_string_start] = ACTIONS(109), }, - [308] = { - [sym__simple_statements] = STATE(630), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [312] = { + [sym__simple_statements] = STATE(621), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60094,8 +61361,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60115,77 +61382,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(721), - [sym__indent] = ACTIONS(723), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(727), + [sym__indent] = ACTIONS(729), + [sym_string_start] = ACTIONS(109), }, - [309] = { - [sym__simple_statements] = STATE(1215), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [313] = { + [sym__simple_statements] = STATE(1234), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60200,8 +61467,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60221,77 +61488,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(725), - [sym__indent] = ACTIONS(727), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(731), + [sym__indent] = ACTIONS(733), + [sym_string_start] = ACTIONS(109), }, - [310] = { - [sym__simple_statements] = STATE(1243), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [314] = { + [sym__simple_statements] = STATE(1371), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60306,8 +61573,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60327,77 +61594,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(729), - [sym__indent] = ACTIONS(731), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(735), + [sym__indent] = ACTIONS(737), + [sym_string_start] = ACTIONS(109), }, - [311] = { - [sym__simple_statements] = STATE(1342), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [315] = { + [sym__simple_statements] = STATE(1214), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60412,8 +61679,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60433,77 +61700,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(733), - [sym__indent] = ACTIONS(735), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(739), + [sym__indent] = ACTIONS(741), + [sym_string_start] = ACTIONS(109), }, - [312] = { - [sym__simple_statements] = STATE(1582), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [316] = { + [sym__simple_statements] = STATE(2940), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60518,8 +61785,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60539,77 +61806,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(737), - [sym__indent] = ACTIONS(739), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(743), + [sym__indent] = ACTIONS(745), + [sym_string_start] = ACTIONS(109), }, - [313] = { - [sym__simple_statements] = STATE(5351), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [317] = { + [sym__simple_statements] = STATE(3058), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60624,8 +61891,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60645,77 +61912,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(741), - [sym__indent] = ACTIONS(743), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(453), + [sym__indent] = ACTIONS(455), + [sym_string_start] = ACTIONS(109), }, - [314] = { - [sym__simple_statements] = STATE(1197), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [318] = { + [sym__simple_statements] = STATE(1254), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60730,8 +61997,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60751,77 +62018,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(745), - [sym__indent] = ACTIONS(747), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(747), + [sym__indent] = ACTIONS(749), + [sym_string_start] = ACTIONS(109), }, - [315] = { - [sym__simple_statements] = STATE(1335), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [319] = { + [sym__simple_statements] = STATE(636), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60836,8 +62103,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60857,77 +62124,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(749), - [sym__indent] = ACTIONS(751), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(751), + [sym__indent] = ACTIONS(753), + [sym_string_start] = ACTIONS(109), }, - [316] = { - [sym__simple_statements] = STATE(634), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [320] = { + [sym__simple_statements] = STATE(637), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -60942,8 +62209,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -60963,77 +62230,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(753), - [sym__indent] = ACTIONS(755), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(755), + [sym__indent] = ACTIONS(757), + [sym_string_start] = ACTIONS(109), }, - [317] = { - [sym__simple_statements] = STATE(1200), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [321] = { + [sym__simple_statements] = STATE(638), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61048,8 +62315,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61069,77 +62336,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(757), - [sym__indent] = ACTIONS(759), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(759), + [sym__indent] = ACTIONS(761), + [sym_string_start] = ACTIONS(109), }, - [318] = { - [sym__simple_statements] = STATE(1121), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [322] = { + [sym__simple_statements] = STATE(1248), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61154,8 +62421,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61175,77 +62442,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(761), - [sym__indent] = ACTIONS(763), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(763), + [sym__indent] = ACTIONS(765), + [sym_string_start] = ACTIONS(109), }, - [319] = { - [sym__simple_statements] = STATE(3094), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [323] = { + [sym__simple_statements] = STATE(1218), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61260,8 +62527,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61281,77 +62548,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(431), - [sym__indent] = ACTIONS(433), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(767), + [sym__indent] = ACTIONS(769), + [sym_string_start] = ACTIONS(109), }, - [320] = { - [sym__simple_statements] = STATE(1133), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [324] = { + [sym__simple_statements] = STATE(1219), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61366,8 +62633,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61387,77 +62654,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(765), - [sym__indent] = ACTIONS(767), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(771), + [sym__indent] = ACTIONS(773), + [sym_string_start] = ACTIONS(109), }, - [321] = { - [sym__simple_statements] = STATE(1218), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [325] = { + [sym__simple_statements] = STATE(1263), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61472,8 +62739,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61493,77 +62760,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(769), - [sym__indent] = ACTIONS(771), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(775), + [sym__indent] = ACTIONS(777), + [sym_string_start] = ACTIONS(109), }, - [322] = { - [sym__simple_statements] = STATE(5358), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [326] = { + [sym__simple_statements] = STATE(5302), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61578,8 +62845,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61599,77 +62866,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(773), - [sym__indent] = ACTIONS(775), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(779), + [sym__indent] = ACTIONS(781), + [sym_string_start] = ACTIONS(109), }, - [323] = { - [sym__simple_statements] = STATE(647), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [327] = { + [sym__simple_statements] = STATE(1253), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61684,8 +62951,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61705,77 +62972,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(777), - [sym__indent] = ACTIONS(779), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(783), + [sym__indent] = ACTIONS(785), + [sym_string_start] = ACTIONS(109), }, - [324] = { - [sym__simple_statements] = STATE(1136), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [328] = { + [sym__simple_statements] = STATE(642), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61790,8 +63057,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61811,77 +63078,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(781), - [sym__indent] = ACTIONS(783), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(787), + [sym__indent] = ACTIONS(789), + [sym_string_start] = ACTIONS(109), }, - [325] = { - [sym__simple_statements] = STATE(1058), - [sym_import_statement] = STATE(4810), - [sym_future_import_statement] = STATE(4810), - [sym_import_from_statement] = STATE(4810), - [sym_print_statement] = STATE(4810), - [sym_assert_statement] = STATE(4810), - [sym_expression_statement] = STATE(4810), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4810), - [sym_delete_statement] = STATE(4810), - [sym_raise_statement] = STATE(4810), - [sym_pass_statement] = STATE(4810), - [sym_break_statement] = STATE(4810), - [sym_continue_statement] = STATE(4810), - [sym_global_statement] = STATE(4810), - [sym_nonlocal_statement] = STATE(4810), - [sym_exec_statement] = STATE(4810), - [sym_type_alias_statement] = STATE(4810), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4810), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [329] = { + [sym__simple_statements] = STATE(1223), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -61896,8 +63163,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -61917,77 +63184,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(785), - [sym__indent] = ACTIONS(787), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(791), + [sym__indent] = ACTIONS(793), + [sym_string_start] = ACTIONS(109), }, - [326] = { - [sym__simple_statements] = STATE(650), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [330] = { + [sym__simple_statements] = STATE(1257), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62002,8 +63269,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62023,77 +63290,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(789), - [sym__indent] = ACTIONS(791), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(795), + [sym__indent] = ACTIONS(797), + [sym_string_start] = ACTIONS(109), }, - [327] = { - [sym__simple_statements] = STATE(651), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [331] = { + [sym__simple_statements] = STATE(3042), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62108,8 +63375,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62129,77 +63396,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(793), - [sym__indent] = ACTIONS(795), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(437), + [sym__indent] = ACTIONS(439), + [sym_string_start] = ACTIONS(109), }, - [328] = { - [sym__simple_statements] = STATE(1226), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [332] = { + [sym__simple_statements] = STATE(1139), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62214,8 +63481,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62235,77 +63502,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(797), - [sym__indent] = ACTIONS(799), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(799), + [sym__indent] = ACTIONS(801), + [sym_string_start] = ACTIONS(109), }, - [329] = { - [sym__simple_statements] = STATE(3097), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [333] = { + [sym__simple_statements] = STATE(1471), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62320,8 +63587,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62341,77 +63608,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(801), - [sym__indent] = ACTIONS(803), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(803), + [sym__indent] = ACTIONS(805), + [sym_string_start] = ACTIONS(109), }, - [330] = { - [sym__simple_statements] = STATE(1653), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [334] = { + [sym__simple_statements] = STATE(1233), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62426,8 +63693,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62447,183 +63714,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(805), - [sym__indent] = ACTIONS(807), - [sym_string_start] = ACTIONS(107), - }, - [331] = { - [sym_chevron] = STATE(4669), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3979), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_print] = ACTIONS(824), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(830), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(813), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_AT] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(838), - [anon_sym_not] = ACTIONS(841), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_SLASH_SLASH] = ACTIONS(813), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(847), - [anon_sym_STAR_EQ] = ACTIONS(847), - [anon_sym_SLASH_EQ] = ACTIONS(847), - [anon_sym_AT_EQ] = ACTIONS(847), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), - [anon_sym_PERCENT_EQ] = ACTIONS(847), - [anon_sym_STAR_STAR_EQ] = ACTIONS(847), - [anon_sym_GT_GT_EQ] = ACTIONS(847), - [anon_sym_LT_LT_EQ] = ACTIONS(847), - [anon_sym_AMP_EQ] = ACTIONS(847), - [anon_sym_CARET_EQ] = ACTIONS(847), - [anon_sym_PIPE_EQ] = ACTIONS(847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(849), - [anon_sym_api] = ACTIONS(824), - [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(811), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(807), + [sym__indent] = ACTIONS(809), + [sym_string_start] = ACTIONS(109), }, - [332] = { - [sym__simple_statements] = STATE(660), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [335] = { + [sym__simple_statements] = STATE(655), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62638,8 +63799,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62659,77 +63820,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(851), - [sym__indent] = ACTIONS(853), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(811), + [sym__indent] = ACTIONS(813), + [sym_string_start] = ACTIONS(109), }, - [333] = { - [sym__simple_statements] = STATE(1126), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [336] = { + [sym__simple_statements] = STATE(5279), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62744,8 +63905,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62765,77 +63926,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(855), - [sym__indent] = ACTIONS(857), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(815), + [sym__indent] = ACTIONS(817), + [sym_string_start] = ACTIONS(109), }, - [334] = { - [sym__simple_statements] = STATE(3101), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [337] = { + [sym__simple_statements] = STATE(1073), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62850,8 +64011,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62871,77 +64032,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(859), - [sym__indent] = ACTIONS(861), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(819), + [sym__indent] = ACTIONS(821), + [sym_string_start] = ACTIONS(109), }, - [335] = { - [sym__simple_statements] = STATE(1660), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [338] = { + [sym__simple_statements] = STATE(658), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -62956,8 +64117,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -62977,77 +64138,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(863), - [sym__indent] = ACTIONS(865), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(823), + [sym__indent] = ACTIONS(825), + [sym_string_start] = ACTIONS(109), }, - [336] = { - [sym__simple_statements] = STATE(3003), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [339] = { + [sym__simple_statements] = STATE(659), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63062,8 +64223,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63083,77 +64244,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(867), - [sym__indent] = ACTIONS(869), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(827), + [sym__indent] = ACTIONS(829), + [sym_string_start] = ACTIONS(109), }, - [337] = { - [sym__simple_statements] = STATE(671), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [340] = { + [sym__simple_statements] = STATE(1074), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63168,8 +64329,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63189,77 +64350,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(871), - [sym__indent] = ACTIONS(873), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(831), + [sym__indent] = ACTIONS(833), + [sym_string_start] = ACTIONS(109), }, - [338] = { - [sym__simple_statements] = STATE(931), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [341] = { + [sym__simple_statements] = STATE(3084), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63274,8 +64435,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63295,77 +64456,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(875), - [sym__indent] = ACTIONS(877), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(835), + [sym__indent] = ACTIONS(837), + [sym_string_start] = ACTIONS(109), }, - [339] = { - [sym__simple_statements] = STATE(3022), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [342] = { + [sym__simple_statements] = STATE(1237), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63380,8 +64541,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63401,77 +64562,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(879), - [sym__indent] = ACTIONS(881), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(839), + [sym__indent] = ACTIONS(841), + [sym_string_start] = ACTIONS(109), }, - [340] = { - [sym__simple_statements] = STATE(3024), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [343] = { + [sym__simple_statements] = STATE(1006), + [sym_import_statement] = STATE(4855), + [sym_future_import_statement] = STATE(4855), + [sym_import_from_statement] = STATE(4855), + [sym_print_statement] = STATE(4855), + [sym_assert_statement] = STATE(4855), + [sym_expression_statement] = STATE(4855), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4855), + [sym_delete_statement] = STATE(4855), + [sym_raise_statement] = STATE(4855), + [sym_pass_statement] = STATE(4855), + [sym_break_statement] = STATE(4855), + [sym_continue_statement] = STATE(4855), + [sym_global_statement] = STATE(4855), + [sym_nonlocal_statement] = STATE(4855), + [sym_exec_statement] = STATE(4855), + [sym_type_alias_statement] = STATE(4855), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4855), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63486,8 +64647,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63507,77 +64668,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(883), - [sym__indent] = ACTIONS(885), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(843), + [sym__indent] = ACTIONS(845), + [sym_string_start] = ACTIONS(109), }, - [341] = { - [sym__simple_statements] = STATE(3028), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [344] = { + [sym__simple_statements] = STATE(1544), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63592,8 +64753,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63613,77 +64774,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(887), - [sym__indent] = ACTIONS(889), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(847), + [sym__indent] = ACTIONS(849), + [sym_string_start] = ACTIONS(109), }, - [342] = { - [sym__simple_statements] = STATE(1144), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [345] = { + [sym__simple_statements] = STATE(668), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63698,8 +64859,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63719,183 +64880,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(891), - [sym__indent] = ACTIONS(893), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(851), + [sym__indent] = ACTIONS(853), + [sym_string_start] = ACTIONS(109), }, - [343] = { - [sym__simple_statements] = STATE(681), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [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), + [346] = { + [sym_chevron] = STATE(4748), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(4011), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_print] = ACTIONS(870), + [anon_sym_GT_GT] = ACTIONS(872), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_EQ] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_AT] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(884), + [anon_sym_not] = ACTIONS(887), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_AT_EQ] = ACTIONS(893), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(893), + [anon_sym_PERCENT_EQ] = ACTIONS(893), + [anon_sym_STAR_STAR_EQ] = ACTIONS(893), + [anon_sym_GT_GT_EQ] = ACTIONS(893), + [anon_sym_LT_LT_EQ] = ACTIONS(893), + [anon_sym_AMP_EQ] = ACTIONS(893), + [anon_sym_CARET_EQ] = ACTIONS(893), + [anon_sym_PIPE_EQ] = ACTIONS(893), [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(895), + [anon_sym_api] = ACTIONS(870), [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(383), - [sym__indent] = ACTIONS(385), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(857), + [sym_string_start] = ACTIONS(109), }, - [344] = { - [sym__simple_statements] = STATE(1145), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [347] = { + [sym__simple_statements] = STATE(1105), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -63910,8 +65071,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -63931,77 +65092,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(895), - [sym__indent] = ACTIONS(897), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(897), + [sym__indent] = ACTIONS(899), + [sym_string_start] = ACTIONS(109), }, - [345] = { - [sym__simple_statements] = STATE(684), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [348] = { + [sym__simple_statements] = STATE(3096), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64016,8 +65177,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64037,77 +65198,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(899), - [sym__indent] = ACTIONS(901), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(901), + [sym__indent] = ACTIONS(903), + [sym_string_start] = ACTIONS(109), }, - [346] = { - [sym__simple_statements] = STATE(3046), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [349] = { + [sym__simple_statements] = STATE(3118), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64122,8 +65283,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64143,77 +65304,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(903), - [sym__indent] = ACTIONS(905), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(905), + [sym__indent] = ACTIONS(907), + [sym_string_start] = ACTIONS(109), }, - [347] = { - [sym__simple_statements] = STATE(1489), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [350] = { + [sym__simple_statements] = STATE(679), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64228,8 +65389,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64249,77 +65410,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(907), - [sym__indent] = ACTIONS(909), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(909), + [sym__indent] = ACTIONS(911), + [sym_string_start] = ACTIONS(109), }, - [348] = { - [sym__simple_statements] = STATE(3066), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [351] = { + [sym__simple_statements] = STATE(897), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64334,8 +65495,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64355,77 +65516,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(911), - [sym__indent] = ACTIONS(913), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(913), + [sym__indent] = ACTIONS(915), + [sym_string_start] = ACTIONS(109), }, - [349] = { - [sym__simple_statements] = STATE(527), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [352] = { + [sym__simple_statements] = STATE(3037), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64440,8 +65601,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64461,77 +65622,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(915), - [sym__indent] = ACTIONS(917), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(917), + [sym__indent] = ACTIONS(919), + [sym_string_start] = ACTIONS(109), }, - [350] = { - [sym__simple_statements] = STATE(1497), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [353] = { + [sym__simple_statements] = STATE(3038), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64546,8 +65707,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64567,77 +65728,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(919), - [sym__indent] = ACTIONS(921), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(921), + [sym__indent] = ACTIONS(923), + [sym_string_start] = ACTIONS(109), }, - [351] = { - [sym__simple_statements] = STATE(3075), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [354] = { + [sym__simple_statements] = STATE(3039), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64652,8 +65813,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64673,77 +65834,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(923), - [sym__indent] = ACTIONS(925), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(925), + [sym__indent] = ACTIONS(927), + [sym_string_start] = ACTIONS(109), }, - [352] = { - [sym__simple_statements] = STATE(3079), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [355] = { + [sym__simple_statements] = STATE(1067), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64758,8 +65919,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64779,77 +65940,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(927), - [sym__indent] = ACTIONS(929), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(929), + [sym__indent] = ACTIONS(931), + [sym_string_start] = ACTIONS(109), }, - [353] = { - [sym__simple_statements] = STATE(2996), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [356] = { + [sym__simple_statements] = STATE(689), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64864,8 +66025,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64885,77 +66046,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(931), - [sym__indent] = ACTIONS(933), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(393), + [sym__indent] = ACTIONS(395), + [sym_string_start] = ACTIONS(109), }, - [354] = { - [sym__simple_statements] = STATE(693), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [357] = { + [sym__simple_statements] = STATE(1096), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -64970,8 +66131,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -64991,77 +66152,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(935), - [sym__indent] = ACTIONS(937), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(933), + [sym__indent] = ACTIONS(935), + [sym_string_start] = ACTIONS(109), }, - [355] = { - [sym__simple_statements] = STATE(690), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [358] = { + [sym__simple_statements] = STATE(692), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65076,8 +66237,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65097,77 +66258,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(391), - [sym__indent] = ACTIONS(393), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(937), + [sym__indent] = ACTIONS(939), + [sym_string_start] = ACTIONS(109), }, - [356] = { - [sym__simple_statements] = STATE(1153), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [359] = { + [sym__simple_statements] = STATE(3069), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65182,8 +66343,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65203,77 +66364,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(939), - [sym__indent] = ACTIONS(941), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(941), + [sym__indent] = ACTIONS(943), + [sym_string_start] = ACTIONS(109), }, - [357] = { - [sym__simple_statements] = STATE(3099), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [360] = { + [sym__simple_statements] = STATE(1551), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65288,8 +66449,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65309,77 +66470,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(943), - [sym__indent] = ACTIONS(945), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(945), + [sym__indent] = ACTIONS(947), + [sym_string_start] = ACTIONS(109), }, - [358] = { - [sym__simple_statements] = STATE(3106), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [361] = { + [sym__simple_statements] = STATE(3078), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65394,8 +66555,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65415,77 +66576,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(947), - [sym__indent] = ACTIONS(949), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(949), + [sym__indent] = ACTIONS(951), + [sym_string_start] = ACTIONS(109), }, - [359] = { - [sym__simple_statements] = STATE(3109), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [362] = { + [sym__simple_statements] = STATE(536), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65500,8 +66661,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65521,77 +66682,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(951), - [sym__indent] = ACTIONS(953), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(953), + [sym__indent] = ACTIONS(955), + [sym_string_start] = ACTIONS(109), }, - [360] = { - [sym__simple_statements] = STATE(3113), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [363] = { + [sym__simple_statements] = STATE(1575), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65606,8 +66767,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65627,77 +66788,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(955), - [sym__indent] = ACTIONS(957), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(957), + [sym__indent] = ACTIONS(959), + [sym_string_start] = ACTIONS(109), }, - [361] = { - [sym__simple_statements] = STATE(1509), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [364] = { + [sym__simple_statements] = STATE(3082), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65712,8 +66873,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65733,77 +66894,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(959), - [sym__indent] = ACTIONS(961), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(961), + [sym__indent] = ACTIONS(963), + [sym_string_start] = ACTIONS(109), }, - [362] = { - [sym__simple_statements] = STATE(1194), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [365] = { + [sym__simple_statements] = STATE(901), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65818,8 +66979,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65839,77 +67000,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(963), - [sym__indent] = ACTIONS(965), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(965), + [sym__indent] = ACTIONS(967), + [sym_string_start] = ACTIONS(109), }, - [363] = { - [sym__simple_statements] = STATE(2999), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [366] = { + [sym__simple_statements] = STATE(3048), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -65924,8 +67085,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -65945,77 +67106,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(967), - [sym__indent] = ACTIONS(969), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(969), + [sym__indent] = ACTIONS(971), + [sym_string_start] = ACTIONS(109), }, - [364] = { - [sym__simple_statements] = STATE(1103), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [367] = { + [sym__simple_statements] = STATE(701), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66030,8 +67191,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66051,77 +67212,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(971), - [sym__indent] = ACTIONS(973), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(973), + [sym__indent] = ACTIONS(975), + [sym_string_start] = ACTIONS(109), }, - [365] = { - [sym__simple_statements] = STATE(1740), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [368] = { + [sym__simple_statements] = STATE(698), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66136,8 +67297,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66157,77 +67318,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(975), - [sym__indent] = ACTIONS(977), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(401), + [sym__indent] = ACTIONS(403), + [sym_string_start] = ACTIONS(109), }, - [366] = { - [sym__simple_statements] = STATE(700), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [369] = { + [sym__simple_statements] = STATE(3128), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66242,8 +67403,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66263,77 +67424,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(423), - [sym__indent] = ACTIONS(425), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(977), + [sym__indent] = ACTIONS(979), + [sym_string_start] = ACTIONS(109), }, - [367] = { - [sym__simple_statements] = STATE(1224), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [370] = { + [sym__simple_statements] = STATE(3129), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66348,8 +67509,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66369,77 +67530,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(979), - [sym__indent] = ACTIONS(981), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(981), + [sym__indent] = ACTIONS(983), + [sym_string_start] = ACTIONS(109), }, - [368] = { - [sym__simple_statements] = STATE(704), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [371] = { + [sym__simple_statements] = STATE(3130), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66454,8 +67615,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66475,77 +67636,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(983), - [sym__indent] = ACTIONS(985), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(985), + [sym__indent] = ACTIONS(987), + [sym_string_start] = ACTIONS(109), }, - [369] = { - [sym__simple_statements] = STATE(1518), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [372] = { + [sym__simple_statements] = STATE(3131), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66560,8 +67721,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66581,77 +67742,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(987), - [sym__indent] = ACTIONS(989), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(989), + [sym__indent] = ACTIONS(991), + [sym_string_start] = ACTIONS(109), }, - [370] = { - [sym__simple_statements] = STATE(1228), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [373] = { + [sym__simple_statements] = STATE(1140), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66666,8 +67827,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66687,77 +67848,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(991), - [sym__indent] = ACTIONS(993), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(993), + [sym__indent] = ACTIONS(995), + [sym_string_start] = ACTIONS(109), }, - [371] = { - [sym__simple_statements] = STATE(3018), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [374] = { + [sym__simple_statements] = STATE(1439), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66772,8 +67933,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66793,77 +67954,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(995), - [sym__indent] = ACTIONS(997), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(997), + [sym__indent] = ACTIONS(999), + [sym_string_start] = ACTIONS(109), }, - [372] = { - [sym__simple_statements] = STATE(532), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [375] = { + [sym__simple_statements] = STATE(3140), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66878,8 +68039,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -66899,77 +68060,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(999), - [sym__indent] = ACTIONS(1001), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1001), + [sym__indent] = ACTIONS(1003), + [sym_string_start] = ACTIONS(109), }, - [373] = { - [sym__simple_statements] = STATE(533), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [376] = { + [sym__simple_statements] = STATE(1569), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -66984,8 +68145,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67005,77 +68166,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1003), - [sym__indent] = ACTIONS(1005), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1005), + [sym__indent] = ACTIONS(1007), + [sym_string_start] = ACTIONS(109), }, - [374] = { - [sym__simple_statements] = STATE(3048), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [377] = { + [sym__simple_statements] = STATE(3979), + [sym_import_statement] = STATE(4770), + [sym_future_import_statement] = STATE(4770), + [sym_import_from_statement] = STATE(4770), + [sym_print_statement] = STATE(4770), + [sym_assert_statement] = STATE(4770), + [sym_expression_statement] = STATE(4770), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4770), + [sym_delete_statement] = STATE(4770), + [sym_raise_statement] = STATE(4770), + [sym_pass_statement] = STATE(4770), + [sym_break_statement] = STATE(4770), + [sym_continue_statement] = STATE(4770), + [sym_global_statement] = STATE(4770), + [sym_nonlocal_statement] = STATE(4770), + [sym_exec_statement] = STATE(4770), + [sym_type_alias_statement] = STATE(4770), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4770), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67090,8 +68251,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67111,77 +68272,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1007), - [sym__indent] = ACTIONS(1009), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1009), + [sym__indent] = ACTIONS(1011), + [sym_string_start] = ACTIONS(109), }, - [375] = { - [sym__simple_statements] = STATE(3049), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [378] = { + [sym__simple_statements] = STATE(708), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67196,8 +68357,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67217,77 +68378,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1011), - [sym__indent] = ACTIONS(1013), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(385), + [sym__indent] = ACTIONS(387), + [sym_string_start] = ACTIONS(109), }, - [376] = { - [sym__simple_statements] = STATE(534), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [379] = { + [sym__simple_statements] = STATE(1317), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67302,8 +68463,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67323,77 +68484,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1015), - [sym__indent] = ACTIONS(1017), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1013), + [sym__indent] = ACTIONS(1015), + [sym_string_start] = ACTIONS(109), }, - [377] = { - [sym__simple_statements] = STATE(3058), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [380] = { + [sym__simple_statements] = STATE(712), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67408,8 +68569,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67429,77 +68590,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1019), - [sym__indent] = ACTIONS(1021), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1017), + [sym__indent] = ACTIONS(1019), + [sym_string_start] = ACTIONS(109), }, - [378] = { - [sym__simple_statements] = STATE(3064), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [381] = { + [sym__simple_statements] = STATE(1155), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67514,8 +68675,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67535,77 +68696,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1023), - [sym__indent] = ACTIONS(1025), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1021), + [sym__indent] = ACTIONS(1023), + [sym_string_start] = ACTIONS(109), }, - [379] = { - [sym__simple_statements] = STATE(2986), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [382] = { + [sym__simple_statements] = STATE(1467), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67620,8 +68781,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67641,77 +68802,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1027), - [sym__indent] = ACTIONS(1029), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1025), + [sym__indent] = ACTIONS(1027), + [sym_string_start] = ACTIONS(109), }, - [380] = { - [sym__simple_statements] = STATE(1230), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [383] = { + [sym__simple_statements] = STATE(3029), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67726,8 +68887,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67747,77 +68908,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1031), - [sym__indent] = ACTIONS(1033), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1029), + [sym__indent] = ACTIONS(1031), + [sym_string_start] = ACTIONS(109), }, - [381] = { - [sym__simple_statements] = STATE(708), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [384] = { + [sym__simple_statements] = STATE(1278), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67832,8 +68993,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67853,77 +69014,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(399), - [sym__indent] = ACTIONS(401), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1033), + [sym__indent] = ACTIONS(1035), + [sym_string_start] = ACTIONS(109), }, - [382] = { - [sym__simple_statements] = STATE(1310), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [385] = { + [sym__simple_statements] = STATE(541), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -67938,8 +69099,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -67959,77 +69120,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1035), - [sym__indent] = ACTIONS(1037), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1037), + [sym__indent] = ACTIONS(1039), + [sym_string_start] = ACTIONS(109), }, - [383] = { - [sym__simple_statements] = STATE(3011), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [386] = { + [sym__simple_statements] = STATE(3052), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68044,8 +69205,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68065,77 +69226,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(427), - [sym__indent] = ACTIONS(429), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1041), + [sym__indent] = ACTIONS(1043), + [sym_string_start] = ACTIONS(109), }, - [384] = { - [sym__simple_statements] = STATE(1255), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [387] = { + [sym__simple_statements] = STATE(3053), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68150,8 +69311,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68171,77 +69332,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(407), - [sym__indent] = ACTIONS(409), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1045), + [sym__indent] = ACTIONS(1047), + [sym_string_start] = ACTIONS(109), }, - [385] = { - [sym__simple_statements] = STATE(710), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [388] = { + [sym__simple_statements] = STATE(542), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68256,8 +69417,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68277,77 +69438,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1039), - [sym__indent] = ACTIONS(1041), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1049), + [sym__indent] = ACTIONS(1051), + [sym_string_start] = ACTIONS(109), }, - [386] = { - [sym__simple_statements] = STATE(3061), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [389] = { + [sym__simple_statements] = STATE(3149), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68362,8 +69523,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68383,77 +69544,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1043), - [sym__indent] = ACTIONS(1045), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1053), + [sym__indent] = ACTIONS(1055), + [sym_string_start] = ACTIONS(109), }, - [387] = { - [sym__simple_statements] = STATE(2933), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [390] = { + [sym__simple_statements] = STATE(3159), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68468,8 +69629,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68489,77 +69650,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1047), - [sym__indent] = ACTIONS(1049), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1057), + [sym__indent] = ACTIONS(1059), + [sym_string_start] = ACTIONS(109), }, - [388] = { - [sym__simple_statements] = STATE(538), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [391] = { + [sym__simple_statements] = STATE(3059), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68574,8 +69735,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68595,77 +69756,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1051), - [sym__indent] = ACTIONS(1053), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1061), + [sym__indent] = ACTIONS(1063), + [sym_string_start] = ACTIONS(109), }, - [389] = { - [sym__simple_statements] = STATE(3068), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [392] = { + [sym__simple_statements] = STATE(543), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68680,8 +69841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68701,77 +69862,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1055), - [sym__indent] = ACTIONS(1057), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1065), + [sym__indent] = ACTIONS(1067), + [sym_string_start] = ACTIONS(109), }, - [390] = { - [sym__simple_statements] = STATE(1423), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [393] = { + [sym__simple_statements] = STATE(716), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68786,8 +69947,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68807,77 +69968,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1059), - [sym__indent] = ACTIONS(1061), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(389), + [sym__indent] = ACTIONS(391), + [sym_string_start] = ACTIONS(109), }, - [391] = { - [sym__simple_statements] = STATE(4039), - [sym_import_statement] = STATE(5009), - [sym_future_import_statement] = STATE(5009), - [sym_import_from_statement] = STATE(5009), - [sym_print_statement] = STATE(5009), - [sym_assert_statement] = STATE(5009), - [sym_expression_statement] = STATE(5009), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5009), - [sym_delete_statement] = STATE(5009), - [sym_raise_statement] = STATE(5009), - [sym_pass_statement] = STATE(5009), - [sym_break_statement] = STATE(5009), - [sym_continue_statement] = STATE(5009), - [sym_global_statement] = STATE(5009), - [sym_nonlocal_statement] = STATE(5009), - [sym_exec_statement] = STATE(5009), - [sym_type_alias_statement] = STATE(5009), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5009), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [394] = { + [sym__simple_statements] = STATE(1280), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68892,8 +70053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -68913,77 +70074,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1063), - [sym__indent] = ACTIONS(1065), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1069), + [sym__indent] = ACTIONS(1071), + [sym_string_start] = ACTIONS(109), }, - [392] = { - [sym__simple_statements] = STATE(1536), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [395] = { + [sym__simple_statements] = STATE(1281), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -68998,8 +70159,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69019,77 +70180,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1067), - [sym__indent] = ACTIONS(1069), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1073), + [sym__indent] = ACTIONS(1075), + [sym_string_start] = ACTIONS(109), }, - [393] = { - [sym__simple_statements] = STATE(1161), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [396] = { + [sym__simple_statements] = STATE(1579), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69104,8 +70265,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69125,77 +70286,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1071), - [sym__indent] = ACTIONS(1073), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1077), + [sym__indent] = ACTIONS(1079), + [sym_string_start] = ACTIONS(109), }, - [394] = { - [sym__simple_statements] = STATE(3111), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [397] = { + [sym__simple_statements] = STATE(718), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69210,8 +70371,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69231,77 +70392,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1075), - [sym__indent] = ACTIONS(1077), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1081), + [sym__indent] = ACTIONS(1083), + [sym_string_start] = ACTIONS(109), }, - [395] = { - [sym__simple_statements] = STATE(2984), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [398] = { + [sym__simple_statements] = STATE(3113), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69316,8 +70477,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69337,77 +70498,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1079), - [sym__indent] = ACTIONS(1081), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1085), + [sym__indent] = ACTIONS(1087), + [sym_string_start] = ACTIONS(109), }, - [396] = { - [sym__simple_statements] = STATE(1163), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [399] = { + [sym__simple_statements] = STATE(3068), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69422,8 +70583,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69443,77 +70604,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1083), - [sym__indent] = ACTIONS(1085), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(421), + [sym__indent] = ACTIONS(423), + [sym_string_start] = ACTIONS(109), }, - [397] = { - [sym__simple_statements] = STATE(1022), - [sym_import_statement] = STATE(4920), - [sym_future_import_statement] = STATE(4920), - [sym_import_from_statement] = STATE(4920), - [sym_print_statement] = STATE(4920), - [sym_assert_statement] = STATE(4920), - [sym_expression_statement] = STATE(4920), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4920), - [sym_delete_statement] = STATE(4920), - [sym_raise_statement] = STATE(4920), - [sym_pass_statement] = STATE(4920), - [sym_break_statement] = STATE(4920), - [sym_continue_statement] = STATE(4920), - [sym_global_statement] = STATE(4920), - [sym_nonlocal_statement] = STATE(4920), - [sym_exec_statement] = STATE(4920), - [sym_type_alias_statement] = STATE(4920), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4920), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [400] = { + [sym__simple_statements] = STATE(1098), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69528,8 +70689,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69549,77 +70710,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1087), - [sym__indent] = ACTIONS(1089), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1089), + [sym__indent] = ACTIONS(1091), + [sym_string_start] = ACTIONS(109), }, - [398] = { - [sym__simple_statements] = STATE(1542), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [401] = { + [sym__simple_statements] = STATE(3147), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69634,8 +70795,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69655,77 +70816,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1091), - [sym__indent] = ACTIONS(1093), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1093), + [sym__indent] = ACTIONS(1095), + [sym_string_start] = ACTIONS(109), }, - [399] = { - [sym__simple_statements] = STATE(716), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [402] = { + [sym__simple_statements] = STATE(2973), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69740,8 +70901,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69761,77 +70922,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1095), - [sym__indent] = ACTIONS(1097), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1097), + [sym__indent] = ACTIONS(1099), + [sym_string_start] = ACTIONS(109), }, - [400] = { - [sym__simple_statements] = STATE(713), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [403] = { + [sym__simple_statements] = STATE(547), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69846,8 +71007,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69867,77 +71028,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(419), - [sym__indent] = ACTIONS(421), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1101), + [sym__indent] = ACTIONS(1103), + [sym_string_start] = ACTIONS(109), }, - [401] = { - [sym__simple_statements] = STATE(928), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [404] = { + [sym__simple_statements] = STATE(3034), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -69952,8 +71113,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -69973,77 +71134,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1099), - [sym__indent] = ACTIONS(1101), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1105), + [sym__indent] = ACTIONS(1107), + [sym_string_start] = ACTIONS(109), }, - [402] = { - [sym__simple_statements] = STATE(3023), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [405] = { + [sym__simple_statements] = STATE(1328), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70058,8 +71219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70079,77 +71240,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1103), - [sym__indent] = ACTIONS(1105), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1109), + [sym__indent] = ACTIONS(1111), + [sym_string_start] = ACTIONS(109), }, - [403] = { - [sym__simple_statements] = STATE(3029), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [406] = { + [sym__simple_statements] = STATE(1301), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70164,8 +71325,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70185,77 +71346,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1107), - [sym__indent] = ACTIONS(1109), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(441), + [sym__indent] = ACTIONS(443), + [sym_string_start] = ACTIONS(109), }, - [404] = { - [sym__simple_statements] = STATE(3036), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [407] = { + [sym__simple_statements] = STATE(3049), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70270,8 +71431,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70291,77 +71452,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1111), - [sym__indent] = ACTIONS(1113), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1113), + [sym__indent] = ACTIONS(1115), + [sym_string_start] = ACTIONS(109), }, - [405] = { - [sym__simple_statements] = STATE(1547), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [408] = { + [sym__simple_statements] = STATE(3050), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70376,8 +71537,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70397,77 +71558,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1115), - [sym__indent] = ACTIONS(1117), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1117), + [sym__indent] = ACTIONS(1119), + [sym_string_start] = ACTIONS(109), }, - [406] = { - [sym__simple_statements] = STATE(1270), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [409] = { + [sym__simple_statements] = STATE(1506), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70482,8 +71643,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70503,77 +71664,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1119), - [sym__indent] = ACTIONS(1121), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1121), + [sym__indent] = ACTIONS(1123), + [sym_string_start] = ACTIONS(109), }, - [407] = { - [sym__simple_statements] = STATE(542), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [410] = { + [sym__simple_statements] = STATE(1081), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70588,8 +71749,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70609,77 +71770,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1123), - [sym__indent] = ACTIONS(1125), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1125), + [sym__indent] = ACTIONS(1127), + [sym_string_start] = ACTIONS(109), }, - [408] = { - [sym__simple_statements] = STATE(3043), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [411] = { + [sym__simple_statements] = STATE(1084), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70694,8 +71855,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70715,77 +71876,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1127), - [sym__indent] = ACTIONS(1129), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1129), + [sym__indent] = ACTIONS(1131), + [sym_string_start] = ACTIONS(109), }, - [409] = { - [sym__simple_statements] = STATE(1316), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [412] = { + [sym__simple_statements] = STATE(724), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70800,8 +71961,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70821,77 +71982,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1131), - [sym__indent] = ACTIONS(1133), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1133), + [sym__indent] = ACTIONS(1135), + [sym_string_start] = ACTIONS(109), }, - [410] = { - [sym__simple_statements] = STATE(1348), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [413] = { + [sym__simple_statements] = STATE(721), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -70906,8 +72067,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -70927,77 +72088,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(425), + [sym__indent] = ACTIONS(427), + [sym_string_start] = ACTIONS(109), }, - [411] = { - [sym__simple_statements] = STATE(718), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [414] = { + [sym__simple_statements] = STATE(1005), + [sym_import_statement] = STATE(4980), + [sym_future_import_statement] = STATE(4980), + [sym_import_from_statement] = STATE(4980), + [sym_print_statement] = STATE(4980), + [sym_assert_statement] = STATE(4980), + [sym_expression_statement] = STATE(4980), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4980), + [sym_delete_statement] = STATE(4980), + [sym_raise_statement] = STATE(4980), + [sym_pass_statement] = STATE(4980), + [sym_break_statement] = STATE(4980), + [sym_continue_statement] = STATE(4980), + [sym_global_statement] = STATE(4980), + [sym_nonlocal_statement] = STATE(4980), + [sym_exec_statement] = STATE(4980), + [sym_type_alias_statement] = STATE(4980), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4980), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71012,8 +72173,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71033,77 +72194,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(403), - [sym__indent] = ACTIONS(405), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1137), + [sym__indent] = ACTIONS(1139), + [sym_string_start] = ACTIONS(109), }, - [412] = { - [sym__simple_statements] = STATE(545), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [415] = { + [sym__simple_statements] = STATE(3030), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71118,8 +72279,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71139,77 +72300,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1139), - [sym__indent] = ACTIONS(1141), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1141), + [sym__indent] = ACTIONS(1143), + [sym_string_start] = ACTIONS(109), }, - [413] = { - [sym__simple_statements] = STATE(546), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [416] = { + [sym__simple_statements] = STATE(3028), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71224,8 +72385,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71245,77 +72406,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1143), - [sym__indent] = ACTIONS(1145), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1145), + [sym__indent] = ACTIONS(1147), + [sym_string_start] = ACTIONS(109), }, - [414] = { - [sym__simple_statements] = STATE(1170), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [417] = { + [sym__simple_statements] = STATE(3105), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71330,8 +72491,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71351,77 +72512,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1147), - [sym__indent] = ACTIONS(1149), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1149), + [sym__indent] = ACTIONS(1151), + [sym_string_start] = ACTIONS(109), }, - [415] = { - [sym__simple_statements] = STATE(3077), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [418] = { + [sym__simple_statements] = STATE(1521), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71436,8 +72597,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71457,77 +72618,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1151), - [sym__indent] = ACTIONS(1153), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1153), + [sym__indent] = ACTIONS(1155), + [sym_string_start] = ACTIONS(109), }, - [416] = { - [sym__simple_statements] = STATE(1346), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [419] = { + [sym__simple_statements] = STATE(1331), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71542,8 +72703,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71563,77 +72724,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1155), - [sym__indent] = ACTIONS(1157), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1157), + [sym__indent] = ACTIONS(1159), + [sym_string_start] = ACTIONS(109), }, - [417] = { - [sym__simple_statements] = STATE(2945), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [420] = { + [sym__simple_statements] = STATE(1534), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71648,8 +72809,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71669,77 +72830,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1159), - [sym__indent] = ACTIONS(1161), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1161), + [sym__indent] = ACTIONS(1163), + [sym_string_start] = ACTIONS(109), }, - [418] = { - [sym__simple_statements] = STATE(3089), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [421] = { + [sym__simple_statements] = STATE(3155), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71754,8 +72915,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71775,77 +72936,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1163), - [sym__indent] = ACTIONS(1165), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1165), + [sym__indent] = ACTIONS(1167), + [sym_string_start] = ACTIONS(109), }, - [419] = { - [sym__simple_statements] = STATE(3090), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [422] = { + [sym__simple_statements] = STATE(890), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71860,8 +73021,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71881,77 +73042,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1167), - [sym__indent] = ACTIONS(1169), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1169), + [sym__indent] = ACTIONS(1171), + [sym_string_start] = ACTIONS(109), }, - [420] = { - [sym__simple_statements] = STATE(1329), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [423] = { + [sym__simple_statements] = STATE(551), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -71966,8 +73127,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -71987,77 +73148,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(379), - [sym__indent] = ACTIONS(381), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1173), + [sym__indent] = ACTIONS(1175), + [sym_string_start] = ACTIONS(109), }, - [421] = { - [sym__simple_statements] = STATE(720), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [424] = { + [sym__simple_statements] = STATE(726), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72072,8 +73233,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72093,77 +73254,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(409), + [sym__indent] = ACTIONS(411), + [sym_string_start] = ACTIONS(109), }, - [422] = { - [sym__simple_statements] = STATE(3033), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [425] = { + [sym__simple_statements] = STATE(1114), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72178,8 +73339,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72199,77 +73360,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(411), - [sym__indent] = ACTIONS(413), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1177), + [sym__indent] = ACTIONS(1179), + [sym_string_start] = ACTIONS(109), }, - [423] = { - [sym__simple_statements] = STATE(1187), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [426] = { + [sym__simple_statements] = STATE(1308), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72284,8 +73445,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72305,77 +73466,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1175), - [sym__indent] = ACTIONS(1177), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1181), + [sym__indent] = ACTIONS(1183), + [sym_string_start] = ACTIONS(109), }, - [424] = { - [sym__simple_statements] = STATE(555), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [427] = { + [sym__simple_statements] = STATE(554), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72390,8 +73551,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72411,77 +73572,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1179), - [sym__indent] = ACTIONS(1181), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1185), + [sym__indent] = ACTIONS(1187), + [sym_string_start] = ACTIONS(109), }, - [425] = { - [sym__simple_statements] = STATE(2988), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [428] = { + [sym__simple_statements] = STATE(3156), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72496,8 +73657,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72517,77 +73678,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1183), - [sym__indent] = ACTIONS(1185), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1189), + [sym__indent] = ACTIONS(1191), + [sym_string_start] = ACTIONS(109), }, - [426] = { - [sym__simple_statements] = STATE(556), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [429] = { + [sym__simple_statements] = STATE(555), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72602,8 +73763,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72623,77 +73784,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1187), - [sym__indent] = ACTIONS(1189), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1193), + [sym__indent] = ACTIONS(1195), + [sym_string_start] = ACTIONS(109), }, - [427] = { - [sym__simple_statements] = STATE(557), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [430] = { + [sym__simple_statements] = STATE(1345), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72708,8 +73869,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72729,77 +73890,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1191), - [sym__indent] = ACTIONS(1193), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1197), + [sym__indent] = ACTIONS(1199), + [sym_string_start] = ACTIONS(109), }, - [428] = { - [sym__simple_statements] = STATE(730), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [431] = { + [sym__simple_statements] = STATE(3143), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72814,8 +73975,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72835,77 +73996,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1195), - [sym__indent] = ACTIONS(1197), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1201), + [sym__indent] = ACTIONS(1203), + [sym_string_start] = ACTIONS(109), }, - [429] = { - [sym__simple_statements] = STATE(1393), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [432] = { + [sym__simple_statements] = STATE(3154), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -72920,8 +74081,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -72941,77 +74102,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1199), - [sym__indent] = ACTIONS(1201), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1205), + [sym__indent] = ACTIONS(1207), + [sym_string_start] = ACTIONS(109), }, - [430] = { - [sym__simple_statements] = STATE(1184), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [433] = { + [sym__simple_statements] = STATE(1391), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73026,8 +74187,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73047,77 +74208,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1203), - [sym__indent] = ACTIONS(1205), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1209), + [sym__indent] = ACTIONS(1211), + [sym_string_start] = ACTIONS(109), }, - [431] = { - [sym__simple_statements] = STATE(1186), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [434] = { + [sym__simple_statements] = STATE(728), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73132,8 +74293,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73153,77 +74314,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1207), - [sym__indent] = ACTIONS(1209), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1213), + [sym__indent] = ACTIONS(1215), + [sym_string_start] = ACTIONS(109), }, - [432] = { - [sym__simple_statements] = STATE(5331), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [435] = { + [sym__simple_statements] = STATE(3006), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73238,8 +74399,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73259,77 +74420,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1211), - [sym__indent] = ACTIONS(1213), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1217), + [sym__indent] = ACTIONS(1219), + [sym_string_start] = ACTIONS(109), }, - [433] = { - [sym__simple_statements] = STATE(1565), - [sym_import_statement] = STATE(4878), - [sym_future_import_statement] = STATE(4878), - [sym_import_from_statement] = STATE(4878), - [sym_print_statement] = STATE(4878), - [sym_assert_statement] = STATE(4878), - [sym_expression_statement] = STATE(4878), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4878), - [sym_delete_statement] = STATE(4878), - [sym_raise_statement] = STATE(4878), - [sym_pass_statement] = STATE(4878), - [sym_break_statement] = STATE(4878), - [sym_continue_statement] = STATE(4878), - [sym_global_statement] = STATE(4878), - [sym_nonlocal_statement] = STATE(4878), - [sym_exec_statement] = STATE(4878), - [sym_type_alias_statement] = STATE(4878), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4878), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [436] = { + [sym__simple_statements] = STATE(1062), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73344,8 +74505,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73365,77 +74526,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1215), - [sym__indent] = ACTIONS(1217), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1221), + [sym__indent] = ACTIONS(1223), + [sym_string_start] = ACTIONS(109), }, - [434] = { - [sym__simple_statements] = STATE(1395), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [437] = { + [sym__simple_statements] = STATE(3117), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73450,8 +74611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73471,77 +74632,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1219), - [sym__indent] = ACTIONS(1221), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(445), + [sym__indent] = ACTIONS(447), + [sym_string_start] = ACTIONS(109), }, - [435] = { - [sym__simple_statements] = STATE(5349), - [sym_import_statement] = STATE(4861), - [sym_future_import_statement] = STATE(4861), - [sym_import_from_statement] = STATE(4861), - [sym_print_statement] = STATE(4861), - [sym_assert_statement] = STATE(4861), - [sym_expression_statement] = STATE(4861), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4861), - [sym_delete_statement] = STATE(4861), - [sym_raise_statement] = STATE(4861), - [sym_pass_statement] = STATE(4861), - [sym_break_statement] = STATE(4861), - [sym_continue_statement] = STATE(4861), - [sym_global_statement] = STATE(4861), - [sym_nonlocal_statement] = STATE(4861), - [sym_exec_statement] = STATE(4861), - [sym_type_alias_statement] = STATE(4861), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4861), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [438] = { + [sym__simple_statements] = STATE(3101), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73556,8 +74717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73577,77 +74738,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1223), - [sym__indent] = ACTIONS(1225), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1225), + [sym__indent] = ACTIONS(1227), + [sym_string_start] = ACTIONS(109), }, - [436] = { - [sym__simple_statements] = STATE(4012), - [sym_import_statement] = STATE(5009), - [sym_future_import_statement] = STATE(5009), - [sym_import_from_statement] = STATE(5009), - [sym_print_statement] = STATE(5009), - [sym_assert_statement] = STATE(5009), - [sym_expression_statement] = STATE(5009), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5009), - [sym_delete_statement] = STATE(5009), - [sym_raise_statement] = STATE(5009), - [sym_pass_statement] = STATE(5009), - [sym_break_statement] = STATE(5009), - [sym_continue_statement] = STATE(5009), - [sym_global_statement] = STATE(5009), - [sym_nonlocal_statement] = STATE(5009), - [sym_exec_statement] = STATE(5009), - [sym_type_alias_statement] = STATE(5009), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5009), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [439] = { + [sym__simple_statements] = STATE(1352), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73662,8 +74823,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73683,77 +74844,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1227), - [sym__indent] = ACTIONS(1229), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1229), + [sym__indent] = ACTIONS(1231), + [sym_string_start] = ACTIONS(109), }, - [437] = { - [sym__simple_statements] = STATE(1168), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [440] = { + [sym__simple_statements] = STATE(564), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73768,8 +74929,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -73789,183 +74950,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1231), - [sym__indent] = ACTIONS(1233), - [sym_string_start] = ACTIONS(107), - }, - [438] = { - [sym_chevron] = STATE(4669), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3979), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_print] = ACTIONS(824), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(813), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_AT] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(838), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(838), - [anon_sym_not] = ACTIONS(841), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_SLASH_SLASH] = ACTIONS(813), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(844), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_lambda] = ACTIONS(73), - [anon_sym_PLUS_EQ] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(847), - [anon_sym_STAR_EQ] = ACTIONS(847), - [anon_sym_SLASH_EQ] = ACTIONS(847), - [anon_sym_AT_EQ] = ACTIONS(847), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), - [anon_sym_PERCENT_EQ] = ACTIONS(847), - [anon_sym_STAR_STAR_EQ] = ACTIONS(847), - [anon_sym_GT_GT_EQ] = ACTIONS(847), - [anon_sym_LT_LT_EQ] = ACTIONS(847), - [anon_sym_AMP_EQ] = ACTIONS(847), - [anon_sym_CARET_EQ] = ACTIONS(847), - [anon_sym_PIPE_EQ] = ACTIONS(847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(849), - [anon_sym_api] = ACTIONS(824), - [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(811), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1233), + [sym__indent] = ACTIONS(1235), + [sym_string_start] = ACTIONS(109), }, - [439] = { - [sym__simple_statements] = STATE(1034), - [sym_import_statement] = STATE(4920), - [sym_future_import_statement] = STATE(4920), - [sym_import_from_statement] = STATE(4920), - [sym_print_statement] = STATE(4920), - [sym_assert_statement] = STATE(4920), - [sym_expression_statement] = STATE(4920), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4920), - [sym_delete_statement] = STATE(4920), - [sym_raise_statement] = STATE(4920), - [sym_pass_statement] = STATE(4920), - [sym_break_statement] = STATE(4920), - [sym_continue_statement] = STATE(4920), - [sym_global_statement] = STATE(4920), - [sym_nonlocal_statement] = STATE(4920), - [sym_exec_statement] = STATE(4920), - [sym_type_alias_statement] = STATE(4920), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4920), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [441] = { + [sym__simple_statements] = STATE(531), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -73980,8 +75035,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74001,77 +75056,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1235), - [sym__indent] = ACTIONS(1237), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1237), + [sym__indent] = ACTIONS(1239), + [sym_string_start] = ACTIONS(109), }, - [440] = { - [sym__simple_statements] = STATE(1774), - [sym_import_statement] = STATE(4836), - [sym_future_import_statement] = STATE(4836), - [sym_import_from_statement] = STATE(4836), - [sym_print_statement] = STATE(4836), - [sym_assert_statement] = STATE(4836), - [sym_expression_statement] = STATE(4836), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(4836), - [sym_delete_statement] = STATE(4836), - [sym_raise_statement] = STATE(4836), - [sym_pass_statement] = STATE(4836), - [sym_break_statement] = STATE(4836), - [sym_continue_statement] = STATE(4836), - [sym_global_statement] = STATE(4836), - [sym_nonlocal_statement] = STATE(4836), - [sym_exec_statement] = STATE(4836), - [sym_type_alias_statement] = STATE(4836), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(4836), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [442] = { + [sym__simple_statements] = STATE(565), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74086,8 +75141,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74107,286 +75162,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1239), - [sym__indent] = ACTIONS(1241), - [sym_string_start] = ACTIONS(107), - }, - [441] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4081), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(813), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(813), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_SLASH_SLASH] = ACTIONS(813), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_PLUS_EQ] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(847), - [anon_sym_STAR_EQ] = ACTIONS(847), - [anon_sym_SLASH_EQ] = ACTIONS(847), - [anon_sym_AT_EQ] = ACTIONS(847), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), - [anon_sym_PERCENT_EQ] = ACTIONS(847), - [anon_sym_STAR_STAR_EQ] = ACTIONS(847), - [anon_sym_GT_GT_EQ] = ACTIONS(847), - [anon_sym_LT_LT_EQ] = ACTIONS(847), - [anon_sym_AMP_EQ] = ACTIONS(847), - [anon_sym_CARET_EQ] = ACTIONS(847), - [anon_sym_PIPE_EQ] = ACTIONS(847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym__newline] = ACTIONS(811), - [sym_string_start] = ACTIONS(1279), - }, - [442] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4184), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(813), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(813), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_SLASH_SLASH] = ACTIONS(813), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_PLUS_EQ] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(847), - [anon_sym_STAR_EQ] = ACTIONS(847), - [anon_sym_SLASH_EQ] = ACTIONS(847), - [anon_sym_AT_EQ] = ACTIONS(847), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), - [anon_sym_PERCENT_EQ] = ACTIONS(847), - [anon_sym_STAR_STAR_EQ] = ACTIONS(847), - [anon_sym_GT_GT_EQ] = ACTIONS(847), - [anon_sym_LT_LT_EQ] = ACTIONS(847), - [anon_sym_AMP_EQ] = ACTIONS(847), - [anon_sym_CARET_EQ] = ACTIONS(847), - [anon_sym_PIPE_EQ] = ACTIONS(847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym__newline] = ACTIONS(811), - [sym_string_start] = ACTIONS(1279), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1241), + [sym__indent] = ACTIONS(1243), + [sym_string_start] = ACTIONS(109), }, [443] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [sym__simple_statements] = STATE(566), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74401,8 +75247,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74422,75 +75268,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1281), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1245), + [sym__indent] = ACTIONS(1247), + [sym_string_start] = ACTIONS(109), }, [444] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [sym__simple_statements] = STATE(1297), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74505,8 +75353,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74526,75 +75374,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1283), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1249), + [sym__indent] = ACTIONS(1251), + [sym_string_start] = ACTIONS(109), }, [445] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [sym__simple_statements] = STATE(1111), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74609,8 +75459,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74630,75 +75480,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1285), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1253), + [sym__indent] = ACTIONS(1255), + [sym_string_start] = ACTIONS(109), }, [446] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [sym__simple_statements] = STATE(1112), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74713,8 +75565,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74734,75 +75586,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1287), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1257), + [sym__indent] = ACTIONS(1259), + [sym_string_start] = ACTIONS(109), }, [447] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [sym__simple_statements] = STATE(1359), + [sym_import_statement] = STATE(5070), + [sym_future_import_statement] = STATE(5070), + [sym_import_from_statement] = STATE(5070), + [sym_print_statement] = STATE(5070), + [sym_assert_statement] = STATE(5070), + [sym_expression_statement] = STATE(5070), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5070), + [sym_delete_statement] = STATE(5070), + [sym_raise_statement] = STATE(5070), + [sym_pass_statement] = STATE(5070), + [sym_break_statement] = STATE(5070), + [sym_continue_statement] = STATE(5070), + [sym_global_statement] = STATE(5070), + [sym_nonlocal_statement] = STATE(5070), + [sym_exec_statement] = STATE(5070), + [sym_type_alias_statement] = STATE(5070), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5070), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74817,8 +75671,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74838,75 +75692,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1289), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(397), + [sym__indent] = ACTIONS(399), + [sym_string_start] = ACTIONS(109), }, [448] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [sym__simple_statements] = STATE(1581), + [sym_import_statement] = STATE(5099), + [sym_future_import_statement] = STATE(5099), + [sym_import_from_statement] = STATE(5099), + [sym_print_statement] = STATE(5099), + [sym_assert_statement] = STATE(5099), + [sym_expression_statement] = STATE(5099), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5099), + [sym_delete_statement] = STATE(5099), + [sym_raise_statement] = STATE(5099), + [sym_pass_statement] = STATE(5099), + [sym_break_statement] = STATE(5099), + [sym_continue_statement] = STATE(5099), + [sym_global_statement] = STATE(5099), + [sym_nonlocal_statement] = STATE(5099), + [sym_exec_statement] = STATE(5099), + [sym_type_alias_statement] = STATE(5099), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5099), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -74921,8 +75777,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -74942,75 +75798,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1291), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1261), + [sym__indent] = ACTIONS(1263), + [sym_string_start] = ACTIONS(109), }, [449] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [sym__simple_statements] = STATE(4036), + [sym_import_statement] = STATE(4770), + [sym_future_import_statement] = STATE(4770), + [sym_import_from_statement] = STATE(4770), + [sym_print_statement] = STATE(4770), + [sym_assert_statement] = STATE(4770), + [sym_expression_statement] = STATE(4770), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4770), + [sym_delete_statement] = STATE(4770), + [sym_raise_statement] = STATE(4770), + [sym_pass_statement] = STATE(4770), + [sym_break_statement] = STATE(4770), + [sym_continue_statement] = STATE(4770), + [sym_global_statement] = STATE(4770), + [sym_nonlocal_statement] = STATE(4770), + [sym_exec_statement] = STATE(4770), + [sym_type_alias_statement] = STATE(4770), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4770), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75025,8 +75883,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75046,179 +75904,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1293), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1265), + [sym__indent] = ACTIONS(1267), + [sym_string_start] = ACTIONS(109), }, [450] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [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(4748), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(4011), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_print] = ACTIONS(870), + [anon_sym_GT_GT] = ACTIONS(872), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_EQ] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_AT] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(859), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(884), + [anon_sym_not] = ACTIONS(887), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), [anon_sym_lambda] = ACTIONS(73), - [anon_sym_yield] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_AT_EQ] = ACTIONS(893), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(893), + [anon_sym_PERCENT_EQ] = ACTIONS(893), + [anon_sym_STAR_STAR_EQ] = ACTIONS(893), + [anon_sym_GT_GT_EQ] = ACTIONS(893), + [anon_sym_LT_LT_EQ] = ACTIONS(893), + [anon_sym_AMP_EQ] = ACTIONS(893), + [anon_sym_CARET_EQ] = ACTIONS(893), + [anon_sym_PIPE_EQ] = ACTIONS(893), [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(895), + [anon_sym_api] = ACTIONS(870), [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(1295), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(857), + [sym_string_start] = ACTIONS(109), }, [451] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [sym__simple_statements] = STATE(5489), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75233,8 +76095,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75254,75 +76116,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1297), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1269), + [sym__indent] = ACTIONS(1271), + [sym_string_start] = ACTIONS(109), }, [452] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [sym__simple_statements] = STATE(3095), + [sym_import_statement] = STATE(4914), + [sym_future_import_statement] = STATE(4914), + [sym_import_from_statement] = STATE(4914), + [sym_print_statement] = STATE(4914), + [sym_assert_statement] = STATE(4914), + [sym_expression_statement] = STATE(4914), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(4914), + [sym_delete_statement] = STATE(4914), + [sym_raise_statement] = STATE(4914), + [sym_pass_statement] = STATE(4914), + [sym_break_statement] = STATE(4914), + [sym_continue_statement] = STATE(4914), + [sym_global_statement] = STATE(4914), + [sym_nonlocal_statement] = STATE(4914), + [sym_exec_statement] = STATE(4914), + [sym_type_alias_statement] = STATE(4914), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(4914), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75337,8 +76201,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75358,75 +76222,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1299), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1273), + [sym__indent] = ACTIONS(1275), + [sym_string_start] = ACTIONS(109), }, [453] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4252), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_EQ] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_AT_EQ] = ACTIONS(893), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(893), + [anon_sym_PERCENT_EQ] = ACTIONS(893), + [anon_sym_STAR_STAR_EQ] = ACTIONS(893), + [anon_sym_GT_GT_EQ] = ACTIONS(893), + [anon_sym_LT_LT_EQ] = ACTIONS(893), + [anon_sym_AMP_EQ] = ACTIONS(893), + [anon_sym_CARET_EQ] = ACTIONS(893), + [anon_sym_PIPE_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym__newline] = ACTIONS(857), + [sym_string_start] = ACTIONS(1313), + }, + [454] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4203), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_EQ] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_AT_EQ] = ACTIONS(893), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(893), + [anon_sym_PERCENT_EQ] = ACTIONS(893), + [anon_sym_STAR_STAR_EQ] = ACTIONS(893), + [anon_sym_GT_GT_EQ] = ACTIONS(893), + [anon_sym_LT_LT_EQ] = ACTIONS(893), + [anon_sym_AMP_EQ] = ACTIONS(893), + [anon_sym_CARET_EQ] = ACTIONS(893), + [anon_sym_PIPE_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym__newline] = ACTIONS(857), + [sym_string_start] = ACTIONS(1313), + }, + [455] = { + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75441,8 +76516,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75462,75 +76537,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1301), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1315), + [sym_string_start] = ACTIONS(109), }, - [454] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [456] = { + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75545,8 +76620,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75566,75 +76641,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1303), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1317), + [sym_string_start] = ACTIONS(109), }, - [455] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [457] = { + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75649,8 +76724,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75670,75 +76745,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1305), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1319), + [sym_string_start] = ACTIONS(109), }, - [456] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [458] = { + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75753,8 +76828,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75774,75 +76849,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1307), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1321), + [sym_string_start] = ACTIONS(109), }, - [457] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [459] = { + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75857,8 +76932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75878,75 +76953,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1309), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1323), + [sym_string_start] = ACTIONS(109), }, - [458] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [460] = { + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -75961,8 +77036,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -75982,75 +77057,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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(1311), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1325), + [sym_string_start] = ACTIONS(109), }, - [459] = { - [sym_import_statement] = STATE(5316), - [sym_future_import_statement] = STATE(5316), - [sym_import_from_statement] = STATE(5316), - [sym_print_statement] = STATE(5316), - [sym_assert_statement] = STATE(5316), - [sym_expression_statement] = STATE(5316), - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_return_statement] = STATE(5316), - [sym_delete_statement] = STATE(5316), - [sym_raise_statement] = STATE(5316), - [sym_pass_statement] = STATE(5316), - [sym_break_statement] = STATE(5316), - [sym_continue_statement] = STATE(5316), - [sym_global_statement] = STATE(5316), - [sym_nonlocal_statement] = STATE(5316), - [sym_exec_statement] = STATE(5316), - [sym_type_alias_statement] = STATE(5316), - [sym_pattern] = STATE(3325), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3974), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5314), - [sym_augmented_assignment] = STATE(5314), - [sym_pattern_list] = STATE(3452), - [sym_yield] = STATE(5314), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_include_statement] = STATE(5316), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [461] = { + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_cimport] = ACTIONS(11), @@ -76065,8 +77140,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(363), - [anon_sym_async] = ACTIONS(363), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -76086,5362 +77161,5781 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1327), + [sym_string_start] = ACTIONS(109), }, - [460] = { - [sym_list_splat_pattern] = STATE(2166), - [sym_primary_expression] = STATE(2103), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_print] = ACTIONS(1317), - [anon_sym_GT_GT] = ACTIONS(813), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(813), - [anon_sym_exec] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(813), + [462] = { + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(1321), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_SLASH_SLASH] = ACTIONS(813), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym_LT_LT] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(1323), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_PLUS_EQ] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(847), - [anon_sym_STAR_EQ] = ACTIONS(847), - [anon_sym_SLASH_EQ] = ACTIONS(847), - [anon_sym_AT_EQ] = ACTIONS(847), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), - [anon_sym_PERCENT_EQ] = ACTIONS(847), - [anon_sym_STAR_STAR_EQ] = ACTIONS(847), - [anon_sym_GT_GT_EQ] = ACTIONS(847), - [anon_sym_LT_LT_EQ] = ACTIONS(847), - [anon_sym_AMP_EQ] = ACTIONS(847), - [anon_sym_CARET_EQ] = ACTIONS(847), - [anon_sym_PIPE_EQ] = ACTIONS(847), + [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(1325), - [anon_sym_api] = ACTIONS(1317), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(811), - [sym_string_start] = ACTIONS(107), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1329), + [sym_string_start] = ACTIONS(109), }, - [461] = { - [sym_list_splat_pattern] = STATE(2166), - [sym_primary_expression] = STATE(2103), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_print] = ACTIONS(1317), - [anon_sym_GT_GT] = ACTIONS(813), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(830), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(813), - [anon_sym_exec] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(813), + [463] = { + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(1321), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_SLASH_SLASH] = ACTIONS(813), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym_LT_LT] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(1323), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_PLUS_EQ] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(847), - [anon_sym_STAR_EQ] = ACTIONS(847), - [anon_sym_SLASH_EQ] = ACTIONS(847), - [anon_sym_AT_EQ] = ACTIONS(847), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), - [anon_sym_PERCENT_EQ] = ACTIONS(847), - [anon_sym_STAR_STAR_EQ] = ACTIONS(847), - [anon_sym_GT_GT_EQ] = ACTIONS(847), - [anon_sym_LT_LT_EQ] = ACTIONS(847), - [anon_sym_AMP_EQ] = ACTIONS(847), - [anon_sym_CARET_EQ] = ACTIONS(847), - [anon_sym_PIPE_EQ] = ACTIONS(847), + [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(1325), - [anon_sym_api] = ACTIONS(1317), + [anon_sym_await] = ACTIONS(85), + [anon_sym_api] = ACTIONS(373), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(811), - [sym_string_start] = ACTIONS(107), - }, - [462] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(3290), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1327), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1329), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_EQ] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1329), - [anon_sym_SLASH_SLASH] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_LT_LT] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_is] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ] = ACTIONS(1327), - [anon_sym_BANG_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_LT_GT] = ACTIONS(1327), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_AT_EQ] = ACTIONS(1327), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1327), - [anon_sym_PERCENT_EQ] = ACTIONS(1327), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1327), - [anon_sym_GT_GT_EQ] = ACTIONS(1327), - [anon_sym_LT_LT_EQ] = ACTIONS(1327), - [anon_sym_AMP_EQ] = ACTIONS(1327), - [anon_sym_CARET_EQ] = ACTIONS(1327), - [anon_sym_PIPE_EQ] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1344), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym__newline] = ACTIONS(1327), - [sym_string_start] = ACTIONS(1279), - }, - [463] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym__patterns] = STATE(5511), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3696), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4886), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5637), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5345), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [anon_sym_include] = ACTIONS(93), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1331), + [sym_string_start] = ACTIONS(109), }, [464] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym__patterns] = STATE(5676), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3746), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4858), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5724), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5309), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_RPAREN] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(373), + [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(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1333), + [sym_string_start] = ACTIONS(109), }, [465] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4809), - [sym_parenthesized_list_splat] = STATE(4970), - [sym__patterns] = STATE(5511), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3772), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(5026), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5545), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5345), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(373), + [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(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1335), + [sym_string_start] = ACTIONS(109), }, [466] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5293), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(373), + [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(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1337), + [sym_string_start] = ACTIONS(109), }, [467] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5038), - [sym_dictionary_splat] = STATE(5038), - [sym_parenthesized_list_splat] = STATE(5047), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4207), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5038), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1444), - [anon_sym_COMMA] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(373), + [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(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1339), + [sym_string_start] = ACTIONS(109), }, [468] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5136), - [sym_dictionary_splat] = STATE(5136), - [sym_parenthesized_list_splat] = STATE(5138), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4114), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5136), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(373), + [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(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1341), + [sym_string_start] = ACTIONS(109), }, [469] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5232), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(373), + [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(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1343), + [sym_string_start] = ACTIONS(109), }, [470] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5376), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(373), + [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(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(1345), + [sym_string_start] = ACTIONS(109), }, [471] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5394), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_import_statement] = STATE(5324), + [sym_future_import_statement] = STATE(5324), + [sym_import_from_statement] = STATE(5324), + [sym_print_statement] = STATE(5324), + [sym_assert_statement] = STATE(5324), + [sym_expression_statement] = STATE(5324), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_return_statement] = STATE(5324), + [sym_delete_statement] = STATE(5324), + [sym_raise_statement] = STATE(5324), + [sym_pass_statement] = STATE(5324), + [sym_break_statement] = STATE(5324), + [sym_continue_statement] = STATE(5324), + [sym_global_statement] = STATE(5324), + [sym_nonlocal_statement] = STATE(5324), + [sym_exec_statement] = STATE(5324), + [sym_type_alias_statement] = STATE(5324), + [sym_pattern] = STATE(3412), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3997), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5424), + [sym_augmented_assignment] = STATE(5424), + [sym_pattern_list] = STATE(3506), + [sym_yield] = STATE(5424), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_include_statement] = STATE(5324), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [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(373), + [anon_sym_async] = ACTIONS(373), + [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(373), + [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(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, [472] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5252), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_list_splat_pattern] = STATE(2215), + [sym_primary_expression] = STATE(2151), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_print] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_exec] = ACTIONS(1351), + [anon_sym_EQ] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_AT] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_AT_EQ] = ACTIONS(893), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(893), + [anon_sym_PERCENT_EQ] = ACTIONS(893), + [anon_sym_STAR_STAR_EQ] = ACTIONS(893), + [anon_sym_GT_GT_EQ] = ACTIONS(893), + [anon_sym_LT_LT_EQ] = ACTIONS(893), + [anon_sym_AMP_EQ] = ACTIONS(893), + [anon_sym_CARET_EQ] = ACTIONS(893), + [anon_sym_PIPE_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1359), + [anon_sym_api] = ACTIONS(1351), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(857), + [sym_string_start] = ACTIONS(109), }, [473] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_list_splat_pattern] = STATE(2215), + [sym_primary_expression] = STATE(2151), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_print] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(879), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_exec] = ACTIONS(1351), + [anon_sym_EQ] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_AT] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_AT_EQ] = ACTIONS(893), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(893), + [anon_sym_PERCENT_EQ] = ACTIONS(893), + [anon_sym_STAR_STAR_EQ] = ACTIONS(893), + [anon_sym_GT_GT_EQ] = ACTIONS(893), + [anon_sym_LT_LT_EQ] = ACTIONS(893), + [anon_sym_AMP_EQ] = ACTIONS(893), + [anon_sym_CARET_EQ] = ACTIONS(893), + [anon_sym_PIPE_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1359), + [anon_sym_api] = ACTIONS(1351), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(857), + [sym_string_start] = ACTIONS(109), }, [474] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4956), - [sym_dictionary_splat] = STATE(4956), - [sym_parenthesized_list_splat] = STATE(4957), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4155), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4956), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(3299), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_in] = ACTIONS(1366), + [anon_sym_STAR_STAR] = ACTIONS(1363), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_not] = ACTIONS(1366), + [anon_sym_and] = ACTIONS(1366), + [anon_sym_or] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1363), + [anon_sym_SLASH_SLASH] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_LT_LT] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_is] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_LT_GT] = ACTIONS(1361), + [anon_sym_PLUS_EQ] = ACTIONS(1361), + [anon_sym_DASH_EQ] = ACTIONS(1361), + [anon_sym_STAR_EQ] = ACTIONS(1361), + [anon_sym_SLASH_EQ] = ACTIONS(1361), + [anon_sym_AT_EQ] = ACTIONS(1361), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1361), + [anon_sym_PERCENT_EQ] = ACTIONS(1361), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1361), + [anon_sym_GT_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_LT_EQ] = ACTIONS(1361), + [anon_sym_AMP_EQ] = ACTIONS(1361), + [anon_sym_CARET_EQ] = ACTIONS(1361), + [anon_sym_PIPE_EQ] = ACTIONS(1361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1311), + [sym__newline] = ACTIONS(1361), + [sym_string_start] = ACTIONS(1313), }, [475] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4823), - [sym_dictionary_splat] = STATE(4823), - [sym_parenthesized_list_splat] = STATE(4824), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4162), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4823), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_COMMA] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym__patterns] = STATE(5706), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3814), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4911), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5521), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5336), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [476] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4875), - [sym_dictionary_splat] = STATE(4875), - [sym_parenthesized_list_splat] = STATE(4876), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4164), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4875), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym__patterns] = STATE(5595), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3789), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(5102), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5714), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5296), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [477] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4994), - [sym_dictionary_splat] = STATE(4994), - [sym_parenthesized_list_splat] = STATE(4995), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4169), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4994), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_COMMA] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(5252), + [sym_parenthesized_list_splat] = STATE(5257), + [sym__patterns] = STATE(5595), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4784), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5773), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5296), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [478] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4930), - [sym_dictionary_splat] = STATE(4930), - [sym_parenthesized_list_splat] = STATE(4931), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4172), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4930), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5345), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [479] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4978), - [sym_dictionary_splat] = STATE(4978), - [sym_parenthesized_list_splat] = STATE(4979), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4174), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4978), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_COMMA] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_import] = ACTIONS(1476), + [anon_sym_cimport] = ACTIONS(1476), + [anon_sym_from] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_print] = ACTIONS(1476), + [anon_sym_assert] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_del] = ACTIONS(1476), + [anon_sym_raise] = ACTIONS(1476), + [anon_sym_pass] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_elif] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_try] = ACTIONS(1476), + [anon_sym_finally] = ACTIONS(1476), + [anon_sym_with] = ACTIONS(1476), + [anon_sym_def] = ACTIONS(1476), + [anon_sym_global] = ACTIONS(1476), + [anon_sym_nonlocal] = ACTIONS(1476), + [anon_sym_exec] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_not] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_lambda] = ACTIONS(1476), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_None] = ACTIONS(1476), + [sym_integer] = ACTIONS(1476), + [sym_float] = ACTIONS(1478), + [anon_sym_await] = ACTIONS(1476), + [anon_sym_api] = ACTIONS(1476), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1476), + [anon_sym_include] = ACTIONS(1476), + [anon_sym_DEF] = ACTIONS(1476), + [anon_sym_IF] = ACTIONS(1476), + [anon_sym_ELIF] = ACTIONS(1476), + [anon_sym_ELSE] = ACTIONS(1476), + [anon_sym_cdef] = ACTIONS(1476), + [anon_sym_cpdef] = ACTIONS(1476), + [anon_sym_int] = ACTIONS(1476), + [anon_sym_double] = ACTIONS(1476), + [anon_sym_complex] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_char] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_ctypedef] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_cppclass] = ACTIONS(1476), + [anon_sym_fused] = ACTIONS(1476), + [anon_sym_public] = ACTIONS(1476), + [anon_sym_packed] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym_readonly] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1476), + [sym__dedent] = ACTIONS(1478), + [sym_string_start] = ACTIONS(1478), }, [480] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4905), - [sym_dictionary_splat] = STATE(4905), - [sym_parenthesized_list_splat] = STATE(4906), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4178), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4905), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_import] = ACTIONS(1480), + [anon_sym_cimport] = ACTIONS(1480), + [anon_sym_from] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_del] = ACTIONS(1480), + [anon_sym_raise] = ACTIONS(1480), + [anon_sym_pass] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_elif] = ACTIONS(1480), + [anon_sym_else] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_try] = ACTIONS(1480), + [anon_sym_finally] = ACTIONS(1480), + [anon_sym_with] = ACTIONS(1480), + [anon_sym_def] = ACTIONS(1480), + [anon_sym_global] = ACTIONS(1480), + [anon_sym_nonlocal] = ACTIONS(1480), + [anon_sym_exec] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_class] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_not] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_lambda] = ACTIONS(1480), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1482), + [anon_sym_None] = ACTIONS(1480), + [sym_integer] = ACTIONS(1480), + [sym_float] = ACTIONS(1482), + [anon_sym_await] = ACTIONS(1480), + [anon_sym_api] = ACTIONS(1480), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1480), + [anon_sym_include] = ACTIONS(1480), + [anon_sym_DEF] = ACTIONS(1480), + [anon_sym_IF] = ACTIONS(1480), + [anon_sym_ELIF] = ACTIONS(1480), + [anon_sym_ELSE] = ACTIONS(1480), + [anon_sym_cdef] = ACTIONS(1480), + [anon_sym_cpdef] = ACTIONS(1480), + [anon_sym_int] = ACTIONS(1480), + [anon_sym_double] = ACTIONS(1480), + [anon_sym_complex] = ACTIONS(1480), + [anon_sym_new] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_char] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_ctypedef] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_cppclass] = ACTIONS(1480), + [anon_sym_fused] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_packed] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1480), + [sym__dedent] = ACTIONS(1482), + [sym_string_start] = ACTIONS(1482), }, [481] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5038), - [sym_dictionary_splat] = STATE(5038), - [sym_parenthesized_list_splat] = STATE(5047), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4207), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5038), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5359), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [482] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5136), - [sym_dictionary_splat] = STATE(5136), - [sym_parenthesized_list_splat] = STATE(5138), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4114), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5136), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5220), + [sym_dictionary_splat] = STATE(5220), + [sym_parenthesized_list_splat] = STATE(5250), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4106), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5220), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [483] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5004), + [sym_dictionary_splat] = STATE(5004), + [sym_parenthesized_list_splat] = STATE(5008), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4092), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5004), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [484] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4823), - [sym_dictionary_splat] = STATE(4823), - [sym_parenthesized_list_splat] = STATE(4824), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4162), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4823), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5449), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [485] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4875), - [sym_dictionary_splat] = STATE(4875), - [sym_parenthesized_list_splat] = STATE(4876), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4164), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4875), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5286), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [486] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4905), - [sym_dictionary_splat] = STATE(4905), - [sym_parenthesized_list_splat] = STATE(4906), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4178), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4905), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5501), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [487] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4930), - [sym_dictionary_splat] = STATE(4930), - [sym_parenthesized_list_splat] = STATE(4931), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4172), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4930), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1490), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [488] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4978), - [sym_dictionary_splat] = STATE(4978), - [sym_parenthesized_list_splat] = STATE(4979), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4174), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4978), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_COMMA] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5515), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [489] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5010), - [sym_dictionary_splat] = STATE(5010), - [sym_parenthesized_list_splat] = STATE(5011), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4179), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5010), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(4570), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1444), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_import] = ACTIONS(1496), + [anon_sym_cimport] = ACTIONS(1496), + [anon_sym_from] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_print] = ACTIONS(1496), + [anon_sym_assert] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_del] = ACTIONS(1496), + [anon_sym_raise] = ACTIONS(1496), + [anon_sym_pass] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_elif] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_finally] = ACTIONS(1496), + [anon_sym_with] = ACTIONS(1496), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_global] = ACTIONS(1496), + [anon_sym_nonlocal] = ACTIONS(1496), + [anon_sym_exec] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_class] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_AT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_not] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_lambda] = ACTIONS(1496), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1498), + [anon_sym_None] = ACTIONS(1496), + [sym_integer] = ACTIONS(1496), + [sym_float] = ACTIONS(1498), + [anon_sym_await] = ACTIONS(1496), + [anon_sym_api] = ACTIONS(1496), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1496), + [anon_sym_include] = ACTIONS(1496), + [anon_sym_DEF] = ACTIONS(1496), + [anon_sym_IF] = ACTIONS(1496), + [anon_sym_ELIF] = ACTIONS(1496), + [anon_sym_ELSE] = ACTIONS(1496), + [anon_sym_cdef] = ACTIONS(1496), + [anon_sym_cpdef] = ACTIONS(1496), + [anon_sym_int] = ACTIONS(1496), + [anon_sym_double] = ACTIONS(1496), + [anon_sym_complex] = ACTIONS(1496), + [anon_sym_new] = ACTIONS(1496), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_char] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_ctypedef] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_cppclass] = ACTIONS(1496), + [anon_sym_fused] = ACTIONS(1496), + [anon_sym_public] = ACTIONS(1496), + [anon_sym_packed] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym_readonly] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1496), + [sym__dedent] = ACTIONS(1498), + [sym_string_start] = ACTIONS(1498), }, [490] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5302), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_import] = ACTIONS(1500), + [anon_sym_cimport] = ACTIONS(1500), + [anon_sym_from] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_print] = ACTIONS(1500), + [anon_sym_assert] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_del] = ACTIONS(1500), + [anon_sym_raise] = ACTIONS(1500), + [anon_sym_pass] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_elif] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_finally] = ACTIONS(1500), + [anon_sym_with] = ACTIONS(1500), + [anon_sym_def] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(1500), + [anon_sym_nonlocal] = ACTIONS(1500), + [anon_sym_exec] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_class] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_AT] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_not] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_lambda] = ACTIONS(1500), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1502), + [anon_sym_None] = ACTIONS(1500), + [sym_integer] = ACTIONS(1500), + [sym_float] = ACTIONS(1502), + [anon_sym_await] = ACTIONS(1500), + [anon_sym_api] = ACTIONS(1500), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1500), + [anon_sym_include] = ACTIONS(1500), + [anon_sym_DEF] = ACTIONS(1500), + [anon_sym_IF] = ACTIONS(1500), + [anon_sym_ELIF] = ACTIONS(1500), + [anon_sym_ELSE] = ACTIONS(1500), + [anon_sym_cdef] = ACTIONS(1500), + [anon_sym_cpdef] = ACTIONS(1500), + [anon_sym_int] = ACTIONS(1500), + [anon_sym_double] = ACTIONS(1500), + [anon_sym_complex] = ACTIONS(1500), + [anon_sym_new] = ACTIONS(1500), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_char] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_ctypedef] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_cppclass] = ACTIONS(1500), + [anon_sym_fused] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_packed] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1500), + [sym__dedent] = ACTIONS(1502), + [sym_string_start] = ACTIONS(1502), }, [491] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5307), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5018), + [sym_dictionary_splat] = STATE(5018), + [sym_parenthesized_list_splat] = STATE(5019), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4158), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5018), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [492] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5311), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(4868), + [sym_dictionary_splat] = STATE(4868), + [sym_parenthesized_list_splat] = STATE(4869), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4164), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(4868), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1506), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [493] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5336), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(4924), + [sym_dictionary_splat] = STATE(4924), + [sym_parenthesized_list_splat] = STATE(4925), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4172), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(4924), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [494] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5342), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5053), + [sym_dictionary_splat] = STATE(5053), + [sym_parenthesized_list_splat] = STATE(5054), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4179), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5053), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [495] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), [sym_list_splat] = STATE(4992), [sym_dictionary_splat] = STATE(4992), [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4261), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5347), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [496] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5352), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5036), + [sym_dictionary_splat] = STATE(5036), + [sym_parenthesized_list_splat] = STATE(5037), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4186), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5036), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [497] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3733), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4923), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5594), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5345), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(4958), + [sym_dictionary_splat] = STATE(4958), + [sym_parenthesized_list_splat] = STATE(4959), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4192), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(4958), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_COMMA] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [498] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4809), - [sym_parenthesized_list_splat] = STATE(4970), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3772), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(5026), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5545), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5345), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5220), + [sym_dictionary_splat] = STATE(5220), + [sym_parenthesized_list_splat] = STATE(5250), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4106), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5220), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [499] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4809), - [sym_parenthesized_list_splat] = STATE(4970), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3733), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4923), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5594), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5345), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5004), + [sym_dictionary_splat] = STATE(5004), + [sym_parenthesized_list_splat] = STATE(5008), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4092), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5004), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [500] = { - [sym_identifier] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_import] = ACTIONS(1510), - [anon_sym_cimport] = ACTIONS(1510), - [anon_sym_from] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1510), - [anon_sym_assert] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_del] = ACTIONS(1510), - [anon_sym_raise] = ACTIONS(1510), - [anon_sym_pass] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_elif] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1510), - [anon_sym_finally] = ACTIONS(1510), - [anon_sym_with] = ACTIONS(1510), - [anon_sym_def] = ACTIONS(1510), - [anon_sym_global] = ACTIONS(1510), - [anon_sym_nonlocal] = ACTIONS(1510), - [anon_sym_exec] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_class] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_not] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_lambda] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), - [anon_sym_None] = ACTIONS(1510), - [sym_integer] = ACTIONS(1510), - [sym_float] = ACTIONS(1512), - [anon_sym_await] = ACTIONS(1510), - [anon_sym_api] = ACTIONS(1510), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1510), - [anon_sym_include] = ACTIONS(1510), - [anon_sym_DEF] = ACTIONS(1510), - [anon_sym_cdef] = ACTIONS(1510), - [anon_sym_cpdef] = ACTIONS(1510), - [anon_sym_int] = ACTIONS(1510), - [anon_sym_double] = ACTIONS(1510), - [anon_sym_complex] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_signed] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym_ctypedef] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_cppclass] = ACTIONS(1510), - [anon_sym_fused] = ACTIONS(1510), - [anon_sym_public] = ACTIONS(1510), - [anon_sym_packed] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_readonly] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1510), - [sym__dedent] = ACTIONS(1512), - [sym_string_start] = ACTIONS(1512), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [501] = { - [sym_identifier] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_import] = ACTIONS(1514), - [anon_sym_cimport] = ACTIONS(1514), - [anon_sym_from] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_print] = ACTIONS(1514), - [anon_sym_assert] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_del] = ACTIONS(1514), - [anon_sym_raise] = ACTIONS(1514), - [anon_sym_pass] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_elif] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_finally] = ACTIONS(1514), - [anon_sym_with] = ACTIONS(1514), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_global] = ACTIONS(1514), - [anon_sym_nonlocal] = ACTIONS(1514), - [anon_sym_exec] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_class] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_not] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_lambda] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_None] = ACTIONS(1514), - [sym_integer] = ACTIONS(1514), - [sym_float] = ACTIONS(1516), - [anon_sym_await] = ACTIONS(1514), - [anon_sym_api] = ACTIONS(1514), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1514), - [anon_sym_include] = ACTIONS(1514), - [anon_sym_DEF] = ACTIONS(1514), - [anon_sym_cdef] = ACTIONS(1514), - [anon_sym_cpdef] = ACTIONS(1514), - [anon_sym_int] = ACTIONS(1514), - [anon_sym_double] = ACTIONS(1514), - [anon_sym_complex] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_char] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym_ctypedef] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_cppclass] = ACTIONS(1514), - [anon_sym_fused] = ACTIONS(1514), - [anon_sym_public] = ACTIONS(1514), - [anon_sym_packed] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_readonly] = ACTIONS(1514), - [anon_sym_sizeof] = ACTIONS(1514), - [sym__dedent] = ACTIONS(1516), - [sym_string_start] = ACTIONS(1516), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(4868), + [sym_dictionary_splat] = STATE(4868), + [sym_parenthesized_list_splat] = STATE(4869), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4164), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(4868), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [502] = { - [sym_list_splat_pattern] = STATE(2166), - [sym_primary_expression] = STATE(2103), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_from] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_print] = ACTIONS(1317), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(813), - [anon_sym_with] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(1323), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_api] = ACTIONS(1317), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_nogil] = ACTIONS(813), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(811), - [sym_string_start] = ACTIONS(107), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(4924), + [sym_dictionary_splat] = STATE(4924), + [sym_parenthesized_list_splat] = STATE(4925), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4172), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(4924), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [503] = { - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_import] = ACTIONS(1518), - [anon_sym_cimport] = ACTIONS(1518), - [anon_sym_from] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_print] = ACTIONS(1518), - [anon_sym_assert] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_del] = ACTIONS(1518), - [anon_sym_raise] = ACTIONS(1518), - [anon_sym_pass] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_elif] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_finally] = ACTIONS(1518), - [anon_sym_with] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_global] = ACTIONS(1518), - [anon_sym_nonlocal] = ACTIONS(1518), - [anon_sym_exec] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_not] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_lambda] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), - [anon_sym_None] = ACTIONS(1518), - [sym_integer] = ACTIONS(1518), - [sym_float] = ACTIONS(1520), - [anon_sym_await] = ACTIONS(1518), - [anon_sym_api] = ACTIONS(1518), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1518), - [anon_sym_include] = ACTIONS(1518), - [anon_sym_DEF] = ACTIONS(1518), - [anon_sym_cdef] = ACTIONS(1518), - [anon_sym_cpdef] = ACTIONS(1518), - [anon_sym_int] = ACTIONS(1518), - [anon_sym_double] = ACTIONS(1518), - [anon_sym_complex] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1518), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_volatile] = ACTIONS(1518), - [anon_sym_ctypedef] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_cppclass] = ACTIONS(1518), - [anon_sym_fused] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_packed] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_sizeof] = ACTIONS(1518), - [sym__dedent] = ACTIONS(1520), - [sym_string_start] = ACTIONS(1520), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(4958), + [sym_dictionary_splat] = STATE(4958), + [sym_parenthesized_list_splat] = STATE(4959), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4192), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(4958), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [504] = { - [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_import] = ACTIONS(1522), - [anon_sym_cimport] = ACTIONS(1522), - [anon_sym_from] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_print] = ACTIONS(1522), - [anon_sym_assert] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_del] = ACTIONS(1522), - [anon_sym_raise] = ACTIONS(1522), - [anon_sym_pass] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_elif] = ACTIONS(1522), - [anon_sym_else] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [anon_sym_finally] = ACTIONS(1522), - [anon_sym_with] = ACTIONS(1522), - [anon_sym_def] = ACTIONS(1522), - [anon_sym_global] = ACTIONS(1522), - [anon_sym_nonlocal] = ACTIONS(1522), - [anon_sym_exec] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_class] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_not] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_lambda] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_None] = ACTIONS(1522), - [sym_integer] = ACTIONS(1522), - [sym_float] = ACTIONS(1524), - [anon_sym_await] = ACTIONS(1522), - [anon_sym_api] = ACTIONS(1522), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1522), - [anon_sym_include] = ACTIONS(1522), - [anon_sym_DEF] = ACTIONS(1522), - [anon_sym_cdef] = ACTIONS(1522), - [anon_sym_cpdef] = ACTIONS(1522), - [anon_sym_int] = ACTIONS(1522), - [anon_sym_double] = ACTIONS(1522), - [anon_sym_complex] = ACTIONS(1522), - [anon_sym_new] = ACTIONS(1522), - [anon_sym_signed] = ACTIONS(1522), - [anon_sym_unsigned] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_short] = ACTIONS(1522), - [anon_sym_long] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_volatile] = ACTIONS(1522), - [anon_sym_ctypedef] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_cppclass] = ACTIONS(1522), - [anon_sym_fused] = ACTIONS(1522), - [anon_sym_public] = ACTIONS(1522), - [anon_sym_packed] = ACTIONS(1522), - [anon_sym_inline] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1522), - [sym__dedent] = ACTIONS(1524), - [sym_string_start] = ACTIONS(1524), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4261), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [505] = { - [sym_identifier] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1526), - [anon_sym_cimport] = ACTIONS(1526), - [anon_sym_from] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_print] = ACTIONS(1526), - [anon_sym_assert] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_del] = ACTIONS(1526), - [anon_sym_raise] = ACTIONS(1526), - [anon_sym_pass] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_elif] = ACTIONS(1526), - [anon_sym_else] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_try] = ACTIONS(1526), - [anon_sym_finally] = ACTIONS(1526), - [anon_sym_with] = ACTIONS(1526), - [anon_sym_def] = ACTIONS(1526), - [anon_sym_global] = ACTIONS(1526), - [anon_sym_nonlocal] = ACTIONS(1526), - [anon_sym_exec] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_class] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_lambda] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), - [anon_sym_None] = ACTIONS(1526), - [sym_integer] = ACTIONS(1526), - [sym_float] = ACTIONS(1528), - [anon_sym_await] = ACTIONS(1526), - [anon_sym_api] = ACTIONS(1526), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1526), - [anon_sym_include] = ACTIONS(1526), - [anon_sym_DEF] = ACTIONS(1526), - [anon_sym_cdef] = ACTIONS(1526), - [anon_sym_cpdef] = ACTIONS(1526), - [anon_sym_int] = ACTIONS(1526), - [anon_sym_double] = ACTIONS(1526), - [anon_sym_complex] = ACTIONS(1526), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_signed] = ACTIONS(1526), - [anon_sym_unsigned] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_short] = ACTIONS(1526), - [anon_sym_long] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_volatile] = ACTIONS(1526), - [anon_sym_ctypedef] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_cppclass] = ACTIONS(1526), - [anon_sym_fused] = ACTIONS(1526), - [anon_sym_public] = ACTIONS(1526), - [anon_sym_packed] = ACTIONS(1526), - [anon_sym_inline] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1526), - [anon_sym_sizeof] = ACTIONS(1526), - [sym__dedent] = ACTIONS(1528), - [sym_string_start] = ACTIONS(1528), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5036), + [sym_dictionary_splat] = STATE(5036), + [sym_parenthesized_list_splat] = STATE(5037), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4186), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5036), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [506] = { - [sym_list_splat_pattern] = STATE(2166), - [sym_primary_expression] = STATE(2103), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(81), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_from] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_print] = ACTIONS(1317), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_match] = ACTIONS(1317), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(813), - [anon_sym_with] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(1323), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_api] = ACTIONS(1317), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_nogil] = ACTIONS(813), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(811), - [sym_string_start] = ACTIONS(107), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5066), + [sym_dictionary_splat] = STATE(5066), + [sym_parenthesized_list_splat] = STATE(5067), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4200), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5066), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(4637), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [507] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(3290), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_from] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1327), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_with] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1530), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_EQ] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1530), - [anon_sym_SLASH_SLASH] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_is] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ] = ACTIONS(1327), - [anon_sym_BANG_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_LT_GT] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1344), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_nogil] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1277), - [sym__newline] = ACTIONS(1327), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5354), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [508] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_import] = ACTIONS(1533), - [anon_sym_cimport] = ACTIONS(1533), - [anon_sym_from] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_print] = ACTIONS(1533), - [anon_sym_assert] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_del] = ACTIONS(1533), - [anon_sym_raise] = ACTIONS(1533), - [anon_sym_pass] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_COLON] = ACTIONS(1537), - [anon_sym_match] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_with] = ACTIONS(1533), - [anon_sym_def] = ACTIONS(1533), - [anon_sym_global] = ACTIONS(1533), - [anon_sym_nonlocal] = ACTIONS(1533), - [anon_sym_exec] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_not] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_LT] = ACTIONS(1535), - [anon_sym_lambda] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), - [anon_sym_None] = ACTIONS(1533), - [sym_integer] = ACTIONS(1533), - [sym_float] = ACTIONS(1535), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_api] = ACTIONS(1533), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1533), - [anon_sym_include] = ACTIONS(1533), - [anon_sym_DEF] = ACTIONS(1533), - [anon_sym_cdef] = ACTIONS(1533), - [anon_sym_cpdef] = ACTIONS(1533), - [anon_sym_int] = ACTIONS(1533), - [anon_sym_double] = ACTIONS(1533), - [anon_sym_complex] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_ctypedef] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_cppclass] = ACTIONS(1533), - [anon_sym_fused] = ACTIONS(1533), - [anon_sym_public] = ACTIONS(1533), - [anon_sym_packed] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [anon_sym_readonly] = ACTIONS(1533), - [anon_sym_sizeof] = ACTIONS(1533), - [sym__dedent] = ACTIONS(1535), - [sym_string_start] = ACTIONS(1535), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5357), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [509] = { - [sym_identifier] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_import] = ACTIONS(1539), - [anon_sym_cimport] = ACTIONS(1539), - [anon_sym_from] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_print] = ACTIONS(1539), - [anon_sym_assert] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_del] = ACTIONS(1539), - [anon_sym_raise] = ACTIONS(1539), - [anon_sym_pass] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_COLON] = ACTIONS(1543), - [anon_sym_match] = ACTIONS(1539), - [anon_sym_async] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_try] = ACTIONS(1539), - [anon_sym_with] = ACTIONS(1539), - [anon_sym_def] = ACTIONS(1539), - [anon_sym_global] = ACTIONS(1539), - [anon_sym_nonlocal] = ACTIONS(1539), - [anon_sym_exec] = ACTIONS(1539), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_class] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1541), - [anon_sym_AT] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_LT] = ACTIONS(1541), - [anon_sym_lambda] = ACTIONS(1539), - [anon_sym_yield] = ACTIONS(1539), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1541), - [anon_sym_None] = ACTIONS(1539), - [sym_integer] = ACTIONS(1539), - [sym_float] = ACTIONS(1541), - [anon_sym_await] = ACTIONS(1539), - [anon_sym_api] = ACTIONS(1539), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1539), - [anon_sym_include] = ACTIONS(1539), - [anon_sym_DEF] = ACTIONS(1539), - [anon_sym_cdef] = ACTIONS(1539), - [anon_sym_cpdef] = ACTIONS(1539), - [anon_sym_int] = ACTIONS(1539), - [anon_sym_double] = ACTIONS(1539), - [anon_sym_complex] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_char] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_ctypedef] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_cppclass] = ACTIONS(1539), - [anon_sym_fused] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_packed] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [anon_sym_readonly] = ACTIONS(1539), - [anon_sym_sizeof] = ACTIONS(1539), - [sym__dedent] = ACTIONS(1541), - [sym_string_start] = ACTIONS(1541), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5362), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [510] = { - [sym_identifier] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_cimport] = ACTIONS(1545), - [anon_sym_from] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_print] = ACTIONS(1545), - [anon_sym_assert] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_del] = ACTIONS(1545), - [anon_sym_raise] = ACTIONS(1545), - [anon_sym_pass] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_COLON] = ACTIONS(1549), - [anon_sym_match] = ACTIONS(1545), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_try] = ACTIONS(1545), - [anon_sym_with] = ACTIONS(1545), - [anon_sym_def] = ACTIONS(1545), - [anon_sym_global] = ACTIONS(1545), - [anon_sym_nonlocal] = ACTIONS(1545), - [anon_sym_exec] = ACTIONS(1545), - [anon_sym_type] = ACTIONS(1545), - [anon_sym_class] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_AT] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_not] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_LT] = ACTIONS(1547), - [anon_sym_lambda] = ACTIONS(1545), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), - [anon_sym_None] = ACTIONS(1545), - [sym_integer] = ACTIONS(1545), - [sym_float] = ACTIONS(1547), - [anon_sym_await] = ACTIONS(1545), - [anon_sym_api] = ACTIONS(1545), - [sym_true] = ACTIONS(1545), - [sym_false] = ACTIONS(1545), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1545), - [anon_sym_include] = ACTIONS(1545), - [anon_sym_DEF] = ACTIONS(1545), - [anon_sym_cdef] = ACTIONS(1545), - [anon_sym_cpdef] = ACTIONS(1545), - [anon_sym_int] = ACTIONS(1545), - [anon_sym_double] = ACTIONS(1545), - [anon_sym_complex] = ACTIONS(1545), - [anon_sym_new] = ACTIONS(1545), - [anon_sym_signed] = ACTIONS(1545), - [anon_sym_unsigned] = ACTIONS(1545), - [anon_sym_char] = ACTIONS(1545), - [anon_sym_short] = ACTIONS(1545), - [anon_sym_long] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_volatile] = ACTIONS(1545), - [anon_sym_ctypedef] = ACTIONS(1545), - [anon_sym_struct] = ACTIONS(1545), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_enum] = ACTIONS(1545), - [anon_sym_cppclass] = ACTIONS(1545), - [anon_sym_fused] = ACTIONS(1545), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_packed] = ACTIONS(1545), - [anon_sym_inline] = ACTIONS(1545), - [anon_sym_readonly] = ACTIONS(1545), - [anon_sym_sizeof] = ACTIONS(1545), - [sym__dedent] = ACTIONS(1547), - [sym_string_start] = ACTIONS(1547), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5392), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [511] = { - [sym_identifier] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_import] = ACTIONS(1551), - [anon_sym_cimport] = ACTIONS(1551), - [anon_sym_from] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_print] = ACTIONS(1551), - [anon_sym_assert] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_del] = ACTIONS(1551), - [anon_sym_raise] = ACTIONS(1551), - [anon_sym_pass] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_COLON] = ACTIONS(1555), - [anon_sym_match] = ACTIONS(1551), - [anon_sym_async] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_try] = ACTIONS(1551), - [anon_sym_with] = ACTIONS(1551), - [anon_sym_def] = ACTIONS(1551), - [anon_sym_global] = ACTIONS(1551), - [anon_sym_nonlocal] = ACTIONS(1551), - [anon_sym_exec] = ACTIONS(1551), - [anon_sym_type] = ACTIONS(1551), - [anon_sym_class] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_AT] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_not] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1553), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_lambda] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), - [anon_sym_None] = ACTIONS(1551), - [sym_integer] = ACTIONS(1551), - [sym_float] = ACTIONS(1553), - [anon_sym_await] = ACTIONS(1551), - [anon_sym_api] = ACTIONS(1551), - [sym_true] = ACTIONS(1551), - [sym_false] = ACTIONS(1551), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1551), - [anon_sym_include] = ACTIONS(1551), - [anon_sym_DEF] = ACTIONS(1551), - [anon_sym_cdef] = ACTIONS(1551), - [anon_sym_cpdef] = ACTIONS(1551), - [anon_sym_int] = ACTIONS(1551), - [anon_sym_double] = ACTIONS(1551), - [anon_sym_complex] = ACTIONS(1551), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_signed] = ACTIONS(1551), - [anon_sym_unsigned] = ACTIONS(1551), - [anon_sym_char] = ACTIONS(1551), - [anon_sym_short] = ACTIONS(1551), - [anon_sym_long] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_volatile] = ACTIONS(1551), - [anon_sym_ctypedef] = ACTIONS(1551), - [anon_sym_struct] = ACTIONS(1551), - [anon_sym_union] = ACTIONS(1551), - [anon_sym_enum] = ACTIONS(1551), - [anon_sym_cppclass] = ACTIONS(1551), - [anon_sym_fused] = ACTIONS(1551), - [anon_sym_public] = ACTIONS(1551), - [anon_sym_packed] = ACTIONS(1551), - [anon_sym_inline] = ACTIONS(1551), - [anon_sym_readonly] = ACTIONS(1551), - [anon_sym_sizeof] = ACTIONS(1551), - [sym__dedent] = ACTIONS(1553), - [sym_string_start] = ACTIONS(1553), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5396), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [512] = { - [sym_identifier] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_import] = ACTIONS(1557), - [anon_sym_cimport] = ACTIONS(1557), - [anon_sym_from] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_print] = ACTIONS(1557), - [anon_sym_assert] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_del] = ACTIONS(1557), - [anon_sym_raise] = ACTIONS(1557), - [anon_sym_pass] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_COLON] = ACTIONS(1561), - [anon_sym_match] = ACTIONS(1557), - [anon_sym_async] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_try] = ACTIONS(1557), - [anon_sym_with] = ACTIONS(1557), - [anon_sym_def] = ACTIONS(1557), - [anon_sym_global] = ACTIONS(1557), - [anon_sym_nonlocal] = ACTIONS(1557), - [anon_sym_exec] = ACTIONS(1557), - [anon_sym_type] = ACTIONS(1557), - [anon_sym_class] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_AT] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_not] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_lambda] = ACTIONS(1557), - [anon_sym_yield] = ACTIONS(1557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1559), - [anon_sym_None] = ACTIONS(1557), - [sym_integer] = ACTIONS(1557), - [sym_float] = ACTIONS(1559), - [anon_sym_await] = ACTIONS(1557), - [anon_sym_api] = ACTIONS(1557), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1557), - [anon_sym_include] = ACTIONS(1557), - [anon_sym_DEF] = ACTIONS(1557), - [anon_sym_cdef] = ACTIONS(1557), - [anon_sym_cpdef] = ACTIONS(1557), - [anon_sym_int] = ACTIONS(1557), - [anon_sym_double] = ACTIONS(1557), - [anon_sym_complex] = ACTIONS(1557), - [anon_sym_new] = ACTIONS(1557), - [anon_sym_signed] = ACTIONS(1557), - [anon_sym_unsigned] = ACTIONS(1557), - [anon_sym_char] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(1557), - [anon_sym_ctypedef] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_cppclass] = ACTIONS(1557), - [anon_sym_fused] = ACTIONS(1557), - [anon_sym_public] = ACTIONS(1557), - [anon_sym_packed] = ACTIONS(1557), - [anon_sym_inline] = ACTIONS(1557), - [anon_sym_readonly] = ACTIONS(1557), - [anon_sym_sizeof] = ACTIONS(1557), - [sym__dedent] = ACTIONS(1559), - [sym_string_start] = ACTIONS(1559), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5400), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [513] = { - [sym_identifier] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_import] = ACTIONS(1563), - [anon_sym_cimport] = ACTIONS(1563), - [anon_sym_from] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_print] = ACTIONS(1563), - [anon_sym_assert] = ACTIONS(1563), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_del] = ACTIONS(1563), - [anon_sym_raise] = ACTIONS(1563), - [anon_sym_pass] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_COLON] = ACTIONS(1567), - [anon_sym_match] = ACTIONS(1563), - [anon_sym_async] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_try] = ACTIONS(1563), - [anon_sym_with] = ACTIONS(1563), - [anon_sym_def] = ACTIONS(1563), - [anon_sym_global] = ACTIONS(1563), - [anon_sym_nonlocal] = ACTIONS(1563), - [anon_sym_exec] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1563), - [anon_sym_class] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_AT] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_not] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1565), - [anon_sym_lambda] = ACTIONS(1563), - [anon_sym_yield] = ACTIONS(1563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1565), - [anon_sym_None] = ACTIONS(1563), - [sym_integer] = ACTIONS(1563), - [sym_float] = ACTIONS(1565), - [anon_sym_await] = ACTIONS(1563), - [anon_sym_api] = ACTIONS(1563), - [sym_true] = ACTIONS(1563), - [sym_false] = ACTIONS(1563), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1563), - [anon_sym_include] = ACTIONS(1563), - [anon_sym_DEF] = ACTIONS(1563), - [anon_sym_cdef] = ACTIONS(1563), - [anon_sym_cpdef] = ACTIONS(1563), - [anon_sym_int] = ACTIONS(1563), - [anon_sym_double] = ACTIONS(1563), - [anon_sym_complex] = ACTIONS(1563), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_signed] = ACTIONS(1563), - [anon_sym_unsigned] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_short] = ACTIONS(1563), - [anon_sym_long] = ACTIONS(1563), - [anon_sym_const] = ACTIONS(1563), - [anon_sym_volatile] = ACTIONS(1563), - [anon_sym_ctypedef] = ACTIONS(1563), - [anon_sym_struct] = ACTIONS(1563), - [anon_sym_union] = ACTIONS(1563), - [anon_sym_enum] = ACTIONS(1563), - [anon_sym_cppclass] = ACTIONS(1563), - [anon_sym_fused] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1563), - [anon_sym_packed] = ACTIONS(1563), - [anon_sym_inline] = ACTIONS(1563), - [anon_sym_readonly] = ACTIONS(1563), - [anon_sym_sizeof] = ACTIONS(1563), - [sym__dedent] = ACTIONS(1565), - [sym_string_start] = ACTIONS(1565), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1546), + [anon_sym_cimport] = ACTIONS(1546), + [anon_sym_from] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1546), + [anon_sym_assert] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_del] = ACTIONS(1546), + [anon_sym_raise] = ACTIONS(1546), + [anon_sym_pass] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_elif] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_try] = ACTIONS(1546), + [anon_sym_finally] = ACTIONS(1546), + [anon_sym_with] = ACTIONS(1546), + [anon_sym_def] = ACTIONS(1546), + [anon_sym_global] = ACTIONS(1546), + [anon_sym_nonlocal] = ACTIONS(1546), + [anon_sym_exec] = ACTIONS(1546), + [anon_sym_type] = ACTIONS(1546), + [anon_sym_class] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_not] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_lambda] = ACTIONS(1546), + [anon_sym_yield] = ACTIONS(1546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1548), + [anon_sym_None] = ACTIONS(1546), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1548), + [anon_sym_await] = ACTIONS(1546), + [anon_sym_api] = ACTIONS(1546), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1546), + [anon_sym_include] = ACTIONS(1546), + [anon_sym_DEF] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_ELIF] = ACTIONS(1546), + [anon_sym_ELSE] = ACTIONS(1546), + [anon_sym_cdef] = ACTIONS(1546), + [anon_sym_cpdef] = ACTIONS(1546), + [anon_sym_int] = ACTIONS(1546), + [anon_sym_double] = ACTIONS(1546), + [anon_sym_complex] = ACTIONS(1546), + [anon_sym_new] = ACTIONS(1546), + [anon_sym_signed] = ACTIONS(1546), + [anon_sym_unsigned] = ACTIONS(1546), + [anon_sym_char] = ACTIONS(1546), + [anon_sym_short] = ACTIONS(1546), + [anon_sym_long] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_volatile] = ACTIONS(1546), + [anon_sym_ctypedef] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_cppclass] = ACTIONS(1546), + [anon_sym_fused] = ACTIONS(1546), + [anon_sym_public] = ACTIONS(1546), + [anon_sym_packed] = ACTIONS(1546), + [anon_sym_inline] = ACTIONS(1546), + [anon_sym_readonly] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1546), + [sym__dedent] = ACTIONS(1548), + [sym_string_start] = ACTIONS(1548), }, [514] = { - [sym_identifier] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_import] = ACTIONS(1569), - [anon_sym_cimport] = ACTIONS(1569), - [anon_sym_from] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_print] = ACTIONS(1569), - [anon_sym_assert] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_del] = ACTIONS(1569), - [anon_sym_raise] = ACTIONS(1569), - [anon_sym_pass] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_COLON] = ACTIONS(1573), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_async] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_with] = ACTIONS(1569), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_global] = ACTIONS(1569), - [anon_sym_nonlocal] = ACTIONS(1569), - [anon_sym_exec] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_class] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_AT] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_not] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_lambda] = ACTIONS(1569), - [anon_sym_yield] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1571), - [anon_sym_None] = ACTIONS(1569), - [sym_integer] = ACTIONS(1569), - [sym_float] = ACTIONS(1571), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_api] = ACTIONS(1569), - [sym_true] = ACTIONS(1569), - [sym_false] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1569), - [anon_sym_include] = ACTIONS(1569), - [anon_sym_DEF] = ACTIONS(1569), - [anon_sym_cdef] = ACTIONS(1569), - [anon_sym_cpdef] = ACTIONS(1569), - [anon_sym_int] = ACTIONS(1569), - [anon_sym_double] = ACTIONS(1569), - [anon_sym_complex] = ACTIONS(1569), - [anon_sym_new] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_char] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [anon_sym_ctypedef] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_cppclass] = ACTIONS(1569), - [anon_sym_fused] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_packed] = ACTIONS(1569), - [anon_sym_inline] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_sizeof] = ACTIONS(1569), - [sym__dedent] = ACTIONS(1571), - [sym_string_start] = ACTIONS(1571), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3788), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4982), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5632), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5296), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [515] = { - [sym_identifier] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1575), - [anon_sym_cimport] = ACTIONS(1575), - [anon_sym_from] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_print] = ACTIONS(1575), - [anon_sym_assert] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_del] = ACTIONS(1575), - [anon_sym_raise] = ACTIONS(1575), - [anon_sym_pass] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_COLON] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_async] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_with] = ACTIONS(1575), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_global] = ACTIONS(1575), - [anon_sym_nonlocal] = ACTIONS(1575), - [anon_sym_exec] = ACTIONS(1575), - [anon_sym_type] = ACTIONS(1575), - [anon_sym_class] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_AT] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_not] = ACTIONS(1575), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_lambda] = ACTIONS(1575), - [anon_sym_yield] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1577), - [anon_sym_None] = ACTIONS(1575), - [sym_integer] = ACTIONS(1575), - [sym_float] = ACTIONS(1577), - [anon_sym_await] = ACTIONS(1575), - [anon_sym_api] = ACTIONS(1575), - [sym_true] = ACTIONS(1575), - [sym_false] = ACTIONS(1575), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1575), - [anon_sym_include] = ACTIONS(1575), - [anon_sym_DEF] = ACTIONS(1575), - [anon_sym_cdef] = ACTIONS(1575), - [anon_sym_cpdef] = ACTIONS(1575), - [anon_sym_int] = ACTIONS(1575), - [anon_sym_double] = ACTIONS(1575), - [anon_sym_complex] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1575), - [anon_sym_signed] = ACTIONS(1575), - [anon_sym_unsigned] = ACTIONS(1575), - [anon_sym_char] = ACTIONS(1575), - [anon_sym_short] = ACTIONS(1575), - [anon_sym_long] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_volatile] = ACTIONS(1575), - [anon_sym_ctypedef] = ACTIONS(1575), - [anon_sym_struct] = ACTIONS(1575), - [anon_sym_union] = ACTIONS(1575), - [anon_sym_enum] = ACTIONS(1575), - [anon_sym_cppclass] = ACTIONS(1575), - [anon_sym_fused] = ACTIONS(1575), - [anon_sym_public] = ACTIONS(1575), - [anon_sym_packed] = ACTIONS(1575), - [anon_sym_inline] = ACTIONS(1575), - [anon_sym_readonly] = ACTIONS(1575), - [anon_sym_sizeof] = ACTIONS(1575), - [sym__dedent] = ACTIONS(1577), - [sym_string_start] = ACTIONS(1577), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(5252), + [sym_parenthesized_list_splat] = STATE(5257), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3788), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4982), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5632), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5296), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [516] = { - [sym_identifier] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_import] = ACTIONS(1581), - [anon_sym_cimport] = ACTIONS(1581), - [anon_sym_from] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_print] = ACTIONS(1581), - [anon_sym_assert] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_del] = ACTIONS(1581), - [anon_sym_raise] = ACTIONS(1581), - [anon_sym_pass] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_COLON] = ACTIONS(1583), - [anon_sym_match] = ACTIONS(1581), - [anon_sym_async] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_try] = ACTIONS(1581), - [anon_sym_with] = ACTIONS(1581), - [anon_sym_def] = ACTIONS(1581), - [anon_sym_global] = ACTIONS(1581), - [anon_sym_nonlocal] = ACTIONS(1581), - [anon_sym_exec] = ACTIONS(1581), - [anon_sym_type] = ACTIONS(1581), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_AT] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_not] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_lambda] = ACTIONS(1581), - [anon_sym_yield] = ACTIONS(1581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1583), - [anon_sym_None] = ACTIONS(1581), - [sym_integer] = ACTIONS(1581), - [sym_float] = ACTIONS(1583), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_api] = ACTIONS(1581), - [sym_true] = ACTIONS(1581), - [sym_false] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1581), - [anon_sym_include] = ACTIONS(1581), - [anon_sym_DEF] = ACTIONS(1581), - [anon_sym_cdef] = ACTIONS(1581), - [anon_sym_cpdef] = ACTIONS(1581), - [anon_sym_int] = ACTIONS(1581), - [anon_sym_double] = ACTIONS(1581), - [anon_sym_complex] = ACTIONS(1581), - [anon_sym_new] = ACTIONS(1581), - [anon_sym_signed] = ACTIONS(1581), - [anon_sym_unsigned] = ACTIONS(1581), - [anon_sym_char] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_volatile] = ACTIONS(1581), - [anon_sym_ctypedef] = ACTIONS(1581), - [anon_sym_struct] = ACTIONS(1581), - [anon_sym_union] = ACTIONS(1581), - [anon_sym_enum] = ACTIONS(1581), - [anon_sym_cppclass] = ACTIONS(1581), - [anon_sym_fused] = ACTIONS(1581), - [anon_sym_public] = ACTIONS(1581), - [anon_sym_packed] = ACTIONS(1581), - [anon_sym_inline] = ACTIONS(1581), - [anon_sym_readonly] = ACTIONS(1581), - [anon_sym_sizeof] = ACTIONS(1581), - [sym__dedent] = ACTIONS(1583), - [sym_string_start] = ACTIONS(1583), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(5252), + [sym_parenthesized_list_splat] = STATE(5257), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4784), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5773), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5296), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [517] = { - [sym_identifier] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_import] = ACTIONS(1585), - [anon_sym_cimport] = ACTIONS(1585), - [anon_sym_from] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_print] = ACTIONS(1585), - [anon_sym_assert] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_del] = ACTIONS(1585), - [anon_sym_raise] = ACTIONS(1585), - [anon_sym_pass] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_COLON] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_try] = ACTIONS(1585), - [anon_sym_with] = ACTIONS(1585), - [anon_sym_def] = ACTIONS(1585), - [anon_sym_global] = ACTIONS(1585), - [anon_sym_nonlocal] = ACTIONS(1585), - [anon_sym_exec] = ACTIONS(1585), - [anon_sym_type] = ACTIONS(1585), - [anon_sym_class] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_AT] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_not] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_lambda] = ACTIONS(1585), - [anon_sym_yield] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), - [anon_sym_None] = ACTIONS(1585), - [sym_integer] = ACTIONS(1585), - [sym_float] = ACTIONS(1587), - [anon_sym_await] = ACTIONS(1585), - [anon_sym_api] = ACTIONS(1585), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1585), - [anon_sym_include] = ACTIONS(1585), - [anon_sym_DEF] = ACTIONS(1585), - [anon_sym_cdef] = ACTIONS(1585), - [anon_sym_cpdef] = ACTIONS(1585), - [anon_sym_int] = ACTIONS(1585), - [anon_sym_double] = ACTIONS(1585), - [anon_sym_complex] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_ctypedef] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_cppclass] = ACTIONS(1585), - [anon_sym_fused] = ACTIONS(1585), - [anon_sym_public] = ACTIONS(1585), - [anon_sym_packed] = ACTIONS(1585), - [anon_sym_inline] = ACTIONS(1585), - [anon_sym_readonly] = ACTIONS(1585), - [anon_sym_sizeof] = ACTIONS(1585), - [sym__dedent] = ACTIONS(1587), - [sym_string_start] = ACTIONS(1587), + [sym_list_splat_pattern] = STATE(2215), + [sym_primary_expression] = STATE(2151), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_from] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_print] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(859), + [anon_sym_with] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(1351), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1359), + [anon_sym_api] = ACTIONS(1351), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_nogil] = ACTIONS(859), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(857), + [sym_string_start] = ACTIONS(109), }, [518] = { - [sym_identifier] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_import] = ACTIONS(1589), - [anon_sym_cimport] = ACTIONS(1589), - [anon_sym_from] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_print] = ACTIONS(1589), - [anon_sym_assert] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_del] = ACTIONS(1589), - [anon_sym_raise] = ACTIONS(1589), - [anon_sym_pass] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_match] = ACTIONS(1589), - [anon_sym_async] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1589), - [anon_sym_with] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1589), - [anon_sym_global] = ACTIONS(1589), - [anon_sym_nonlocal] = ACTIONS(1589), - [anon_sym_exec] = ACTIONS(1589), - [anon_sym_type] = ACTIONS(1589), - [anon_sym_class] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_AT] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_not] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(1591), - [anon_sym_lambda] = ACTIONS(1589), - [anon_sym_yield] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1591), - [anon_sym_None] = ACTIONS(1589), - [sym_integer] = ACTIONS(1589), - [sym_float] = ACTIONS(1591), - [anon_sym_await] = ACTIONS(1589), - [anon_sym_api] = ACTIONS(1589), - [sym_true] = ACTIONS(1589), - [sym_false] = ACTIONS(1589), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1589), - [anon_sym_include] = ACTIONS(1589), - [anon_sym_DEF] = ACTIONS(1589), - [anon_sym_cdef] = ACTIONS(1589), - [anon_sym_cpdef] = ACTIONS(1589), - [anon_sym_int] = ACTIONS(1589), - [anon_sym_double] = ACTIONS(1589), - [anon_sym_complex] = ACTIONS(1589), - [anon_sym_new] = ACTIONS(1589), - [anon_sym_signed] = ACTIONS(1589), - [anon_sym_unsigned] = ACTIONS(1589), - [anon_sym_char] = ACTIONS(1589), - [anon_sym_short] = ACTIONS(1589), - [anon_sym_long] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_volatile] = ACTIONS(1589), - [anon_sym_ctypedef] = ACTIONS(1589), - [anon_sym_struct] = ACTIONS(1589), - [anon_sym_union] = ACTIONS(1589), - [anon_sym_enum] = ACTIONS(1589), - [anon_sym_cppclass] = ACTIONS(1589), - [anon_sym_fused] = ACTIONS(1589), - [anon_sym_public] = ACTIONS(1589), - [anon_sym_packed] = ACTIONS(1589), - [anon_sym_inline] = ACTIONS(1589), - [anon_sym_readonly] = ACTIONS(1589), - [anon_sym_sizeof] = ACTIONS(1589), - [sym__dedent] = ACTIONS(1591), - [sym_string_start] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_import] = ACTIONS(1564), + [anon_sym_cimport] = ACTIONS(1564), + [anon_sym_from] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_print] = ACTIONS(1564), + [anon_sym_assert] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_del] = ACTIONS(1564), + [anon_sym_raise] = ACTIONS(1564), + [anon_sym_pass] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_COLON] = ACTIONS(1568), + [anon_sym_match] = ACTIONS(1564), + [anon_sym_async] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_with] = ACTIONS(1564), + [anon_sym_def] = ACTIONS(1564), + [anon_sym_global] = ACTIONS(1564), + [anon_sym_nonlocal] = ACTIONS(1564), + [anon_sym_exec] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_class] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_AT] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_not] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_lambda] = ACTIONS(1564), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1566), + [anon_sym_None] = ACTIONS(1564), + [sym_integer] = ACTIONS(1564), + [sym_float] = ACTIONS(1566), + [anon_sym_await] = ACTIONS(1564), + [anon_sym_api] = ACTIONS(1564), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1564), + [anon_sym_include] = ACTIONS(1564), + [anon_sym_DEF] = ACTIONS(1564), + [anon_sym_IF] = ACTIONS(1564), + [anon_sym_cdef] = ACTIONS(1564), + [anon_sym_cpdef] = ACTIONS(1564), + [anon_sym_int] = ACTIONS(1564), + [anon_sym_double] = ACTIONS(1564), + [anon_sym_complex] = ACTIONS(1564), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_signed] = ACTIONS(1564), + [anon_sym_unsigned] = ACTIONS(1564), + [anon_sym_char] = ACTIONS(1564), + [anon_sym_short] = ACTIONS(1564), + [anon_sym_long] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_volatile] = ACTIONS(1564), + [anon_sym_ctypedef] = ACTIONS(1564), + [anon_sym_struct] = ACTIONS(1564), + [anon_sym_union] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_cppclass] = ACTIONS(1564), + [anon_sym_fused] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_packed] = ACTIONS(1564), + [anon_sym_inline] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_sizeof] = ACTIONS(1564), + [sym__dedent] = ACTIONS(1566), + [sym_string_start] = ACTIONS(1566), }, [519] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(3290), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_from] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1327), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_by] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1530), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_EQ] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1530), - [anon_sym_SLASH_SLASH] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_is] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ] = ACTIONS(1327), - [anon_sym_BANG_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_LT_GT] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1344), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_list_splat_pattern] = STATE(2215), + [sym_primary_expression] = STATE(2151), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_from] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_print] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_in] = ACTIONS(859), + [anon_sym_with] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(1351), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(1353), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(77), + [anon_sym_None] = ACTIONS(79), + [sym_integer] = ACTIONS(81), + [sym_float] = ACTIONS(83), + [anon_sym_await] = ACTIONS(1359), + [anon_sym_api] = ACTIONS(1351), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_nogil] = ACTIONS(859), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(857), + [sym_string_start] = ACTIONS(109), }, [520] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(3290), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1327), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1530), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_EQ] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1530), - [anon_sym_SLASH_SLASH] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_is] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ] = ACTIONS(1327), - [anon_sym_BANG_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_LT_GT] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_type_conversion] = ACTIONS(1327), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1344), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_identifier] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_import] = ACTIONS(1570), + [anon_sym_cimport] = ACTIONS(1570), + [anon_sym_from] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_print] = ACTIONS(1570), + [anon_sym_assert] = ACTIONS(1570), + [anon_sym_return] = ACTIONS(1570), + [anon_sym_del] = ACTIONS(1570), + [anon_sym_raise] = ACTIONS(1570), + [anon_sym_pass] = ACTIONS(1570), + [anon_sym_break] = ACTIONS(1570), + [anon_sym_continue] = ACTIONS(1570), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_COLON] = ACTIONS(1574), + [anon_sym_match] = ACTIONS(1570), + [anon_sym_async] = ACTIONS(1570), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1570), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_def] = ACTIONS(1570), + [anon_sym_global] = ACTIONS(1570), + [anon_sym_nonlocal] = ACTIONS(1570), + [anon_sym_exec] = ACTIONS(1570), + [anon_sym_type] = ACTIONS(1570), + [anon_sym_class] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_AT] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_not] = ACTIONS(1570), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_lambda] = ACTIONS(1570), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1572), + [anon_sym_None] = ACTIONS(1570), + [sym_integer] = ACTIONS(1570), + [sym_float] = ACTIONS(1572), + [anon_sym_await] = ACTIONS(1570), + [anon_sym_api] = ACTIONS(1570), + [sym_true] = ACTIONS(1570), + [sym_false] = ACTIONS(1570), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1570), + [anon_sym_include] = ACTIONS(1570), + [anon_sym_DEF] = ACTIONS(1570), + [anon_sym_IF] = ACTIONS(1570), + [anon_sym_cdef] = ACTIONS(1570), + [anon_sym_cpdef] = ACTIONS(1570), + [anon_sym_int] = ACTIONS(1570), + [anon_sym_double] = ACTIONS(1570), + [anon_sym_complex] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1570), + [anon_sym_signed] = ACTIONS(1570), + [anon_sym_unsigned] = ACTIONS(1570), + [anon_sym_char] = ACTIONS(1570), + [anon_sym_short] = ACTIONS(1570), + [anon_sym_long] = ACTIONS(1570), + [anon_sym_const] = ACTIONS(1570), + [anon_sym_volatile] = ACTIONS(1570), + [anon_sym_ctypedef] = ACTIONS(1570), + [anon_sym_struct] = ACTIONS(1570), + [anon_sym_union] = ACTIONS(1570), + [anon_sym_enum] = ACTIONS(1570), + [anon_sym_cppclass] = ACTIONS(1570), + [anon_sym_fused] = ACTIONS(1570), + [anon_sym_public] = ACTIONS(1570), + [anon_sym_packed] = ACTIONS(1570), + [anon_sym_inline] = ACTIONS(1570), + [anon_sym_readonly] = ACTIONS(1570), + [anon_sym_sizeof] = ACTIONS(1570), + [sym__dedent] = ACTIONS(1572), + [sym_string_start] = ACTIONS(1572), }, [521] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4376), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5308), - [sym_c_function_argument_type] = STATE(5477), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), + [sym_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(3299), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_from] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1576), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_in] = ACTIONS(1366), + [anon_sym_with] = ACTIONS(1366), + [anon_sym_STAR_STAR] = ACTIONS(1576), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_not] = ACTIONS(1366), + [anon_sym_and] = ACTIONS(1366), + [anon_sym_or] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_LT_LT] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_is] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_LT_GT] = ACTIONS(1361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_nogil] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1311), + [sym__newline] = ACTIONS(1361), + [sym_string_start] = ACTIONS(1313), + }, + [522] = { + [sym_identifier] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_import] = ACTIONS(1579), + [anon_sym_cimport] = ACTIONS(1579), + [anon_sym_from] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1581), + [anon_sym_print] = ACTIONS(1579), + [anon_sym_assert] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_del] = ACTIONS(1579), + [anon_sym_raise] = ACTIONS(1579), + [anon_sym_pass] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_COLON] = ACTIONS(1581), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_with] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_global] = ACTIONS(1579), + [anon_sym_nonlocal] = ACTIONS(1579), + [anon_sym_exec] = ACTIONS(1579), + [anon_sym_type] = ACTIONS(1579), + [anon_sym_class] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_AT] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_TILDE] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_lambda] = ACTIONS(1579), + [anon_sym_yield] = ACTIONS(1579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1581), + [anon_sym_None] = ACTIONS(1579), + [sym_integer] = ACTIONS(1579), + [sym_float] = ACTIONS(1581), + [anon_sym_await] = ACTIONS(1579), + [anon_sym_api] = ACTIONS(1579), + [sym_true] = ACTIONS(1579), + [sym_false] = ACTIONS(1579), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1579), + [anon_sym_include] = ACTIONS(1579), + [anon_sym_DEF] = ACTIONS(1579), + [anon_sym_IF] = ACTIONS(1579), + [anon_sym_cdef] = ACTIONS(1579), + [anon_sym_cpdef] = ACTIONS(1579), + [anon_sym_int] = ACTIONS(1579), + [anon_sym_double] = ACTIONS(1579), + [anon_sym_complex] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_signed] = ACTIONS(1579), + [anon_sym_unsigned] = ACTIONS(1579), + [anon_sym_char] = ACTIONS(1579), + [anon_sym_short] = ACTIONS(1579), + [anon_sym_long] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [anon_sym_volatile] = ACTIONS(1579), + [anon_sym_ctypedef] = ACTIONS(1579), + [anon_sym_struct] = ACTIONS(1579), + [anon_sym_union] = ACTIONS(1579), + [anon_sym_enum] = ACTIONS(1579), + [anon_sym_cppclass] = ACTIONS(1579), + [anon_sym_fused] = ACTIONS(1579), + [anon_sym_public] = ACTIONS(1579), + [anon_sym_packed] = ACTIONS(1579), + [anon_sym_inline] = ACTIONS(1579), + [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_sizeof] = ACTIONS(1579), + [sym__dedent] = ACTIONS(1581), + [sym_string_start] = ACTIONS(1581), + }, + [523] = { + [sym_identifier] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_import] = ACTIONS(1583), + [anon_sym_cimport] = ACTIONS(1583), + [anon_sym_from] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_print] = ACTIONS(1583), + [anon_sym_assert] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_del] = ACTIONS(1583), + [anon_sym_raise] = ACTIONS(1583), + [anon_sym_pass] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_COLON] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1583), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(1583), + [anon_sym_with] = ACTIONS(1583), + [anon_sym_def] = ACTIONS(1583), + [anon_sym_global] = ACTIONS(1583), + [anon_sym_nonlocal] = ACTIONS(1583), + [anon_sym_exec] = ACTIONS(1583), + [anon_sym_type] = ACTIONS(1583), + [anon_sym_class] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym_AT] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_not] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_TILDE] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_lambda] = ACTIONS(1583), + [anon_sym_yield] = ACTIONS(1583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1585), + [anon_sym_None] = ACTIONS(1583), + [sym_integer] = ACTIONS(1583), + [sym_float] = ACTIONS(1585), + [anon_sym_await] = ACTIONS(1583), + [anon_sym_api] = ACTIONS(1583), + [sym_true] = ACTIONS(1583), + [sym_false] = ACTIONS(1583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1583), + [anon_sym_include] = ACTIONS(1583), + [anon_sym_DEF] = ACTIONS(1583), + [anon_sym_IF] = ACTIONS(1583), + [anon_sym_cdef] = ACTIONS(1583), + [anon_sym_cpdef] = ACTIONS(1583), + [anon_sym_int] = ACTIONS(1583), + [anon_sym_double] = ACTIONS(1583), + [anon_sym_complex] = ACTIONS(1583), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_signed] = ACTIONS(1583), + [anon_sym_unsigned] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_short] = ACTIONS(1583), + [anon_sym_long] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1583), + [anon_sym_volatile] = ACTIONS(1583), + [anon_sym_ctypedef] = ACTIONS(1583), + [anon_sym_struct] = ACTIONS(1583), + [anon_sym_union] = ACTIONS(1583), + [anon_sym_enum] = ACTIONS(1583), + [anon_sym_cppclass] = ACTIONS(1583), + [anon_sym_fused] = ACTIONS(1583), + [anon_sym_public] = ACTIONS(1583), + [anon_sym_packed] = ACTIONS(1583), + [anon_sym_inline] = ACTIONS(1583), + [anon_sym_readonly] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1583), + [sym__dedent] = ACTIONS(1585), + [sym_string_start] = ACTIONS(1585), + }, + [524] = { + [sym_identifier] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_import] = ACTIONS(1587), + [anon_sym_cimport] = ACTIONS(1587), + [anon_sym_from] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_print] = ACTIONS(1587), + [anon_sym_assert] = ACTIONS(1587), + [anon_sym_return] = ACTIONS(1587), + [anon_sym_del] = ACTIONS(1587), + [anon_sym_raise] = ACTIONS(1587), + [anon_sym_pass] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(1591), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_try] = ACTIONS(1587), + [anon_sym_with] = ACTIONS(1587), + [anon_sym_def] = ACTIONS(1587), + [anon_sym_global] = ACTIONS(1587), + [anon_sym_nonlocal] = ACTIONS(1587), + [anon_sym_exec] = ACTIONS(1587), + [anon_sym_type] = ACTIONS(1587), + [anon_sym_class] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_not] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_LT] = ACTIONS(1589), + [anon_sym_lambda] = ACTIONS(1587), + [anon_sym_yield] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1589), + [anon_sym_None] = ACTIONS(1587), + [sym_integer] = ACTIONS(1587), + [sym_float] = ACTIONS(1589), + [anon_sym_await] = ACTIONS(1587), + [anon_sym_api] = ACTIONS(1587), + [sym_true] = ACTIONS(1587), + [sym_false] = ACTIONS(1587), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1587), + [anon_sym_include] = ACTIONS(1587), + [anon_sym_DEF] = ACTIONS(1587), + [anon_sym_IF] = ACTIONS(1587), + [anon_sym_cdef] = ACTIONS(1587), + [anon_sym_cpdef] = ACTIONS(1587), + [anon_sym_int] = ACTIONS(1587), + [anon_sym_double] = ACTIONS(1587), + [anon_sym_complex] = ACTIONS(1587), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_signed] = ACTIONS(1587), + [anon_sym_unsigned] = ACTIONS(1587), + [anon_sym_char] = ACTIONS(1587), + [anon_sym_short] = ACTIONS(1587), + [anon_sym_long] = ACTIONS(1587), + [anon_sym_const] = ACTIONS(1587), + [anon_sym_volatile] = ACTIONS(1587), + [anon_sym_ctypedef] = ACTIONS(1587), + [anon_sym_struct] = ACTIONS(1587), + [anon_sym_union] = ACTIONS(1587), + [anon_sym_enum] = ACTIONS(1587), + [anon_sym_cppclass] = ACTIONS(1587), + [anon_sym_fused] = ACTIONS(1587), + [anon_sym_public] = ACTIONS(1587), + [anon_sym_packed] = ACTIONS(1587), + [anon_sym_inline] = ACTIONS(1587), + [anon_sym_readonly] = ACTIONS(1587), + [anon_sym_sizeof] = ACTIONS(1587), + [sym__dedent] = ACTIONS(1589), + [sym_string_start] = ACTIONS(1589), + }, + [525] = { [sym_identifier] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_import] = ACTIONS(1593), + [anon_sym_cimport] = ACTIONS(1593), + [anon_sym_from] = ACTIONS(1593), [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_print] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_del] = ACTIONS(1593), + [anon_sym_raise] = ACTIONS(1593), + [anon_sym_pass] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_async] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_with] = ACTIONS(1593), + [anon_sym_def] = ACTIONS(1593), + [anon_sym_global] = ACTIONS(1593), + [anon_sym_nonlocal] = ACTIONS(1593), + [anon_sym_exec] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_class] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_AT] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_not] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_LT] = ACTIONS(1595), + [anon_sym_lambda] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), + [anon_sym_None] = ACTIONS(1593), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1595), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_api] = ACTIONS(1593), + [sym_true] = ACTIONS(1593), + [sym_false] = ACTIONS(1593), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1593), + [anon_sym_include] = ACTIONS(1593), + [anon_sym_DEF] = ACTIONS(1593), + [anon_sym_IF] = ACTIONS(1593), + [anon_sym_cdef] = ACTIONS(1593), + [anon_sym_cpdef] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_complex] = ACTIONS(1593), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_signed] = ACTIONS(1593), + [anon_sym_unsigned] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_volatile] = ACTIONS(1593), + [anon_sym_ctypedef] = ACTIONS(1593), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_union] = ACTIONS(1593), + [anon_sym_enum] = ACTIONS(1593), + [anon_sym_cppclass] = ACTIONS(1593), + [anon_sym_fused] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_packed] = ACTIONS(1593), + [anon_sym_inline] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1593), + [sym__dedent] = ACTIONS(1595), + [sym_string_start] = ACTIONS(1595), + }, + [526] = { + [sym_identifier] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(1599), + [anon_sym_cimport] = ACTIONS(1599), + [anon_sym_from] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1601), [anon_sym_print] = ACTIONS(1599), + [anon_sym_assert] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_del] = ACTIONS(1599), + [anon_sym_raise] = ACTIONS(1599), + [anon_sym_pass] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1603), [anon_sym_match] = ACTIONS(1599), [anon_sym_async] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_with] = ACTIONS(1599), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_global] = ACTIONS(1599), + [anon_sym_nonlocal] = ACTIONS(1599), [anon_sym_exec] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1601), + [anon_sym_type] = ACTIONS(1599), + [anon_sym_class] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_AT] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_not] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1601), + [anon_sym_lambda] = ACTIONS(1599), + [anon_sym_yield] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1601), + [anon_sym_None] = ACTIONS(1599), + [sym_integer] = ACTIONS(1599), + [sym_float] = ACTIONS(1601), + [anon_sym_await] = ACTIONS(1599), [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1599), + [anon_sym_include] = ACTIONS(1599), + [anon_sym_DEF] = ACTIONS(1599), + [anon_sym_IF] = ACTIONS(1599), + [anon_sym_cdef] = ACTIONS(1599), + [anon_sym_cpdef] = ACTIONS(1599), + [anon_sym_int] = ACTIONS(1599), + [anon_sym_double] = ACTIONS(1599), + [anon_sym_complex] = ACTIONS(1599), + [anon_sym_new] = ACTIONS(1599), + [anon_sym_signed] = ACTIONS(1599), + [anon_sym_unsigned] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_short] = ACTIONS(1599), + [anon_sym_long] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1599), + [anon_sym_volatile] = ACTIONS(1599), + [anon_sym_ctypedef] = ACTIONS(1599), + [anon_sym_struct] = ACTIONS(1599), + [anon_sym_union] = ACTIONS(1599), + [anon_sym_enum] = ACTIONS(1599), + [anon_sym_cppclass] = ACTIONS(1599), + [anon_sym_fused] = ACTIONS(1599), + [anon_sym_public] = ACTIONS(1599), + [anon_sym_packed] = ACTIONS(1599), + [anon_sym_inline] = ACTIONS(1599), + [anon_sym_readonly] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1599), + [sym__dedent] = ACTIONS(1601), + [sym_string_start] = ACTIONS(1601), }, - [522] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(2239), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_else] = ACTIONS(813), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(813), - [anon_sym_by] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1603), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), - }, - [523] = { + [527] = { [sym_identifier] = ACTIONS(1605), [anon_sym_SEMI] = ACTIONS(1607), [anon_sym_import] = ACTIONS(1605), [anon_sym_cimport] = ACTIONS(1605), [anon_sym_from] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1607), [anon_sym_print] = ACTIONS(1605), [anon_sym_assert] = ACTIONS(1605), [anon_sym_return] = ACTIONS(1605), @@ -81451,6 +82945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1605), [anon_sym_continue] = ACTIONS(1605), [anon_sym_if] = ACTIONS(1605), + [anon_sym_COLON] = ACTIONS(1609), [anon_sym_match] = ACTIONS(1605), [anon_sym_async] = ACTIONS(1605), [anon_sym_for] = ACTIONS(1605), @@ -81463,21 +82958,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(1605), [anon_sym_type] = ACTIONS(1605), [anon_sym_class] = ACTIONS(1605), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_AT] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_AT] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), [anon_sym_not] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1609), - [anon_sym_LT] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1607), [anon_sym_lambda] = ACTIONS(1605), [anon_sym_yield] = ACTIONS(1605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1607), [anon_sym_None] = ACTIONS(1605), [sym_integer] = ACTIONS(1605), - [sym_float] = ACTIONS(1609), + [sym_float] = ACTIONS(1607), [anon_sym_await] = ACTIONS(1605), [anon_sym_api] = ACTIONS(1605), [sym_true] = ACTIONS(1605), @@ -81487,6 +82982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1605), [anon_sym_include] = ACTIONS(1605), [anon_sym_DEF] = ACTIONS(1605), + [anon_sym_IF] = ACTIONS(1605), [anon_sym_cdef] = ACTIONS(1605), [anon_sym_cpdef] = ACTIONS(1605), [anon_sym_int] = ACTIONS(1605), @@ -81511,10 +83007,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1605), [anon_sym_readonly] = ACTIONS(1605), [anon_sym_sizeof] = ACTIONS(1605), - [sym__dedent] = ACTIONS(1609), - [sym_string_start] = ACTIONS(1609), + [sym__dedent] = ACTIONS(1607), + [sym_string_start] = ACTIONS(1607), }, - [524] = { + [528] = { [sym_identifier] = ACTIONS(1611), [anon_sym_SEMI] = ACTIONS(1613), [anon_sym_import] = ACTIONS(1611), @@ -81531,6 +83027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1611), [anon_sym_continue] = ACTIONS(1611), [anon_sym_if] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(1615), [anon_sym_match] = ACTIONS(1611), [anon_sym_async] = ACTIONS(1611), [anon_sym_for] = ACTIONS(1611), @@ -81567,6 +83064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1611), [anon_sym_include] = ACTIONS(1611), [anon_sym_DEF] = ACTIONS(1611), + [anon_sym_IF] = ACTIONS(1611), [anon_sym_cdef] = ACTIONS(1611), [anon_sym_cpdef] = ACTIONS(1611), [anon_sym_int] = ACTIONS(1611), @@ -81594,407 +83092,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1613), [sym_string_start] = ACTIONS(1613), }, - [525] = { - [sym_identifier] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_import] = ACTIONS(1615), - [anon_sym_cimport] = ACTIONS(1615), - [anon_sym_from] = ACTIONS(1615), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_print] = ACTIONS(1615), - [anon_sym_assert] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_del] = ACTIONS(1615), - [anon_sym_raise] = ACTIONS(1615), - [anon_sym_pass] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_match] = ACTIONS(1615), - [anon_sym_async] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_try] = ACTIONS(1615), - [anon_sym_with] = ACTIONS(1615), - [anon_sym_def] = ACTIONS(1615), - [anon_sym_global] = ACTIONS(1615), - [anon_sym_nonlocal] = ACTIONS(1615), - [anon_sym_exec] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_class] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1617), - [anon_sym_AT] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_not] = ACTIONS(1615), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_LT] = ACTIONS(1617), - [anon_sym_lambda] = ACTIONS(1615), - [anon_sym_yield] = ACTIONS(1615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1617), - [anon_sym_None] = ACTIONS(1615), - [sym_integer] = ACTIONS(1615), - [sym_float] = ACTIONS(1617), - [anon_sym_await] = ACTIONS(1615), - [anon_sym_api] = ACTIONS(1615), - [sym_true] = ACTIONS(1615), - [sym_false] = ACTIONS(1615), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1615), - [anon_sym_include] = ACTIONS(1615), - [anon_sym_DEF] = ACTIONS(1615), - [anon_sym_cdef] = ACTIONS(1615), - [anon_sym_cpdef] = ACTIONS(1615), - [anon_sym_int] = ACTIONS(1615), - [anon_sym_double] = ACTIONS(1615), - [anon_sym_complex] = ACTIONS(1615), - [anon_sym_new] = ACTIONS(1615), - [anon_sym_signed] = ACTIONS(1615), - [anon_sym_unsigned] = ACTIONS(1615), - [anon_sym_char] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_volatile] = ACTIONS(1615), - [anon_sym_ctypedef] = ACTIONS(1615), - [anon_sym_struct] = ACTIONS(1615), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1615), - [anon_sym_cppclass] = ACTIONS(1615), - [anon_sym_fused] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_packed] = ACTIONS(1615), - [anon_sym_inline] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_sizeof] = ACTIONS(1615), - [sym__dedent] = ACTIONS(1617), - [sym_string_start] = ACTIONS(1617), - }, - [526] = { - [sym_identifier] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_import] = ACTIONS(1619), - [anon_sym_cimport] = ACTIONS(1619), - [anon_sym_from] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_print] = ACTIONS(1619), - [anon_sym_assert] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_del] = ACTIONS(1619), - [anon_sym_raise] = ACTIONS(1619), - [anon_sym_pass] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_match] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_try] = ACTIONS(1619), - [anon_sym_with] = ACTIONS(1619), - [anon_sym_def] = ACTIONS(1619), - [anon_sym_global] = ACTIONS(1619), - [anon_sym_nonlocal] = ACTIONS(1619), - [anon_sym_exec] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(1619), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_AT] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_not] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_lambda] = ACTIONS(1619), - [anon_sym_yield] = ACTIONS(1619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1623), - [anon_sym_None] = ACTIONS(1619), - [sym_integer] = ACTIONS(1619), - [sym_float] = ACTIONS(1623), - [anon_sym_await] = ACTIONS(1619), - [anon_sym_api] = ACTIONS(1619), - [sym_true] = ACTIONS(1619), - [sym_false] = ACTIONS(1619), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1619), - [anon_sym_include] = ACTIONS(1619), - [anon_sym_DEF] = ACTIONS(1619), - [anon_sym_cdef] = ACTIONS(1619), - [anon_sym_cpdef] = ACTIONS(1619), - [anon_sym_int] = ACTIONS(1619), - [anon_sym_double] = ACTIONS(1619), - [anon_sym_complex] = ACTIONS(1619), - [anon_sym_new] = ACTIONS(1619), - [anon_sym_signed] = ACTIONS(1619), - [anon_sym_unsigned] = ACTIONS(1619), - [anon_sym_char] = ACTIONS(1619), - [anon_sym_short] = ACTIONS(1619), - [anon_sym_long] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_volatile] = ACTIONS(1619), - [anon_sym_ctypedef] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1619), - [anon_sym_union] = ACTIONS(1619), - [anon_sym_enum] = ACTIONS(1619), - [anon_sym_cppclass] = ACTIONS(1619), - [anon_sym_fused] = ACTIONS(1619), - [anon_sym_public] = ACTIONS(1619), - [anon_sym_packed] = ACTIONS(1619), - [anon_sym_inline] = ACTIONS(1619), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_sizeof] = ACTIONS(1619), - [sym__dedent] = ACTIONS(1623), - [sym_string_start] = ACTIONS(1623), + [529] = { + [sym_identifier] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_import] = ACTIONS(1617), + [anon_sym_cimport] = ACTIONS(1617), + [anon_sym_from] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_print] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_del] = ACTIONS(1617), + [anon_sym_raise] = ACTIONS(1617), + [anon_sym_pass] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(1621), + [anon_sym_match] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_try] = ACTIONS(1617), + [anon_sym_with] = ACTIONS(1617), + [anon_sym_def] = ACTIONS(1617), + [anon_sym_global] = ACTIONS(1617), + [anon_sym_nonlocal] = ACTIONS(1617), + [anon_sym_exec] = ACTIONS(1617), + [anon_sym_type] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_AT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_not] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1619), + [anon_sym_lambda] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1619), + [anon_sym_None] = ACTIONS(1617), + [sym_integer] = ACTIONS(1617), + [sym_float] = ACTIONS(1619), + [anon_sym_await] = ACTIONS(1617), + [anon_sym_api] = ACTIONS(1617), + [sym_true] = ACTIONS(1617), + [sym_false] = ACTIONS(1617), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1617), + [anon_sym_include] = ACTIONS(1617), + [anon_sym_DEF] = ACTIONS(1617), + [anon_sym_IF] = ACTIONS(1617), + [anon_sym_cdef] = ACTIONS(1617), + [anon_sym_cpdef] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_complex] = ACTIONS(1617), + [anon_sym_new] = ACTIONS(1617), + [anon_sym_signed] = ACTIONS(1617), + [anon_sym_unsigned] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_volatile] = ACTIONS(1617), + [anon_sym_ctypedef] = ACTIONS(1617), + [anon_sym_struct] = ACTIONS(1617), + [anon_sym_union] = ACTIONS(1617), + [anon_sym_enum] = ACTIONS(1617), + [anon_sym_cppclass] = ACTIONS(1617), + [anon_sym_fused] = ACTIONS(1617), + [anon_sym_public] = ACTIONS(1617), + [anon_sym_packed] = ACTIONS(1617), + [anon_sym_inline] = ACTIONS(1617), + [anon_sym_readonly] = ACTIONS(1617), + [anon_sym_sizeof] = ACTIONS(1617), + [sym__dedent] = ACTIONS(1619), + [sym_string_start] = ACTIONS(1619), }, - [527] = { - [sym_identifier] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_import] = ACTIONS(1625), - [anon_sym_cimport] = ACTIONS(1625), - [anon_sym_from] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_print] = ACTIONS(1625), - [anon_sym_assert] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_del] = ACTIONS(1625), - [anon_sym_raise] = ACTIONS(1625), - [anon_sym_pass] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_match] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_try] = ACTIONS(1625), - [anon_sym_with] = ACTIONS(1625), - [anon_sym_def] = ACTIONS(1625), - [anon_sym_global] = ACTIONS(1625), - [anon_sym_nonlocal] = ACTIONS(1625), - [anon_sym_exec] = ACTIONS(1625), - [anon_sym_type] = ACTIONS(1625), - [anon_sym_class] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_AT] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_not] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1627), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(1627), - [anon_sym_lambda] = ACTIONS(1625), - [anon_sym_yield] = ACTIONS(1625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1627), - [anon_sym_None] = ACTIONS(1625), - [sym_integer] = ACTIONS(1625), - [sym_float] = ACTIONS(1627), - [anon_sym_await] = ACTIONS(1625), - [anon_sym_api] = ACTIONS(1625), - [sym_true] = ACTIONS(1625), - [sym_false] = ACTIONS(1625), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1625), - [anon_sym_include] = ACTIONS(1625), - [anon_sym_DEF] = ACTIONS(1625), - [anon_sym_cdef] = ACTIONS(1625), - [anon_sym_cpdef] = ACTIONS(1625), - [anon_sym_int] = ACTIONS(1625), - [anon_sym_double] = ACTIONS(1625), - [anon_sym_complex] = ACTIONS(1625), - [anon_sym_new] = ACTIONS(1625), - [anon_sym_signed] = ACTIONS(1625), - [anon_sym_unsigned] = ACTIONS(1625), - [anon_sym_char] = ACTIONS(1625), - [anon_sym_short] = ACTIONS(1625), - [anon_sym_long] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_volatile] = ACTIONS(1625), - [anon_sym_ctypedef] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_enum] = ACTIONS(1625), - [anon_sym_cppclass] = ACTIONS(1625), - [anon_sym_fused] = ACTIONS(1625), - [anon_sym_public] = ACTIONS(1625), - [anon_sym_packed] = ACTIONS(1625), - [anon_sym_inline] = ACTIONS(1625), - [anon_sym_readonly] = ACTIONS(1625), - [anon_sym_sizeof] = ACTIONS(1625), - [sym__dedent] = ACTIONS(1627), - [sym_string_start] = ACTIONS(1627), + [530] = { + [sym_identifier] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_import] = ACTIONS(1623), + [anon_sym_cimport] = ACTIONS(1623), + [anon_sym_from] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_print] = ACTIONS(1623), + [anon_sym_assert] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_del] = ACTIONS(1623), + [anon_sym_raise] = ACTIONS(1623), + [anon_sym_pass] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_match] = ACTIONS(1623), + [anon_sym_async] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_try] = ACTIONS(1623), + [anon_sym_with] = ACTIONS(1623), + [anon_sym_def] = ACTIONS(1623), + [anon_sym_global] = ACTIONS(1623), + [anon_sym_nonlocal] = ACTIONS(1623), + [anon_sym_exec] = ACTIONS(1623), + [anon_sym_type] = ACTIONS(1623), + [anon_sym_class] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_AT] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_not] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_TILDE] = ACTIONS(1625), + [anon_sym_LT] = ACTIONS(1625), + [anon_sym_lambda] = ACTIONS(1623), + [anon_sym_yield] = ACTIONS(1623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1625), + [anon_sym_None] = ACTIONS(1623), + [sym_integer] = ACTIONS(1623), + [sym_float] = ACTIONS(1625), + [anon_sym_await] = ACTIONS(1623), + [anon_sym_api] = ACTIONS(1623), + [sym_true] = ACTIONS(1623), + [sym_false] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1623), + [anon_sym_include] = ACTIONS(1623), + [anon_sym_DEF] = ACTIONS(1623), + [anon_sym_IF] = ACTIONS(1623), + [anon_sym_cdef] = ACTIONS(1623), + [anon_sym_cpdef] = ACTIONS(1623), + [anon_sym_int] = ACTIONS(1623), + [anon_sym_double] = ACTIONS(1623), + [anon_sym_complex] = ACTIONS(1623), + [anon_sym_new] = ACTIONS(1623), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_char] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1623), + [anon_sym_volatile] = ACTIONS(1623), + [anon_sym_ctypedef] = ACTIONS(1623), + [anon_sym_struct] = ACTIONS(1623), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1623), + [anon_sym_cppclass] = ACTIONS(1623), + [anon_sym_fused] = ACTIONS(1623), + [anon_sym_public] = ACTIONS(1623), + [anon_sym_packed] = ACTIONS(1623), + [anon_sym_inline] = ACTIONS(1623), + [anon_sym_readonly] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1623), + [sym__dedent] = ACTIONS(1625), + [sym_string_start] = ACTIONS(1625), }, - [528] = { - [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), + [531] = { + [sym_identifier] = ACTIONS(1627), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_import] = ACTIONS(1627), + [anon_sym_cimport] = ACTIONS(1627), + [anon_sym_from] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1629), + [anon_sym_print] = ACTIONS(1627), + [anon_sym_assert] = ACTIONS(1627), + [anon_sym_return] = ACTIONS(1627), + [anon_sym_del] = ACTIONS(1627), + [anon_sym_raise] = ACTIONS(1627), + [anon_sym_pass] = ACTIONS(1627), + [anon_sym_break] = ACTIONS(1627), + [anon_sym_continue] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1627), + [anon_sym_match] = ACTIONS(1627), + [anon_sym_async] = ACTIONS(1627), + [anon_sym_for] = ACTIONS(1627), + [anon_sym_while] = ACTIONS(1627), + [anon_sym_try] = ACTIONS(1627), + [anon_sym_with] = ACTIONS(1627), + [anon_sym_def] = ACTIONS(1627), + [anon_sym_global] = ACTIONS(1627), + [anon_sym_nonlocal] = ACTIONS(1627), + [anon_sym_exec] = ACTIONS(1627), + [anon_sym_type] = ACTIONS(1627), + [anon_sym_class] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_AT] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_not] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_TILDE] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1629), + [anon_sym_lambda] = ACTIONS(1627), + [anon_sym_yield] = ACTIONS(1627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1629), + [anon_sym_None] = ACTIONS(1627), + [sym_integer] = ACTIONS(1627), + [sym_float] = ACTIONS(1629), + [anon_sym_await] = ACTIONS(1627), + [anon_sym_api] = ACTIONS(1627), + [sym_true] = ACTIONS(1627), + [sym_false] = ACTIONS(1627), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1627), + [anon_sym_include] = ACTIONS(1627), + [anon_sym_DEF] = ACTIONS(1627), + [anon_sym_IF] = ACTIONS(1627), + [anon_sym_cdef] = ACTIONS(1627), + [anon_sym_cpdef] = ACTIONS(1627), + [anon_sym_int] = ACTIONS(1627), + [anon_sym_double] = ACTIONS(1627), + [anon_sym_complex] = ACTIONS(1627), + [anon_sym_new] = ACTIONS(1627), + [anon_sym_signed] = ACTIONS(1627), + [anon_sym_unsigned] = ACTIONS(1627), + [anon_sym_char] = ACTIONS(1627), + [anon_sym_short] = ACTIONS(1627), + [anon_sym_long] = ACTIONS(1627), + [anon_sym_const] = ACTIONS(1627), + [anon_sym_volatile] = ACTIONS(1627), + [anon_sym_ctypedef] = ACTIONS(1627), + [anon_sym_struct] = ACTIONS(1627), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_enum] = ACTIONS(1627), + [anon_sym_cppclass] = ACTIONS(1627), + [anon_sym_fused] = ACTIONS(1627), + [anon_sym_public] = ACTIONS(1627), + [anon_sym_packed] = ACTIONS(1627), + [anon_sym_inline] = ACTIONS(1627), + [anon_sym_readonly] = ACTIONS(1627), + [anon_sym_sizeof] = ACTIONS(1627), + [sym__dedent] = ACTIONS(1629), + [sym_string_start] = ACTIONS(1629), }, - [529] = { - [sym_identifier] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_import] = ACTIONS(1633), - [anon_sym_cimport] = ACTIONS(1633), - [anon_sym_from] = ACTIONS(1633), + [532] = { + [sym_identifier] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_import] = ACTIONS(1631), + [anon_sym_cimport] = ACTIONS(1631), + [anon_sym_from] = ACTIONS(1631), [anon_sym_LPAREN] = ACTIONS(1635), [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_print] = ACTIONS(1633), - [anon_sym_assert] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_del] = ACTIONS(1633), - [anon_sym_raise] = ACTIONS(1633), - [anon_sym_pass] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_async] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_with] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1633), - [anon_sym_global] = ACTIONS(1633), - [anon_sym_nonlocal] = ACTIONS(1633), - [anon_sym_exec] = ACTIONS(1633), - [anon_sym_type] = ACTIONS(1633), - [anon_sym_class] = ACTIONS(1633), + [anon_sym_print] = ACTIONS(1631), + [anon_sym_assert] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_del] = ACTIONS(1631), + [anon_sym_raise] = ACTIONS(1631), + [anon_sym_pass] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_async] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_with] = ACTIONS(1631), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_global] = ACTIONS(1631), + [anon_sym_nonlocal] = ACTIONS(1631), + [anon_sym_exec] = ACTIONS(1631), + [anon_sym_type] = ACTIONS(1631), + [anon_sym_class] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1635), [anon_sym_AT] = ACTIONS(1635), [anon_sym_DASH] = ACTIONS(1635), [anon_sym_LBRACE] = ACTIONS(1635), [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_not] = ACTIONS(1633), + [anon_sym_not] = ACTIONS(1631), [anon_sym_AMP] = ACTIONS(1635), [anon_sym_TILDE] = ACTIONS(1635), [anon_sym_LT] = ACTIONS(1635), - [anon_sym_lambda] = ACTIONS(1633), - [anon_sym_yield] = ACTIONS(1633), + [anon_sym_lambda] = ACTIONS(1631), + [anon_sym_yield] = ACTIONS(1631), [anon_sym_DOT_DOT_DOT] = ACTIONS(1635), - [anon_sym_None] = ACTIONS(1633), - [sym_integer] = ACTIONS(1633), + [anon_sym_None] = ACTIONS(1631), + [sym_integer] = ACTIONS(1631), [sym_float] = ACTIONS(1635), - [anon_sym_await] = ACTIONS(1633), - [anon_sym_api] = ACTIONS(1633), - [sym_true] = ACTIONS(1633), - [sym_false] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1633), - [anon_sym_include] = ACTIONS(1633), - [anon_sym_DEF] = ACTIONS(1633), - [anon_sym_cdef] = ACTIONS(1633), - [anon_sym_cpdef] = ACTIONS(1633), - [anon_sym_int] = ACTIONS(1633), - [anon_sym_double] = ACTIONS(1633), - [anon_sym_complex] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1633), - [anon_sym_signed] = ACTIONS(1633), - [anon_sym_unsigned] = ACTIONS(1633), - [anon_sym_char] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_volatile] = ACTIONS(1633), - [anon_sym_ctypedef] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_union] = ACTIONS(1633), - [anon_sym_enum] = ACTIONS(1633), - [anon_sym_cppclass] = ACTIONS(1633), - [anon_sym_fused] = ACTIONS(1633), - [anon_sym_public] = ACTIONS(1633), - [anon_sym_packed] = ACTIONS(1633), - [anon_sym_inline] = ACTIONS(1633), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_sizeof] = ACTIONS(1633), + [anon_sym_await] = ACTIONS(1631), + [anon_sym_api] = ACTIONS(1631), + [sym_true] = ACTIONS(1631), + [sym_false] = ACTIONS(1631), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1631), + [anon_sym_include] = ACTIONS(1631), + [anon_sym_DEF] = ACTIONS(1631), + [anon_sym_IF] = ACTIONS(1631), + [anon_sym_cdef] = ACTIONS(1631), + [anon_sym_cpdef] = ACTIONS(1631), + [anon_sym_int] = ACTIONS(1631), + [anon_sym_double] = ACTIONS(1631), + [anon_sym_complex] = ACTIONS(1631), + [anon_sym_new] = ACTIONS(1631), + [anon_sym_signed] = ACTIONS(1631), + [anon_sym_unsigned] = ACTIONS(1631), + [anon_sym_char] = ACTIONS(1631), + [anon_sym_short] = ACTIONS(1631), + [anon_sym_long] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [anon_sym_volatile] = ACTIONS(1631), + [anon_sym_ctypedef] = ACTIONS(1631), + [anon_sym_struct] = ACTIONS(1631), + [anon_sym_union] = ACTIONS(1631), + [anon_sym_enum] = ACTIONS(1631), + [anon_sym_cppclass] = ACTIONS(1631), + [anon_sym_fused] = ACTIONS(1631), + [anon_sym_public] = ACTIONS(1631), + [anon_sym_packed] = ACTIONS(1631), + [anon_sym_inline] = ACTIONS(1631), + [anon_sym_readonly] = ACTIONS(1631), + [anon_sym_sizeof] = ACTIONS(1631), [sym__dedent] = ACTIONS(1635), [sym_string_start] = ACTIONS(1635), }, - [530] = { + [533] = { [sym_identifier] = ACTIONS(1637), [anon_sym_SEMI] = ACTIONS(1639), [anon_sym_import] = ACTIONS(1637), @@ -82047,6 +83470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1637), [anon_sym_include] = ACTIONS(1637), [anon_sym_DEF] = ACTIONS(1637), + [anon_sym_IF] = ACTIONS(1637), [anon_sym_cdef] = ACTIONS(1637), [anon_sym_cpdef] = ACTIONS(1637), [anon_sym_int] = ACTIONS(1637), @@ -82074,7 +83498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1639), [sym_string_start] = ACTIONS(1639), }, - [531] = { + [534] = { [sym_identifier] = ACTIONS(1641), [anon_sym_SEMI] = ACTIONS(1643), [anon_sym_import] = ACTIONS(1641), @@ -82127,6 +83551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1641), [anon_sym_include] = ACTIONS(1641), [anon_sym_DEF] = ACTIONS(1641), + [anon_sym_IF] = ACTIONS(1641), [anon_sym_cdef] = ACTIONS(1641), [anon_sym_cpdef] = ACTIONS(1641), [anon_sym_int] = ACTIONS(1641), @@ -82154,14 +83579,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(1643), [sym_string_start] = ACTIONS(1643), }, - [532] = { + [535] = { [sym_identifier] = ACTIONS(1645), [anon_sym_SEMI] = ACTIONS(1647), [anon_sym_import] = ACTIONS(1645), [anon_sym_cimport] = ACTIONS(1645), [anon_sym_from] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(1649), [anon_sym_print] = ACTIONS(1645), [anon_sym_assert] = ACTIONS(1645), [anon_sym_return] = ACTIONS(1645), @@ -82183,21 +83608,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(1645), [anon_sym_type] = ACTIONS(1645), [anon_sym_class] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_AT] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_AT] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1649), [anon_sym_not] = ACTIONS(1645), - [anon_sym_AMP] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_LT] = ACTIONS(1649), [anon_sym_lambda] = ACTIONS(1645), [anon_sym_yield] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), [anon_sym_None] = ACTIONS(1645), [sym_integer] = ACTIONS(1645), - [sym_float] = ACTIONS(1647), + [sym_float] = ACTIONS(1649), [anon_sym_await] = ACTIONS(1645), [anon_sym_api] = ACTIONS(1645), [sym_true] = ACTIONS(1645), @@ -82207,6 +83632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(1645), [anon_sym_include] = ACTIONS(1645), [anon_sym_DEF] = ACTIONS(1645), + [anon_sym_IF] = ACTIONS(1645), [anon_sym_cdef] = ACTIONS(1645), [anon_sym_cpdef] = ACTIONS(1645), [anon_sym_int] = ACTIONS(1645), @@ -82231,20430 +83657,21060 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1645), [anon_sym_readonly] = ACTIONS(1645), [anon_sym_sizeof] = ACTIONS(1645), - [sym__dedent] = ACTIONS(1647), - [sym_string_start] = ACTIONS(1647), - }, - [533] = { - [sym_identifier] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_import] = ACTIONS(1649), - [anon_sym_cimport] = ACTIONS(1649), - [anon_sym_from] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_print] = ACTIONS(1649), - [anon_sym_assert] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_del] = ACTIONS(1649), - [anon_sym_raise] = ACTIONS(1649), - [anon_sym_pass] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_match] = ACTIONS(1649), - [anon_sym_async] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_try] = ACTIONS(1649), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_def] = ACTIONS(1649), - [anon_sym_global] = ACTIONS(1649), - [anon_sym_nonlocal] = ACTIONS(1649), - [anon_sym_exec] = ACTIONS(1649), - [anon_sym_type] = ACTIONS(1649), - [anon_sym_class] = ACTIONS(1649), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_AT] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_PLUS] = ACTIONS(1651), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_LT] = ACTIONS(1651), - [anon_sym_lambda] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1651), - [anon_sym_None] = ACTIONS(1649), - [sym_integer] = ACTIONS(1649), - [sym_float] = ACTIONS(1651), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_api] = ACTIONS(1649), - [sym_true] = ACTIONS(1649), - [sym_false] = ACTIONS(1649), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1649), - [anon_sym_include] = ACTIONS(1649), - [anon_sym_DEF] = ACTIONS(1649), - [anon_sym_cdef] = ACTIONS(1649), - [anon_sym_cpdef] = ACTIONS(1649), - [anon_sym_int] = ACTIONS(1649), - [anon_sym_double] = ACTIONS(1649), - [anon_sym_complex] = ACTIONS(1649), - [anon_sym_new] = ACTIONS(1649), - [anon_sym_signed] = ACTIONS(1649), - [anon_sym_unsigned] = ACTIONS(1649), - [anon_sym_char] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_volatile] = ACTIONS(1649), - [anon_sym_ctypedef] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_cppclass] = ACTIONS(1649), - [anon_sym_fused] = ACTIONS(1649), - [anon_sym_public] = ACTIONS(1649), - [anon_sym_packed] = ACTIONS(1649), - [anon_sym_inline] = ACTIONS(1649), - [anon_sym_readonly] = ACTIONS(1649), - [anon_sym_sizeof] = ACTIONS(1649), - [sym__dedent] = ACTIONS(1651), - [sym_string_start] = ACTIONS(1651), - }, - [534] = { - [sym_identifier] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1653), - [anon_sym_cimport] = ACTIONS(1653), - [anon_sym_from] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_print] = ACTIONS(1653), - [anon_sym_assert] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_del] = ACTIONS(1653), - [anon_sym_raise] = ACTIONS(1653), - [anon_sym_pass] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_match] = ACTIONS(1653), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_try] = ACTIONS(1653), - [anon_sym_with] = ACTIONS(1653), - [anon_sym_def] = ACTIONS(1653), - [anon_sym_global] = ACTIONS(1653), - [anon_sym_nonlocal] = ACTIONS(1653), - [anon_sym_exec] = ACTIONS(1653), - [anon_sym_type] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1653), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_not] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1655), - [anon_sym_lambda] = ACTIONS(1653), - [anon_sym_yield] = ACTIONS(1653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1655), - [anon_sym_None] = ACTIONS(1653), - [sym_integer] = ACTIONS(1653), - [sym_float] = ACTIONS(1655), - [anon_sym_await] = ACTIONS(1653), - [anon_sym_api] = ACTIONS(1653), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1653), - [anon_sym_include] = ACTIONS(1653), - [anon_sym_DEF] = ACTIONS(1653), - [anon_sym_cdef] = ACTIONS(1653), - [anon_sym_cpdef] = ACTIONS(1653), - [anon_sym_int] = ACTIONS(1653), - [anon_sym_double] = ACTIONS(1653), - [anon_sym_complex] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1653), - [anon_sym_signed] = ACTIONS(1653), - [anon_sym_unsigned] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_volatile] = ACTIONS(1653), - [anon_sym_ctypedef] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_cppclass] = ACTIONS(1653), - [anon_sym_fused] = ACTIONS(1653), - [anon_sym_public] = ACTIONS(1653), - [anon_sym_packed] = ACTIONS(1653), - [anon_sym_inline] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1653), - [sym__dedent] = ACTIONS(1655), - [sym_string_start] = ACTIONS(1655), - }, - [535] = { - [sym_identifier] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_import] = ACTIONS(1657), - [anon_sym_cimport] = ACTIONS(1657), - [anon_sym_from] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_print] = ACTIONS(1657), - [anon_sym_assert] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_del] = ACTIONS(1657), - [anon_sym_raise] = ACTIONS(1657), - [anon_sym_pass] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_match] = ACTIONS(1657), - [anon_sym_async] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_try] = ACTIONS(1657), - [anon_sym_with] = ACTIONS(1657), - [anon_sym_def] = ACTIONS(1657), - [anon_sym_global] = ACTIONS(1657), - [anon_sym_nonlocal] = ACTIONS(1657), - [anon_sym_exec] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_class] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_AT] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_not] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_lambda] = ACTIONS(1657), - [anon_sym_yield] = ACTIONS(1657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1659), - [anon_sym_None] = ACTIONS(1657), - [sym_integer] = ACTIONS(1657), - [sym_float] = ACTIONS(1659), - [anon_sym_await] = ACTIONS(1657), - [anon_sym_api] = ACTIONS(1657), - [sym_true] = ACTIONS(1657), - [sym_false] = ACTIONS(1657), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1657), - [anon_sym_include] = ACTIONS(1657), - [anon_sym_DEF] = ACTIONS(1657), - [anon_sym_cdef] = ACTIONS(1657), - [anon_sym_cpdef] = ACTIONS(1657), - [anon_sym_int] = ACTIONS(1657), - [anon_sym_double] = ACTIONS(1657), - [anon_sym_complex] = ACTIONS(1657), - [anon_sym_new] = ACTIONS(1657), - [anon_sym_signed] = ACTIONS(1657), - [anon_sym_unsigned] = ACTIONS(1657), - [anon_sym_char] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_volatile] = ACTIONS(1657), - [anon_sym_ctypedef] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1657), - [anon_sym_union] = ACTIONS(1657), - [anon_sym_enum] = ACTIONS(1657), - [anon_sym_cppclass] = ACTIONS(1657), - [anon_sym_fused] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_packed] = ACTIONS(1657), - [anon_sym_inline] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1657), - [sym__dedent] = ACTIONS(1659), - [sym_string_start] = ACTIONS(1659), + [sym__dedent] = ACTIONS(1649), + [sym_string_start] = ACTIONS(1649), }, [536] = { - [sym_identifier] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_cimport] = ACTIONS(1661), - [anon_sym_from] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_print] = ACTIONS(1661), - [anon_sym_assert] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_del] = ACTIONS(1661), - [anon_sym_raise] = ACTIONS(1661), - [anon_sym_pass] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_with] = ACTIONS(1661), - [anon_sym_def] = ACTIONS(1661), - [anon_sym_global] = ACTIONS(1661), - [anon_sym_nonlocal] = ACTIONS(1661), - [anon_sym_exec] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_class] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_AT] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1663), - [anon_sym_lambda] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1663), - [anon_sym_None] = ACTIONS(1661), - [sym_integer] = ACTIONS(1661), - [sym_float] = ACTIONS(1663), - [anon_sym_await] = ACTIONS(1661), - [anon_sym_api] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1661), - [anon_sym_include] = ACTIONS(1661), - [anon_sym_DEF] = ACTIONS(1661), - [anon_sym_cdef] = ACTIONS(1661), - [anon_sym_cpdef] = ACTIONS(1661), - [anon_sym_int] = ACTIONS(1661), - [anon_sym_double] = ACTIONS(1661), - [anon_sym_complex] = ACTIONS(1661), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_signed] = ACTIONS(1661), - [anon_sym_unsigned] = ACTIONS(1661), - [anon_sym_char] = ACTIONS(1661), - [anon_sym_short] = ACTIONS(1661), - [anon_sym_long] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_volatile] = ACTIONS(1661), - [anon_sym_ctypedef] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_union] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_cppclass] = ACTIONS(1661), - [anon_sym_fused] = ACTIONS(1661), - [anon_sym_public] = ACTIONS(1661), - [anon_sym_packed] = ACTIONS(1661), - [anon_sym_inline] = ACTIONS(1661), - [anon_sym_readonly] = ACTIONS(1661), - [anon_sym_sizeof] = ACTIONS(1661), - [sym__dedent] = ACTIONS(1663), - [sym_string_start] = ACTIONS(1663), + [sym_identifier] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_import] = ACTIONS(1651), + [anon_sym_cimport] = ACTIONS(1651), + [anon_sym_from] = ACTIONS(1651), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_print] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_del] = ACTIONS(1651), + [anon_sym_raise] = ACTIONS(1651), + [anon_sym_pass] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_match] = ACTIONS(1651), + [anon_sym_async] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_try] = ACTIONS(1651), + [anon_sym_with] = ACTIONS(1651), + [anon_sym_def] = ACTIONS(1651), + [anon_sym_global] = ACTIONS(1651), + [anon_sym_nonlocal] = ACTIONS(1651), + [anon_sym_exec] = ACTIONS(1651), + [anon_sym_type] = ACTIONS(1651), + [anon_sym_class] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_AT] = ACTIONS(1653), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_not] = ACTIONS(1651), + [anon_sym_AMP] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_LT] = ACTIONS(1653), + [anon_sym_lambda] = ACTIONS(1651), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1653), + [anon_sym_None] = ACTIONS(1651), + [sym_integer] = ACTIONS(1651), + [sym_float] = ACTIONS(1653), + [anon_sym_await] = ACTIONS(1651), + [anon_sym_api] = ACTIONS(1651), + [sym_true] = ACTIONS(1651), + [sym_false] = ACTIONS(1651), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1651), + [anon_sym_include] = ACTIONS(1651), + [anon_sym_DEF] = ACTIONS(1651), + [anon_sym_IF] = ACTIONS(1651), + [anon_sym_cdef] = ACTIONS(1651), + [anon_sym_cpdef] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_complex] = ACTIONS(1651), + [anon_sym_new] = ACTIONS(1651), + [anon_sym_signed] = ACTIONS(1651), + [anon_sym_unsigned] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_volatile] = ACTIONS(1651), + [anon_sym_ctypedef] = ACTIONS(1651), + [anon_sym_struct] = ACTIONS(1651), + [anon_sym_union] = ACTIONS(1651), + [anon_sym_enum] = ACTIONS(1651), + [anon_sym_cppclass] = ACTIONS(1651), + [anon_sym_fused] = ACTIONS(1651), + [anon_sym_public] = ACTIONS(1651), + [anon_sym_packed] = ACTIONS(1651), + [anon_sym_inline] = ACTIONS(1651), + [anon_sym_readonly] = ACTIONS(1651), + [anon_sym_sizeof] = ACTIONS(1651), + [sym__dedent] = ACTIONS(1653), + [sym_string_start] = ACTIONS(1653), }, [537] = { - [sym_identifier] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_import] = ACTIONS(1665), - [anon_sym_cimport] = ACTIONS(1665), - [anon_sym_from] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_print] = ACTIONS(1665), - [anon_sym_assert] = ACTIONS(1665), - [anon_sym_return] = ACTIONS(1665), - [anon_sym_del] = ACTIONS(1665), - [anon_sym_raise] = ACTIONS(1665), - [anon_sym_pass] = ACTIONS(1665), - [anon_sym_break] = ACTIONS(1665), - [anon_sym_continue] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1665), - [anon_sym_match] = ACTIONS(1665), - [anon_sym_async] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1665), - [anon_sym_try] = ACTIONS(1665), - [anon_sym_with] = ACTIONS(1665), - [anon_sym_def] = ACTIONS(1665), - [anon_sym_global] = ACTIONS(1665), - [anon_sym_nonlocal] = ACTIONS(1665), - [anon_sym_exec] = ACTIONS(1665), - [anon_sym_type] = ACTIONS(1665), - [anon_sym_class] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_AT] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_not] = ACTIONS(1665), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_lambda] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1667), - [anon_sym_None] = ACTIONS(1665), - [sym_integer] = ACTIONS(1665), - [sym_float] = ACTIONS(1667), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_api] = ACTIONS(1665), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1665), - [anon_sym_include] = ACTIONS(1665), - [anon_sym_DEF] = ACTIONS(1665), - [anon_sym_cdef] = ACTIONS(1665), - [anon_sym_cpdef] = ACTIONS(1665), - [anon_sym_int] = ACTIONS(1665), - [anon_sym_double] = ACTIONS(1665), - [anon_sym_complex] = ACTIONS(1665), - [anon_sym_new] = ACTIONS(1665), - [anon_sym_signed] = ACTIONS(1665), - [anon_sym_unsigned] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_short] = ACTIONS(1665), - [anon_sym_long] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1665), - [anon_sym_volatile] = ACTIONS(1665), - [anon_sym_ctypedef] = ACTIONS(1665), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_union] = ACTIONS(1665), - [anon_sym_enum] = ACTIONS(1665), - [anon_sym_cppclass] = ACTIONS(1665), - [anon_sym_fused] = ACTIONS(1665), - [anon_sym_public] = ACTIONS(1665), - [anon_sym_packed] = ACTIONS(1665), - [anon_sym_inline] = ACTIONS(1665), - [anon_sym_readonly] = ACTIONS(1665), - [anon_sym_sizeof] = ACTIONS(1665), - [sym__dedent] = ACTIONS(1667), - [sym_string_start] = ACTIONS(1667), + [sym_identifier] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_cimport] = ACTIONS(1655), + [anon_sym_from] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1657), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_print] = ACTIONS(1655), + [anon_sym_assert] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_del] = ACTIONS(1655), + [anon_sym_raise] = ACTIONS(1655), + [anon_sym_pass] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_match] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_with] = ACTIONS(1655), + [anon_sym_def] = ACTIONS(1655), + [anon_sym_global] = ACTIONS(1655), + [anon_sym_nonlocal] = ACTIONS(1655), + [anon_sym_exec] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1655), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_AT] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1657), + [anon_sym_not] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1657), + [anon_sym_LT] = ACTIONS(1657), + [anon_sym_lambda] = ACTIONS(1655), + [anon_sym_yield] = ACTIONS(1655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1657), + [anon_sym_None] = ACTIONS(1655), + [sym_integer] = ACTIONS(1655), + [sym_float] = ACTIONS(1657), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_api] = ACTIONS(1655), + [sym_true] = ACTIONS(1655), + [sym_false] = ACTIONS(1655), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1655), + [anon_sym_include] = ACTIONS(1655), + [anon_sym_DEF] = ACTIONS(1655), + [anon_sym_IF] = ACTIONS(1655), + [anon_sym_cdef] = ACTIONS(1655), + [anon_sym_cpdef] = ACTIONS(1655), + [anon_sym_int] = ACTIONS(1655), + [anon_sym_double] = ACTIONS(1655), + [anon_sym_complex] = ACTIONS(1655), + [anon_sym_new] = ACTIONS(1655), + [anon_sym_signed] = ACTIONS(1655), + [anon_sym_unsigned] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_short] = ACTIONS(1655), + [anon_sym_long] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_volatile] = ACTIONS(1655), + [anon_sym_ctypedef] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(1655), + [anon_sym_union] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1655), + [anon_sym_cppclass] = ACTIONS(1655), + [anon_sym_fused] = ACTIONS(1655), + [anon_sym_public] = ACTIONS(1655), + [anon_sym_packed] = ACTIONS(1655), + [anon_sym_inline] = ACTIONS(1655), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1655), + [sym__dedent] = ACTIONS(1657), + [sym_string_start] = ACTIONS(1657), }, [538] = { - [sym_identifier] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_import] = ACTIONS(1669), - [anon_sym_cimport] = ACTIONS(1669), - [anon_sym_from] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_print] = ACTIONS(1669), - [anon_sym_assert] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_del] = ACTIONS(1669), - [anon_sym_raise] = ACTIONS(1669), - [anon_sym_pass] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_match] = ACTIONS(1669), - [anon_sym_async] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1669), - [anon_sym_with] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1669), - [anon_sym_global] = ACTIONS(1669), - [anon_sym_nonlocal] = ACTIONS(1669), - [anon_sym_exec] = ACTIONS(1669), - [anon_sym_type] = ACTIONS(1669), - [anon_sym_class] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_AT] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1671), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_lambda] = ACTIONS(1669), - [anon_sym_yield] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1671), - [anon_sym_None] = ACTIONS(1669), - [sym_integer] = ACTIONS(1669), - [sym_float] = ACTIONS(1671), - [anon_sym_await] = ACTIONS(1669), - [anon_sym_api] = ACTIONS(1669), - [sym_true] = ACTIONS(1669), - [sym_false] = ACTIONS(1669), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1669), - [anon_sym_include] = ACTIONS(1669), - [anon_sym_DEF] = ACTIONS(1669), - [anon_sym_cdef] = ACTIONS(1669), - [anon_sym_cpdef] = ACTIONS(1669), - [anon_sym_int] = ACTIONS(1669), - [anon_sym_double] = ACTIONS(1669), - [anon_sym_complex] = ACTIONS(1669), - [anon_sym_new] = ACTIONS(1669), - [anon_sym_signed] = ACTIONS(1669), - [anon_sym_unsigned] = ACTIONS(1669), - [anon_sym_char] = ACTIONS(1669), - [anon_sym_short] = ACTIONS(1669), - [anon_sym_long] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_volatile] = ACTIONS(1669), - [anon_sym_ctypedef] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_union] = ACTIONS(1669), - [anon_sym_enum] = ACTIONS(1669), - [anon_sym_cppclass] = ACTIONS(1669), - [anon_sym_fused] = ACTIONS(1669), - [anon_sym_public] = ACTIONS(1669), - [anon_sym_packed] = ACTIONS(1669), - [anon_sym_inline] = ACTIONS(1669), - [anon_sym_readonly] = ACTIONS(1669), - [anon_sym_sizeof] = ACTIONS(1669), - [sym__dedent] = ACTIONS(1671), - [sym_string_start] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_import] = ACTIONS(1659), + [anon_sym_cimport] = ACTIONS(1659), + [anon_sym_from] = ACTIONS(1659), + [anon_sym_LPAREN] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_print] = ACTIONS(1659), + [anon_sym_assert] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_del] = ACTIONS(1659), + [anon_sym_raise] = ACTIONS(1659), + [anon_sym_pass] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_match] = ACTIONS(1659), + [anon_sym_async] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_try] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1659), + [anon_sym_def] = ACTIONS(1659), + [anon_sym_global] = ACTIONS(1659), + [anon_sym_nonlocal] = ACTIONS(1659), + [anon_sym_exec] = ACTIONS(1659), + [anon_sym_type] = ACTIONS(1659), + [anon_sym_class] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_AT] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_not] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_TILDE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_lambda] = ACTIONS(1659), + [anon_sym_yield] = ACTIONS(1659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1661), + [anon_sym_None] = ACTIONS(1659), + [sym_integer] = ACTIONS(1659), + [sym_float] = ACTIONS(1661), + [anon_sym_await] = ACTIONS(1659), + [anon_sym_api] = ACTIONS(1659), + [sym_true] = ACTIONS(1659), + [sym_false] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1659), + [anon_sym_include] = ACTIONS(1659), + [anon_sym_DEF] = ACTIONS(1659), + [anon_sym_IF] = ACTIONS(1659), + [anon_sym_cdef] = ACTIONS(1659), + [anon_sym_cpdef] = ACTIONS(1659), + [anon_sym_int] = ACTIONS(1659), + [anon_sym_double] = ACTIONS(1659), + [anon_sym_complex] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1659), + [anon_sym_signed] = ACTIONS(1659), + [anon_sym_unsigned] = ACTIONS(1659), + [anon_sym_char] = ACTIONS(1659), + [anon_sym_short] = ACTIONS(1659), + [anon_sym_long] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [anon_sym_volatile] = ACTIONS(1659), + [anon_sym_ctypedef] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_enum] = ACTIONS(1659), + [anon_sym_cppclass] = ACTIONS(1659), + [anon_sym_fused] = ACTIONS(1659), + [anon_sym_public] = ACTIONS(1659), + [anon_sym_packed] = ACTIONS(1659), + [anon_sym_inline] = ACTIONS(1659), + [anon_sym_readonly] = ACTIONS(1659), + [anon_sym_sizeof] = ACTIONS(1659), + [sym__dedent] = ACTIONS(1661), + [sym_string_start] = ACTIONS(1661), }, [539] = { - [sym_identifier] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_import] = ACTIONS(1673), - [anon_sym_cimport] = ACTIONS(1673), - [anon_sym_from] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_print] = ACTIONS(1673), - [anon_sym_assert] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_del] = ACTIONS(1673), - [anon_sym_raise] = ACTIONS(1673), - [anon_sym_pass] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_match] = ACTIONS(1673), - [anon_sym_async] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_try] = ACTIONS(1673), - [anon_sym_with] = ACTIONS(1673), - [anon_sym_def] = ACTIONS(1673), - [anon_sym_global] = ACTIONS(1673), - [anon_sym_nonlocal] = ACTIONS(1673), - [anon_sym_exec] = ACTIONS(1673), - [anon_sym_type] = ACTIONS(1673), - [anon_sym_class] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_AT] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_not] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_LT] = ACTIONS(1675), - [anon_sym_lambda] = ACTIONS(1673), - [anon_sym_yield] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1675), - [anon_sym_None] = ACTIONS(1673), - [sym_integer] = ACTIONS(1673), - [sym_float] = ACTIONS(1675), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_api] = ACTIONS(1673), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1673), - [anon_sym_include] = ACTIONS(1673), - [anon_sym_DEF] = ACTIONS(1673), - [anon_sym_cdef] = ACTIONS(1673), - [anon_sym_cpdef] = ACTIONS(1673), - [anon_sym_int] = ACTIONS(1673), - [anon_sym_double] = ACTIONS(1673), - [anon_sym_complex] = ACTIONS(1673), - [anon_sym_new] = ACTIONS(1673), - [anon_sym_signed] = ACTIONS(1673), - [anon_sym_unsigned] = ACTIONS(1673), - [anon_sym_char] = ACTIONS(1673), - [anon_sym_short] = ACTIONS(1673), - [anon_sym_long] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_volatile] = ACTIONS(1673), - [anon_sym_ctypedef] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_enum] = ACTIONS(1673), - [anon_sym_cppclass] = ACTIONS(1673), - [anon_sym_fused] = ACTIONS(1673), - [anon_sym_public] = ACTIONS(1673), - [anon_sym_packed] = ACTIONS(1673), - [anon_sym_inline] = ACTIONS(1673), - [anon_sym_readonly] = ACTIONS(1673), - [anon_sym_sizeof] = ACTIONS(1673), - [sym__dedent] = ACTIONS(1675), - [sym_string_start] = ACTIONS(1675), + [sym_identifier] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_import] = ACTIONS(1663), + [anon_sym_cimport] = ACTIONS(1663), + [anon_sym_from] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1665), + [anon_sym_print] = ACTIONS(1663), + [anon_sym_assert] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_del] = ACTIONS(1663), + [anon_sym_raise] = ACTIONS(1663), + [anon_sym_pass] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_async] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_try] = ACTIONS(1663), + [anon_sym_with] = ACTIONS(1663), + [anon_sym_def] = ACTIONS(1663), + [anon_sym_global] = ACTIONS(1663), + [anon_sym_nonlocal] = ACTIONS(1663), + [anon_sym_exec] = ACTIONS(1663), + [anon_sym_type] = ACTIONS(1663), + [anon_sym_class] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1665), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_PLUS] = ACTIONS(1665), + [anon_sym_not] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_lambda] = ACTIONS(1663), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1665), + [anon_sym_None] = ACTIONS(1663), + [sym_integer] = ACTIONS(1663), + [sym_float] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1663), + [anon_sym_api] = ACTIONS(1663), + [sym_true] = ACTIONS(1663), + [sym_false] = ACTIONS(1663), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1663), + [anon_sym_include] = ACTIONS(1663), + [anon_sym_DEF] = ACTIONS(1663), + [anon_sym_IF] = ACTIONS(1663), + [anon_sym_cdef] = ACTIONS(1663), + [anon_sym_cpdef] = ACTIONS(1663), + [anon_sym_int] = ACTIONS(1663), + [anon_sym_double] = ACTIONS(1663), + [anon_sym_complex] = ACTIONS(1663), + [anon_sym_new] = ACTIONS(1663), + [anon_sym_signed] = ACTIONS(1663), + [anon_sym_unsigned] = ACTIONS(1663), + [anon_sym_char] = ACTIONS(1663), + [anon_sym_short] = ACTIONS(1663), + [anon_sym_long] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [anon_sym_volatile] = ACTIONS(1663), + [anon_sym_ctypedef] = ACTIONS(1663), + [anon_sym_struct] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_enum] = ACTIONS(1663), + [anon_sym_cppclass] = ACTIONS(1663), + [anon_sym_fused] = ACTIONS(1663), + [anon_sym_public] = ACTIONS(1663), + [anon_sym_packed] = ACTIONS(1663), + [anon_sym_inline] = ACTIONS(1663), + [anon_sym_readonly] = ACTIONS(1663), + [anon_sym_sizeof] = ACTIONS(1663), + [sym__dedent] = ACTIONS(1665), + [sym_string_start] = ACTIONS(1665), }, [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), + [sym_identifier] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1669), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_cimport] = ACTIONS(1667), + [anon_sym_from] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_print] = ACTIONS(1667), + [anon_sym_assert] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_del] = ACTIONS(1667), + [anon_sym_raise] = ACTIONS(1667), + [anon_sym_pass] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_match] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_def] = ACTIONS(1667), + [anon_sym_global] = ACTIONS(1667), + [anon_sym_nonlocal] = ACTIONS(1667), + [anon_sym_exec] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_AT] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_not] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_TILDE] = ACTIONS(1669), + [anon_sym_LT] = ACTIONS(1669), + [anon_sym_lambda] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1669), + [anon_sym_None] = ACTIONS(1667), + [sym_integer] = ACTIONS(1667), + [sym_float] = ACTIONS(1669), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_api] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1667), + [anon_sym_include] = ACTIONS(1667), + [anon_sym_DEF] = ACTIONS(1667), + [anon_sym_IF] = ACTIONS(1667), + [anon_sym_cdef] = ACTIONS(1667), + [anon_sym_cpdef] = ACTIONS(1667), + [anon_sym_int] = ACTIONS(1667), + [anon_sym_double] = ACTIONS(1667), + [anon_sym_complex] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_signed] = ACTIONS(1667), + [anon_sym_unsigned] = ACTIONS(1667), + [anon_sym_char] = ACTIONS(1667), + [anon_sym_short] = ACTIONS(1667), + [anon_sym_long] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_volatile] = ACTIONS(1667), + [anon_sym_ctypedef] = ACTIONS(1667), + [anon_sym_struct] = ACTIONS(1667), + [anon_sym_union] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [anon_sym_cppclass] = ACTIONS(1667), + [anon_sym_fused] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_packed] = ACTIONS(1667), + [anon_sym_inline] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_sizeof] = ACTIONS(1667), + [sym__dedent] = ACTIONS(1669), + [sym_string_start] = ACTIONS(1669), }, [541] = { - [sym_identifier] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(1681), - [anon_sym_cimport] = ACTIONS(1681), - [anon_sym_from] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1683), - [anon_sym_print] = ACTIONS(1681), - [anon_sym_assert] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_del] = ACTIONS(1681), - [anon_sym_raise] = ACTIONS(1681), - [anon_sym_pass] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_async] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_with] = ACTIONS(1681), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_global] = ACTIONS(1681), - [anon_sym_nonlocal] = ACTIONS(1681), - [anon_sym_exec] = ACTIONS(1681), - [anon_sym_type] = ACTIONS(1681), - [anon_sym_class] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_AT] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_not] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1683), - [anon_sym_lambda] = ACTIONS(1681), - [anon_sym_yield] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1683), - [anon_sym_None] = ACTIONS(1681), - [sym_integer] = ACTIONS(1681), - [sym_float] = ACTIONS(1683), - [anon_sym_await] = ACTIONS(1681), - [anon_sym_api] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1681), - [anon_sym_include] = ACTIONS(1681), - [anon_sym_DEF] = ACTIONS(1681), - [anon_sym_cdef] = ACTIONS(1681), - [anon_sym_cpdef] = ACTIONS(1681), - [anon_sym_int] = ACTIONS(1681), - [anon_sym_double] = ACTIONS(1681), - [anon_sym_complex] = ACTIONS(1681), - [anon_sym_new] = ACTIONS(1681), - [anon_sym_signed] = ACTIONS(1681), - [anon_sym_unsigned] = ACTIONS(1681), - [anon_sym_char] = ACTIONS(1681), - [anon_sym_short] = ACTIONS(1681), - [anon_sym_long] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_volatile] = ACTIONS(1681), - [anon_sym_ctypedef] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_union] = ACTIONS(1681), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_cppclass] = ACTIONS(1681), - [anon_sym_fused] = ACTIONS(1681), - [anon_sym_public] = ACTIONS(1681), - [anon_sym_packed] = ACTIONS(1681), - [anon_sym_inline] = ACTIONS(1681), - [anon_sym_readonly] = ACTIONS(1681), - [anon_sym_sizeof] = ACTIONS(1681), - [sym__dedent] = ACTIONS(1683), - [sym_string_start] = ACTIONS(1683), + [sym_identifier] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_import] = ACTIONS(1671), + [anon_sym_cimport] = ACTIONS(1671), + [anon_sym_from] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_print] = ACTIONS(1671), + [anon_sym_assert] = ACTIONS(1671), + [anon_sym_return] = ACTIONS(1671), + [anon_sym_del] = ACTIONS(1671), + [anon_sym_raise] = ACTIONS(1671), + [anon_sym_pass] = ACTIONS(1671), + [anon_sym_break] = ACTIONS(1671), + [anon_sym_continue] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1671), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_async] = ACTIONS(1671), + [anon_sym_for] = ACTIONS(1671), + [anon_sym_while] = ACTIONS(1671), + [anon_sym_try] = ACTIONS(1671), + [anon_sym_with] = ACTIONS(1671), + [anon_sym_def] = ACTIONS(1671), + [anon_sym_global] = ACTIONS(1671), + [anon_sym_nonlocal] = ACTIONS(1671), + [anon_sym_exec] = ACTIONS(1671), + [anon_sym_type] = ACTIONS(1671), + [anon_sym_class] = ACTIONS(1671), + [anon_sym_LBRACK] = ACTIONS(1673), + [anon_sym_AT] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_not] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_lambda] = ACTIONS(1671), + [anon_sym_yield] = ACTIONS(1671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1673), + [anon_sym_None] = ACTIONS(1671), + [sym_integer] = ACTIONS(1671), + [sym_float] = ACTIONS(1673), + [anon_sym_await] = ACTIONS(1671), + [anon_sym_api] = ACTIONS(1671), + [sym_true] = ACTIONS(1671), + [sym_false] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1671), + [anon_sym_include] = ACTIONS(1671), + [anon_sym_DEF] = ACTIONS(1671), + [anon_sym_IF] = ACTIONS(1671), + [anon_sym_cdef] = ACTIONS(1671), + [anon_sym_cpdef] = ACTIONS(1671), + [anon_sym_int] = ACTIONS(1671), + [anon_sym_double] = ACTIONS(1671), + [anon_sym_complex] = ACTIONS(1671), + [anon_sym_new] = ACTIONS(1671), + [anon_sym_signed] = ACTIONS(1671), + [anon_sym_unsigned] = ACTIONS(1671), + [anon_sym_char] = ACTIONS(1671), + [anon_sym_short] = ACTIONS(1671), + [anon_sym_long] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_volatile] = ACTIONS(1671), + [anon_sym_ctypedef] = ACTIONS(1671), + [anon_sym_struct] = ACTIONS(1671), + [anon_sym_union] = ACTIONS(1671), + [anon_sym_enum] = ACTIONS(1671), + [anon_sym_cppclass] = ACTIONS(1671), + [anon_sym_fused] = ACTIONS(1671), + [anon_sym_public] = ACTIONS(1671), + [anon_sym_packed] = ACTIONS(1671), + [anon_sym_inline] = ACTIONS(1671), + [anon_sym_readonly] = ACTIONS(1671), + [anon_sym_sizeof] = ACTIONS(1671), + [sym__dedent] = ACTIONS(1673), + [sym_string_start] = ACTIONS(1673), }, [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), + [sym_identifier] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1677), + [anon_sym_import] = ACTIONS(1675), + [anon_sym_cimport] = ACTIONS(1675), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_STAR] = ACTIONS(1677), + [anon_sym_print] = ACTIONS(1675), + [anon_sym_assert] = ACTIONS(1675), + [anon_sym_return] = ACTIONS(1675), + [anon_sym_del] = ACTIONS(1675), + [anon_sym_raise] = ACTIONS(1675), + [anon_sym_pass] = ACTIONS(1675), + [anon_sym_break] = ACTIONS(1675), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_match] = ACTIONS(1675), + [anon_sym_async] = ACTIONS(1675), + [anon_sym_for] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1675), + [anon_sym_with] = ACTIONS(1675), + [anon_sym_def] = ACTIONS(1675), + [anon_sym_global] = ACTIONS(1675), + [anon_sym_nonlocal] = ACTIONS(1675), + [anon_sym_exec] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_class] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1677), + [anon_sym_AT] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_not] = ACTIONS(1675), + [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_TILDE] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(1677), + [anon_sym_lambda] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1677), + [anon_sym_None] = ACTIONS(1675), + [sym_integer] = ACTIONS(1675), + [sym_float] = ACTIONS(1677), + [anon_sym_await] = ACTIONS(1675), + [anon_sym_api] = ACTIONS(1675), + [sym_true] = ACTIONS(1675), + [sym_false] = ACTIONS(1675), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_include] = ACTIONS(1675), + [anon_sym_DEF] = ACTIONS(1675), + [anon_sym_IF] = ACTIONS(1675), + [anon_sym_cdef] = ACTIONS(1675), + [anon_sym_cpdef] = ACTIONS(1675), + [anon_sym_int] = ACTIONS(1675), + [anon_sym_double] = ACTIONS(1675), + [anon_sym_complex] = ACTIONS(1675), + [anon_sym_new] = ACTIONS(1675), + [anon_sym_signed] = ACTIONS(1675), + [anon_sym_unsigned] = ACTIONS(1675), + [anon_sym_char] = ACTIONS(1675), + [anon_sym_short] = ACTIONS(1675), + [anon_sym_long] = ACTIONS(1675), + [anon_sym_const] = ACTIONS(1675), + [anon_sym_volatile] = ACTIONS(1675), + [anon_sym_ctypedef] = ACTIONS(1675), + [anon_sym_struct] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_enum] = ACTIONS(1675), + [anon_sym_cppclass] = ACTIONS(1675), + [anon_sym_fused] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_packed] = ACTIONS(1675), + [anon_sym_inline] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_sizeof] = ACTIONS(1675), + [sym__dedent] = ACTIONS(1677), + [sym_string_start] = ACTIONS(1677), }, [543] = { - [sym_identifier] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_cimport] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_print] = ACTIONS(1689), - [anon_sym_assert] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_del] = ACTIONS(1689), - [anon_sym_raise] = ACTIONS(1689), - [anon_sym_pass] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_match] = ACTIONS(1689), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(1689), - [anon_sym_with] = ACTIONS(1689), - [anon_sym_def] = ACTIONS(1689), - [anon_sym_global] = ACTIONS(1689), - [anon_sym_nonlocal] = ACTIONS(1689), - [anon_sym_exec] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_class] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_AT] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_not] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_lambda] = ACTIONS(1689), - [anon_sym_yield] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1691), - [anon_sym_None] = ACTIONS(1689), - [sym_integer] = ACTIONS(1689), - [sym_float] = ACTIONS(1691), - [anon_sym_await] = ACTIONS(1689), - [anon_sym_api] = ACTIONS(1689), - [sym_true] = ACTIONS(1689), - [sym_false] = ACTIONS(1689), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1689), - [anon_sym_include] = ACTIONS(1689), - [anon_sym_DEF] = ACTIONS(1689), - [anon_sym_cdef] = ACTIONS(1689), - [anon_sym_cpdef] = ACTIONS(1689), - [anon_sym_int] = ACTIONS(1689), - [anon_sym_double] = ACTIONS(1689), - [anon_sym_complex] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1689), - [anon_sym_signed] = ACTIONS(1689), - [anon_sym_unsigned] = ACTIONS(1689), - [anon_sym_char] = ACTIONS(1689), - [anon_sym_short] = ACTIONS(1689), - [anon_sym_long] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_volatile] = ACTIONS(1689), - [anon_sym_ctypedef] = ACTIONS(1689), - [anon_sym_struct] = ACTIONS(1689), - [anon_sym_union] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [anon_sym_cppclass] = ACTIONS(1689), - [anon_sym_fused] = ACTIONS(1689), - [anon_sym_public] = ACTIONS(1689), - [anon_sym_packed] = ACTIONS(1689), - [anon_sym_inline] = ACTIONS(1689), - [anon_sym_readonly] = ACTIONS(1689), - [anon_sym_sizeof] = ACTIONS(1689), - [sym__dedent] = ACTIONS(1691), - [sym_string_start] = ACTIONS(1691), + [sym_identifier] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_import] = ACTIONS(1679), + [anon_sym_cimport] = ACTIONS(1679), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1681), + [anon_sym_STAR] = ACTIONS(1681), + [anon_sym_print] = ACTIONS(1679), + [anon_sym_assert] = ACTIONS(1679), + [anon_sym_return] = ACTIONS(1679), + [anon_sym_del] = ACTIONS(1679), + [anon_sym_raise] = ACTIONS(1679), + [anon_sym_pass] = ACTIONS(1679), + [anon_sym_break] = ACTIONS(1679), + [anon_sym_continue] = ACTIONS(1679), + [anon_sym_if] = ACTIONS(1679), + [anon_sym_match] = ACTIONS(1679), + [anon_sym_async] = ACTIONS(1679), + [anon_sym_for] = ACTIONS(1679), + [anon_sym_while] = ACTIONS(1679), + [anon_sym_try] = ACTIONS(1679), + [anon_sym_with] = ACTIONS(1679), + [anon_sym_def] = ACTIONS(1679), + [anon_sym_global] = ACTIONS(1679), + [anon_sym_nonlocal] = ACTIONS(1679), + [anon_sym_exec] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_class] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1681), + [anon_sym_AT] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_not] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_TILDE] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(1681), + [anon_sym_lambda] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1681), + [anon_sym_None] = ACTIONS(1679), + [sym_integer] = ACTIONS(1679), + [sym_float] = ACTIONS(1681), + [anon_sym_await] = ACTIONS(1679), + [anon_sym_api] = ACTIONS(1679), + [sym_true] = ACTIONS(1679), + [sym_false] = ACTIONS(1679), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_include] = ACTIONS(1679), + [anon_sym_DEF] = ACTIONS(1679), + [anon_sym_IF] = ACTIONS(1679), + [anon_sym_cdef] = ACTIONS(1679), + [anon_sym_cpdef] = ACTIONS(1679), + [anon_sym_int] = ACTIONS(1679), + [anon_sym_double] = ACTIONS(1679), + [anon_sym_complex] = ACTIONS(1679), + [anon_sym_new] = ACTIONS(1679), + [anon_sym_signed] = ACTIONS(1679), + [anon_sym_unsigned] = ACTIONS(1679), + [anon_sym_char] = ACTIONS(1679), + [anon_sym_short] = ACTIONS(1679), + [anon_sym_long] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1679), + [anon_sym_volatile] = ACTIONS(1679), + [anon_sym_ctypedef] = ACTIONS(1679), + [anon_sym_struct] = ACTIONS(1679), + [anon_sym_union] = ACTIONS(1679), + [anon_sym_enum] = ACTIONS(1679), + [anon_sym_cppclass] = ACTIONS(1679), + [anon_sym_fused] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_packed] = ACTIONS(1679), + [anon_sym_inline] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_sizeof] = ACTIONS(1679), + [sym__dedent] = ACTIONS(1681), + [sym_string_start] = ACTIONS(1681), }, [544] = { - [sym_identifier] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_import] = ACTIONS(1693), - [anon_sym_cimport] = ACTIONS(1693), - [anon_sym_from] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_print] = ACTIONS(1693), - [anon_sym_assert] = ACTIONS(1693), - [anon_sym_return] = ACTIONS(1693), - [anon_sym_del] = ACTIONS(1693), - [anon_sym_raise] = ACTIONS(1693), - [anon_sym_pass] = ACTIONS(1693), - [anon_sym_break] = ACTIONS(1693), - [anon_sym_continue] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(1693), - [anon_sym_match] = ACTIONS(1693), - [anon_sym_async] = ACTIONS(1693), - [anon_sym_for] = ACTIONS(1693), - [anon_sym_while] = ACTIONS(1693), - [anon_sym_try] = ACTIONS(1693), - [anon_sym_with] = ACTIONS(1693), - [anon_sym_def] = ACTIONS(1693), - [anon_sym_global] = ACTIONS(1693), - [anon_sym_nonlocal] = ACTIONS(1693), - [anon_sym_exec] = ACTIONS(1693), - [anon_sym_type] = ACTIONS(1693), - [anon_sym_class] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_AT] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1695), - [anon_sym_not] = ACTIONS(1693), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_TILDE] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_lambda] = ACTIONS(1693), - [anon_sym_yield] = ACTIONS(1693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1695), - [anon_sym_None] = ACTIONS(1693), - [sym_integer] = ACTIONS(1693), - [sym_float] = ACTIONS(1695), - [anon_sym_await] = ACTIONS(1693), - [anon_sym_api] = ACTIONS(1693), - [sym_true] = ACTIONS(1693), - [sym_false] = ACTIONS(1693), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1693), - [anon_sym_include] = ACTIONS(1693), - [anon_sym_DEF] = ACTIONS(1693), - [anon_sym_cdef] = ACTIONS(1693), - [anon_sym_cpdef] = ACTIONS(1693), - [anon_sym_int] = ACTIONS(1693), - [anon_sym_double] = ACTIONS(1693), - [anon_sym_complex] = ACTIONS(1693), - [anon_sym_new] = ACTIONS(1693), - [anon_sym_signed] = ACTIONS(1693), - [anon_sym_unsigned] = ACTIONS(1693), - [anon_sym_char] = ACTIONS(1693), - [anon_sym_short] = ACTIONS(1693), - [anon_sym_long] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1693), - [anon_sym_volatile] = ACTIONS(1693), - [anon_sym_ctypedef] = ACTIONS(1693), - [anon_sym_struct] = ACTIONS(1693), - [anon_sym_union] = ACTIONS(1693), - [anon_sym_enum] = ACTIONS(1693), - [anon_sym_cppclass] = ACTIONS(1693), - [anon_sym_fused] = ACTIONS(1693), - [anon_sym_public] = ACTIONS(1693), - [anon_sym_packed] = ACTIONS(1693), - [anon_sym_inline] = ACTIONS(1693), - [anon_sym_readonly] = ACTIONS(1693), - [anon_sym_sizeof] = ACTIONS(1693), - [sym__dedent] = ACTIONS(1695), - [sym_string_start] = ACTIONS(1695), + [sym_identifier] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_import] = ACTIONS(1683), + [anon_sym_cimport] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_print] = ACTIONS(1683), + [anon_sym_assert] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1683), + [anon_sym_del] = ACTIONS(1683), + [anon_sym_raise] = ACTIONS(1683), + [anon_sym_pass] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1683), + [anon_sym_match] = ACTIONS(1683), + [anon_sym_async] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1683), + [anon_sym_try] = ACTIONS(1683), + [anon_sym_with] = ACTIONS(1683), + [anon_sym_def] = ACTIONS(1683), + [anon_sym_global] = ACTIONS(1683), + [anon_sym_nonlocal] = ACTIONS(1683), + [anon_sym_exec] = ACTIONS(1683), + [anon_sym_type] = ACTIONS(1683), + [anon_sym_class] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1685), + [anon_sym_AT] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_not] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_lambda] = ACTIONS(1683), + [anon_sym_yield] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1685), + [anon_sym_None] = ACTIONS(1683), + [sym_integer] = ACTIONS(1683), + [sym_float] = ACTIONS(1685), + [anon_sym_await] = ACTIONS(1683), + [anon_sym_api] = ACTIONS(1683), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1683), + [anon_sym_include] = ACTIONS(1683), + [anon_sym_DEF] = ACTIONS(1683), + [anon_sym_IF] = ACTIONS(1683), + [anon_sym_cdef] = ACTIONS(1683), + [anon_sym_cpdef] = ACTIONS(1683), + [anon_sym_int] = ACTIONS(1683), + [anon_sym_double] = ACTIONS(1683), + [anon_sym_complex] = ACTIONS(1683), + [anon_sym_new] = ACTIONS(1683), + [anon_sym_signed] = ACTIONS(1683), + [anon_sym_unsigned] = ACTIONS(1683), + [anon_sym_char] = ACTIONS(1683), + [anon_sym_short] = ACTIONS(1683), + [anon_sym_long] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_volatile] = ACTIONS(1683), + [anon_sym_ctypedef] = ACTIONS(1683), + [anon_sym_struct] = ACTIONS(1683), + [anon_sym_union] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1683), + [anon_sym_cppclass] = ACTIONS(1683), + [anon_sym_fused] = ACTIONS(1683), + [anon_sym_public] = ACTIONS(1683), + [anon_sym_packed] = ACTIONS(1683), + [anon_sym_inline] = ACTIONS(1683), + [anon_sym_readonly] = ACTIONS(1683), + [anon_sym_sizeof] = ACTIONS(1683), + [sym__dedent] = ACTIONS(1685), + [sym_string_start] = ACTIONS(1685), }, [545] = { - [sym_identifier] = ACTIONS(1697), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_import] = ACTIONS(1697), - [anon_sym_cimport] = ACTIONS(1697), - [anon_sym_from] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_print] = ACTIONS(1697), - [anon_sym_assert] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_del] = ACTIONS(1697), - [anon_sym_raise] = ACTIONS(1697), - [anon_sym_pass] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_match] = ACTIONS(1697), - [anon_sym_async] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_try] = ACTIONS(1697), - [anon_sym_with] = ACTIONS(1697), - [anon_sym_def] = ACTIONS(1697), - [anon_sym_global] = ACTIONS(1697), - [anon_sym_nonlocal] = ACTIONS(1697), - [anon_sym_exec] = ACTIONS(1697), - [anon_sym_type] = ACTIONS(1697), - [anon_sym_class] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_not] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_lambda] = ACTIONS(1697), - [anon_sym_yield] = ACTIONS(1697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1699), - [anon_sym_None] = ACTIONS(1697), - [sym_integer] = ACTIONS(1697), - [sym_float] = ACTIONS(1699), - [anon_sym_await] = ACTIONS(1697), - [anon_sym_api] = ACTIONS(1697), - [sym_true] = ACTIONS(1697), - [sym_false] = ACTIONS(1697), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1697), - [anon_sym_include] = ACTIONS(1697), - [anon_sym_DEF] = ACTIONS(1697), - [anon_sym_cdef] = ACTIONS(1697), - [anon_sym_cpdef] = ACTIONS(1697), - [anon_sym_int] = ACTIONS(1697), - [anon_sym_double] = ACTIONS(1697), - [anon_sym_complex] = ACTIONS(1697), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1697), - [anon_sym_unsigned] = ACTIONS(1697), - [anon_sym_char] = ACTIONS(1697), - [anon_sym_short] = ACTIONS(1697), - [anon_sym_long] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_ctypedef] = ACTIONS(1697), - [anon_sym_struct] = ACTIONS(1697), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_cppclass] = ACTIONS(1697), - [anon_sym_fused] = ACTIONS(1697), - [anon_sym_public] = ACTIONS(1697), - [anon_sym_packed] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [anon_sym_readonly] = ACTIONS(1697), - [anon_sym_sizeof] = ACTIONS(1697), - [sym__dedent] = ACTIONS(1699), - [sym_string_start] = ACTIONS(1699), + [sym_identifier] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_import] = ACTIONS(1687), + [anon_sym_cimport] = ACTIONS(1687), + [anon_sym_from] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_print] = ACTIONS(1687), + [anon_sym_assert] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_del] = ACTIONS(1687), + [anon_sym_raise] = ACTIONS(1687), + [anon_sym_pass] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_match] = ACTIONS(1687), + [anon_sym_async] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1687), + [anon_sym_with] = ACTIONS(1687), + [anon_sym_def] = ACTIONS(1687), + [anon_sym_global] = ACTIONS(1687), + [anon_sym_nonlocal] = ACTIONS(1687), + [anon_sym_exec] = ACTIONS(1687), + [anon_sym_type] = ACTIONS(1687), + [anon_sym_class] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_AT] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_not] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_lambda] = ACTIONS(1687), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1689), + [anon_sym_None] = ACTIONS(1687), + [sym_integer] = ACTIONS(1687), + [sym_float] = ACTIONS(1689), + [anon_sym_await] = ACTIONS(1687), + [anon_sym_api] = ACTIONS(1687), + [sym_true] = ACTIONS(1687), + [sym_false] = ACTIONS(1687), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1687), + [anon_sym_include] = ACTIONS(1687), + [anon_sym_DEF] = ACTIONS(1687), + [anon_sym_IF] = ACTIONS(1687), + [anon_sym_cdef] = ACTIONS(1687), + [anon_sym_cpdef] = ACTIONS(1687), + [anon_sym_int] = ACTIONS(1687), + [anon_sym_double] = ACTIONS(1687), + [anon_sym_complex] = ACTIONS(1687), + [anon_sym_new] = ACTIONS(1687), + [anon_sym_signed] = ACTIONS(1687), + [anon_sym_unsigned] = ACTIONS(1687), + [anon_sym_char] = ACTIONS(1687), + [anon_sym_short] = ACTIONS(1687), + [anon_sym_long] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [anon_sym_volatile] = ACTIONS(1687), + [anon_sym_ctypedef] = ACTIONS(1687), + [anon_sym_struct] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_enum] = ACTIONS(1687), + [anon_sym_cppclass] = ACTIONS(1687), + [anon_sym_fused] = ACTIONS(1687), + [anon_sym_public] = ACTIONS(1687), + [anon_sym_packed] = ACTIONS(1687), + [anon_sym_inline] = ACTIONS(1687), + [anon_sym_readonly] = ACTIONS(1687), + [anon_sym_sizeof] = ACTIONS(1687), + [sym__dedent] = ACTIONS(1689), + [sym_string_start] = ACTIONS(1689), }, [546] = { - [sym_identifier] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_import] = ACTIONS(1701), - [anon_sym_cimport] = ACTIONS(1701), - [anon_sym_from] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_print] = ACTIONS(1701), - [anon_sym_assert] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_del] = ACTIONS(1701), - [anon_sym_raise] = ACTIONS(1701), - [anon_sym_pass] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_async] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_try] = ACTIONS(1701), - [anon_sym_with] = ACTIONS(1701), - [anon_sym_def] = ACTIONS(1701), - [anon_sym_global] = ACTIONS(1701), - [anon_sym_nonlocal] = ACTIONS(1701), - [anon_sym_exec] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_AT] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_not] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_lambda] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1703), - [anon_sym_None] = ACTIONS(1701), - [sym_integer] = ACTIONS(1701), - [sym_float] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1701), - [anon_sym_api] = ACTIONS(1701), - [sym_true] = ACTIONS(1701), - [sym_false] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1701), - [anon_sym_include] = ACTIONS(1701), - [anon_sym_DEF] = ACTIONS(1701), - [anon_sym_cdef] = ACTIONS(1701), - [anon_sym_cpdef] = ACTIONS(1701), - [anon_sym_int] = ACTIONS(1701), - [anon_sym_double] = ACTIONS(1701), - [anon_sym_complex] = ACTIONS(1701), - [anon_sym_new] = ACTIONS(1701), - [anon_sym_signed] = ACTIONS(1701), - [anon_sym_unsigned] = ACTIONS(1701), - [anon_sym_char] = ACTIONS(1701), - [anon_sym_short] = ACTIONS(1701), - [anon_sym_long] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_volatile] = ACTIONS(1701), - [anon_sym_ctypedef] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [anon_sym_cppclass] = ACTIONS(1701), - [anon_sym_fused] = ACTIONS(1701), - [anon_sym_public] = ACTIONS(1701), - [anon_sym_packed] = ACTIONS(1701), - [anon_sym_inline] = ACTIONS(1701), - [anon_sym_readonly] = ACTIONS(1701), - [anon_sym_sizeof] = ACTIONS(1701), - [sym__dedent] = ACTIONS(1703), - [sym_string_start] = ACTIONS(1703), + [sym_identifier] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_import] = ACTIONS(1691), + [anon_sym_cimport] = ACTIONS(1691), + [anon_sym_from] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1693), + [anon_sym_print] = ACTIONS(1691), + [anon_sym_assert] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_del] = ACTIONS(1691), + [anon_sym_raise] = ACTIONS(1691), + [anon_sym_pass] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_match] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1691), + [anon_sym_def] = ACTIONS(1691), + [anon_sym_global] = ACTIONS(1691), + [anon_sym_nonlocal] = ACTIONS(1691), + [anon_sym_exec] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_class] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1693), + [anon_sym_AT] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1693), + [anon_sym_not] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1693), + [anon_sym_TILDE] = ACTIONS(1693), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_lambda] = ACTIONS(1691), + [anon_sym_yield] = ACTIONS(1691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1693), + [anon_sym_None] = ACTIONS(1691), + [sym_integer] = ACTIONS(1691), + [sym_float] = ACTIONS(1693), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_api] = ACTIONS(1691), + [sym_true] = ACTIONS(1691), + [sym_false] = ACTIONS(1691), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1691), + [anon_sym_include] = ACTIONS(1691), + [anon_sym_DEF] = ACTIONS(1691), + [anon_sym_IF] = ACTIONS(1691), + [anon_sym_cdef] = ACTIONS(1691), + [anon_sym_cpdef] = ACTIONS(1691), + [anon_sym_int] = ACTIONS(1691), + [anon_sym_double] = ACTIONS(1691), + [anon_sym_complex] = ACTIONS(1691), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_signed] = ACTIONS(1691), + [anon_sym_unsigned] = ACTIONS(1691), + [anon_sym_char] = ACTIONS(1691), + [anon_sym_short] = ACTIONS(1691), + [anon_sym_long] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_volatile] = ACTIONS(1691), + [anon_sym_ctypedef] = ACTIONS(1691), + [anon_sym_struct] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [anon_sym_cppclass] = ACTIONS(1691), + [anon_sym_fused] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_packed] = ACTIONS(1691), + [anon_sym_inline] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_sizeof] = ACTIONS(1691), + [sym__dedent] = ACTIONS(1693), + [sym_string_start] = ACTIONS(1693), }, [547] = { - [sym_identifier] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_import] = ACTIONS(1705), - [anon_sym_cimport] = ACTIONS(1705), - [anon_sym_from] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_print] = ACTIONS(1705), - [anon_sym_assert] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_del] = ACTIONS(1705), - [anon_sym_raise] = ACTIONS(1705), - [anon_sym_pass] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_with] = ACTIONS(1705), - [anon_sym_def] = ACTIONS(1705), - [anon_sym_global] = ACTIONS(1705), - [anon_sym_nonlocal] = ACTIONS(1705), - [anon_sym_exec] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_class] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_AT] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_not] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_lambda] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1707), - [anon_sym_None] = ACTIONS(1705), - [sym_integer] = ACTIONS(1705), - [sym_float] = ACTIONS(1707), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_api] = ACTIONS(1705), - [sym_true] = ACTIONS(1705), - [sym_false] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1705), - [anon_sym_include] = ACTIONS(1705), - [anon_sym_DEF] = ACTIONS(1705), - [anon_sym_cdef] = ACTIONS(1705), - [anon_sym_cpdef] = ACTIONS(1705), - [anon_sym_int] = ACTIONS(1705), - [anon_sym_double] = ACTIONS(1705), - [anon_sym_complex] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_signed] = ACTIONS(1705), - [anon_sym_unsigned] = ACTIONS(1705), - [anon_sym_char] = ACTIONS(1705), - [anon_sym_short] = ACTIONS(1705), - [anon_sym_long] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_volatile] = ACTIONS(1705), - [anon_sym_ctypedef] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1705), - [anon_sym_union] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [anon_sym_cppclass] = ACTIONS(1705), - [anon_sym_fused] = ACTIONS(1705), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_packed] = ACTIONS(1705), - [anon_sym_inline] = ACTIONS(1705), - [anon_sym_readonly] = ACTIONS(1705), - [anon_sym_sizeof] = ACTIONS(1705), - [sym__dedent] = ACTIONS(1707), - [sym_string_start] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1695), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_import] = ACTIONS(1695), + [anon_sym_cimport] = ACTIONS(1695), + [anon_sym_from] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1697), + [anon_sym_print] = ACTIONS(1695), + [anon_sym_assert] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_del] = ACTIONS(1695), + [anon_sym_raise] = ACTIONS(1695), + [anon_sym_pass] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_match] = ACTIONS(1695), + [anon_sym_async] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1695), + [anon_sym_with] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1695), + [anon_sym_global] = ACTIONS(1695), + [anon_sym_nonlocal] = ACTIONS(1695), + [anon_sym_exec] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_class] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_AT] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(1695), + [anon_sym_AMP] = ACTIONS(1697), + [anon_sym_TILDE] = ACTIONS(1697), + [anon_sym_LT] = ACTIONS(1697), + [anon_sym_lambda] = ACTIONS(1695), + [anon_sym_yield] = ACTIONS(1695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1697), + [anon_sym_None] = ACTIONS(1695), + [sym_integer] = ACTIONS(1695), + [sym_float] = ACTIONS(1697), + [anon_sym_await] = ACTIONS(1695), + [anon_sym_api] = ACTIONS(1695), + [sym_true] = ACTIONS(1695), + [sym_false] = ACTIONS(1695), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1695), + [anon_sym_include] = ACTIONS(1695), + [anon_sym_DEF] = ACTIONS(1695), + [anon_sym_IF] = ACTIONS(1695), + [anon_sym_cdef] = ACTIONS(1695), + [anon_sym_cpdef] = ACTIONS(1695), + [anon_sym_int] = ACTIONS(1695), + [anon_sym_double] = ACTIONS(1695), + [anon_sym_complex] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1695), + [anon_sym_signed] = ACTIONS(1695), + [anon_sym_unsigned] = ACTIONS(1695), + [anon_sym_char] = ACTIONS(1695), + [anon_sym_short] = ACTIONS(1695), + [anon_sym_long] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_volatile] = ACTIONS(1695), + [anon_sym_ctypedef] = ACTIONS(1695), + [anon_sym_struct] = ACTIONS(1695), + [anon_sym_union] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [anon_sym_cppclass] = ACTIONS(1695), + [anon_sym_fused] = ACTIONS(1695), + [anon_sym_public] = ACTIONS(1695), + [anon_sym_packed] = ACTIONS(1695), + [anon_sym_inline] = ACTIONS(1695), + [anon_sym_readonly] = ACTIONS(1695), + [anon_sym_sizeof] = ACTIONS(1695), + [sym__dedent] = ACTIONS(1697), + [sym_string_start] = ACTIONS(1697), }, [548] = { - [sym_identifier] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_import] = ACTIONS(1709), - [anon_sym_cimport] = ACTIONS(1709), - [anon_sym_from] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_print] = ACTIONS(1709), - [anon_sym_assert] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_del] = ACTIONS(1709), - [anon_sym_raise] = ACTIONS(1709), - [anon_sym_pass] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_async] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1709), - [anon_sym_with] = ACTIONS(1709), - [anon_sym_def] = ACTIONS(1709), - [anon_sym_global] = ACTIONS(1709), - [anon_sym_nonlocal] = ACTIONS(1709), - [anon_sym_exec] = ACTIONS(1709), - [anon_sym_type] = ACTIONS(1709), - [anon_sym_class] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_AT] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_not] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_lambda] = ACTIONS(1709), - [anon_sym_yield] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1711), - [anon_sym_None] = ACTIONS(1709), - [sym_integer] = ACTIONS(1709), - [sym_float] = ACTIONS(1711), - [anon_sym_await] = ACTIONS(1709), - [anon_sym_api] = ACTIONS(1709), - [sym_true] = ACTIONS(1709), - [sym_false] = ACTIONS(1709), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1709), - [anon_sym_include] = ACTIONS(1709), - [anon_sym_DEF] = ACTIONS(1709), - [anon_sym_cdef] = ACTIONS(1709), - [anon_sym_cpdef] = ACTIONS(1709), - [anon_sym_int] = ACTIONS(1709), - [anon_sym_double] = ACTIONS(1709), - [anon_sym_complex] = ACTIONS(1709), - [anon_sym_new] = ACTIONS(1709), - [anon_sym_signed] = ACTIONS(1709), - [anon_sym_unsigned] = ACTIONS(1709), - [anon_sym_char] = ACTIONS(1709), - [anon_sym_short] = ACTIONS(1709), - [anon_sym_long] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [anon_sym_volatile] = ACTIONS(1709), - [anon_sym_ctypedef] = ACTIONS(1709), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_union] = ACTIONS(1709), - [anon_sym_enum] = ACTIONS(1709), - [anon_sym_cppclass] = ACTIONS(1709), - [anon_sym_fused] = ACTIONS(1709), - [anon_sym_public] = ACTIONS(1709), - [anon_sym_packed] = ACTIONS(1709), - [anon_sym_inline] = ACTIONS(1709), - [anon_sym_readonly] = ACTIONS(1709), - [anon_sym_sizeof] = ACTIONS(1709), - [sym__dedent] = ACTIONS(1711), - [sym_string_start] = ACTIONS(1711), + [sym_identifier] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_import] = ACTIONS(1699), + [anon_sym_cimport] = ACTIONS(1699), + [anon_sym_from] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_print] = ACTIONS(1699), + [anon_sym_assert] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1699), + [anon_sym_del] = ACTIONS(1699), + [anon_sym_raise] = ACTIONS(1699), + [anon_sym_pass] = ACTIONS(1699), + [anon_sym_break] = ACTIONS(1699), + [anon_sym_continue] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1699), + [anon_sym_match] = ACTIONS(1699), + [anon_sym_async] = ACTIONS(1699), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_while] = ACTIONS(1699), + [anon_sym_try] = ACTIONS(1699), + [anon_sym_with] = ACTIONS(1699), + [anon_sym_def] = ACTIONS(1699), + [anon_sym_global] = ACTIONS(1699), + [anon_sym_nonlocal] = ACTIONS(1699), + [anon_sym_exec] = ACTIONS(1699), + [anon_sym_type] = ACTIONS(1699), + [anon_sym_class] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_AT] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1701), + [anon_sym_not] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1701), + [anon_sym_LT] = ACTIONS(1701), + [anon_sym_lambda] = ACTIONS(1699), + [anon_sym_yield] = ACTIONS(1699), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1701), + [anon_sym_None] = ACTIONS(1699), + [sym_integer] = ACTIONS(1699), + [sym_float] = ACTIONS(1701), + [anon_sym_await] = ACTIONS(1699), + [anon_sym_api] = ACTIONS(1699), + [sym_true] = ACTIONS(1699), + [sym_false] = ACTIONS(1699), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1699), + [anon_sym_include] = ACTIONS(1699), + [anon_sym_DEF] = ACTIONS(1699), + [anon_sym_IF] = ACTIONS(1699), + [anon_sym_cdef] = ACTIONS(1699), + [anon_sym_cpdef] = ACTIONS(1699), + [anon_sym_int] = ACTIONS(1699), + [anon_sym_double] = ACTIONS(1699), + [anon_sym_complex] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1699), + [anon_sym_signed] = ACTIONS(1699), + [anon_sym_unsigned] = ACTIONS(1699), + [anon_sym_char] = ACTIONS(1699), + [anon_sym_short] = ACTIONS(1699), + [anon_sym_long] = ACTIONS(1699), + [anon_sym_const] = ACTIONS(1699), + [anon_sym_volatile] = ACTIONS(1699), + [anon_sym_ctypedef] = ACTIONS(1699), + [anon_sym_struct] = ACTIONS(1699), + [anon_sym_union] = ACTIONS(1699), + [anon_sym_enum] = ACTIONS(1699), + [anon_sym_cppclass] = ACTIONS(1699), + [anon_sym_fused] = ACTIONS(1699), + [anon_sym_public] = ACTIONS(1699), + [anon_sym_packed] = ACTIONS(1699), + [anon_sym_inline] = ACTIONS(1699), + [anon_sym_readonly] = ACTIONS(1699), + [anon_sym_sizeof] = ACTIONS(1699), + [sym__dedent] = ACTIONS(1701), + [sym_string_start] = ACTIONS(1701), }, [549] = { - [sym_identifier] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_import] = ACTIONS(1713), - [anon_sym_cimport] = ACTIONS(1713), - [anon_sym_from] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_print] = ACTIONS(1713), - [anon_sym_assert] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_del] = ACTIONS(1713), - [anon_sym_raise] = ACTIONS(1713), - [anon_sym_pass] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_async] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1713), - [anon_sym_with] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1713), - [anon_sym_global] = ACTIONS(1713), - [anon_sym_nonlocal] = ACTIONS(1713), - [anon_sym_exec] = ACTIONS(1713), - [anon_sym_type] = ACTIONS(1713), - [anon_sym_class] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_AT] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_lambda] = ACTIONS(1713), - [anon_sym_yield] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1715), - [anon_sym_None] = ACTIONS(1713), - [sym_integer] = ACTIONS(1713), - [sym_float] = ACTIONS(1715), - [anon_sym_await] = ACTIONS(1713), - [anon_sym_api] = ACTIONS(1713), - [sym_true] = ACTIONS(1713), - [sym_false] = ACTIONS(1713), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1713), - [anon_sym_include] = ACTIONS(1713), - [anon_sym_DEF] = ACTIONS(1713), - [anon_sym_cdef] = ACTIONS(1713), - [anon_sym_cpdef] = ACTIONS(1713), - [anon_sym_int] = ACTIONS(1713), - [anon_sym_double] = ACTIONS(1713), - [anon_sym_complex] = ACTIONS(1713), - [anon_sym_new] = ACTIONS(1713), - [anon_sym_signed] = ACTIONS(1713), - [anon_sym_unsigned] = ACTIONS(1713), - [anon_sym_char] = ACTIONS(1713), - [anon_sym_short] = ACTIONS(1713), - [anon_sym_long] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_volatile] = ACTIONS(1713), - [anon_sym_ctypedef] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_cppclass] = ACTIONS(1713), - [anon_sym_fused] = ACTIONS(1713), - [anon_sym_public] = ACTIONS(1713), - [anon_sym_packed] = ACTIONS(1713), - [anon_sym_inline] = ACTIONS(1713), - [anon_sym_readonly] = ACTIONS(1713), - [anon_sym_sizeof] = ACTIONS(1713), - [sym__dedent] = ACTIONS(1715), - [sym_string_start] = ACTIONS(1715), + [sym_identifier] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_import] = ACTIONS(1703), + [anon_sym_cimport] = ACTIONS(1703), + [anon_sym_from] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1705), + [anon_sym_print] = ACTIONS(1703), + [anon_sym_assert] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_del] = ACTIONS(1703), + [anon_sym_raise] = ACTIONS(1703), + [anon_sym_pass] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_with] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_global] = ACTIONS(1703), + [anon_sym_nonlocal] = ACTIONS(1703), + [anon_sym_exec] = ACTIONS(1703), + [anon_sym_type] = ACTIONS(1703), + [anon_sym_class] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_AT] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1705), + [anon_sym_lambda] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1705), + [anon_sym_None] = ACTIONS(1703), + [sym_integer] = ACTIONS(1703), + [sym_float] = ACTIONS(1705), + [anon_sym_await] = ACTIONS(1703), + [anon_sym_api] = ACTIONS(1703), + [sym_true] = ACTIONS(1703), + [sym_false] = ACTIONS(1703), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1703), + [anon_sym_include] = ACTIONS(1703), + [anon_sym_DEF] = ACTIONS(1703), + [anon_sym_IF] = ACTIONS(1703), + [anon_sym_cdef] = ACTIONS(1703), + [anon_sym_cpdef] = ACTIONS(1703), + [anon_sym_int] = ACTIONS(1703), + [anon_sym_double] = ACTIONS(1703), + [anon_sym_complex] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_signed] = ACTIONS(1703), + [anon_sym_unsigned] = ACTIONS(1703), + [anon_sym_char] = ACTIONS(1703), + [anon_sym_short] = ACTIONS(1703), + [anon_sym_long] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [anon_sym_volatile] = ACTIONS(1703), + [anon_sym_ctypedef] = ACTIONS(1703), + [anon_sym_struct] = ACTIONS(1703), + [anon_sym_union] = ACTIONS(1703), + [anon_sym_enum] = ACTIONS(1703), + [anon_sym_cppclass] = ACTIONS(1703), + [anon_sym_fused] = ACTIONS(1703), + [anon_sym_public] = ACTIONS(1703), + [anon_sym_packed] = ACTIONS(1703), + [anon_sym_inline] = ACTIONS(1703), + [anon_sym_readonly] = ACTIONS(1703), + [anon_sym_sizeof] = ACTIONS(1703), + [sym__dedent] = ACTIONS(1705), + [sym_string_start] = ACTIONS(1705), }, [550] = { - [sym_identifier] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_cimport] = ACTIONS(1717), - [anon_sym_from] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_print] = ACTIONS(1717), - [anon_sym_assert] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_del] = ACTIONS(1717), - [anon_sym_raise] = ACTIONS(1717), - [anon_sym_pass] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_with] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1717), - [anon_sym_global] = ACTIONS(1717), - [anon_sym_nonlocal] = ACTIONS(1717), - [anon_sym_exec] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_not] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_lambda] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), - [anon_sym_None] = ACTIONS(1717), - [sym_integer] = ACTIONS(1717), - [sym_float] = ACTIONS(1719), - [anon_sym_await] = ACTIONS(1717), - [anon_sym_api] = ACTIONS(1717), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1717), - [anon_sym_include] = ACTIONS(1717), - [anon_sym_DEF] = ACTIONS(1717), - [anon_sym_cdef] = ACTIONS(1717), - [anon_sym_cpdef] = ACTIONS(1717), - [anon_sym_int] = ACTIONS(1717), - [anon_sym_double] = ACTIONS(1717), - [anon_sym_complex] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1717), - [anon_sym_signed] = ACTIONS(1717), - [anon_sym_unsigned] = ACTIONS(1717), - [anon_sym_char] = ACTIONS(1717), - [anon_sym_short] = ACTIONS(1717), - [anon_sym_long] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_volatile] = ACTIONS(1717), - [anon_sym_ctypedef] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_cppclass] = ACTIONS(1717), - [anon_sym_fused] = ACTIONS(1717), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_packed] = ACTIONS(1717), - [anon_sym_inline] = ACTIONS(1717), - [anon_sym_readonly] = ACTIONS(1717), - [anon_sym_sizeof] = ACTIONS(1717), - [sym__dedent] = ACTIONS(1719), - [sym_string_start] = ACTIONS(1719), + [sym_identifier] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_import] = ACTIONS(1707), + [anon_sym_cimport] = ACTIONS(1707), + [anon_sym_from] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_print] = ACTIONS(1707), + [anon_sym_assert] = ACTIONS(1707), + [anon_sym_return] = ACTIONS(1707), + [anon_sym_del] = ACTIONS(1707), + [anon_sym_raise] = ACTIONS(1707), + [anon_sym_pass] = ACTIONS(1707), + [anon_sym_break] = ACTIONS(1707), + [anon_sym_continue] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1707), + [anon_sym_match] = ACTIONS(1707), + [anon_sym_async] = ACTIONS(1707), + [anon_sym_for] = ACTIONS(1707), + [anon_sym_while] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1707), + [anon_sym_with] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1707), + [anon_sym_global] = ACTIONS(1707), + [anon_sym_nonlocal] = ACTIONS(1707), + [anon_sym_exec] = ACTIONS(1707), + [anon_sym_type] = ACTIONS(1707), + [anon_sym_class] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_AT] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_not] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_lambda] = ACTIONS(1707), + [anon_sym_yield] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1709), + [anon_sym_None] = ACTIONS(1707), + [sym_integer] = ACTIONS(1707), + [sym_float] = ACTIONS(1709), + [anon_sym_await] = ACTIONS(1707), + [anon_sym_api] = ACTIONS(1707), + [sym_true] = ACTIONS(1707), + [sym_false] = ACTIONS(1707), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1707), + [anon_sym_include] = ACTIONS(1707), + [anon_sym_DEF] = ACTIONS(1707), + [anon_sym_IF] = ACTIONS(1707), + [anon_sym_cdef] = ACTIONS(1707), + [anon_sym_cpdef] = ACTIONS(1707), + [anon_sym_int] = ACTIONS(1707), + [anon_sym_double] = ACTIONS(1707), + [anon_sym_complex] = ACTIONS(1707), + [anon_sym_new] = ACTIONS(1707), + [anon_sym_signed] = ACTIONS(1707), + [anon_sym_unsigned] = ACTIONS(1707), + [anon_sym_char] = ACTIONS(1707), + [anon_sym_short] = ACTIONS(1707), + [anon_sym_long] = ACTIONS(1707), + [anon_sym_const] = ACTIONS(1707), + [anon_sym_volatile] = ACTIONS(1707), + [anon_sym_ctypedef] = ACTIONS(1707), + [anon_sym_struct] = ACTIONS(1707), + [anon_sym_union] = ACTIONS(1707), + [anon_sym_enum] = ACTIONS(1707), + [anon_sym_cppclass] = ACTIONS(1707), + [anon_sym_fused] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1707), + [anon_sym_packed] = ACTIONS(1707), + [anon_sym_inline] = ACTIONS(1707), + [anon_sym_readonly] = ACTIONS(1707), + [anon_sym_sizeof] = ACTIONS(1707), + [sym__dedent] = ACTIONS(1709), + [sym_string_start] = ACTIONS(1709), }, [551] = { - [sym_identifier] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_import] = ACTIONS(1721), - [anon_sym_cimport] = ACTIONS(1721), - [anon_sym_from] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_print] = ACTIONS(1721), - [anon_sym_assert] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_del] = ACTIONS(1721), - [anon_sym_raise] = ACTIONS(1721), - [anon_sym_pass] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_async] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_with] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_global] = ACTIONS(1721), - [anon_sym_nonlocal] = ACTIONS(1721), - [anon_sym_exec] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_class] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_AT] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_not] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_TILDE] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_lambda] = ACTIONS(1721), - [anon_sym_yield] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1723), - [anon_sym_None] = ACTIONS(1721), - [sym_integer] = ACTIONS(1721), - [sym_float] = ACTIONS(1723), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_api] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1721), - [anon_sym_include] = ACTIONS(1721), - [anon_sym_DEF] = ACTIONS(1721), - [anon_sym_cdef] = ACTIONS(1721), - [anon_sym_cpdef] = ACTIONS(1721), - [anon_sym_int] = ACTIONS(1721), - [anon_sym_double] = ACTIONS(1721), - [anon_sym_complex] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_signed] = ACTIONS(1721), - [anon_sym_unsigned] = ACTIONS(1721), - [anon_sym_char] = ACTIONS(1721), - [anon_sym_short] = ACTIONS(1721), - [anon_sym_long] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_volatile] = ACTIONS(1721), - [anon_sym_ctypedef] = ACTIONS(1721), - [anon_sym_struct] = ACTIONS(1721), - [anon_sym_union] = ACTIONS(1721), - [anon_sym_enum] = ACTIONS(1721), - [anon_sym_cppclass] = ACTIONS(1721), - [anon_sym_fused] = ACTIONS(1721), - [anon_sym_public] = ACTIONS(1721), - [anon_sym_packed] = ACTIONS(1721), - [anon_sym_inline] = ACTIONS(1721), - [anon_sym_readonly] = ACTIONS(1721), - [anon_sym_sizeof] = ACTIONS(1721), - [sym__dedent] = ACTIONS(1723), - [sym_string_start] = ACTIONS(1723), + [sym_identifier] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_import] = ACTIONS(1711), + [anon_sym_cimport] = ACTIONS(1711), + [anon_sym_from] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_print] = ACTIONS(1711), + [anon_sym_assert] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_del] = ACTIONS(1711), + [anon_sym_raise] = ACTIONS(1711), + [anon_sym_pass] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_match] = ACTIONS(1711), + [anon_sym_async] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_try] = ACTIONS(1711), + [anon_sym_with] = ACTIONS(1711), + [anon_sym_def] = ACTIONS(1711), + [anon_sym_global] = ACTIONS(1711), + [anon_sym_nonlocal] = ACTIONS(1711), + [anon_sym_exec] = ACTIONS(1711), + [anon_sym_type] = ACTIONS(1711), + [anon_sym_class] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_AT] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_not] = ACTIONS(1711), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_lambda] = ACTIONS(1711), + [anon_sym_yield] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1713), + [anon_sym_None] = ACTIONS(1711), + [sym_integer] = ACTIONS(1711), + [sym_float] = ACTIONS(1713), + [anon_sym_await] = ACTIONS(1711), + [anon_sym_api] = ACTIONS(1711), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1711), + [anon_sym_include] = ACTIONS(1711), + [anon_sym_DEF] = ACTIONS(1711), + [anon_sym_IF] = ACTIONS(1711), + [anon_sym_cdef] = ACTIONS(1711), + [anon_sym_cpdef] = ACTIONS(1711), + [anon_sym_int] = ACTIONS(1711), + [anon_sym_double] = ACTIONS(1711), + [anon_sym_complex] = ACTIONS(1711), + [anon_sym_new] = ACTIONS(1711), + [anon_sym_signed] = ACTIONS(1711), + [anon_sym_unsigned] = ACTIONS(1711), + [anon_sym_char] = ACTIONS(1711), + [anon_sym_short] = ACTIONS(1711), + [anon_sym_long] = ACTIONS(1711), + [anon_sym_const] = ACTIONS(1711), + [anon_sym_volatile] = ACTIONS(1711), + [anon_sym_ctypedef] = ACTIONS(1711), + [anon_sym_struct] = ACTIONS(1711), + [anon_sym_union] = ACTIONS(1711), + [anon_sym_enum] = ACTIONS(1711), + [anon_sym_cppclass] = ACTIONS(1711), + [anon_sym_fused] = ACTIONS(1711), + [anon_sym_public] = ACTIONS(1711), + [anon_sym_packed] = ACTIONS(1711), + [anon_sym_inline] = ACTIONS(1711), + [anon_sym_readonly] = ACTIONS(1711), + [anon_sym_sizeof] = ACTIONS(1711), + [sym__dedent] = ACTIONS(1713), + [sym_string_start] = ACTIONS(1713), }, [552] = { - [sym_identifier] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_cimport] = ACTIONS(1717), - [anon_sym_from] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_print] = ACTIONS(1717), - [anon_sym_assert] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_del] = ACTIONS(1717), - [anon_sym_raise] = ACTIONS(1717), - [anon_sym_pass] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_with] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1717), - [anon_sym_global] = ACTIONS(1717), - [anon_sym_nonlocal] = ACTIONS(1717), - [anon_sym_exec] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_not] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_lambda] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), - [anon_sym_None] = ACTIONS(1717), - [sym_integer] = ACTIONS(1717), - [sym_float] = ACTIONS(1719), - [anon_sym_await] = ACTIONS(1717), - [anon_sym_api] = ACTIONS(1717), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1717), - [anon_sym_include] = ACTIONS(1717), - [anon_sym_DEF] = ACTIONS(1717), - [anon_sym_cdef] = ACTIONS(1717), - [anon_sym_cpdef] = ACTIONS(1717), - [anon_sym_int] = ACTIONS(1717), - [anon_sym_double] = ACTIONS(1717), - [anon_sym_complex] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1717), - [anon_sym_signed] = ACTIONS(1717), - [anon_sym_unsigned] = ACTIONS(1717), - [anon_sym_char] = ACTIONS(1717), - [anon_sym_short] = ACTIONS(1717), - [anon_sym_long] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_volatile] = ACTIONS(1717), - [anon_sym_ctypedef] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_cppclass] = ACTIONS(1717), - [anon_sym_fused] = ACTIONS(1717), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_packed] = ACTIONS(1717), - [anon_sym_inline] = ACTIONS(1717), - [anon_sym_readonly] = ACTIONS(1717), - [anon_sym_sizeof] = ACTIONS(1717), - [sym__dedent] = ACTIONS(1719), - [sym_string_start] = ACTIONS(1719), + [sym_identifier] = ACTIONS(1715), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_import] = ACTIONS(1715), + [anon_sym_cimport] = ACTIONS(1715), + [anon_sym_from] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_print] = ACTIONS(1715), + [anon_sym_assert] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_del] = ACTIONS(1715), + [anon_sym_raise] = ACTIONS(1715), + [anon_sym_pass] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_async] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_with] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_global] = ACTIONS(1715), + [anon_sym_nonlocal] = ACTIONS(1715), + [anon_sym_exec] = ACTIONS(1715), + [anon_sym_type] = ACTIONS(1715), + [anon_sym_class] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_AT] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1717), + [anon_sym_not] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_TILDE] = ACTIONS(1717), + [anon_sym_LT] = ACTIONS(1717), + [anon_sym_lambda] = ACTIONS(1715), + [anon_sym_yield] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1717), + [anon_sym_None] = ACTIONS(1715), + [sym_integer] = ACTIONS(1715), + [sym_float] = ACTIONS(1717), + [anon_sym_await] = ACTIONS(1715), + [anon_sym_api] = ACTIONS(1715), + [sym_true] = ACTIONS(1715), + [sym_false] = ACTIONS(1715), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1715), + [anon_sym_include] = ACTIONS(1715), + [anon_sym_DEF] = ACTIONS(1715), + [anon_sym_IF] = ACTIONS(1715), + [anon_sym_cdef] = ACTIONS(1715), + [anon_sym_cpdef] = ACTIONS(1715), + [anon_sym_int] = ACTIONS(1715), + [anon_sym_double] = ACTIONS(1715), + [anon_sym_complex] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_signed] = ACTIONS(1715), + [anon_sym_unsigned] = ACTIONS(1715), + [anon_sym_char] = ACTIONS(1715), + [anon_sym_short] = ACTIONS(1715), + [anon_sym_long] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [anon_sym_volatile] = ACTIONS(1715), + [anon_sym_ctypedef] = ACTIONS(1715), + [anon_sym_struct] = ACTIONS(1715), + [anon_sym_union] = ACTIONS(1715), + [anon_sym_enum] = ACTIONS(1715), + [anon_sym_cppclass] = ACTIONS(1715), + [anon_sym_fused] = ACTIONS(1715), + [anon_sym_public] = ACTIONS(1715), + [anon_sym_packed] = ACTIONS(1715), + [anon_sym_inline] = ACTIONS(1715), + [anon_sym_readonly] = ACTIONS(1715), + [anon_sym_sizeof] = ACTIONS(1715), + [sym__dedent] = ACTIONS(1717), + [sym_string_start] = ACTIONS(1717), }, [553] = { - [sym_identifier] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_cimport] = ACTIONS(1717), - [anon_sym_from] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_print] = ACTIONS(1717), - [anon_sym_assert] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_del] = ACTIONS(1717), - [anon_sym_raise] = ACTIONS(1717), - [anon_sym_pass] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_with] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1717), - [anon_sym_global] = ACTIONS(1717), - [anon_sym_nonlocal] = ACTIONS(1717), - [anon_sym_exec] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_not] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_lambda] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1719), - [anon_sym_None] = ACTIONS(1717), - [sym_integer] = ACTIONS(1717), - [sym_float] = ACTIONS(1719), - [anon_sym_await] = ACTIONS(1717), - [anon_sym_api] = ACTIONS(1717), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1717), - [anon_sym_include] = ACTIONS(1717), - [anon_sym_DEF] = ACTIONS(1717), - [anon_sym_cdef] = ACTIONS(1717), - [anon_sym_cpdef] = ACTIONS(1717), - [anon_sym_int] = ACTIONS(1717), - [anon_sym_double] = ACTIONS(1717), - [anon_sym_complex] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1717), - [anon_sym_signed] = ACTIONS(1717), - [anon_sym_unsigned] = ACTIONS(1717), - [anon_sym_char] = ACTIONS(1717), - [anon_sym_short] = ACTIONS(1717), - [anon_sym_long] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_volatile] = ACTIONS(1717), - [anon_sym_ctypedef] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_cppclass] = ACTIONS(1717), - [anon_sym_fused] = ACTIONS(1717), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_packed] = ACTIONS(1717), - [anon_sym_inline] = ACTIONS(1717), - [anon_sym_readonly] = ACTIONS(1717), - [anon_sym_sizeof] = ACTIONS(1717), - [sym__dedent] = ACTIONS(1719), - [sym_string_start] = ACTIONS(1719), + [sym_identifier] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_import] = ACTIONS(1719), + [anon_sym_cimport] = ACTIONS(1719), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1721), + [anon_sym_print] = ACTIONS(1719), + [anon_sym_assert] = ACTIONS(1719), + [anon_sym_return] = ACTIONS(1719), + [anon_sym_del] = ACTIONS(1719), + [anon_sym_raise] = ACTIONS(1719), + [anon_sym_pass] = ACTIONS(1719), + [anon_sym_break] = ACTIONS(1719), + [anon_sym_continue] = ACTIONS(1719), + [anon_sym_if] = ACTIONS(1719), + [anon_sym_match] = ACTIONS(1719), + [anon_sym_async] = ACTIONS(1719), + [anon_sym_for] = ACTIONS(1719), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_try] = ACTIONS(1719), + [anon_sym_with] = ACTIONS(1719), + [anon_sym_def] = ACTIONS(1719), + [anon_sym_global] = ACTIONS(1719), + [anon_sym_nonlocal] = ACTIONS(1719), + [anon_sym_exec] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_class] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_AT] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_not] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1721), + [anon_sym_TILDE] = ACTIONS(1721), + [anon_sym_LT] = ACTIONS(1721), + [anon_sym_lambda] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1721), + [anon_sym_None] = ACTIONS(1719), + [sym_integer] = ACTIONS(1719), + [sym_float] = ACTIONS(1721), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_api] = ACTIONS(1719), + [sym_true] = ACTIONS(1719), + [sym_false] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_include] = ACTIONS(1719), + [anon_sym_DEF] = ACTIONS(1719), + [anon_sym_IF] = ACTIONS(1719), + [anon_sym_cdef] = ACTIONS(1719), + [anon_sym_cpdef] = ACTIONS(1719), + [anon_sym_int] = ACTIONS(1719), + [anon_sym_double] = ACTIONS(1719), + [anon_sym_complex] = ACTIONS(1719), + [anon_sym_new] = ACTIONS(1719), + [anon_sym_signed] = ACTIONS(1719), + [anon_sym_unsigned] = ACTIONS(1719), + [anon_sym_char] = ACTIONS(1719), + [anon_sym_short] = ACTIONS(1719), + [anon_sym_long] = ACTIONS(1719), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_volatile] = ACTIONS(1719), + [anon_sym_ctypedef] = ACTIONS(1719), + [anon_sym_struct] = ACTIONS(1719), + [anon_sym_union] = ACTIONS(1719), + [anon_sym_enum] = ACTIONS(1719), + [anon_sym_cppclass] = ACTIONS(1719), + [anon_sym_fused] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_packed] = ACTIONS(1719), + [anon_sym_inline] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_sizeof] = ACTIONS(1719), + [sym__dedent] = ACTIONS(1721), + [sym_string_start] = ACTIONS(1721), }, [554] = { - [sym_identifier] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(1725), - [anon_sym_cimport] = ACTIONS(1725), - [anon_sym_from] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_print] = ACTIONS(1725), - [anon_sym_assert] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_del] = ACTIONS(1725), - [anon_sym_raise] = ACTIONS(1725), - [anon_sym_pass] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_with] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_global] = ACTIONS(1725), - [anon_sym_nonlocal] = ACTIONS(1725), - [anon_sym_exec] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_class] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_AT] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_not] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_lambda] = ACTIONS(1725), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1727), - [anon_sym_None] = ACTIONS(1725), - [sym_integer] = ACTIONS(1725), - [sym_float] = ACTIONS(1727), - [anon_sym_await] = ACTIONS(1725), - [anon_sym_api] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1725), - [anon_sym_include] = ACTIONS(1725), - [anon_sym_DEF] = ACTIONS(1725), - [anon_sym_cdef] = ACTIONS(1725), - [anon_sym_cpdef] = ACTIONS(1725), - [anon_sym_int] = ACTIONS(1725), - [anon_sym_double] = ACTIONS(1725), - [anon_sym_complex] = ACTIONS(1725), - [anon_sym_new] = ACTIONS(1725), - [anon_sym_signed] = ACTIONS(1725), - [anon_sym_unsigned] = ACTIONS(1725), - [anon_sym_char] = ACTIONS(1725), - [anon_sym_short] = ACTIONS(1725), - [anon_sym_long] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_volatile] = ACTIONS(1725), - [anon_sym_ctypedef] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1725), - [anon_sym_union] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [anon_sym_cppclass] = ACTIONS(1725), - [anon_sym_fused] = ACTIONS(1725), - [anon_sym_public] = ACTIONS(1725), - [anon_sym_packed] = ACTIONS(1725), - [anon_sym_inline] = ACTIONS(1725), - [anon_sym_readonly] = ACTIONS(1725), - [anon_sym_sizeof] = ACTIONS(1725), - [sym__dedent] = ACTIONS(1727), - [sym_string_start] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_import] = ACTIONS(1723), + [anon_sym_cimport] = ACTIONS(1723), + [anon_sym_from] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_print] = ACTIONS(1723), + [anon_sym_assert] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1723), + [anon_sym_del] = ACTIONS(1723), + [anon_sym_raise] = ACTIONS(1723), + [anon_sym_pass] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1723), + [anon_sym_continue] = ACTIONS(1723), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_match] = ACTIONS(1723), + [anon_sym_async] = ACTIONS(1723), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_while] = ACTIONS(1723), + [anon_sym_try] = ACTIONS(1723), + [anon_sym_with] = ACTIONS(1723), + [anon_sym_def] = ACTIONS(1723), + [anon_sym_global] = ACTIONS(1723), + [anon_sym_nonlocal] = ACTIONS(1723), + [anon_sym_exec] = ACTIONS(1723), + [anon_sym_type] = ACTIONS(1723), + [anon_sym_class] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1725), + [anon_sym_AT] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_not] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_TILDE] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_lambda] = ACTIONS(1723), + [anon_sym_yield] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1725), + [anon_sym_None] = ACTIONS(1723), + [sym_integer] = ACTIONS(1723), + [sym_float] = ACTIONS(1725), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_api] = ACTIONS(1723), + [sym_true] = ACTIONS(1723), + [sym_false] = ACTIONS(1723), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1723), + [anon_sym_include] = ACTIONS(1723), + [anon_sym_DEF] = ACTIONS(1723), + [anon_sym_IF] = ACTIONS(1723), + [anon_sym_cdef] = ACTIONS(1723), + [anon_sym_cpdef] = ACTIONS(1723), + [anon_sym_int] = ACTIONS(1723), + [anon_sym_double] = ACTIONS(1723), + [anon_sym_complex] = ACTIONS(1723), + [anon_sym_new] = ACTIONS(1723), + [anon_sym_signed] = ACTIONS(1723), + [anon_sym_unsigned] = ACTIONS(1723), + [anon_sym_char] = ACTIONS(1723), + [anon_sym_short] = ACTIONS(1723), + [anon_sym_long] = ACTIONS(1723), + [anon_sym_const] = ACTIONS(1723), + [anon_sym_volatile] = ACTIONS(1723), + [anon_sym_ctypedef] = ACTIONS(1723), + [anon_sym_struct] = ACTIONS(1723), + [anon_sym_union] = ACTIONS(1723), + [anon_sym_enum] = ACTIONS(1723), + [anon_sym_cppclass] = ACTIONS(1723), + [anon_sym_fused] = ACTIONS(1723), + [anon_sym_public] = ACTIONS(1723), + [anon_sym_packed] = ACTIONS(1723), + [anon_sym_inline] = ACTIONS(1723), + [anon_sym_readonly] = ACTIONS(1723), + [anon_sym_sizeof] = ACTIONS(1723), + [sym__dedent] = ACTIONS(1725), + [sym_string_start] = ACTIONS(1725), }, [555] = { - [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), + [sym_identifier] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_import] = ACTIONS(1727), + [anon_sym_cimport] = ACTIONS(1727), + [anon_sym_from] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_print] = ACTIONS(1727), + [anon_sym_assert] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_del] = ACTIONS(1727), + [anon_sym_raise] = ACTIONS(1727), + [anon_sym_pass] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_async] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_with] = ACTIONS(1727), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_global] = ACTIONS(1727), + [anon_sym_nonlocal] = ACTIONS(1727), + [anon_sym_exec] = ACTIONS(1727), + [anon_sym_type] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1727), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_AT] = ACTIONS(1729), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1729), + [anon_sym_not] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1729), + [anon_sym_TILDE] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_lambda] = ACTIONS(1727), + [anon_sym_yield] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1729), + [anon_sym_None] = ACTIONS(1727), + [sym_integer] = ACTIONS(1727), + [sym_float] = ACTIONS(1729), + [anon_sym_await] = ACTIONS(1727), + [anon_sym_api] = ACTIONS(1727), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1727), + [anon_sym_include] = ACTIONS(1727), + [anon_sym_DEF] = ACTIONS(1727), + [anon_sym_IF] = ACTIONS(1727), + [anon_sym_cdef] = ACTIONS(1727), + [anon_sym_cpdef] = ACTIONS(1727), + [anon_sym_int] = ACTIONS(1727), + [anon_sym_double] = ACTIONS(1727), + [anon_sym_complex] = ACTIONS(1727), + [anon_sym_new] = ACTIONS(1727), + [anon_sym_signed] = ACTIONS(1727), + [anon_sym_unsigned] = ACTIONS(1727), + [anon_sym_char] = ACTIONS(1727), + [anon_sym_short] = ACTIONS(1727), + [anon_sym_long] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [anon_sym_volatile] = ACTIONS(1727), + [anon_sym_ctypedef] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1727), + [anon_sym_union] = ACTIONS(1727), + [anon_sym_enum] = ACTIONS(1727), + [anon_sym_cppclass] = ACTIONS(1727), + [anon_sym_fused] = ACTIONS(1727), + [anon_sym_public] = ACTIONS(1727), + [anon_sym_packed] = ACTIONS(1727), + [anon_sym_inline] = ACTIONS(1727), + [anon_sym_readonly] = ACTIONS(1727), + [anon_sym_sizeof] = ACTIONS(1727), + [sym__dedent] = ACTIONS(1729), + [sym_string_start] = ACTIONS(1729), }, [556] = { - [sym_identifier] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_import] = ACTIONS(1733), - [anon_sym_cimport] = ACTIONS(1733), - [anon_sym_from] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_print] = ACTIONS(1733), - [anon_sym_assert] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_del] = ACTIONS(1733), - [anon_sym_raise] = ACTIONS(1733), - [anon_sym_pass] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_async] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_with] = ACTIONS(1733), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_global] = ACTIONS(1733), - [anon_sym_nonlocal] = ACTIONS(1733), - [anon_sym_exec] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_class] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_AT] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_not] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_lambda] = ACTIONS(1733), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1735), - [anon_sym_None] = ACTIONS(1733), - [sym_integer] = ACTIONS(1733), - [sym_float] = ACTIONS(1735), - [anon_sym_await] = ACTIONS(1733), - [anon_sym_api] = ACTIONS(1733), - [sym_true] = ACTIONS(1733), - [sym_false] = ACTIONS(1733), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1733), - [anon_sym_include] = ACTIONS(1733), - [anon_sym_DEF] = ACTIONS(1733), - [anon_sym_cdef] = ACTIONS(1733), - [anon_sym_cpdef] = ACTIONS(1733), - [anon_sym_int] = ACTIONS(1733), - [anon_sym_double] = ACTIONS(1733), - [anon_sym_complex] = ACTIONS(1733), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_signed] = ACTIONS(1733), - [anon_sym_unsigned] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_short] = ACTIONS(1733), - [anon_sym_long] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_volatile] = ACTIONS(1733), - [anon_sym_ctypedef] = ACTIONS(1733), - [anon_sym_struct] = ACTIONS(1733), - [anon_sym_union] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), - [anon_sym_cppclass] = ACTIONS(1733), - [anon_sym_fused] = ACTIONS(1733), - [anon_sym_public] = ACTIONS(1733), - [anon_sym_packed] = ACTIONS(1733), - [anon_sym_inline] = ACTIONS(1733), - [anon_sym_readonly] = ACTIONS(1733), - [anon_sym_sizeof] = ACTIONS(1733), - [sym__dedent] = ACTIONS(1735), - [sym_string_start] = ACTIONS(1735), + [sym_identifier] = ACTIONS(1731), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_import] = ACTIONS(1731), + [anon_sym_cimport] = ACTIONS(1731), + [anon_sym_from] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_STAR] = ACTIONS(1733), + [anon_sym_print] = ACTIONS(1731), + [anon_sym_assert] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_del] = ACTIONS(1731), + [anon_sym_raise] = ACTIONS(1731), + [anon_sym_pass] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_with] = ACTIONS(1731), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_global] = ACTIONS(1731), + [anon_sym_nonlocal] = ACTIONS(1731), + [anon_sym_exec] = ACTIONS(1731), + [anon_sym_type] = ACTIONS(1731), + [anon_sym_class] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_AT] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_PLUS] = ACTIONS(1733), + [anon_sym_not] = ACTIONS(1731), + [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_TILDE] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1733), + [anon_sym_lambda] = ACTIONS(1731), + [anon_sym_yield] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1733), + [anon_sym_None] = ACTIONS(1731), + [sym_integer] = ACTIONS(1731), + [sym_float] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1731), + [anon_sym_api] = ACTIONS(1731), + [sym_true] = ACTIONS(1731), + [sym_false] = ACTIONS(1731), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1731), + [anon_sym_include] = ACTIONS(1731), + [anon_sym_DEF] = ACTIONS(1731), + [anon_sym_IF] = ACTIONS(1731), + [anon_sym_cdef] = ACTIONS(1731), + [anon_sym_cpdef] = ACTIONS(1731), + [anon_sym_int] = ACTIONS(1731), + [anon_sym_double] = ACTIONS(1731), + [anon_sym_complex] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1731), + [anon_sym_signed] = ACTIONS(1731), + [anon_sym_unsigned] = ACTIONS(1731), + [anon_sym_char] = ACTIONS(1731), + [anon_sym_short] = ACTIONS(1731), + [anon_sym_long] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [anon_sym_volatile] = ACTIONS(1731), + [anon_sym_ctypedef] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1731), + [anon_sym_union] = ACTIONS(1731), + [anon_sym_enum] = ACTIONS(1731), + [anon_sym_cppclass] = ACTIONS(1731), + [anon_sym_fused] = ACTIONS(1731), + [anon_sym_public] = ACTIONS(1731), + [anon_sym_packed] = ACTIONS(1731), + [anon_sym_inline] = ACTIONS(1731), + [anon_sym_readonly] = ACTIONS(1731), + [anon_sym_sizeof] = ACTIONS(1731), + [sym__dedent] = ACTIONS(1733), + [sym_string_start] = ACTIONS(1733), }, [557] = { - [sym_identifier] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_import] = ACTIONS(1737), - [anon_sym_cimport] = ACTIONS(1737), - [anon_sym_from] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_print] = ACTIONS(1737), - [anon_sym_assert] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_del] = ACTIONS(1737), - [anon_sym_raise] = ACTIONS(1737), - [anon_sym_pass] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_with] = ACTIONS(1737), - [anon_sym_def] = ACTIONS(1737), - [anon_sym_global] = ACTIONS(1737), - [anon_sym_nonlocal] = ACTIONS(1737), - [anon_sym_exec] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_AT] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_lambda] = ACTIONS(1737), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1739), - [anon_sym_None] = ACTIONS(1737), - [sym_integer] = ACTIONS(1737), - [sym_float] = ACTIONS(1739), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_api] = ACTIONS(1737), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1737), - [anon_sym_include] = ACTIONS(1737), - [anon_sym_DEF] = ACTIONS(1737), - [anon_sym_cdef] = ACTIONS(1737), - [anon_sym_cpdef] = ACTIONS(1737), - [anon_sym_int] = ACTIONS(1737), - [anon_sym_double] = ACTIONS(1737), - [anon_sym_complex] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_signed] = ACTIONS(1737), - [anon_sym_unsigned] = ACTIONS(1737), - [anon_sym_char] = ACTIONS(1737), - [anon_sym_short] = ACTIONS(1737), - [anon_sym_long] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_volatile] = ACTIONS(1737), - [anon_sym_ctypedef] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_cppclass] = ACTIONS(1737), - [anon_sym_fused] = ACTIONS(1737), - [anon_sym_public] = ACTIONS(1737), - [anon_sym_packed] = ACTIONS(1737), - [anon_sym_inline] = ACTIONS(1737), - [anon_sym_readonly] = ACTIONS(1737), - [anon_sym_sizeof] = ACTIONS(1737), - [sym__dedent] = ACTIONS(1739), - [sym_string_start] = ACTIONS(1739), + [sym_identifier] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_import] = ACTIONS(1735), + [anon_sym_cimport] = ACTIONS(1735), + [anon_sym_from] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_STAR] = ACTIONS(1737), + [anon_sym_print] = ACTIONS(1735), + [anon_sym_assert] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_del] = ACTIONS(1735), + [anon_sym_raise] = ACTIONS(1735), + [anon_sym_pass] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_async] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_with] = ACTIONS(1735), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_global] = ACTIONS(1735), + [anon_sym_nonlocal] = ACTIONS(1735), + [anon_sym_exec] = ACTIONS(1735), + [anon_sym_type] = ACTIONS(1735), + [anon_sym_class] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_AT] = ACTIONS(1737), + [anon_sym_DASH] = ACTIONS(1737), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1737), + [anon_sym_not] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_LT] = ACTIONS(1737), + [anon_sym_lambda] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1737), + [anon_sym_None] = ACTIONS(1735), + [sym_integer] = ACTIONS(1735), + [sym_float] = ACTIONS(1737), + [anon_sym_await] = ACTIONS(1735), + [anon_sym_api] = ACTIONS(1735), + [sym_true] = ACTIONS(1735), + [sym_false] = ACTIONS(1735), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1735), + [anon_sym_include] = ACTIONS(1735), + [anon_sym_DEF] = ACTIONS(1735), + [anon_sym_IF] = ACTIONS(1735), + [anon_sym_cdef] = ACTIONS(1735), + [anon_sym_cpdef] = ACTIONS(1735), + [anon_sym_int] = ACTIONS(1735), + [anon_sym_double] = ACTIONS(1735), + [anon_sym_complex] = ACTIONS(1735), + [anon_sym_new] = ACTIONS(1735), + [anon_sym_signed] = ACTIONS(1735), + [anon_sym_unsigned] = ACTIONS(1735), + [anon_sym_char] = ACTIONS(1735), + [anon_sym_short] = ACTIONS(1735), + [anon_sym_long] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_volatile] = ACTIONS(1735), + [anon_sym_ctypedef] = ACTIONS(1735), + [anon_sym_struct] = ACTIONS(1735), + [anon_sym_union] = ACTIONS(1735), + [anon_sym_enum] = ACTIONS(1735), + [anon_sym_cppclass] = ACTIONS(1735), + [anon_sym_fused] = ACTIONS(1735), + [anon_sym_public] = ACTIONS(1735), + [anon_sym_packed] = ACTIONS(1735), + [anon_sym_inline] = ACTIONS(1735), + [anon_sym_readonly] = ACTIONS(1735), + [anon_sym_sizeof] = ACTIONS(1735), + [sym__dedent] = ACTIONS(1737), + [sym_string_start] = ACTIONS(1737), }, [558] = { - [sym_identifier] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_import] = ACTIONS(1741), - [anon_sym_cimport] = ACTIONS(1741), - [anon_sym_from] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_print] = ACTIONS(1741), - [anon_sym_assert] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_del] = ACTIONS(1741), - [anon_sym_raise] = ACTIONS(1741), - [anon_sym_pass] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_with] = ACTIONS(1741), - [anon_sym_def] = ACTIONS(1741), - [anon_sym_global] = ACTIONS(1741), - [anon_sym_nonlocal] = ACTIONS(1741), - [anon_sym_exec] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_class] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_AT] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_not] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_TILDE] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_lambda] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1743), - [anon_sym_None] = ACTIONS(1741), - [sym_integer] = ACTIONS(1741), - [sym_float] = ACTIONS(1743), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_api] = ACTIONS(1741), - [sym_true] = ACTIONS(1741), - [sym_false] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1741), - [anon_sym_include] = ACTIONS(1741), - [anon_sym_DEF] = ACTIONS(1741), - [anon_sym_cdef] = ACTIONS(1741), - [anon_sym_cpdef] = ACTIONS(1741), - [anon_sym_int] = ACTIONS(1741), - [anon_sym_double] = ACTIONS(1741), - [anon_sym_complex] = ACTIONS(1741), - [anon_sym_new] = ACTIONS(1741), - [anon_sym_signed] = ACTIONS(1741), - [anon_sym_unsigned] = ACTIONS(1741), - [anon_sym_char] = ACTIONS(1741), - [anon_sym_short] = ACTIONS(1741), - [anon_sym_long] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_volatile] = ACTIONS(1741), - [anon_sym_ctypedef] = ACTIONS(1741), - [anon_sym_struct] = ACTIONS(1741), - [anon_sym_union] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), - [anon_sym_cppclass] = ACTIONS(1741), - [anon_sym_fused] = ACTIONS(1741), - [anon_sym_public] = ACTIONS(1741), - [anon_sym_packed] = ACTIONS(1741), - [anon_sym_inline] = ACTIONS(1741), - [anon_sym_readonly] = ACTIONS(1741), - [anon_sym_sizeof] = ACTIONS(1741), - [sym__dedent] = ACTIONS(1743), - [sym_string_start] = ACTIONS(1743), + [sym_identifier] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_import] = ACTIONS(1739), + [anon_sym_cimport] = ACTIONS(1739), + [anon_sym_from] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_STAR] = ACTIONS(1741), + [anon_sym_print] = ACTIONS(1739), + [anon_sym_assert] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_del] = ACTIONS(1739), + [anon_sym_raise] = ACTIONS(1739), + [anon_sym_pass] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_with] = ACTIONS(1739), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_global] = ACTIONS(1739), + [anon_sym_nonlocal] = ACTIONS(1739), + [anon_sym_exec] = ACTIONS(1739), + [anon_sym_type] = ACTIONS(1739), + [anon_sym_class] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_AT] = ACTIONS(1741), + [anon_sym_DASH] = ACTIONS(1741), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1741), + [anon_sym_not] = ACTIONS(1739), + [anon_sym_AMP] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1741), + [anon_sym_LT] = ACTIONS(1741), + [anon_sym_lambda] = ACTIONS(1739), + [anon_sym_yield] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1741), + [anon_sym_None] = ACTIONS(1739), + [sym_integer] = ACTIONS(1739), + [sym_float] = ACTIONS(1741), + [anon_sym_await] = ACTIONS(1739), + [anon_sym_api] = ACTIONS(1739), + [sym_true] = ACTIONS(1739), + [sym_false] = ACTIONS(1739), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1739), + [anon_sym_include] = ACTIONS(1739), + [anon_sym_DEF] = ACTIONS(1739), + [anon_sym_IF] = ACTIONS(1739), + [anon_sym_cdef] = ACTIONS(1739), + [anon_sym_cpdef] = ACTIONS(1739), + [anon_sym_int] = ACTIONS(1739), + [anon_sym_double] = ACTIONS(1739), + [anon_sym_complex] = ACTIONS(1739), + [anon_sym_new] = ACTIONS(1739), + [anon_sym_signed] = ACTIONS(1739), + [anon_sym_unsigned] = ACTIONS(1739), + [anon_sym_char] = ACTIONS(1739), + [anon_sym_short] = ACTIONS(1739), + [anon_sym_long] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [anon_sym_volatile] = ACTIONS(1739), + [anon_sym_ctypedef] = ACTIONS(1739), + [anon_sym_struct] = ACTIONS(1739), + [anon_sym_union] = ACTIONS(1739), + [anon_sym_enum] = ACTIONS(1739), + [anon_sym_cppclass] = ACTIONS(1739), + [anon_sym_fused] = ACTIONS(1739), + [anon_sym_public] = ACTIONS(1739), + [anon_sym_packed] = ACTIONS(1739), + [anon_sym_inline] = ACTIONS(1739), + [anon_sym_readonly] = ACTIONS(1739), + [anon_sym_sizeof] = ACTIONS(1739), + [sym__dedent] = ACTIONS(1741), + [sym_string_start] = ACTIONS(1741), }, [559] = { - [sym_identifier] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_import] = ACTIONS(1745), - [anon_sym_cimport] = ACTIONS(1745), - [anon_sym_from] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1747), - [anon_sym_print] = ACTIONS(1745), - [anon_sym_assert] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_del] = ACTIONS(1745), - [anon_sym_raise] = ACTIONS(1745), - [anon_sym_pass] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_with] = ACTIONS(1745), - [anon_sym_def] = ACTIONS(1745), - [anon_sym_global] = ACTIONS(1745), - [anon_sym_nonlocal] = ACTIONS(1745), - [anon_sym_exec] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_AT] = ACTIONS(1747), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1747), - [anon_sym_not] = ACTIONS(1745), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_TILDE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_lambda] = ACTIONS(1745), - [anon_sym_yield] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1747), - [anon_sym_None] = ACTIONS(1745), - [sym_integer] = ACTIONS(1745), - [sym_float] = ACTIONS(1747), - [anon_sym_await] = ACTIONS(1745), - [anon_sym_api] = ACTIONS(1745), - [sym_true] = ACTIONS(1745), - [sym_false] = ACTIONS(1745), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1745), - [anon_sym_include] = ACTIONS(1745), - [anon_sym_DEF] = ACTIONS(1745), - [anon_sym_cdef] = ACTIONS(1745), - [anon_sym_cpdef] = ACTIONS(1745), - [anon_sym_int] = ACTIONS(1745), - [anon_sym_double] = ACTIONS(1745), - [anon_sym_complex] = ACTIONS(1745), - [anon_sym_new] = ACTIONS(1745), - [anon_sym_signed] = ACTIONS(1745), - [anon_sym_unsigned] = ACTIONS(1745), - [anon_sym_char] = ACTIONS(1745), - [anon_sym_short] = ACTIONS(1745), - [anon_sym_long] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_volatile] = ACTIONS(1745), - [anon_sym_ctypedef] = ACTIONS(1745), - [anon_sym_struct] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [anon_sym_cppclass] = ACTIONS(1745), - [anon_sym_fused] = ACTIONS(1745), - [anon_sym_public] = ACTIONS(1745), - [anon_sym_packed] = ACTIONS(1745), - [anon_sym_inline] = ACTIONS(1745), - [anon_sym_readonly] = ACTIONS(1745), - [anon_sym_sizeof] = ACTIONS(1745), - [sym__dedent] = ACTIONS(1747), - [sym_string_start] = ACTIONS(1747), + [sym_identifier] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_import] = ACTIONS(1743), + [anon_sym_cimport] = ACTIONS(1743), + [anon_sym_from] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_STAR] = ACTIONS(1745), + [anon_sym_print] = ACTIONS(1743), + [anon_sym_assert] = ACTIONS(1743), + [anon_sym_return] = ACTIONS(1743), + [anon_sym_del] = ACTIONS(1743), + [anon_sym_raise] = ACTIONS(1743), + [anon_sym_pass] = ACTIONS(1743), + [anon_sym_break] = ACTIONS(1743), + [anon_sym_continue] = ACTIONS(1743), + [anon_sym_if] = ACTIONS(1743), + [anon_sym_match] = ACTIONS(1743), + [anon_sym_async] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1743), + [anon_sym_while] = ACTIONS(1743), + [anon_sym_try] = ACTIONS(1743), + [anon_sym_with] = ACTIONS(1743), + [anon_sym_def] = ACTIONS(1743), + [anon_sym_global] = ACTIONS(1743), + [anon_sym_nonlocal] = ACTIONS(1743), + [anon_sym_exec] = ACTIONS(1743), + [anon_sym_type] = ACTIONS(1743), + [anon_sym_class] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_AT] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1745), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_LT] = ACTIONS(1745), + [anon_sym_lambda] = ACTIONS(1743), + [anon_sym_yield] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1745), + [anon_sym_None] = ACTIONS(1743), + [sym_integer] = ACTIONS(1743), + [sym_float] = ACTIONS(1745), + [anon_sym_await] = ACTIONS(1743), + [anon_sym_api] = ACTIONS(1743), + [sym_true] = ACTIONS(1743), + [sym_false] = ACTIONS(1743), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1743), + [anon_sym_include] = ACTIONS(1743), + [anon_sym_DEF] = ACTIONS(1743), + [anon_sym_IF] = ACTIONS(1743), + [anon_sym_cdef] = ACTIONS(1743), + [anon_sym_cpdef] = ACTIONS(1743), + [anon_sym_int] = ACTIONS(1743), + [anon_sym_double] = ACTIONS(1743), + [anon_sym_complex] = ACTIONS(1743), + [anon_sym_new] = ACTIONS(1743), + [anon_sym_signed] = ACTIONS(1743), + [anon_sym_unsigned] = ACTIONS(1743), + [anon_sym_char] = ACTIONS(1743), + [anon_sym_short] = ACTIONS(1743), + [anon_sym_long] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_volatile] = ACTIONS(1743), + [anon_sym_ctypedef] = ACTIONS(1743), + [anon_sym_struct] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_enum] = ACTIONS(1743), + [anon_sym_cppclass] = ACTIONS(1743), + [anon_sym_fused] = ACTIONS(1743), + [anon_sym_public] = ACTIONS(1743), + [anon_sym_packed] = ACTIONS(1743), + [anon_sym_inline] = ACTIONS(1743), + [anon_sym_readonly] = ACTIONS(1743), + [anon_sym_sizeof] = ACTIONS(1743), + [sym__dedent] = ACTIONS(1745), + [sym_string_start] = ACTIONS(1745), }, [560] = { - [sym_identifier] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_import] = ACTIONS(1749), - [anon_sym_cimport] = ACTIONS(1749), - [anon_sym_from] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_print] = ACTIONS(1749), - [anon_sym_assert] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_del] = ACTIONS(1749), - [anon_sym_raise] = ACTIONS(1749), - [anon_sym_pass] = ACTIONS(1749), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_match] = ACTIONS(1749), - [anon_sym_async] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_while] = ACTIONS(1749), - [anon_sym_try] = ACTIONS(1749), - [anon_sym_with] = ACTIONS(1749), - [anon_sym_def] = ACTIONS(1749), - [anon_sym_global] = ACTIONS(1749), - [anon_sym_nonlocal] = ACTIONS(1749), - [anon_sym_exec] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_class] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_AT] = ACTIONS(1751), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_PLUS] = ACTIONS(1751), - [anon_sym_not] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_lambda] = ACTIONS(1749), - [anon_sym_yield] = ACTIONS(1749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1751), - [anon_sym_None] = ACTIONS(1749), - [sym_integer] = ACTIONS(1749), - [sym_float] = ACTIONS(1751), - [anon_sym_await] = ACTIONS(1749), - [anon_sym_api] = ACTIONS(1749), - [sym_true] = ACTIONS(1749), - [sym_false] = ACTIONS(1749), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1749), - [anon_sym_include] = ACTIONS(1749), - [anon_sym_DEF] = ACTIONS(1749), - [anon_sym_cdef] = ACTIONS(1749), - [anon_sym_cpdef] = ACTIONS(1749), - [anon_sym_int] = ACTIONS(1749), - [anon_sym_double] = ACTIONS(1749), - [anon_sym_complex] = ACTIONS(1749), - [anon_sym_new] = ACTIONS(1749), - [anon_sym_signed] = ACTIONS(1749), - [anon_sym_unsigned] = ACTIONS(1749), - [anon_sym_char] = ACTIONS(1749), - [anon_sym_short] = ACTIONS(1749), - [anon_sym_long] = ACTIONS(1749), - [anon_sym_const] = ACTIONS(1749), - [anon_sym_volatile] = ACTIONS(1749), - [anon_sym_ctypedef] = ACTIONS(1749), - [anon_sym_struct] = ACTIONS(1749), - [anon_sym_union] = ACTIONS(1749), - [anon_sym_enum] = ACTIONS(1749), - [anon_sym_cppclass] = ACTIONS(1749), - [anon_sym_fused] = ACTIONS(1749), - [anon_sym_public] = ACTIONS(1749), - [anon_sym_packed] = ACTIONS(1749), - [anon_sym_inline] = ACTIONS(1749), - [anon_sym_readonly] = ACTIONS(1749), - [anon_sym_sizeof] = ACTIONS(1749), - [sym__dedent] = ACTIONS(1751), - [sym_string_start] = ACTIONS(1751), + [sym_identifier] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym_import] = ACTIONS(1747), + [anon_sym_cimport] = ACTIONS(1747), + [anon_sym_from] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_STAR] = ACTIONS(1749), + [anon_sym_print] = ACTIONS(1747), + [anon_sym_assert] = ACTIONS(1747), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_del] = ACTIONS(1747), + [anon_sym_raise] = ACTIONS(1747), + [anon_sym_pass] = ACTIONS(1747), + [anon_sym_break] = ACTIONS(1747), + [anon_sym_continue] = ACTIONS(1747), + [anon_sym_if] = ACTIONS(1747), + [anon_sym_match] = ACTIONS(1747), + [anon_sym_async] = ACTIONS(1747), + [anon_sym_for] = ACTIONS(1747), + [anon_sym_while] = ACTIONS(1747), + [anon_sym_try] = ACTIONS(1747), + [anon_sym_with] = ACTIONS(1747), + [anon_sym_def] = ACTIONS(1747), + [anon_sym_global] = ACTIONS(1747), + [anon_sym_nonlocal] = ACTIONS(1747), + [anon_sym_exec] = ACTIONS(1747), + [anon_sym_type] = ACTIONS(1747), + [anon_sym_class] = ACTIONS(1747), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_AT] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1749), + [anon_sym_not] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1749), + [anon_sym_TILDE] = ACTIONS(1749), + [anon_sym_LT] = ACTIONS(1749), + [anon_sym_lambda] = ACTIONS(1747), + [anon_sym_yield] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1749), + [anon_sym_None] = ACTIONS(1747), + [sym_integer] = ACTIONS(1747), + [sym_float] = ACTIONS(1749), + [anon_sym_await] = ACTIONS(1747), + [anon_sym_api] = ACTIONS(1747), + [sym_true] = ACTIONS(1747), + [sym_false] = ACTIONS(1747), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1747), + [anon_sym_include] = ACTIONS(1747), + [anon_sym_DEF] = ACTIONS(1747), + [anon_sym_IF] = ACTIONS(1747), + [anon_sym_cdef] = ACTIONS(1747), + [anon_sym_cpdef] = ACTIONS(1747), + [anon_sym_int] = ACTIONS(1747), + [anon_sym_double] = ACTIONS(1747), + [anon_sym_complex] = ACTIONS(1747), + [anon_sym_new] = ACTIONS(1747), + [anon_sym_signed] = ACTIONS(1747), + [anon_sym_unsigned] = ACTIONS(1747), + [anon_sym_char] = ACTIONS(1747), + [anon_sym_short] = ACTIONS(1747), + [anon_sym_long] = ACTIONS(1747), + [anon_sym_const] = ACTIONS(1747), + [anon_sym_volatile] = ACTIONS(1747), + [anon_sym_ctypedef] = ACTIONS(1747), + [anon_sym_struct] = ACTIONS(1747), + [anon_sym_union] = ACTIONS(1747), + [anon_sym_enum] = ACTIONS(1747), + [anon_sym_cppclass] = ACTIONS(1747), + [anon_sym_fused] = ACTIONS(1747), + [anon_sym_public] = ACTIONS(1747), + [anon_sym_packed] = ACTIONS(1747), + [anon_sym_inline] = ACTIONS(1747), + [anon_sym_readonly] = ACTIONS(1747), + [anon_sym_sizeof] = ACTIONS(1747), + [sym__dedent] = ACTIONS(1749), + [sym_string_start] = ACTIONS(1749), }, [561] = { - [sym_identifier] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_import] = ACTIONS(1753), - [anon_sym_cimport] = ACTIONS(1753), - [anon_sym_from] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_print] = ACTIONS(1753), - [anon_sym_assert] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_del] = ACTIONS(1753), - [anon_sym_raise] = ACTIONS(1753), - [anon_sym_pass] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(1753), - [anon_sym_with] = ACTIONS(1753), - [anon_sym_def] = ACTIONS(1753), - [anon_sym_global] = ACTIONS(1753), - [anon_sym_nonlocal] = ACTIONS(1753), - [anon_sym_exec] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_class] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_AT] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_not] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(1755), - [anon_sym_lambda] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1755), - [anon_sym_None] = ACTIONS(1753), - [sym_integer] = ACTIONS(1753), - [sym_float] = ACTIONS(1755), - [anon_sym_await] = ACTIONS(1753), - [anon_sym_api] = ACTIONS(1753), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1753), - [anon_sym_include] = ACTIONS(1753), - [anon_sym_DEF] = ACTIONS(1753), - [anon_sym_cdef] = ACTIONS(1753), - [anon_sym_cpdef] = ACTIONS(1753), - [anon_sym_int] = ACTIONS(1753), - [anon_sym_double] = ACTIONS(1753), - [anon_sym_complex] = ACTIONS(1753), - [anon_sym_new] = ACTIONS(1753), - [anon_sym_signed] = ACTIONS(1753), - [anon_sym_unsigned] = ACTIONS(1753), - [anon_sym_char] = ACTIONS(1753), - [anon_sym_short] = ACTIONS(1753), - [anon_sym_long] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_volatile] = ACTIONS(1753), - [anon_sym_ctypedef] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_cppclass] = ACTIONS(1753), - [anon_sym_fused] = ACTIONS(1753), - [anon_sym_public] = ACTIONS(1753), - [anon_sym_packed] = ACTIONS(1753), - [anon_sym_inline] = ACTIONS(1753), - [anon_sym_readonly] = ACTIONS(1753), - [anon_sym_sizeof] = ACTIONS(1753), - [sym__dedent] = ACTIONS(1755), - [sym_string_start] = ACTIONS(1755), + [sym_identifier] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_import] = ACTIONS(1743), + [anon_sym_cimport] = ACTIONS(1743), + [anon_sym_from] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_STAR] = ACTIONS(1745), + [anon_sym_print] = ACTIONS(1743), + [anon_sym_assert] = ACTIONS(1743), + [anon_sym_return] = ACTIONS(1743), + [anon_sym_del] = ACTIONS(1743), + [anon_sym_raise] = ACTIONS(1743), + [anon_sym_pass] = ACTIONS(1743), + [anon_sym_break] = ACTIONS(1743), + [anon_sym_continue] = ACTIONS(1743), + [anon_sym_if] = ACTIONS(1743), + [anon_sym_match] = ACTIONS(1743), + [anon_sym_async] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1743), + [anon_sym_while] = ACTIONS(1743), + [anon_sym_try] = ACTIONS(1743), + [anon_sym_with] = ACTIONS(1743), + [anon_sym_def] = ACTIONS(1743), + [anon_sym_global] = ACTIONS(1743), + [anon_sym_nonlocal] = ACTIONS(1743), + [anon_sym_exec] = ACTIONS(1743), + [anon_sym_type] = ACTIONS(1743), + [anon_sym_class] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_AT] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1745), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_LT] = ACTIONS(1745), + [anon_sym_lambda] = ACTIONS(1743), + [anon_sym_yield] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1745), + [anon_sym_None] = ACTIONS(1743), + [sym_integer] = ACTIONS(1743), + [sym_float] = ACTIONS(1745), + [anon_sym_await] = ACTIONS(1743), + [anon_sym_api] = ACTIONS(1743), + [sym_true] = ACTIONS(1743), + [sym_false] = ACTIONS(1743), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1743), + [anon_sym_include] = ACTIONS(1743), + [anon_sym_DEF] = ACTIONS(1743), + [anon_sym_IF] = ACTIONS(1743), + [anon_sym_cdef] = ACTIONS(1743), + [anon_sym_cpdef] = ACTIONS(1743), + [anon_sym_int] = ACTIONS(1743), + [anon_sym_double] = ACTIONS(1743), + [anon_sym_complex] = ACTIONS(1743), + [anon_sym_new] = ACTIONS(1743), + [anon_sym_signed] = ACTIONS(1743), + [anon_sym_unsigned] = ACTIONS(1743), + [anon_sym_char] = ACTIONS(1743), + [anon_sym_short] = ACTIONS(1743), + [anon_sym_long] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_volatile] = ACTIONS(1743), + [anon_sym_ctypedef] = ACTIONS(1743), + [anon_sym_struct] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_enum] = ACTIONS(1743), + [anon_sym_cppclass] = ACTIONS(1743), + [anon_sym_fused] = ACTIONS(1743), + [anon_sym_public] = ACTIONS(1743), + [anon_sym_packed] = ACTIONS(1743), + [anon_sym_inline] = ACTIONS(1743), + [anon_sym_readonly] = ACTIONS(1743), + [anon_sym_sizeof] = ACTIONS(1743), + [sym__dedent] = ACTIONS(1745), + [sym_string_start] = ACTIONS(1745), }, [562] = { - [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), + [sym_identifier] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1745), + [anon_sym_import] = ACTIONS(1743), + [anon_sym_cimport] = ACTIONS(1743), + [anon_sym_from] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1745), + [anon_sym_STAR] = ACTIONS(1745), + [anon_sym_print] = ACTIONS(1743), + [anon_sym_assert] = ACTIONS(1743), + [anon_sym_return] = ACTIONS(1743), + [anon_sym_del] = ACTIONS(1743), + [anon_sym_raise] = ACTIONS(1743), + [anon_sym_pass] = ACTIONS(1743), + [anon_sym_break] = ACTIONS(1743), + [anon_sym_continue] = ACTIONS(1743), + [anon_sym_if] = ACTIONS(1743), + [anon_sym_match] = ACTIONS(1743), + [anon_sym_async] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1743), + [anon_sym_while] = ACTIONS(1743), + [anon_sym_try] = ACTIONS(1743), + [anon_sym_with] = ACTIONS(1743), + [anon_sym_def] = ACTIONS(1743), + [anon_sym_global] = ACTIONS(1743), + [anon_sym_nonlocal] = ACTIONS(1743), + [anon_sym_exec] = ACTIONS(1743), + [anon_sym_type] = ACTIONS(1743), + [anon_sym_class] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1745), + [anon_sym_AT] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1745), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_LT] = ACTIONS(1745), + [anon_sym_lambda] = ACTIONS(1743), + [anon_sym_yield] = ACTIONS(1743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1745), + [anon_sym_None] = ACTIONS(1743), + [sym_integer] = ACTIONS(1743), + [sym_float] = ACTIONS(1745), + [anon_sym_await] = ACTIONS(1743), + [anon_sym_api] = ACTIONS(1743), + [sym_true] = ACTIONS(1743), + [sym_false] = ACTIONS(1743), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1743), + [anon_sym_include] = ACTIONS(1743), + [anon_sym_DEF] = ACTIONS(1743), + [anon_sym_IF] = ACTIONS(1743), + [anon_sym_cdef] = ACTIONS(1743), + [anon_sym_cpdef] = ACTIONS(1743), + [anon_sym_int] = ACTIONS(1743), + [anon_sym_double] = ACTIONS(1743), + [anon_sym_complex] = ACTIONS(1743), + [anon_sym_new] = ACTIONS(1743), + [anon_sym_signed] = ACTIONS(1743), + [anon_sym_unsigned] = ACTIONS(1743), + [anon_sym_char] = ACTIONS(1743), + [anon_sym_short] = ACTIONS(1743), + [anon_sym_long] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_volatile] = ACTIONS(1743), + [anon_sym_ctypedef] = ACTIONS(1743), + [anon_sym_struct] = ACTIONS(1743), + [anon_sym_union] = ACTIONS(1743), + [anon_sym_enum] = ACTIONS(1743), + [anon_sym_cppclass] = ACTIONS(1743), + [anon_sym_fused] = ACTIONS(1743), + [anon_sym_public] = ACTIONS(1743), + [anon_sym_packed] = ACTIONS(1743), + [anon_sym_inline] = ACTIONS(1743), + [anon_sym_readonly] = ACTIONS(1743), + [anon_sym_sizeof] = ACTIONS(1743), + [sym__dedent] = ACTIONS(1745), + [sym_string_start] = ACTIONS(1745), }, [563] = { - [sym_identifier] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_import] = ACTIONS(1761), - [anon_sym_cimport] = ACTIONS(1761), - [anon_sym_from] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_print] = ACTIONS(1761), - [anon_sym_assert] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_del] = ACTIONS(1761), - [anon_sym_raise] = ACTIONS(1761), - [anon_sym_pass] = ACTIONS(1761), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_async] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1761), - [anon_sym_try] = ACTIONS(1761), - [anon_sym_with] = ACTIONS(1761), - [anon_sym_def] = ACTIONS(1761), - [anon_sym_global] = ACTIONS(1761), - [anon_sym_nonlocal] = ACTIONS(1761), - [anon_sym_exec] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1761), - [anon_sym_class] = ACTIONS(1761), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_AT] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_not] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_lambda] = ACTIONS(1761), - [anon_sym_yield] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1763), - [anon_sym_None] = ACTIONS(1761), - [sym_integer] = ACTIONS(1761), - [sym_float] = ACTIONS(1763), - [anon_sym_await] = ACTIONS(1761), - [anon_sym_api] = ACTIONS(1761), - [sym_true] = ACTIONS(1761), - [sym_false] = ACTIONS(1761), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1761), - [anon_sym_include] = ACTIONS(1761), - [anon_sym_DEF] = ACTIONS(1761), - [anon_sym_cdef] = ACTIONS(1761), - [anon_sym_cpdef] = ACTIONS(1761), - [anon_sym_int] = ACTIONS(1761), - [anon_sym_double] = ACTIONS(1761), - [anon_sym_complex] = ACTIONS(1761), - [anon_sym_new] = ACTIONS(1761), - [anon_sym_signed] = ACTIONS(1761), - [anon_sym_unsigned] = ACTIONS(1761), - [anon_sym_char] = ACTIONS(1761), - [anon_sym_short] = ACTIONS(1761), - [anon_sym_long] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1761), - [anon_sym_volatile] = ACTIONS(1761), - [anon_sym_ctypedef] = ACTIONS(1761), - [anon_sym_struct] = ACTIONS(1761), - [anon_sym_union] = ACTIONS(1761), - [anon_sym_enum] = ACTIONS(1761), - [anon_sym_cppclass] = ACTIONS(1761), - [anon_sym_fused] = ACTIONS(1761), - [anon_sym_public] = ACTIONS(1761), - [anon_sym_packed] = ACTIONS(1761), - [anon_sym_inline] = ACTIONS(1761), - [anon_sym_readonly] = ACTIONS(1761), - [anon_sym_sizeof] = ACTIONS(1761), - [sym__dedent] = ACTIONS(1763), - [sym_string_start] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1753), + [anon_sym_import] = ACTIONS(1751), + [anon_sym_cimport] = ACTIONS(1751), + [anon_sym_from] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_print] = ACTIONS(1751), + [anon_sym_assert] = ACTIONS(1751), + [anon_sym_return] = ACTIONS(1751), + [anon_sym_del] = ACTIONS(1751), + [anon_sym_raise] = ACTIONS(1751), + [anon_sym_pass] = ACTIONS(1751), + [anon_sym_break] = ACTIONS(1751), + [anon_sym_continue] = ACTIONS(1751), + [anon_sym_if] = ACTIONS(1751), + [anon_sym_match] = ACTIONS(1751), + [anon_sym_async] = ACTIONS(1751), + [anon_sym_for] = ACTIONS(1751), + [anon_sym_while] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1751), + [anon_sym_with] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1751), + [anon_sym_global] = ACTIONS(1751), + [anon_sym_nonlocal] = ACTIONS(1751), + [anon_sym_exec] = ACTIONS(1751), + [anon_sym_type] = ACTIONS(1751), + [anon_sym_class] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1753), + [anon_sym_AT] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_PLUS] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1753), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1753), + [anon_sym_lambda] = ACTIONS(1751), + [anon_sym_yield] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1753), + [anon_sym_None] = ACTIONS(1751), + [sym_integer] = ACTIONS(1751), + [sym_float] = ACTIONS(1753), + [anon_sym_await] = ACTIONS(1751), + [anon_sym_api] = ACTIONS(1751), + [sym_true] = ACTIONS(1751), + [sym_false] = ACTIONS(1751), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1751), + [anon_sym_include] = ACTIONS(1751), + [anon_sym_DEF] = ACTIONS(1751), + [anon_sym_IF] = ACTIONS(1751), + [anon_sym_cdef] = ACTIONS(1751), + [anon_sym_cpdef] = ACTIONS(1751), + [anon_sym_int] = ACTIONS(1751), + [anon_sym_double] = ACTIONS(1751), + [anon_sym_complex] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1751), + [anon_sym_signed] = ACTIONS(1751), + [anon_sym_unsigned] = ACTIONS(1751), + [anon_sym_char] = ACTIONS(1751), + [anon_sym_short] = ACTIONS(1751), + [anon_sym_long] = ACTIONS(1751), + [anon_sym_const] = ACTIONS(1751), + [anon_sym_volatile] = ACTIONS(1751), + [anon_sym_ctypedef] = ACTIONS(1751), + [anon_sym_struct] = ACTIONS(1751), + [anon_sym_union] = ACTIONS(1751), + [anon_sym_enum] = ACTIONS(1751), + [anon_sym_cppclass] = ACTIONS(1751), + [anon_sym_fused] = ACTIONS(1751), + [anon_sym_public] = ACTIONS(1751), + [anon_sym_packed] = ACTIONS(1751), + [anon_sym_inline] = ACTIONS(1751), + [anon_sym_readonly] = ACTIONS(1751), + [anon_sym_sizeof] = ACTIONS(1751), + [sym__dedent] = ACTIONS(1753), + [sym_string_start] = ACTIONS(1753), }, [564] = { - [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), + [sym_identifier] = ACTIONS(1755), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_import] = ACTIONS(1755), + [anon_sym_cimport] = ACTIONS(1755), + [anon_sym_from] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_STAR] = ACTIONS(1757), + [anon_sym_print] = ACTIONS(1755), + [anon_sym_assert] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_del] = ACTIONS(1755), + [anon_sym_raise] = ACTIONS(1755), + [anon_sym_pass] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1755), + [anon_sym_async] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_with] = ACTIONS(1755), + [anon_sym_def] = ACTIONS(1755), + [anon_sym_global] = ACTIONS(1755), + [anon_sym_nonlocal] = ACTIONS(1755), + [anon_sym_exec] = ACTIONS(1755), + [anon_sym_type] = ACTIONS(1755), + [anon_sym_class] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_AT] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1757), + [anon_sym_not] = ACTIONS(1755), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_LT] = ACTIONS(1757), + [anon_sym_lambda] = ACTIONS(1755), + [anon_sym_yield] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1757), + [anon_sym_None] = ACTIONS(1755), + [sym_integer] = ACTIONS(1755), + [sym_float] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1755), + [anon_sym_api] = ACTIONS(1755), + [sym_true] = ACTIONS(1755), + [sym_false] = ACTIONS(1755), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1755), + [anon_sym_include] = ACTIONS(1755), + [anon_sym_DEF] = ACTIONS(1755), + [anon_sym_IF] = ACTIONS(1755), + [anon_sym_cdef] = ACTIONS(1755), + [anon_sym_cpdef] = ACTIONS(1755), + [anon_sym_int] = ACTIONS(1755), + [anon_sym_double] = ACTIONS(1755), + [anon_sym_complex] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_signed] = ACTIONS(1755), + [anon_sym_unsigned] = ACTIONS(1755), + [anon_sym_char] = ACTIONS(1755), + [anon_sym_short] = ACTIONS(1755), + [anon_sym_long] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [anon_sym_volatile] = ACTIONS(1755), + [anon_sym_ctypedef] = ACTIONS(1755), + [anon_sym_struct] = ACTIONS(1755), + [anon_sym_union] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [anon_sym_cppclass] = ACTIONS(1755), + [anon_sym_fused] = ACTIONS(1755), + [anon_sym_public] = ACTIONS(1755), + [anon_sym_packed] = ACTIONS(1755), + [anon_sym_inline] = ACTIONS(1755), + [anon_sym_readonly] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1755), + [sym__dedent] = ACTIONS(1757), + [sym_string_start] = ACTIONS(1757), }, [565] = { - [sym_identifier] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_import] = ACTIONS(1769), - [anon_sym_cimport] = ACTIONS(1769), - [anon_sym_from] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_print] = ACTIONS(1769), - [anon_sym_assert] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_del] = ACTIONS(1769), - [anon_sym_raise] = ACTIONS(1769), - [anon_sym_pass] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_async] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_with] = ACTIONS(1769), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_global] = ACTIONS(1769), - [anon_sym_nonlocal] = ACTIONS(1769), - [anon_sym_exec] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_class] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_AT] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_not] = ACTIONS(1769), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_TILDE] = ACTIONS(1771), - [anon_sym_LT] = ACTIONS(1771), - [anon_sym_lambda] = ACTIONS(1769), - [anon_sym_yield] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1771), - [anon_sym_None] = ACTIONS(1769), - [sym_integer] = ACTIONS(1769), - [sym_float] = ACTIONS(1771), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_api] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1769), - [anon_sym_include] = ACTIONS(1769), - [anon_sym_DEF] = ACTIONS(1769), - [anon_sym_cdef] = ACTIONS(1769), - [anon_sym_cpdef] = ACTIONS(1769), - [anon_sym_int] = ACTIONS(1769), - [anon_sym_double] = ACTIONS(1769), - [anon_sym_complex] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_signed] = ACTIONS(1769), - [anon_sym_unsigned] = ACTIONS(1769), - [anon_sym_char] = ACTIONS(1769), - [anon_sym_short] = ACTIONS(1769), - [anon_sym_long] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_volatile] = ACTIONS(1769), - [anon_sym_ctypedef] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_cppclass] = ACTIONS(1769), - [anon_sym_fused] = ACTIONS(1769), - [anon_sym_public] = ACTIONS(1769), - [anon_sym_packed] = ACTIONS(1769), - [anon_sym_inline] = ACTIONS(1769), - [anon_sym_readonly] = ACTIONS(1769), - [anon_sym_sizeof] = ACTIONS(1769), - [sym__dedent] = ACTIONS(1771), - [sym_string_start] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(1759), + [anon_sym_cimport] = ACTIONS(1759), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_print] = ACTIONS(1759), + [anon_sym_assert] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_del] = ACTIONS(1759), + [anon_sym_raise] = ACTIONS(1759), + [anon_sym_pass] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1759), + [anon_sym_async] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + [anon_sym_def] = ACTIONS(1759), + [anon_sym_global] = ACTIONS(1759), + [anon_sym_nonlocal] = ACTIONS(1759), + [anon_sym_exec] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_class] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1761), + [anon_sym_AT] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_not] = ACTIONS(1759), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_lambda] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1761), + [anon_sym_None] = ACTIONS(1759), + [sym_integer] = ACTIONS(1759), + [sym_float] = ACTIONS(1761), + [anon_sym_await] = ACTIONS(1759), + [anon_sym_api] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_include] = ACTIONS(1759), + [anon_sym_DEF] = ACTIONS(1759), + [anon_sym_IF] = ACTIONS(1759), + [anon_sym_cdef] = ACTIONS(1759), + [anon_sym_cpdef] = ACTIONS(1759), + [anon_sym_int] = ACTIONS(1759), + [anon_sym_double] = ACTIONS(1759), + [anon_sym_complex] = ACTIONS(1759), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_signed] = ACTIONS(1759), + [anon_sym_unsigned] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_short] = ACTIONS(1759), + [anon_sym_long] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_volatile] = ACTIONS(1759), + [anon_sym_ctypedef] = ACTIONS(1759), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [anon_sym_cppclass] = ACTIONS(1759), + [anon_sym_fused] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_packed] = ACTIONS(1759), + [anon_sym_inline] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_sizeof] = ACTIONS(1759), + [sym__dedent] = ACTIONS(1761), + [sym_string_start] = ACTIONS(1761), }, [566] = { - [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), + [sym_identifier] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_import] = ACTIONS(1763), + [anon_sym_cimport] = ACTIONS(1763), + [anon_sym_from] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_print] = ACTIONS(1763), + [anon_sym_assert] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_del] = ACTIONS(1763), + [anon_sym_raise] = ACTIONS(1763), + [anon_sym_pass] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_match] = ACTIONS(1763), + [anon_sym_async] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1763), + [anon_sym_try] = ACTIONS(1763), + [anon_sym_with] = ACTIONS(1763), + [anon_sym_def] = ACTIONS(1763), + [anon_sym_global] = ACTIONS(1763), + [anon_sym_nonlocal] = ACTIONS(1763), + [anon_sym_exec] = ACTIONS(1763), + [anon_sym_type] = ACTIONS(1763), + [anon_sym_class] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_AT] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_not] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_lambda] = ACTIONS(1763), + [anon_sym_yield] = ACTIONS(1763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1765), + [anon_sym_None] = ACTIONS(1763), + [sym_integer] = ACTIONS(1763), + [sym_float] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_api] = ACTIONS(1763), + [sym_true] = ACTIONS(1763), + [sym_false] = ACTIONS(1763), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1763), + [anon_sym_include] = ACTIONS(1763), + [anon_sym_DEF] = ACTIONS(1763), + [anon_sym_IF] = ACTIONS(1763), + [anon_sym_cdef] = ACTIONS(1763), + [anon_sym_cpdef] = ACTIONS(1763), + [anon_sym_int] = ACTIONS(1763), + [anon_sym_double] = ACTIONS(1763), + [anon_sym_complex] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1763), + [anon_sym_signed] = ACTIONS(1763), + [anon_sym_unsigned] = ACTIONS(1763), + [anon_sym_char] = ACTIONS(1763), + [anon_sym_short] = ACTIONS(1763), + [anon_sym_long] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_volatile] = ACTIONS(1763), + [anon_sym_ctypedef] = ACTIONS(1763), + [anon_sym_struct] = ACTIONS(1763), + [anon_sym_union] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [anon_sym_cppclass] = ACTIONS(1763), + [anon_sym_fused] = ACTIONS(1763), + [anon_sym_public] = ACTIONS(1763), + [anon_sym_packed] = ACTIONS(1763), + [anon_sym_inline] = ACTIONS(1763), + [anon_sym_readonly] = ACTIONS(1763), + [anon_sym_sizeof] = ACTIONS(1763), + [sym__dedent] = ACTIONS(1765), + [sym_string_start] = ACTIONS(1765), }, [567] = { - [sym_identifier] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_import] = ACTIONS(1777), - [anon_sym_cimport] = ACTIONS(1777), - [anon_sym_from] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1779), - [anon_sym_print] = ACTIONS(1777), - [anon_sym_assert] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_del] = ACTIONS(1777), - [anon_sym_raise] = ACTIONS(1777), - [anon_sym_pass] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_async] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_try] = ACTIONS(1777), - [anon_sym_with] = ACTIONS(1777), - [anon_sym_def] = ACTIONS(1777), - [anon_sym_global] = ACTIONS(1777), - [anon_sym_nonlocal] = ACTIONS(1777), - [anon_sym_exec] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_class] = ACTIONS(1777), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_AT] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_not] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_TILDE] = ACTIONS(1779), - [anon_sym_LT] = ACTIONS(1779), - [anon_sym_lambda] = ACTIONS(1777), - [anon_sym_yield] = ACTIONS(1777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1779), - [anon_sym_None] = ACTIONS(1777), - [sym_integer] = ACTIONS(1777), - [sym_float] = ACTIONS(1779), - [anon_sym_await] = ACTIONS(1777), - [anon_sym_api] = ACTIONS(1777), - [sym_true] = ACTIONS(1777), - [sym_false] = ACTIONS(1777), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1777), - [anon_sym_include] = ACTIONS(1777), - [anon_sym_DEF] = ACTIONS(1777), - [anon_sym_cdef] = ACTIONS(1777), - [anon_sym_cpdef] = ACTIONS(1777), - [anon_sym_int] = ACTIONS(1777), - [anon_sym_double] = ACTIONS(1777), - [anon_sym_complex] = ACTIONS(1777), - [anon_sym_new] = ACTIONS(1777), - [anon_sym_signed] = ACTIONS(1777), - [anon_sym_unsigned] = ACTIONS(1777), - [anon_sym_char] = ACTIONS(1777), - [anon_sym_short] = ACTIONS(1777), - [anon_sym_long] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [anon_sym_volatile] = ACTIONS(1777), - [anon_sym_ctypedef] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1777), - [anon_sym_enum] = ACTIONS(1777), - [anon_sym_cppclass] = ACTIONS(1777), - [anon_sym_fused] = ACTIONS(1777), - [anon_sym_public] = ACTIONS(1777), - [anon_sym_packed] = ACTIONS(1777), - [anon_sym_inline] = ACTIONS(1777), - [anon_sym_readonly] = ACTIONS(1777), - [anon_sym_sizeof] = ACTIONS(1777), - [sym__dedent] = ACTIONS(1779), - [sym_string_start] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_import] = ACTIONS(1767), + [anon_sym_cimport] = ACTIONS(1767), + [anon_sym_from] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_print] = ACTIONS(1767), + [anon_sym_assert] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_del] = ACTIONS(1767), + [anon_sym_raise] = ACTIONS(1767), + [anon_sym_pass] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_while] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1767), + [anon_sym_with] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1767), + [anon_sym_global] = ACTIONS(1767), + [anon_sym_nonlocal] = ACTIONS(1767), + [anon_sym_exec] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_class] = ACTIONS(1767), + [anon_sym_LBRACK] = ACTIONS(1769), + [anon_sym_AT] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_not] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_lambda] = ACTIONS(1767), + [anon_sym_yield] = ACTIONS(1767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1769), + [anon_sym_None] = ACTIONS(1767), + [sym_integer] = ACTIONS(1767), + [sym_float] = ACTIONS(1769), + [anon_sym_await] = ACTIONS(1767), + [anon_sym_api] = ACTIONS(1767), + [sym_true] = ACTIONS(1767), + [sym_false] = ACTIONS(1767), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1767), + [anon_sym_include] = ACTIONS(1767), + [anon_sym_DEF] = ACTIONS(1767), + [anon_sym_IF] = ACTIONS(1767), + [anon_sym_cdef] = ACTIONS(1767), + [anon_sym_cpdef] = ACTIONS(1767), + [anon_sym_int] = ACTIONS(1767), + [anon_sym_double] = ACTIONS(1767), + [anon_sym_complex] = ACTIONS(1767), + [anon_sym_new] = ACTIONS(1767), + [anon_sym_signed] = ACTIONS(1767), + [anon_sym_unsigned] = ACTIONS(1767), + [anon_sym_char] = ACTIONS(1767), + [anon_sym_short] = ACTIONS(1767), + [anon_sym_long] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_volatile] = ACTIONS(1767), + [anon_sym_ctypedef] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_cppclass] = ACTIONS(1767), + [anon_sym_fused] = ACTIONS(1767), + [anon_sym_public] = ACTIONS(1767), + [anon_sym_packed] = ACTIONS(1767), + [anon_sym_inline] = ACTIONS(1767), + [anon_sym_readonly] = ACTIONS(1767), + [anon_sym_sizeof] = ACTIONS(1767), + [sym__dedent] = ACTIONS(1769), + [sym_string_start] = ACTIONS(1769), }, [568] = { - [sym_identifier] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_import] = ACTIONS(1781), - [anon_sym_cimport] = ACTIONS(1781), - [anon_sym_from] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1783), - [anon_sym_print] = ACTIONS(1781), - [anon_sym_assert] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_del] = ACTIONS(1781), - [anon_sym_raise] = ACTIONS(1781), - [anon_sym_pass] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_async] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1781), - [anon_sym_with] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1781), - [anon_sym_global] = ACTIONS(1781), - [anon_sym_nonlocal] = ACTIONS(1781), - [anon_sym_exec] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_class] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_AT] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_not] = ACTIONS(1781), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_lambda] = ACTIONS(1781), - [anon_sym_yield] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1783), - [anon_sym_None] = ACTIONS(1781), - [sym_integer] = ACTIONS(1781), - [sym_float] = ACTIONS(1783), - [anon_sym_await] = ACTIONS(1781), - [anon_sym_api] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1781), - [anon_sym_include] = ACTIONS(1781), - [anon_sym_DEF] = ACTIONS(1781), - [anon_sym_cdef] = ACTIONS(1781), - [anon_sym_cpdef] = ACTIONS(1781), - [anon_sym_int] = ACTIONS(1781), - [anon_sym_double] = ACTIONS(1781), - [anon_sym_complex] = ACTIONS(1781), - [anon_sym_new] = ACTIONS(1781), - [anon_sym_signed] = ACTIONS(1781), - [anon_sym_unsigned] = ACTIONS(1781), - [anon_sym_char] = ACTIONS(1781), - [anon_sym_short] = ACTIONS(1781), - [anon_sym_long] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_volatile] = ACTIONS(1781), - [anon_sym_ctypedef] = ACTIONS(1781), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_union] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [anon_sym_cppclass] = ACTIONS(1781), - [anon_sym_fused] = ACTIONS(1781), - [anon_sym_public] = ACTIONS(1781), - [anon_sym_packed] = ACTIONS(1781), - [anon_sym_inline] = ACTIONS(1781), - [anon_sym_readonly] = ACTIONS(1781), - [anon_sym_sizeof] = ACTIONS(1781), - [sym__dedent] = ACTIONS(1783), - [sym_string_start] = ACTIONS(1783), + [sym_identifier] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_import] = ACTIONS(1771), + [anon_sym_cimport] = ACTIONS(1771), + [anon_sym_from] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_STAR] = ACTIONS(1773), + [anon_sym_print] = ACTIONS(1771), + [anon_sym_assert] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_del] = ACTIONS(1771), + [anon_sym_raise] = ACTIONS(1771), + [anon_sym_pass] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_async] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_with] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1771), + [anon_sym_global] = ACTIONS(1771), + [anon_sym_nonlocal] = ACTIONS(1771), + [anon_sym_exec] = ACTIONS(1771), + [anon_sym_type] = ACTIONS(1771), + [anon_sym_class] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_AT] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1773), + [anon_sym_not] = ACTIONS(1771), + [anon_sym_AMP] = ACTIONS(1773), + [anon_sym_TILDE] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1773), + [anon_sym_lambda] = ACTIONS(1771), + [anon_sym_yield] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_None] = ACTIONS(1771), + [sym_integer] = ACTIONS(1771), + [sym_float] = ACTIONS(1773), + [anon_sym_await] = ACTIONS(1771), + [anon_sym_api] = ACTIONS(1771), + [sym_true] = ACTIONS(1771), + [sym_false] = ACTIONS(1771), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1771), + [anon_sym_include] = ACTIONS(1771), + [anon_sym_DEF] = ACTIONS(1771), + [anon_sym_IF] = ACTIONS(1771), + [anon_sym_cdef] = ACTIONS(1771), + [anon_sym_cpdef] = ACTIONS(1771), + [anon_sym_int] = ACTIONS(1771), + [anon_sym_double] = ACTIONS(1771), + [anon_sym_complex] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_signed] = ACTIONS(1771), + [anon_sym_unsigned] = ACTIONS(1771), + [anon_sym_char] = ACTIONS(1771), + [anon_sym_short] = ACTIONS(1771), + [anon_sym_long] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [anon_sym_volatile] = ACTIONS(1771), + [anon_sym_ctypedef] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1771), + [anon_sym_union] = ACTIONS(1771), + [anon_sym_enum] = ACTIONS(1771), + [anon_sym_cppclass] = ACTIONS(1771), + [anon_sym_fused] = ACTIONS(1771), + [anon_sym_public] = ACTIONS(1771), + [anon_sym_packed] = ACTIONS(1771), + [anon_sym_inline] = ACTIONS(1771), + [anon_sym_readonly] = ACTIONS(1771), + [anon_sym_sizeof] = ACTIONS(1771), + [sym__dedent] = ACTIONS(1773), + [sym_string_start] = ACTIONS(1773), }, [569] = { - [sym_identifier] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_import] = ACTIONS(1785), - [anon_sym_cimport] = ACTIONS(1785), - [anon_sym_from] = ACTIONS(1785), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_STAR] = ACTIONS(1787), - [anon_sym_print] = ACTIONS(1785), - [anon_sym_assert] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_del] = ACTIONS(1785), - [anon_sym_raise] = ACTIONS(1785), - [anon_sym_pass] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_async] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [anon_sym_with] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1785), - [anon_sym_global] = ACTIONS(1785), - [anon_sym_nonlocal] = ACTIONS(1785), - [anon_sym_exec] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_class] = ACTIONS(1785), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_AT] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_PLUS] = ACTIONS(1787), - [anon_sym_not] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_TILDE] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_lambda] = ACTIONS(1785), - [anon_sym_yield] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1787), - [anon_sym_None] = ACTIONS(1785), - [sym_integer] = ACTIONS(1785), - [sym_float] = ACTIONS(1787), - [anon_sym_await] = ACTIONS(1785), - [anon_sym_api] = ACTIONS(1785), - [sym_true] = ACTIONS(1785), - [sym_false] = ACTIONS(1785), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1785), - [anon_sym_include] = ACTIONS(1785), - [anon_sym_DEF] = ACTIONS(1785), - [anon_sym_cdef] = ACTIONS(1785), - [anon_sym_cpdef] = ACTIONS(1785), - [anon_sym_int] = ACTIONS(1785), - [anon_sym_double] = ACTIONS(1785), - [anon_sym_complex] = ACTIONS(1785), - [anon_sym_new] = ACTIONS(1785), - [anon_sym_signed] = ACTIONS(1785), - [anon_sym_unsigned] = ACTIONS(1785), - [anon_sym_char] = ACTIONS(1785), - [anon_sym_short] = ACTIONS(1785), - [anon_sym_long] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_volatile] = ACTIONS(1785), - [anon_sym_ctypedef] = ACTIONS(1785), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_cppclass] = ACTIONS(1785), - [anon_sym_fused] = ACTIONS(1785), - [anon_sym_public] = ACTIONS(1785), - [anon_sym_packed] = ACTIONS(1785), - [anon_sym_inline] = ACTIONS(1785), - [anon_sym_readonly] = ACTIONS(1785), - [anon_sym_sizeof] = ACTIONS(1785), - [sym__dedent] = ACTIONS(1787), - [sym_string_start] = ACTIONS(1787), + [sym_identifier] = ACTIONS(1775), + [anon_sym_SEMI] = ACTIONS(1777), + [anon_sym_import] = ACTIONS(1775), + [anon_sym_cimport] = ACTIONS(1775), + [anon_sym_from] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_print] = ACTIONS(1775), + [anon_sym_assert] = ACTIONS(1775), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_del] = ACTIONS(1775), + [anon_sym_raise] = ACTIONS(1775), + [anon_sym_pass] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1775), + [anon_sym_continue] = ACTIONS(1775), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_match] = ACTIONS(1775), + [anon_sym_async] = ACTIONS(1775), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_while] = ACTIONS(1775), + [anon_sym_try] = ACTIONS(1775), + [anon_sym_with] = ACTIONS(1775), + [anon_sym_def] = ACTIONS(1775), + [anon_sym_global] = ACTIONS(1775), + [anon_sym_nonlocal] = ACTIONS(1775), + [anon_sym_exec] = ACTIONS(1775), + [anon_sym_type] = ACTIONS(1775), + [anon_sym_class] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_AT] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_PLUS] = ACTIONS(1777), + [anon_sym_not] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1777), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(1777), + [anon_sym_lambda] = ACTIONS(1775), + [anon_sym_yield] = ACTIONS(1775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1777), + [anon_sym_None] = ACTIONS(1775), + [sym_integer] = ACTIONS(1775), + [sym_float] = ACTIONS(1777), + [anon_sym_await] = ACTIONS(1775), + [anon_sym_api] = ACTIONS(1775), + [sym_true] = ACTIONS(1775), + [sym_false] = ACTIONS(1775), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1775), + [anon_sym_include] = ACTIONS(1775), + [anon_sym_DEF] = ACTIONS(1775), + [anon_sym_IF] = ACTIONS(1775), + [anon_sym_cdef] = ACTIONS(1775), + [anon_sym_cpdef] = ACTIONS(1775), + [anon_sym_int] = ACTIONS(1775), + [anon_sym_double] = ACTIONS(1775), + [anon_sym_complex] = ACTIONS(1775), + [anon_sym_new] = ACTIONS(1775), + [anon_sym_signed] = ACTIONS(1775), + [anon_sym_unsigned] = ACTIONS(1775), + [anon_sym_char] = ACTIONS(1775), + [anon_sym_short] = ACTIONS(1775), + [anon_sym_long] = ACTIONS(1775), + [anon_sym_const] = ACTIONS(1775), + [anon_sym_volatile] = ACTIONS(1775), + [anon_sym_ctypedef] = ACTIONS(1775), + [anon_sym_struct] = ACTIONS(1775), + [anon_sym_union] = ACTIONS(1775), + [anon_sym_enum] = ACTIONS(1775), + [anon_sym_cppclass] = ACTIONS(1775), + [anon_sym_fused] = ACTIONS(1775), + [anon_sym_public] = ACTIONS(1775), + [anon_sym_packed] = ACTIONS(1775), + [anon_sym_inline] = ACTIONS(1775), + [anon_sym_readonly] = ACTIONS(1775), + [anon_sym_sizeof] = ACTIONS(1775), + [sym__dedent] = ACTIONS(1777), + [sym_string_start] = ACTIONS(1777), }, [570] = { - [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), + [sym_identifier] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1779), + [anon_sym_cimport] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_print] = ACTIONS(1779), + [anon_sym_assert] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_del] = ACTIONS(1779), + [anon_sym_raise] = ACTIONS(1779), + [anon_sym_pass] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_async] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_with] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1779), + [anon_sym_global] = ACTIONS(1779), + [anon_sym_nonlocal] = ACTIONS(1779), + [anon_sym_exec] = ACTIONS(1779), + [anon_sym_type] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1779), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_not] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_lambda] = ACTIONS(1779), + [anon_sym_yield] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1781), + [anon_sym_None] = ACTIONS(1779), + [sym_integer] = ACTIONS(1779), + [sym_float] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1779), + [anon_sym_api] = ACTIONS(1779), + [sym_true] = ACTIONS(1779), + [sym_false] = ACTIONS(1779), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1779), + [anon_sym_include] = ACTIONS(1779), + [anon_sym_DEF] = ACTIONS(1779), + [anon_sym_IF] = ACTIONS(1779), + [anon_sym_cdef] = ACTIONS(1779), + [anon_sym_cpdef] = ACTIONS(1779), + [anon_sym_int] = ACTIONS(1779), + [anon_sym_double] = ACTIONS(1779), + [anon_sym_complex] = ACTIONS(1779), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_signed] = ACTIONS(1779), + [anon_sym_unsigned] = ACTIONS(1779), + [anon_sym_char] = ACTIONS(1779), + [anon_sym_short] = ACTIONS(1779), + [anon_sym_long] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [anon_sym_volatile] = ACTIONS(1779), + [anon_sym_ctypedef] = ACTIONS(1779), + [anon_sym_struct] = ACTIONS(1779), + [anon_sym_union] = ACTIONS(1779), + [anon_sym_enum] = ACTIONS(1779), + [anon_sym_cppclass] = ACTIONS(1779), + [anon_sym_fused] = ACTIONS(1779), + [anon_sym_public] = ACTIONS(1779), + [anon_sym_packed] = ACTIONS(1779), + [anon_sym_inline] = ACTIONS(1779), + [anon_sym_readonly] = ACTIONS(1779), + [anon_sym_sizeof] = ACTIONS(1779), + [sym__dedent] = ACTIONS(1781), + [sym_string_start] = ACTIONS(1781), }, [571] = { - [sym_identifier] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_import] = ACTIONS(1789), - [anon_sym_cimport] = ACTIONS(1789), - [anon_sym_from] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_print] = ACTIONS(1789), - [anon_sym_assert] = ACTIONS(1789), - [anon_sym_return] = ACTIONS(1789), - [anon_sym_del] = ACTIONS(1789), - [anon_sym_raise] = ACTIONS(1789), - [anon_sym_pass] = ACTIONS(1789), - [anon_sym_break] = ACTIONS(1789), - [anon_sym_continue] = ACTIONS(1789), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_match] = ACTIONS(1789), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_for] = ACTIONS(1789), - [anon_sym_while] = ACTIONS(1789), - [anon_sym_try] = ACTIONS(1789), - [anon_sym_with] = ACTIONS(1789), - [anon_sym_def] = ACTIONS(1789), - [anon_sym_global] = ACTIONS(1789), - [anon_sym_nonlocal] = ACTIONS(1789), - [anon_sym_exec] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1789), - [anon_sym_class] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_AT] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_not] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_lambda] = ACTIONS(1789), - [anon_sym_yield] = ACTIONS(1789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1791), - [anon_sym_None] = ACTIONS(1789), - [sym_integer] = ACTIONS(1789), - [sym_float] = ACTIONS(1791), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_api] = ACTIONS(1789), - [sym_true] = ACTIONS(1789), - [sym_false] = ACTIONS(1789), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1789), - [anon_sym_include] = ACTIONS(1789), - [anon_sym_DEF] = ACTIONS(1789), - [anon_sym_cdef] = ACTIONS(1789), - [anon_sym_cpdef] = ACTIONS(1789), - [anon_sym_int] = ACTIONS(1789), - [anon_sym_double] = ACTIONS(1789), - [anon_sym_complex] = ACTIONS(1789), - [anon_sym_new] = ACTIONS(1789), - [anon_sym_signed] = ACTIONS(1789), - [anon_sym_unsigned] = ACTIONS(1789), - [anon_sym_char] = ACTIONS(1789), - [anon_sym_short] = ACTIONS(1789), - [anon_sym_long] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1789), - [anon_sym_volatile] = ACTIONS(1789), - [anon_sym_ctypedef] = ACTIONS(1789), - [anon_sym_struct] = ACTIONS(1789), - [anon_sym_union] = ACTIONS(1789), - [anon_sym_enum] = ACTIONS(1789), - [anon_sym_cppclass] = ACTIONS(1789), - [anon_sym_fused] = ACTIONS(1789), - [anon_sym_public] = ACTIONS(1789), - [anon_sym_packed] = ACTIONS(1789), - [anon_sym_inline] = ACTIONS(1789), - [anon_sym_readonly] = ACTIONS(1789), - [anon_sym_sizeof] = ACTIONS(1789), - [sym__dedent] = ACTIONS(1791), - [sym_string_start] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_import] = ACTIONS(1783), + [anon_sym_cimport] = ACTIONS(1783), + [anon_sym_from] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_print] = ACTIONS(1783), + [anon_sym_assert] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_del] = ACTIONS(1783), + [anon_sym_raise] = ACTIONS(1783), + [anon_sym_pass] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_async] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_with] = ACTIONS(1783), + [anon_sym_def] = ACTIONS(1783), + [anon_sym_global] = ACTIONS(1783), + [anon_sym_nonlocal] = ACTIONS(1783), + [anon_sym_exec] = ACTIONS(1783), + [anon_sym_type] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_AT] = ACTIONS(1785), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_not] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_lambda] = ACTIONS(1783), + [anon_sym_yield] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_None] = ACTIONS(1783), + [sym_integer] = ACTIONS(1783), + [sym_float] = ACTIONS(1785), + [anon_sym_await] = ACTIONS(1783), + [anon_sym_api] = ACTIONS(1783), + [sym_true] = ACTIONS(1783), + [sym_false] = ACTIONS(1783), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1783), + [anon_sym_include] = ACTIONS(1783), + [anon_sym_DEF] = ACTIONS(1783), + [anon_sym_IF] = ACTIONS(1783), + [anon_sym_cdef] = ACTIONS(1783), + [anon_sym_cpdef] = ACTIONS(1783), + [anon_sym_int] = ACTIONS(1783), + [anon_sym_double] = ACTIONS(1783), + [anon_sym_complex] = ACTIONS(1783), + [anon_sym_new] = ACTIONS(1783), + [anon_sym_signed] = ACTIONS(1783), + [anon_sym_unsigned] = ACTIONS(1783), + [anon_sym_char] = ACTIONS(1783), + [anon_sym_short] = ACTIONS(1783), + [anon_sym_long] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_volatile] = ACTIONS(1783), + [anon_sym_ctypedef] = ACTIONS(1783), + [anon_sym_struct] = ACTIONS(1783), + [anon_sym_union] = ACTIONS(1783), + [anon_sym_enum] = ACTIONS(1783), + [anon_sym_cppclass] = ACTIONS(1783), + [anon_sym_fused] = ACTIONS(1783), + [anon_sym_public] = ACTIONS(1783), + [anon_sym_packed] = ACTIONS(1783), + [anon_sym_inline] = ACTIONS(1783), + [anon_sym_readonly] = ACTIONS(1783), + [anon_sym_sizeof] = ACTIONS(1783), + [sym__dedent] = ACTIONS(1785), + [sym_string_start] = ACTIONS(1785), }, [572] = { - [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), + [sym_identifier] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_cimport] = ACTIONS(1787), + [anon_sym_from] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_print] = ACTIONS(1787), + [anon_sym_assert] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_del] = ACTIONS(1787), + [anon_sym_raise] = ACTIONS(1787), + [anon_sym_pass] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_match] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_with] = ACTIONS(1787), + [anon_sym_def] = ACTIONS(1787), + [anon_sym_global] = ACTIONS(1787), + [anon_sym_nonlocal] = ACTIONS(1787), + [anon_sym_exec] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1789), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_not] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_lambda] = ACTIONS(1787), + [anon_sym_yield] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1789), + [anon_sym_None] = ACTIONS(1787), + [sym_integer] = ACTIONS(1787), + [sym_float] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1787), + [anon_sym_api] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1787), + [anon_sym_include] = ACTIONS(1787), + [anon_sym_DEF] = ACTIONS(1787), + [anon_sym_IF] = ACTIONS(1787), + [anon_sym_cdef] = ACTIONS(1787), + [anon_sym_cpdef] = ACTIONS(1787), + [anon_sym_int] = ACTIONS(1787), + [anon_sym_double] = ACTIONS(1787), + [anon_sym_complex] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_signed] = ACTIONS(1787), + [anon_sym_unsigned] = ACTIONS(1787), + [anon_sym_char] = ACTIONS(1787), + [anon_sym_short] = ACTIONS(1787), + [anon_sym_long] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_volatile] = ACTIONS(1787), + [anon_sym_ctypedef] = ACTIONS(1787), + [anon_sym_struct] = ACTIONS(1787), + [anon_sym_union] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_cppclass] = ACTIONS(1787), + [anon_sym_fused] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_packed] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_readonly] = ACTIONS(1787), + [anon_sym_sizeof] = ACTIONS(1787), + [sym__dedent] = ACTIONS(1789), + [sym_string_start] = ACTIONS(1789), }, [573] = { - [sym_identifier] = ACTIONS(1793), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_import] = ACTIONS(1793), - [anon_sym_cimport] = ACTIONS(1793), - [anon_sym_from] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_print] = ACTIONS(1793), - [anon_sym_assert] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_del] = ACTIONS(1793), - [anon_sym_raise] = ACTIONS(1793), - [anon_sym_pass] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_async] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_with] = ACTIONS(1793), - [anon_sym_def] = ACTIONS(1793), - [anon_sym_global] = ACTIONS(1793), - [anon_sym_nonlocal] = ACTIONS(1793), - [anon_sym_exec] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1793), - [anon_sym_class] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1795), - [anon_sym_not] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_LT] = ACTIONS(1795), - [anon_sym_lambda] = ACTIONS(1793), - [anon_sym_yield] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1795), - [anon_sym_None] = ACTIONS(1793), - [sym_integer] = ACTIONS(1793), - [sym_float] = ACTIONS(1795), - [anon_sym_await] = ACTIONS(1793), - [anon_sym_api] = ACTIONS(1793), - [sym_true] = ACTIONS(1793), - [sym_false] = ACTIONS(1793), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1793), - [anon_sym_include] = ACTIONS(1793), - [anon_sym_DEF] = ACTIONS(1793), - [anon_sym_cdef] = ACTIONS(1793), - [anon_sym_cpdef] = ACTIONS(1793), - [anon_sym_int] = ACTIONS(1793), - [anon_sym_double] = ACTIONS(1793), - [anon_sym_complex] = ACTIONS(1793), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_signed] = ACTIONS(1793), - [anon_sym_unsigned] = ACTIONS(1793), - [anon_sym_char] = ACTIONS(1793), - [anon_sym_short] = ACTIONS(1793), - [anon_sym_long] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_volatile] = ACTIONS(1793), - [anon_sym_ctypedef] = ACTIONS(1793), - [anon_sym_struct] = ACTIONS(1793), - [anon_sym_union] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [anon_sym_cppclass] = ACTIONS(1793), - [anon_sym_fused] = ACTIONS(1793), - [anon_sym_public] = ACTIONS(1793), - [anon_sym_packed] = ACTIONS(1793), - [anon_sym_inline] = ACTIONS(1793), - [anon_sym_readonly] = ACTIONS(1793), - [anon_sym_sizeof] = ACTIONS(1793), - [sym__dedent] = ACTIONS(1795), - [sym_string_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_cimport] = ACTIONS(1791), + [anon_sym_from] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_STAR] = ACTIONS(1793), + [anon_sym_print] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_del] = ACTIONS(1791), + [anon_sym_raise] = ACTIONS(1791), + [anon_sym_pass] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_def] = ACTIONS(1791), + [anon_sym_global] = ACTIONS(1791), + [anon_sym_nonlocal] = ACTIONS(1791), + [anon_sym_exec] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(1793), + [anon_sym_not] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_lambda] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1793), + [anon_sym_None] = ACTIONS(1791), + [sym_integer] = ACTIONS(1791), + [sym_float] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_api] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1791), + [anon_sym_include] = ACTIONS(1791), + [anon_sym_DEF] = ACTIONS(1791), + [anon_sym_IF] = ACTIONS(1791), + [anon_sym_cdef] = ACTIONS(1791), + [anon_sym_cpdef] = ACTIONS(1791), + [anon_sym_int] = ACTIONS(1791), + [anon_sym_double] = ACTIONS(1791), + [anon_sym_complex] = ACTIONS(1791), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_signed] = ACTIONS(1791), + [anon_sym_unsigned] = ACTIONS(1791), + [anon_sym_char] = ACTIONS(1791), + [anon_sym_short] = ACTIONS(1791), + [anon_sym_long] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_volatile] = ACTIONS(1791), + [anon_sym_ctypedef] = ACTIONS(1791), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_cppclass] = ACTIONS(1791), + [anon_sym_fused] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_packed] = ACTIONS(1791), + [anon_sym_inline] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_sizeof] = ACTIONS(1791), + [sym__dedent] = ACTIONS(1793), + [sym_string_start] = ACTIONS(1793), }, [574] = { - [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), + [sym_identifier] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_import] = ACTIONS(1795), + [anon_sym_cimport] = ACTIONS(1795), + [anon_sym_from] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_print] = ACTIONS(1795), + [anon_sym_assert] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_del] = ACTIONS(1795), + [anon_sym_raise] = ACTIONS(1795), + [anon_sym_pass] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_match] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_with] = ACTIONS(1795), + [anon_sym_def] = ACTIONS(1795), + [anon_sym_global] = ACTIONS(1795), + [anon_sym_nonlocal] = ACTIONS(1795), + [anon_sym_exec] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_class] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_AT] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_not] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_lambda] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_None] = ACTIONS(1795), + [sym_integer] = ACTIONS(1795), + [sym_float] = ACTIONS(1797), + [anon_sym_await] = ACTIONS(1795), + [anon_sym_api] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1795), + [anon_sym_include] = ACTIONS(1795), + [anon_sym_DEF] = ACTIONS(1795), + [anon_sym_IF] = ACTIONS(1795), + [anon_sym_cdef] = ACTIONS(1795), + [anon_sym_cpdef] = ACTIONS(1795), + [anon_sym_int] = ACTIONS(1795), + [anon_sym_double] = ACTIONS(1795), + [anon_sym_complex] = ACTIONS(1795), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_signed] = ACTIONS(1795), + [anon_sym_unsigned] = ACTIONS(1795), + [anon_sym_char] = ACTIONS(1795), + [anon_sym_short] = ACTIONS(1795), + [anon_sym_long] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_volatile] = ACTIONS(1795), + [anon_sym_ctypedef] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(1795), + [anon_sym_union] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [anon_sym_cppclass] = ACTIONS(1795), + [anon_sym_fused] = ACTIONS(1795), + [anon_sym_public] = ACTIONS(1795), + [anon_sym_packed] = ACTIONS(1795), + [anon_sym_inline] = ACTIONS(1795), + [anon_sym_readonly] = ACTIONS(1795), + [anon_sym_sizeof] = ACTIONS(1795), + [sym__dedent] = ACTIONS(1797), + [sym_string_start] = ACTIONS(1797), }, [575] = { - [sym_identifier] = ACTIONS(1797), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_import] = ACTIONS(1797), - [anon_sym_cimport] = ACTIONS(1797), - [anon_sym_from] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_print] = ACTIONS(1797), - [anon_sym_assert] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_del] = ACTIONS(1797), - [anon_sym_raise] = ACTIONS(1797), - [anon_sym_pass] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_match] = ACTIONS(1797), - [anon_sym_async] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_try] = ACTIONS(1797), - [anon_sym_with] = ACTIONS(1797), - [anon_sym_def] = ACTIONS(1797), - [anon_sym_global] = ACTIONS(1797), - [anon_sym_nonlocal] = ACTIONS(1797), - [anon_sym_exec] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_class] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_AT] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1799), - [anon_sym_not] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_lambda] = ACTIONS(1797), - [anon_sym_yield] = ACTIONS(1797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1799), - [anon_sym_None] = ACTIONS(1797), - [sym_integer] = ACTIONS(1797), - [sym_float] = ACTIONS(1799), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_api] = ACTIONS(1797), - [sym_true] = ACTIONS(1797), - [sym_false] = ACTIONS(1797), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1797), - [anon_sym_include] = ACTIONS(1797), - [anon_sym_DEF] = ACTIONS(1797), - [anon_sym_cdef] = ACTIONS(1797), - [anon_sym_cpdef] = ACTIONS(1797), - [anon_sym_int] = ACTIONS(1797), - [anon_sym_double] = ACTIONS(1797), - [anon_sym_complex] = ACTIONS(1797), - [anon_sym_new] = ACTIONS(1797), - [anon_sym_signed] = ACTIONS(1797), - [anon_sym_unsigned] = ACTIONS(1797), - [anon_sym_char] = ACTIONS(1797), - [anon_sym_short] = ACTIONS(1797), - [anon_sym_long] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_volatile] = ACTIONS(1797), - [anon_sym_ctypedef] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1797), - [anon_sym_union] = ACTIONS(1797), - [anon_sym_enum] = ACTIONS(1797), - [anon_sym_cppclass] = ACTIONS(1797), - [anon_sym_fused] = ACTIONS(1797), - [anon_sym_public] = ACTIONS(1797), - [anon_sym_packed] = ACTIONS(1797), - [anon_sym_inline] = ACTIONS(1797), - [anon_sym_readonly] = ACTIONS(1797), - [anon_sym_sizeof] = ACTIONS(1797), - [sym__dedent] = ACTIONS(1799), - [sym_string_start] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_import] = ACTIONS(1799), + [anon_sym_cimport] = ACTIONS(1799), + [anon_sym_from] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_print] = ACTIONS(1799), + [anon_sym_assert] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_del] = ACTIONS(1799), + [anon_sym_raise] = ACTIONS(1799), + [anon_sym_pass] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_async] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_with] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_global] = ACTIONS(1799), + [anon_sym_nonlocal] = ACTIONS(1799), + [anon_sym_exec] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_class] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_AT] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_not] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1801), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_lambda] = ACTIONS(1799), + [anon_sym_yield] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1801), + [anon_sym_None] = ACTIONS(1799), + [sym_integer] = ACTIONS(1799), + [sym_float] = ACTIONS(1801), + [anon_sym_await] = ACTIONS(1799), + [anon_sym_api] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1799), + [anon_sym_include] = ACTIONS(1799), + [anon_sym_DEF] = ACTIONS(1799), + [anon_sym_IF] = ACTIONS(1799), + [anon_sym_cdef] = ACTIONS(1799), + [anon_sym_cpdef] = ACTIONS(1799), + [anon_sym_int] = ACTIONS(1799), + [anon_sym_double] = ACTIONS(1799), + [anon_sym_complex] = ACTIONS(1799), + [anon_sym_new] = ACTIONS(1799), + [anon_sym_signed] = ACTIONS(1799), + [anon_sym_unsigned] = ACTIONS(1799), + [anon_sym_char] = ACTIONS(1799), + [anon_sym_short] = ACTIONS(1799), + [anon_sym_long] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym_ctypedef] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_cppclass] = ACTIONS(1799), + [anon_sym_fused] = ACTIONS(1799), + [anon_sym_public] = ACTIONS(1799), + [anon_sym_packed] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym_readonly] = ACTIONS(1799), + [anon_sym_sizeof] = ACTIONS(1799), + [sym__dedent] = ACTIONS(1801), + [sym_string_start] = ACTIONS(1801), }, [576] = { - [sym_identifier] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_import] = ACTIONS(1801), - [anon_sym_cimport] = ACTIONS(1801), - [anon_sym_from] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_print] = ACTIONS(1801), - [anon_sym_assert] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_del] = ACTIONS(1801), - [anon_sym_raise] = ACTIONS(1801), - [anon_sym_pass] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_async] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_with] = ACTIONS(1801), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_global] = ACTIONS(1801), - [anon_sym_nonlocal] = ACTIONS(1801), - [anon_sym_exec] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_class] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_not] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_lambda] = ACTIONS(1801), - [anon_sym_yield] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1803), - [anon_sym_None] = ACTIONS(1801), - [sym_integer] = ACTIONS(1801), - [sym_float] = ACTIONS(1803), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_api] = ACTIONS(1801), - [sym_true] = ACTIONS(1801), - [sym_false] = ACTIONS(1801), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1801), - [anon_sym_include] = ACTIONS(1801), - [anon_sym_DEF] = ACTIONS(1801), - [anon_sym_cdef] = ACTIONS(1801), - [anon_sym_cpdef] = ACTIONS(1801), - [anon_sym_int] = ACTIONS(1801), - [anon_sym_double] = ACTIONS(1801), - [anon_sym_complex] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1801), - [anon_sym_signed] = ACTIONS(1801), - [anon_sym_unsigned] = ACTIONS(1801), - [anon_sym_char] = ACTIONS(1801), - [anon_sym_short] = ACTIONS(1801), - [anon_sym_long] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_volatile] = ACTIONS(1801), - [anon_sym_ctypedef] = ACTIONS(1801), - [anon_sym_struct] = ACTIONS(1801), - [anon_sym_union] = ACTIONS(1801), - [anon_sym_enum] = ACTIONS(1801), - [anon_sym_cppclass] = ACTIONS(1801), - [anon_sym_fused] = ACTIONS(1801), - [anon_sym_public] = ACTIONS(1801), - [anon_sym_packed] = ACTIONS(1801), - [anon_sym_inline] = ACTIONS(1801), - [anon_sym_readonly] = ACTIONS(1801), - [anon_sym_sizeof] = ACTIONS(1801), - [sym__dedent] = ACTIONS(1803), - [sym_string_start] = ACTIONS(1803), + [sym_identifier] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_import] = ACTIONS(1803), + [anon_sym_cimport] = ACTIONS(1803), + [anon_sym_from] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_print] = ACTIONS(1803), + [anon_sym_assert] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_del] = ACTIONS(1803), + [anon_sym_raise] = ACTIONS(1803), + [anon_sym_pass] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_match] = ACTIONS(1803), + [anon_sym_async] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_with] = ACTIONS(1803), + [anon_sym_def] = ACTIONS(1803), + [anon_sym_global] = ACTIONS(1803), + [anon_sym_nonlocal] = ACTIONS(1803), + [anon_sym_exec] = ACTIONS(1803), + [anon_sym_type] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_AT] = ACTIONS(1805), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1805), + [anon_sym_not] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_lambda] = ACTIONS(1803), + [anon_sym_yield] = ACTIONS(1803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1805), + [anon_sym_None] = ACTIONS(1803), + [sym_integer] = ACTIONS(1803), + [sym_float] = ACTIONS(1805), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_api] = ACTIONS(1803), + [sym_true] = ACTIONS(1803), + [sym_false] = ACTIONS(1803), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1803), + [anon_sym_include] = ACTIONS(1803), + [anon_sym_DEF] = ACTIONS(1803), + [anon_sym_IF] = ACTIONS(1803), + [anon_sym_cdef] = ACTIONS(1803), + [anon_sym_cpdef] = ACTIONS(1803), + [anon_sym_int] = ACTIONS(1803), + [anon_sym_double] = ACTIONS(1803), + [anon_sym_complex] = ACTIONS(1803), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_signed] = ACTIONS(1803), + [anon_sym_unsigned] = ACTIONS(1803), + [anon_sym_char] = ACTIONS(1803), + [anon_sym_short] = ACTIONS(1803), + [anon_sym_long] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym_ctypedef] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1803), + [anon_sym_union] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [anon_sym_cppclass] = ACTIONS(1803), + [anon_sym_fused] = ACTIONS(1803), + [anon_sym_public] = ACTIONS(1803), + [anon_sym_packed] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_readonly] = ACTIONS(1803), + [anon_sym_sizeof] = ACTIONS(1803), + [sym__dedent] = ACTIONS(1805), + [sym_string_start] = ACTIONS(1805), }, [577] = { - [sym_identifier] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_import] = ACTIONS(1805), - [anon_sym_cimport] = ACTIONS(1805), - [anon_sym_from] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_print] = ACTIONS(1805), - [anon_sym_assert] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_del] = ACTIONS(1805), - [anon_sym_raise] = ACTIONS(1805), - [anon_sym_pass] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_async] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_try] = ACTIONS(1805), - [anon_sym_with] = ACTIONS(1805), - [anon_sym_def] = ACTIONS(1805), - [anon_sym_global] = ACTIONS(1805), - [anon_sym_nonlocal] = ACTIONS(1805), - [anon_sym_exec] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1805), - [anon_sym_class] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_AT] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_not] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_lambda] = ACTIONS(1805), - [anon_sym_yield] = ACTIONS(1805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1807), - [anon_sym_None] = ACTIONS(1805), - [sym_integer] = ACTIONS(1805), - [sym_float] = ACTIONS(1807), - [anon_sym_await] = ACTIONS(1805), - [anon_sym_api] = ACTIONS(1805), - [sym_true] = ACTIONS(1805), - [sym_false] = ACTIONS(1805), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1805), - [anon_sym_include] = ACTIONS(1805), - [anon_sym_DEF] = ACTIONS(1805), - [anon_sym_cdef] = ACTIONS(1805), - [anon_sym_cpdef] = ACTIONS(1805), - [anon_sym_int] = ACTIONS(1805), - [anon_sym_double] = ACTIONS(1805), - [anon_sym_complex] = ACTIONS(1805), - [anon_sym_new] = ACTIONS(1805), - [anon_sym_signed] = ACTIONS(1805), - [anon_sym_unsigned] = ACTIONS(1805), - [anon_sym_char] = ACTIONS(1805), - [anon_sym_short] = ACTIONS(1805), - [anon_sym_long] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [anon_sym_volatile] = ACTIONS(1805), - [anon_sym_ctypedef] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1805), - [anon_sym_union] = ACTIONS(1805), - [anon_sym_enum] = ACTIONS(1805), - [anon_sym_cppclass] = ACTIONS(1805), - [anon_sym_fused] = ACTIONS(1805), - [anon_sym_public] = ACTIONS(1805), - [anon_sym_packed] = ACTIONS(1805), - [anon_sym_inline] = ACTIONS(1805), - [anon_sym_readonly] = ACTIONS(1805), - [anon_sym_sizeof] = ACTIONS(1805), - [sym__dedent] = ACTIONS(1807), - [sym_string_start] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_import] = ACTIONS(1807), + [anon_sym_cimport] = ACTIONS(1807), + [anon_sym_from] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_print] = ACTIONS(1807), + [anon_sym_assert] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_del] = ACTIONS(1807), + [anon_sym_raise] = ACTIONS(1807), + [anon_sym_pass] = ACTIONS(1807), + [anon_sym_break] = ACTIONS(1807), + [anon_sym_continue] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_match] = ACTIONS(1807), + [anon_sym_async] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_try] = ACTIONS(1807), + [anon_sym_with] = ACTIONS(1807), + [anon_sym_def] = ACTIONS(1807), + [anon_sym_global] = ACTIONS(1807), + [anon_sym_nonlocal] = ACTIONS(1807), + [anon_sym_exec] = ACTIONS(1807), + [anon_sym_type] = ACTIONS(1807), + [anon_sym_class] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_AT] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_not] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_lambda] = ACTIONS(1807), + [anon_sym_yield] = ACTIONS(1807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), + [anon_sym_None] = ACTIONS(1807), + [sym_integer] = ACTIONS(1807), + [sym_float] = ACTIONS(1809), + [anon_sym_await] = ACTIONS(1807), + [anon_sym_api] = ACTIONS(1807), + [sym_true] = ACTIONS(1807), + [sym_false] = ACTIONS(1807), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1807), + [anon_sym_include] = ACTIONS(1807), + [anon_sym_DEF] = ACTIONS(1807), + [anon_sym_IF] = ACTIONS(1807), + [anon_sym_cdef] = ACTIONS(1807), + [anon_sym_cpdef] = ACTIONS(1807), + [anon_sym_int] = ACTIONS(1807), + [anon_sym_double] = ACTIONS(1807), + [anon_sym_complex] = ACTIONS(1807), + [anon_sym_new] = ACTIONS(1807), + [anon_sym_signed] = ACTIONS(1807), + [anon_sym_unsigned] = ACTIONS(1807), + [anon_sym_char] = ACTIONS(1807), + [anon_sym_short] = ACTIONS(1807), + [anon_sym_long] = ACTIONS(1807), + [anon_sym_const] = ACTIONS(1807), + [anon_sym_volatile] = ACTIONS(1807), + [anon_sym_ctypedef] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1807), + [anon_sym_union] = ACTIONS(1807), + [anon_sym_enum] = ACTIONS(1807), + [anon_sym_cppclass] = ACTIONS(1807), + [anon_sym_fused] = ACTIONS(1807), + [anon_sym_public] = ACTIONS(1807), + [anon_sym_packed] = ACTIONS(1807), + [anon_sym_inline] = ACTIONS(1807), + [anon_sym_readonly] = ACTIONS(1807), + [anon_sym_sizeof] = ACTIONS(1807), + [sym__dedent] = ACTIONS(1809), + [sym_string_start] = ACTIONS(1809), }, [578] = { - [sym_identifier] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_import] = ACTIONS(1809), - [anon_sym_cimport] = ACTIONS(1809), - [anon_sym_from] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_print] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_del] = ACTIONS(1809), - [anon_sym_raise] = ACTIONS(1809), - [anon_sym_pass] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_with] = ACTIONS(1809), - [anon_sym_def] = ACTIONS(1809), - [anon_sym_global] = ACTIONS(1809), - [anon_sym_nonlocal] = ACTIONS(1809), - [anon_sym_exec] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_not] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_lambda] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1811), - [anon_sym_None] = ACTIONS(1809), - [sym_integer] = ACTIONS(1809), - [sym_float] = ACTIONS(1811), - [anon_sym_await] = ACTIONS(1809), - [anon_sym_api] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1809), - [anon_sym_include] = ACTIONS(1809), - [anon_sym_DEF] = ACTIONS(1809), - [anon_sym_cdef] = ACTIONS(1809), - [anon_sym_cpdef] = ACTIONS(1809), - [anon_sym_int] = ACTIONS(1809), - [anon_sym_double] = ACTIONS(1809), - [anon_sym_complex] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_signed] = ACTIONS(1809), - [anon_sym_unsigned] = ACTIONS(1809), - [anon_sym_char] = ACTIONS(1809), - [anon_sym_short] = ACTIONS(1809), - [anon_sym_long] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_volatile] = ACTIONS(1809), - [anon_sym_ctypedef] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_cppclass] = ACTIONS(1809), - [anon_sym_fused] = ACTIONS(1809), - [anon_sym_public] = ACTIONS(1809), - [anon_sym_packed] = ACTIONS(1809), - [anon_sym_inline] = ACTIONS(1809), - [anon_sym_readonly] = ACTIONS(1809), - [anon_sym_sizeof] = ACTIONS(1809), - [sym__dedent] = ACTIONS(1811), - [sym_string_start] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_import] = ACTIONS(1811), + [anon_sym_cimport] = ACTIONS(1811), + [anon_sym_from] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_print] = ACTIONS(1811), + [anon_sym_assert] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_del] = ACTIONS(1811), + [anon_sym_raise] = ACTIONS(1811), + [anon_sym_pass] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_match] = ACTIONS(1811), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_with] = ACTIONS(1811), + [anon_sym_def] = ACTIONS(1811), + [anon_sym_global] = ACTIONS(1811), + [anon_sym_nonlocal] = ACTIONS(1811), + [anon_sym_exec] = ACTIONS(1811), + [anon_sym_type] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_AT] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_not] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_lambda] = ACTIONS(1811), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1813), + [anon_sym_None] = ACTIONS(1811), + [sym_integer] = ACTIONS(1811), + [sym_float] = ACTIONS(1813), + [anon_sym_await] = ACTIONS(1811), + [anon_sym_api] = ACTIONS(1811), + [sym_true] = ACTIONS(1811), + [sym_false] = ACTIONS(1811), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1811), + [anon_sym_include] = ACTIONS(1811), + [anon_sym_DEF] = ACTIONS(1811), + [anon_sym_IF] = ACTIONS(1811), + [anon_sym_cdef] = ACTIONS(1811), + [anon_sym_cpdef] = ACTIONS(1811), + [anon_sym_int] = ACTIONS(1811), + [anon_sym_double] = ACTIONS(1811), + [anon_sym_complex] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_signed] = ACTIONS(1811), + [anon_sym_unsigned] = ACTIONS(1811), + [anon_sym_char] = ACTIONS(1811), + [anon_sym_short] = ACTIONS(1811), + [anon_sym_long] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_volatile] = ACTIONS(1811), + [anon_sym_ctypedef] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1811), + [anon_sym_union] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [anon_sym_cppclass] = ACTIONS(1811), + [anon_sym_fused] = ACTIONS(1811), + [anon_sym_public] = ACTIONS(1811), + [anon_sym_packed] = ACTIONS(1811), + [anon_sym_inline] = ACTIONS(1811), + [anon_sym_readonly] = ACTIONS(1811), + [anon_sym_sizeof] = ACTIONS(1811), + [sym__dedent] = ACTIONS(1813), + [sym_string_start] = ACTIONS(1813), }, [579] = { - [sym_identifier] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_import] = ACTIONS(1813), - [anon_sym_cimport] = ACTIONS(1813), - [anon_sym_from] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_print] = ACTIONS(1813), - [anon_sym_assert] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_del] = ACTIONS(1813), - [anon_sym_raise] = ACTIONS(1813), - [anon_sym_pass] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_async] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_with] = ACTIONS(1813), - [anon_sym_def] = ACTIONS(1813), - [anon_sym_global] = ACTIONS(1813), - [anon_sym_nonlocal] = ACTIONS(1813), - [anon_sym_exec] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_class] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_AT] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_not] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_lambda] = ACTIONS(1813), - [anon_sym_yield] = ACTIONS(1813), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1815), - [anon_sym_None] = ACTIONS(1813), - [sym_integer] = ACTIONS(1813), - [sym_float] = ACTIONS(1815), - [anon_sym_await] = ACTIONS(1813), - [anon_sym_api] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1813), - [anon_sym_include] = ACTIONS(1813), - [anon_sym_DEF] = ACTIONS(1813), - [anon_sym_cdef] = ACTIONS(1813), - [anon_sym_cpdef] = ACTIONS(1813), - [anon_sym_int] = ACTIONS(1813), - [anon_sym_double] = ACTIONS(1813), - [anon_sym_complex] = ACTIONS(1813), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_signed] = ACTIONS(1813), - [anon_sym_unsigned] = ACTIONS(1813), - [anon_sym_char] = ACTIONS(1813), - [anon_sym_short] = ACTIONS(1813), - [anon_sym_long] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_volatile] = ACTIONS(1813), - [anon_sym_ctypedef] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_union] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [anon_sym_cppclass] = ACTIONS(1813), - [anon_sym_fused] = ACTIONS(1813), - [anon_sym_public] = ACTIONS(1813), - [anon_sym_packed] = ACTIONS(1813), - [anon_sym_inline] = ACTIONS(1813), - [anon_sym_readonly] = ACTIONS(1813), - [anon_sym_sizeof] = ACTIONS(1813), - [sym__dedent] = ACTIONS(1815), - [sym_string_start] = ACTIONS(1815), + [sym_identifier] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_cimport] = ACTIONS(1791), + [anon_sym_from] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_STAR] = ACTIONS(1793), + [anon_sym_print] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_del] = ACTIONS(1791), + [anon_sym_raise] = ACTIONS(1791), + [anon_sym_pass] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_def] = ACTIONS(1791), + [anon_sym_global] = ACTIONS(1791), + [anon_sym_nonlocal] = ACTIONS(1791), + [anon_sym_exec] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(1793), + [anon_sym_not] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_lambda] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1793), + [anon_sym_None] = ACTIONS(1791), + [sym_integer] = ACTIONS(1791), + [sym_float] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_api] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1791), + [anon_sym_include] = ACTIONS(1791), + [anon_sym_DEF] = ACTIONS(1791), + [anon_sym_IF] = ACTIONS(1791), + [anon_sym_cdef] = ACTIONS(1791), + [anon_sym_cpdef] = ACTIONS(1791), + [anon_sym_int] = ACTIONS(1791), + [anon_sym_double] = ACTIONS(1791), + [anon_sym_complex] = ACTIONS(1791), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_signed] = ACTIONS(1791), + [anon_sym_unsigned] = ACTIONS(1791), + [anon_sym_char] = ACTIONS(1791), + [anon_sym_short] = ACTIONS(1791), + [anon_sym_long] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_volatile] = ACTIONS(1791), + [anon_sym_ctypedef] = ACTIONS(1791), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_cppclass] = ACTIONS(1791), + [anon_sym_fused] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_packed] = ACTIONS(1791), + [anon_sym_inline] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_sizeof] = ACTIONS(1791), + [sym__dedent] = ACTIONS(1793), + [sym_string_start] = ACTIONS(1793), }, [580] = { - [sym_identifier] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_import] = ACTIONS(1817), - [anon_sym_cimport] = ACTIONS(1817), - [anon_sym_from] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_print] = ACTIONS(1817), - [anon_sym_assert] = ACTIONS(1817), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_del] = ACTIONS(1817), - [anon_sym_raise] = ACTIONS(1817), - [anon_sym_pass] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_match] = ACTIONS(1817), - [anon_sym_async] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1817), - [anon_sym_try] = ACTIONS(1817), - [anon_sym_with] = ACTIONS(1817), - [anon_sym_def] = ACTIONS(1817), - [anon_sym_global] = ACTIONS(1817), - [anon_sym_nonlocal] = ACTIONS(1817), - [anon_sym_exec] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_class] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_lambda] = ACTIONS(1817), - [anon_sym_yield] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1819), - [anon_sym_None] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1819), - [anon_sym_await] = ACTIONS(1817), - [anon_sym_api] = ACTIONS(1817), - [sym_true] = ACTIONS(1817), - [sym_false] = ACTIONS(1817), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1817), - [anon_sym_include] = ACTIONS(1817), - [anon_sym_DEF] = ACTIONS(1817), - [anon_sym_cdef] = ACTIONS(1817), - [anon_sym_cpdef] = ACTIONS(1817), - [anon_sym_int] = ACTIONS(1817), - [anon_sym_double] = ACTIONS(1817), - [anon_sym_complex] = ACTIONS(1817), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_signed] = ACTIONS(1817), - [anon_sym_unsigned] = ACTIONS(1817), - [anon_sym_char] = ACTIONS(1817), - [anon_sym_short] = ACTIONS(1817), - [anon_sym_long] = ACTIONS(1817), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_volatile] = ACTIONS(1817), - [anon_sym_ctypedef] = ACTIONS(1817), - [anon_sym_struct] = ACTIONS(1817), - [anon_sym_union] = ACTIONS(1817), - [anon_sym_enum] = ACTIONS(1817), - [anon_sym_cppclass] = ACTIONS(1817), - [anon_sym_fused] = ACTIONS(1817), - [anon_sym_public] = ACTIONS(1817), - [anon_sym_packed] = ACTIONS(1817), - [anon_sym_inline] = ACTIONS(1817), - [anon_sym_readonly] = ACTIONS(1817), - [anon_sym_sizeof] = ACTIONS(1817), - [sym__dedent] = ACTIONS(1819), - [sym_string_start] = ACTIONS(1819), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SEMI] = ACTIONS(1817), + [anon_sym_import] = ACTIONS(1815), + [anon_sym_cimport] = ACTIONS(1815), + [anon_sym_from] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_print] = ACTIONS(1815), + [anon_sym_assert] = ACTIONS(1815), + [anon_sym_return] = ACTIONS(1815), + [anon_sym_del] = ACTIONS(1815), + [anon_sym_raise] = ACTIONS(1815), + [anon_sym_pass] = ACTIONS(1815), + [anon_sym_break] = ACTIONS(1815), + [anon_sym_continue] = ACTIONS(1815), + [anon_sym_if] = ACTIONS(1815), + [anon_sym_match] = ACTIONS(1815), + [anon_sym_async] = ACTIONS(1815), + [anon_sym_for] = ACTIONS(1815), + [anon_sym_while] = ACTIONS(1815), + [anon_sym_try] = ACTIONS(1815), + [anon_sym_with] = ACTIONS(1815), + [anon_sym_def] = ACTIONS(1815), + [anon_sym_global] = ACTIONS(1815), + [anon_sym_nonlocal] = ACTIONS(1815), + [anon_sym_exec] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1815), + [anon_sym_class] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1817), + [anon_sym_AT] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_PLUS] = ACTIONS(1817), + [anon_sym_not] = ACTIONS(1815), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1817), + [anon_sym_LT] = ACTIONS(1817), + [anon_sym_lambda] = ACTIONS(1815), + [anon_sym_yield] = ACTIONS(1815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1817), + [anon_sym_None] = ACTIONS(1815), + [sym_integer] = ACTIONS(1815), + [sym_float] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(1815), + [anon_sym_api] = ACTIONS(1815), + [sym_true] = ACTIONS(1815), + [sym_false] = ACTIONS(1815), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1815), + [anon_sym_include] = ACTIONS(1815), + [anon_sym_DEF] = ACTIONS(1815), + [anon_sym_IF] = ACTIONS(1815), + [anon_sym_cdef] = ACTIONS(1815), + [anon_sym_cpdef] = ACTIONS(1815), + [anon_sym_int] = ACTIONS(1815), + [anon_sym_double] = ACTIONS(1815), + [anon_sym_complex] = ACTIONS(1815), + [anon_sym_new] = ACTIONS(1815), + [anon_sym_signed] = ACTIONS(1815), + [anon_sym_unsigned] = ACTIONS(1815), + [anon_sym_char] = ACTIONS(1815), + [anon_sym_short] = ACTIONS(1815), + [anon_sym_long] = ACTIONS(1815), + [anon_sym_const] = ACTIONS(1815), + [anon_sym_volatile] = ACTIONS(1815), + [anon_sym_ctypedef] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1815), + [anon_sym_union] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1815), + [anon_sym_cppclass] = ACTIONS(1815), + [anon_sym_fused] = ACTIONS(1815), + [anon_sym_public] = ACTIONS(1815), + [anon_sym_packed] = ACTIONS(1815), + [anon_sym_inline] = ACTIONS(1815), + [anon_sym_readonly] = ACTIONS(1815), + [anon_sym_sizeof] = ACTIONS(1815), + [sym__dedent] = ACTIONS(1817), + [sym_string_start] = ACTIONS(1817), }, [581] = { - [sym_identifier] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_import] = ACTIONS(1821), - [anon_sym_cimport] = ACTIONS(1821), - [anon_sym_from] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_print] = ACTIONS(1821), - [anon_sym_assert] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_del] = ACTIONS(1821), - [anon_sym_raise] = ACTIONS(1821), - [anon_sym_pass] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_async] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_try] = ACTIONS(1821), - [anon_sym_with] = ACTIONS(1821), - [anon_sym_def] = ACTIONS(1821), - [anon_sym_global] = ACTIONS(1821), - [anon_sym_nonlocal] = ACTIONS(1821), - [anon_sym_exec] = ACTIONS(1821), - [anon_sym_type] = ACTIONS(1821), - [anon_sym_class] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_lambda] = ACTIONS(1821), - [anon_sym_yield] = ACTIONS(1821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1823), - [anon_sym_None] = ACTIONS(1821), - [sym_integer] = ACTIONS(1821), - [sym_float] = ACTIONS(1823), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_api] = ACTIONS(1821), - [sym_true] = ACTIONS(1821), - [sym_false] = ACTIONS(1821), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1821), - [anon_sym_include] = ACTIONS(1821), - [anon_sym_DEF] = ACTIONS(1821), - [anon_sym_cdef] = ACTIONS(1821), - [anon_sym_cpdef] = ACTIONS(1821), - [anon_sym_int] = ACTIONS(1821), - [anon_sym_double] = ACTIONS(1821), - [anon_sym_complex] = ACTIONS(1821), - [anon_sym_new] = ACTIONS(1821), - [anon_sym_signed] = ACTIONS(1821), - [anon_sym_unsigned] = ACTIONS(1821), - [anon_sym_char] = ACTIONS(1821), - [anon_sym_short] = ACTIONS(1821), - [anon_sym_long] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_volatile] = ACTIONS(1821), - [anon_sym_ctypedef] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_union] = ACTIONS(1821), - [anon_sym_enum] = ACTIONS(1821), - [anon_sym_cppclass] = ACTIONS(1821), - [anon_sym_fused] = ACTIONS(1821), - [anon_sym_public] = ACTIONS(1821), - [anon_sym_packed] = ACTIONS(1821), - [anon_sym_inline] = ACTIONS(1821), - [anon_sym_readonly] = ACTIONS(1821), - [anon_sym_sizeof] = ACTIONS(1821), - [sym__dedent] = ACTIONS(1823), - [sym_string_start] = ACTIONS(1823), + [sym_identifier] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_import] = ACTIONS(1799), + [anon_sym_cimport] = ACTIONS(1799), + [anon_sym_from] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_print] = ACTIONS(1799), + [anon_sym_assert] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_del] = ACTIONS(1799), + [anon_sym_raise] = ACTIONS(1799), + [anon_sym_pass] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_async] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_with] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_global] = ACTIONS(1799), + [anon_sym_nonlocal] = ACTIONS(1799), + [anon_sym_exec] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_class] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_AT] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_not] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1801), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_lambda] = ACTIONS(1799), + [anon_sym_yield] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1801), + [anon_sym_None] = ACTIONS(1799), + [sym_integer] = ACTIONS(1799), + [sym_float] = ACTIONS(1801), + [anon_sym_await] = ACTIONS(1799), + [anon_sym_api] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1799), + [anon_sym_include] = ACTIONS(1799), + [anon_sym_DEF] = ACTIONS(1799), + [anon_sym_IF] = ACTIONS(1799), + [anon_sym_cdef] = ACTIONS(1799), + [anon_sym_cpdef] = ACTIONS(1799), + [anon_sym_int] = ACTIONS(1799), + [anon_sym_double] = ACTIONS(1799), + [anon_sym_complex] = ACTIONS(1799), + [anon_sym_new] = ACTIONS(1799), + [anon_sym_signed] = ACTIONS(1799), + [anon_sym_unsigned] = ACTIONS(1799), + [anon_sym_char] = ACTIONS(1799), + [anon_sym_short] = ACTIONS(1799), + [anon_sym_long] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym_ctypedef] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_cppclass] = ACTIONS(1799), + [anon_sym_fused] = ACTIONS(1799), + [anon_sym_public] = ACTIONS(1799), + [anon_sym_packed] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym_readonly] = ACTIONS(1799), + [anon_sym_sizeof] = ACTIONS(1799), + [sym__dedent] = ACTIONS(1801), + [sym_string_start] = ACTIONS(1801), }, [582] = { - [sym_identifier] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_import] = ACTIONS(1825), - [anon_sym_cimport] = ACTIONS(1825), - [anon_sym_from] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_print] = ACTIONS(1825), - [anon_sym_assert] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_del] = ACTIONS(1825), - [anon_sym_raise] = ACTIONS(1825), - [anon_sym_pass] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_match] = ACTIONS(1825), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_try] = ACTIONS(1825), - [anon_sym_with] = ACTIONS(1825), - [anon_sym_def] = ACTIONS(1825), - [anon_sym_global] = ACTIONS(1825), - [anon_sym_nonlocal] = ACTIONS(1825), - [anon_sym_exec] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_class] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1827), - [anon_sym_not] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_lambda] = ACTIONS(1825), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1827), - [anon_sym_None] = ACTIONS(1825), - [sym_integer] = ACTIONS(1825), - [sym_float] = ACTIONS(1827), - [anon_sym_await] = ACTIONS(1825), - [anon_sym_api] = ACTIONS(1825), - [sym_true] = ACTIONS(1825), - [sym_false] = ACTIONS(1825), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1825), - [anon_sym_include] = ACTIONS(1825), - [anon_sym_DEF] = ACTIONS(1825), - [anon_sym_cdef] = ACTIONS(1825), - [anon_sym_cpdef] = ACTIONS(1825), - [anon_sym_int] = ACTIONS(1825), - [anon_sym_double] = ACTIONS(1825), - [anon_sym_complex] = ACTIONS(1825), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_signed] = ACTIONS(1825), - [anon_sym_unsigned] = ACTIONS(1825), - [anon_sym_char] = ACTIONS(1825), - [anon_sym_short] = ACTIONS(1825), - [anon_sym_long] = ACTIONS(1825), - [anon_sym_const] = ACTIONS(1825), - [anon_sym_volatile] = ACTIONS(1825), - [anon_sym_ctypedef] = ACTIONS(1825), - [anon_sym_struct] = ACTIONS(1825), - [anon_sym_union] = ACTIONS(1825), - [anon_sym_enum] = ACTIONS(1825), - [anon_sym_cppclass] = ACTIONS(1825), - [anon_sym_fused] = ACTIONS(1825), - [anon_sym_public] = ACTIONS(1825), - [anon_sym_packed] = ACTIONS(1825), - [anon_sym_inline] = ACTIONS(1825), - [anon_sym_readonly] = ACTIONS(1825), - [anon_sym_sizeof] = ACTIONS(1825), - [sym__dedent] = ACTIONS(1827), - [sym_string_start] = ACTIONS(1827), + [sym_identifier] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_import] = ACTIONS(1819), + [anon_sym_cimport] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_print] = ACTIONS(1819), + [anon_sym_assert] = ACTIONS(1819), + [anon_sym_return] = ACTIONS(1819), + [anon_sym_del] = ACTIONS(1819), + [anon_sym_raise] = ACTIONS(1819), + [anon_sym_pass] = ACTIONS(1819), + [anon_sym_break] = ACTIONS(1819), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_if] = ACTIONS(1819), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(1819), + [anon_sym_try] = ACTIONS(1819), + [anon_sym_with] = ACTIONS(1819), + [anon_sym_def] = ACTIONS(1819), + [anon_sym_global] = ACTIONS(1819), + [anon_sym_nonlocal] = ACTIONS(1819), + [anon_sym_exec] = ACTIONS(1819), + [anon_sym_type] = ACTIONS(1819), + [anon_sym_class] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_AT] = ACTIONS(1821), + [anon_sym_DASH] = ACTIONS(1821), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_PLUS] = ACTIONS(1821), + [anon_sym_not] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1821), + [anon_sym_lambda] = ACTIONS(1819), + [anon_sym_yield] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1821), + [anon_sym_None] = ACTIONS(1819), + [sym_integer] = ACTIONS(1819), + [sym_float] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_api] = ACTIONS(1819), + [sym_true] = ACTIONS(1819), + [sym_false] = ACTIONS(1819), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1819), + [anon_sym_include] = ACTIONS(1819), + [anon_sym_DEF] = ACTIONS(1819), + [anon_sym_IF] = ACTIONS(1819), + [anon_sym_cdef] = ACTIONS(1819), + [anon_sym_cpdef] = ACTIONS(1819), + [anon_sym_int] = ACTIONS(1819), + [anon_sym_double] = ACTIONS(1819), + [anon_sym_complex] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1819), + [anon_sym_signed] = ACTIONS(1819), + [anon_sym_unsigned] = ACTIONS(1819), + [anon_sym_char] = ACTIONS(1819), + [anon_sym_short] = ACTIONS(1819), + [anon_sym_long] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1819), + [anon_sym_volatile] = ACTIONS(1819), + [anon_sym_ctypedef] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1819), + [anon_sym_union] = ACTIONS(1819), + [anon_sym_enum] = ACTIONS(1819), + [anon_sym_cppclass] = ACTIONS(1819), + [anon_sym_fused] = ACTIONS(1819), + [anon_sym_public] = ACTIONS(1819), + [anon_sym_packed] = ACTIONS(1819), + [anon_sym_inline] = ACTIONS(1819), + [anon_sym_readonly] = ACTIONS(1819), + [anon_sym_sizeof] = ACTIONS(1819), + [sym__dedent] = ACTIONS(1821), + [sym_string_start] = ACTIONS(1821), }, [583] = { - [sym_identifier] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_import] = ACTIONS(1829), - [anon_sym_cimport] = ACTIONS(1829), - [anon_sym_from] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_print] = ACTIONS(1829), - [anon_sym_assert] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_del] = ACTIONS(1829), - [anon_sym_raise] = ACTIONS(1829), - [anon_sym_pass] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_async] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_with] = ACTIONS(1829), - [anon_sym_def] = ACTIONS(1829), - [anon_sym_global] = ACTIONS(1829), - [anon_sym_nonlocal] = ACTIONS(1829), - [anon_sym_exec] = ACTIONS(1829), - [anon_sym_type] = ACTIONS(1829), - [anon_sym_class] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_not] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_lambda] = ACTIONS(1829), - [anon_sym_yield] = ACTIONS(1829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1831), - [anon_sym_None] = ACTIONS(1829), - [sym_integer] = ACTIONS(1829), - [sym_float] = ACTIONS(1831), - [anon_sym_await] = ACTIONS(1829), - [anon_sym_api] = ACTIONS(1829), - [sym_true] = ACTIONS(1829), - [sym_false] = ACTIONS(1829), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1829), - [anon_sym_include] = ACTIONS(1829), - [anon_sym_DEF] = ACTIONS(1829), - [anon_sym_cdef] = ACTIONS(1829), - [anon_sym_cpdef] = ACTIONS(1829), - [anon_sym_int] = ACTIONS(1829), - [anon_sym_double] = ACTIONS(1829), - [anon_sym_complex] = ACTIONS(1829), - [anon_sym_new] = ACTIONS(1829), - [anon_sym_signed] = ACTIONS(1829), - [anon_sym_unsigned] = ACTIONS(1829), - [anon_sym_char] = ACTIONS(1829), - [anon_sym_short] = ACTIONS(1829), - [anon_sym_long] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_volatile] = ACTIONS(1829), - [anon_sym_ctypedef] = ACTIONS(1829), - [anon_sym_struct] = ACTIONS(1829), - [anon_sym_union] = ACTIONS(1829), - [anon_sym_enum] = ACTIONS(1829), - [anon_sym_cppclass] = ACTIONS(1829), - [anon_sym_fused] = ACTIONS(1829), - [anon_sym_public] = ACTIONS(1829), - [anon_sym_packed] = ACTIONS(1829), - [anon_sym_inline] = ACTIONS(1829), - [anon_sym_readonly] = ACTIONS(1829), - [anon_sym_sizeof] = ACTIONS(1829), - [sym__dedent] = ACTIONS(1831), - [sym_string_start] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_cimport] = ACTIONS(1791), + [anon_sym_from] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_STAR] = ACTIONS(1793), + [anon_sym_print] = ACTIONS(1791), + [anon_sym_assert] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_del] = ACTIONS(1791), + [anon_sym_raise] = ACTIONS(1791), + [anon_sym_pass] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_def] = ACTIONS(1791), + [anon_sym_global] = ACTIONS(1791), + [anon_sym_nonlocal] = ACTIONS(1791), + [anon_sym_exec] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(1793), + [anon_sym_not] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_lambda] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1793), + [anon_sym_None] = ACTIONS(1791), + [sym_integer] = ACTIONS(1791), + [sym_float] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_api] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1791), + [anon_sym_include] = ACTIONS(1791), + [anon_sym_DEF] = ACTIONS(1791), + [anon_sym_IF] = ACTIONS(1791), + [anon_sym_cdef] = ACTIONS(1791), + [anon_sym_cpdef] = ACTIONS(1791), + [anon_sym_int] = ACTIONS(1791), + [anon_sym_double] = ACTIONS(1791), + [anon_sym_complex] = ACTIONS(1791), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_signed] = ACTIONS(1791), + [anon_sym_unsigned] = ACTIONS(1791), + [anon_sym_char] = ACTIONS(1791), + [anon_sym_short] = ACTIONS(1791), + [anon_sym_long] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_volatile] = ACTIONS(1791), + [anon_sym_ctypedef] = ACTIONS(1791), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_cppclass] = ACTIONS(1791), + [anon_sym_fused] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_packed] = ACTIONS(1791), + [anon_sym_inline] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_sizeof] = ACTIONS(1791), + [sym__dedent] = ACTIONS(1793), + [sym_string_start] = ACTIONS(1793), }, [584] = { - [sym_identifier] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_import] = ACTIONS(1833), - [anon_sym_cimport] = ACTIONS(1833), - [anon_sym_from] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_print] = ACTIONS(1833), - [anon_sym_assert] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_del] = ACTIONS(1833), - [anon_sym_raise] = ACTIONS(1833), - [anon_sym_pass] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_match] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1833), - [anon_sym_with] = ACTIONS(1833), - [anon_sym_def] = ACTIONS(1833), - [anon_sym_global] = ACTIONS(1833), - [anon_sym_nonlocal] = ACTIONS(1833), - [anon_sym_exec] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_class] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_not] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_lambda] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1835), - [anon_sym_None] = ACTIONS(1833), - [sym_integer] = ACTIONS(1833), - [sym_float] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_api] = ACTIONS(1833), - [sym_true] = ACTIONS(1833), - [sym_false] = ACTIONS(1833), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1833), - [anon_sym_include] = ACTIONS(1833), - [anon_sym_DEF] = ACTIONS(1833), - [anon_sym_cdef] = ACTIONS(1833), - [anon_sym_cpdef] = ACTIONS(1833), - [anon_sym_int] = ACTIONS(1833), - [anon_sym_double] = ACTIONS(1833), - [anon_sym_complex] = ACTIONS(1833), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_signed] = ACTIONS(1833), - [anon_sym_unsigned] = ACTIONS(1833), - [anon_sym_char] = ACTIONS(1833), - [anon_sym_short] = ACTIONS(1833), - [anon_sym_long] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_volatile] = ACTIONS(1833), - [anon_sym_ctypedef] = ACTIONS(1833), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_union] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), - [anon_sym_cppclass] = ACTIONS(1833), - [anon_sym_fused] = ACTIONS(1833), - [anon_sym_public] = ACTIONS(1833), - [anon_sym_packed] = ACTIONS(1833), - [anon_sym_inline] = ACTIONS(1833), - [anon_sym_readonly] = ACTIONS(1833), - [anon_sym_sizeof] = ACTIONS(1833), - [sym__dedent] = ACTIONS(1835), - [sym_string_start] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1823), + [anon_sym_cimport] = ACTIONS(1823), + [anon_sym_from] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_print] = ACTIONS(1823), + [anon_sym_assert] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_del] = ACTIONS(1823), + [anon_sym_raise] = ACTIONS(1823), + [anon_sym_pass] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_match] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_with] = ACTIONS(1823), + [anon_sym_def] = ACTIONS(1823), + [anon_sym_global] = ACTIONS(1823), + [anon_sym_nonlocal] = ACTIONS(1823), + [anon_sym_exec] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_AT] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_not] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1825), + [anon_sym_lambda] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1825), + [anon_sym_None] = ACTIONS(1823), + [sym_integer] = ACTIONS(1823), + [sym_float] = ACTIONS(1825), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_api] = ACTIONS(1823), + [sym_true] = ACTIONS(1823), + [sym_false] = ACTIONS(1823), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1823), + [anon_sym_include] = ACTIONS(1823), + [anon_sym_DEF] = ACTIONS(1823), + [anon_sym_IF] = ACTIONS(1823), + [anon_sym_cdef] = ACTIONS(1823), + [anon_sym_cpdef] = ACTIONS(1823), + [anon_sym_int] = ACTIONS(1823), + [anon_sym_double] = ACTIONS(1823), + [anon_sym_complex] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_signed] = ACTIONS(1823), + [anon_sym_unsigned] = ACTIONS(1823), + [anon_sym_char] = ACTIONS(1823), + [anon_sym_short] = ACTIONS(1823), + [anon_sym_long] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_volatile] = ACTIONS(1823), + [anon_sym_ctypedef] = ACTIONS(1823), + [anon_sym_struct] = ACTIONS(1823), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [anon_sym_cppclass] = ACTIONS(1823), + [anon_sym_fused] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1823), + [anon_sym_packed] = ACTIONS(1823), + [anon_sym_inline] = ACTIONS(1823), + [anon_sym_readonly] = ACTIONS(1823), + [anon_sym_sizeof] = ACTIONS(1823), + [sym__dedent] = ACTIONS(1825), + [sym_string_start] = ACTIONS(1825), }, [585] = { - [sym_identifier] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_import] = ACTIONS(1837), - [anon_sym_cimport] = ACTIONS(1837), - [anon_sym_from] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_print] = ACTIONS(1837), - [anon_sym_assert] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_del] = ACTIONS(1837), - [anon_sym_raise] = ACTIONS(1837), - [anon_sym_pass] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_match] = ACTIONS(1837), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_try] = ACTIONS(1837), - [anon_sym_with] = ACTIONS(1837), - [anon_sym_def] = ACTIONS(1837), - [anon_sym_global] = ACTIONS(1837), - [anon_sym_nonlocal] = ACTIONS(1837), - [anon_sym_exec] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_class] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_lambda] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1839), - [anon_sym_None] = ACTIONS(1837), - [sym_integer] = ACTIONS(1837), - [sym_float] = ACTIONS(1839), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_api] = ACTIONS(1837), - [sym_true] = ACTIONS(1837), - [sym_false] = ACTIONS(1837), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1837), - [anon_sym_include] = ACTIONS(1837), - [anon_sym_DEF] = ACTIONS(1837), - [anon_sym_cdef] = ACTIONS(1837), - [anon_sym_cpdef] = ACTIONS(1837), - [anon_sym_int] = ACTIONS(1837), - [anon_sym_double] = ACTIONS(1837), - [anon_sym_complex] = ACTIONS(1837), - [anon_sym_new] = ACTIONS(1837), - [anon_sym_signed] = ACTIONS(1837), - [anon_sym_unsigned] = ACTIONS(1837), - [anon_sym_char] = ACTIONS(1837), - [anon_sym_short] = ACTIONS(1837), - [anon_sym_long] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_volatile] = ACTIONS(1837), - [anon_sym_ctypedef] = ACTIONS(1837), - [anon_sym_struct] = ACTIONS(1837), - [anon_sym_union] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), - [anon_sym_cppclass] = ACTIONS(1837), - [anon_sym_fused] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_packed] = ACTIONS(1837), - [anon_sym_inline] = ACTIONS(1837), - [anon_sym_readonly] = ACTIONS(1837), - [anon_sym_sizeof] = ACTIONS(1837), - [sym__dedent] = ACTIONS(1839), - [sym_string_start] = ACTIONS(1839), + [sym_identifier] = ACTIONS(1827), + [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_import] = ACTIONS(1827), + [anon_sym_cimport] = ACTIONS(1827), + [anon_sym_from] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_print] = ACTIONS(1827), + [anon_sym_assert] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_del] = ACTIONS(1827), + [anon_sym_raise] = ACTIONS(1827), + [anon_sym_pass] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_match] = ACTIONS(1827), + [anon_sym_async] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_try] = ACTIONS(1827), + [anon_sym_with] = ACTIONS(1827), + [anon_sym_def] = ACTIONS(1827), + [anon_sym_global] = ACTIONS(1827), + [anon_sym_nonlocal] = ACTIONS(1827), + [anon_sym_exec] = ACTIONS(1827), + [anon_sym_type] = ACTIONS(1827), + [anon_sym_class] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_AT] = ACTIONS(1829), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_PLUS] = ACTIONS(1829), + [anon_sym_not] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_lambda] = ACTIONS(1827), + [anon_sym_yield] = ACTIONS(1827), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), + [anon_sym_None] = ACTIONS(1827), + [sym_integer] = ACTIONS(1827), + [sym_float] = ACTIONS(1829), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_api] = ACTIONS(1827), + [sym_true] = ACTIONS(1827), + [sym_false] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1827), + [anon_sym_include] = ACTIONS(1827), + [anon_sym_DEF] = ACTIONS(1827), + [anon_sym_IF] = ACTIONS(1827), + [anon_sym_cdef] = ACTIONS(1827), + [anon_sym_cpdef] = ACTIONS(1827), + [anon_sym_int] = ACTIONS(1827), + [anon_sym_double] = ACTIONS(1827), + [anon_sym_complex] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1827), + [anon_sym_signed] = ACTIONS(1827), + [anon_sym_unsigned] = ACTIONS(1827), + [anon_sym_char] = ACTIONS(1827), + [anon_sym_short] = ACTIONS(1827), + [anon_sym_long] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1827), + [anon_sym_volatile] = ACTIONS(1827), + [anon_sym_ctypedef] = ACTIONS(1827), + [anon_sym_struct] = ACTIONS(1827), + [anon_sym_union] = ACTIONS(1827), + [anon_sym_enum] = ACTIONS(1827), + [anon_sym_cppclass] = ACTIONS(1827), + [anon_sym_fused] = ACTIONS(1827), + [anon_sym_public] = ACTIONS(1827), + [anon_sym_packed] = ACTIONS(1827), + [anon_sym_inline] = ACTIONS(1827), + [anon_sym_readonly] = ACTIONS(1827), + [anon_sym_sizeof] = ACTIONS(1827), + [sym__dedent] = ACTIONS(1829), + [sym_string_start] = ACTIONS(1829), }, [586] = { - [sym_identifier] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_import] = ACTIONS(1841), - [anon_sym_cimport] = ACTIONS(1841), - [anon_sym_from] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_print] = ACTIONS(1841), - [anon_sym_assert] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_del] = ACTIONS(1841), - [anon_sym_raise] = ACTIONS(1841), - [anon_sym_pass] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_with] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1841), - [anon_sym_global] = ACTIONS(1841), - [anon_sym_nonlocal] = ACTIONS(1841), - [anon_sym_exec] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_not] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_lambda] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1843), - [anon_sym_None] = ACTIONS(1841), - [sym_integer] = ACTIONS(1841), - [sym_float] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_api] = ACTIONS(1841), - [sym_true] = ACTIONS(1841), - [sym_false] = ACTIONS(1841), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1841), - [anon_sym_include] = ACTIONS(1841), - [anon_sym_DEF] = ACTIONS(1841), - [anon_sym_cdef] = ACTIONS(1841), - [anon_sym_cpdef] = ACTIONS(1841), - [anon_sym_int] = ACTIONS(1841), - [anon_sym_double] = ACTIONS(1841), - [anon_sym_complex] = ACTIONS(1841), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_signed] = ACTIONS(1841), - [anon_sym_unsigned] = ACTIONS(1841), - [anon_sym_char] = ACTIONS(1841), - [anon_sym_short] = ACTIONS(1841), - [anon_sym_long] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_volatile] = ACTIONS(1841), - [anon_sym_ctypedef] = ACTIONS(1841), - [anon_sym_struct] = ACTIONS(1841), - [anon_sym_union] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [anon_sym_cppclass] = ACTIONS(1841), - [anon_sym_fused] = ACTIONS(1841), - [anon_sym_public] = ACTIONS(1841), - [anon_sym_packed] = ACTIONS(1841), - [anon_sym_inline] = ACTIONS(1841), - [anon_sym_readonly] = ACTIONS(1841), - [anon_sym_sizeof] = ACTIONS(1841), - [sym__dedent] = ACTIONS(1843), - [sym_string_start] = ACTIONS(1843), + [sym_identifier] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_import] = ACTIONS(1831), + [anon_sym_cimport] = ACTIONS(1831), + [anon_sym_from] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym_print] = ACTIONS(1831), + [anon_sym_assert] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_del] = ACTIONS(1831), + [anon_sym_raise] = ACTIONS(1831), + [anon_sym_pass] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1831), + [anon_sym_async] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_with] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1831), + [anon_sym_global] = ACTIONS(1831), + [anon_sym_nonlocal] = ACTIONS(1831), + [anon_sym_exec] = ACTIONS(1831), + [anon_sym_type] = ACTIONS(1831), + [anon_sym_class] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_AT] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_not] = ACTIONS(1831), + [anon_sym_AMP] = ACTIONS(1833), + [anon_sym_TILDE] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_lambda] = ACTIONS(1831), + [anon_sym_yield] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1833), + [anon_sym_None] = ACTIONS(1831), + [sym_integer] = ACTIONS(1831), + [sym_float] = ACTIONS(1833), + [anon_sym_await] = ACTIONS(1831), + [anon_sym_api] = ACTIONS(1831), + [sym_true] = ACTIONS(1831), + [sym_false] = ACTIONS(1831), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1831), + [anon_sym_include] = ACTIONS(1831), + [anon_sym_DEF] = ACTIONS(1831), + [anon_sym_IF] = ACTIONS(1831), + [anon_sym_cdef] = ACTIONS(1831), + [anon_sym_cpdef] = ACTIONS(1831), + [anon_sym_int] = ACTIONS(1831), + [anon_sym_double] = ACTIONS(1831), + [anon_sym_complex] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1831), + [anon_sym_signed] = ACTIONS(1831), + [anon_sym_unsigned] = ACTIONS(1831), + [anon_sym_char] = ACTIONS(1831), + [anon_sym_short] = ACTIONS(1831), + [anon_sym_long] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_volatile] = ACTIONS(1831), + [anon_sym_ctypedef] = ACTIONS(1831), + [anon_sym_struct] = ACTIONS(1831), + [anon_sym_union] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [anon_sym_cppclass] = ACTIONS(1831), + [anon_sym_fused] = ACTIONS(1831), + [anon_sym_public] = ACTIONS(1831), + [anon_sym_packed] = ACTIONS(1831), + [anon_sym_inline] = ACTIONS(1831), + [anon_sym_readonly] = ACTIONS(1831), + [anon_sym_sizeof] = ACTIONS(1831), + [sym__dedent] = ACTIONS(1833), + [sym_string_start] = ACTIONS(1833), }, [587] = { - [sym_identifier] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_cimport] = ACTIONS(1845), - [anon_sym_from] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_print] = ACTIONS(1845), - [anon_sym_assert] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_del] = ACTIONS(1845), - [anon_sym_raise] = ACTIONS(1845), - [anon_sym_pass] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_def] = ACTIONS(1845), - [anon_sym_global] = ACTIONS(1845), - [anon_sym_nonlocal] = ACTIONS(1845), - [anon_sym_exec] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_not] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_lambda] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1847), - [anon_sym_None] = ACTIONS(1845), - [sym_integer] = ACTIONS(1845), - [sym_float] = ACTIONS(1847), - [anon_sym_await] = ACTIONS(1845), - [anon_sym_api] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1845), - [anon_sym_include] = ACTIONS(1845), - [anon_sym_DEF] = ACTIONS(1845), - [anon_sym_cdef] = ACTIONS(1845), - [anon_sym_cpdef] = ACTIONS(1845), - [anon_sym_int] = ACTIONS(1845), - [anon_sym_double] = ACTIONS(1845), - [anon_sym_complex] = ACTIONS(1845), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_signed] = ACTIONS(1845), - [anon_sym_unsigned] = ACTIONS(1845), - [anon_sym_char] = ACTIONS(1845), - [anon_sym_short] = ACTIONS(1845), - [anon_sym_long] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_volatile] = ACTIONS(1845), - [anon_sym_ctypedef] = ACTIONS(1845), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_union] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_cppclass] = ACTIONS(1845), - [anon_sym_fused] = ACTIONS(1845), - [anon_sym_public] = ACTIONS(1845), - [anon_sym_packed] = ACTIONS(1845), - [anon_sym_inline] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(1845), - [anon_sym_sizeof] = ACTIONS(1845), - [sym__dedent] = ACTIONS(1847), - [sym_string_start] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_import] = ACTIONS(1835), + [anon_sym_cimport] = ACTIONS(1835), + [anon_sym_from] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_print] = ACTIONS(1835), + [anon_sym_assert] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_del] = ACTIONS(1835), + [anon_sym_raise] = ACTIONS(1835), + [anon_sym_pass] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_async] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_with] = ACTIONS(1835), + [anon_sym_def] = ACTIONS(1835), + [anon_sym_global] = ACTIONS(1835), + [anon_sym_nonlocal] = ACTIONS(1835), + [anon_sym_exec] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_class] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_not] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_lambda] = ACTIONS(1835), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_None] = ACTIONS(1835), + [sym_integer] = ACTIONS(1835), + [sym_float] = ACTIONS(1837), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_api] = ACTIONS(1835), + [sym_true] = ACTIONS(1835), + [sym_false] = ACTIONS(1835), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1835), + [anon_sym_include] = ACTIONS(1835), + [anon_sym_DEF] = ACTIONS(1835), + [anon_sym_IF] = ACTIONS(1835), + [anon_sym_cdef] = ACTIONS(1835), + [anon_sym_cpdef] = ACTIONS(1835), + [anon_sym_int] = ACTIONS(1835), + [anon_sym_double] = ACTIONS(1835), + [anon_sym_complex] = ACTIONS(1835), + [anon_sym_new] = ACTIONS(1835), + [anon_sym_signed] = ACTIONS(1835), + [anon_sym_unsigned] = ACTIONS(1835), + [anon_sym_char] = ACTIONS(1835), + [anon_sym_short] = ACTIONS(1835), + [anon_sym_long] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_volatile] = ACTIONS(1835), + [anon_sym_ctypedef] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1835), + [anon_sym_union] = ACTIONS(1835), + [anon_sym_enum] = ACTIONS(1835), + [anon_sym_cppclass] = ACTIONS(1835), + [anon_sym_fused] = ACTIONS(1835), + [anon_sym_public] = ACTIONS(1835), + [anon_sym_packed] = ACTIONS(1835), + [anon_sym_inline] = ACTIONS(1835), + [anon_sym_readonly] = ACTIONS(1835), + [anon_sym_sizeof] = ACTIONS(1835), + [sym__dedent] = ACTIONS(1837), + [sym_string_start] = ACTIONS(1837), }, [588] = { - [sym_identifier] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_import] = ACTIONS(1849), - [anon_sym_cimport] = ACTIONS(1849), - [anon_sym_from] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_print] = ACTIONS(1849), - [anon_sym_assert] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_del] = ACTIONS(1849), - [anon_sym_raise] = ACTIONS(1849), - [anon_sym_pass] = ACTIONS(1849), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_match] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_try] = ACTIONS(1849), - [anon_sym_with] = ACTIONS(1849), - [anon_sym_def] = ACTIONS(1849), - [anon_sym_global] = ACTIONS(1849), - [anon_sym_nonlocal] = ACTIONS(1849), - [anon_sym_exec] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_class] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_not] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_lambda] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1851), - [anon_sym_None] = ACTIONS(1849), - [sym_integer] = ACTIONS(1849), - [sym_float] = ACTIONS(1851), - [anon_sym_await] = ACTIONS(1849), - [anon_sym_api] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1849), - [anon_sym_include] = ACTIONS(1849), - [anon_sym_DEF] = ACTIONS(1849), - [anon_sym_cdef] = ACTIONS(1849), - [anon_sym_cpdef] = ACTIONS(1849), - [anon_sym_int] = ACTIONS(1849), - [anon_sym_double] = ACTIONS(1849), - [anon_sym_complex] = ACTIONS(1849), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_signed] = ACTIONS(1849), - [anon_sym_unsigned] = ACTIONS(1849), - [anon_sym_char] = ACTIONS(1849), - [anon_sym_short] = ACTIONS(1849), - [anon_sym_long] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_volatile] = ACTIONS(1849), - [anon_sym_ctypedef] = ACTIONS(1849), - [anon_sym_struct] = ACTIONS(1849), - [anon_sym_union] = ACTIONS(1849), - [anon_sym_enum] = ACTIONS(1849), - [anon_sym_cppclass] = ACTIONS(1849), - [anon_sym_fused] = ACTIONS(1849), - [anon_sym_public] = ACTIONS(1849), - [anon_sym_packed] = ACTIONS(1849), - [anon_sym_inline] = ACTIONS(1849), - [anon_sym_readonly] = ACTIONS(1849), - [anon_sym_sizeof] = ACTIONS(1849), - [sym__dedent] = ACTIONS(1851), - [sym_string_start] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_import] = ACTIONS(1839), + [anon_sym_cimport] = ACTIONS(1839), + [anon_sym_from] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_print] = ACTIONS(1839), + [anon_sym_assert] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_del] = ACTIONS(1839), + [anon_sym_raise] = ACTIONS(1839), + [anon_sym_pass] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_async] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_with] = ACTIONS(1839), + [anon_sym_def] = ACTIONS(1839), + [anon_sym_global] = ACTIONS(1839), + [anon_sym_nonlocal] = ACTIONS(1839), + [anon_sym_exec] = ACTIONS(1839), + [anon_sym_type] = ACTIONS(1839), + [anon_sym_class] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_AT] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_not] = ACTIONS(1839), + [anon_sym_AMP] = ACTIONS(1841), + [anon_sym_TILDE] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_lambda] = ACTIONS(1839), + [anon_sym_yield] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1841), + [anon_sym_None] = ACTIONS(1839), + [sym_integer] = ACTIONS(1839), + [sym_float] = ACTIONS(1841), + [anon_sym_await] = ACTIONS(1839), + [anon_sym_api] = ACTIONS(1839), + [sym_true] = ACTIONS(1839), + [sym_false] = ACTIONS(1839), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1839), + [anon_sym_include] = ACTIONS(1839), + [anon_sym_DEF] = ACTIONS(1839), + [anon_sym_IF] = ACTIONS(1839), + [anon_sym_cdef] = ACTIONS(1839), + [anon_sym_cpdef] = ACTIONS(1839), + [anon_sym_int] = ACTIONS(1839), + [anon_sym_double] = ACTIONS(1839), + [anon_sym_complex] = ACTIONS(1839), + [anon_sym_new] = ACTIONS(1839), + [anon_sym_signed] = ACTIONS(1839), + [anon_sym_unsigned] = ACTIONS(1839), + [anon_sym_char] = ACTIONS(1839), + [anon_sym_short] = ACTIONS(1839), + [anon_sym_long] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [anon_sym_volatile] = ACTIONS(1839), + [anon_sym_ctypedef] = ACTIONS(1839), + [anon_sym_struct] = ACTIONS(1839), + [anon_sym_union] = ACTIONS(1839), + [anon_sym_enum] = ACTIONS(1839), + [anon_sym_cppclass] = ACTIONS(1839), + [anon_sym_fused] = ACTIONS(1839), + [anon_sym_public] = ACTIONS(1839), + [anon_sym_packed] = ACTIONS(1839), + [anon_sym_inline] = ACTIONS(1839), + [anon_sym_readonly] = ACTIONS(1839), + [anon_sym_sizeof] = ACTIONS(1839), + [sym__dedent] = ACTIONS(1841), + [sym_string_start] = ACTIONS(1841), }, [589] = { - [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), + [sym_identifier] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_import] = ACTIONS(1843), + [anon_sym_cimport] = ACTIONS(1843), + [anon_sym_from] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_print] = ACTIONS(1843), + [anon_sym_assert] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_del] = ACTIONS(1843), + [anon_sym_raise] = ACTIONS(1843), + [anon_sym_pass] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_with] = ACTIONS(1843), + [anon_sym_def] = ACTIONS(1843), + [anon_sym_global] = ACTIONS(1843), + [anon_sym_nonlocal] = ACTIONS(1843), + [anon_sym_exec] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_class] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_AT] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_lambda] = ACTIONS(1843), + [anon_sym_yield] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1845), + [anon_sym_None] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1845), + [anon_sym_await] = ACTIONS(1843), + [anon_sym_api] = ACTIONS(1843), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1843), + [anon_sym_include] = ACTIONS(1843), + [anon_sym_DEF] = ACTIONS(1843), + [anon_sym_IF] = ACTIONS(1843), + [anon_sym_cdef] = ACTIONS(1843), + [anon_sym_cpdef] = ACTIONS(1843), + [anon_sym_int] = ACTIONS(1843), + [anon_sym_double] = ACTIONS(1843), + [anon_sym_complex] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_signed] = ACTIONS(1843), + [anon_sym_unsigned] = ACTIONS(1843), + [anon_sym_char] = ACTIONS(1843), + [anon_sym_short] = ACTIONS(1843), + [anon_sym_long] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_volatile] = ACTIONS(1843), + [anon_sym_ctypedef] = ACTIONS(1843), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_union] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [anon_sym_cppclass] = ACTIONS(1843), + [anon_sym_fused] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_packed] = ACTIONS(1843), + [anon_sym_inline] = ACTIONS(1843), + [anon_sym_readonly] = ACTIONS(1843), + [anon_sym_sizeof] = ACTIONS(1843), + [sym__dedent] = ACTIONS(1845), + [sym_string_start] = ACTIONS(1845), }, [590] = { - [sym_identifier] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_import] = ACTIONS(1857), - [anon_sym_cimport] = ACTIONS(1857), - [anon_sym_from] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_STAR] = ACTIONS(1859), - [anon_sym_print] = ACTIONS(1857), - [anon_sym_assert] = ACTIONS(1857), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_del] = ACTIONS(1857), - [anon_sym_raise] = ACTIONS(1857), - [anon_sym_pass] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1857), - [anon_sym_continue] = ACTIONS(1857), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_match] = ACTIONS(1857), - [anon_sym_async] = ACTIONS(1857), - [anon_sym_for] = ACTIONS(1857), - [anon_sym_while] = ACTIONS(1857), - [anon_sym_try] = ACTIONS(1857), - [anon_sym_with] = ACTIONS(1857), - [anon_sym_def] = ACTIONS(1857), - [anon_sym_global] = ACTIONS(1857), - [anon_sym_nonlocal] = ACTIONS(1857), - [anon_sym_exec] = ACTIONS(1857), - [anon_sym_type] = ACTIONS(1857), - [anon_sym_class] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(1859), - [anon_sym_not] = ACTIONS(1857), - [anon_sym_AMP] = ACTIONS(1859), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_LT] = ACTIONS(1859), - [anon_sym_lambda] = ACTIONS(1857), - [anon_sym_yield] = ACTIONS(1857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1859), - [anon_sym_None] = ACTIONS(1857), - [sym_integer] = ACTIONS(1857), - [sym_float] = ACTIONS(1859), - [anon_sym_await] = ACTIONS(1857), - [anon_sym_api] = ACTIONS(1857), - [sym_true] = ACTIONS(1857), - [sym_false] = ACTIONS(1857), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1857), - [anon_sym_include] = ACTIONS(1857), - [anon_sym_DEF] = ACTIONS(1857), - [anon_sym_cdef] = ACTIONS(1857), - [anon_sym_cpdef] = ACTIONS(1857), - [anon_sym_int] = ACTIONS(1857), - [anon_sym_double] = ACTIONS(1857), - [anon_sym_complex] = ACTIONS(1857), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_signed] = ACTIONS(1857), - [anon_sym_unsigned] = ACTIONS(1857), - [anon_sym_char] = ACTIONS(1857), - [anon_sym_short] = ACTIONS(1857), - [anon_sym_long] = ACTIONS(1857), - [anon_sym_const] = ACTIONS(1857), - [anon_sym_volatile] = ACTIONS(1857), - [anon_sym_ctypedef] = ACTIONS(1857), - [anon_sym_struct] = ACTIONS(1857), - [anon_sym_union] = ACTIONS(1857), - [anon_sym_enum] = ACTIONS(1857), - [anon_sym_cppclass] = ACTIONS(1857), - [anon_sym_fused] = ACTIONS(1857), - [anon_sym_public] = ACTIONS(1857), - [anon_sym_packed] = ACTIONS(1857), - [anon_sym_inline] = ACTIONS(1857), - [anon_sym_readonly] = ACTIONS(1857), - [anon_sym_sizeof] = ACTIONS(1857), - [sym__dedent] = ACTIONS(1859), - [sym_string_start] = ACTIONS(1859), + [sym_identifier] = ACTIONS(1847), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_import] = ACTIONS(1847), + [anon_sym_cimport] = ACTIONS(1847), + [anon_sym_from] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_print] = ACTIONS(1847), + [anon_sym_assert] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_del] = ACTIONS(1847), + [anon_sym_raise] = ACTIONS(1847), + [anon_sym_pass] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_async] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_with] = ACTIONS(1847), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_global] = ACTIONS(1847), + [anon_sym_nonlocal] = ACTIONS(1847), + [anon_sym_exec] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_class] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_AT] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_not] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_lambda] = ACTIONS(1847), + [anon_sym_yield] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1849), + [anon_sym_None] = ACTIONS(1847), + [sym_integer] = ACTIONS(1847), + [sym_float] = ACTIONS(1849), + [anon_sym_await] = ACTIONS(1847), + [anon_sym_api] = ACTIONS(1847), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1847), + [anon_sym_include] = ACTIONS(1847), + [anon_sym_DEF] = ACTIONS(1847), + [anon_sym_IF] = ACTIONS(1847), + [anon_sym_cdef] = ACTIONS(1847), + [anon_sym_cpdef] = ACTIONS(1847), + [anon_sym_int] = ACTIONS(1847), + [anon_sym_double] = ACTIONS(1847), + [anon_sym_complex] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1847), + [anon_sym_signed] = ACTIONS(1847), + [anon_sym_unsigned] = ACTIONS(1847), + [anon_sym_char] = ACTIONS(1847), + [anon_sym_short] = ACTIONS(1847), + [anon_sym_long] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [anon_sym_volatile] = ACTIONS(1847), + [anon_sym_ctypedef] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1847), + [anon_sym_union] = ACTIONS(1847), + [anon_sym_enum] = ACTIONS(1847), + [anon_sym_cppclass] = ACTIONS(1847), + [anon_sym_fused] = ACTIONS(1847), + [anon_sym_public] = ACTIONS(1847), + [anon_sym_packed] = ACTIONS(1847), + [anon_sym_inline] = ACTIONS(1847), + [anon_sym_readonly] = ACTIONS(1847), + [anon_sym_sizeof] = ACTIONS(1847), + [sym__dedent] = ACTIONS(1849), + [sym_string_start] = ACTIONS(1849), }, [591] = { - [sym_identifier] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_cimport] = ACTIONS(1861), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_print] = ACTIONS(1861), - [anon_sym_assert] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_del] = ACTIONS(1861), - [anon_sym_raise] = ACTIONS(1861), - [anon_sym_pass] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(1861), - [anon_sym_def] = ACTIONS(1861), - [anon_sym_global] = ACTIONS(1861), - [anon_sym_nonlocal] = ACTIONS(1861), - [anon_sym_exec] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_class] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_AT] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_lambda] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), - [anon_sym_None] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1863), - [anon_sym_await] = ACTIONS(1861), - [anon_sym_api] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1861), - [anon_sym_include] = ACTIONS(1861), - [anon_sym_DEF] = ACTIONS(1861), - [anon_sym_cdef] = ACTIONS(1861), - [anon_sym_cpdef] = ACTIONS(1861), - [anon_sym_int] = ACTIONS(1861), - [anon_sym_double] = ACTIONS(1861), - [anon_sym_complex] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1861), - [anon_sym_signed] = ACTIONS(1861), - [anon_sym_unsigned] = ACTIONS(1861), - [anon_sym_char] = ACTIONS(1861), - [anon_sym_short] = ACTIONS(1861), - [anon_sym_long] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_volatile] = ACTIONS(1861), - [anon_sym_ctypedef] = ACTIONS(1861), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_union] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [anon_sym_cppclass] = ACTIONS(1861), - [anon_sym_fused] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1861), - [anon_sym_packed] = ACTIONS(1861), - [anon_sym_inline] = ACTIONS(1861), - [anon_sym_readonly] = ACTIONS(1861), - [anon_sym_sizeof] = ACTIONS(1861), - [sym__dedent] = ACTIONS(1863), - [sym_string_start] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1851), + [anon_sym_cimport] = ACTIONS(1851), + [anon_sym_from] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_print] = ACTIONS(1851), + [anon_sym_assert] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_del] = ACTIONS(1851), + [anon_sym_raise] = ACTIONS(1851), + [anon_sym_pass] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_match] = ACTIONS(1851), + [anon_sym_async] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_with] = ACTIONS(1851), + [anon_sym_def] = ACTIONS(1851), + [anon_sym_global] = ACTIONS(1851), + [anon_sym_nonlocal] = ACTIONS(1851), + [anon_sym_exec] = ACTIONS(1851), + [anon_sym_type] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_AT] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_not] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_lambda] = ACTIONS(1851), + [anon_sym_yield] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1853), + [anon_sym_None] = ACTIONS(1851), + [sym_integer] = ACTIONS(1851), + [sym_float] = ACTIONS(1853), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_api] = ACTIONS(1851), + [sym_true] = ACTIONS(1851), + [sym_false] = ACTIONS(1851), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1851), + [anon_sym_include] = ACTIONS(1851), + [anon_sym_DEF] = ACTIONS(1851), + [anon_sym_IF] = ACTIONS(1851), + [anon_sym_cdef] = ACTIONS(1851), + [anon_sym_cpdef] = ACTIONS(1851), + [anon_sym_int] = ACTIONS(1851), + [anon_sym_double] = ACTIONS(1851), + [anon_sym_complex] = ACTIONS(1851), + [anon_sym_new] = ACTIONS(1851), + [anon_sym_signed] = ACTIONS(1851), + [anon_sym_unsigned] = ACTIONS(1851), + [anon_sym_char] = ACTIONS(1851), + [anon_sym_short] = ACTIONS(1851), + [anon_sym_long] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [anon_sym_volatile] = ACTIONS(1851), + [anon_sym_ctypedef] = ACTIONS(1851), + [anon_sym_struct] = ACTIONS(1851), + [anon_sym_union] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1851), + [anon_sym_cppclass] = ACTIONS(1851), + [anon_sym_fused] = ACTIONS(1851), + [anon_sym_public] = ACTIONS(1851), + [anon_sym_packed] = ACTIONS(1851), + [anon_sym_inline] = ACTIONS(1851), + [anon_sym_readonly] = ACTIONS(1851), + [anon_sym_sizeof] = ACTIONS(1851), + [sym__dedent] = ACTIONS(1853), + [sym_string_start] = ACTIONS(1853), }, [592] = { - [sym_identifier] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(1865), - [anon_sym_cimport] = ACTIONS(1865), - [anon_sym_from] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1867), - [anon_sym_print] = ACTIONS(1865), - [anon_sym_assert] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_del] = ACTIONS(1865), - [anon_sym_raise] = ACTIONS(1865), - [anon_sym_pass] = ACTIONS(1865), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_async] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_try] = ACTIONS(1865), - [anon_sym_with] = ACTIONS(1865), - [anon_sym_def] = ACTIONS(1865), - [anon_sym_global] = ACTIONS(1865), - [anon_sym_nonlocal] = ACTIONS(1865), - [anon_sym_exec] = ACTIONS(1865), - [anon_sym_type] = ACTIONS(1865), - [anon_sym_class] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1867), - [anon_sym_AT] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_not] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_lambda] = ACTIONS(1865), - [anon_sym_yield] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1867), - [anon_sym_None] = ACTIONS(1865), - [sym_integer] = ACTIONS(1865), - [sym_float] = ACTIONS(1867), - [anon_sym_await] = ACTIONS(1865), - [anon_sym_api] = ACTIONS(1865), - [sym_true] = ACTIONS(1865), - [sym_false] = ACTIONS(1865), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1865), - [anon_sym_include] = ACTIONS(1865), - [anon_sym_DEF] = ACTIONS(1865), - [anon_sym_cdef] = ACTIONS(1865), - [anon_sym_cpdef] = ACTIONS(1865), - [anon_sym_int] = ACTIONS(1865), - [anon_sym_double] = ACTIONS(1865), - [anon_sym_complex] = ACTIONS(1865), - [anon_sym_new] = ACTIONS(1865), - [anon_sym_signed] = ACTIONS(1865), - [anon_sym_unsigned] = ACTIONS(1865), - [anon_sym_char] = ACTIONS(1865), - [anon_sym_short] = ACTIONS(1865), - [anon_sym_long] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [anon_sym_volatile] = ACTIONS(1865), - [anon_sym_ctypedef] = ACTIONS(1865), - [anon_sym_struct] = ACTIONS(1865), - [anon_sym_union] = ACTIONS(1865), - [anon_sym_enum] = ACTIONS(1865), - [anon_sym_cppclass] = ACTIONS(1865), - [anon_sym_fused] = ACTIONS(1865), - [anon_sym_public] = ACTIONS(1865), - [anon_sym_packed] = ACTIONS(1865), - [anon_sym_inline] = ACTIONS(1865), - [anon_sym_readonly] = ACTIONS(1865), - [anon_sym_sizeof] = ACTIONS(1865), - [sym__dedent] = ACTIONS(1867), - [sym_string_start] = ACTIONS(1867), + [sym_identifier] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_import] = ACTIONS(1855), + [anon_sym_cimport] = ACTIONS(1855), + [anon_sym_from] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_print] = ACTIONS(1855), + [anon_sym_assert] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_del] = ACTIONS(1855), + [anon_sym_raise] = ACTIONS(1855), + [anon_sym_pass] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_async] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_with] = ACTIONS(1855), + [anon_sym_def] = ACTIONS(1855), + [anon_sym_global] = ACTIONS(1855), + [anon_sym_nonlocal] = ACTIONS(1855), + [anon_sym_exec] = ACTIONS(1855), + [anon_sym_type] = ACTIONS(1855), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_AT] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_not] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_lambda] = ACTIONS(1855), + [anon_sym_yield] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1857), + [anon_sym_None] = ACTIONS(1855), + [sym_integer] = ACTIONS(1855), + [sym_float] = ACTIONS(1857), + [anon_sym_await] = ACTIONS(1855), + [anon_sym_api] = ACTIONS(1855), + [sym_true] = ACTIONS(1855), + [sym_false] = ACTIONS(1855), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1855), + [anon_sym_include] = ACTIONS(1855), + [anon_sym_DEF] = ACTIONS(1855), + [anon_sym_IF] = ACTIONS(1855), + [anon_sym_cdef] = ACTIONS(1855), + [anon_sym_cpdef] = ACTIONS(1855), + [anon_sym_int] = ACTIONS(1855), + [anon_sym_double] = ACTIONS(1855), + [anon_sym_complex] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_signed] = ACTIONS(1855), + [anon_sym_unsigned] = ACTIONS(1855), + [anon_sym_char] = ACTIONS(1855), + [anon_sym_short] = ACTIONS(1855), + [anon_sym_long] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [anon_sym_volatile] = ACTIONS(1855), + [anon_sym_ctypedef] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_union] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [anon_sym_cppclass] = ACTIONS(1855), + [anon_sym_fused] = ACTIONS(1855), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_packed] = ACTIONS(1855), + [anon_sym_inline] = ACTIONS(1855), + [anon_sym_readonly] = ACTIONS(1855), + [anon_sym_sizeof] = ACTIONS(1855), + [sym__dedent] = ACTIONS(1857), + [sym_string_start] = ACTIONS(1857), }, [593] = { - [sym_identifier] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1871), - [anon_sym_import] = ACTIONS(1869), - [anon_sym_cimport] = ACTIONS(1869), - [anon_sym_from] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1871), - [anon_sym_print] = ACTIONS(1869), - [anon_sym_assert] = ACTIONS(1869), - [anon_sym_return] = ACTIONS(1869), - [anon_sym_del] = ACTIONS(1869), - [anon_sym_raise] = ACTIONS(1869), - [anon_sym_pass] = ACTIONS(1869), - [anon_sym_break] = ACTIONS(1869), - [anon_sym_continue] = ACTIONS(1869), - [anon_sym_if] = ACTIONS(1869), - [anon_sym_match] = ACTIONS(1869), - [anon_sym_async] = ACTIONS(1869), - [anon_sym_for] = ACTIONS(1869), - [anon_sym_while] = ACTIONS(1869), - [anon_sym_try] = ACTIONS(1869), - [anon_sym_with] = ACTIONS(1869), - [anon_sym_def] = ACTIONS(1869), - [anon_sym_global] = ACTIONS(1869), - [anon_sym_nonlocal] = ACTIONS(1869), - [anon_sym_exec] = ACTIONS(1869), - [anon_sym_type] = ACTIONS(1869), - [anon_sym_class] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1871), - [anon_sym_AT] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_not] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1871), - [anon_sym_lambda] = ACTIONS(1869), - [anon_sym_yield] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), - [anon_sym_None] = ACTIONS(1869), - [sym_integer] = ACTIONS(1869), - [sym_float] = ACTIONS(1871), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_api] = ACTIONS(1869), - [sym_true] = ACTIONS(1869), - [sym_false] = ACTIONS(1869), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1869), - [anon_sym_include] = ACTIONS(1869), - [anon_sym_DEF] = ACTIONS(1869), - [anon_sym_cdef] = ACTIONS(1869), - [anon_sym_cpdef] = ACTIONS(1869), - [anon_sym_int] = ACTIONS(1869), - [anon_sym_double] = ACTIONS(1869), - [anon_sym_complex] = ACTIONS(1869), - [anon_sym_new] = ACTIONS(1869), - [anon_sym_signed] = ACTIONS(1869), - [anon_sym_unsigned] = ACTIONS(1869), - [anon_sym_char] = ACTIONS(1869), - [anon_sym_short] = ACTIONS(1869), - [anon_sym_long] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(1869), - [anon_sym_volatile] = ACTIONS(1869), - [anon_sym_ctypedef] = ACTIONS(1869), - [anon_sym_struct] = ACTIONS(1869), - [anon_sym_union] = ACTIONS(1869), - [anon_sym_enum] = ACTIONS(1869), - [anon_sym_cppclass] = ACTIONS(1869), - [anon_sym_fused] = ACTIONS(1869), - [anon_sym_public] = ACTIONS(1869), - [anon_sym_packed] = ACTIONS(1869), - [anon_sym_inline] = ACTIONS(1869), - [anon_sym_readonly] = ACTIONS(1869), - [anon_sym_sizeof] = ACTIONS(1869), - [sym__dedent] = ACTIONS(1871), - [sym_string_start] = ACTIONS(1871), + [sym_identifier] = ACTIONS(1859), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_cimport] = ACTIONS(1859), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_print] = ACTIONS(1859), + [anon_sym_assert] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_del] = ACTIONS(1859), + [anon_sym_raise] = ACTIONS(1859), + [anon_sym_pass] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_with] = ACTIONS(1859), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_global] = ACTIONS(1859), + [anon_sym_nonlocal] = ACTIONS(1859), + [anon_sym_exec] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_AT] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(1861), + [anon_sym_not] = ACTIONS(1859), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1861), + [anon_sym_lambda] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + [anon_sym_None] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1861), + [anon_sym_await] = ACTIONS(1859), + [anon_sym_api] = ACTIONS(1859), + [sym_true] = ACTIONS(1859), + [sym_false] = ACTIONS(1859), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_include] = ACTIONS(1859), + [anon_sym_DEF] = ACTIONS(1859), + [anon_sym_IF] = ACTIONS(1859), + [anon_sym_cdef] = ACTIONS(1859), + [anon_sym_cpdef] = ACTIONS(1859), + [anon_sym_int] = ACTIONS(1859), + [anon_sym_double] = ACTIONS(1859), + [anon_sym_complex] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_signed] = ACTIONS(1859), + [anon_sym_unsigned] = ACTIONS(1859), + [anon_sym_char] = ACTIONS(1859), + [anon_sym_short] = ACTIONS(1859), + [anon_sym_long] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [anon_sym_volatile] = ACTIONS(1859), + [anon_sym_ctypedef] = ACTIONS(1859), + [anon_sym_struct] = ACTIONS(1859), + [anon_sym_union] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), + [anon_sym_cppclass] = ACTIONS(1859), + [anon_sym_fused] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_packed] = ACTIONS(1859), + [anon_sym_inline] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_sizeof] = ACTIONS(1859), + [sym__dedent] = ACTIONS(1861), + [sym_string_start] = ACTIONS(1861), }, [594] = { - [sym_identifier] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1875), - [anon_sym_import] = ACTIONS(1873), - [anon_sym_cimport] = ACTIONS(1873), - [anon_sym_from] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1875), - [anon_sym_print] = ACTIONS(1873), - [anon_sym_assert] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_del] = ACTIONS(1873), - [anon_sym_raise] = ACTIONS(1873), - [anon_sym_pass] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_match] = ACTIONS(1873), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1873), - [anon_sym_with] = ACTIONS(1873), - [anon_sym_def] = ACTIONS(1873), - [anon_sym_global] = ACTIONS(1873), - [anon_sym_nonlocal] = ACTIONS(1873), - [anon_sym_exec] = ACTIONS(1873), - [anon_sym_type] = ACTIONS(1873), - [anon_sym_class] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1875), - [anon_sym_AT] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1875), - [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_not] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_TILDE] = ACTIONS(1875), - [anon_sym_LT] = ACTIONS(1875), - [anon_sym_lambda] = ACTIONS(1873), - [anon_sym_yield] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1875), - [anon_sym_None] = ACTIONS(1873), - [sym_integer] = ACTIONS(1873), - [sym_float] = ACTIONS(1875), - [anon_sym_await] = ACTIONS(1873), - [anon_sym_api] = ACTIONS(1873), - [sym_true] = ACTIONS(1873), - [sym_false] = ACTIONS(1873), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1873), - [anon_sym_include] = ACTIONS(1873), - [anon_sym_DEF] = ACTIONS(1873), - [anon_sym_cdef] = ACTIONS(1873), - [anon_sym_cpdef] = ACTIONS(1873), - [anon_sym_int] = ACTIONS(1873), - [anon_sym_double] = ACTIONS(1873), - [anon_sym_complex] = ACTIONS(1873), - [anon_sym_new] = ACTIONS(1873), - [anon_sym_signed] = ACTIONS(1873), - [anon_sym_unsigned] = ACTIONS(1873), - [anon_sym_char] = ACTIONS(1873), - [anon_sym_short] = ACTIONS(1873), - [anon_sym_long] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_volatile] = ACTIONS(1873), - [anon_sym_ctypedef] = ACTIONS(1873), - [anon_sym_struct] = ACTIONS(1873), - [anon_sym_union] = ACTIONS(1873), - [anon_sym_enum] = ACTIONS(1873), - [anon_sym_cppclass] = ACTIONS(1873), - [anon_sym_fused] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1873), - [anon_sym_packed] = ACTIONS(1873), - [anon_sym_inline] = ACTIONS(1873), - [anon_sym_readonly] = ACTIONS(1873), - [anon_sym_sizeof] = ACTIONS(1873), - [sym__dedent] = ACTIONS(1875), - [sym_string_start] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_import] = ACTIONS(1863), + [anon_sym_cimport] = ACTIONS(1863), + [anon_sym_from] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_print] = ACTIONS(1863), + [anon_sym_assert] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_del] = ACTIONS(1863), + [anon_sym_raise] = ACTIONS(1863), + [anon_sym_pass] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_with] = ACTIONS(1863), + [anon_sym_def] = ACTIONS(1863), + [anon_sym_global] = ACTIONS(1863), + [anon_sym_nonlocal] = ACTIONS(1863), + [anon_sym_exec] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_AT] = ACTIONS(1865), + [anon_sym_DASH] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(1865), + [anon_sym_not] = ACTIONS(1863), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_LT] = ACTIONS(1865), + [anon_sym_lambda] = ACTIONS(1863), + [anon_sym_yield] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1865), + [anon_sym_None] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1865), + [anon_sym_await] = ACTIONS(1863), + [anon_sym_api] = ACTIONS(1863), + [sym_true] = ACTIONS(1863), + [sym_false] = ACTIONS(1863), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1863), + [anon_sym_include] = ACTIONS(1863), + [anon_sym_DEF] = ACTIONS(1863), + [anon_sym_IF] = ACTIONS(1863), + [anon_sym_cdef] = ACTIONS(1863), + [anon_sym_cpdef] = ACTIONS(1863), + [anon_sym_int] = ACTIONS(1863), + [anon_sym_double] = ACTIONS(1863), + [anon_sym_complex] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_signed] = ACTIONS(1863), + [anon_sym_unsigned] = ACTIONS(1863), + [anon_sym_char] = ACTIONS(1863), + [anon_sym_short] = ACTIONS(1863), + [anon_sym_long] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_volatile] = ACTIONS(1863), + [anon_sym_ctypedef] = ACTIONS(1863), + [anon_sym_struct] = ACTIONS(1863), + [anon_sym_union] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [anon_sym_cppclass] = ACTIONS(1863), + [anon_sym_fused] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_packed] = ACTIONS(1863), + [anon_sym_inline] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(1863), + [anon_sym_sizeof] = ACTIONS(1863), + [sym__dedent] = ACTIONS(1865), + [sym_string_start] = ACTIONS(1865), }, [595] = { - [sym_identifier] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_cimport] = ACTIONS(1845), - [anon_sym_from] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_print] = ACTIONS(1845), - [anon_sym_assert] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_del] = ACTIONS(1845), - [anon_sym_raise] = ACTIONS(1845), - [anon_sym_pass] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_match] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_def] = ACTIONS(1845), - [anon_sym_global] = ACTIONS(1845), - [anon_sym_nonlocal] = ACTIONS(1845), - [anon_sym_exec] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_PLUS] = ACTIONS(1847), - [anon_sym_not] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1847), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_lambda] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1847), - [anon_sym_None] = ACTIONS(1845), - [sym_integer] = ACTIONS(1845), - [sym_float] = ACTIONS(1847), - [anon_sym_await] = ACTIONS(1845), - [anon_sym_api] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1845), - [anon_sym_include] = ACTIONS(1845), - [anon_sym_DEF] = ACTIONS(1845), - [anon_sym_cdef] = ACTIONS(1845), - [anon_sym_cpdef] = ACTIONS(1845), - [anon_sym_int] = ACTIONS(1845), - [anon_sym_double] = ACTIONS(1845), - [anon_sym_complex] = ACTIONS(1845), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_signed] = ACTIONS(1845), - [anon_sym_unsigned] = ACTIONS(1845), - [anon_sym_char] = ACTIONS(1845), - [anon_sym_short] = ACTIONS(1845), - [anon_sym_long] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_volatile] = ACTIONS(1845), - [anon_sym_ctypedef] = ACTIONS(1845), - [anon_sym_struct] = ACTIONS(1845), - [anon_sym_union] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_cppclass] = ACTIONS(1845), - [anon_sym_fused] = ACTIONS(1845), - [anon_sym_public] = ACTIONS(1845), - [anon_sym_packed] = ACTIONS(1845), - [anon_sym_inline] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(1845), - [anon_sym_sizeof] = ACTIONS(1845), - [sym__dedent] = ACTIONS(1847), - [sym_string_start] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1867), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_import] = ACTIONS(1867), + [anon_sym_cimport] = ACTIONS(1867), + [anon_sym_from] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_print] = ACTIONS(1867), + [anon_sym_assert] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_del] = ACTIONS(1867), + [anon_sym_raise] = ACTIONS(1867), + [anon_sym_pass] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_async] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_with] = ACTIONS(1867), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_global] = ACTIONS(1867), + [anon_sym_nonlocal] = ACTIONS(1867), + [anon_sym_exec] = ACTIONS(1867), + [anon_sym_type] = ACTIONS(1867), + [anon_sym_class] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_AT] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_not] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1869), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_lambda] = ACTIONS(1867), + [anon_sym_yield] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), + [anon_sym_None] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1869), + [anon_sym_await] = ACTIONS(1867), + [anon_sym_api] = ACTIONS(1867), + [sym_true] = ACTIONS(1867), + [sym_false] = ACTIONS(1867), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1867), + [anon_sym_include] = ACTIONS(1867), + [anon_sym_DEF] = ACTIONS(1867), + [anon_sym_IF] = ACTIONS(1867), + [anon_sym_cdef] = ACTIONS(1867), + [anon_sym_cpdef] = ACTIONS(1867), + [anon_sym_int] = ACTIONS(1867), + [anon_sym_double] = ACTIONS(1867), + [anon_sym_complex] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_signed] = ACTIONS(1867), + [anon_sym_unsigned] = ACTIONS(1867), + [anon_sym_char] = ACTIONS(1867), + [anon_sym_short] = ACTIONS(1867), + [anon_sym_long] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [anon_sym_volatile] = ACTIONS(1867), + [anon_sym_ctypedef] = ACTIONS(1867), + [anon_sym_struct] = ACTIONS(1867), + [anon_sym_union] = ACTIONS(1867), + [anon_sym_enum] = ACTIONS(1867), + [anon_sym_cppclass] = ACTIONS(1867), + [anon_sym_fused] = ACTIONS(1867), + [anon_sym_public] = ACTIONS(1867), + [anon_sym_packed] = ACTIONS(1867), + [anon_sym_inline] = ACTIONS(1867), + [anon_sym_readonly] = ACTIONS(1867), + [anon_sym_sizeof] = ACTIONS(1867), + [sym__dedent] = ACTIONS(1869), + [sym_string_start] = ACTIONS(1869), }, [596] = { - [sym_identifier] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1879), - [anon_sym_import] = ACTIONS(1877), - [anon_sym_cimport] = ACTIONS(1877), - [anon_sym_from] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_print] = ACTIONS(1877), - [anon_sym_assert] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_del] = ACTIONS(1877), - [anon_sym_raise] = ACTIONS(1877), - [anon_sym_pass] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_match] = ACTIONS(1877), - [anon_sym_async] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_while] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1877), - [anon_sym_with] = ACTIONS(1877), - [anon_sym_def] = ACTIONS(1877), - [anon_sym_global] = ACTIONS(1877), - [anon_sym_nonlocal] = ACTIONS(1877), - [anon_sym_exec] = ACTIONS(1877), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_class] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_AT] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_not] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_lambda] = ACTIONS(1877), - [anon_sym_yield] = ACTIONS(1877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1879), - [anon_sym_None] = ACTIONS(1877), - [sym_integer] = ACTIONS(1877), - [sym_float] = ACTIONS(1879), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_api] = ACTIONS(1877), - [sym_true] = ACTIONS(1877), - [sym_false] = ACTIONS(1877), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1877), - [anon_sym_include] = ACTIONS(1877), - [anon_sym_DEF] = ACTIONS(1877), - [anon_sym_cdef] = ACTIONS(1877), - [anon_sym_cpdef] = ACTIONS(1877), - [anon_sym_int] = ACTIONS(1877), - [anon_sym_double] = ACTIONS(1877), - [anon_sym_complex] = ACTIONS(1877), - [anon_sym_new] = ACTIONS(1877), - [anon_sym_signed] = ACTIONS(1877), - [anon_sym_unsigned] = ACTIONS(1877), - [anon_sym_char] = ACTIONS(1877), - [anon_sym_short] = ACTIONS(1877), - [anon_sym_long] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_volatile] = ACTIONS(1877), - [anon_sym_ctypedef] = ACTIONS(1877), - [anon_sym_struct] = ACTIONS(1877), - [anon_sym_union] = ACTIONS(1877), - [anon_sym_enum] = ACTIONS(1877), - [anon_sym_cppclass] = ACTIONS(1877), - [anon_sym_fused] = ACTIONS(1877), - [anon_sym_public] = ACTIONS(1877), - [anon_sym_packed] = ACTIONS(1877), - [anon_sym_inline] = ACTIONS(1877), - [anon_sym_readonly] = ACTIONS(1877), - [anon_sym_sizeof] = ACTIONS(1877), - [sym__dedent] = ACTIONS(1879), - [sym_string_start] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1871), + [anon_sym_cimport] = ACTIONS(1871), + [anon_sym_from] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_print] = ACTIONS(1871), + [anon_sym_assert] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_del] = ACTIONS(1871), + [anon_sym_raise] = ACTIONS(1871), + [anon_sym_pass] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_async] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_with] = ACTIONS(1871), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_global] = ACTIONS(1871), + [anon_sym_nonlocal] = ACTIONS(1871), + [anon_sym_exec] = ACTIONS(1871), + [anon_sym_type] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_lambda] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1873), + [anon_sym_None] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1873), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_api] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1871), + [anon_sym_include] = ACTIONS(1871), + [anon_sym_DEF] = ACTIONS(1871), + [anon_sym_IF] = ACTIONS(1871), + [anon_sym_cdef] = ACTIONS(1871), + [anon_sym_cpdef] = ACTIONS(1871), + [anon_sym_int] = ACTIONS(1871), + [anon_sym_double] = ACTIONS(1871), + [anon_sym_complex] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_signed] = ACTIONS(1871), + [anon_sym_unsigned] = ACTIONS(1871), + [anon_sym_char] = ACTIONS(1871), + [anon_sym_short] = ACTIONS(1871), + [anon_sym_long] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_volatile] = ACTIONS(1871), + [anon_sym_ctypedef] = ACTIONS(1871), + [anon_sym_struct] = ACTIONS(1871), + [anon_sym_union] = ACTIONS(1871), + [anon_sym_enum] = ACTIONS(1871), + [anon_sym_cppclass] = ACTIONS(1871), + [anon_sym_fused] = ACTIONS(1871), + [anon_sym_public] = ACTIONS(1871), + [anon_sym_packed] = ACTIONS(1871), + [anon_sym_inline] = ACTIONS(1871), + [anon_sym_readonly] = ACTIONS(1871), + [anon_sym_sizeof] = ACTIONS(1871), + [sym__dedent] = ACTIONS(1873), + [sym_string_start] = ACTIONS(1873), }, [597] = { - [sym_identifier] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1883), - [anon_sym_import] = ACTIONS(1881), - [anon_sym_cimport] = ACTIONS(1881), - [anon_sym_from] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1883), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_print] = ACTIONS(1881), - [anon_sym_assert] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_del] = ACTIONS(1881), - [anon_sym_raise] = ACTIONS(1881), - [anon_sym_pass] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1881), - [anon_sym_with] = ACTIONS(1881), - [anon_sym_def] = ACTIONS(1881), - [anon_sym_global] = ACTIONS(1881), - [anon_sym_nonlocal] = ACTIONS(1881), - [anon_sym_exec] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_class] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1883), - [anon_sym_AT] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1883), - [anon_sym_PLUS] = ACTIONS(1883), - [anon_sym_not] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_LT] = ACTIONS(1883), - [anon_sym_lambda] = ACTIONS(1881), - [anon_sym_yield] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1883), - [anon_sym_None] = ACTIONS(1881), - [sym_integer] = ACTIONS(1881), - [sym_float] = ACTIONS(1883), - [anon_sym_await] = ACTIONS(1881), - [anon_sym_api] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1881), - [anon_sym_include] = ACTIONS(1881), - [anon_sym_DEF] = ACTIONS(1881), - [anon_sym_cdef] = ACTIONS(1881), - [anon_sym_cpdef] = ACTIONS(1881), - [anon_sym_int] = ACTIONS(1881), - [anon_sym_double] = ACTIONS(1881), - [anon_sym_complex] = ACTIONS(1881), - [anon_sym_new] = ACTIONS(1881), - [anon_sym_signed] = ACTIONS(1881), - [anon_sym_unsigned] = ACTIONS(1881), - [anon_sym_char] = ACTIONS(1881), - [anon_sym_short] = ACTIONS(1881), - [anon_sym_long] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_volatile] = ACTIONS(1881), - [anon_sym_ctypedef] = ACTIONS(1881), - [anon_sym_struct] = ACTIONS(1881), - [anon_sym_union] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), - [anon_sym_cppclass] = ACTIONS(1881), - [anon_sym_fused] = ACTIONS(1881), - [anon_sym_public] = ACTIONS(1881), - [anon_sym_packed] = ACTIONS(1881), - [anon_sym_inline] = ACTIONS(1881), - [anon_sym_readonly] = ACTIONS(1881), - [anon_sym_sizeof] = ACTIONS(1881), - [sym__dedent] = ACTIONS(1883), - [sym_string_start] = ACTIONS(1883), + [sym_identifier] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_import] = ACTIONS(1875), + [anon_sym_cimport] = ACTIONS(1875), + [anon_sym_from] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_print] = ACTIONS(1875), + [anon_sym_assert] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_del] = ACTIONS(1875), + [anon_sym_raise] = ACTIONS(1875), + [anon_sym_pass] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_async] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_with] = ACTIONS(1875), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_global] = ACTIONS(1875), + [anon_sym_nonlocal] = ACTIONS(1875), + [anon_sym_exec] = ACTIONS(1875), + [anon_sym_type] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_AT] = ACTIONS(1877), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1877), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_lambda] = ACTIONS(1875), + [anon_sym_yield] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [anon_sym_None] = ACTIONS(1875), + [sym_integer] = ACTIONS(1875), + [sym_float] = ACTIONS(1877), + [anon_sym_await] = ACTIONS(1875), + [anon_sym_api] = ACTIONS(1875), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1875), + [anon_sym_include] = ACTIONS(1875), + [anon_sym_DEF] = ACTIONS(1875), + [anon_sym_IF] = ACTIONS(1875), + [anon_sym_cdef] = ACTIONS(1875), + [anon_sym_cpdef] = ACTIONS(1875), + [anon_sym_int] = ACTIONS(1875), + [anon_sym_double] = ACTIONS(1875), + [anon_sym_complex] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_signed] = ACTIONS(1875), + [anon_sym_unsigned] = ACTIONS(1875), + [anon_sym_char] = ACTIONS(1875), + [anon_sym_short] = ACTIONS(1875), + [anon_sym_long] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_volatile] = ACTIONS(1875), + [anon_sym_ctypedef] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_cppclass] = ACTIONS(1875), + [anon_sym_fused] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_packed] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym_readonly] = ACTIONS(1875), + [anon_sym_sizeof] = ACTIONS(1875), + [sym__dedent] = ACTIONS(1877), + [sym_string_start] = ACTIONS(1877), }, [598] = { - [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), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_import] = ACTIONS(1879), + [anon_sym_cimport] = ACTIONS(1879), + [anon_sym_from] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_print] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_del] = ACTIONS(1879), + [anon_sym_raise] = ACTIONS(1879), + [anon_sym_pass] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_async] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_with] = ACTIONS(1879), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_global] = ACTIONS(1879), + [anon_sym_nonlocal] = ACTIONS(1879), + [anon_sym_exec] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_AT] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_not] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_lambda] = ACTIONS(1879), + [anon_sym_yield] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_None] = ACTIONS(1879), + [sym_integer] = ACTIONS(1879), + [sym_float] = ACTIONS(1881), + [anon_sym_await] = ACTIONS(1879), + [anon_sym_api] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1879), + [anon_sym_include] = ACTIONS(1879), + [anon_sym_DEF] = ACTIONS(1879), + [anon_sym_IF] = ACTIONS(1879), + [anon_sym_cdef] = ACTIONS(1879), + [anon_sym_cpdef] = ACTIONS(1879), + [anon_sym_int] = ACTIONS(1879), + [anon_sym_double] = ACTIONS(1879), + [anon_sym_complex] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_char] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_ctypedef] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_cppclass] = ACTIONS(1879), + [anon_sym_fused] = ACTIONS(1879), + [anon_sym_public] = ACTIONS(1879), + [anon_sym_packed] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym_readonly] = ACTIONS(1879), + [anon_sym_sizeof] = ACTIONS(1879), + [sym__dedent] = ACTIONS(1881), + [sym_string_start] = ACTIONS(1881), }, [599] = { - [sym_identifier] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1885), - [anon_sym_cimport] = ACTIONS(1885), - [anon_sym_from] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_print] = ACTIONS(1885), - [anon_sym_assert] = ACTIONS(1885), - [anon_sym_return] = ACTIONS(1885), - [anon_sym_del] = ACTIONS(1885), - [anon_sym_raise] = ACTIONS(1885), - [anon_sym_pass] = ACTIONS(1885), - [anon_sym_break] = ACTIONS(1885), - [anon_sym_continue] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1885), - [anon_sym_match] = ACTIONS(1885), - [anon_sym_async] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1885), - [anon_sym_with] = ACTIONS(1885), - [anon_sym_def] = ACTIONS(1885), - [anon_sym_global] = ACTIONS(1885), - [anon_sym_nonlocal] = ACTIONS(1885), - [anon_sym_exec] = ACTIONS(1885), - [anon_sym_type] = ACTIONS(1885), - [anon_sym_class] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1887), - [anon_sym_AT] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_not] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_lambda] = ACTIONS(1885), - [anon_sym_yield] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1887), - [anon_sym_None] = ACTIONS(1885), - [sym_integer] = ACTIONS(1885), - [sym_float] = ACTIONS(1887), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_api] = ACTIONS(1885), - [sym_true] = ACTIONS(1885), - [sym_false] = ACTIONS(1885), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1885), - [anon_sym_include] = ACTIONS(1885), - [anon_sym_DEF] = ACTIONS(1885), - [anon_sym_cdef] = ACTIONS(1885), - [anon_sym_cpdef] = ACTIONS(1885), - [anon_sym_int] = ACTIONS(1885), - [anon_sym_double] = ACTIONS(1885), - [anon_sym_complex] = ACTIONS(1885), - [anon_sym_new] = ACTIONS(1885), - [anon_sym_signed] = ACTIONS(1885), - [anon_sym_unsigned] = ACTIONS(1885), - [anon_sym_char] = ACTIONS(1885), - [anon_sym_short] = ACTIONS(1885), - [anon_sym_long] = ACTIONS(1885), - [anon_sym_const] = ACTIONS(1885), - [anon_sym_volatile] = ACTIONS(1885), - [anon_sym_ctypedef] = ACTIONS(1885), - [anon_sym_struct] = ACTIONS(1885), - [anon_sym_union] = ACTIONS(1885), - [anon_sym_enum] = ACTIONS(1885), - [anon_sym_cppclass] = ACTIONS(1885), - [anon_sym_fused] = ACTIONS(1885), - [anon_sym_public] = ACTIONS(1885), - [anon_sym_packed] = ACTIONS(1885), - [anon_sym_inline] = ACTIONS(1885), - [anon_sym_readonly] = ACTIONS(1885), - [anon_sym_sizeof] = ACTIONS(1885), - [sym__dedent] = ACTIONS(1887), - [sym_string_start] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_import] = ACTIONS(1883), + [anon_sym_cimport] = ACTIONS(1883), + [anon_sym_from] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_print] = ACTIONS(1883), + [anon_sym_assert] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_del] = ACTIONS(1883), + [anon_sym_raise] = ACTIONS(1883), + [anon_sym_pass] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_async] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_with] = ACTIONS(1883), + [anon_sym_def] = ACTIONS(1883), + [anon_sym_global] = ACTIONS(1883), + [anon_sym_nonlocal] = ACTIONS(1883), + [anon_sym_exec] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_class] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_AT] = ACTIONS(1885), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_PLUS] = ACTIONS(1885), + [anon_sym_not] = ACTIONS(1883), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(1885), + [anon_sym_lambda] = ACTIONS(1883), + [anon_sym_yield] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1885), + [anon_sym_None] = ACTIONS(1883), + [sym_integer] = ACTIONS(1883), + [sym_float] = ACTIONS(1885), + [anon_sym_await] = ACTIONS(1883), + [anon_sym_api] = ACTIONS(1883), + [sym_true] = ACTIONS(1883), + [sym_false] = ACTIONS(1883), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1883), + [anon_sym_include] = ACTIONS(1883), + [anon_sym_DEF] = ACTIONS(1883), + [anon_sym_IF] = ACTIONS(1883), + [anon_sym_cdef] = ACTIONS(1883), + [anon_sym_cpdef] = ACTIONS(1883), + [anon_sym_int] = ACTIONS(1883), + [anon_sym_double] = ACTIONS(1883), + [anon_sym_complex] = ACTIONS(1883), + [anon_sym_new] = ACTIONS(1883), + [anon_sym_signed] = ACTIONS(1883), + [anon_sym_unsigned] = ACTIONS(1883), + [anon_sym_char] = ACTIONS(1883), + [anon_sym_short] = ACTIONS(1883), + [anon_sym_long] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [anon_sym_volatile] = ACTIONS(1883), + [anon_sym_ctypedef] = ACTIONS(1883), + [anon_sym_struct] = ACTIONS(1883), + [anon_sym_union] = ACTIONS(1883), + [anon_sym_enum] = ACTIONS(1883), + [anon_sym_cppclass] = ACTIONS(1883), + [anon_sym_fused] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_packed] = ACTIONS(1883), + [anon_sym_inline] = ACTIONS(1883), + [anon_sym_readonly] = ACTIONS(1883), + [anon_sym_sizeof] = ACTIONS(1883), + [sym__dedent] = ACTIONS(1885), + [sym_string_start] = ACTIONS(1885), }, [600] = { - [sym_identifier] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_cimport] = ACTIONS(1861), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_print] = ACTIONS(1861), - [anon_sym_assert] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_del] = ACTIONS(1861), - [anon_sym_raise] = ACTIONS(1861), - [anon_sym_pass] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(1861), - [anon_sym_def] = ACTIONS(1861), - [anon_sym_global] = ACTIONS(1861), - [anon_sym_nonlocal] = ACTIONS(1861), - [anon_sym_exec] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_class] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_AT] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_not] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_lambda] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1863), - [anon_sym_None] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1863), - [anon_sym_await] = ACTIONS(1861), - [anon_sym_api] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1861), - [anon_sym_include] = ACTIONS(1861), - [anon_sym_DEF] = ACTIONS(1861), - [anon_sym_cdef] = ACTIONS(1861), - [anon_sym_cpdef] = ACTIONS(1861), - [anon_sym_int] = ACTIONS(1861), - [anon_sym_double] = ACTIONS(1861), - [anon_sym_complex] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1861), - [anon_sym_signed] = ACTIONS(1861), - [anon_sym_unsigned] = ACTIONS(1861), - [anon_sym_char] = ACTIONS(1861), - [anon_sym_short] = ACTIONS(1861), - [anon_sym_long] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_volatile] = ACTIONS(1861), - [anon_sym_ctypedef] = ACTIONS(1861), - [anon_sym_struct] = ACTIONS(1861), - [anon_sym_union] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [anon_sym_cppclass] = ACTIONS(1861), - [anon_sym_fused] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1861), - [anon_sym_packed] = ACTIONS(1861), - [anon_sym_inline] = ACTIONS(1861), - [anon_sym_readonly] = ACTIONS(1861), - [anon_sym_sizeof] = ACTIONS(1861), - [sym__dedent] = ACTIONS(1863), - [sym_string_start] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_import] = ACTIONS(1887), + [anon_sym_cimport] = ACTIONS(1887), + [anon_sym_from] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_print] = ACTIONS(1887), + [anon_sym_assert] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_del] = ACTIONS(1887), + [anon_sym_raise] = ACTIONS(1887), + [anon_sym_pass] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1887), + [anon_sym_def] = ACTIONS(1887), + [anon_sym_global] = ACTIONS(1887), + [anon_sym_nonlocal] = ACTIONS(1887), + [anon_sym_exec] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_class] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_AT] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_not] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_lambda] = ACTIONS(1887), + [anon_sym_yield] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), + [anon_sym_None] = ACTIONS(1887), + [sym_integer] = ACTIONS(1887), + [sym_float] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1887), + [anon_sym_api] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1887), + [anon_sym_include] = ACTIONS(1887), + [anon_sym_DEF] = ACTIONS(1887), + [anon_sym_IF] = ACTIONS(1887), + [anon_sym_cdef] = ACTIONS(1887), + [anon_sym_cpdef] = ACTIONS(1887), + [anon_sym_int] = ACTIONS(1887), + [anon_sym_double] = ACTIONS(1887), + [anon_sym_complex] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1887), + [anon_sym_signed] = ACTIONS(1887), + [anon_sym_unsigned] = ACTIONS(1887), + [anon_sym_char] = ACTIONS(1887), + [anon_sym_short] = ACTIONS(1887), + [anon_sym_long] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_volatile] = ACTIONS(1887), + [anon_sym_ctypedef] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_union] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [anon_sym_cppclass] = ACTIONS(1887), + [anon_sym_fused] = ACTIONS(1887), + [anon_sym_public] = ACTIONS(1887), + [anon_sym_packed] = ACTIONS(1887), + [anon_sym_inline] = ACTIONS(1887), + [anon_sym_readonly] = ACTIONS(1887), + [anon_sym_sizeof] = ACTIONS(1887), + [sym__dedent] = ACTIONS(1889), + [sym_string_start] = ACTIONS(1889), }, [601] = { - [sym_identifier] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1891), - [anon_sym_import] = ACTIONS(1889), - [anon_sym_cimport] = ACTIONS(1889), - [anon_sym_from] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_print] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_del] = ACTIONS(1889), - [anon_sym_raise] = ACTIONS(1889), - [anon_sym_pass] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_with] = ACTIONS(1889), - [anon_sym_def] = ACTIONS(1889), - [anon_sym_global] = ACTIONS(1889), - [anon_sym_nonlocal] = ACTIONS(1889), - [anon_sym_exec] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_class] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1891), - [anon_sym_AT] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1891), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1891), - [anon_sym_not] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1891), - [anon_sym_TILDE] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_lambda] = ACTIONS(1889), - [anon_sym_yield] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1891), - [anon_sym_None] = ACTIONS(1889), - [sym_integer] = ACTIONS(1889), - [sym_float] = ACTIONS(1891), - [anon_sym_await] = ACTIONS(1889), - [anon_sym_api] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1889), - [anon_sym_include] = ACTIONS(1889), - [anon_sym_DEF] = ACTIONS(1889), - [anon_sym_cdef] = ACTIONS(1889), - [anon_sym_cpdef] = ACTIONS(1889), - [anon_sym_int] = ACTIONS(1889), - [anon_sym_double] = ACTIONS(1889), - [anon_sym_complex] = ACTIONS(1889), - [anon_sym_new] = ACTIONS(1889), - [anon_sym_signed] = ACTIONS(1889), - [anon_sym_unsigned] = ACTIONS(1889), - [anon_sym_char] = ACTIONS(1889), - [anon_sym_short] = ACTIONS(1889), - [anon_sym_long] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_volatile] = ACTIONS(1889), - [anon_sym_ctypedef] = ACTIONS(1889), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_cppclass] = ACTIONS(1889), - [anon_sym_fused] = ACTIONS(1889), - [anon_sym_public] = ACTIONS(1889), - [anon_sym_packed] = ACTIONS(1889), - [anon_sym_inline] = ACTIONS(1889), - [anon_sym_readonly] = ACTIONS(1889), - [anon_sym_sizeof] = ACTIONS(1889), - [sym__dedent] = ACTIONS(1891), - [sym_string_start] = ACTIONS(1891), + [sym_identifier] = ACTIONS(1891), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_import] = ACTIONS(1891), + [anon_sym_cimport] = ACTIONS(1891), + [anon_sym_from] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_print] = ACTIONS(1891), + [anon_sym_assert] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_del] = ACTIONS(1891), + [anon_sym_raise] = ACTIONS(1891), + [anon_sym_pass] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_async] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_try] = ACTIONS(1891), + [anon_sym_with] = ACTIONS(1891), + [anon_sym_def] = ACTIONS(1891), + [anon_sym_global] = ACTIONS(1891), + [anon_sym_nonlocal] = ACTIONS(1891), + [anon_sym_exec] = ACTIONS(1891), + [anon_sym_type] = ACTIONS(1891), + [anon_sym_class] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_AT] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_not] = ACTIONS(1891), + [anon_sym_AMP] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_lambda] = ACTIONS(1891), + [anon_sym_yield] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_None] = ACTIONS(1891), + [sym_integer] = ACTIONS(1891), + [sym_float] = ACTIONS(1893), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_api] = ACTIONS(1891), + [sym_true] = ACTIONS(1891), + [sym_false] = ACTIONS(1891), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1891), + [anon_sym_include] = ACTIONS(1891), + [anon_sym_DEF] = ACTIONS(1891), + [anon_sym_IF] = ACTIONS(1891), + [anon_sym_cdef] = ACTIONS(1891), + [anon_sym_cpdef] = ACTIONS(1891), + [anon_sym_int] = ACTIONS(1891), + [anon_sym_double] = ACTIONS(1891), + [anon_sym_complex] = ACTIONS(1891), + [anon_sym_new] = ACTIONS(1891), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_char] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [anon_sym_volatile] = ACTIONS(1891), + [anon_sym_ctypedef] = ACTIONS(1891), + [anon_sym_struct] = ACTIONS(1891), + [anon_sym_union] = ACTIONS(1891), + [anon_sym_enum] = ACTIONS(1891), + [anon_sym_cppclass] = ACTIONS(1891), + [anon_sym_fused] = ACTIONS(1891), + [anon_sym_public] = ACTIONS(1891), + [anon_sym_packed] = ACTIONS(1891), + [anon_sym_inline] = ACTIONS(1891), + [anon_sym_readonly] = ACTIONS(1891), + [anon_sym_sizeof] = ACTIONS(1891), + [sym__dedent] = ACTIONS(1893), + [sym_string_start] = ACTIONS(1893), }, [602] = { - [sym_identifier] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1895), - [anon_sym_import] = ACTIONS(1893), - [anon_sym_cimport] = ACTIONS(1893), - [anon_sym_from] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1895), - [anon_sym_print] = ACTIONS(1893), - [anon_sym_assert] = ACTIONS(1893), - [anon_sym_return] = ACTIONS(1893), - [anon_sym_del] = ACTIONS(1893), - [anon_sym_raise] = ACTIONS(1893), - [anon_sym_pass] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1893), - [anon_sym_continue] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_match] = ACTIONS(1893), - [anon_sym_async] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_while] = ACTIONS(1893), - [anon_sym_try] = ACTIONS(1893), - [anon_sym_with] = ACTIONS(1893), - [anon_sym_def] = ACTIONS(1893), - [anon_sym_global] = ACTIONS(1893), - [anon_sym_nonlocal] = ACTIONS(1893), - [anon_sym_exec] = ACTIONS(1893), - [anon_sym_type] = ACTIONS(1893), - [anon_sym_class] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_AT] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_not] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1895), - [anon_sym_LT] = ACTIONS(1895), - [anon_sym_lambda] = ACTIONS(1893), - [anon_sym_yield] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1895), - [anon_sym_None] = ACTIONS(1893), - [sym_integer] = ACTIONS(1893), - [sym_float] = ACTIONS(1895), - [anon_sym_await] = ACTIONS(1893), - [anon_sym_api] = ACTIONS(1893), - [sym_true] = ACTIONS(1893), - [sym_false] = ACTIONS(1893), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1893), - [anon_sym_include] = ACTIONS(1893), - [anon_sym_DEF] = ACTIONS(1893), - [anon_sym_cdef] = ACTIONS(1893), - [anon_sym_cpdef] = ACTIONS(1893), - [anon_sym_int] = ACTIONS(1893), - [anon_sym_double] = ACTIONS(1893), - [anon_sym_complex] = ACTIONS(1893), - [anon_sym_new] = ACTIONS(1893), - [anon_sym_signed] = ACTIONS(1893), - [anon_sym_unsigned] = ACTIONS(1893), - [anon_sym_char] = ACTIONS(1893), - [anon_sym_short] = ACTIONS(1893), - [anon_sym_long] = ACTIONS(1893), - [anon_sym_const] = ACTIONS(1893), - [anon_sym_volatile] = ACTIONS(1893), - [anon_sym_ctypedef] = ACTIONS(1893), - [anon_sym_struct] = ACTIONS(1893), - [anon_sym_union] = ACTIONS(1893), - [anon_sym_enum] = ACTIONS(1893), - [anon_sym_cppclass] = ACTIONS(1893), - [anon_sym_fused] = ACTIONS(1893), - [anon_sym_public] = ACTIONS(1893), - [anon_sym_packed] = ACTIONS(1893), - [anon_sym_inline] = ACTIONS(1893), - [anon_sym_readonly] = ACTIONS(1893), - [anon_sym_sizeof] = ACTIONS(1893), - [sym__dedent] = ACTIONS(1895), - [sym_string_start] = ACTIONS(1895), + [sym_identifier] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_import] = ACTIONS(1895), + [anon_sym_cimport] = ACTIONS(1895), + [anon_sym_from] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_print] = ACTIONS(1895), + [anon_sym_assert] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_del] = ACTIONS(1895), + [anon_sym_raise] = ACTIONS(1895), + [anon_sym_pass] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_async] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_with] = ACTIONS(1895), + [anon_sym_def] = ACTIONS(1895), + [anon_sym_global] = ACTIONS(1895), + [anon_sym_nonlocal] = ACTIONS(1895), + [anon_sym_exec] = ACTIONS(1895), + [anon_sym_type] = ACTIONS(1895), + [anon_sym_class] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_AT] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_not] = ACTIONS(1895), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_lambda] = ACTIONS(1895), + [anon_sym_yield] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_None] = ACTIONS(1895), + [sym_integer] = ACTIONS(1895), + [sym_float] = ACTIONS(1897), + [anon_sym_await] = ACTIONS(1895), + [anon_sym_api] = ACTIONS(1895), + [sym_true] = ACTIONS(1895), + [sym_false] = ACTIONS(1895), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1895), + [anon_sym_include] = ACTIONS(1895), + [anon_sym_DEF] = ACTIONS(1895), + [anon_sym_IF] = ACTIONS(1895), + [anon_sym_cdef] = ACTIONS(1895), + [anon_sym_cpdef] = ACTIONS(1895), + [anon_sym_int] = ACTIONS(1895), + [anon_sym_double] = ACTIONS(1895), + [anon_sym_complex] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1895), + [anon_sym_signed] = ACTIONS(1895), + [anon_sym_unsigned] = ACTIONS(1895), + [anon_sym_char] = ACTIONS(1895), + [anon_sym_short] = ACTIONS(1895), + [anon_sym_long] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [anon_sym_volatile] = ACTIONS(1895), + [anon_sym_ctypedef] = ACTIONS(1895), + [anon_sym_struct] = ACTIONS(1895), + [anon_sym_union] = ACTIONS(1895), + [anon_sym_enum] = ACTIONS(1895), + [anon_sym_cppclass] = ACTIONS(1895), + [anon_sym_fused] = ACTIONS(1895), + [anon_sym_public] = ACTIONS(1895), + [anon_sym_packed] = ACTIONS(1895), + [anon_sym_inline] = ACTIONS(1895), + [anon_sym_readonly] = ACTIONS(1895), + [anon_sym_sizeof] = ACTIONS(1895), + [sym__dedent] = ACTIONS(1897), + [sym_string_start] = ACTIONS(1897), }, [603] = { - [sym_identifier] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_import] = ACTIONS(1897), - [anon_sym_cimport] = ACTIONS(1897), - [anon_sym_from] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_print] = ACTIONS(1897), - [anon_sym_assert] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_del] = ACTIONS(1897), - [anon_sym_raise] = ACTIONS(1897), - [anon_sym_pass] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1897), - [anon_sym_async] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1897), - [anon_sym_with] = ACTIONS(1897), - [anon_sym_def] = ACTIONS(1897), - [anon_sym_global] = ACTIONS(1897), - [anon_sym_nonlocal] = ACTIONS(1897), - [anon_sym_exec] = ACTIONS(1897), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_class] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_AT] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_not] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_lambda] = ACTIONS(1897), - [anon_sym_yield] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), - [anon_sym_None] = ACTIONS(1897), - [sym_integer] = ACTIONS(1897), - [sym_float] = ACTIONS(1899), - [anon_sym_await] = ACTIONS(1897), - [anon_sym_api] = ACTIONS(1897), - [sym_true] = ACTIONS(1897), - [sym_false] = ACTIONS(1897), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1897), - [anon_sym_include] = ACTIONS(1897), - [anon_sym_DEF] = ACTIONS(1897), - [anon_sym_cdef] = ACTIONS(1897), - [anon_sym_cpdef] = ACTIONS(1897), - [anon_sym_int] = ACTIONS(1897), - [anon_sym_double] = ACTIONS(1897), - [anon_sym_complex] = ACTIONS(1897), - [anon_sym_new] = ACTIONS(1897), - [anon_sym_signed] = ACTIONS(1897), - [anon_sym_unsigned] = ACTIONS(1897), - [anon_sym_char] = ACTIONS(1897), - [anon_sym_short] = ACTIONS(1897), - [anon_sym_long] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(1897), - [anon_sym_volatile] = ACTIONS(1897), - [anon_sym_ctypedef] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1897), - [anon_sym_union] = ACTIONS(1897), - [anon_sym_enum] = ACTIONS(1897), - [anon_sym_cppclass] = ACTIONS(1897), - [anon_sym_fused] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_packed] = ACTIONS(1897), - [anon_sym_inline] = ACTIONS(1897), - [anon_sym_readonly] = ACTIONS(1897), - [anon_sym_sizeof] = ACTIONS(1897), - [sym__dedent] = ACTIONS(1899), - [sym_string_start] = ACTIONS(1899), + [sym_identifier] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_import] = ACTIONS(1899), + [anon_sym_cimport] = ACTIONS(1899), + [anon_sym_from] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1901), + [anon_sym_print] = ACTIONS(1899), + [anon_sym_assert] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_del] = ACTIONS(1899), + [anon_sym_raise] = ACTIONS(1899), + [anon_sym_pass] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_with] = ACTIONS(1899), + [anon_sym_def] = ACTIONS(1899), + [anon_sym_global] = ACTIONS(1899), + [anon_sym_nonlocal] = ACTIONS(1899), + [anon_sym_exec] = ACTIONS(1899), + [anon_sym_type] = ACTIONS(1899), + [anon_sym_class] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_AT] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_AMP] = ACTIONS(1901), + [anon_sym_TILDE] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1901), + [anon_sym_lambda] = ACTIONS(1899), + [anon_sym_yield] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1901), + [anon_sym_None] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1901), + [anon_sym_await] = ACTIONS(1899), + [anon_sym_api] = ACTIONS(1899), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1899), + [anon_sym_include] = ACTIONS(1899), + [anon_sym_DEF] = ACTIONS(1899), + [anon_sym_IF] = ACTIONS(1899), + [anon_sym_cdef] = ACTIONS(1899), + [anon_sym_cpdef] = ACTIONS(1899), + [anon_sym_int] = ACTIONS(1899), + [anon_sym_double] = ACTIONS(1899), + [anon_sym_complex] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_signed] = ACTIONS(1899), + [anon_sym_unsigned] = ACTIONS(1899), + [anon_sym_char] = ACTIONS(1899), + [anon_sym_short] = ACTIONS(1899), + [anon_sym_long] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_volatile] = ACTIONS(1899), + [anon_sym_ctypedef] = ACTIONS(1899), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_union] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_cppclass] = ACTIONS(1899), + [anon_sym_fused] = ACTIONS(1899), + [anon_sym_public] = ACTIONS(1899), + [anon_sym_packed] = ACTIONS(1899), + [anon_sym_inline] = ACTIONS(1899), + [anon_sym_readonly] = ACTIONS(1899), + [anon_sym_sizeof] = ACTIONS(1899), + [sym__dedent] = ACTIONS(1901), + [sym_string_start] = ACTIONS(1901), }, [604] = { - [sym_identifier] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1903), - [anon_sym_import] = ACTIONS(1901), - [anon_sym_cimport] = ACTIONS(1901), - [anon_sym_from] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1903), - [anon_sym_print] = ACTIONS(1901), - [anon_sym_assert] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_del] = ACTIONS(1901), - [anon_sym_raise] = ACTIONS(1901), - [anon_sym_pass] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_async] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_with] = ACTIONS(1901), - [anon_sym_def] = ACTIONS(1901), - [anon_sym_global] = ACTIONS(1901), - [anon_sym_nonlocal] = ACTIONS(1901), - [anon_sym_exec] = ACTIONS(1901), - [anon_sym_type] = ACTIONS(1901), - [anon_sym_class] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_AT] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_not] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_lambda] = ACTIONS(1901), - [anon_sym_yield] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1903), - [anon_sym_None] = ACTIONS(1901), - [sym_integer] = ACTIONS(1901), - [sym_float] = ACTIONS(1903), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_api] = ACTIONS(1901), - [sym_true] = ACTIONS(1901), - [sym_false] = ACTIONS(1901), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1901), - [anon_sym_include] = ACTIONS(1901), - [anon_sym_DEF] = ACTIONS(1901), - [anon_sym_cdef] = ACTIONS(1901), - [anon_sym_cpdef] = ACTIONS(1901), - [anon_sym_int] = ACTIONS(1901), - [anon_sym_double] = ACTIONS(1901), - [anon_sym_complex] = ACTIONS(1901), - [anon_sym_new] = ACTIONS(1901), - [anon_sym_signed] = ACTIONS(1901), - [anon_sym_unsigned] = ACTIONS(1901), - [anon_sym_char] = ACTIONS(1901), - [anon_sym_short] = ACTIONS(1901), - [anon_sym_long] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [anon_sym_volatile] = ACTIONS(1901), - [anon_sym_ctypedef] = ACTIONS(1901), - [anon_sym_struct] = ACTIONS(1901), - [anon_sym_union] = ACTIONS(1901), - [anon_sym_enum] = ACTIONS(1901), - [anon_sym_cppclass] = ACTIONS(1901), - [anon_sym_fused] = ACTIONS(1901), - [anon_sym_public] = ACTIONS(1901), - [anon_sym_packed] = ACTIONS(1901), - [anon_sym_inline] = ACTIONS(1901), - [anon_sym_readonly] = ACTIONS(1901), - [anon_sym_sizeof] = ACTIONS(1901), - [sym__dedent] = ACTIONS(1903), - [sym_string_start] = ACTIONS(1903), + [sym_identifier] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_import] = ACTIONS(1871), + [anon_sym_cimport] = ACTIONS(1871), + [anon_sym_from] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_print] = ACTIONS(1871), + [anon_sym_assert] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_del] = ACTIONS(1871), + [anon_sym_raise] = ACTIONS(1871), + [anon_sym_pass] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_async] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_with] = ACTIONS(1871), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_global] = ACTIONS(1871), + [anon_sym_nonlocal] = ACTIONS(1871), + [anon_sym_exec] = ACTIONS(1871), + [anon_sym_type] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_AT] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1873), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_lambda] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1873), + [anon_sym_None] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1873), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_api] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1871), + [anon_sym_include] = ACTIONS(1871), + [anon_sym_DEF] = ACTIONS(1871), + [anon_sym_IF] = ACTIONS(1871), + [anon_sym_cdef] = ACTIONS(1871), + [anon_sym_cpdef] = ACTIONS(1871), + [anon_sym_int] = ACTIONS(1871), + [anon_sym_double] = ACTIONS(1871), + [anon_sym_complex] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_signed] = ACTIONS(1871), + [anon_sym_unsigned] = ACTIONS(1871), + [anon_sym_char] = ACTIONS(1871), + [anon_sym_short] = ACTIONS(1871), + [anon_sym_long] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_volatile] = ACTIONS(1871), + [anon_sym_ctypedef] = ACTIONS(1871), + [anon_sym_struct] = ACTIONS(1871), + [anon_sym_union] = ACTIONS(1871), + [anon_sym_enum] = ACTIONS(1871), + [anon_sym_cppclass] = ACTIONS(1871), + [anon_sym_fused] = ACTIONS(1871), + [anon_sym_public] = ACTIONS(1871), + [anon_sym_packed] = ACTIONS(1871), + [anon_sym_inline] = ACTIONS(1871), + [anon_sym_readonly] = ACTIONS(1871), + [anon_sym_sizeof] = ACTIONS(1871), + [sym__dedent] = ACTIONS(1873), + [sym_string_start] = ACTIONS(1873), }, [605] = { - [sym_identifier] = ACTIONS(1905), - [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_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(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), + [sym_identifier] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1905), + [anon_sym_import] = ACTIONS(1903), + [anon_sym_cimport] = ACTIONS(1903), + [anon_sym_from] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_print] = ACTIONS(1903), + [anon_sym_assert] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_del] = ACTIONS(1903), + [anon_sym_raise] = ACTIONS(1903), + [anon_sym_pass] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_match] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1903), + [anon_sym_with] = ACTIONS(1903), + [anon_sym_def] = ACTIONS(1903), + [anon_sym_global] = ACTIONS(1903), + [anon_sym_nonlocal] = ACTIONS(1903), + [anon_sym_exec] = ACTIONS(1903), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_AT] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_PLUS] = ACTIONS(1905), + [anon_sym_not] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(1905), + [anon_sym_lambda] = ACTIONS(1903), + [anon_sym_yield] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), + [anon_sym_None] = ACTIONS(1903), + [sym_integer] = ACTIONS(1903), + [sym_float] = ACTIONS(1905), + [anon_sym_await] = ACTIONS(1903), + [anon_sym_api] = ACTIONS(1903), + [sym_true] = ACTIONS(1903), + [sym_false] = ACTIONS(1903), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1903), + [anon_sym_include] = ACTIONS(1903), + [anon_sym_DEF] = ACTIONS(1903), + [anon_sym_IF] = ACTIONS(1903), + [anon_sym_cdef] = ACTIONS(1903), + [anon_sym_cpdef] = ACTIONS(1903), + [anon_sym_int] = ACTIONS(1903), + [anon_sym_double] = ACTIONS(1903), + [anon_sym_complex] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1903), + [anon_sym_unsigned] = ACTIONS(1903), + [anon_sym_char] = ACTIONS(1903), + [anon_sym_short] = ACTIONS(1903), + [anon_sym_long] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_volatile] = ACTIONS(1903), + [anon_sym_ctypedef] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_cppclass] = ACTIONS(1903), + [anon_sym_fused] = ACTIONS(1903), + [anon_sym_public] = ACTIONS(1903), + [anon_sym_packed] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym_readonly] = ACTIONS(1903), + [anon_sym_sizeof] = ACTIONS(1903), + [sym__dedent] = ACTIONS(1905), + [sym_string_start] = ACTIONS(1905), }, [606] = { - [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), + [sym_identifier] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym_import] = ACTIONS(1907), + [anon_sym_cimport] = ACTIONS(1907), + [anon_sym_from] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_print] = ACTIONS(1907), + [anon_sym_assert] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_del] = ACTIONS(1907), + [anon_sym_raise] = ACTIONS(1907), + [anon_sym_pass] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), + [anon_sym_async] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_with] = ACTIONS(1907), + [anon_sym_def] = ACTIONS(1907), + [anon_sym_global] = ACTIONS(1907), + [anon_sym_nonlocal] = ACTIONS(1907), + [anon_sym_exec] = ACTIONS(1907), + [anon_sym_type] = ACTIONS(1907), + [anon_sym_class] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_AT] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_not] = ACTIONS(1907), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_lambda] = ACTIONS(1907), + [anon_sym_yield] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1909), + [anon_sym_None] = ACTIONS(1907), + [sym_integer] = ACTIONS(1907), + [sym_float] = ACTIONS(1909), + [anon_sym_await] = ACTIONS(1907), + [anon_sym_api] = ACTIONS(1907), + [sym_true] = ACTIONS(1907), + [sym_false] = ACTIONS(1907), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1907), + [anon_sym_include] = ACTIONS(1907), + [anon_sym_DEF] = ACTIONS(1907), + [anon_sym_IF] = ACTIONS(1907), + [anon_sym_cdef] = ACTIONS(1907), + [anon_sym_cpdef] = ACTIONS(1907), + [anon_sym_int] = ACTIONS(1907), + [anon_sym_double] = ACTIONS(1907), + [anon_sym_complex] = ACTIONS(1907), + [anon_sym_new] = ACTIONS(1907), + [anon_sym_signed] = ACTIONS(1907), + [anon_sym_unsigned] = ACTIONS(1907), + [anon_sym_char] = ACTIONS(1907), + [anon_sym_short] = ACTIONS(1907), + [anon_sym_long] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_ctypedef] = ACTIONS(1907), + [anon_sym_struct] = ACTIONS(1907), + [anon_sym_union] = ACTIONS(1907), + [anon_sym_enum] = ACTIONS(1907), + [anon_sym_cppclass] = ACTIONS(1907), + [anon_sym_fused] = ACTIONS(1907), + [anon_sym_public] = ACTIONS(1907), + [anon_sym_packed] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym_readonly] = ACTIONS(1907), + [anon_sym_sizeof] = ACTIONS(1907), + [sym__dedent] = ACTIONS(1909), + [sym_string_start] = ACTIONS(1909), }, [607] = { - [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), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_import] = ACTIONS(1879), + [anon_sym_cimport] = ACTIONS(1879), + [anon_sym_from] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_print] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_del] = ACTIONS(1879), + [anon_sym_raise] = ACTIONS(1879), + [anon_sym_pass] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_async] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_with] = ACTIONS(1879), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_global] = ACTIONS(1879), + [anon_sym_nonlocal] = ACTIONS(1879), + [anon_sym_exec] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_AT] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_not] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_lambda] = ACTIONS(1879), + [anon_sym_yield] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_None] = ACTIONS(1879), + [sym_integer] = ACTIONS(1879), + [sym_float] = ACTIONS(1881), + [anon_sym_await] = ACTIONS(1879), + [anon_sym_api] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1879), + [anon_sym_include] = ACTIONS(1879), + [anon_sym_DEF] = ACTIONS(1879), + [anon_sym_IF] = ACTIONS(1879), + [anon_sym_cdef] = ACTIONS(1879), + [anon_sym_cpdef] = ACTIONS(1879), + [anon_sym_int] = ACTIONS(1879), + [anon_sym_double] = ACTIONS(1879), + [anon_sym_complex] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_signed] = ACTIONS(1879), + [anon_sym_unsigned] = ACTIONS(1879), + [anon_sym_char] = ACTIONS(1879), + [anon_sym_short] = ACTIONS(1879), + [anon_sym_long] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_volatile] = ACTIONS(1879), + [anon_sym_ctypedef] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_cppclass] = ACTIONS(1879), + [anon_sym_fused] = ACTIONS(1879), + [anon_sym_public] = ACTIONS(1879), + [anon_sym_packed] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym_readonly] = ACTIONS(1879), + [anon_sym_sizeof] = ACTIONS(1879), + [sym__dedent] = ACTIONS(1881), + [sym_string_start] = ACTIONS(1881), }, [608] = { - [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), + [sym_identifier] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_import] = ACTIONS(1911), + [anon_sym_cimport] = ACTIONS(1911), + [anon_sym_from] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_print] = ACTIONS(1911), + [anon_sym_assert] = ACTIONS(1911), + [anon_sym_return] = ACTIONS(1911), + [anon_sym_del] = ACTIONS(1911), + [anon_sym_raise] = ACTIONS(1911), + [anon_sym_pass] = ACTIONS(1911), + [anon_sym_break] = ACTIONS(1911), + [anon_sym_continue] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), + [anon_sym_match] = ACTIONS(1911), + [anon_sym_async] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(1911), + [anon_sym_while] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1911), + [anon_sym_with] = ACTIONS(1911), + [anon_sym_def] = ACTIONS(1911), + [anon_sym_global] = ACTIONS(1911), + [anon_sym_nonlocal] = ACTIONS(1911), + [anon_sym_exec] = ACTIONS(1911), + [anon_sym_type] = ACTIONS(1911), + [anon_sym_class] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_AT] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_not] = ACTIONS(1911), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_lambda] = ACTIONS(1911), + [anon_sym_yield] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1913), + [anon_sym_None] = ACTIONS(1911), + [sym_integer] = ACTIONS(1911), + [sym_float] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1911), + [anon_sym_api] = ACTIONS(1911), + [sym_true] = ACTIONS(1911), + [sym_false] = ACTIONS(1911), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1911), + [anon_sym_include] = ACTIONS(1911), + [anon_sym_DEF] = ACTIONS(1911), + [anon_sym_IF] = ACTIONS(1911), + [anon_sym_cdef] = ACTIONS(1911), + [anon_sym_cpdef] = ACTIONS(1911), + [anon_sym_int] = ACTIONS(1911), + [anon_sym_double] = ACTIONS(1911), + [anon_sym_complex] = ACTIONS(1911), + [anon_sym_new] = ACTIONS(1911), + [anon_sym_signed] = ACTIONS(1911), + [anon_sym_unsigned] = ACTIONS(1911), + [anon_sym_char] = ACTIONS(1911), + [anon_sym_short] = ACTIONS(1911), + [anon_sym_long] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1911), + [anon_sym_volatile] = ACTIONS(1911), + [anon_sym_ctypedef] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1911), + [anon_sym_union] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1911), + [anon_sym_cppclass] = ACTIONS(1911), + [anon_sym_fused] = ACTIONS(1911), + [anon_sym_public] = ACTIONS(1911), + [anon_sym_packed] = ACTIONS(1911), + [anon_sym_inline] = ACTIONS(1911), + [anon_sym_readonly] = ACTIONS(1911), + [anon_sym_sizeof] = ACTIONS(1911), + [sym__dedent] = ACTIONS(1913), + [sym_string_start] = ACTIONS(1913), }, [609] = { - [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), + [sym_identifier] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_import] = ACTIONS(1887), + [anon_sym_cimport] = ACTIONS(1887), + [anon_sym_from] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_print] = ACTIONS(1887), + [anon_sym_assert] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_del] = ACTIONS(1887), + [anon_sym_raise] = ACTIONS(1887), + [anon_sym_pass] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1887), + [anon_sym_def] = ACTIONS(1887), + [anon_sym_global] = ACTIONS(1887), + [anon_sym_nonlocal] = ACTIONS(1887), + [anon_sym_exec] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_class] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_AT] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_not] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_lambda] = ACTIONS(1887), + [anon_sym_yield] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), + [anon_sym_None] = ACTIONS(1887), + [sym_integer] = ACTIONS(1887), + [sym_float] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1887), + [anon_sym_api] = ACTIONS(1887), + [sym_true] = ACTIONS(1887), + [sym_false] = ACTIONS(1887), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1887), + [anon_sym_include] = ACTIONS(1887), + [anon_sym_DEF] = ACTIONS(1887), + [anon_sym_IF] = ACTIONS(1887), + [anon_sym_cdef] = ACTIONS(1887), + [anon_sym_cpdef] = ACTIONS(1887), + [anon_sym_int] = ACTIONS(1887), + [anon_sym_double] = ACTIONS(1887), + [anon_sym_complex] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1887), + [anon_sym_signed] = ACTIONS(1887), + [anon_sym_unsigned] = ACTIONS(1887), + [anon_sym_char] = ACTIONS(1887), + [anon_sym_short] = ACTIONS(1887), + [anon_sym_long] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_volatile] = ACTIONS(1887), + [anon_sym_ctypedef] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_union] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [anon_sym_cppclass] = ACTIONS(1887), + [anon_sym_fused] = ACTIONS(1887), + [anon_sym_public] = ACTIONS(1887), + [anon_sym_packed] = ACTIONS(1887), + [anon_sym_inline] = ACTIONS(1887), + [anon_sym_readonly] = ACTIONS(1887), + [anon_sym_sizeof] = ACTIONS(1887), + [sym__dedent] = ACTIONS(1889), + [sym_string_start] = ACTIONS(1889), }, [610] = { - [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), + [sym_identifier] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1917), + [anon_sym_import] = ACTIONS(1915), + [anon_sym_cimport] = ACTIONS(1915), + [anon_sym_from] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_print] = ACTIONS(1915), + [anon_sym_assert] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_del] = ACTIONS(1915), + [anon_sym_raise] = ACTIONS(1915), + [anon_sym_pass] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_async] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_with] = ACTIONS(1915), + [anon_sym_def] = ACTIONS(1915), + [anon_sym_global] = ACTIONS(1915), + [anon_sym_nonlocal] = ACTIONS(1915), + [anon_sym_exec] = ACTIONS(1915), + [anon_sym_type] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_AT] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_PLUS] = ACTIONS(1917), + [anon_sym_not] = ACTIONS(1915), + [anon_sym_AMP] = ACTIONS(1917), + [anon_sym_TILDE] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1917), + [anon_sym_lambda] = ACTIONS(1915), + [anon_sym_yield] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1917), + [anon_sym_None] = ACTIONS(1915), + [sym_integer] = ACTIONS(1915), + [sym_float] = ACTIONS(1917), + [anon_sym_await] = ACTIONS(1915), + [anon_sym_api] = ACTIONS(1915), + [sym_true] = ACTIONS(1915), + [sym_false] = ACTIONS(1915), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1915), + [anon_sym_include] = ACTIONS(1915), + [anon_sym_DEF] = ACTIONS(1915), + [anon_sym_IF] = ACTIONS(1915), + [anon_sym_cdef] = ACTIONS(1915), + [anon_sym_cpdef] = ACTIONS(1915), + [anon_sym_int] = ACTIONS(1915), + [anon_sym_double] = ACTIONS(1915), + [anon_sym_complex] = ACTIONS(1915), + [anon_sym_new] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_char] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [anon_sym_volatile] = ACTIONS(1915), + [anon_sym_ctypedef] = ACTIONS(1915), + [anon_sym_struct] = ACTIONS(1915), + [anon_sym_union] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_cppclass] = ACTIONS(1915), + [anon_sym_fused] = ACTIONS(1915), + [anon_sym_public] = ACTIONS(1915), + [anon_sym_packed] = ACTIONS(1915), + [anon_sym_inline] = ACTIONS(1915), + [anon_sym_readonly] = ACTIONS(1915), + [anon_sym_sizeof] = ACTIONS(1915), + [sym__dedent] = ACTIONS(1917), + [sym_string_start] = ACTIONS(1917), }, [611] = { - [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), + [sym_identifier] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_import] = ACTIONS(1919), + [anon_sym_cimport] = ACTIONS(1919), + [anon_sym_from] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_print] = ACTIONS(1919), + [anon_sym_assert] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_del] = ACTIONS(1919), + [anon_sym_raise] = ACTIONS(1919), + [anon_sym_pass] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_async] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_with] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1919), + [anon_sym_global] = ACTIONS(1919), + [anon_sym_nonlocal] = ACTIONS(1919), + [anon_sym_exec] = ACTIONS(1919), + [anon_sym_type] = ACTIONS(1919), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_AT] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_not] = ACTIONS(1919), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_lambda] = ACTIONS(1919), + [anon_sym_yield] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), + [anon_sym_None] = ACTIONS(1919), + [sym_integer] = ACTIONS(1919), + [sym_float] = ACTIONS(1921), + [anon_sym_await] = ACTIONS(1919), + [anon_sym_api] = ACTIONS(1919), + [sym_true] = ACTIONS(1919), + [sym_false] = ACTIONS(1919), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1919), + [anon_sym_include] = ACTIONS(1919), + [anon_sym_DEF] = ACTIONS(1919), + [anon_sym_IF] = ACTIONS(1919), + [anon_sym_cdef] = ACTIONS(1919), + [anon_sym_cpdef] = ACTIONS(1919), + [anon_sym_int] = ACTIONS(1919), + [anon_sym_double] = ACTIONS(1919), + [anon_sym_complex] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1919), + [anon_sym_signed] = ACTIONS(1919), + [anon_sym_unsigned] = ACTIONS(1919), + [anon_sym_char] = ACTIONS(1919), + [anon_sym_short] = ACTIONS(1919), + [anon_sym_long] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [anon_sym_volatile] = ACTIONS(1919), + [anon_sym_ctypedef] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1919), + [anon_sym_union] = ACTIONS(1919), + [anon_sym_enum] = ACTIONS(1919), + [anon_sym_cppclass] = ACTIONS(1919), + [anon_sym_fused] = ACTIONS(1919), + [anon_sym_public] = ACTIONS(1919), + [anon_sym_packed] = ACTIONS(1919), + [anon_sym_inline] = ACTIONS(1919), + [anon_sym_readonly] = ACTIONS(1919), + [anon_sym_sizeof] = ACTIONS(1919), + [sym__dedent] = ACTIONS(1921), + [sym_string_start] = ACTIONS(1921), }, [612] = { - [sym_identifier] = ACTIONS(1933), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_import] = ACTIONS(1933), - [anon_sym_cimport] = ACTIONS(1933), - [anon_sym_from] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1935), - [anon_sym_print] = ACTIONS(1933), - [anon_sym_assert] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_del] = ACTIONS(1933), - [anon_sym_raise] = ACTIONS(1933), - [anon_sym_pass] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_async] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_with] = ACTIONS(1933), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_global] = ACTIONS(1933), - [anon_sym_nonlocal] = ACTIONS(1933), - [anon_sym_exec] = ACTIONS(1933), - [anon_sym_type] = ACTIONS(1933), - [anon_sym_class] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_AT] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_not] = ACTIONS(1933), - [anon_sym_AMP] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_LT] = ACTIONS(1935), - [anon_sym_lambda] = ACTIONS(1933), - [anon_sym_yield] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), - [anon_sym_None] = ACTIONS(1933), - [sym_integer] = ACTIONS(1933), - [sym_float] = ACTIONS(1935), - [anon_sym_await] = ACTIONS(1933), - [anon_sym_api] = ACTIONS(1933), - [sym_true] = ACTIONS(1933), - [sym_false] = ACTIONS(1933), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1933), - [anon_sym_include] = ACTIONS(1933), - [anon_sym_DEF] = ACTIONS(1933), - [anon_sym_cdef] = ACTIONS(1933), - [anon_sym_cpdef] = ACTIONS(1933), - [anon_sym_int] = ACTIONS(1933), - [anon_sym_double] = ACTIONS(1933), - [anon_sym_complex] = ACTIONS(1933), - [anon_sym_new] = ACTIONS(1933), - [anon_sym_signed] = ACTIONS(1933), - [anon_sym_unsigned] = ACTIONS(1933), - [anon_sym_char] = ACTIONS(1933), - [anon_sym_short] = ACTIONS(1933), - [anon_sym_long] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [anon_sym_volatile] = ACTIONS(1933), - [anon_sym_ctypedef] = ACTIONS(1933), - [anon_sym_struct] = ACTIONS(1933), - [anon_sym_union] = ACTIONS(1933), - [anon_sym_enum] = ACTIONS(1933), - [anon_sym_cppclass] = ACTIONS(1933), - [anon_sym_fused] = ACTIONS(1933), - [anon_sym_public] = ACTIONS(1933), - [anon_sym_packed] = ACTIONS(1933), - [anon_sym_inline] = ACTIONS(1933), - [anon_sym_readonly] = ACTIONS(1933), - [anon_sym_sizeof] = ACTIONS(1933), - [sym__dedent] = ACTIONS(1935), - [sym_string_start] = ACTIONS(1935), + [sym_identifier] = ACTIONS(1923), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_import] = ACTIONS(1923), + [anon_sym_cimport] = ACTIONS(1923), + [anon_sym_from] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1925), + [anon_sym_print] = ACTIONS(1923), + [anon_sym_assert] = ACTIONS(1923), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_del] = ACTIONS(1923), + [anon_sym_raise] = ACTIONS(1923), + [anon_sym_pass] = ACTIONS(1923), + [anon_sym_break] = ACTIONS(1923), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_if] = ACTIONS(1923), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1923), + [anon_sym_while] = ACTIONS(1923), + [anon_sym_try] = ACTIONS(1923), + [anon_sym_with] = ACTIONS(1923), + [anon_sym_def] = ACTIONS(1923), + [anon_sym_global] = ACTIONS(1923), + [anon_sym_nonlocal] = ACTIONS(1923), + [anon_sym_exec] = ACTIONS(1923), + [anon_sym_type] = ACTIONS(1923), + [anon_sym_class] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_lambda] = ACTIONS(1923), + [anon_sym_yield] = ACTIONS(1923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1925), + [anon_sym_None] = ACTIONS(1923), + [sym_integer] = ACTIONS(1923), + [sym_float] = ACTIONS(1925), + [anon_sym_await] = ACTIONS(1923), + [anon_sym_api] = ACTIONS(1923), + [sym_true] = ACTIONS(1923), + [sym_false] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1923), + [anon_sym_include] = ACTIONS(1923), + [anon_sym_DEF] = ACTIONS(1923), + [anon_sym_IF] = ACTIONS(1923), + [anon_sym_cdef] = ACTIONS(1923), + [anon_sym_cpdef] = ACTIONS(1923), + [anon_sym_int] = ACTIONS(1923), + [anon_sym_double] = ACTIONS(1923), + [anon_sym_complex] = ACTIONS(1923), + [anon_sym_new] = ACTIONS(1923), + [anon_sym_signed] = ACTIONS(1923), + [anon_sym_unsigned] = ACTIONS(1923), + [anon_sym_char] = ACTIONS(1923), + [anon_sym_short] = ACTIONS(1923), + [anon_sym_long] = ACTIONS(1923), + [anon_sym_const] = ACTIONS(1923), + [anon_sym_volatile] = ACTIONS(1923), + [anon_sym_ctypedef] = ACTIONS(1923), + [anon_sym_struct] = ACTIONS(1923), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_enum] = ACTIONS(1923), + [anon_sym_cppclass] = ACTIONS(1923), + [anon_sym_fused] = ACTIONS(1923), + [anon_sym_public] = ACTIONS(1923), + [anon_sym_packed] = ACTIONS(1923), + [anon_sym_inline] = ACTIONS(1923), + [anon_sym_readonly] = ACTIONS(1923), + [anon_sym_sizeof] = ACTIONS(1923), + [sym__dedent] = ACTIONS(1925), + [sym_string_start] = ACTIONS(1925), }, [613] = { - [sym_identifier] = ACTIONS(1937), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_import] = ACTIONS(1937), - [anon_sym_cimport] = ACTIONS(1937), - [anon_sym_from] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_STAR] = ACTIONS(1939), - [anon_sym_print] = ACTIONS(1937), - [anon_sym_assert] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_del] = ACTIONS(1937), - [anon_sym_raise] = ACTIONS(1937), - [anon_sym_pass] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_async] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_with] = ACTIONS(1937), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_global] = ACTIONS(1937), - [anon_sym_nonlocal] = ACTIONS(1937), - [anon_sym_exec] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_class] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(1939), - [anon_sym_AT] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_PLUS] = ACTIONS(1939), - [anon_sym_not] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1939), - [anon_sym_TILDE] = ACTIONS(1939), - [anon_sym_LT] = ACTIONS(1939), - [anon_sym_lambda] = ACTIONS(1937), - [anon_sym_yield] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1939), - [anon_sym_None] = ACTIONS(1937), - [sym_integer] = ACTIONS(1937), - [sym_float] = ACTIONS(1939), - [anon_sym_await] = ACTIONS(1937), - [anon_sym_api] = ACTIONS(1937), - [sym_true] = ACTIONS(1937), - [sym_false] = ACTIONS(1937), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1937), - [anon_sym_include] = ACTIONS(1937), - [anon_sym_DEF] = ACTIONS(1937), - [anon_sym_cdef] = ACTIONS(1937), - [anon_sym_cpdef] = ACTIONS(1937), - [anon_sym_int] = ACTIONS(1937), - [anon_sym_double] = ACTIONS(1937), - [anon_sym_complex] = ACTIONS(1937), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_signed] = ACTIONS(1937), - [anon_sym_unsigned] = ACTIONS(1937), - [anon_sym_char] = ACTIONS(1937), - [anon_sym_short] = ACTIONS(1937), - [anon_sym_long] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [anon_sym_volatile] = ACTIONS(1937), - [anon_sym_ctypedef] = ACTIONS(1937), - [anon_sym_struct] = ACTIONS(1937), - [anon_sym_union] = ACTIONS(1937), - [anon_sym_enum] = ACTIONS(1937), - [anon_sym_cppclass] = ACTIONS(1937), - [anon_sym_fused] = ACTIONS(1937), - [anon_sym_public] = ACTIONS(1937), - [anon_sym_packed] = ACTIONS(1937), - [anon_sym_inline] = ACTIONS(1937), - [anon_sym_readonly] = ACTIONS(1937), - [anon_sym_sizeof] = ACTIONS(1937), - [sym__dedent] = ACTIONS(1939), - [sym_string_start] = ACTIONS(1939), + [sym_identifier] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_import] = ACTIONS(1927), + [anon_sym_cimport] = ACTIONS(1927), + [anon_sym_from] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_print] = ACTIONS(1927), + [anon_sym_assert] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_del] = ACTIONS(1927), + [anon_sym_raise] = ACTIONS(1927), + [anon_sym_pass] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_match] = ACTIONS(1927), + [anon_sym_async] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_with] = ACTIONS(1927), + [anon_sym_def] = ACTIONS(1927), + [anon_sym_global] = ACTIONS(1927), + [anon_sym_nonlocal] = ACTIONS(1927), + [anon_sym_exec] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_class] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1929), + [anon_sym_AT] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_PLUS] = ACTIONS(1929), + [anon_sym_not] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1929), + [anon_sym_TILDE] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_lambda] = ACTIONS(1927), + [anon_sym_yield] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1929), + [anon_sym_None] = ACTIONS(1927), + [sym_integer] = ACTIONS(1927), + [sym_float] = ACTIONS(1929), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_api] = ACTIONS(1927), + [sym_true] = ACTIONS(1927), + [sym_false] = ACTIONS(1927), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1927), + [anon_sym_include] = ACTIONS(1927), + [anon_sym_DEF] = ACTIONS(1927), + [anon_sym_IF] = ACTIONS(1927), + [anon_sym_cdef] = ACTIONS(1927), + [anon_sym_cpdef] = ACTIONS(1927), + [anon_sym_int] = ACTIONS(1927), + [anon_sym_double] = ACTIONS(1927), + [anon_sym_complex] = ACTIONS(1927), + [anon_sym_new] = ACTIONS(1927), + [anon_sym_signed] = ACTIONS(1927), + [anon_sym_unsigned] = ACTIONS(1927), + [anon_sym_char] = ACTIONS(1927), + [anon_sym_short] = ACTIONS(1927), + [anon_sym_long] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [anon_sym_volatile] = ACTIONS(1927), + [anon_sym_ctypedef] = ACTIONS(1927), + [anon_sym_struct] = ACTIONS(1927), + [anon_sym_union] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1927), + [anon_sym_cppclass] = ACTIONS(1927), + [anon_sym_fused] = ACTIONS(1927), + [anon_sym_public] = ACTIONS(1927), + [anon_sym_packed] = ACTIONS(1927), + [anon_sym_inline] = ACTIONS(1927), + [anon_sym_readonly] = ACTIONS(1927), + [anon_sym_sizeof] = ACTIONS(1927), + [sym__dedent] = ACTIONS(1929), + [sym_string_start] = ACTIONS(1929), }, [614] = { - [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_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), + [sym_identifier] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_import] = ACTIONS(1931), + [anon_sym_cimport] = ACTIONS(1931), + [anon_sym_from] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_print] = ACTIONS(1931), + [anon_sym_assert] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_del] = ACTIONS(1931), + [anon_sym_raise] = ACTIONS(1931), + [anon_sym_pass] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_async] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_with] = ACTIONS(1931), + [anon_sym_def] = ACTIONS(1931), + [anon_sym_global] = ACTIONS(1931), + [anon_sym_nonlocal] = ACTIONS(1931), + [anon_sym_exec] = ACTIONS(1931), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1933), + [anon_sym_AT] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1931), + [anon_sym_AMP] = ACTIONS(1933), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_LT] = ACTIONS(1933), + [anon_sym_lambda] = ACTIONS(1931), + [anon_sym_yield] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_None] = ACTIONS(1931), + [sym_integer] = ACTIONS(1931), + [sym_float] = ACTIONS(1933), + [anon_sym_await] = ACTIONS(1931), + [anon_sym_api] = ACTIONS(1931), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1931), + [anon_sym_include] = ACTIONS(1931), + [anon_sym_DEF] = ACTIONS(1931), + [anon_sym_IF] = ACTIONS(1931), + [anon_sym_cdef] = ACTIONS(1931), + [anon_sym_cpdef] = ACTIONS(1931), + [anon_sym_int] = ACTIONS(1931), + [anon_sym_double] = ACTIONS(1931), + [anon_sym_complex] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_char] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_volatile] = ACTIONS(1931), + [anon_sym_ctypedef] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_cppclass] = ACTIONS(1931), + [anon_sym_fused] = ACTIONS(1931), + [anon_sym_public] = ACTIONS(1931), + [anon_sym_packed] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym_readonly] = ACTIONS(1931), + [anon_sym_sizeof] = ACTIONS(1931), + [sym__dedent] = ACTIONS(1933), + [sym_string_start] = ACTIONS(1933), }, [615] = { - [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), + [sym_identifier] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1937), + [anon_sym_import] = ACTIONS(1935), + [anon_sym_cimport] = ACTIONS(1935), + [anon_sym_from] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_STAR] = ACTIONS(1937), + [anon_sym_print] = ACTIONS(1935), + [anon_sym_assert] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_del] = ACTIONS(1935), + [anon_sym_raise] = ACTIONS(1935), + [anon_sym_pass] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_with] = ACTIONS(1935), + [anon_sym_def] = ACTIONS(1935), + [anon_sym_global] = ACTIONS(1935), + [anon_sym_nonlocal] = ACTIONS(1935), + [anon_sym_exec] = ACTIONS(1935), + [anon_sym_type] = ACTIONS(1935), + [anon_sym_class] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_AT] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1937), + [anon_sym_LBRACE] = ACTIONS(1937), + [anon_sym_PLUS] = ACTIONS(1937), + [anon_sym_not] = ACTIONS(1935), + [anon_sym_AMP] = ACTIONS(1937), + [anon_sym_TILDE] = ACTIONS(1937), + [anon_sym_LT] = ACTIONS(1937), + [anon_sym_lambda] = ACTIONS(1935), + [anon_sym_yield] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1937), + [anon_sym_None] = ACTIONS(1935), + [sym_integer] = ACTIONS(1935), + [sym_float] = ACTIONS(1937), + [anon_sym_await] = ACTIONS(1935), + [anon_sym_api] = ACTIONS(1935), + [sym_true] = ACTIONS(1935), + [sym_false] = ACTIONS(1935), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1935), + [anon_sym_include] = ACTIONS(1935), + [anon_sym_DEF] = ACTIONS(1935), + [anon_sym_IF] = ACTIONS(1935), + [anon_sym_cdef] = ACTIONS(1935), + [anon_sym_cpdef] = ACTIONS(1935), + [anon_sym_int] = ACTIONS(1935), + [anon_sym_double] = ACTIONS(1935), + [anon_sym_complex] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_signed] = ACTIONS(1935), + [anon_sym_unsigned] = ACTIONS(1935), + [anon_sym_char] = ACTIONS(1935), + [anon_sym_short] = ACTIONS(1935), + [anon_sym_long] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_ctypedef] = ACTIONS(1935), + [anon_sym_struct] = ACTIONS(1935), + [anon_sym_union] = ACTIONS(1935), + [anon_sym_enum] = ACTIONS(1935), + [anon_sym_cppclass] = ACTIONS(1935), + [anon_sym_fused] = ACTIONS(1935), + [anon_sym_public] = ACTIONS(1935), + [anon_sym_packed] = ACTIONS(1935), + [anon_sym_inline] = ACTIONS(1935), + [anon_sym_readonly] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1935), + [sym__dedent] = ACTIONS(1937), + [sym_string_start] = ACTIONS(1937), }, [616] = { - [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_DASH] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_PLUS] = ACTIONS(1951), - [anon_sym_not] = ACTIONS(1949), - [anon_sym_AMP] = ACTIONS(1951), - [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), + [sym_identifier] = ACTIONS(1939), + [anon_sym_SEMI] = ACTIONS(1941), + [anon_sym_import] = ACTIONS(1939), + [anon_sym_cimport] = ACTIONS(1939), + [anon_sym_from] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_print] = ACTIONS(1939), + [anon_sym_assert] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(1939), + [anon_sym_del] = ACTIONS(1939), + [anon_sym_raise] = ACTIONS(1939), + [anon_sym_pass] = ACTIONS(1939), + [anon_sym_break] = ACTIONS(1939), + [anon_sym_continue] = ACTIONS(1939), + [anon_sym_if] = ACTIONS(1939), + [anon_sym_match] = ACTIONS(1939), + [anon_sym_async] = ACTIONS(1939), + [anon_sym_for] = ACTIONS(1939), + [anon_sym_while] = ACTIONS(1939), + [anon_sym_try] = ACTIONS(1939), + [anon_sym_with] = ACTIONS(1939), + [anon_sym_def] = ACTIONS(1939), + [anon_sym_global] = ACTIONS(1939), + [anon_sym_nonlocal] = ACTIONS(1939), + [anon_sym_exec] = ACTIONS(1939), + [anon_sym_type] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1941), + [anon_sym_AT] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1941), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_PLUS] = ACTIONS(1941), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1941), + [anon_sym_lambda] = ACTIONS(1939), + [anon_sym_yield] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), + [anon_sym_None] = ACTIONS(1939), + [sym_integer] = ACTIONS(1939), + [sym_float] = ACTIONS(1941), + [anon_sym_await] = ACTIONS(1939), + [anon_sym_api] = ACTIONS(1939), + [sym_true] = ACTIONS(1939), + [sym_false] = ACTIONS(1939), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1939), + [anon_sym_include] = ACTIONS(1939), + [anon_sym_DEF] = ACTIONS(1939), + [anon_sym_IF] = ACTIONS(1939), + [anon_sym_cdef] = ACTIONS(1939), + [anon_sym_cpdef] = ACTIONS(1939), + [anon_sym_int] = ACTIONS(1939), + [anon_sym_double] = ACTIONS(1939), + [anon_sym_complex] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_signed] = ACTIONS(1939), + [anon_sym_unsigned] = ACTIONS(1939), + [anon_sym_char] = ACTIONS(1939), + [anon_sym_short] = ACTIONS(1939), + [anon_sym_long] = ACTIONS(1939), + [anon_sym_const] = ACTIONS(1939), + [anon_sym_volatile] = ACTIONS(1939), + [anon_sym_ctypedef] = ACTIONS(1939), + [anon_sym_struct] = ACTIONS(1939), + [anon_sym_union] = ACTIONS(1939), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_cppclass] = ACTIONS(1939), + [anon_sym_fused] = ACTIONS(1939), + [anon_sym_public] = ACTIONS(1939), + [anon_sym_packed] = ACTIONS(1939), + [anon_sym_inline] = ACTIONS(1939), + [anon_sym_readonly] = ACTIONS(1939), + [anon_sym_sizeof] = ACTIONS(1939), + [sym__dedent] = ACTIONS(1941), + [sym_string_start] = ACTIONS(1941), }, [617] = { - [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_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), + [sym_identifier] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym_import] = ACTIONS(1943), + [anon_sym_cimport] = ACTIONS(1943), + [anon_sym_from] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_print] = ACTIONS(1943), + [anon_sym_assert] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_del] = ACTIONS(1943), + [anon_sym_raise] = ACTIONS(1943), + [anon_sym_pass] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_match] = ACTIONS(1943), + [anon_sym_async] = ACTIONS(1943), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_with] = ACTIONS(1943), + [anon_sym_def] = ACTIONS(1943), + [anon_sym_global] = ACTIONS(1943), + [anon_sym_nonlocal] = ACTIONS(1943), + [anon_sym_exec] = ACTIONS(1943), + [anon_sym_type] = ACTIONS(1943), + [anon_sym_class] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_AT] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1945), + [anon_sym_not] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1945), + [anon_sym_lambda] = ACTIONS(1943), + [anon_sym_yield] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_None] = ACTIONS(1943), + [sym_integer] = ACTIONS(1943), + [sym_float] = ACTIONS(1945), + [anon_sym_await] = ACTIONS(1943), + [anon_sym_api] = ACTIONS(1943), + [sym_true] = ACTIONS(1943), + [sym_false] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1943), + [anon_sym_include] = ACTIONS(1943), + [anon_sym_DEF] = ACTIONS(1943), + [anon_sym_IF] = ACTIONS(1943), + [anon_sym_cdef] = ACTIONS(1943), + [anon_sym_cpdef] = ACTIONS(1943), + [anon_sym_int] = ACTIONS(1943), + [anon_sym_double] = ACTIONS(1943), + [anon_sym_complex] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_signed] = ACTIONS(1943), + [anon_sym_unsigned] = ACTIONS(1943), + [anon_sym_char] = ACTIONS(1943), + [anon_sym_short] = ACTIONS(1943), + [anon_sym_long] = ACTIONS(1943), + [anon_sym_const] = ACTIONS(1943), + [anon_sym_volatile] = ACTIONS(1943), + [anon_sym_ctypedef] = ACTIONS(1943), + [anon_sym_struct] = ACTIONS(1943), + [anon_sym_union] = ACTIONS(1943), + [anon_sym_enum] = ACTIONS(1943), + [anon_sym_cppclass] = ACTIONS(1943), + [anon_sym_fused] = ACTIONS(1943), + [anon_sym_public] = ACTIONS(1943), + [anon_sym_packed] = ACTIONS(1943), + [anon_sym_inline] = ACTIONS(1943), + [anon_sym_readonly] = ACTIONS(1943), + [anon_sym_sizeof] = ACTIONS(1943), + [sym__dedent] = ACTIONS(1945), + [sym_string_start] = ACTIONS(1945), }, [618] = { - [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), + [sym_identifier] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1949), + [anon_sym_import] = ACTIONS(1947), + [anon_sym_cimport] = ACTIONS(1947), + [anon_sym_from] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_STAR] = ACTIONS(1949), + [anon_sym_print] = ACTIONS(1947), + [anon_sym_assert] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_del] = ACTIONS(1947), + [anon_sym_raise] = ACTIONS(1947), + [anon_sym_pass] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_async] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_with] = ACTIONS(1947), + [anon_sym_def] = ACTIONS(1947), + [anon_sym_global] = ACTIONS(1947), + [anon_sym_nonlocal] = ACTIONS(1947), + [anon_sym_exec] = ACTIONS(1947), + [anon_sym_type] = ACTIONS(1947), + [anon_sym_class] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_AT] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_PLUS] = ACTIONS(1949), + [anon_sym_not] = ACTIONS(1947), + [anon_sym_AMP] = ACTIONS(1949), + [anon_sym_TILDE] = ACTIONS(1949), + [anon_sym_LT] = ACTIONS(1949), + [anon_sym_lambda] = ACTIONS(1947), + [anon_sym_yield] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1949), + [anon_sym_None] = ACTIONS(1947), + [sym_integer] = ACTIONS(1947), + [sym_float] = ACTIONS(1949), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_api] = ACTIONS(1947), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1947), + [anon_sym_include] = ACTIONS(1947), + [anon_sym_DEF] = ACTIONS(1947), + [anon_sym_IF] = ACTIONS(1947), + [anon_sym_cdef] = ACTIONS(1947), + [anon_sym_cpdef] = ACTIONS(1947), + [anon_sym_int] = ACTIONS(1947), + [anon_sym_double] = ACTIONS(1947), + [anon_sym_complex] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_signed] = ACTIONS(1947), + [anon_sym_unsigned] = ACTIONS(1947), + [anon_sym_char] = ACTIONS(1947), + [anon_sym_short] = ACTIONS(1947), + [anon_sym_long] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [anon_sym_volatile] = ACTIONS(1947), + [anon_sym_ctypedef] = ACTIONS(1947), + [anon_sym_struct] = ACTIONS(1947), + [anon_sym_union] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_cppclass] = ACTIONS(1947), + [anon_sym_fused] = ACTIONS(1947), + [anon_sym_public] = ACTIONS(1947), + [anon_sym_packed] = ACTIONS(1947), + [anon_sym_inline] = ACTIONS(1947), + [anon_sym_readonly] = ACTIONS(1947), + [anon_sym_sizeof] = ACTIONS(1947), + [sym__dedent] = ACTIONS(1949), + [sym_string_start] = ACTIONS(1949), }, [619] = { - [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), + [sym_identifier] = ACTIONS(1951), + [anon_sym_SEMI] = ACTIONS(1953), + [anon_sym_import] = ACTIONS(1951), + [anon_sym_cimport] = ACTIONS(1951), + [anon_sym_from] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_STAR] = ACTIONS(1953), + [anon_sym_print] = ACTIONS(1951), + [anon_sym_assert] = ACTIONS(1951), + [anon_sym_return] = ACTIONS(1951), + [anon_sym_del] = ACTIONS(1951), + [anon_sym_raise] = ACTIONS(1951), + [anon_sym_pass] = ACTIONS(1951), + [anon_sym_break] = ACTIONS(1951), + [anon_sym_continue] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1951), + [anon_sym_async] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1951), + [anon_sym_while] = ACTIONS(1951), + [anon_sym_try] = ACTIONS(1951), + [anon_sym_with] = ACTIONS(1951), + [anon_sym_def] = ACTIONS(1951), + [anon_sym_global] = ACTIONS(1951), + [anon_sym_nonlocal] = ACTIONS(1951), + [anon_sym_exec] = ACTIONS(1951), + [anon_sym_type] = ACTIONS(1951), + [anon_sym_class] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_AT] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_PLUS] = ACTIONS(1953), + [anon_sym_not] = ACTIONS(1951), + [anon_sym_AMP] = ACTIONS(1953), + [anon_sym_TILDE] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1953), + [anon_sym_lambda] = ACTIONS(1951), + [anon_sym_yield] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1953), + [anon_sym_None] = ACTIONS(1951), + [sym_integer] = ACTIONS(1951), + [sym_float] = ACTIONS(1953), + [anon_sym_await] = ACTIONS(1951), + [anon_sym_api] = ACTIONS(1951), + [sym_true] = ACTIONS(1951), + [sym_false] = ACTIONS(1951), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1951), + [anon_sym_include] = ACTIONS(1951), + [anon_sym_DEF] = ACTIONS(1951), + [anon_sym_IF] = ACTIONS(1951), + [anon_sym_cdef] = ACTIONS(1951), + [anon_sym_cpdef] = ACTIONS(1951), + [anon_sym_int] = ACTIONS(1951), + [anon_sym_double] = ACTIONS(1951), + [anon_sym_complex] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_signed] = ACTIONS(1951), + [anon_sym_unsigned] = ACTIONS(1951), + [anon_sym_char] = ACTIONS(1951), + [anon_sym_short] = ACTIONS(1951), + [anon_sym_long] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_volatile] = ACTIONS(1951), + [anon_sym_ctypedef] = ACTIONS(1951), + [anon_sym_struct] = ACTIONS(1951), + [anon_sym_union] = ACTIONS(1951), + [anon_sym_enum] = ACTIONS(1951), + [anon_sym_cppclass] = ACTIONS(1951), + [anon_sym_fused] = ACTIONS(1951), + [anon_sym_public] = ACTIONS(1951), + [anon_sym_packed] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym_readonly] = ACTIONS(1951), + [anon_sym_sizeof] = ACTIONS(1951), + [sym__dedent] = ACTIONS(1953), + [sym_string_start] = ACTIONS(1953), }, [620] = { - [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_sizeof] = ACTIONS(1965), - [sym__dedent] = ACTIONS(1967), - [sym_string_start] = ACTIONS(1967), + [sym_identifier] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1957), + [anon_sym_import] = ACTIONS(1955), + [anon_sym_cimport] = ACTIONS(1955), + [anon_sym_from] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_print] = ACTIONS(1955), + [anon_sym_assert] = ACTIONS(1955), + [anon_sym_return] = ACTIONS(1955), + [anon_sym_del] = ACTIONS(1955), + [anon_sym_raise] = ACTIONS(1955), + [anon_sym_pass] = ACTIONS(1955), + [anon_sym_break] = ACTIONS(1955), + [anon_sym_continue] = ACTIONS(1955), + [anon_sym_if] = ACTIONS(1955), + [anon_sym_match] = ACTIONS(1955), + [anon_sym_async] = ACTIONS(1955), + [anon_sym_for] = ACTIONS(1955), + [anon_sym_while] = ACTIONS(1955), + [anon_sym_try] = ACTIONS(1955), + [anon_sym_with] = ACTIONS(1955), + [anon_sym_def] = ACTIONS(1955), + [anon_sym_global] = ACTIONS(1955), + [anon_sym_nonlocal] = ACTIONS(1955), + [anon_sym_exec] = ACTIONS(1955), + [anon_sym_type] = ACTIONS(1955), + [anon_sym_class] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1957), + [anon_sym_AT] = ACTIONS(1957), + [anon_sym_DASH] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1957), + [anon_sym_not] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1957), + [anon_sym_TILDE] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1957), + [anon_sym_lambda] = ACTIONS(1955), + [anon_sym_yield] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_None] = ACTIONS(1955), + [sym_integer] = ACTIONS(1955), + [sym_float] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(1955), + [anon_sym_api] = ACTIONS(1955), + [sym_true] = ACTIONS(1955), + [sym_false] = ACTIONS(1955), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1955), + [anon_sym_include] = ACTIONS(1955), + [anon_sym_DEF] = ACTIONS(1955), + [anon_sym_IF] = ACTIONS(1955), + [anon_sym_cdef] = ACTIONS(1955), + [anon_sym_cpdef] = ACTIONS(1955), + [anon_sym_int] = ACTIONS(1955), + [anon_sym_double] = ACTIONS(1955), + [anon_sym_complex] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(1955), + [anon_sym_signed] = ACTIONS(1955), + [anon_sym_unsigned] = ACTIONS(1955), + [anon_sym_char] = ACTIONS(1955), + [anon_sym_short] = ACTIONS(1955), + [anon_sym_long] = ACTIONS(1955), + [anon_sym_const] = ACTIONS(1955), + [anon_sym_volatile] = ACTIONS(1955), + [anon_sym_ctypedef] = ACTIONS(1955), + [anon_sym_struct] = ACTIONS(1955), + [anon_sym_union] = ACTIONS(1955), + [anon_sym_enum] = ACTIONS(1955), + [anon_sym_cppclass] = ACTIONS(1955), + [anon_sym_fused] = ACTIONS(1955), + [anon_sym_public] = ACTIONS(1955), + [anon_sym_packed] = ACTIONS(1955), + [anon_sym_inline] = ACTIONS(1955), + [anon_sym_readonly] = ACTIONS(1955), + [anon_sym_sizeof] = ACTIONS(1955), + [sym__dedent] = ACTIONS(1957), + [sym_string_start] = ACTIONS(1957), }, [621] = { - [sym_identifier] = ACTIONS(1969), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_import] = ACTIONS(1969), - [anon_sym_cimport] = ACTIONS(1969), - [anon_sym_from] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_print] = ACTIONS(1969), - [anon_sym_assert] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_del] = ACTIONS(1969), - [anon_sym_raise] = ACTIONS(1969), - [anon_sym_pass] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_async] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_with] = ACTIONS(1969), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_global] = ACTIONS(1969), - [anon_sym_nonlocal] = ACTIONS(1969), - [anon_sym_exec] = ACTIONS(1969), - [anon_sym_type] = ACTIONS(1969), - [anon_sym_class] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_not] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_lambda] = ACTIONS(1969), - [anon_sym_yield] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1971), - [anon_sym_None] = ACTIONS(1969), - [sym_integer] = ACTIONS(1969), - [sym_float] = ACTIONS(1971), - [anon_sym_await] = ACTIONS(1969), - [anon_sym_api] = ACTIONS(1969), - [sym_true] = ACTIONS(1969), - [sym_false] = ACTIONS(1969), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1969), - [anon_sym_include] = ACTIONS(1969), - [anon_sym_DEF] = ACTIONS(1969), - [anon_sym_cdef] = ACTIONS(1969), - [anon_sym_cpdef] = ACTIONS(1969), - [anon_sym_int] = ACTIONS(1969), - [anon_sym_double] = ACTIONS(1969), - [anon_sym_complex] = ACTIONS(1969), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_signed] = ACTIONS(1969), - [anon_sym_unsigned] = ACTIONS(1969), - [anon_sym_char] = ACTIONS(1969), - [anon_sym_short] = ACTIONS(1969), - [anon_sym_long] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [anon_sym_volatile] = ACTIONS(1969), - [anon_sym_ctypedef] = ACTIONS(1969), - [anon_sym_struct] = ACTIONS(1969), - [anon_sym_union] = ACTIONS(1969), - [anon_sym_enum] = ACTIONS(1969), - [anon_sym_cppclass] = ACTIONS(1969), - [anon_sym_fused] = ACTIONS(1969), - [anon_sym_public] = ACTIONS(1969), - [anon_sym_packed] = ACTIONS(1969), - [anon_sym_inline] = ACTIONS(1969), - [anon_sym_readonly] = ACTIONS(1969), - [anon_sym_sizeof] = ACTIONS(1969), - [sym__dedent] = ACTIONS(1971), - [sym_string_start] = ACTIONS(1971), + [sym_identifier] = ACTIONS(1959), + [anon_sym_SEMI] = ACTIONS(1961), + [anon_sym_import] = ACTIONS(1959), + [anon_sym_cimport] = ACTIONS(1959), + [anon_sym_from] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_print] = ACTIONS(1959), + [anon_sym_assert] = ACTIONS(1959), + [anon_sym_return] = ACTIONS(1959), + [anon_sym_del] = ACTIONS(1959), + [anon_sym_raise] = ACTIONS(1959), + [anon_sym_pass] = ACTIONS(1959), + [anon_sym_break] = ACTIONS(1959), + [anon_sym_continue] = ACTIONS(1959), + [anon_sym_if] = ACTIONS(1959), + [anon_sym_match] = ACTIONS(1959), + [anon_sym_async] = ACTIONS(1959), + [anon_sym_for] = ACTIONS(1959), + [anon_sym_while] = ACTIONS(1959), + [anon_sym_try] = ACTIONS(1959), + [anon_sym_with] = ACTIONS(1959), + [anon_sym_def] = ACTIONS(1959), + [anon_sym_global] = ACTIONS(1959), + [anon_sym_nonlocal] = ACTIONS(1959), + [anon_sym_exec] = ACTIONS(1959), + [anon_sym_type] = ACTIONS(1959), + [anon_sym_class] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1961), + [anon_sym_AT] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1961), + [anon_sym_PLUS] = ACTIONS(1961), + [anon_sym_not] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_LT] = ACTIONS(1961), + [anon_sym_lambda] = ACTIONS(1959), + [anon_sym_yield] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1961), + [anon_sym_None] = ACTIONS(1959), + [sym_integer] = ACTIONS(1959), + [sym_float] = ACTIONS(1961), + [anon_sym_await] = ACTIONS(1959), + [anon_sym_api] = ACTIONS(1959), + [sym_true] = ACTIONS(1959), + [sym_false] = ACTIONS(1959), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1959), + [anon_sym_include] = ACTIONS(1959), + [anon_sym_DEF] = ACTIONS(1959), + [anon_sym_IF] = ACTIONS(1959), + [anon_sym_cdef] = ACTIONS(1959), + [anon_sym_cpdef] = ACTIONS(1959), + [anon_sym_int] = ACTIONS(1959), + [anon_sym_double] = ACTIONS(1959), + [anon_sym_complex] = ACTIONS(1959), + [anon_sym_new] = ACTIONS(1959), + [anon_sym_signed] = ACTIONS(1959), + [anon_sym_unsigned] = ACTIONS(1959), + [anon_sym_char] = ACTIONS(1959), + [anon_sym_short] = ACTIONS(1959), + [anon_sym_long] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(1959), + [anon_sym_volatile] = ACTIONS(1959), + [anon_sym_ctypedef] = ACTIONS(1959), + [anon_sym_struct] = ACTIONS(1959), + [anon_sym_union] = ACTIONS(1959), + [anon_sym_enum] = ACTIONS(1959), + [anon_sym_cppclass] = ACTIONS(1959), + [anon_sym_fused] = ACTIONS(1959), + [anon_sym_public] = ACTIONS(1959), + [anon_sym_packed] = ACTIONS(1959), + [anon_sym_inline] = ACTIONS(1959), + [anon_sym_readonly] = ACTIONS(1959), + [anon_sym_sizeof] = ACTIONS(1959), + [sym__dedent] = ACTIONS(1961), + [sym_string_start] = ACTIONS(1961), }, [622] = { - [sym_list_splat_pattern] = STATE(2421), - [sym_primary_expression] = STATE(2212), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_attribute] = STATE(2347), - [sym_subscript] = STATE(2347), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(1973), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_print] = ACTIONS(1979), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_async] = ACTIONS(1979), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(1979), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_type_conversion] = ACTIONS(811), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(1995), - [anon_sym_api] = ACTIONS(1979), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), + [sym_identifier] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym_import] = ACTIONS(1963), + [anon_sym_cimport] = ACTIONS(1963), + [anon_sym_from] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1965), + [anon_sym_print] = ACTIONS(1963), + [anon_sym_assert] = ACTIONS(1963), + [anon_sym_return] = ACTIONS(1963), + [anon_sym_del] = ACTIONS(1963), + [anon_sym_raise] = ACTIONS(1963), + [anon_sym_pass] = ACTIONS(1963), + [anon_sym_break] = ACTIONS(1963), + [anon_sym_continue] = ACTIONS(1963), + [anon_sym_if] = ACTIONS(1963), + [anon_sym_match] = ACTIONS(1963), + [anon_sym_async] = ACTIONS(1963), + [anon_sym_for] = ACTIONS(1963), + [anon_sym_while] = ACTIONS(1963), + [anon_sym_try] = ACTIONS(1963), + [anon_sym_with] = ACTIONS(1963), + [anon_sym_def] = ACTIONS(1963), + [anon_sym_global] = ACTIONS(1963), + [anon_sym_nonlocal] = ACTIONS(1963), + [anon_sym_exec] = ACTIONS(1963), + [anon_sym_type] = ACTIONS(1963), + [anon_sym_class] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1965), + [anon_sym_AT] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1965), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_AMP] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1965), + [anon_sym_lambda] = ACTIONS(1963), + [anon_sym_yield] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1965), + [anon_sym_None] = ACTIONS(1963), + [sym_integer] = ACTIONS(1963), + [sym_float] = ACTIONS(1965), + [anon_sym_await] = ACTIONS(1963), + [anon_sym_api] = ACTIONS(1963), + [sym_true] = ACTIONS(1963), + [sym_false] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1963), + [anon_sym_include] = ACTIONS(1963), + [anon_sym_DEF] = ACTIONS(1963), + [anon_sym_IF] = ACTIONS(1963), + [anon_sym_cdef] = ACTIONS(1963), + [anon_sym_cpdef] = ACTIONS(1963), + [anon_sym_int] = ACTIONS(1963), + [anon_sym_double] = ACTIONS(1963), + [anon_sym_complex] = ACTIONS(1963), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1963), + [anon_sym_unsigned] = ACTIONS(1963), + [anon_sym_char] = ACTIONS(1963), + [anon_sym_short] = ACTIONS(1963), + [anon_sym_long] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_ctypedef] = ACTIONS(1963), + [anon_sym_struct] = ACTIONS(1963), + [anon_sym_union] = ACTIONS(1963), + [anon_sym_enum] = ACTIONS(1963), + [anon_sym_cppclass] = ACTIONS(1963), + [anon_sym_fused] = ACTIONS(1963), + [anon_sym_public] = ACTIONS(1963), + [anon_sym_packed] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym_readonly] = ACTIONS(1963), + [anon_sym_sizeof] = ACTIONS(1963), + [sym__dedent] = ACTIONS(1965), + [sym_string_start] = ACTIONS(1965), }, [623] = { - [sym_identifier] = ACTIONS(2001), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_import] = ACTIONS(2001), - [anon_sym_cimport] = ACTIONS(2001), - [anon_sym_from] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_print] = ACTIONS(2001), - [anon_sym_assert] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2001), - [anon_sym_del] = ACTIONS(2001), - [anon_sym_raise] = ACTIONS(2001), - [anon_sym_pass] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2001), - [anon_sym_continue] = ACTIONS(2001), - [anon_sym_if] = ACTIONS(2001), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_async] = ACTIONS(2001), - [anon_sym_for] = ACTIONS(2001), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_try] = ACTIONS(2001), - [anon_sym_with] = ACTIONS(2001), - [anon_sym_def] = ACTIONS(2001), - [anon_sym_global] = ACTIONS(2001), - [anon_sym_nonlocal] = ACTIONS(2001), - [anon_sym_exec] = ACTIONS(2001), - [anon_sym_type] = ACTIONS(2001), - [anon_sym_class] = ACTIONS(2001), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_AT] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_PLUS] = ACTIONS(2003), - [anon_sym_not] = ACTIONS(2001), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym_TILDE] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_lambda] = ACTIONS(2001), - [anon_sym_yield] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2003), - [anon_sym_None] = ACTIONS(2001), - [sym_integer] = ACTIONS(2001), - [sym_float] = ACTIONS(2003), - [anon_sym_await] = ACTIONS(2001), - [anon_sym_api] = ACTIONS(2001), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2001), - [anon_sym_include] = ACTIONS(2001), - [anon_sym_DEF] = ACTIONS(2001), - [anon_sym_cdef] = ACTIONS(2001), - [anon_sym_cpdef] = ACTIONS(2001), - [anon_sym_int] = ACTIONS(2001), - [anon_sym_double] = ACTIONS(2001), - [anon_sym_complex] = ACTIONS(2001), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_signed] = ACTIONS(2001), - [anon_sym_unsigned] = ACTIONS(2001), - [anon_sym_char] = ACTIONS(2001), - [anon_sym_short] = ACTIONS(2001), - [anon_sym_long] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(2001), - [anon_sym_volatile] = ACTIONS(2001), - [anon_sym_ctypedef] = ACTIONS(2001), - [anon_sym_struct] = ACTIONS(2001), - [anon_sym_union] = ACTIONS(2001), - [anon_sym_enum] = ACTIONS(2001), - [anon_sym_cppclass] = ACTIONS(2001), - [anon_sym_fused] = ACTIONS(2001), - [anon_sym_public] = ACTIONS(2001), - [anon_sym_packed] = ACTIONS(2001), - [anon_sym_inline] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2001), - [anon_sym_sizeof] = ACTIONS(2001), - [sym__dedent] = ACTIONS(2003), - [sym_string_start] = ACTIONS(2003), + [sym_identifier] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_import] = ACTIONS(1967), + [anon_sym_cimport] = ACTIONS(1967), + [anon_sym_from] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_print] = ACTIONS(1967), + [anon_sym_assert] = ACTIONS(1967), + [anon_sym_return] = ACTIONS(1967), + [anon_sym_del] = ACTIONS(1967), + [anon_sym_raise] = ACTIONS(1967), + [anon_sym_pass] = ACTIONS(1967), + [anon_sym_break] = ACTIONS(1967), + [anon_sym_continue] = ACTIONS(1967), + [anon_sym_if] = ACTIONS(1967), + [anon_sym_match] = ACTIONS(1967), + [anon_sym_async] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1967), + [anon_sym_while] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(1967), + [anon_sym_with] = ACTIONS(1967), + [anon_sym_def] = ACTIONS(1967), + [anon_sym_global] = ACTIONS(1967), + [anon_sym_nonlocal] = ACTIONS(1967), + [anon_sym_exec] = ACTIONS(1967), + [anon_sym_type] = ACTIONS(1967), + [anon_sym_class] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_AT] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_not] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1969), + [anon_sym_TILDE] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1969), + [anon_sym_lambda] = ACTIONS(1967), + [anon_sym_yield] = ACTIONS(1967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1969), + [anon_sym_None] = ACTIONS(1967), + [sym_integer] = ACTIONS(1967), + [sym_float] = ACTIONS(1969), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_api] = ACTIONS(1967), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1967), + [anon_sym_include] = ACTIONS(1967), + [anon_sym_DEF] = ACTIONS(1967), + [anon_sym_IF] = ACTIONS(1967), + [anon_sym_cdef] = ACTIONS(1967), + [anon_sym_cpdef] = ACTIONS(1967), + [anon_sym_int] = ACTIONS(1967), + [anon_sym_double] = ACTIONS(1967), + [anon_sym_complex] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1967), + [anon_sym_unsigned] = ACTIONS(1967), + [anon_sym_char] = ACTIONS(1967), + [anon_sym_short] = ACTIONS(1967), + [anon_sym_long] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_ctypedef] = ACTIONS(1967), + [anon_sym_struct] = ACTIONS(1967), + [anon_sym_union] = ACTIONS(1967), + [anon_sym_enum] = ACTIONS(1967), + [anon_sym_cppclass] = ACTIONS(1967), + [anon_sym_fused] = ACTIONS(1967), + [anon_sym_public] = ACTIONS(1967), + [anon_sym_packed] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym_readonly] = ACTIONS(1967), + [anon_sym_sizeof] = ACTIONS(1967), + [sym__dedent] = ACTIONS(1969), + [sym_string_start] = ACTIONS(1969), }, [624] = { - [sym_identifier] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2007), - [anon_sym_import] = ACTIONS(2005), - [anon_sym_cimport] = ACTIONS(2005), - [anon_sym_from] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_print] = ACTIONS(2005), - [anon_sym_assert] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_del] = ACTIONS(2005), - [anon_sym_raise] = ACTIONS(2005), - [anon_sym_pass] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(2005), - [anon_sym_with] = ACTIONS(2005), - [anon_sym_def] = ACTIONS(2005), - [anon_sym_global] = ACTIONS(2005), - [anon_sym_nonlocal] = ACTIONS(2005), - [anon_sym_exec] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_class] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_AT] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_not] = ACTIONS(2005), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_lambda] = ACTIONS(2005), - [anon_sym_yield] = ACTIONS(2005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2007), - [anon_sym_None] = ACTIONS(2005), - [sym_integer] = ACTIONS(2005), - [sym_float] = ACTIONS(2007), - [anon_sym_await] = ACTIONS(2005), - [anon_sym_api] = ACTIONS(2005), - [sym_true] = ACTIONS(2005), - [sym_false] = ACTIONS(2005), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2005), - [anon_sym_include] = ACTIONS(2005), - [anon_sym_DEF] = ACTIONS(2005), - [anon_sym_cdef] = ACTIONS(2005), - [anon_sym_cpdef] = ACTIONS(2005), - [anon_sym_int] = ACTIONS(2005), - [anon_sym_double] = ACTIONS(2005), - [anon_sym_complex] = ACTIONS(2005), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_signed] = ACTIONS(2005), - [anon_sym_unsigned] = ACTIONS(2005), - [anon_sym_char] = ACTIONS(2005), - [anon_sym_short] = ACTIONS(2005), - [anon_sym_long] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_volatile] = ACTIONS(2005), - [anon_sym_ctypedef] = ACTIONS(2005), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2005), - [anon_sym_enum] = ACTIONS(2005), - [anon_sym_cppclass] = ACTIONS(2005), - [anon_sym_fused] = ACTIONS(2005), - [anon_sym_public] = ACTIONS(2005), - [anon_sym_packed] = ACTIONS(2005), - [anon_sym_inline] = ACTIONS(2005), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_sizeof] = ACTIONS(2005), - [sym__dedent] = ACTIONS(2007), - [sym_string_start] = ACTIONS(2007), + [sym_identifier] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1973), + [anon_sym_import] = ACTIONS(1971), + [anon_sym_cimport] = ACTIONS(1971), + [anon_sym_from] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_print] = ACTIONS(1971), + [anon_sym_assert] = ACTIONS(1971), + [anon_sym_return] = ACTIONS(1971), + [anon_sym_del] = ACTIONS(1971), + [anon_sym_raise] = ACTIONS(1971), + [anon_sym_pass] = ACTIONS(1971), + [anon_sym_break] = ACTIONS(1971), + [anon_sym_continue] = ACTIONS(1971), + [anon_sym_if] = ACTIONS(1971), + [anon_sym_match] = ACTIONS(1971), + [anon_sym_async] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1971), + [anon_sym_while] = ACTIONS(1971), + [anon_sym_try] = ACTIONS(1971), + [anon_sym_with] = ACTIONS(1971), + [anon_sym_def] = ACTIONS(1971), + [anon_sym_global] = ACTIONS(1971), + [anon_sym_nonlocal] = ACTIONS(1971), + [anon_sym_exec] = ACTIONS(1971), + [anon_sym_type] = ACTIONS(1971), + [anon_sym_class] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_AT] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_lambda] = ACTIONS(1971), + [anon_sym_yield] = ACTIONS(1971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1973), + [anon_sym_None] = ACTIONS(1971), + [sym_integer] = ACTIONS(1971), + [sym_float] = ACTIONS(1973), + [anon_sym_await] = ACTIONS(1971), + [anon_sym_api] = ACTIONS(1971), + [sym_true] = ACTIONS(1971), + [sym_false] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1971), + [anon_sym_include] = ACTIONS(1971), + [anon_sym_DEF] = ACTIONS(1971), + [anon_sym_IF] = ACTIONS(1971), + [anon_sym_cdef] = ACTIONS(1971), + [anon_sym_cpdef] = ACTIONS(1971), + [anon_sym_int] = ACTIONS(1971), + [anon_sym_double] = ACTIONS(1971), + [anon_sym_complex] = ACTIONS(1971), + [anon_sym_new] = ACTIONS(1971), + [anon_sym_signed] = ACTIONS(1971), + [anon_sym_unsigned] = ACTIONS(1971), + [anon_sym_char] = ACTIONS(1971), + [anon_sym_short] = ACTIONS(1971), + [anon_sym_long] = ACTIONS(1971), + [anon_sym_const] = ACTIONS(1971), + [anon_sym_volatile] = ACTIONS(1971), + [anon_sym_ctypedef] = ACTIONS(1971), + [anon_sym_struct] = ACTIONS(1971), + [anon_sym_union] = ACTIONS(1971), + [anon_sym_enum] = ACTIONS(1971), + [anon_sym_cppclass] = ACTIONS(1971), + [anon_sym_fused] = ACTIONS(1971), + [anon_sym_public] = ACTIONS(1971), + [anon_sym_packed] = ACTIONS(1971), + [anon_sym_inline] = ACTIONS(1971), + [anon_sym_readonly] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1971), + [sym__dedent] = ACTIONS(1973), + [sym_string_start] = ACTIONS(1973), }, [625] = { - [sym_identifier] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_import] = ACTIONS(2009), - [anon_sym_cimport] = ACTIONS(2009), - [anon_sym_from] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_print] = ACTIONS(2009), - [anon_sym_assert] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_del] = ACTIONS(2009), - [anon_sym_raise] = ACTIONS(2009), - [anon_sym_pass] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_async] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_try] = ACTIONS(2009), - [anon_sym_with] = ACTIONS(2009), - [anon_sym_def] = ACTIONS(2009), - [anon_sym_global] = ACTIONS(2009), - [anon_sym_nonlocal] = ACTIONS(2009), - [anon_sym_exec] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2009), - [anon_sym_class] = ACTIONS(2009), - [anon_sym_LBRACK] = ACTIONS(2011), - [anon_sym_AT] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_not] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_lambda] = ACTIONS(2009), - [anon_sym_yield] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2011), - [anon_sym_None] = ACTIONS(2009), - [sym_integer] = ACTIONS(2009), - [sym_float] = ACTIONS(2011), - [anon_sym_await] = ACTIONS(2009), - [anon_sym_api] = ACTIONS(2009), - [sym_true] = ACTIONS(2009), - [sym_false] = ACTIONS(2009), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2009), - [anon_sym_include] = ACTIONS(2009), - [anon_sym_DEF] = ACTIONS(2009), - [anon_sym_cdef] = ACTIONS(2009), - [anon_sym_cpdef] = ACTIONS(2009), - [anon_sym_int] = ACTIONS(2009), - [anon_sym_double] = ACTIONS(2009), - [anon_sym_complex] = ACTIONS(2009), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_signed] = ACTIONS(2009), - [anon_sym_unsigned] = ACTIONS(2009), - [anon_sym_char] = ACTIONS(2009), - [anon_sym_short] = ACTIONS(2009), - [anon_sym_long] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [anon_sym_volatile] = ACTIONS(2009), - [anon_sym_ctypedef] = ACTIONS(2009), - [anon_sym_struct] = ACTIONS(2009), - [anon_sym_union] = ACTIONS(2009), - [anon_sym_enum] = ACTIONS(2009), - [anon_sym_cppclass] = ACTIONS(2009), - [anon_sym_fused] = ACTIONS(2009), - [anon_sym_public] = ACTIONS(2009), - [anon_sym_packed] = ACTIONS(2009), - [anon_sym_inline] = ACTIONS(2009), - [anon_sym_readonly] = ACTIONS(2009), - [anon_sym_sizeof] = ACTIONS(2009), - [sym__dedent] = ACTIONS(2011), - [sym_string_start] = ACTIONS(2011), + [sym_identifier] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1977), + [anon_sym_import] = ACTIONS(1975), + [anon_sym_cimport] = ACTIONS(1975), + [anon_sym_from] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(1977), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_print] = ACTIONS(1975), + [anon_sym_assert] = ACTIONS(1975), + [anon_sym_return] = ACTIONS(1975), + [anon_sym_del] = ACTIONS(1975), + [anon_sym_raise] = ACTIONS(1975), + [anon_sym_pass] = ACTIONS(1975), + [anon_sym_break] = ACTIONS(1975), + [anon_sym_continue] = ACTIONS(1975), + [anon_sym_if] = ACTIONS(1975), + [anon_sym_match] = ACTIONS(1975), + [anon_sym_async] = ACTIONS(1975), + [anon_sym_for] = ACTIONS(1975), + [anon_sym_while] = ACTIONS(1975), + [anon_sym_try] = ACTIONS(1975), + [anon_sym_with] = ACTIONS(1975), + [anon_sym_def] = ACTIONS(1975), + [anon_sym_global] = ACTIONS(1975), + [anon_sym_nonlocal] = ACTIONS(1975), + [anon_sym_exec] = ACTIONS(1975), + [anon_sym_type] = ACTIONS(1975), + [anon_sym_class] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(1977), + [anon_sym_AT] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_not] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1977), + [anon_sym_LT] = ACTIONS(1977), + [anon_sym_lambda] = ACTIONS(1975), + [anon_sym_yield] = ACTIONS(1975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1977), + [anon_sym_None] = ACTIONS(1975), + [sym_integer] = ACTIONS(1975), + [sym_float] = ACTIONS(1977), + [anon_sym_await] = ACTIONS(1975), + [anon_sym_api] = ACTIONS(1975), + [sym_true] = ACTIONS(1975), + [sym_false] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1975), + [anon_sym_include] = ACTIONS(1975), + [anon_sym_DEF] = ACTIONS(1975), + [anon_sym_IF] = ACTIONS(1975), + [anon_sym_cdef] = ACTIONS(1975), + [anon_sym_cpdef] = ACTIONS(1975), + [anon_sym_int] = ACTIONS(1975), + [anon_sym_double] = ACTIONS(1975), + [anon_sym_complex] = ACTIONS(1975), + [anon_sym_new] = ACTIONS(1975), + [anon_sym_signed] = ACTIONS(1975), + [anon_sym_unsigned] = ACTIONS(1975), + [anon_sym_char] = ACTIONS(1975), + [anon_sym_short] = ACTIONS(1975), + [anon_sym_long] = ACTIONS(1975), + [anon_sym_const] = ACTIONS(1975), + [anon_sym_volatile] = ACTIONS(1975), + [anon_sym_ctypedef] = ACTIONS(1975), + [anon_sym_struct] = ACTIONS(1975), + [anon_sym_union] = ACTIONS(1975), + [anon_sym_enum] = ACTIONS(1975), + [anon_sym_cppclass] = ACTIONS(1975), + [anon_sym_fused] = ACTIONS(1975), + [anon_sym_public] = ACTIONS(1975), + [anon_sym_packed] = ACTIONS(1975), + [anon_sym_inline] = ACTIONS(1975), + [anon_sym_readonly] = ACTIONS(1975), + [anon_sym_sizeof] = ACTIONS(1975), + [sym__dedent] = ACTIONS(1977), + [sym_string_start] = ACTIONS(1977), }, [626] = { - [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_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), + [sym_identifier] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1981), + [anon_sym_import] = ACTIONS(1979), + [anon_sym_cimport] = ACTIONS(1979), + [anon_sym_from] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_STAR] = ACTIONS(1981), + [anon_sym_print] = ACTIONS(1979), + [anon_sym_assert] = ACTIONS(1979), + [anon_sym_return] = ACTIONS(1979), + [anon_sym_del] = ACTIONS(1979), + [anon_sym_raise] = ACTIONS(1979), + [anon_sym_pass] = ACTIONS(1979), + [anon_sym_break] = ACTIONS(1979), + [anon_sym_continue] = ACTIONS(1979), + [anon_sym_if] = ACTIONS(1979), + [anon_sym_match] = ACTIONS(1979), + [anon_sym_async] = ACTIONS(1979), + [anon_sym_for] = ACTIONS(1979), + [anon_sym_while] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1979), + [anon_sym_with] = ACTIONS(1979), + [anon_sym_def] = ACTIONS(1979), + [anon_sym_global] = ACTIONS(1979), + [anon_sym_nonlocal] = ACTIONS(1979), + [anon_sym_exec] = ACTIONS(1979), + [anon_sym_type] = ACTIONS(1979), + [anon_sym_class] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_AT] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_LT] = ACTIONS(1981), + [anon_sym_lambda] = ACTIONS(1979), + [anon_sym_yield] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_None] = ACTIONS(1979), + [sym_integer] = ACTIONS(1979), + [sym_float] = ACTIONS(1981), + [anon_sym_await] = ACTIONS(1979), + [anon_sym_api] = ACTIONS(1979), + [sym_true] = ACTIONS(1979), + [sym_false] = ACTIONS(1979), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1979), + [anon_sym_include] = ACTIONS(1979), + [anon_sym_DEF] = ACTIONS(1979), + [anon_sym_IF] = ACTIONS(1979), + [anon_sym_cdef] = ACTIONS(1979), + [anon_sym_cpdef] = ACTIONS(1979), + [anon_sym_int] = ACTIONS(1979), + [anon_sym_double] = ACTIONS(1979), + [anon_sym_complex] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_signed] = ACTIONS(1979), + [anon_sym_unsigned] = ACTIONS(1979), + [anon_sym_char] = ACTIONS(1979), + [anon_sym_short] = ACTIONS(1979), + [anon_sym_long] = ACTIONS(1979), + [anon_sym_const] = ACTIONS(1979), + [anon_sym_volatile] = ACTIONS(1979), + [anon_sym_ctypedef] = ACTIONS(1979), + [anon_sym_struct] = ACTIONS(1979), + [anon_sym_union] = ACTIONS(1979), + [anon_sym_enum] = ACTIONS(1979), + [anon_sym_cppclass] = ACTIONS(1979), + [anon_sym_fused] = ACTIONS(1979), + [anon_sym_public] = ACTIONS(1979), + [anon_sym_packed] = ACTIONS(1979), + [anon_sym_inline] = ACTIONS(1979), + [anon_sym_readonly] = ACTIONS(1979), + [anon_sym_sizeof] = ACTIONS(1979), + [sym__dedent] = ACTIONS(1981), + [sym_string_start] = ACTIONS(1981), }, [627] = { - [sym_identifier] = ACTIONS(2013), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_import] = ACTIONS(2013), - [anon_sym_cimport] = ACTIONS(2013), - [anon_sym_from] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_print] = ACTIONS(2013), - [anon_sym_assert] = ACTIONS(2013), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_del] = ACTIONS(2013), - [anon_sym_raise] = ACTIONS(2013), - [anon_sym_pass] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_match] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_with] = ACTIONS(2013), - [anon_sym_def] = ACTIONS(2013), - [anon_sym_global] = ACTIONS(2013), - [anon_sym_nonlocal] = ACTIONS(2013), - [anon_sym_exec] = ACTIONS(2013), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_class] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_AT] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_not] = ACTIONS(2013), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_lambda] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2015), - [anon_sym_None] = ACTIONS(2013), - [sym_integer] = ACTIONS(2013), - [sym_float] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(2013), - [anon_sym_api] = ACTIONS(2013), - [sym_true] = ACTIONS(2013), - [sym_false] = ACTIONS(2013), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2013), - [anon_sym_include] = ACTIONS(2013), - [anon_sym_DEF] = ACTIONS(2013), - [anon_sym_cdef] = ACTIONS(2013), - [anon_sym_cpdef] = ACTIONS(2013), - [anon_sym_int] = ACTIONS(2013), - [anon_sym_double] = ACTIONS(2013), - [anon_sym_complex] = ACTIONS(2013), - [anon_sym_new] = ACTIONS(2013), - [anon_sym_signed] = ACTIONS(2013), - [anon_sym_unsigned] = ACTIONS(2013), - [anon_sym_char] = ACTIONS(2013), - [anon_sym_short] = ACTIONS(2013), - [anon_sym_long] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_volatile] = ACTIONS(2013), - [anon_sym_ctypedef] = ACTIONS(2013), - [anon_sym_struct] = ACTIONS(2013), - [anon_sym_union] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_cppclass] = ACTIONS(2013), - [anon_sym_fused] = ACTIONS(2013), - [anon_sym_public] = ACTIONS(2013), - [anon_sym_packed] = ACTIONS(2013), - [anon_sym_inline] = ACTIONS(2013), - [anon_sym_readonly] = ACTIONS(2013), - [anon_sym_sizeof] = ACTIONS(2013), - [sym__dedent] = ACTIONS(2015), - [sym_string_start] = ACTIONS(2015), + [sym_identifier] = ACTIONS(1983), + [anon_sym_SEMI] = ACTIONS(1985), + [anon_sym_import] = ACTIONS(1983), + [anon_sym_cimport] = ACTIONS(1983), + [anon_sym_from] = ACTIONS(1983), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_STAR] = ACTIONS(1985), + [anon_sym_print] = ACTIONS(1983), + [anon_sym_assert] = ACTIONS(1983), + [anon_sym_return] = ACTIONS(1983), + [anon_sym_del] = ACTIONS(1983), + [anon_sym_raise] = ACTIONS(1983), + [anon_sym_pass] = ACTIONS(1983), + [anon_sym_break] = ACTIONS(1983), + [anon_sym_continue] = ACTIONS(1983), + [anon_sym_if] = ACTIONS(1983), + [anon_sym_match] = ACTIONS(1983), + [anon_sym_async] = ACTIONS(1983), + [anon_sym_for] = ACTIONS(1983), + [anon_sym_while] = ACTIONS(1983), + [anon_sym_try] = ACTIONS(1983), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_def] = ACTIONS(1983), + [anon_sym_global] = ACTIONS(1983), + [anon_sym_nonlocal] = ACTIONS(1983), + [anon_sym_exec] = ACTIONS(1983), + [anon_sym_type] = ACTIONS(1983), + [anon_sym_class] = ACTIONS(1983), + [anon_sym_LBRACK] = ACTIONS(1985), + [anon_sym_AT] = ACTIONS(1985), + [anon_sym_DASH] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1985), + [anon_sym_not] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_TILDE] = ACTIONS(1985), + [anon_sym_LT] = ACTIONS(1985), + [anon_sym_lambda] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1983), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1985), + [anon_sym_None] = ACTIONS(1983), + [sym_integer] = ACTIONS(1983), + [sym_float] = ACTIONS(1985), + [anon_sym_await] = ACTIONS(1983), + [anon_sym_api] = ACTIONS(1983), + [sym_true] = ACTIONS(1983), + [sym_false] = ACTIONS(1983), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1983), + [anon_sym_include] = ACTIONS(1983), + [anon_sym_DEF] = ACTIONS(1983), + [anon_sym_IF] = ACTIONS(1983), + [anon_sym_cdef] = ACTIONS(1983), + [anon_sym_cpdef] = ACTIONS(1983), + [anon_sym_int] = ACTIONS(1983), + [anon_sym_double] = ACTIONS(1983), + [anon_sym_complex] = ACTIONS(1983), + [anon_sym_new] = ACTIONS(1983), + [anon_sym_signed] = ACTIONS(1983), + [anon_sym_unsigned] = ACTIONS(1983), + [anon_sym_char] = ACTIONS(1983), + [anon_sym_short] = ACTIONS(1983), + [anon_sym_long] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1983), + [anon_sym_volatile] = ACTIONS(1983), + [anon_sym_ctypedef] = ACTIONS(1983), + [anon_sym_struct] = ACTIONS(1983), + [anon_sym_union] = ACTIONS(1983), + [anon_sym_enum] = ACTIONS(1983), + [anon_sym_cppclass] = ACTIONS(1983), + [anon_sym_fused] = ACTIONS(1983), + [anon_sym_public] = ACTIONS(1983), + [anon_sym_packed] = ACTIONS(1983), + [anon_sym_inline] = ACTIONS(1983), + [anon_sym_readonly] = ACTIONS(1983), + [anon_sym_sizeof] = ACTIONS(1983), + [sym__dedent] = ACTIONS(1985), + [sym_string_start] = ACTIONS(1985), }, [628] = { - [sym_identifier] = ACTIONS(2017), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_import] = ACTIONS(2017), - [anon_sym_cimport] = ACTIONS(2017), - [anon_sym_from] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_print] = ACTIONS(2017), - [anon_sym_assert] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_del] = ACTIONS(2017), - [anon_sym_raise] = ACTIONS(2017), - [anon_sym_pass] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_with] = ACTIONS(2017), - [anon_sym_def] = ACTIONS(2017), - [anon_sym_global] = ACTIONS(2017), - [anon_sym_nonlocal] = ACTIONS(2017), - [anon_sym_exec] = ACTIONS(2017), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_class] = ACTIONS(2017), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_AT] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_not] = ACTIONS(2017), - [anon_sym_AMP] = ACTIONS(2019), - [anon_sym_TILDE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2019), - [anon_sym_lambda] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2019), - [anon_sym_None] = ACTIONS(2017), - [sym_integer] = ACTIONS(2017), - [sym_float] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_api] = ACTIONS(2017), - [sym_true] = ACTIONS(2017), - [sym_false] = ACTIONS(2017), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2017), - [anon_sym_include] = ACTIONS(2017), - [anon_sym_DEF] = ACTIONS(2017), - [anon_sym_cdef] = ACTIONS(2017), - [anon_sym_cpdef] = ACTIONS(2017), - [anon_sym_int] = ACTIONS(2017), - [anon_sym_double] = ACTIONS(2017), - [anon_sym_complex] = ACTIONS(2017), - [anon_sym_new] = ACTIONS(2017), - [anon_sym_signed] = ACTIONS(2017), - [anon_sym_unsigned] = ACTIONS(2017), - [anon_sym_char] = ACTIONS(2017), - [anon_sym_short] = ACTIONS(2017), - [anon_sym_long] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_volatile] = ACTIONS(2017), - [anon_sym_ctypedef] = ACTIONS(2017), - [anon_sym_struct] = ACTIONS(2017), - [anon_sym_union] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_cppclass] = ACTIONS(2017), - [anon_sym_fused] = ACTIONS(2017), - [anon_sym_public] = ACTIONS(2017), - [anon_sym_packed] = ACTIONS(2017), - [anon_sym_inline] = ACTIONS(2017), - [anon_sym_readonly] = ACTIONS(2017), - [anon_sym_sizeof] = ACTIONS(2017), - [sym__dedent] = ACTIONS(2019), - [sym_string_start] = ACTIONS(2019), + [sym_identifier] = ACTIONS(1987), + [anon_sym_SEMI] = ACTIONS(1989), + [anon_sym_import] = ACTIONS(1987), + [anon_sym_cimport] = ACTIONS(1987), + [anon_sym_from] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1989), + [anon_sym_print] = ACTIONS(1987), + [anon_sym_assert] = ACTIONS(1987), + [anon_sym_return] = ACTIONS(1987), + [anon_sym_del] = ACTIONS(1987), + [anon_sym_raise] = ACTIONS(1987), + [anon_sym_pass] = ACTIONS(1987), + [anon_sym_break] = ACTIONS(1987), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1987), + [anon_sym_while] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1987), + [anon_sym_with] = ACTIONS(1987), + [anon_sym_def] = ACTIONS(1987), + [anon_sym_global] = ACTIONS(1987), + [anon_sym_nonlocal] = ACTIONS(1987), + [anon_sym_exec] = ACTIONS(1987), + [anon_sym_type] = ACTIONS(1987), + [anon_sym_class] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_AT] = ACTIONS(1989), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_not] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1989), + [anon_sym_TILDE] = ACTIONS(1989), + [anon_sym_LT] = ACTIONS(1989), + [anon_sym_lambda] = ACTIONS(1987), + [anon_sym_yield] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), + [anon_sym_None] = ACTIONS(1987), + [sym_integer] = ACTIONS(1987), + [sym_float] = ACTIONS(1989), + [anon_sym_await] = ACTIONS(1987), + [anon_sym_api] = ACTIONS(1987), + [sym_true] = ACTIONS(1987), + [sym_false] = ACTIONS(1987), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1987), + [anon_sym_include] = ACTIONS(1987), + [anon_sym_DEF] = ACTIONS(1987), + [anon_sym_IF] = ACTIONS(1987), + [anon_sym_cdef] = ACTIONS(1987), + [anon_sym_cpdef] = ACTIONS(1987), + [anon_sym_int] = ACTIONS(1987), + [anon_sym_double] = ACTIONS(1987), + [anon_sym_complex] = ACTIONS(1987), + [anon_sym_new] = ACTIONS(1987), + [anon_sym_signed] = ACTIONS(1987), + [anon_sym_unsigned] = ACTIONS(1987), + [anon_sym_char] = ACTIONS(1987), + [anon_sym_short] = ACTIONS(1987), + [anon_sym_long] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1987), + [anon_sym_volatile] = ACTIONS(1987), + [anon_sym_ctypedef] = ACTIONS(1987), + [anon_sym_struct] = ACTIONS(1987), + [anon_sym_union] = ACTIONS(1987), + [anon_sym_enum] = ACTIONS(1987), + [anon_sym_cppclass] = ACTIONS(1987), + [anon_sym_fused] = ACTIONS(1987), + [anon_sym_public] = ACTIONS(1987), + [anon_sym_packed] = ACTIONS(1987), + [anon_sym_inline] = ACTIONS(1987), + [anon_sym_readonly] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1987), + [sym__dedent] = ACTIONS(1989), + [sym_string_start] = ACTIONS(1989), }, [629] = { - [sym_identifier] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_import] = ACTIONS(2021), - [anon_sym_cimport] = ACTIONS(2021), - [anon_sym_from] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_print] = ACTIONS(2021), - [anon_sym_assert] = ACTIONS(2021), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_del] = ACTIONS(2021), - [anon_sym_raise] = ACTIONS(2021), - [anon_sym_pass] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), - [anon_sym_match] = ACTIONS(2021), - [anon_sym_async] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2021), - [anon_sym_with] = ACTIONS(2021), - [anon_sym_def] = ACTIONS(2021), - [anon_sym_global] = ACTIONS(2021), - [anon_sym_nonlocal] = ACTIONS(2021), - [anon_sym_exec] = ACTIONS(2021), - [anon_sym_type] = ACTIONS(2021), - [anon_sym_class] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_AT] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_PLUS] = ACTIONS(2023), - [anon_sym_not] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2023), - [anon_sym_TILDE] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(2023), - [anon_sym_lambda] = ACTIONS(2021), - [anon_sym_yield] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2023), - [anon_sym_None] = ACTIONS(2021), - [sym_integer] = ACTIONS(2021), - [sym_float] = ACTIONS(2023), - [anon_sym_await] = ACTIONS(2021), - [anon_sym_api] = ACTIONS(2021), - [sym_true] = ACTIONS(2021), - [sym_false] = ACTIONS(2021), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2021), - [anon_sym_include] = ACTIONS(2021), - [anon_sym_DEF] = ACTIONS(2021), - [anon_sym_cdef] = ACTIONS(2021), - [anon_sym_cpdef] = ACTIONS(2021), - [anon_sym_int] = ACTIONS(2021), - [anon_sym_double] = ACTIONS(2021), - [anon_sym_complex] = ACTIONS(2021), - [anon_sym_new] = ACTIONS(2021), - [anon_sym_signed] = ACTIONS(2021), - [anon_sym_unsigned] = ACTIONS(2021), - [anon_sym_char] = ACTIONS(2021), - [anon_sym_short] = ACTIONS(2021), - [anon_sym_long] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [anon_sym_volatile] = ACTIONS(2021), - [anon_sym_ctypedef] = ACTIONS(2021), - [anon_sym_struct] = ACTIONS(2021), - [anon_sym_union] = ACTIONS(2021), - [anon_sym_enum] = ACTIONS(2021), - [anon_sym_cppclass] = ACTIONS(2021), - [anon_sym_fused] = ACTIONS(2021), - [anon_sym_public] = ACTIONS(2021), - [anon_sym_packed] = ACTIONS(2021), - [anon_sym_inline] = ACTIONS(2021), - [anon_sym_readonly] = ACTIONS(2021), - [anon_sym_sizeof] = ACTIONS(2021), - [sym__dedent] = ACTIONS(2023), - [sym_string_start] = ACTIONS(2023), + [sym_identifier] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1993), + [anon_sym_import] = ACTIONS(1991), + [anon_sym_cimport] = ACTIONS(1991), + [anon_sym_from] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_print] = ACTIONS(1991), + [anon_sym_assert] = ACTIONS(1991), + [anon_sym_return] = ACTIONS(1991), + [anon_sym_del] = ACTIONS(1991), + [anon_sym_raise] = ACTIONS(1991), + [anon_sym_pass] = ACTIONS(1991), + [anon_sym_break] = ACTIONS(1991), + [anon_sym_continue] = ACTIONS(1991), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_match] = ACTIONS(1991), + [anon_sym_async] = ACTIONS(1991), + [anon_sym_for] = ACTIONS(1991), + [anon_sym_while] = ACTIONS(1991), + [anon_sym_try] = ACTIONS(1991), + [anon_sym_with] = ACTIONS(1991), + [anon_sym_def] = ACTIONS(1991), + [anon_sym_global] = ACTIONS(1991), + [anon_sym_nonlocal] = ACTIONS(1991), + [anon_sym_exec] = ACTIONS(1991), + [anon_sym_type] = ACTIONS(1991), + [anon_sym_class] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_AT] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_not] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_LT] = ACTIONS(1993), + [anon_sym_lambda] = ACTIONS(1991), + [anon_sym_yield] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1993), + [anon_sym_None] = ACTIONS(1991), + [sym_integer] = ACTIONS(1991), + [sym_float] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(1991), + [anon_sym_api] = ACTIONS(1991), + [sym_true] = ACTIONS(1991), + [sym_false] = ACTIONS(1991), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1991), + [anon_sym_include] = ACTIONS(1991), + [anon_sym_DEF] = ACTIONS(1991), + [anon_sym_IF] = ACTIONS(1991), + [anon_sym_cdef] = ACTIONS(1991), + [anon_sym_cpdef] = ACTIONS(1991), + [anon_sym_int] = ACTIONS(1991), + [anon_sym_double] = ACTIONS(1991), + [anon_sym_complex] = ACTIONS(1991), + [anon_sym_new] = ACTIONS(1991), + [anon_sym_signed] = ACTIONS(1991), + [anon_sym_unsigned] = ACTIONS(1991), + [anon_sym_char] = ACTIONS(1991), + [anon_sym_short] = ACTIONS(1991), + [anon_sym_long] = ACTIONS(1991), + [anon_sym_const] = ACTIONS(1991), + [anon_sym_volatile] = ACTIONS(1991), + [anon_sym_ctypedef] = ACTIONS(1991), + [anon_sym_struct] = ACTIONS(1991), + [anon_sym_union] = ACTIONS(1991), + [anon_sym_enum] = ACTIONS(1991), + [anon_sym_cppclass] = ACTIONS(1991), + [anon_sym_fused] = ACTIONS(1991), + [anon_sym_public] = ACTIONS(1991), + [anon_sym_packed] = ACTIONS(1991), + [anon_sym_inline] = ACTIONS(1991), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_sizeof] = ACTIONS(1991), + [sym__dedent] = ACTIONS(1993), + [sym_string_start] = ACTIONS(1993), }, [630] = { - [sym_identifier] = ACTIONS(2025), - [anon_sym_SEMI] = ACTIONS(2027), - [anon_sym_import] = ACTIONS(2025), - [anon_sym_cimport] = ACTIONS(2025), - [anon_sym_from] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_print] = ACTIONS(2025), - [anon_sym_assert] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_del] = ACTIONS(2025), - [anon_sym_raise] = ACTIONS(2025), - [anon_sym_pass] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_async] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_with] = ACTIONS(2025), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_global] = ACTIONS(2025), - [anon_sym_nonlocal] = ACTIONS(2025), - [anon_sym_exec] = ACTIONS(2025), - [anon_sym_type] = ACTIONS(2025), - [anon_sym_class] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2027), - [anon_sym_AT] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_not] = ACTIONS(2025), - [anon_sym_AMP] = ACTIONS(2027), - [anon_sym_TILDE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(2027), - [anon_sym_lambda] = ACTIONS(2025), - [anon_sym_yield] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2027), - [anon_sym_None] = ACTIONS(2025), - [sym_integer] = ACTIONS(2025), - [sym_float] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(2025), - [anon_sym_api] = ACTIONS(2025), - [sym_true] = ACTIONS(2025), - [sym_false] = ACTIONS(2025), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2025), - [anon_sym_include] = ACTIONS(2025), - [anon_sym_DEF] = ACTIONS(2025), - [anon_sym_cdef] = ACTIONS(2025), - [anon_sym_cpdef] = ACTIONS(2025), - [anon_sym_int] = ACTIONS(2025), - [anon_sym_double] = ACTIONS(2025), - [anon_sym_complex] = ACTIONS(2025), - [anon_sym_new] = ACTIONS(2025), - [anon_sym_signed] = ACTIONS(2025), - [anon_sym_unsigned] = ACTIONS(2025), - [anon_sym_char] = ACTIONS(2025), - [anon_sym_short] = ACTIONS(2025), - [anon_sym_long] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [anon_sym_volatile] = ACTIONS(2025), - [anon_sym_ctypedef] = ACTIONS(2025), - [anon_sym_struct] = ACTIONS(2025), - [anon_sym_union] = ACTIONS(2025), - [anon_sym_enum] = ACTIONS(2025), - [anon_sym_cppclass] = ACTIONS(2025), - [anon_sym_fused] = ACTIONS(2025), - [anon_sym_public] = ACTIONS(2025), - [anon_sym_packed] = ACTIONS(2025), - [anon_sym_inline] = ACTIONS(2025), - [anon_sym_readonly] = ACTIONS(2025), - [anon_sym_sizeof] = ACTIONS(2025), - [sym__dedent] = ACTIONS(2027), - [sym_string_start] = ACTIONS(2027), + [sym_identifier] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1997), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_cimport] = ACTIONS(1995), + [anon_sym_from] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_STAR] = ACTIONS(1997), + [anon_sym_print] = ACTIONS(1995), + [anon_sym_assert] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_del] = ACTIONS(1995), + [anon_sym_raise] = ACTIONS(1995), + [anon_sym_pass] = ACTIONS(1995), + [anon_sym_break] = ACTIONS(1995), + [anon_sym_continue] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_match] = ACTIONS(1995), + [anon_sym_async] = ACTIONS(1995), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_with] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1995), + [anon_sym_global] = ACTIONS(1995), + [anon_sym_nonlocal] = ACTIONS(1995), + [anon_sym_exec] = ACTIONS(1995), + [anon_sym_type] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1997), + [anon_sym_AT] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_not] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1997), + [anon_sym_lambda] = ACTIONS(1995), + [anon_sym_yield] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1997), + [anon_sym_None] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(1995), + [anon_sym_api] = ACTIONS(1995), + [sym_true] = ACTIONS(1995), + [sym_false] = ACTIONS(1995), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1995), + [anon_sym_include] = ACTIONS(1995), + [anon_sym_DEF] = ACTIONS(1995), + [anon_sym_IF] = ACTIONS(1995), + [anon_sym_cdef] = ACTIONS(1995), + [anon_sym_cpdef] = ACTIONS(1995), + [anon_sym_int] = ACTIONS(1995), + [anon_sym_double] = ACTIONS(1995), + [anon_sym_complex] = ACTIONS(1995), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_signed] = ACTIONS(1995), + [anon_sym_unsigned] = ACTIONS(1995), + [anon_sym_char] = ACTIONS(1995), + [anon_sym_short] = ACTIONS(1995), + [anon_sym_long] = ACTIONS(1995), + [anon_sym_const] = ACTIONS(1995), + [anon_sym_volatile] = ACTIONS(1995), + [anon_sym_ctypedef] = ACTIONS(1995), + [anon_sym_struct] = ACTIONS(1995), + [anon_sym_union] = ACTIONS(1995), + [anon_sym_enum] = ACTIONS(1995), + [anon_sym_cppclass] = ACTIONS(1995), + [anon_sym_fused] = ACTIONS(1995), + [anon_sym_public] = ACTIONS(1995), + [anon_sym_packed] = ACTIONS(1995), + [anon_sym_inline] = ACTIONS(1995), + [anon_sym_readonly] = ACTIONS(1995), + [anon_sym_sizeof] = ACTIONS(1995), + [sym__dedent] = ACTIONS(1997), + [sym_string_start] = ACTIONS(1997), }, [631] = { - [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(2031), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_print] = ACTIONS(2029), - [anon_sym_assert] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_del] = ACTIONS(2029), - [anon_sym_raise] = ACTIONS(2029), - [anon_sym_pass] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_async] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_try] = ACTIONS(2029), - [anon_sym_with] = ACTIONS(2029), - [anon_sym_def] = ACTIONS(2029), - [anon_sym_global] = ACTIONS(2029), - [anon_sym_nonlocal] = ACTIONS(2029), - [anon_sym_exec] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_class] = ACTIONS(2029), - [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(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(2031), - [anon_sym_None] = ACTIONS(2029), - [sym_integer] = ACTIONS(2029), - [sym_float] = ACTIONS(2031), - [anon_sym_await] = ACTIONS(2029), - [anon_sym_api] = ACTIONS(2029), - [sym_true] = ACTIONS(2029), - [sym_false] = ACTIONS(2029), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2029), - [anon_sym_include] = ACTIONS(2029), - [anon_sym_DEF] = ACTIONS(2029), - [anon_sym_cdef] = ACTIONS(2029), - [anon_sym_cpdef] = ACTIONS(2029), - [anon_sym_int] = ACTIONS(2029), - [anon_sym_double] = ACTIONS(2029), - [anon_sym_complex] = ACTIONS(2029), - [anon_sym_new] = ACTIONS(2029), - [anon_sym_signed] = ACTIONS(2029), - [anon_sym_unsigned] = ACTIONS(2029), - [anon_sym_char] = ACTIONS(2029), - [anon_sym_short] = ACTIONS(2029), - [anon_sym_long] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_volatile] = ACTIONS(2029), - [anon_sym_ctypedef] = ACTIONS(2029), - [anon_sym_struct] = ACTIONS(2029), - [anon_sym_union] = ACTIONS(2029), - [anon_sym_enum] = ACTIONS(2029), - [anon_sym_cppclass] = ACTIONS(2029), - [anon_sym_fused] = ACTIONS(2029), - [anon_sym_public] = ACTIONS(2029), - [anon_sym_packed] = ACTIONS(2029), - [anon_sym_inline] = ACTIONS(2029), - [anon_sym_readonly] = ACTIONS(2029), - [anon_sym_sizeof] = ACTIONS(2029), - [sym__dedent] = ACTIONS(2031), - [sym_string_start] = ACTIONS(2031), + [sym_identifier] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_import] = ACTIONS(1999), + [anon_sym_cimport] = ACTIONS(1999), + [anon_sym_from] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_print] = ACTIONS(1999), + [anon_sym_assert] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_del] = ACTIONS(1999), + [anon_sym_raise] = ACTIONS(1999), + [anon_sym_pass] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_async] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_with] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_global] = ACTIONS(1999), + [anon_sym_nonlocal] = ACTIONS(1999), + [anon_sym_exec] = ACTIONS(1999), + [anon_sym_type] = ACTIONS(1999), + [anon_sym_class] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(2001), + [anon_sym_AT] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_not] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_TILDE] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_lambda] = ACTIONS(1999), + [anon_sym_yield] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2001), + [anon_sym_None] = ACTIONS(1999), + [sym_integer] = ACTIONS(1999), + [sym_float] = ACTIONS(2001), + [anon_sym_await] = ACTIONS(1999), + [anon_sym_api] = ACTIONS(1999), + [sym_true] = ACTIONS(1999), + [sym_false] = ACTIONS(1999), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1999), + [anon_sym_include] = ACTIONS(1999), + [anon_sym_DEF] = ACTIONS(1999), + [anon_sym_IF] = ACTIONS(1999), + [anon_sym_cdef] = ACTIONS(1999), + [anon_sym_cpdef] = ACTIONS(1999), + [anon_sym_int] = ACTIONS(1999), + [anon_sym_double] = ACTIONS(1999), + [anon_sym_complex] = ACTIONS(1999), + [anon_sym_new] = ACTIONS(1999), + [anon_sym_signed] = ACTIONS(1999), + [anon_sym_unsigned] = ACTIONS(1999), + [anon_sym_char] = ACTIONS(1999), + [anon_sym_short] = ACTIONS(1999), + [anon_sym_long] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [anon_sym_volatile] = ACTIONS(1999), + [anon_sym_ctypedef] = ACTIONS(1999), + [anon_sym_struct] = ACTIONS(1999), + [anon_sym_union] = ACTIONS(1999), + [anon_sym_enum] = ACTIONS(1999), + [anon_sym_cppclass] = ACTIONS(1999), + [anon_sym_fused] = ACTIONS(1999), + [anon_sym_public] = ACTIONS(1999), + [anon_sym_packed] = ACTIONS(1999), + [anon_sym_inline] = ACTIONS(1999), + [anon_sym_readonly] = ACTIONS(1999), + [anon_sym_sizeof] = ACTIONS(1999), + [sym__dedent] = ACTIONS(2001), + [sym_string_start] = ACTIONS(2001), }, [632] = { - [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), + [sym_identifier] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2005), + [anon_sym_import] = ACTIONS(2003), + [anon_sym_cimport] = ACTIONS(2003), + [anon_sym_from] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(2005), + [anon_sym_print] = ACTIONS(2003), + [anon_sym_assert] = ACTIONS(2003), + [anon_sym_return] = ACTIONS(2003), + [anon_sym_del] = ACTIONS(2003), + [anon_sym_raise] = ACTIONS(2003), + [anon_sym_pass] = ACTIONS(2003), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2003), + [anon_sym_if] = ACTIONS(2003), + [anon_sym_match] = ACTIONS(2003), + [anon_sym_async] = ACTIONS(2003), + [anon_sym_for] = ACTIONS(2003), + [anon_sym_while] = ACTIONS(2003), + [anon_sym_try] = ACTIONS(2003), + [anon_sym_with] = ACTIONS(2003), + [anon_sym_def] = ACTIONS(2003), + [anon_sym_global] = ACTIONS(2003), + [anon_sym_nonlocal] = ACTIONS(2003), + [anon_sym_exec] = ACTIONS(2003), + [anon_sym_type] = ACTIONS(2003), + [anon_sym_class] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2005), + [anon_sym_AT] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2005), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_not] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_TILDE] = ACTIONS(2005), + [anon_sym_LT] = ACTIONS(2005), + [anon_sym_lambda] = ACTIONS(2003), + [anon_sym_yield] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2005), + [anon_sym_None] = ACTIONS(2003), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2005), + [anon_sym_await] = ACTIONS(2003), + [anon_sym_api] = ACTIONS(2003), + [sym_true] = ACTIONS(2003), + [sym_false] = ACTIONS(2003), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2003), + [anon_sym_include] = ACTIONS(2003), + [anon_sym_DEF] = ACTIONS(2003), + [anon_sym_IF] = ACTIONS(2003), + [anon_sym_cdef] = ACTIONS(2003), + [anon_sym_cpdef] = ACTIONS(2003), + [anon_sym_int] = ACTIONS(2003), + [anon_sym_double] = ACTIONS(2003), + [anon_sym_complex] = ACTIONS(2003), + [anon_sym_new] = ACTIONS(2003), + [anon_sym_signed] = ACTIONS(2003), + [anon_sym_unsigned] = ACTIONS(2003), + [anon_sym_char] = ACTIONS(2003), + [anon_sym_short] = ACTIONS(2003), + [anon_sym_long] = ACTIONS(2003), + [anon_sym_const] = ACTIONS(2003), + [anon_sym_volatile] = ACTIONS(2003), + [anon_sym_ctypedef] = ACTIONS(2003), + [anon_sym_struct] = ACTIONS(2003), + [anon_sym_union] = ACTIONS(2003), + [anon_sym_enum] = ACTIONS(2003), + [anon_sym_cppclass] = ACTIONS(2003), + [anon_sym_fused] = ACTIONS(2003), + [anon_sym_public] = ACTIONS(2003), + [anon_sym_packed] = ACTIONS(2003), + [anon_sym_inline] = ACTIONS(2003), + [anon_sym_readonly] = ACTIONS(2003), + [anon_sym_sizeof] = ACTIONS(2003), + [sym__dedent] = ACTIONS(2005), + [sym_string_start] = ACTIONS(2005), }, [633] = { - [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), + [sym_identifier] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_import] = ACTIONS(2007), + [anon_sym_cimport] = ACTIONS(2007), + [anon_sym_from] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_print] = ACTIONS(2007), + [anon_sym_assert] = ACTIONS(2007), + [anon_sym_return] = ACTIONS(2007), + [anon_sym_del] = ACTIONS(2007), + [anon_sym_raise] = ACTIONS(2007), + [anon_sym_pass] = ACTIONS(2007), + [anon_sym_break] = ACTIONS(2007), + [anon_sym_continue] = ACTIONS(2007), + [anon_sym_if] = ACTIONS(2007), + [anon_sym_match] = ACTIONS(2007), + [anon_sym_async] = ACTIONS(2007), + [anon_sym_for] = ACTIONS(2007), + [anon_sym_while] = ACTIONS(2007), + [anon_sym_try] = ACTIONS(2007), + [anon_sym_with] = ACTIONS(2007), + [anon_sym_def] = ACTIONS(2007), + [anon_sym_global] = ACTIONS(2007), + [anon_sym_nonlocal] = ACTIONS(2007), + [anon_sym_exec] = ACTIONS(2007), + [anon_sym_type] = ACTIONS(2007), + [anon_sym_class] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_AT] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_LBRACE] = ACTIONS(2009), + [anon_sym_PLUS] = ACTIONS(2009), + [anon_sym_not] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(2009), + [anon_sym_TILDE] = ACTIONS(2009), + [anon_sym_LT] = ACTIONS(2009), + [anon_sym_lambda] = ACTIONS(2007), + [anon_sym_yield] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2009), + [anon_sym_None] = ACTIONS(2007), + [sym_integer] = ACTIONS(2007), + [sym_float] = ACTIONS(2009), + [anon_sym_await] = ACTIONS(2007), + [anon_sym_api] = ACTIONS(2007), + [sym_true] = ACTIONS(2007), + [sym_false] = ACTIONS(2007), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2007), + [anon_sym_include] = ACTIONS(2007), + [anon_sym_DEF] = ACTIONS(2007), + [anon_sym_IF] = ACTIONS(2007), + [anon_sym_cdef] = ACTIONS(2007), + [anon_sym_cpdef] = ACTIONS(2007), + [anon_sym_int] = ACTIONS(2007), + [anon_sym_double] = ACTIONS(2007), + [anon_sym_complex] = ACTIONS(2007), + [anon_sym_new] = ACTIONS(2007), + [anon_sym_signed] = ACTIONS(2007), + [anon_sym_unsigned] = ACTIONS(2007), + [anon_sym_char] = ACTIONS(2007), + [anon_sym_short] = ACTIONS(2007), + [anon_sym_long] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2007), + [anon_sym_volatile] = ACTIONS(2007), + [anon_sym_ctypedef] = ACTIONS(2007), + [anon_sym_struct] = ACTIONS(2007), + [anon_sym_union] = ACTIONS(2007), + [anon_sym_enum] = ACTIONS(2007), + [anon_sym_cppclass] = ACTIONS(2007), + [anon_sym_fused] = ACTIONS(2007), + [anon_sym_public] = ACTIONS(2007), + [anon_sym_packed] = ACTIONS(2007), + [anon_sym_inline] = ACTIONS(2007), + [anon_sym_readonly] = ACTIONS(2007), + [anon_sym_sizeof] = ACTIONS(2007), + [sym__dedent] = ACTIONS(2009), + [sym_string_start] = ACTIONS(2009), }, [634] = { - [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), + [sym_identifier] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym_import] = ACTIONS(1967), + [anon_sym_cimport] = ACTIONS(1967), + [anon_sym_from] = ACTIONS(1967), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_print] = ACTIONS(1967), + [anon_sym_assert] = ACTIONS(1967), + [anon_sym_return] = ACTIONS(1967), + [anon_sym_del] = ACTIONS(1967), + [anon_sym_raise] = ACTIONS(1967), + [anon_sym_pass] = ACTIONS(1967), + [anon_sym_break] = ACTIONS(1967), + [anon_sym_continue] = ACTIONS(1967), + [anon_sym_if] = ACTIONS(1967), + [anon_sym_match] = ACTIONS(1967), + [anon_sym_async] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1967), + [anon_sym_while] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(1967), + [anon_sym_with] = ACTIONS(1967), + [anon_sym_def] = ACTIONS(1967), + [anon_sym_global] = ACTIONS(1967), + [anon_sym_nonlocal] = ACTIONS(1967), + [anon_sym_exec] = ACTIONS(1967), + [anon_sym_type] = ACTIONS(1967), + [anon_sym_class] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_AT] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_not] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1969), + [anon_sym_TILDE] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1969), + [anon_sym_lambda] = ACTIONS(1967), + [anon_sym_yield] = ACTIONS(1967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1969), + [anon_sym_None] = ACTIONS(1967), + [sym_integer] = ACTIONS(1967), + [sym_float] = ACTIONS(1969), + [anon_sym_await] = ACTIONS(1967), + [anon_sym_api] = ACTIONS(1967), + [sym_true] = ACTIONS(1967), + [sym_false] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1967), + [anon_sym_include] = ACTIONS(1967), + [anon_sym_DEF] = ACTIONS(1967), + [anon_sym_IF] = ACTIONS(1967), + [anon_sym_cdef] = ACTIONS(1967), + [anon_sym_cpdef] = ACTIONS(1967), + [anon_sym_int] = ACTIONS(1967), + [anon_sym_double] = ACTIONS(1967), + [anon_sym_complex] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1967), + [anon_sym_unsigned] = ACTIONS(1967), + [anon_sym_char] = ACTIONS(1967), + [anon_sym_short] = ACTIONS(1967), + [anon_sym_long] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_ctypedef] = ACTIONS(1967), + [anon_sym_struct] = ACTIONS(1967), + [anon_sym_union] = ACTIONS(1967), + [anon_sym_enum] = ACTIONS(1967), + [anon_sym_cppclass] = ACTIONS(1967), + [anon_sym_fused] = ACTIONS(1967), + [anon_sym_public] = ACTIONS(1967), + [anon_sym_packed] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym_readonly] = ACTIONS(1967), + [anon_sym_sizeof] = ACTIONS(1967), + [sym__dedent] = ACTIONS(1969), + [sym_string_start] = ACTIONS(1969), }, [635] = { - [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), + [sym_identifier] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_import] = ACTIONS(2011), + [anon_sym_cimport] = ACTIONS(2011), + [anon_sym_from] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_STAR] = ACTIONS(2013), + [anon_sym_print] = ACTIONS(2011), + [anon_sym_assert] = ACTIONS(2011), + [anon_sym_return] = ACTIONS(2011), + [anon_sym_del] = ACTIONS(2011), + [anon_sym_raise] = ACTIONS(2011), + [anon_sym_pass] = ACTIONS(2011), + [anon_sym_break] = ACTIONS(2011), + [anon_sym_continue] = ACTIONS(2011), + [anon_sym_if] = ACTIONS(2011), + [anon_sym_match] = ACTIONS(2011), + [anon_sym_async] = ACTIONS(2011), + [anon_sym_for] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2011), + [anon_sym_try] = ACTIONS(2011), + [anon_sym_with] = ACTIONS(2011), + [anon_sym_def] = ACTIONS(2011), + [anon_sym_global] = ACTIONS(2011), + [anon_sym_nonlocal] = ACTIONS(2011), + [anon_sym_exec] = ACTIONS(2011), + [anon_sym_type] = ACTIONS(2011), + [anon_sym_class] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_not] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2013), + [anon_sym_TILDE] = ACTIONS(2013), + [anon_sym_LT] = ACTIONS(2013), + [anon_sym_lambda] = ACTIONS(2011), + [anon_sym_yield] = ACTIONS(2011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2013), + [anon_sym_None] = ACTIONS(2011), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2013), + [anon_sym_await] = ACTIONS(2011), + [anon_sym_api] = ACTIONS(2011), + [sym_true] = ACTIONS(2011), + [sym_false] = ACTIONS(2011), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2011), + [anon_sym_include] = ACTIONS(2011), + [anon_sym_DEF] = ACTIONS(2011), + [anon_sym_IF] = ACTIONS(2011), + [anon_sym_cdef] = ACTIONS(2011), + [anon_sym_cpdef] = ACTIONS(2011), + [anon_sym_int] = ACTIONS(2011), + [anon_sym_double] = ACTIONS(2011), + [anon_sym_complex] = ACTIONS(2011), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_signed] = ACTIONS(2011), + [anon_sym_unsigned] = ACTIONS(2011), + [anon_sym_char] = ACTIONS(2011), + [anon_sym_short] = ACTIONS(2011), + [anon_sym_long] = ACTIONS(2011), + [anon_sym_const] = ACTIONS(2011), + [anon_sym_volatile] = ACTIONS(2011), + [anon_sym_ctypedef] = ACTIONS(2011), + [anon_sym_struct] = ACTIONS(2011), + [anon_sym_union] = ACTIONS(2011), + [anon_sym_enum] = ACTIONS(2011), + [anon_sym_cppclass] = ACTIONS(2011), + [anon_sym_fused] = ACTIONS(2011), + [anon_sym_public] = ACTIONS(2011), + [anon_sym_packed] = ACTIONS(2011), + [anon_sym_inline] = ACTIONS(2011), + [anon_sym_readonly] = ACTIONS(2011), + [anon_sym_sizeof] = ACTIONS(2011), + [sym__dedent] = ACTIONS(2013), + [sym_string_start] = ACTIONS(2013), }, [636] = { - [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), + [sym_identifier] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_import] = ACTIONS(2015), + [anon_sym_cimport] = ACTIONS(2015), + [anon_sym_from] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_STAR] = ACTIONS(2017), + [anon_sym_print] = ACTIONS(2015), + [anon_sym_assert] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2015), + [anon_sym_del] = ACTIONS(2015), + [anon_sym_raise] = ACTIONS(2015), + [anon_sym_pass] = ACTIONS(2015), + [anon_sym_break] = ACTIONS(2015), + [anon_sym_continue] = ACTIONS(2015), + [anon_sym_if] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2015), + [anon_sym_async] = ACTIONS(2015), + [anon_sym_for] = ACTIONS(2015), + [anon_sym_while] = ACTIONS(2015), + [anon_sym_try] = ACTIONS(2015), + [anon_sym_with] = ACTIONS(2015), + [anon_sym_def] = ACTIONS(2015), + [anon_sym_global] = ACTIONS(2015), + [anon_sym_nonlocal] = ACTIONS(2015), + [anon_sym_exec] = ACTIONS(2015), + [anon_sym_type] = ACTIONS(2015), + [anon_sym_class] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_AT] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2017), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_not] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2017), + [anon_sym_TILDE] = ACTIONS(2017), + [anon_sym_LT] = ACTIONS(2017), + [anon_sym_lambda] = ACTIONS(2015), + [anon_sym_yield] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2017), + [anon_sym_None] = ACTIONS(2015), + [sym_integer] = ACTIONS(2015), + [sym_float] = ACTIONS(2017), + [anon_sym_await] = ACTIONS(2015), + [anon_sym_api] = ACTIONS(2015), + [sym_true] = ACTIONS(2015), + [sym_false] = ACTIONS(2015), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2015), + [anon_sym_include] = ACTIONS(2015), + [anon_sym_DEF] = ACTIONS(2015), + [anon_sym_IF] = ACTIONS(2015), + [anon_sym_cdef] = ACTIONS(2015), + [anon_sym_cpdef] = ACTIONS(2015), + [anon_sym_int] = ACTIONS(2015), + [anon_sym_double] = ACTIONS(2015), + [anon_sym_complex] = ACTIONS(2015), + [anon_sym_new] = ACTIONS(2015), + [anon_sym_signed] = ACTIONS(2015), + [anon_sym_unsigned] = ACTIONS(2015), + [anon_sym_char] = ACTIONS(2015), + [anon_sym_short] = ACTIONS(2015), + [anon_sym_long] = ACTIONS(2015), + [anon_sym_const] = ACTIONS(2015), + [anon_sym_volatile] = ACTIONS(2015), + [anon_sym_ctypedef] = ACTIONS(2015), + [anon_sym_struct] = ACTIONS(2015), + [anon_sym_union] = ACTIONS(2015), + [anon_sym_enum] = ACTIONS(2015), + [anon_sym_cppclass] = ACTIONS(2015), + [anon_sym_fused] = ACTIONS(2015), + [anon_sym_public] = ACTIONS(2015), + [anon_sym_packed] = ACTIONS(2015), + [anon_sym_inline] = ACTIONS(2015), + [anon_sym_readonly] = ACTIONS(2015), + [anon_sym_sizeof] = ACTIONS(2015), + [sym__dedent] = ACTIONS(2017), + [sym_string_start] = ACTIONS(2017), }, [637] = { - [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), + [sym_identifier] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_import] = ACTIONS(2019), + [anon_sym_cimport] = ACTIONS(2019), + [anon_sym_from] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2021), + [anon_sym_print] = ACTIONS(2019), + [anon_sym_assert] = ACTIONS(2019), + [anon_sym_return] = ACTIONS(2019), + [anon_sym_del] = ACTIONS(2019), + [anon_sym_raise] = ACTIONS(2019), + [anon_sym_pass] = ACTIONS(2019), + [anon_sym_break] = ACTIONS(2019), + [anon_sym_continue] = ACTIONS(2019), + [anon_sym_if] = ACTIONS(2019), + [anon_sym_match] = ACTIONS(2019), + [anon_sym_async] = ACTIONS(2019), + [anon_sym_for] = ACTIONS(2019), + [anon_sym_while] = ACTIONS(2019), + [anon_sym_try] = ACTIONS(2019), + [anon_sym_with] = ACTIONS(2019), + [anon_sym_def] = ACTIONS(2019), + [anon_sym_global] = ACTIONS(2019), + [anon_sym_nonlocal] = ACTIONS(2019), + [anon_sym_exec] = ACTIONS(2019), + [anon_sym_type] = ACTIONS(2019), + [anon_sym_class] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2021), + [anon_sym_AT] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2021), + [anon_sym_PLUS] = ACTIONS(2021), + [anon_sym_not] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_TILDE] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2021), + [anon_sym_lambda] = ACTIONS(2019), + [anon_sym_yield] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2021), + [anon_sym_None] = ACTIONS(2019), + [sym_integer] = ACTIONS(2019), + [sym_float] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(2019), + [anon_sym_api] = ACTIONS(2019), + [sym_true] = ACTIONS(2019), + [sym_false] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2019), + [anon_sym_include] = ACTIONS(2019), + [anon_sym_DEF] = ACTIONS(2019), + [anon_sym_IF] = ACTIONS(2019), + [anon_sym_cdef] = ACTIONS(2019), + [anon_sym_cpdef] = ACTIONS(2019), + [anon_sym_int] = ACTIONS(2019), + [anon_sym_double] = ACTIONS(2019), + [anon_sym_complex] = ACTIONS(2019), + [anon_sym_new] = ACTIONS(2019), + [anon_sym_signed] = ACTIONS(2019), + [anon_sym_unsigned] = ACTIONS(2019), + [anon_sym_char] = ACTIONS(2019), + [anon_sym_short] = ACTIONS(2019), + [anon_sym_long] = ACTIONS(2019), + [anon_sym_const] = ACTIONS(2019), + [anon_sym_volatile] = ACTIONS(2019), + [anon_sym_ctypedef] = ACTIONS(2019), + [anon_sym_struct] = ACTIONS(2019), + [anon_sym_union] = ACTIONS(2019), + [anon_sym_enum] = ACTIONS(2019), + [anon_sym_cppclass] = ACTIONS(2019), + [anon_sym_fused] = ACTIONS(2019), + [anon_sym_public] = ACTIONS(2019), + [anon_sym_packed] = ACTIONS(2019), + [anon_sym_inline] = ACTIONS(2019), + [anon_sym_readonly] = ACTIONS(2019), + [anon_sym_sizeof] = ACTIONS(2019), + [sym__dedent] = ACTIONS(2021), + [sym_string_start] = ACTIONS(2021), }, [638] = { - [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), + [sym_identifier] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2025), + [anon_sym_import] = ACTIONS(2023), + [anon_sym_cimport] = ACTIONS(2023), + [anon_sym_from] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_STAR] = ACTIONS(2025), + [anon_sym_print] = ACTIONS(2023), + [anon_sym_assert] = ACTIONS(2023), + [anon_sym_return] = ACTIONS(2023), + [anon_sym_del] = ACTIONS(2023), + [anon_sym_raise] = ACTIONS(2023), + [anon_sym_pass] = ACTIONS(2023), + [anon_sym_break] = ACTIONS(2023), + [anon_sym_continue] = ACTIONS(2023), + [anon_sym_if] = ACTIONS(2023), + [anon_sym_match] = ACTIONS(2023), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_for] = ACTIONS(2023), + [anon_sym_while] = ACTIONS(2023), + [anon_sym_try] = ACTIONS(2023), + [anon_sym_with] = ACTIONS(2023), + [anon_sym_def] = ACTIONS(2023), + [anon_sym_global] = ACTIONS(2023), + [anon_sym_nonlocal] = ACTIONS(2023), + [anon_sym_exec] = ACTIONS(2023), + [anon_sym_type] = ACTIONS(2023), + [anon_sym_class] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2025), + [anon_sym_AT] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2025), + [anon_sym_LBRACE] = ACTIONS(2025), + [anon_sym_PLUS] = ACTIONS(2025), + [anon_sym_not] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_TILDE] = ACTIONS(2025), + [anon_sym_LT] = ACTIONS(2025), + [anon_sym_lambda] = ACTIONS(2023), + [anon_sym_yield] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2025), + [anon_sym_None] = ACTIONS(2023), + [sym_integer] = ACTIONS(2023), + [sym_float] = ACTIONS(2025), + [anon_sym_await] = ACTIONS(2023), + [anon_sym_api] = ACTIONS(2023), + [sym_true] = ACTIONS(2023), + [sym_false] = ACTIONS(2023), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2023), + [anon_sym_include] = ACTIONS(2023), + [anon_sym_DEF] = ACTIONS(2023), + [anon_sym_IF] = ACTIONS(2023), + [anon_sym_cdef] = ACTIONS(2023), + [anon_sym_cpdef] = ACTIONS(2023), + [anon_sym_int] = ACTIONS(2023), + [anon_sym_double] = ACTIONS(2023), + [anon_sym_complex] = ACTIONS(2023), + [anon_sym_new] = ACTIONS(2023), + [anon_sym_signed] = ACTIONS(2023), + [anon_sym_unsigned] = ACTIONS(2023), + [anon_sym_char] = ACTIONS(2023), + [anon_sym_short] = ACTIONS(2023), + [anon_sym_long] = ACTIONS(2023), + [anon_sym_const] = ACTIONS(2023), + [anon_sym_volatile] = ACTIONS(2023), + [anon_sym_ctypedef] = ACTIONS(2023), + [anon_sym_struct] = ACTIONS(2023), + [anon_sym_union] = ACTIONS(2023), + [anon_sym_enum] = ACTIONS(2023), + [anon_sym_cppclass] = ACTIONS(2023), + [anon_sym_fused] = ACTIONS(2023), + [anon_sym_public] = ACTIONS(2023), + [anon_sym_packed] = ACTIONS(2023), + [anon_sym_inline] = ACTIONS(2023), + [anon_sym_readonly] = ACTIONS(2023), + [anon_sym_sizeof] = ACTIONS(2023), + [sym__dedent] = ACTIONS(2025), + [sym_string_start] = ACTIONS(2025), }, [639] = { - [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), + [sym_identifier] = ACTIONS(2027), + [anon_sym_SEMI] = ACTIONS(2029), + [anon_sym_import] = ACTIONS(2027), + [anon_sym_cimport] = ACTIONS(2027), + [anon_sym_from] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_STAR] = ACTIONS(2029), + [anon_sym_print] = ACTIONS(2027), + [anon_sym_assert] = ACTIONS(2027), + [anon_sym_return] = ACTIONS(2027), + [anon_sym_del] = ACTIONS(2027), + [anon_sym_raise] = ACTIONS(2027), + [anon_sym_pass] = ACTIONS(2027), + [anon_sym_break] = ACTIONS(2027), + [anon_sym_continue] = ACTIONS(2027), + [anon_sym_if] = ACTIONS(2027), + [anon_sym_match] = ACTIONS(2027), + [anon_sym_async] = ACTIONS(2027), + [anon_sym_for] = ACTIONS(2027), + [anon_sym_while] = ACTIONS(2027), + [anon_sym_try] = ACTIONS(2027), + [anon_sym_with] = ACTIONS(2027), + [anon_sym_def] = ACTIONS(2027), + [anon_sym_global] = ACTIONS(2027), + [anon_sym_nonlocal] = ACTIONS(2027), + [anon_sym_exec] = ACTIONS(2027), + [anon_sym_type] = ACTIONS(2027), + [anon_sym_class] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2029), + [anon_sym_AT] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2029), + [anon_sym_LBRACE] = ACTIONS(2029), + [anon_sym_PLUS] = ACTIONS(2029), + [anon_sym_not] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2029), + [anon_sym_TILDE] = ACTIONS(2029), + [anon_sym_LT] = ACTIONS(2029), + [anon_sym_lambda] = ACTIONS(2027), + [anon_sym_yield] = ACTIONS(2027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2029), + [anon_sym_None] = ACTIONS(2027), + [sym_integer] = ACTIONS(2027), + [sym_float] = ACTIONS(2029), + [anon_sym_await] = ACTIONS(2027), + [anon_sym_api] = ACTIONS(2027), + [sym_true] = ACTIONS(2027), + [sym_false] = ACTIONS(2027), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2027), + [anon_sym_include] = ACTIONS(2027), + [anon_sym_DEF] = ACTIONS(2027), + [anon_sym_IF] = ACTIONS(2027), + [anon_sym_cdef] = ACTIONS(2027), + [anon_sym_cpdef] = ACTIONS(2027), + [anon_sym_int] = ACTIONS(2027), + [anon_sym_double] = ACTIONS(2027), + [anon_sym_complex] = ACTIONS(2027), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_signed] = ACTIONS(2027), + [anon_sym_unsigned] = ACTIONS(2027), + [anon_sym_char] = ACTIONS(2027), + [anon_sym_short] = ACTIONS(2027), + [anon_sym_long] = ACTIONS(2027), + [anon_sym_const] = ACTIONS(2027), + [anon_sym_volatile] = ACTIONS(2027), + [anon_sym_ctypedef] = ACTIONS(2027), + [anon_sym_struct] = ACTIONS(2027), + [anon_sym_union] = ACTIONS(2027), + [anon_sym_enum] = ACTIONS(2027), + [anon_sym_cppclass] = ACTIONS(2027), + [anon_sym_fused] = ACTIONS(2027), + [anon_sym_public] = ACTIONS(2027), + [anon_sym_packed] = ACTIONS(2027), + [anon_sym_inline] = ACTIONS(2027), + [anon_sym_readonly] = ACTIONS(2027), + [anon_sym_sizeof] = ACTIONS(2027), + [sym__dedent] = ACTIONS(2029), + [sym_string_start] = ACTIONS(2029), }, [640] = { - [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), + [sym_identifier] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2033), + [anon_sym_import] = ACTIONS(2031), + [anon_sym_cimport] = ACTIONS(2031), + [anon_sym_from] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_STAR] = ACTIONS(2033), + [anon_sym_print] = ACTIONS(2031), + [anon_sym_assert] = ACTIONS(2031), + [anon_sym_return] = ACTIONS(2031), + [anon_sym_del] = ACTIONS(2031), + [anon_sym_raise] = ACTIONS(2031), + [anon_sym_pass] = ACTIONS(2031), + [anon_sym_break] = ACTIONS(2031), + [anon_sym_continue] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_async] = ACTIONS(2031), + [anon_sym_for] = ACTIONS(2031), + [anon_sym_while] = ACTIONS(2031), + [anon_sym_try] = ACTIONS(2031), + [anon_sym_with] = ACTIONS(2031), + [anon_sym_def] = ACTIONS(2031), + [anon_sym_global] = ACTIONS(2031), + [anon_sym_nonlocal] = ACTIONS(2031), + [anon_sym_exec] = ACTIONS(2031), + [anon_sym_type] = ACTIONS(2031), + [anon_sym_class] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2033), + [anon_sym_AT] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2033), + [anon_sym_LBRACE] = ACTIONS(2033), + [anon_sym_PLUS] = ACTIONS(2033), + [anon_sym_not] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_TILDE] = ACTIONS(2033), + [anon_sym_LT] = ACTIONS(2033), + [anon_sym_lambda] = ACTIONS(2031), + [anon_sym_yield] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2033), + [anon_sym_None] = ACTIONS(2031), + [sym_integer] = ACTIONS(2031), + [sym_float] = ACTIONS(2033), + [anon_sym_await] = ACTIONS(2031), + [anon_sym_api] = ACTIONS(2031), + [sym_true] = ACTIONS(2031), + [sym_false] = ACTIONS(2031), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2031), + [anon_sym_include] = ACTIONS(2031), + [anon_sym_DEF] = ACTIONS(2031), + [anon_sym_IF] = ACTIONS(2031), + [anon_sym_cdef] = ACTIONS(2031), + [anon_sym_cpdef] = ACTIONS(2031), + [anon_sym_int] = ACTIONS(2031), + [anon_sym_double] = ACTIONS(2031), + [anon_sym_complex] = ACTIONS(2031), + [anon_sym_new] = ACTIONS(2031), + [anon_sym_signed] = ACTIONS(2031), + [anon_sym_unsigned] = ACTIONS(2031), + [anon_sym_char] = ACTIONS(2031), + [anon_sym_short] = ACTIONS(2031), + [anon_sym_long] = ACTIONS(2031), + [anon_sym_const] = ACTIONS(2031), + [anon_sym_volatile] = ACTIONS(2031), + [anon_sym_ctypedef] = ACTIONS(2031), + [anon_sym_struct] = ACTIONS(2031), + [anon_sym_union] = ACTIONS(2031), + [anon_sym_enum] = ACTIONS(2031), + [anon_sym_cppclass] = ACTIONS(2031), + [anon_sym_fused] = ACTIONS(2031), + [anon_sym_public] = ACTIONS(2031), + [anon_sym_packed] = ACTIONS(2031), + [anon_sym_inline] = ACTIONS(2031), + [anon_sym_readonly] = ACTIONS(2031), + [anon_sym_sizeof] = ACTIONS(2031), + [sym__dedent] = ACTIONS(2033), + [sym_string_start] = ACTIONS(2033), }, [641] = { - [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), + [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_IF] = 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), }, [642] = { - [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), + [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_IF] = 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), }, [643] = { - [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), + [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_IF] = 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), }, [644] = { - [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(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(2081), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_TILDE] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_lambda] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2083), - [anon_sym_None] = ACTIONS(2081), - [sym_integer] = ACTIONS(2081), - [sym_float] = ACTIONS(2083), - [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), + [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_IF] = 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), }, [645] = { - [sym_identifier] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_cimport] = ACTIONS(2085), - [anon_sym_from] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_STAR] = ACTIONS(2087), - [anon_sym_print] = ACTIONS(2085), - [anon_sym_assert] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_del] = ACTIONS(2085), - [anon_sym_raise] = ACTIONS(2085), - [anon_sym_pass] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_match] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_def] = ACTIONS(2085), - [anon_sym_global] = ACTIONS(2085), - [anon_sym_nonlocal] = ACTIONS(2085), - [anon_sym_exec] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_AT] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_PLUS] = ACTIONS(2087), - [anon_sym_not] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2087), - [anon_sym_TILDE] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(2087), - [anon_sym_lambda] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2087), - [anon_sym_None] = ACTIONS(2085), - [sym_integer] = ACTIONS(2085), - [sym_float] = ACTIONS(2087), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_api] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2085), - [anon_sym_include] = ACTIONS(2085), - [anon_sym_DEF] = ACTIONS(2085), - [anon_sym_cdef] = ACTIONS(2085), - [anon_sym_cpdef] = ACTIONS(2085), - [anon_sym_int] = ACTIONS(2085), - [anon_sym_double] = ACTIONS(2085), - [anon_sym_complex] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_signed] = ACTIONS(2085), - [anon_sym_unsigned] = ACTIONS(2085), - [anon_sym_char] = ACTIONS(2085), - [anon_sym_short] = ACTIONS(2085), - [anon_sym_long] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_volatile] = ACTIONS(2085), - [anon_sym_ctypedef] = ACTIONS(2085), - [anon_sym_struct] = ACTIONS(2085), - [anon_sym_union] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [anon_sym_cppclass] = ACTIONS(2085), - [anon_sym_fused] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_packed] = ACTIONS(2085), - [anon_sym_inline] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_sizeof] = ACTIONS(2085), - [sym__dedent] = ACTIONS(2087), - [sym_string_start] = ACTIONS(2087), + [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_IF] = 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), }, [646] = { - [sym_identifier] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_import] = ACTIONS(2089), - [anon_sym_cimport] = ACTIONS(2089), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_print] = ACTIONS(2089), - [anon_sym_assert] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_del] = ACTIONS(2089), - [anon_sym_raise] = ACTIONS(2089), - [anon_sym_pass] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2089), - [anon_sym_global] = ACTIONS(2089), - [anon_sym_nonlocal] = ACTIONS(2089), - [anon_sym_exec] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_class] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_AT] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_not] = ACTIONS(2089), - [anon_sym_AMP] = ACTIONS(2091), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2091), - [anon_sym_lambda] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2091), - [anon_sym_None] = ACTIONS(2089), - [sym_integer] = ACTIONS(2089), - [sym_float] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_api] = ACTIONS(2089), - [sym_true] = ACTIONS(2089), - [sym_false] = ACTIONS(2089), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_include] = ACTIONS(2089), - [anon_sym_DEF] = ACTIONS(2089), - [anon_sym_cdef] = ACTIONS(2089), - [anon_sym_cpdef] = ACTIONS(2089), - [anon_sym_int] = ACTIONS(2089), - [anon_sym_double] = ACTIONS(2089), - [anon_sym_complex] = ACTIONS(2089), - [anon_sym_new] = ACTIONS(2089), - [anon_sym_signed] = ACTIONS(2089), - [anon_sym_unsigned] = ACTIONS(2089), - [anon_sym_char] = ACTIONS(2089), - [anon_sym_short] = ACTIONS(2089), - [anon_sym_long] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_volatile] = ACTIONS(2089), - [anon_sym_ctypedef] = ACTIONS(2089), - [anon_sym_struct] = ACTIONS(2089), - [anon_sym_union] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [anon_sym_cppclass] = ACTIONS(2089), - [anon_sym_fused] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_packed] = ACTIONS(2089), - [anon_sym_inline] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_sizeof] = ACTIONS(2089), - [sym__dedent] = ACTIONS(2091), - [sym_string_start] = ACTIONS(2091), + [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_IF] = 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), }, [647] = { - [sym_identifier] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2095), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_cimport] = ACTIONS(2093), - [anon_sym_from] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_print] = ACTIONS(2093), - [anon_sym_assert] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_del] = ACTIONS(2093), - [anon_sym_raise] = ACTIONS(2093), - [anon_sym_pass] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_def] = ACTIONS(2093), - [anon_sym_global] = ACTIONS(2093), - [anon_sym_nonlocal] = ACTIONS(2093), - [anon_sym_exec] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_AT] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_PLUS] = ACTIONS(2095), - [anon_sym_not] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_TILDE] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_lambda] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2095), - [anon_sym_None] = ACTIONS(2093), - [sym_integer] = ACTIONS(2093), - [sym_float] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_api] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2093), - [anon_sym_include] = ACTIONS(2093), - [anon_sym_DEF] = ACTIONS(2093), - [anon_sym_cdef] = ACTIONS(2093), - [anon_sym_cpdef] = ACTIONS(2093), - [anon_sym_int] = ACTIONS(2093), - [anon_sym_double] = ACTIONS(2093), - [anon_sym_complex] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_signed] = ACTIONS(2093), - [anon_sym_unsigned] = ACTIONS(2093), - [anon_sym_char] = ACTIONS(2093), - [anon_sym_short] = ACTIONS(2093), - [anon_sym_long] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_volatile] = ACTIONS(2093), - [anon_sym_ctypedef] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_cppclass] = ACTIONS(2093), - [anon_sym_fused] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_packed] = ACTIONS(2093), - [anon_sym_inline] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_sizeof] = ACTIONS(2093), - [sym__dedent] = ACTIONS(2095), - [sym_string_start] = ACTIONS(2095), + [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_IF] = 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), }, [648] = { - [sym_identifier] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2099), - [anon_sym_import] = ACTIONS(2097), - [anon_sym_cimport] = ACTIONS(2097), - [anon_sym_from] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_print] = ACTIONS(2097), - [anon_sym_assert] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_del] = ACTIONS(2097), - [anon_sym_raise] = ACTIONS(2097), - [anon_sym_pass] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [anon_sym_with] = ACTIONS(2097), - [anon_sym_def] = ACTIONS(2097), - [anon_sym_global] = ACTIONS(2097), - [anon_sym_nonlocal] = ACTIONS(2097), - [anon_sym_exec] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_class] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_AT] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_PLUS] = ACTIONS(2099), - [anon_sym_not] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_TILDE] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_lambda] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2099), - [anon_sym_None] = ACTIONS(2097), - [sym_integer] = ACTIONS(2097), - [sym_float] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_api] = ACTIONS(2097), - [sym_true] = ACTIONS(2097), - [sym_false] = ACTIONS(2097), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2097), - [anon_sym_include] = ACTIONS(2097), - [anon_sym_DEF] = ACTIONS(2097), - [anon_sym_cdef] = ACTIONS(2097), - [anon_sym_cpdef] = ACTIONS(2097), - [anon_sym_int] = ACTIONS(2097), - [anon_sym_double] = ACTIONS(2097), - [anon_sym_complex] = ACTIONS(2097), - [anon_sym_new] = ACTIONS(2097), - [anon_sym_signed] = ACTIONS(2097), - [anon_sym_unsigned] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [anon_sym_short] = ACTIONS(2097), - [anon_sym_long] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_volatile] = ACTIONS(2097), - [anon_sym_ctypedef] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_cppclass] = ACTIONS(2097), - [anon_sym_fused] = ACTIONS(2097), - [anon_sym_public] = ACTIONS(2097), - [anon_sym_packed] = ACTIONS(2097), - [anon_sym_inline] = ACTIONS(2097), - [anon_sym_readonly] = ACTIONS(2097), - [anon_sym_sizeof] = ACTIONS(2097), - [sym__dedent] = ACTIONS(2099), - [sym_string_start] = ACTIONS(2099), + [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_IF] = 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), }, [649] = { - [sym_identifier] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_import] = ACTIONS(2101), - [anon_sym_cimport] = ACTIONS(2101), - [anon_sym_from] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_print] = ACTIONS(2101), - [anon_sym_assert] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_del] = ACTIONS(2101), - [anon_sym_raise] = ACTIONS(2101), - [anon_sym_pass] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [anon_sym_with] = ACTIONS(2101), - [anon_sym_def] = ACTIONS(2101), - [anon_sym_global] = ACTIONS(2101), - [anon_sym_nonlocal] = ACTIONS(2101), - [anon_sym_exec] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_class] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_AT] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_PLUS] = ACTIONS(2103), - [anon_sym_not] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_TILDE] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_lambda] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2103), - [anon_sym_None] = ACTIONS(2101), - [sym_integer] = ACTIONS(2101), - [sym_float] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_api] = ACTIONS(2101), - [sym_true] = ACTIONS(2101), - [sym_false] = ACTIONS(2101), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2101), - [anon_sym_include] = ACTIONS(2101), - [anon_sym_DEF] = ACTIONS(2101), - [anon_sym_cdef] = ACTIONS(2101), - [anon_sym_cpdef] = ACTIONS(2101), - [anon_sym_int] = ACTIONS(2101), - [anon_sym_double] = ACTIONS(2101), - [anon_sym_complex] = ACTIONS(2101), - [anon_sym_new] = ACTIONS(2101), - [anon_sym_signed] = ACTIONS(2101), - [anon_sym_unsigned] = ACTIONS(2101), - [anon_sym_char] = ACTIONS(2101), - [anon_sym_short] = ACTIONS(2101), - [anon_sym_long] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_volatile] = ACTIONS(2101), - [anon_sym_ctypedef] = ACTIONS(2101), - [anon_sym_struct] = ACTIONS(2101), - [anon_sym_union] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_cppclass] = ACTIONS(2101), - [anon_sym_fused] = ACTIONS(2101), - [anon_sym_public] = ACTIONS(2101), - [anon_sym_packed] = ACTIONS(2101), - [anon_sym_inline] = ACTIONS(2101), - [anon_sym_readonly] = ACTIONS(2101), - [anon_sym_sizeof] = ACTIONS(2101), - [sym__dedent] = ACTIONS(2103), - [sym_string_start] = ACTIONS(2103), + [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_IF] = 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), }, [650] = { - [sym_identifier] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_cimport] = ACTIONS(2105), - [anon_sym_from] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_STAR] = ACTIONS(2107), - [anon_sym_print] = ACTIONS(2105), - [anon_sym_assert] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_del] = ACTIONS(2105), - [anon_sym_raise] = ACTIONS(2105), - [anon_sym_pass] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_def] = ACTIONS(2105), - [anon_sym_global] = ACTIONS(2105), - [anon_sym_nonlocal] = ACTIONS(2105), - [anon_sym_exec] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_AT] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_PLUS] = ACTIONS(2107), - [anon_sym_not] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_lambda] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2107), - [anon_sym_None] = ACTIONS(2105), - [sym_integer] = ACTIONS(2105), - [sym_float] = ACTIONS(2107), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_api] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2105), - [anon_sym_include] = ACTIONS(2105), - [anon_sym_DEF] = ACTIONS(2105), - [anon_sym_cdef] = ACTIONS(2105), - [anon_sym_cpdef] = ACTIONS(2105), - [anon_sym_int] = ACTIONS(2105), - [anon_sym_double] = ACTIONS(2105), - [anon_sym_complex] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_signed] = ACTIONS(2105), - [anon_sym_unsigned] = ACTIONS(2105), - [anon_sym_char] = ACTIONS(2105), - [anon_sym_short] = ACTIONS(2105), - [anon_sym_long] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_volatile] = ACTIONS(2105), - [anon_sym_ctypedef] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [anon_sym_cppclass] = ACTIONS(2105), - [anon_sym_fused] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_packed] = ACTIONS(2105), - [anon_sym_inline] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_sizeof] = ACTIONS(2105), - [sym__dedent] = ACTIONS(2107), - [sym_string_start] = ACTIONS(2107), + [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_IF] = 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), }, [651] = { - [sym_identifier] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_cimport] = ACTIONS(2109), - [anon_sym_from] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_print] = ACTIONS(2109), - [anon_sym_assert] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_del] = ACTIONS(2109), - [anon_sym_raise] = ACTIONS(2109), - [anon_sym_pass] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_match] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_def] = ACTIONS(2109), - [anon_sym_global] = ACTIONS(2109), - [anon_sym_nonlocal] = ACTIONS(2109), - [anon_sym_exec] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_not] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_lambda] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2111), - [anon_sym_None] = ACTIONS(2109), - [sym_integer] = ACTIONS(2109), - [sym_float] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_api] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2109), - [anon_sym_include] = ACTIONS(2109), - [anon_sym_DEF] = ACTIONS(2109), - [anon_sym_cdef] = ACTIONS(2109), - [anon_sym_cpdef] = ACTIONS(2109), - [anon_sym_int] = ACTIONS(2109), - [anon_sym_double] = ACTIONS(2109), - [anon_sym_complex] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_signed] = ACTIONS(2109), - [anon_sym_unsigned] = ACTIONS(2109), - [anon_sym_char] = ACTIONS(2109), - [anon_sym_short] = ACTIONS(2109), - [anon_sym_long] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_volatile] = ACTIONS(2109), - [anon_sym_ctypedef] = ACTIONS(2109), - [anon_sym_struct] = ACTIONS(2109), - [anon_sym_union] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [anon_sym_cppclass] = ACTIONS(2109), - [anon_sym_fused] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_packed] = ACTIONS(2109), - [anon_sym_inline] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_sizeof] = ACTIONS(2109), - [sym__dedent] = ACTIONS(2111), - [sym_string_start] = ACTIONS(2111), + [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_IF] = 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), }, [652] = { - [sym_identifier] = ACTIONS(2113), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_import] = ACTIONS(2113), - [anon_sym_cimport] = ACTIONS(2113), - [anon_sym_from] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_print] = ACTIONS(2113), - [anon_sym_assert] = ACTIONS(2113), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_del] = ACTIONS(2113), - [anon_sym_raise] = ACTIONS(2113), - [anon_sym_pass] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_match] = ACTIONS(2113), - [anon_sym_async] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_try] = ACTIONS(2113), - [anon_sym_with] = ACTIONS(2113), - [anon_sym_def] = ACTIONS(2113), - [anon_sym_global] = ACTIONS(2113), - [anon_sym_nonlocal] = ACTIONS(2113), - [anon_sym_exec] = ACTIONS(2113), - [anon_sym_type] = ACTIONS(2113), - [anon_sym_class] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2115), - [anon_sym_AT] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_not] = ACTIONS(2113), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_lambda] = ACTIONS(2113), - [anon_sym_yield] = ACTIONS(2113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), - [anon_sym_None] = ACTIONS(2113), - [sym_integer] = ACTIONS(2113), - [sym_float] = ACTIONS(2115), - [anon_sym_await] = ACTIONS(2113), - [anon_sym_api] = ACTIONS(2113), - [sym_true] = ACTIONS(2113), - [sym_false] = ACTIONS(2113), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2113), - [anon_sym_include] = ACTIONS(2113), - [anon_sym_DEF] = ACTIONS(2113), - [anon_sym_cdef] = ACTIONS(2113), - [anon_sym_cpdef] = ACTIONS(2113), - [anon_sym_int] = ACTIONS(2113), - [anon_sym_double] = ACTIONS(2113), - [anon_sym_complex] = ACTIONS(2113), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_signed] = ACTIONS(2113), - [anon_sym_unsigned] = ACTIONS(2113), - [anon_sym_char] = ACTIONS(2113), - [anon_sym_short] = ACTIONS(2113), - [anon_sym_long] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [anon_sym_volatile] = ACTIONS(2113), - [anon_sym_ctypedef] = ACTIONS(2113), - [anon_sym_struct] = ACTIONS(2113), - [anon_sym_union] = ACTIONS(2113), - [anon_sym_enum] = ACTIONS(2113), - [anon_sym_cppclass] = ACTIONS(2113), - [anon_sym_fused] = ACTIONS(2113), - [anon_sym_public] = ACTIONS(2113), - [anon_sym_packed] = ACTIONS(2113), - [anon_sym_inline] = ACTIONS(2113), - [anon_sym_readonly] = ACTIONS(2113), - [anon_sym_sizeof] = ACTIONS(2113), - [sym__dedent] = ACTIONS(2115), - [sym_string_start] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_import] = ACTIONS(2079), + [anon_sym_cimport] = ACTIONS(2079), + [anon_sym_from] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2081), + [anon_sym_print] = ACTIONS(2079), + [anon_sym_assert] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_del] = ACTIONS(2079), + [anon_sym_raise] = ACTIONS(2079), + [anon_sym_pass] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_async] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2079), + [anon_sym_with] = ACTIONS(2079), + [anon_sym_def] = ACTIONS(2079), + [anon_sym_global] = ACTIONS(2079), + [anon_sym_nonlocal] = ACTIONS(2079), + [anon_sym_exec] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2079), + [anon_sym_class] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_AT] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(2081), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_LT] = ACTIONS(2081), + [anon_sym_lambda] = ACTIONS(2079), + [anon_sym_yield] = ACTIONS(2079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), + [anon_sym_None] = ACTIONS(2079), + [sym_integer] = ACTIONS(2079), + [sym_float] = ACTIONS(2081), + [anon_sym_await] = ACTIONS(2079), + [anon_sym_api] = ACTIONS(2079), + [sym_true] = ACTIONS(2079), + [sym_false] = ACTIONS(2079), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2079), + [anon_sym_include] = ACTIONS(2079), + [anon_sym_DEF] = ACTIONS(2079), + [anon_sym_IF] = ACTIONS(2079), + [anon_sym_cdef] = ACTIONS(2079), + [anon_sym_cpdef] = ACTIONS(2079), + [anon_sym_int] = ACTIONS(2079), + [anon_sym_double] = ACTIONS(2079), + [anon_sym_complex] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2079), + [anon_sym_signed] = ACTIONS(2079), + [anon_sym_unsigned] = ACTIONS(2079), + [anon_sym_char] = ACTIONS(2079), + [anon_sym_short] = ACTIONS(2079), + [anon_sym_long] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_volatile] = ACTIONS(2079), + [anon_sym_ctypedef] = ACTIONS(2079), + [anon_sym_struct] = ACTIONS(2079), + [anon_sym_union] = ACTIONS(2079), + [anon_sym_enum] = ACTIONS(2079), + [anon_sym_cppclass] = ACTIONS(2079), + [anon_sym_fused] = ACTIONS(2079), + [anon_sym_public] = ACTIONS(2079), + [anon_sym_packed] = ACTIONS(2079), + [anon_sym_inline] = ACTIONS(2079), + [anon_sym_readonly] = ACTIONS(2079), + [anon_sym_sizeof] = ACTIONS(2079), + [sym__dedent] = ACTIONS(2081), + [sym_string_start] = ACTIONS(2081), }, [653] = { - [sym_identifier] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_import] = ACTIONS(2117), - [anon_sym_cimport] = ACTIONS(2117), - [anon_sym_from] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_print] = ACTIONS(2117), - [anon_sym_assert] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_del] = ACTIONS(2117), - [anon_sym_raise] = ACTIONS(2117), - [anon_sym_pass] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_with] = ACTIONS(2117), - [anon_sym_def] = ACTIONS(2117), - [anon_sym_global] = ACTIONS(2117), - [anon_sym_nonlocal] = ACTIONS(2117), - [anon_sym_exec] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2119), - [anon_sym_not] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2119), - [anon_sym_lambda] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2119), - [anon_sym_None] = ACTIONS(2117), - [sym_integer] = ACTIONS(2117), - [sym_float] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_api] = ACTIONS(2117), - [sym_true] = ACTIONS(2117), - [sym_false] = ACTIONS(2117), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2117), - [anon_sym_include] = ACTIONS(2117), - [anon_sym_DEF] = ACTIONS(2117), - [anon_sym_cdef] = ACTIONS(2117), - [anon_sym_cpdef] = ACTIONS(2117), - [anon_sym_int] = ACTIONS(2117), - [anon_sym_double] = ACTIONS(2117), - [anon_sym_complex] = ACTIONS(2117), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_signed] = ACTIONS(2117), - [anon_sym_unsigned] = ACTIONS(2117), - [anon_sym_char] = ACTIONS(2117), - [anon_sym_short] = ACTIONS(2117), - [anon_sym_long] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_volatile] = ACTIONS(2117), - [anon_sym_ctypedef] = ACTIONS(2117), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [anon_sym_cppclass] = ACTIONS(2117), - [anon_sym_fused] = ACTIONS(2117), - [anon_sym_public] = ACTIONS(2117), - [anon_sym_packed] = ACTIONS(2117), - [anon_sym_inline] = ACTIONS(2117), - [anon_sym_readonly] = ACTIONS(2117), - [anon_sym_sizeof] = ACTIONS(2117), - [sym__dedent] = ACTIONS(2119), - [sym_string_start] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_import] = ACTIONS(2083), + [anon_sym_cimport] = ACTIONS(2083), + [anon_sym_from] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_print] = ACTIONS(2083), + [anon_sym_assert] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_del] = ACTIONS(2083), + [anon_sym_raise] = ACTIONS(2083), + [anon_sym_pass] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_match] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_with] = ACTIONS(2083), + [anon_sym_def] = ACTIONS(2083), + [anon_sym_global] = ACTIONS(2083), + [anon_sym_nonlocal] = ACTIONS(2083), + [anon_sym_exec] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_class] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_AT] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2085), + [anon_sym_not] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_lambda] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2085), + [anon_sym_None] = ACTIONS(2083), + [sym_integer] = ACTIONS(2083), + [sym_float] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_api] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2083), + [anon_sym_include] = ACTIONS(2083), + [anon_sym_DEF] = ACTIONS(2083), + [anon_sym_IF] = ACTIONS(2083), + [anon_sym_cdef] = ACTIONS(2083), + [anon_sym_cpdef] = ACTIONS(2083), + [anon_sym_int] = ACTIONS(2083), + [anon_sym_double] = ACTIONS(2083), + [anon_sym_complex] = ACTIONS(2083), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_signed] = ACTIONS(2083), + [anon_sym_unsigned] = ACTIONS(2083), + [anon_sym_char] = ACTIONS(2083), + [anon_sym_short] = ACTIONS(2083), + [anon_sym_long] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_volatile] = ACTIONS(2083), + [anon_sym_ctypedef] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(2083), + [anon_sym_union] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [anon_sym_cppclass] = ACTIONS(2083), + [anon_sym_fused] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_packed] = ACTIONS(2083), + [anon_sym_inline] = ACTIONS(2083), + [anon_sym_readonly] = ACTIONS(2083), + [anon_sym_sizeof] = ACTIONS(2083), + [sym__dedent] = ACTIONS(2085), + [sym_string_start] = ACTIONS(2085), }, [654] = { - [sym_identifier] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_cimport] = ACTIONS(2121), - [anon_sym_from] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_print] = ACTIONS(2121), - [anon_sym_assert] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_del] = ACTIONS(2121), - [anon_sym_raise] = ACTIONS(2121), - [anon_sym_pass] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_match] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_def] = ACTIONS(2121), - [anon_sym_global] = ACTIONS(2121), - [anon_sym_nonlocal] = ACTIONS(2121), - [anon_sym_exec] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2123), - [anon_sym_AT] = ACTIONS(2123), - [anon_sym_DASH] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(2123), - [anon_sym_not] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2123), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(2123), - [anon_sym_lambda] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2123), - [anon_sym_None] = ACTIONS(2121), - [sym_integer] = ACTIONS(2121), - [sym_float] = ACTIONS(2123), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_api] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2121), - [anon_sym_include] = ACTIONS(2121), - [anon_sym_DEF] = ACTIONS(2121), - [anon_sym_cdef] = ACTIONS(2121), - [anon_sym_cpdef] = ACTIONS(2121), - [anon_sym_int] = ACTIONS(2121), - [anon_sym_double] = ACTIONS(2121), - [anon_sym_complex] = ACTIONS(2121), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_signed] = ACTIONS(2121), - [anon_sym_unsigned] = ACTIONS(2121), - [anon_sym_char] = ACTIONS(2121), - [anon_sym_short] = ACTIONS(2121), - [anon_sym_long] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_volatile] = ACTIONS(2121), - [anon_sym_ctypedef] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(2121), - [anon_sym_union] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [anon_sym_cppclass] = ACTIONS(2121), - [anon_sym_fused] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_packed] = ACTIONS(2121), - [anon_sym_inline] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_sizeof] = ACTIONS(2121), - [sym__dedent] = ACTIONS(2123), - [sym_string_start] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2087), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_import] = ACTIONS(2087), + [anon_sym_cimport] = ACTIONS(2087), + [anon_sym_from] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_print] = ACTIONS(2087), + [anon_sym_assert] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_del] = ACTIONS(2087), + [anon_sym_raise] = ACTIONS(2087), + [anon_sym_pass] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_async] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [anon_sym_try] = ACTIONS(2087), + [anon_sym_with] = ACTIONS(2087), + [anon_sym_def] = ACTIONS(2087), + [anon_sym_global] = ACTIONS(2087), + [anon_sym_nonlocal] = ACTIONS(2087), + [anon_sym_exec] = ACTIONS(2087), + [anon_sym_type] = ACTIONS(2087), + [anon_sym_class] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_AT] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2089), + [anon_sym_not] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_TILDE] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_lambda] = ACTIONS(2087), + [anon_sym_yield] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2089), + [anon_sym_None] = ACTIONS(2087), + [sym_integer] = ACTIONS(2087), + [sym_float] = ACTIONS(2089), + [anon_sym_await] = ACTIONS(2087), + [anon_sym_api] = ACTIONS(2087), + [sym_true] = ACTIONS(2087), + [sym_false] = ACTIONS(2087), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2087), + [anon_sym_include] = ACTIONS(2087), + [anon_sym_DEF] = ACTIONS(2087), + [anon_sym_IF] = ACTIONS(2087), + [anon_sym_cdef] = ACTIONS(2087), + [anon_sym_cpdef] = ACTIONS(2087), + [anon_sym_int] = ACTIONS(2087), + [anon_sym_double] = ACTIONS(2087), + [anon_sym_complex] = ACTIONS(2087), + [anon_sym_new] = ACTIONS(2087), + [anon_sym_signed] = ACTIONS(2087), + [anon_sym_unsigned] = ACTIONS(2087), + [anon_sym_char] = ACTIONS(2087), + [anon_sym_short] = ACTIONS(2087), + [anon_sym_long] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_volatile] = ACTIONS(2087), + [anon_sym_ctypedef] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2087), + [anon_sym_union] = ACTIONS(2087), + [anon_sym_enum] = ACTIONS(2087), + [anon_sym_cppclass] = ACTIONS(2087), + [anon_sym_fused] = ACTIONS(2087), + [anon_sym_public] = ACTIONS(2087), + [anon_sym_packed] = ACTIONS(2087), + [anon_sym_inline] = ACTIONS(2087), + [anon_sym_readonly] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2087), + [sym__dedent] = ACTIONS(2089), + [sym_string_start] = ACTIONS(2089), }, [655] = { - [sym_identifier] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_import] = ACTIONS(2125), - [anon_sym_cimport] = ACTIONS(2125), - [anon_sym_from] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_print] = ACTIONS(2125), - [anon_sym_assert] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_del] = ACTIONS(2125), - [anon_sym_raise] = ACTIONS(2125), - [anon_sym_pass] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_with] = ACTIONS(2125), - [anon_sym_def] = ACTIONS(2125), - [anon_sym_global] = ACTIONS(2125), - [anon_sym_nonlocal] = ACTIONS(2125), - [anon_sym_exec] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_class] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_not] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_lambda] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2127), - [anon_sym_None] = ACTIONS(2125), - [sym_integer] = ACTIONS(2125), - [sym_float] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_api] = ACTIONS(2125), - [sym_true] = ACTIONS(2125), - [sym_false] = ACTIONS(2125), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2125), - [anon_sym_include] = ACTIONS(2125), - [anon_sym_DEF] = ACTIONS(2125), - [anon_sym_cdef] = ACTIONS(2125), - [anon_sym_cpdef] = ACTIONS(2125), - [anon_sym_int] = ACTIONS(2125), - [anon_sym_double] = ACTIONS(2125), - [anon_sym_complex] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(2125), - [anon_sym_signed] = ACTIONS(2125), - [anon_sym_unsigned] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [anon_sym_short] = ACTIONS(2125), - [anon_sym_long] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_volatile] = ACTIONS(2125), - [anon_sym_ctypedef] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_cppclass] = ACTIONS(2125), - [anon_sym_fused] = ACTIONS(2125), - [anon_sym_public] = ACTIONS(2125), - [anon_sym_packed] = ACTIONS(2125), - [anon_sym_inline] = ACTIONS(2125), - [anon_sym_readonly] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2125), - [sym__dedent] = ACTIONS(2127), - [sym_string_start] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2093), + [anon_sym_import] = ACTIONS(2091), + [anon_sym_cimport] = ACTIONS(2091), + [anon_sym_from] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2093), + [anon_sym_print] = ACTIONS(2091), + [anon_sym_assert] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_del] = ACTIONS(2091), + [anon_sym_raise] = ACTIONS(2091), + [anon_sym_pass] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_try] = ACTIONS(2091), + [anon_sym_with] = ACTIONS(2091), + [anon_sym_def] = ACTIONS(2091), + [anon_sym_global] = ACTIONS(2091), + [anon_sym_nonlocal] = ACTIONS(2091), + [anon_sym_exec] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_class] = ACTIONS(2091), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_AT] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_PLUS] = ACTIONS(2093), + [anon_sym_not] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_lambda] = ACTIONS(2091), + [anon_sym_yield] = ACTIONS(2091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2093), + [anon_sym_None] = ACTIONS(2091), + [sym_integer] = ACTIONS(2091), + [sym_float] = ACTIONS(2093), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_api] = ACTIONS(2091), + [sym_true] = ACTIONS(2091), + [sym_false] = ACTIONS(2091), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2091), + [anon_sym_include] = ACTIONS(2091), + [anon_sym_DEF] = ACTIONS(2091), + [anon_sym_IF] = ACTIONS(2091), + [anon_sym_cdef] = ACTIONS(2091), + [anon_sym_cpdef] = ACTIONS(2091), + [anon_sym_int] = ACTIONS(2091), + [anon_sym_double] = ACTIONS(2091), + [anon_sym_complex] = ACTIONS(2091), + [anon_sym_new] = ACTIONS(2091), + [anon_sym_signed] = ACTIONS(2091), + [anon_sym_unsigned] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [anon_sym_short] = ACTIONS(2091), + [anon_sym_long] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_volatile] = ACTIONS(2091), + [anon_sym_ctypedef] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_cppclass] = ACTIONS(2091), + [anon_sym_fused] = ACTIONS(2091), + [anon_sym_public] = ACTIONS(2091), + [anon_sym_packed] = ACTIONS(2091), + [anon_sym_inline] = ACTIONS(2091), + [anon_sym_readonly] = ACTIONS(2091), + [anon_sym_sizeof] = ACTIONS(2091), + [sym__dedent] = ACTIONS(2093), + [sym_string_start] = ACTIONS(2093), }, [656] = { - [sym_identifier] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2131), - [anon_sym_import] = ACTIONS(2129), - [anon_sym_cimport] = ACTIONS(2129), - [anon_sym_from] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_print] = ACTIONS(2129), - [anon_sym_assert] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_del] = ACTIONS(2129), - [anon_sym_raise] = ACTIONS(2129), - [anon_sym_pass] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_match] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [anon_sym_with] = ACTIONS(2129), - [anon_sym_def] = ACTIONS(2129), - [anon_sym_global] = ACTIONS(2129), - [anon_sym_nonlocal] = ACTIONS(2129), - [anon_sym_exec] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_class] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_AT] = ACTIONS(2131), - [anon_sym_DASH] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_PLUS] = ACTIONS(2131), - [anon_sym_not] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_TILDE] = ACTIONS(2131), - [anon_sym_LT] = ACTIONS(2131), - [anon_sym_lambda] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2131), - [anon_sym_None] = ACTIONS(2129), - [sym_integer] = ACTIONS(2129), - [sym_float] = ACTIONS(2131), - [anon_sym_await] = ACTIONS(2129), - [anon_sym_api] = ACTIONS(2129), - [sym_true] = ACTIONS(2129), - [sym_false] = ACTIONS(2129), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2129), - [anon_sym_include] = ACTIONS(2129), - [anon_sym_DEF] = ACTIONS(2129), - [anon_sym_cdef] = ACTIONS(2129), - [anon_sym_cpdef] = ACTIONS(2129), - [anon_sym_int] = ACTIONS(2129), - [anon_sym_double] = ACTIONS(2129), - [anon_sym_complex] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2129), - [anon_sym_signed] = ACTIONS(2129), - [anon_sym_unsigned] = ACTIONS(2129), - [anon_sym_char] = ACTIONS(2129), - [anon_sym_short] = ACTIONS(2129), - [anon_sym_long] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_volatile] = ACTIONS(2129), - [anon_sym_ctypedef] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(2129), - [anon_sym_union] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [anon_sym_cppclass] = ACTIONS(2129), - [anon_sym_fused] = ACTIONS(2129), - [anon_sym_public] = ACTIONS(2129), - [anon_sym_packed] = ACTIONS(2129), - [anon_sym_inline] = ACTIONS(2129), - [anon_sym_readonly] = ACTIONS(2129), - [anon_sym_sizeof] = ACTIONS(2129), - [sym__dedent] = ACTIONS(2131), - [sym_string_start] = ACTIONS(2131), + [sym_identifier] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_import] = ACTIONS(2095), + [anon_sym_cimport] = ACTIONS(2095), + [anon_sym_from] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_print] = ACTIONS(2095), + [anon_sym_assert] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_del] = ACTIONS(2095), + [anon_sym_raise] = ACTIONS(2095), + [anon_sym_pass] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_async] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_try] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2095), + [anon_sym_def] = ACTIONS(2095), + [anon_sym_global] = ACTIONS(2095), + [anon_sym_nonlocal] = ACTIONS(2095), + [anon_sym_exec] = ACTIONS(2095), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_class] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_AT] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_not] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_TILDE] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_lambda] = ACTIONS(2095), + [anon_sym_yield] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2097), + [anon_sym_None] = ACTIONS(2095), + [sym_integer] = ACTIONS(2095), + [sym_float] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2095), + [anon_sym_api] = ACTIONS(2095), + [sym_true] = ACTIONS(2095), + [sym_false] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2095), + [anon_sym_include] = ACTIONS(2095), + [anon_sym_DEF] = ACTIONS(2095), + [anon_sym_IF] = ACTIONS(2095), + [anon_sym_cdef] = ACTIONS(2095), + [anon_sym_cpdef] = ACTIONS(2095), + [anon_sym_int] = ACTIONS(2095), + [anon_sym_double] = ACTIONS(2095), + [anon_sym_complex] = ACTIONS(2095), + [anon_sym_new] = ACTIONS(2095), + [anon_sym_signed] = ACTIONS(2095), + [anon_sym_unsigned] = ACTIONS(2095), + [anon_sym_char] = ACTIONS(2095), + [anon_sym_short] = ACTIONS(2095), + [anon_sym_long] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [anon_sym_volatile] = ACTIONS(2095), + [anon_sym_ctypedef] = ACTIONS(2095), + [anon_sym_struct] = ACTIONS(2095), + [anon_sym_union] = ACTIONS(2095), + [anon_sym_enum] = ACTIONS(2095), + [anon_sym_cppclass] = ACTIONS(2095), + [anon_sym_fused] = ACTIONS(2095), + [anon_sym_public] = ACTIONS(2095), + [anon_sym_packed] = ACTIONS(2095), + [anon_sym_inline] = ACTIONS(2095), + [anon_sym_readonly] = ACTIONS(2095), + [anon_sym_sizeof] = ACTIONS(2095), + [sym__dedent] = ACTIONS(2097), + [sym_string_start] = ACTIONS(2097), }, [657] = { - [sym_identifier] = ACTIONS(2133), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_import] = ACTIONS(2133), - [anon_sym_cimport] = ACTIONS(2133), - [anon_sym_from] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2135), - [anon_sym_print] = ACTIONS(2133), - [anon_sym_assert] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_del] = ACTIONS(2133), - [anon_sym_raise] = ACTIONS(2133), - [anon_sym_pass] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_async] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [anon_sym_with] = ACTIONS(2133), - [anon_sym_def] = ACTIONS(2133), - [anon_sym_global] = ACTIONS(2133), - [anon_sym_nonlocal] = ACTIONS(2133), - [anon_sym_exec] = ACTIONS(2133), - [anon_sym_type] = ACTIONS(2133), - [anon_sym_class] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_not] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(2135), - [anon_sym_lambda] = ACTIONS(2133), - [anon_sym_yield] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2135), - [anon_sym_None] = ACTIONS(2133), - [sym_integer] = ACTIONS(2133), - [sym_float] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2133), - [anon_sym_api] = ACTIONS(2133), - [sym_true] = ACTIONS(2133), - [sym_false] = ACTIONS(2133), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2133), - [anon_sym_include] = ACTIONS(2133), - [anon_sym_DEF] = ACTIONS(2133), - [anon_sym_cdef] = ACTIONS(2133), - [anon_sym_cpdef] = ACTIONS(2133), - [anon_sym_int] = ACTIONS(2133), - [anon_sym_double] = ACTIONS(2133), - [anon_sym_complex] = ACTIONS(2133), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_signed] = ACTIONS(2133), - [anon_sym_unsigned] = ACTIONS(2133), - [anon_sym_char] = ACTIONS(2133), - [anon_sym_short] = ACTIONS(2133), - [anon_sym_long] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_volatile] = ACTIONS(2133), - [anon_sym_ctypedef] = ACTIONS(2133), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_union] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [anon_sym_cppclass] = ACTIONS(2133), - [anon_sym_fused] = ACTIONS(2133), - [anon_sym_public] = ACTIONS(2133), - [anon_sym_packed] = ACTIONS(2133), - [anon_sym_inline] = ACTIONS(2133), - [anon_sym_readonly] = ACTIONS(2133), - [anon_sym_sizeof] = ACTIONS(2133), - [sym__dedent] = ACTIONS(2135), - [sym_string_start] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_import] = ACTIONS(2099), + [anon_sym_cimport] = ACTIONS(2099), + [anon_sym_from] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_print] = ACTIONS(2099), + [anon_sym_assert] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_del] = ACTIONS(2099), + [anon_sym_raise] = ACTIONS(2099), + [anon_sym_pass] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_async] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_try] = ACTIONS(2099), + [anon_sym_with] = ACTIONS(2099), + [anon_sym_def] = ACTIONS(2099), + [anon_sym_global] = ACTIONS(2099), + [anon_sym_nonlocal] = ACTIONS(2099), + [anon_sym_exec] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_class] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_AT] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_PLUS] = ACTIONS(2101), + [anon_sym_not] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_TILDE] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_lambda] = ACTIONS(2099), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2101), + [anon_sym_None] = ACTIONS(2099), + [sym_integer] = ACTIONS(2099), + [sym_float] = ACTIONS(2101), + [anon_sym_await] = ACTIONS(2099), + [anon_sym_api] = ACTIONS(2099), + [sym_true] = ACTIONS(2099), + [sym_false] = ACTIONS(2099), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2099), + [anon_sym_include] = ACTIONS(2099), + [anon_sym_DEF] = ACTIONS(2099), + [anon_sym_IF] = ACTIONS(2099), + [anon_sym_cdef] = ACTIONS(2099), + [anon_sym_cpdef] = ACTIONS(2099), + [anon_sym_int] = ACTIONS(2099), + [anon_sym_double] = ACTIONS(2099), + [anon_sym_complex] = ACTIONS(2099), + [anon_sym_new] = ACTIONS(2099), + [anon_sym_signed] = ACTIONS(2099), + [anon_sym_unsigned] = ACTIONS(2099), + [anon_sym_char] = ACTIONS(2099), + [anon_sym_short] = ACTIONS(2099), + [anon_sym_long] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_volatile] = ACTIONS(2099), + [anon_sym_ctypedef] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_union] = ACTIONS(2099), + [anon_sym_enum] = ACTIONS(2099), + [anon_sym_cppclass] = ACTIONS(2099), + [anon_sym_fused] = ACTIONS(2099), + [anon_sym_public] = ACTIONS(2099), + [anon_sym_packed] = ACTIONS(2099), + [anon_sym_inline] = ACTIONS(2099), + [anon_sym_readonly] = ACTIONS(2099), + [anon_sym_sizeof] = ACTIONS(2099), + [sym__dedent] = ACTIONS(2101), + [sym_string_start] = ACTIONS(2101), }, [658] = { - [sym_identifier] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_import] = ACTIONS(2137), - [anon_sym_cimport] = ACTIONS(2137), - [anon_sym_from] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_print] = ACTIONS(2137), - [anon_sym_assert] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_del] = ACTIONS(2137), - [anon_sym_raise] = ACTIONS(2137), - [anon_sym_pass] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_with] = ACTIONS(2137), - [anon_sym_def] = ACTIONS(2137), - [anon_sym_global] = ACTIONS(2137), - [anon_sym_nonlocal] = ACTIONS(2137), - [anon_sym_exec] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_class] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_PLUS] = ACTIONS(2139), - [anon_sym_not] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_lambda] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2139), - [anon_sym_None] = ACTIONS(2137), - [sym_integer] = ACTIONS(2137), - [sym_float] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2137), - [anon_sym_api] = ACTIONS(2137), - [sym_true] = ACTIONS(2137), - [sym_false] = ACTIONS(2137), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2137), - [anon_sym_include] = ACTIONS(2137), - [anon_sym_DEF] = ACTIONS(2137), - [anon_sym_cdef] = ACTIONS(2137), - [anon_sym_cpdef] = ACTIONS(2137), - [anon_sym_int] = ACTIONS(2137), - [anon_sym_double] = ACTIONS(2137), - [anon_sym_complex] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2137), - [anon_sym_signed] = ACTIONS(2137), - [anon_sym_unsigned] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [anon_sym_short] = ACTIONS(2137), - [anon_sym_long] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_volatile] = ACTIONS(2137), - [anon_sym_ctypedef] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_cppclass] = ACTIONS(2137), - [anon_sym_fused] = ACTIONS(2137), - [anon_sym_public] = ACTIONS(2137), - [anon_sym_packed] = ACTIONS(2137), - [anon_sym_inline] = ACTIONS(2137), - [anon_sym_readonly] = ACTIONS(2137), - [anon_sym_sizeof] = ACTIONS(2137), - [sym__dedent] = ACTIONS(2139), - [sym_string_start] = ACTIONS(2139), + [sym_identifier] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_import] = ACTIONS(2103), + [anon_sym_cimport] = ACTIONS(2103), + [anon_sym_from] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_print] = ACTIONS(2103), + [anon_sym_assert] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_del] = ACTIONS(2103), + [anon_sym_raise] = ACTIONS(2103), + [anon_sym_pass] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_match] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [anon_sym_with] = ACTIONS(2103), + [anon_sym_def] = ACTIONS(2103), + [anon_sym_global] = ACTIONS(2103), + [anon_sym_nonlocal] = ACTIONS(2103), + [anon_sym_exec] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_class] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_AT] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_not] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_lambda] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2105), + [anon_sym_None] = ACTIONS(2103), + [sym_integer] = ACTIONS(2103), + [sym_float] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_api] = ACTIONS(2103), + [sym_true] = ACTIONS(2103), + [sym_false] = ACTIONS(2103), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2103), + [anon_sym_include] = ACTIONS(2103), + [anon_sym_DEF] = ACTIONS(2103), + [anon_sym_IF] = ACTIONS(2103), + [anon_sym_cdef] = ACTIONS(2103), + [anon_sym_cpdef] = ACTIONS(2103), + [anon_sym_int] = ACTIONS(2103), + [anon_sym_double] = ACTIONS(2103), + [anon_sym_complex] = ACTIONS(2103), + [anon_sym_new] = ACTIONS(2103), + [anon_sym_signed] = ACTIONS(2103), + [anon_sym_unsigned] = ACTIONS(2103), + [anon_sym_char] = ACTIONS(2103), + [anon_sym_short] = ACTIONS(2103), + [anon_sym_long] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_volatile] = ACTIONS(2103), + [anon_sym_ctypedef] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2103), + [anon_sym_union] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [anon_sym_cppclass] = ACTIONS(2103), + [anon_sym_fused] = ACTIONS(2103), + [anon_sym_public] = ACTIONS(2103), + [anon_sym_packed] = ACTIONS(2103), + [anon_sym_inline] = ACTIONS(2103), + [anon_sym_readonly] = ACTIONS(2103), + [anon_sym_sizeof] = ACTIONS(2103), + [sym__dedent] = ACTIONS(2105), + [sym_string_start] = ACTIONS(2105), }, [659] = { - [sym_identifier] = ACTIONS(2141), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_cimport] = ACTIONS(2141), - [anon_sym_from] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(2143), - [anon_sym_print] = ACTIONS(2141), - [anon_sym_assert] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_del] = ACTIONS(2141), - [anon_sym_raise] = ACTIONS(2141), - [anon_sym_pass] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_try] = ACTIONS(2141), - [anon_sym_with] = ACTIONS(2141), - [anon_sym_def] = ACTIONS(2141), - [anon_sym_global] = ACTIONS(2141), - [anon_sym_nonlocal] = ACTIONS(2141), - [anon_sym_exec] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_class] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2143), - [anon_sym_AT] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_PLUS] = ACTIONS(2143), - [anon_sym_not] = ACTIONS(2141), - [anon_sym_AMP] = ACTIONS(2143), - [anon_sym_TILDE] = ACTIONS(2143), - [anon_sym_LT] = ACTIONS(2143), - [anon_sym_lambda] = ACTIONS(2141), - [anon_sym_yield] = ACTIONS(2141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2143), - [anon_sym_None] = ACTIONS(2141), - [sym_integer] = ACTIONS(2141), - [sym_float] = ACTIONS(2143), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_api] = ACTIONS(2141), - [sym_true] = ACTIONS(2141), - [sym_false] = ACTIONS(2141), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2141), - [anon_sym_include] = ACTIONS(2141), - [anon_sym_DEF] = ACTIONS(2141), - [anon_sym_cdef] = ACTIONS(2141), - [anon_sym_cpdef] = ACTIONS(2141), - [anon_sym_int] = ACTIONS(2141), - [anon_sym_double] = ACTIONS(2141), - [anon_sym_complex] = ACTIONS(2141), - [anon_sym_new] = ACTIONS(2141), - [anon_sym_signed] = ACTIONS(2141), - [anon_sym_unsigned] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [anon_sym_short] = ACTIONS(2141), - [anon_sym_long] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_volatile] = ACTIONS(2141), - [anon_sym_ctypedef] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_cppclass] = ACTIONS(2141), - [anon_sym_fused] = ACTIONS(2141), - [anon_sym_public] = ACTIONS(2141), - [anon_sym_packed] = ACTIONS(2141), - [anon_sym_inline] = ACTIONS(2141), - [anon_sym_readonly] = ACTIONS(2141), - [anon_sym_sizeof] = ACTIONS(2141), - [sym__dedent] = ACTIONS(2143), - [sym_string_start] = ACTIONS(2143), + [sym_identifier] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_import] = ACTIONS(2107), + [anon_sym_cimport] = ACTIONS(2107), + [anon_sym_from] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_print] = ACTIONS(2107), + [anon_sym_assert] = ACTIONS(2107), + [anon_sym_return] = ACTIONS(2107), + [anon_sym_del] = ACTIONS(2107), + [anon_sym_raise] = ACTIONS(2107), + [anon_sym_pass] = ACTIONS(2107), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2107), + [anon_sym_if] = ACTIONS(2107), + [anon_sym_match] = ACTIONS(2107), + [anon_sym_async] = ACTIONS(2107), + [anon_sym_for] = ACTIONS(2107), + [anon_sym_while] = ACTIONS(2107), + [anon_sym_try] = ACTIONS(2107), + [anon_sym_with] = ACTIONS(2107), + [anon_sym_def] = ACTIONS(2107), + [anon_sym_global] = ACTIONS(2107), + [anon_sym_nonlocal] = ACTIONS(2107), + [anon_sym_exec] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2107), + [anon_sym_class] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_AT] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_not] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_lambda] = ACTIONS(2107), + [anon_sym_yield] = ACTIONS(2107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2109), + [anon_sym_None] = ACTIONS(2107), + [sym_integer] = ACTIONS(2107), + [sym_float] = ACTIONS(2109), + [anon_sym_await] = ACTIONS(2107), + [anon_sym_api] = ACTIONS(2107), + [sym_true] = ACTIONS(2107), + [sym_false] = ACTIONS(2107), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2107), + [anon_sym_include] = ACTIONS(2107), + [anon_sym_DEF] = ACTIONS(2107), + [anon_sym_IF] = ACTIONS(2107), + [anon_sym_cdef] = ACTIONS(2107), + [anon_sym_cpdef] = ACTIONS(2107), + [anon_sym_int] = ACTIONS(2107), + [anon_sym_double] = ACTIONS(2107), + [anon_sym_complex] = ACTIONS(2107), + [anon_sym_new] = ACTIONS(2107), + [anon_sym_signed] = ACTIONS(2107), + [anon_sym_unsigned] = ACTIONS(2107), + [anon_sym_char] = ACTIONS(2107), + [anon_sym_short] = ACTIONS(2107), + [anon_sym_long] = ACTIONS(2107), + [anon_sym_const] = ACTIONS(2107), + [anon_sym_volatile] = ACTIONS(2107), + [anon_sym_ctypedef] = ACTIONS(2107), + [anon_sym_struct] = ACTIONS(2107), + [anon_sym_union] = ACTIONS(2107), + [anon_sym_enum] = ACTIONS(2107), + [anon_sym_cppclass] = ACTIONS(2107), + [anon_sym_fused] = ACTIONS(2107), + [anon_sym_public] = ACTIONS(2107), + [anon_sym_packed] = ACTIONS(2107), + [anon_sym_inline] = ACTIONS(2107), + [anon_sym_readonly] = ACTIONS(2107), + [anon_sym_sizeof] = ACTIONS(2107), + [sym__dedent] = ACTIONS(2109), + [sym_string_start] = ACTIONS(2109), }, [660] = { - [sym_identifier] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2147), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_cimport] = ACTIONS(2145), - [anon_sym_from] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2147), - [anon_sym_print] = ACTIONS(2145), - [anon_sym_assert] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_del] = ACTIONS(2145), - [anon_sym_raise] = ACTIONS(2145), - [anon_sym_pass] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_match] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_def] = ACTIONS(2145), - [anon_sym_global] = ACTIONS(2145), - [anon_sym_nonlocal] = ACTIONS(2145), - [anon_sym_exec] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_AT] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_PLUS] = ACTIONS(2147), - [anon_sym_not] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2147), - [anon_sym_TILDE] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(2147), - [anon_sym_lambda] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2147), - [anon_sym_None] = ACTIONS(2145), - [sym_integer] = ACTIONS(2145), - [sym_float] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_api] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2145), - [anon_sym_include] = ACTIONS(2145), - [anon_sym_DEF] = ACTIONS(2145), - [anon_sym_cdef] = ACTIONS(2145), - [anon_sym_cpdef] = ACTIONS(2145), - [anon_sym_int] = ACTIONS(2145), - [anon_sym_double] = ACTIONS(2145), - [anon_sym_complex] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_signed] = ACTIONS(2145), - [anon_sym_unsigned] = ACTIONS(2145), - [anon_sym_char] = ACTIONS(2145), - [anon_sym_short] = ACTIONS(2145), - [anon_sym_long] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_volatile] = ACTIONS(2145), - [anon_sym_ctypedef] = ACTIONS(2145), - [anon_sym_struct] = ACTIONS(2145), - [anon_sym_union] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [anon_sym_cppclass] = ACTIONS(2145), - [anon_sym_fused] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_packed] = ACTIONS(2145), - [anon_sym_inline] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_sizeof] = ACTIONS(2145), - [sym__dedent] = ACTIONS(2147), - [sym_string_start] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2113), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_cimport] = ACTIONS(2111), + [anon_sym_from] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_STAR] = ACTIONS(2113), + [anon_sym_print] = ACTIONS(2111), + [anon_sym_assert] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_del] = ACTIONS(2111), + [anon_sym_raise] = ACTIONS(2111), + [anon_sym_pass] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_def] = ACTIONS(2111), + [anon_sym_global] = ACTIONS(2111), + [anon_sym_nonlocal] = ACTIONS(2111), + [anon_sym_exec] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_AT] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2113), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_not] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_lambda] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2113), + [anon_sym_None] = ACTIONS(2111), + [sym_integer] = ACTIONS(2111), + [sym_float] = ACTIONS(2113), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_api] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2111), + [anon_sym_include] = ACTIONS(2111), + [anon_sym_DEF] = ACTIONS(2111), + [anon_sym_IF] = ACTIONS(2111), + [anon_sym_cdef] = ACTIONS(2111), + [anon_sym_cpdef] = ACTIONS(2111), + [anon_sym_int] = ACTIONS(2111), + [anon_sym_double] = ACTIONS(2111), + [anon_sym_complex] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_signed] = ACTIONS(2111), + [anon_sym_unsigned] = ACTIONS(2111), + [anon_sym_char] = ACTIONS(2111), + [anon_sym_short] = ACTIONS(2111), + [anon_sym_long] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_volatile] = ACTIONS(2111), + [anon_sym_ctypedef] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(2111), + [anon_sym_union] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [anon_sym_cppclass] = ACTIONS(2111), + [anon_sym_fused] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_packed] = ACTIONS(2111), + [anon_sym_inline] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_sizeof] = ACTIONS(2111), + [sym__dedent] = ACTIONS(2113), + [sym_string_start] = ACTIONS(2113), }, [661] = { - [sym_identifier] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_cimport] = ACTIONS(2149), - [anon_sym_from] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_print] = ACTIONS(2149), - [anon_sym_assert] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_del] = ACTIONS(2149), - [anon_sym_raise] = ACTIONS(2149), - [anon_sym_pass] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_match] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_def] = ACTIONS(2149), - [anon_sym_global] = ACTIONS(2149), - [anon_sym_nonlocal] = ACTIONS(2149), - [anon_sym_exec] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2151), - [anon_sym_not] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_lambda] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2151), - [anon_sym_None] = ACTIONS(2149), - [sym_integer] = ACTIONS(2149), - [sym_float] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_api] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2149), - [anon_sym_include] = ACTIONS(2149), - [anon_sym_DEF] = ACTIONS(2149), - [anon_sym_cdef] = ACTIONS(2149), - [anon_sym_cpdef] = ACTIONS(2149), - [anon_sym_int] = ACTIONS(2149), - [anon_sym_double] = ACTIONS(2149), - [anon_sym_complex] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_signed] = ACTIONS(2149), - [anon_sym_unsigned] = ACTIONS(2149), - [anon_sym_char] = ACTIONS(2149), - [anon_sym_short] = ACTIONS(2149), - [anon_sym_long] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_volatile] = ACTIONS(2149), - [anon_sym_ctypedef] = ACTIONS(2149), - [anon_sym_struct] = ACTIONS(2149), - [anon_sym_union] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [anon_sym_cppclass] = ACTIONS(2149), - [anon_sym_fused] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_packed] = ACTIONS(2149), - [anon_sym_inline] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_sizeof] = ACTIONS(2149), - [sym__dedent] = ACTIONS(2151), - [sym_string_start] = ACTIONS(2151), + [sym_identifier] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2115), + [anon_sym_cimport] = ACTIONS(2115), + [anon_sym_from] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2117), + [anon_sym_print] = ACTIONS(2115), + [anon_sym_assert] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_del] = ACTIONS(2115), + [anon_sym_raise] = ACTIONS(2115), + [anon_sym_pass] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_async] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [anon_sym_try] = ACTIONS(2115), + [anon_sym_with] = ACTIONS(2115), + [anon_sym_def] = ACTIONS(2115), + [anon_sym_global] = ACTIONS(2115), + [anon_sym_nonlocal] = ACTIONS(2115), + [anon_sym_exec] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_class] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_AT] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_not] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_lambda] = ACTIONS(2115), + [anon_sym_yield] = ACTIONS(2115), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2117), + [anon_sym_None] = ACTIONS(2115), + [sym_integer] = ACTIONS(2115), + [sym_float] = ACTIONS(2117), + [anon_sym_await] = ACTIONS(2115), + [anon_sym_api] = ACTIONS(2115), + [sym_true] = ACTIONS(2115), + [sym_false] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2115), + [anon_sym_include] = ACTIONS(2115), + [anon_sym_DEF] = ACTIONS(2115), + [anon_sym_IF] = ACTIONS(2115), + [anon_sym_cdef] = ACTIONS(2115), + [anon_sym_cpdef] = ACTIONS(2115), + [anon_sym_int] = ACTIONS(2115), + [anon_sym_double] = ACTIONS(2115), + [anon_sym_complex] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2115), + [anon_sym_signed] = ACTIONS(2115), + [anon_sym_unsigned] = ACTIONS(2115), + [anon_sym_char] = ACTIONS(2115), + [anon_sym_short] = ACTIONS(2115), + [anon_sym_long] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [anon_sym_volatile] = ACTIONS(2115), + [anon_sym_ctypedef] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_union] = ACTIONS(2115), + [anon_sym_enum] = ACTIONS(2115), + [anon_sym_cppclass] = ACTIONS(2115), + [anon_sym_fused] = ACTIONS(2115), + [anon_sym_public] = ACTIONS(2115), + [anon_sym_packed] = ACTIONS(2115), + [anon_sym_inline] = ACTIONS(2115), + [anon_sym_readonly] = ACTIONS(2115), + [anon_sym_sizeof] = ACTIONS(2115), + [sym__dedent] = ACTIONS(2117), + [sym_string_start] = ACTIONS(2117), }, [662] = { - [sym_identifier] = ACTIONS(2153), - [anon_sym_SEMI] = ACTIONS(2155), - [anon_sym_import] = ACTIONS(2153), - [anon_sym_cimport] = ACTIONS(2153), - [anon_sym_from] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2155), - [anon_sym_print] = ACTIONS(2153), - [anon_sym_assert] = ACTIONS(2153), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_del] = ACTIONS(2153), - [anon_sym_raise] = ACTIONS(2153), - [anon_sym_pass] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_match] = ACTIONS(2153), - [anon_sym_async] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2153), - [anon_sym_try] = ACTIONS(2153), - [anon_sym_with] = ACTIONS(2153), - [anon_sym_def] = ACTIONS(2153), - [anon_sym_global] = ACTIONS(2153), - [anon_sym_nonlocal] = ACTIONS(2153), - [anon_sym_exec] = ACTIONS(2153), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_class] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_AT] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_not] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2155), - [anon_sym_LT] = ACTIONS(2155), - [anon_sym_lambda] = ACTIONS(2153), - [anon_sym_yield] = ACTIONS(2153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2155), - [anon_sym_None] = ACTIONS(2153), - [sym_integer] = ACTIONS(2153), - [sym_float] = ACTIONS(2155), - [anon_sym_await] = ACTIONS(2153), - [anon_sym_api] = ACTIONS(2153), - [sym_true] = ACTIONS(2153), - [sym_false] = ACTIONS(2153), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2153), - [anon_sym_include] = ACTIONS(2153), - [anon_sym_DEF] = ACTIONS(2153), - [anon_sym_cdef] = ACTIONS(2153), - [anon_sym_cpdef] = ACTIONS(2153), - [anon_sym_int] = ACTIONS(2153), - [anon_sym_double] = ACTIONS(2153), - [anon_sym_complex] = ACTIONS(2153), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_signed] = ACTIONS(2153), - [anon_sym_unsigned] = ACTIONS(2153), - [anon_sym_char] = ACTIONS(2153), - [anon_sym_short] = ACTIONS(2153), - [anon_sym_long] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_volatile] = ACTIONS(2153), - [anon_sym_ctypedef] = ACTIONS(2153), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_union] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [anon_sym_cppclass] = ACTIONS(2153), - [anon_sym_fused] = ACTIONS(2153), - [anon_sym_public] = ACTIONS(2153), - [anon_sym_packed] = ACTIONS(2153), - [anon_sym_inline] = ACTIONS(2153), - [anon_sym_readonly] = ACTIONS(2153), - [anon_sym_sizeof] = ACTIONS(2153), - [sym__dedent] = ACTIONS(2155), - [sym_string_start] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2119), + [anon_sym_SEMI] = ACTIONS(2121), + [anon_sym_import] = ACTIONS(2119), + [anon_sym_cimport] = ACTIONS(2119), + [anon_sym_from] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2121), + [anon_sym_print] = ACTIONS(2119), + [anon_sym_assert] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2119), + [anon_sym_del] = ACTIONS(2119), + [anon_sym_raise] = ACTIONS(2119), + [anon_sym_pass] = ACTIONS(2119), + [anon_sym_break] = ACTIONS(2119), + [anon_sym_continue] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_async] = ACTIONS(2119), + [anon_sym_for] = ACTIONS(2119), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_try] = ACTIONS(2119), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_def] = ACTIONS(2119), + [anon_sym_global] = ACTIONS(2119), + [anon_sym_nonlocal] = ACTIONS(2119), + [anon_sym_exec] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2119), + [anon_sym_class] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_AT] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_not] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2121), + [anon_sym_TILDE] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), + [anon_sym_lambda] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2121), + [anon_sym_None] = ACTIONS(2119), + [sym_integer] = ACTIONS(2119), + [sym_float] = ACTIONS(2121), + [anon_sym_await] = ACTIONS(2119), + [anon_sym_api] = ACTIONS(2119), + [sym_true] = ACTIONS(2119), + [sym_false] = ACTIONS(2119), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2119), + [anon_sym_include] = ACTIONS(2119), + [anon_sym_DEF] = ACTIONS(2119), + [anon_sym_IF] = ACTIONS(2119), + [anon_sym_cdef] = ACTIONS(2119), + [anon_sym_cpdef] = ACTIONS(2119), + [anon_sym_int] = ACTIONS(2119), + [anon_sym_double] = ACTIONS(2119), + [anon_sym_complex] = ACTIONS(2119), + [anon_sym_new] = ACTIONS(2119), + [anon_sym_signed] = ACTIONS(2119), + [anon_sym_unsigned] = ACTIONS(2119), + [anon_sym_char] = ACTIONS(2119), + [anon_sym_short] = ACTIONS(2119), + [anon_sym_long] = ACTIONS(2119), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_volatile] = ACTIONS(2119), + [anon_sym_ctypedef] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2119), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_cppclass] = ACTIONS(2119), + [anon_sym_fused] = ACTIONS(2119), + [anon_sym_public] = ACTIONS(2119), + [anon_sym_packed] = ACTIONS(2119), + [anon_sym_inline] = ACTIONS(2119), + [anon_sym_readonly] = ACTIONS(2119), + [anon_sym_sizeof] = ACTIONS(2119), + [sym__dedent] = ACTIONS(2121), + [sym_string_start] = ACTIONS(2121), }, [663] = { - [sym_identifier] = ACTIONS(2157), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2157), - [anon_sym_cimport] = ACTIONS(2157), - [anon_sym_from] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_print] = ACTIONS(2157), - [anon_sym_assert] = ACTIONS(2157), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_del] = ACTIONS(2157), - [anon_sym_raise] = ACTIONS(2157), - [anon_sym_pass] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2157), - [anon_sym_async] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2157), - [anon_sym_with] = ACTIONS(2157), - [anon_sym_def] = ACTIONS(2157), - [anon_sym_global] = ACTIONS(2157), - [anon_sym_nonlocal] = ACTIONS(2157), - [anon_sym_exec] = ACTIONS(2157), - [anon_sym_type] = ACTIONS(2157), - [anon_sym_class] = ACTIONS(2157), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_not] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_lambda] = ACTIONS(2157), - [anon_sym_yield] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2159), - [anon_sym_None] = ACTIONS(2157), - [sym_integer] = ACTIONS(2157), - [sym_float] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2157), - [anon_sym_api] = ACTIONS(2157), - [sym_true] = ACTIONS(2157), - [sym_false] = ACTIONS(2157), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2157), - [anon_sym_include] = ACTIONS(2157), - [anon_sym_DEF] = ACTIONS(2157), - [anon_sym_cdef] = ACTIONS(2157), - [anon_sym_cpdef] = ACTIONS(2157), - [anon_sym_int] = ACTIONS(2157), - [anon_sym_double] = ACTIONS(2157), - [anon_sym_complex] = ACTIONS(2157), - [anon_sym_new] = ACTIONS(2157), - [anon_sym_signed] = ACTIONS(2157), - [anon_sym_unsigned] = ACTIONS(2157), - [anon_sym_char] = ACTIONS(2157), - [anon_sym_short] = ACTIONS(2157), - [anon_sym_long] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [anon_sym_volatile] = ACTIONS(2157), - [anon_sym_ctypedef] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2157), - [anon_sym_union] = ACTIONS(2157), - [anon_sym_enum] = ACTIONS(2157), - [anon_sym_cppclass] = ACTIONS(2157), - [anon_sym_fused] = ACTIONS(2157), - [anon_sym_public] = ACTIONS(2157), - [anon_sym_packed] = ACTIONS(2157), - [anon_sym_inline] = ACTIONS(2157), - [anon_sym_readonly] = ACTIONS(2157), - [anon_sym_sizeof] = ACTIONS(2157), - [sym__dedent] = ACTIONS(2159), - [sym_string_start] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2123), + [anon_sym_cimport] = ACTIONS(2123), + [anon_sym_from] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_print] = ACTIONS(2123), + [anon_sym_assert] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_del] = ACTIONS(2123), + [anon_sym_raise] = ACTIONS(2123), + [anon_sym_pass] = ACTIONS(2123), + [anon_sym_break] = ACTIONS(2123), + [anon_sym_continue] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2123), + [anon_sym_while] = ACTIONS(2123), + [anon_sym_try] = ACTIONS(2123), + [anon_sym_with] = ACTIONS(2123), + [anon_sym_def] = ACTIONS(2123), + [anon_sym_global] = ACTIONS(2123), + [anon_sym_nonlocal] = ACTIONS(2123), + [anon_sym_exec] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2123), + [anon_sym_class] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_not] = ACTIONS(2123), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_lambda] = ACTIONS(2123), + [anon_sym_yield] = ACTIONS(2123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2125), + [anon_sym_None] = ACTIONS(2123), + [sym_integer] = ACTIONS(2123), + [sym_float] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2123), + [anon_sym_api] = ACTIONS(2123), + [sym_true] = ACTIONS(2123), + [sym_false] = ACTIONS(2123), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2123), + [anon_sym_include] = ACTIONS(2123), + [anon_sym_DEF] = ACTIONS(2123), + [anon_sym_IF] = ACTIONS(2123), + [anon_sym_cdef] = ACTIONS(2123), + [anon_sym_cpdef] = ACTIONS(2123), + [anon_sym_int] = ACTIONS(2123), + [anon_sym_double] = ACTIONS(2123), + [anon_sym_complex] = ACTIONS(2123), + [anon_sym_new] = ACTIONS(2123), + [anon_sym_signed] = ACTIONS(2123), + [anon_sym_unsigned] = ACTIONS(2123), + [anon_sym_char] = ACTIONS(2123), + [anon_sym_short] = ACTIONS(2123), + [anon_sym_long] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [anon_sym_volatile] = ACTIONS(2123), + [anon_sym_ctypedef] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2123), + [anon_sym_enum] = ACTIONS(2123), + [anon_sym_cppclass] = ACTIONS(2123), + [anon_sym_fused] = ACTIONS(2123), + [anon_sym_public] = ACTIONS(2123), + [anon_sym_packed] = ACTIONS(2123), + [anon_sym_inline] = ACTIONS(2123), + [anon_sym_readonly] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2123), + [sym__dedent] = ACTIONS(2125), + [sym_string_start] = ACTIONS(2125), }, [664] = { - [sym_identifier] = ACTIONS(2161), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_import] = ACTIONS(2161), - [anon_sym_cimport] = ACTIONS(2161), - [anon_sym_from] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_print] = ACTIONS(2161), - [anon_sym_assert] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_del] = ACTIONS(2161), - [anon_sym_raise] = ACTIONS(2161), - [anon_sym_pass] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [anon_sym_try] = ACTIONS(2161), - [anon_sym_with] = ACTIONS(2161), - [anon_sym_def] = ACTIONS(2161), - [anon_sym_global] = ACTIONS(2161), - [anon_sym_nonlocal] = ACTIONS(2161), - [anon_sym_exec] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_class] = ACTIONS(2161), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_AT] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_not] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_TILDE] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_lambda] = ACTIONS(2161), - [anon_sym_yield] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2163), - [anon_sym_None] = ACTIONS(2161), - [sym_integer] = ACTIONS(2161), - [sym_float] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_api] = ACTIONS(2161), - [sym_true] = ACTIONS(2161), - [sym_false] = ACTIONS(2161), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2161), - [anon_sym_include] = ACTIONS(2161), - [anon_sym_DEF] = ACTIONS(2161), - [anon_sym_cdef] = ACTIONS(2161), - [anon_sym_cpdef] = ACTIONS(2161), - [anon_sym_int] = ACTIONS(2161), - [anon_sym_double] = ACTIONS(2161), - [anon_sym_complex] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2161), - [anon_sym_signed] = ACTIONS(2161), - [anon_sym_unsigned] = ACTIONS(2161), - [anon_sym_char] = ACTIONS(2161), - [anon_sym_short] = ACTIONS(2161), - [anon_sym_long] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_volatile] = ACTIONS(2161), - [anon_sym_ctypedef] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_cppclass] = ACTIONS(2161), - [anon_sym_fused] = ACTIONS(2161), - [anon_sym_public] = ACTIONS(2161), - [anon_sym_packed] = ACTIONS(2161), - [anon_sym_inline] = ACTIONS(2161), - [anon_sym_readonly] = ACTIONS(2161), - [anon_sym_sizeof] = ACTIONS(2161), - [sym__dedent] = ACTIONS(2163), - [sym_string_start] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_import] = ACTIONS(2127), + [anon_sym_cimport] = ACTIONS(2127), + [anon_sym_from] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_print] = ACTIONS(2127), + [anon_sym_assert] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2127), + [anon_sym_del] = ACTIONS(2127), + [anon_sym_raise] = ACTIONS(2127), + [anon_sym_pass] = ACTIONS(2127), + [anon_sym_break] = ACTIONS(2127), + [anon_sym_continue] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_match] = ACTIONS(2127), + [anon_sym_async] = ACTIONS(2127), + [anon_sym_for] = ACTIONS(2127), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_try] = ACTIONS(2127), + [anon_sym_with] = ACTIONS(2127), + [anon_sym_def] = ACTIONS(2127), + [anon_sym_global] = ACTIONS(2127), + [anon_sym_nonlocal] = ACTIONS(2127), + [anon_sym_exec] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2127), + [anon_sym_class] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_not] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_lambda] = ACTIONS(2127), + [anon_sym_yield] = ACTIONS(2127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2129), + [anon_sym_None] = ACTIONS(2127), + [sym_integer] = ACTIONS(2127), + [sym_float] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2127), + [anon_sym_api] = ACTIONS(2127), + [sym_true] = ACTIONS(2127), + [sym_false] = ACTIONS(2127), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2127), + [anon_sym_include] = ACTIONS(2127), + [anon_sym_DEF] = ACTIONS(2127), + [anon_sym_IF] = ACTIONS(2127), + [anon_sym_cdef] = ACTIONS(2127), + [anon_sym_cpdef] = ACTIONS(2127), + [anon_sym_int] = ACTIONS(2127), + [anon_sym_double] = ACTIONS(2127), + [anon_sym_complex] = ACTIONS(2127), + [anon_sym_new] = ACTIONS(2127), + [anon_sym_signed] = ACTIONS(2127), + [anon_sym_unsigned] = ACTIONS(2127), + [anon_sym_char] = ACTIONS(2127), + [anon_sym_short] = ACTIONS(2127), + [anon_sym_long] = ACTIONS(2127), + [anon_sym_const] = ACTIONS(2127), + [anon_sym_volatile] = ACTIONS(2127), + [anon_sym_ctypedef] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2127), + [anon_sym_enum] = ACTIONS(2127), + [anon_sym_cppclass] = ACTIONS(2127), + [anon_sym_fused] = ACTIONS(2127), + [anon_sym_public] = ACTIONS(2127), + [anon_sym_packed] = ACTIONS(2127), + [anon_sym_inline] = ACTIONS(2127), + [anon_sym_readonly] = ACTIONS(2127), + [anon_sym_sizeof] = ACTIONS(2127), + [sym__dedent] = ACTIONS(2129), + [sym_string_start] = ACTIONS(2129), }, [665] = { - [sym_identifier] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2165), - [anon_sym_cimport] = ACTIONS(2165), - [anon_sym_from] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_print] = ACTIONS(2165), - [anon_sym_assert] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_del] = ACTIONS(2165), - [anon_sym_raise] = ACTIONS(2165), - [anon_sym_pass] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_async] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [anon_sym_with] = ACTIONS(2165), - [anon_sym_def] = ACTIONS(2165), - [anon_sym_global] = ACTIONS(2165), - [anon_sym_nonlocal] = ACTIONS(2165), - [anon_sym_exec] = ACTIONS(2165), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_class] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_not] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_lambda] = ACTIONS(2165), - [anon_sym_yield] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2167), - [anon_sym_None] = ACTIONS(2165), - [sym_integer] = ACTIONS(2165), - [sym_float] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2165), - [anon_sym_api] = ACTIONS(2165), - [sym_true] = ACTIONS(2165), - [sym_false] = ACTIONS(2165), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2165), - [anon_sym_include] = ACTIONS(2165), - [anon_sym_DEF] = ACTIONS(2165), - [anon_sym_cdef] = ACTIONS(2165), - [anon_sym_cpdef] = ACTIONS(2165), - [anon_sym_int] = ACTIONS(2165), - [anon_sym_double] = ACTIONS(2165), - [anon_sym_complex] = ACTIONS(2165), - [anon_sym_new] = ACTIONS(2165), - [anon_sym_signed] = ACTIONS(2165), - [anon_sym_unsigned] = ACTIONS(2165), - [anon_sym_char] = ACTIONS(2165), - [anon_sym_short] = ACTIONS(2165), - [anon_sym_long] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_volatile] = ACTIONS(2165), - [anon_sym_ctypedef] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_union] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_cppclass] = ACTIONS(2165), - [anon_sym_fused] = ACTIONS(2165), - [anon_sym_public] = ACTIONS(2165), - [anon_sym_packed] = ACTIONS(2165), - [anon_sym_inline] = ACTIONS(2165), - [anon_sym_readonly] = ACTIONS(2165), - [anon_sym_sizeof] = ACTIONS(2165), - [sym__dedent] = ACTIONS(2167), - [sym_string_start] = ACTIONS(2167), + [sym_identifier] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2133), + [anon_sym_import] = ACTIONS(2131), + [anon_sym_cimport] = ACTIONS(2131), + [anon_sym_from] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2133), + [anon_sym_print] = ACTIONS(2131), + [anon_sym_assert] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_del] = ACTIONS(2131), + [anon_sym_raise] = ACTIONS(2131), + [anon_sym_pass] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2131), + [anon_sym_with] = ACTIONS(2131), + [anon_sym_def] = ACTIONS(2131), + [anon_sym_global] = ACTIONS(2131), + [anon_sym_nonlocal] = ACTIONS(2131), + [anon_sym_exec] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_class] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2133), + [anon_sym_AT] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_PLUS] = ACTIONS(2133), + [anon_sym_not] = ACTIONS(2131), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_TILDE] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_lambda] = ACTIONS(2131), + [anon_sym_yield] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2133), + [anon_sym_None] = ACTIONS(2131), + [sym_integer] = ACTIONS(2131), + [sym_float] = ACTIONS(2133), + [anon_sym_await] = ACTIONS(2131), + [anon_sym_api] = ACTIONS(2131), + [sym_true] = ACTIONS(2131), + [sym_false] = ACTIONS(2131), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2131), + [anon_sym_include] = ACTIONS(2131), + [anon_sym_DEF] = ACTIONS(2131), + [anon_sym_IF] = ACTIONS(2131), + [anon_sym_cdef] = ACTIONS(2131), + [anon_sym_cpdef] = ACTIONS(2131), + [anon_sym_int] = ACTIONS(2131), + [anon_sym_double] = ACTIONS(2131), + [anon_sym_complex] = ACTIONS(2131), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_signed] = ACTIONS(2131), + [anon_sym_unsigned] = ACTIONS(2131), + [anon_sym_char] = ACTIONS(2131), + [anon_sym_short] = ACTIONS(2131), + [anon_sym_long] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_volatile] = ACTIONS(2131), + [anon_sym_ctypedef] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2131), + [anon_sym_union] = ACTIONS(2131), + [anon_sym_enum] = ACTIONS(2131), + [anon_sym_cppclass] = ACTIONS(2131), + [anon_sym_fused] = ACTIONS(2131), + [anon_sym_public] = ACTIONS(2131), + [anon_sym_packed] = ACTIONS(2131), + [anon_sym_inline] = ACTIONS(2131), + [anon_sym_readonly] = ACTIONS(2131), + [anon_sym_sizeof] = ACTIONS(2131), + [sym__dedent] = ACTIONS(2133), + [sym_string_start] = ACTIONS(2133), }, [666] = { - [sym_identifier] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2171), - [anon_sym_import] = ACTIONS(2169), - [anon_sym_cimport] = ACTIONS(2169), - [anon_sym_from] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_print] = ACTIONS(2169), - [anon_sym_assert] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_del] = ACTIONS(2169), - [anon_sym_raise] = ACTIONS(2169), - [anon_sym_pass] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_match] = ACTIONS(2169), - [anon_sym_async] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2169), - [anon_sym_with] = ACTIONS(2169), - [anon_sym_def] = ACTIONS(2169), - [anon_sym_global] = ACTIONS(2169), - [anon_sym_nonlocal] = ACTIONS(2169), - [anon_sym_exec] = ACTIONS(2169), - [anon_sym_type] = ACTIONS(2169), - [anon_sym_class] = ACTIONS(2169), - [anon_sym_LBRACK] = ACTIONS(2171), - [anon_sym_AT] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_PLUS] = ACTIONS(2171), - [anon_sym_not] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_TILDE] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_lambda] = ACTIONS(2169), - [anon_sym_yield] = ACTIONS(2169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2171), - [anon_sym_None] = ACTIONS(2169), - [sym_integer] = ACTIONS(2169), - [sym_float] = ACTIONS(2171), - [anon_sym_await] = ACTIONS(2169), - [anon_sym_api] = ACTIONS(2169), - [sym_true] = ACTIONS(2169), - [sym_false] = ACTIONS(2169), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2169), - [anon_sym_include] = ACTIONS(2169), - [anon_sym_DEF] = ACTIONS(2169), - [anon_sym_cdef] = ACTIONS(2169), - [anon_sym_cpdef] = ACTIONS(2169), - [anon_sym_int] = ACTIONS(2169), - [anon_sym_double] = ACTIONS(2169), - [anon_sym_complex] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2169), - [anon_sym_signed] = ACTIONS(2169), - [anon_sym_unsigned] = ACTIONS(2169), - [anon_sym_char] = ACTIONS(2169), - [anon_sym_short] = ACTIONS(2169), - [anon_sym_long] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_volatile] = ACTIONS(2169), - [anon_sym_ctypedef] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_cppclass] = ACTIONS(2169), - [anon_sym_fused] = ACTIONS(2169), - [anon_sym_public] = ACTIONS(2169), - [anon_sym_packed] = ACTIONS(2169), - [anon_sym_inline] = ACTIONS(2169), - [anon_sym_readonly] = ACTIONS(2169), - [anon_sym_sizeof] = ACTIONS(2169), - [sym__dedent] = ACTIONS(2171), - [sym_string_start] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2135), + [anon_sym_cimport] = ACTIONS(2135), + [anon_sym_from] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_print] = ACTIONS(2135), + [anon_sym_assert] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_del] = ACTIONS(2135), + [anon_sym_raise] = ACTIONS(2135), + [anon_sym_pass] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_async] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2135), + [anon_sym_with] = ACTIONS(2135), + [anon_sym_def] = ACTIONS(2135), + [anon_sym_global] = ACTIONS(2135), + [anon_sym_nonlocal] = ACTIONS(2135), + [anon_sym_exec] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2135), + [anon_sym_class] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_AT] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_not] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_lambda] = ACTIONS(2135), + [anon_sym_yield] = ACTIONS(2135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2137), + [anon_sym_None] = ACTIONS(2135), + [sym_integer] = ACTIONS(2135), + [sym_float] = ACTIONS(2137), + [anon_sym_await] = ACTIONS(2135), + [anon_sym_api] = ACTIONS(2135), + [sym_true] = ACTIONS(2135), + [sym_false] = ACTIONS(2135), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2135), + [anon_sym_include] = ACTIONS(2135), + [anon_sym_DEF] = ACTIONS(2135), + [anon_sym_IF] = ACTIONS(2135), + [anon_sym_cdef] = ACTIONS(2135), + [anon_sym_cpdef] = ACTIONS(2135), + [anon_sym_int] = ACTIONS(2135), + [anon_sym_double] = ACTIONS(2135), + [anon_sym_complex] = ACTIONS(2135), + [anon_sym_new] = ACTIONS(2135), + [anon_sym_signed] = ACTIONS(2135), + [anon_sym_unsigned] = ACTIONS(2135), + [anon_sym_char] = ACTIONS(2135), + [anon_sym_short] = ACTIONS(2135), + [anon_sym_long] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_volatile] = ACTIONS(2135), + [anon_sym_ctypedef] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2135), + [anon_sym_enum] = ACTIONS(2135), + [anon_sym_cppclass] = ACTIONS(2135), + [anon_sym_fused] = ACTIONS(2135), + [anon_sym_public] = ACTIONS(2135), + [anon_sym_packed] = ACTIONS(2135), + [anon_sym_inline] = ACTIONS(2135), + [anon_sym_readonly] = ACTIONS(2135), + [anon_sym_sizeof] = ACTIONS(2135), + [sym__dedent] = ACTIONS(2137), + [sym_string_start] = ACTIONS(2137), }, [667] = { - [sym_identifier] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_import] = ACTIONS(2173), - [anon_sym_cimport] = ACTIONS(2173), - [anon_sym_from] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_print] = ACTIONS(2173), - [anon_sym_assert] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_del] = ACTIONS(2173), - [anon_sym_raise] = ACTIONS(2173), - [anon_sym_pass] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [anon_sym_def] = ACTIONS(2173), - [anon_sym_global] = ACTIONS(2173), - [anon_sym_nonlocal] = ACTIONS(2173), - [anon_sym_exec] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_AT] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_not] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_lambda] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2175), - [anon_sym_None] = ACTIONS(2173), - [sym_integer] = ACTIONS(2173), - [sym_float] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_api] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2173), - [anon_sym_include] = ACTIONS(2173), - [anon_sym_DEF] = ACTIONS(2173), - [anon_sym_cdef] = ACTIONS(2173), - [anon_sym_cpdef] = ACTIONS(2173), - [anon_sym_int] = ACTIONS(2173), - [anon_sym_double] = ACTIONS(2173), - [anon_sym_complex] = ACTIONS(2173), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_signed] = ACTIONS(2173), - [anon_sym_unsigned] = ACTIONS(2173), - [anon_sym_char] = ACTIONS(2173), - [anon_sym_short] = ACTIONS(2173), - [anon_sym_long] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_volatile] = ACTIONS(2173), - [anon_sym_ctypedef] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_cppclass] = ACTIONS(2173), - [anon_sym_fused] = ACTIONS(2173), - [anon_sym_public] = ACTIONS(2173), - [anon_sym_packed] = ACTIONS(2173), - [anon_sym_inline] = ACTIONS(2173), - [anon_sym_readonly] = ACTIONS(2173), - [anon_sym_sizeof] = ACTIONS(2173), - [sym__dedent] = ACTIONS(2175), - [sym_string_start] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2141), + [anon_sym_import] = ACTIONS(2139), + [anon_sym_cimport] = ACTIONS(2139), + [anon_sym_from] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_print] = ACTIONS(2139), + [anon_sym_assert] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_del] = ACTIONS(2139), + [anon_sym_raise] = ACTIONS(2139), + [anon_sym_pass] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(2139), + [anon_sym_def] = ACTIONS(2139), + [anon_sym_global] = ACTIONS(2139), + [anon_sym_nonlocal] = ACTIONS(2139), + [anon_sym_exec] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_class] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_AT] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_PLUS] = ACTIONS(2141), + [anon_sym_not] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_TILDE] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_lambda] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2141), + [anon_sym_None] = ACTIONS(2139), + [sym_integer] = ACTIONS(2139), + [sym_float] = ACTIONS(2141), + [anon_sym_await] = ACTIONS(2139), + [anon_sym_api] = ACTIONS(2139), + [sym_true] = ACTIONS(2139), + [sym_false] = ACTIONS(2139), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2139), + [anon_sym_include] = ACTIONS(2139), + [anon_sym_DEF] = ACTIONS(2139), + [anon_sym_IF] = ACTIONS(2139), + [anon_sym_cdef] = ACTIONS(2139), + [anon_sym_cpdef] = ACTIONS(2139), + [anon_sym_int] = ACTIONS(2139), + [anon_sym_double] = ACTIONS(2139), + [anon_sym_complex] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2139), + [anon_sym_signed] = ACTIONS(2139), + [anon_sym_unsigned] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [anon_sym_short] = ACTIONS(2139), + [anon_sym_long] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_volatile] = ACTIONS(2139), + [anon_sym_ctypedef] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_cppclass] = ACTIONS(2139), + [anon_sym_fused] = ACTIONS(2139), + [anon_sym_public] = ACTIONS(2139), + [anon_sym_packed] = ACTIONS(2139), + [anon_sym_inline] = ACTIONS(2139), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_sizeof] = ACTIONS(2139), + [sym__dedent] = ACTIONS(2141), + [sym_string_start] = ACTIONS(2141), }, [668] = { - [sym_identifier] = ACTIONS(2177), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_import] = ACTIONS(2177), - [anon_sym_cimport] = ACTIONS(2177), - [anon_sym_from] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_STAR] = ACTIONS(2179), - [anon_sym_print] = ACTIONS(2177), - [anon_sym_assert] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_del] = ACTIONS(2177), - [anon_sym_raise] = ACTIONS(2177), - [anon_sym_pass] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [anon_sym_try] = ACTIONS(2177), - [anon_sym_with] = ACTIONS(2177), - [anon_sym_def] = ACTIONS(2177), - [anon_sym_global] = ACTIONS(2177), - [anon_sym_nonlocal] = ACTIONS(2177), - [anon_sym_exec] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_class] = ACTIONS(2177), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(2179), - [anon_sym_DASH] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_PLUS] = ACTIONS(2179), - [anon_sym_not] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2179), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_LT] = ACTIONS(2179), - [anon_sym_lambda] = ACTIONS(2177), - [anon_sym_yield] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2179), - [anon_sym_None] = ACTIONS(2177), - [sym_integer] = ACTIONS(2177), - [sym_float] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_api] = ACTIONS(2177), - [sym_true] = ACTIONS(2177), - [sym_false] = ACTIONS(2177), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2177), - [anon_sym_include] = ACTIONS(2177), - [anon_sym_DEF] = ACTIONS(2177), - [anon_sym_cdef] = ACTIONS(2177), - [anon_sym_cpdef] = ACTIONS(2177), - [anon_sym_int] = ACTIONS(2177), - [anon_sym_double] = ACTIONS(2177), - [anon_sym_complex] = ACTIONS(2177), - [anon_sym_new] = ACTIONS(2177), - [anon_sym_signed] = ACTIONS(2177), - [anon_sym_unsigned] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [anon_sym_short] = ACTIONS(2177), - [anon_sym_long] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_volatile] = ACTIONS(2177), - [anon_sym_ctypedef] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_cppclass] = ACTIONS(2177), - [anon_sym_fused] = ACTIONS(2177), - [anon_sym_public] = ACTIONS(2177), - [anon_sym_packed] = ACTIONS(2177), - [anon_sym_inline] = ACTIONS(2177), - [anon_sym_readonly] = ACTIONS(2177), - [anon_sym_sizeof] = ACTIONS(2177), - [sym__dedent] = ACTIONS(2179), - [sym_string_start] = ACTIONS(2179), + [sym_identifier] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_import] = ACTIONS(2143), + [anon_sym_cimport] = ACTIONS(2143), + [anon_sym_from] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_print] = ACTIONS(2143), + [anon_sym_assert] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_del] = ACTIONS(2143), + [anon_sym_raise] = ACTIONS(2143), + [anon_sym_pass] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_async] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2143), + [anon_sym_try] = ACTIONS(2143), + [anon_sym_with] = ACTIONS(2143), + [anon_sym_def] = ACTIONS(2143), + [anon_sym_global] = ACTIONS(2143), + [anon_sym_nonlocal] = ACTIONS(2143), + [anon_sym_exec] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2143), + [anon_sym_class] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_AT] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_not] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_lambda] = ACTIONS(2143), + [anon_sym_yield] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2145), + [anon_sym_None] = ACTIONS(2143), + [sym_integer] = ACTIONS(2143), + [sym_float] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2143), + [anon_sym_api] = ACTIONS(2143), + [sym_true] = ACTIONS(2143), + [sym_false] = ACTIONS(2143), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2143), + [anon_sym_include] = ACTIONS(2143), + [anon_sym_DEF] = ACTIONS(2143), + [anon_sym_IF] = ACTIONS(2143), + [anon_sym_cdef] = ACTIONS(2143), + [anon_sym_cpdef] = ACTIONS(2143), + [anon_sym_int] = ACTIONS(2143), + [anon_sym_double] = ACTIONS(2143), + [anon_sym_complex] = ACTIONS(2143), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_signed] = ACTIONS(2143), + [anon_sym_unsigned] = ACTIONS(2143), + [anon_sym_char] = ACTIONS(2143), + [anon_sym_short] = ACTIONS(2143), + [anon_sym_long] = ACTIONS(2143), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_volatile] = ACTIONS(2143), + [anon_sym_ctypedef] = ACTIONS(2143), + [anon_sym_struct] = ACTIONS(2143), + [anon_sym_union] = ACTIONS(2143), + [anon_sym_enum] = ACTIONS(2143), + [anon_sym_cppclass] = ACTIONS(2143), + [anon_sym_fused] = ACTIONS(2143), + [anon_sym_public] = ACTIONS(2143), + [anon_sym_packed] = ACTIONS(2143), + [anon_sym_inline] = ACTIONS(2143), + [anon_sym_readonly] = ACTIONS(2143), + [anon_sym_sizeof] = ACTIONS(2143), + [sym__dedent] = ACTIONS(2145), + [sym_string_start] = ACTIONS(2145), }, [669] = { - [sym_identifier] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_cimport] = ACTIONS(2181), - [anon_sym_from] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_print] = ACTIONS(2181), - [anon_sym_assert] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_del] = ACTIONS(2181), - [anon_sym_raise] = ACTIONS(2181), - [anon_sym_pass] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_with] = ACTIONS(2181), - [anon_sym_def] = ACTIONS(2181), - [anon_sym_global] = ACTIONS(2181), - [anon_sym_nonlocal] = ACTIONS(2181), - [anon_sym_exec] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2183), - [anon_sym_not] = ACTIONS(2181), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_lambda] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2183), - [anon_sym_None] = ACTIONS(2181), - [sym_integer] = ACTIONS(2181), - [sym_float] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_api] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2181), - [anon_sym_include] = ACTIONS(2181), - [anon_sym_DEF] = ACTIONS(2181), - [anon_sym_cdef] = ACTIONS(2181), - [anon_sym_cpdef] = ACTIONS(2181), - [anon_sym_int] = ACTIONS(2181), - [anon_sym_double] = ACTIONS(2181), - [anon_sym_complex] = ACTIONS(2181), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_signed] = ACTIONS(2181), - [anon_sym_unsigned] = ACTIONS(2181), - [anon_sym_char] = ACTIONS(2181), - [anon_sym_short] = ACTIONS(2181), - [anon_sym_long] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_volatile] = ACTIONS(2181), - [anon_sym_ctypedef] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_cppclass] = ACTIONS(2181), - [anon_sym_fused] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_packed] = ACTIONS(2181), - [anon_sym_inline] = ACTIONS(2181), - [anon_sym_readonly] = ACTIONS(2181), - [anon_sym_sizeof] = ACTIONS(2181), - [sym__dedent] = ACTIONS(2183), - [sym_string_start] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_import] = ACTIONS(2147), + [anon_sym_cimport] = ACTIONS(2147), + [anon_sym_from] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_print] = ACTIONS(2147), + [anon_sym_assert] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_del] = ACTIONS(2147), + [anon_sym_raise] = ACTIONS(2147), + [anon_sym_pass] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [anon_sym_with] = ACTIONS(2147), + [anon_sym_def] = ACTIONS(2147), + [anon_sym_global] = ACTIONS(2147), + [anon_sym_nonlocal] = ACTIONS(2147), + [anon_sym_exec] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_class] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_AT] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_not] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_lambda] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2149), + [anon_sym_None] = ACTIONS(2147), + [sym_integer] = ACTIONS(2147), + [sym_float] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_api] = ACTIONS(2147), + [sym_true] = ACTIONS(2147), + [sym_false] = ACTIONS(2147), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2147), + [anon_sym_include] = ACTIONS(2147), + [anon_sym_DEF] = ACTIONS(2147), + [anon_sym_IF] = ACTIONS(2147), + [anon_sym_cdef] = ACTIONS(2147), + [anon_sym_cpdef] = ACTIONS(2147), + [anon_sym_int] = ACTIONS(2147), + [anon_sym_double] = ACTIONS(2147), + [anon_sym_complex] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2147), + [anon_sym_signed] = ACTIONS(2147), + [anon_sym_unsigned] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [anon_sym_short] = ACTIONS(2147), + [anon_sym_long] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_volatile] = ACTIONS(2147), + [anon_sym_ctypedef] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_cppclass] = ACTIONS(2147), + [anon_sym_fused] = ACTIONS(2147), + [anon_sym_public] = ACTIONS(2147), + [anon_sym_packed] = ACTIONS(2147), + [anon_sym_inline] = ACTIONS(2147), + [anon_sym_readonly] = ACTIONS(2147), + [anon_sym_sizeof] = ACTIONS(2147), + [sym__dedent] = ACTIONS(2149), + [sym_string_start] = ACTIONS(2149), }, [670] = { - [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), + [sym_identifier] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2153), + [anon_sym_import] = ACTIONS(2151), + [anon_sym_cimport] = ACTIONS(2151), + [anon_sym_from] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_print] = ACTIONS(2151), + [anon_sym_assert] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_del] = ACTIONS(2151), + [anon_sym_raise] = ACTIONS(2151), + [anon_sym_pass] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [anon_sym_with] = ACTIONS(2151), + [anon_sym_def] = ACTIONS(2151), + [anon_sym_global] = ACTIONS(2151), + [anon_sym_nonlocal] = ACTIONS(2151), + [anon_sym_exec] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_class] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_AT] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_PLUS] = ACTIONS(2153), + [anon_sym_not] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_TILDE] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_lambda] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2153), + [anon_sym_None] = ACTIONS(2151), + [sym_integer] = ACTIONS(2151), + [sym_float] = ACTIONS(2153), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_api] = ACTIONS(2151), + [sym_true] = ACTIONS(2151), + [sym_false] = ACTIONS(2151), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2151), + [anon_sym_include] = ACTIONS(2151), + [anon_sym_DEF] = ACTIONS(2151), + [anon_sym_IF] = ACTIONS(2151), + [anon_sym_cdef] = ACTIONS(2151), + [anon_sym_cpdef] = ACTIONS(2151), + [anon_sym_int] = ACTIONS(2151), + [anon_sym_double] = ACTIONS(2151), + [anon_sym_complex] = ACTIONS(2151), + [anon_sym_new] = ACTIONS(2151), + [anon_sym_signed] = ACTIONS(2151), + [anon_sym_unsigned] = ACTIONS(2151), + [anon_sym_char] = ACTIONS(2151), + [anon_sym_short] = ACTIONS(2151), + [anon_sym_long] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_volatile] = ACTIONS(2151), + [anon_sym_ctypedef] = ACTIONS(2151), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_union] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [anon_sym_cppclass] = ACTIONS(2151), + [anon_sym_fused] = ACTIONS(2151), + [anon_sym_public] = ACTIONS(2151), + [anon_sym_packed] = ACTIONS(2151), + [anon_sym_inline] = ACTIONS(2151), + [anon_sym_readonly] = ACTIONS(2151), + [anon_sym_sizeof] = ACTIONS(2151), + [sym__dedent] = ACTIONS(2153), + [sym_string_start] = ACTIONS(2153), }, [671] = { - [sym_identifier] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_import] = ACTIONS(2189), - [anon_sym_cimport] = ACTIONS(2189), - [anon_sym_from] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_print] = ACTIONS(2189), - [anon_sym_assert] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_del] = ACTIONS(2189), - [anon_sym_raise] = ACTIONS(2189), - [anon_sym_pass] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [anon_sym_with] = ACTIONS(2189), - [anon_sym_def] = ACTIONS(2189), - [anon_sym_global] = ACTIONS(2189), - [anon_sym_nonlocal] = ACTIONS(2189), - [anon_sym_exec] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_AT] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_not] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_TILDE] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2191), - [anon_sym_lambda] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2191), - [anon_sym_None] = ACTIONS(2189), - [sym_integer] = ACTIONS(2189), - [sym_float] = ACTIONS(2191), - [anon_sym_await] = ACTIONS(2189), - [anon_sym_api] = ACTIONS(2189), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2189), - [anon_sym_include] = ACTIONS(2189), - [anon_sym_DEF] = ACTIONS(2189), - [anon_sym_cdef] = ACTIONS(2189), - [anon_sym_cpdef] = ACTIONS(2189), - [anon_sym_int] = ACTIONS(2189), - [anon_sym_double] = ACTIONS(2189), - [anon_sym_complex] = ACTIONS(2189), - [anon_sym_new] = ACTIONS(2189), - [anon_sym_signed] = ACTIONS(2189), - [anon_sym_unsigned] = ACTIONS(2189), - [anon_sym_char] = ACTIONS(2189), - [anon_sym_short] = ACTIONS(2189), - [anon_sym_long] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_volatile] = ACTIONS(2189), - [anon_sym_ctypedef] = ACTIONS(2189), - [anon_sym_struct] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_cppclass] = ACTIONS(2189), - [anon_sym_fused] = ACTIONS(2189), - [anon_sym_public] = ACTIONS(2189), - [anon_sym_packed] = ACTIONS(2189), - [anon_sym_inline] = ACTIONS(2189), - [anon_sym_readonly] = ACTIONS(2189), - [anon_sym_sizeof] = ACTIONS(2189), - [sym__dedent] = ACTIONS(2191), - [sym_string_start] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2157), + [anon_sym_import] = ACTIONS(2155), + [anon_sym_cimport] = ACTIONS(2155), + [anon_sym_from] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_print] = ACTIONS(2155), + [anon_sym_assert] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_del] = ACTIONS(2155), + [anon_sym_raise] = ACTIONS(2155), + [anon_sym_pass] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_try] = ACTIONS(2155), + [anon_sym_with] = ACTIONS(2155), + [anon_sym_def] = ACTIONS(2155), + [anon_sym_global] = ACTIONS(2155), + [anon_sym_nonlocal] = ACTIONS(2155), + [anon_sym_exec] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_class] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_AT] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(2157), + [anon_sym_not] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2157), + [anon_sym_TILDE] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_lambda] = ACTIONS(2155), + [anon_sym_yield] = ACTIONS(2155), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2157), + [anon_sym_None] = ACTIONS(2155), + [sym_integer] = ACTIONS(2155), + [sym_float] = ACTIONS(2157), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_api] = ACTIONS(2155), + [sym_true] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2155), + [anon_sym_include] = ACTIONS(2155), + [anon_sym_DEF] = ACTIONS(2155), + [anon_sym_IF] = ACTIONS(2155), + [anon_sym_cdef] = ACTIONS(2155), + [anon_sym_cpdef] = ACTIONS(2155), + [anon_sym_int] = ACTIONS(2155), + [anon_sym_double] = ACTIONS(2155), + [anon_sym_complex] = ACTIONS(2155), + [anon_sym_new] = ACTIONS(2155), + [anon_sym_signed] = ACTIONS(2155), + [anon_sym_unsigned] = ACTIONS(2155), + [anon_sym_char] = ACTIONS(2155), + [anon_sym_short] = ACTIONS(2155), + [anon_sym_long] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_volatile] = ACTIONS(2155), + [anon_sym_ctypedef] = ACTIONS(2155), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_cppclass] = ACTIONS(2155), + [anon_sym_fused] = ACTIONS(2155), + [anon_sym_public] = ACTIONS(2155), + [anon_sym_packed] = ACTIONS(2155), + [anon_sym_inline] = ACTIONS(2155), + [anon_sym_readonly] = ACTIONS(2155), + [anon_sym_sizeof] = ACTIONS(2155), + [sym__dedent] = ACTIONS(2157), + [sym_string_start] = ACTIONS(2157), }, [672] = { - [sym_identifier] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_import] = ACTIONS(2193), - [anon_sym_cimport] = ACTIONS(2193), - [anon_sym_from] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_STAR] = ACTIONS(2195), - [anon_sym_print] = ACTIONS(2193), - [anon_sym_assert] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_del] = ACTIONS(2193), - [anon_sym_raise] = ACTIONS(2193), - [anon_sym_pass] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [anon_sym_with] = ACTIONS(2193), - [anon_sym_def] = ACTIONS(2193), - [anon_sym_global] = ACTIONS(2193), - [anon_sym_nonlocal] = ACTIONS(2193), - [anon_sym_exec] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_PLUS] = ACTIONS(2195), - [anon_sym_not] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_lambda] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2195), - [anon_sym_None] = ACTIONS(2193), - [sym_integer] = ACTIONS(2193), - [sym_float] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_api] = ACTIONS(2193), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2193), - [anon_sym_include] = ACTIONS(2193), - [anon_sym_DEF] = ACTIONS(2193), - [anon_sym_cdef] = ACTIONS(2193), - [anon_sym_cpdef] = ACTIONS(2193), - [anon_sym_int] = ACTIONS(2193), - [anon_sym_double] = ACTIONS(2193), - [anon_sym_complex] = ACTIONS(2193), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_signed] = ACTIONS(2193), - [anon_sym_unsigned] = ACTIONS(2193), - [anon_sym_char] = ACTIONS(2193), - [anon_sym_short] = ACTIONS(2193), - [anon_sym_long] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_volatile] = ACTIONS(2193), - [anon_sym_ctypedef] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_cppclass] = ACTIONS(2193), - [anon_sym_fused] = ACTIONS(2193), - [anon_sym_public] = ACTIONS(2193), - [anon_sym_packed] = ACTIONS(2193), - [anon_sym_inline] = ACTIONS(2193), - [anon_sym_readonly] = ACTIONS(2193), - [anon_sym_sizeof] = ACTIONS(2193), - [sym__dedent] = ACTIONS(2195), - [sym_string_start] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_import] = ACTIONS(2159), + [anon_sym_cimport] = ACTIONS(2159), + [anon_sym_from] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_print] = ACTIONS(2159), + [anon_sym_assert] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_del] = ACTIONS(2159), + [anon_sym_raise] = ACTIONS(2159), + [anon_sym_pass] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [anon_sym_with] = ACTIONS(2159), + [anon_sym_def] = ACTIONS(2159), + [anon_sym_global] = ACTIONS(2159), + [anon_sym_nonlocal] = ACTIONS(2159), + [anon_sym_exec] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_class] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_AT] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_PLUS] = ACTIONS(2161), + [anon_sym_not] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2161), + [anon_sym_TILDE] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_lambda] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2161), + [anon_sym_None] = ACTIONS(2159), + [sym_integer] = ACTIONS(2159), + [sym_float] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2159), + [anon_sym_api] = ACTIONS(2159), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2159), + [anon_sym_include] = ACTIONS(2159), + [anon_sym_DEF] = ACTIONS(2159), + [anon_sym_IF] = ACTIONS(2159), + [anon_sym_cdef] = ACTIONS(2159), + [anon_sym_cpdef] = ACTIONS(2159), + [anon_sym_int] = ACTIONS(2159), + [anon_sym_double] = ACTIONS(2159), + [anon_sym_complex] = ACTIONS(2159), + [anon_sym_new] = ACTIONS(2159), + [anon_sym_signed] = ACTIONS(2159), + [anon_sym_unsigned] = ACTIONS(2159), + [anon_sym_char] = ACTIONS(2159), + [anon_sym_short] = ACTIONS(2159), + [anon_sym_long] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_volatile] = ACTIONS(2159), + [anon_sym_ctypedef] = ACTIONS(2159), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_cppclass] = ACTIONS(2159), + [anon_sym_fused] = ACTIONS(2159), + [anon_sym_public] = ACTIONS(2159), + [anon_sym_packed] = ACTIONS(2159), + [anon_sym_inline] = ACTIONS(2159), + [anon_sym_readonly] = ACTIONS(2159), + [anon_sym_sizeof] = ACTIONS(2159), + [sym__dedent] = ACTIONS(2161), + [sym_string_start] = ACTIONS(2161), }, [673] = { - [sym_identifier] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_import] = ACTIONS(2197), - [anon_sym_cimport] = ACTIONS(2197), - [anon_sym_from] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_print] = ACTIONS(2197), - [anon_sym_assert] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_del] = ACTIONS(2197), - [anon_sym_raise] = ACTIONS(2197), - [anon_sym_pass] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [anon_sym_with] = ACTIONS(2197), - [anon_sym_def] = ACTIONS(2197), - [anon_sym_global] = ACTIONS(2197), - [anon_sym_nonlocal] = ACTIONS(2197), - [anon_sym_exec] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_not] = ACTIONS(2197), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_lambda] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), - [anon_sym_None] = ACTIONS(2197), - [sym_integer] = ACTIONS(2197), - [sym_float] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_api] = ACTIONS(2197), - [sym_true] = ACTIONS(2197), - [sym_false] = ACTIONS(2197), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2197), - [anon_sym_include] = ACTIONS(2197), - [anon_sym_DEF] = ACTIONS(2197), - [anon_sym_cdef] = ACTIONS(2197), - [anon_sym_cpdef] = ACTIONS(2197), - [anon_sym_int] = ACTIONS(2197), - [anon_sym_double] = ACTIONS(2197), - [anon_sym_complex] = ACTIONS(2197), - [anon_sym_new] = ACTIONS(2197), - [anon_sym_signed] = ACTIONS(2197), - [anon_sym_unsigned] = ACTIONS(2197), - [anon_sym_char] = ACTIONS(2197), - [anon_sym_short] = ACTIONS(2197), - [anon_sym_long] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_volatile] = ACTIONS(2197), - [anon_sym_ctypedef] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_union] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_cppclass] = ACTIONS(2197), - [anon_sym_fused] = ACTIONS(2197), - [anon_sym_public] = ACTIONS(2197), - [anon_sym_packed] = ACTIONS(2197), - [anon_sym_inline] = ACTIONS(2197), - [anon_sym_readonly] = ACTIONS(2197), - [anon_sym_sizeof] = ACTIONS(2197), - [sym__dedent] = ACTIONS(2199), - [sym_string_start] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2165), + [anon_sym_import] = ACTIONS(2163), + [anon_sym_cimport] = ACTIONS(2163), + [anon_sym_from] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_print] = ACTIONS(2163), + [anon_sym_assert] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_del] = ACTIONS(2163), + [anon_sym_raise] = ACTIONS(2163), + [anon_sym_pass] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [anon_sym_with] = ACTIONS(2163), + [anon_sym_def] = ACTIONS(2163), + [anon_sym_global] = ACTIONS(2163), + [anon_sym_nonlocal] = ACTIONS(2163), + [anon_sym_exec] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_class] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_AT] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_not] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_TILDE] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_lambda] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2165), + [anon_sym_None] = ACTIONS(2163), + [sym_integer] = ACTIONS(2163), + [sym_float] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2163), + [anon_sym_api] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2163), + [anon_sym_include] = ACTIONS(2163), + [anon_sym_DEF] = ACTIONS(2163), + [anon_sym_IF] = ACTIONS(2163), + [anon_sym_cdef] = ACTIONS(2163), + [anon_sym_cpdef] = ACTIONS(2163), + [anon_sym_int] = ACTIONS(2163), + [anon_sym_double] = ACTIONS(2163), + [anon_sym_complex] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_signed] = ACTIONS(2163), + [anon_sym_unsigned] = ACTIONS(2163), + [anon_sym_char] = ACTIONS(2163), + [anon_sym_short] = ACTIONS(2163), + [anon_sym_long] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_volatile] = ACTIONS(2163), + [anon_sym_ctypedef] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_union] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [anon_sym_cppclass] = ACTIONS(2163), + [anon_sym_fused] = ACTIONS(2163), + [anon_sym_public] = ACTIONS(2163), + [anon_sym_packed] = ACTIONS(2163), + [anon_sym_inline] = ACTIONS(2163), + [anon_sym_readonly] = ACTIONS(2163), + [anon_sym_sizeof] = ACTIONS(2163), + [sym__dedent] = ACTIONS(2165), + [sym_string_start] = ACTIONS(2165), }, [674] = { - [sym_identifier] = ACTIONS(2201), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_import] = ACTIONS(2201), - [anon_sym_cimport] = ACTIONS(2201), - [anon_sym_from] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_print] = ACTIONS(2201), - [anon_sym_assert] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_del] = ACTIONS(2201), - [anon_sym_raise] = ACTIONS(2201), - [anon_sym_pass] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_async] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [anon_sym_with] = ACTIONS(2201), - [anon_sym_def] = ACTIONS(2201), - [anon_sym_global] = ACTIONS(2201), - [anon_sym_nonlocal] = ACTIONS(2201), - [anon_sym_exec] = ACTIONS(2201), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_class] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_not] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_lambda] = ACTIONS(2201), - [anon_sym_yield] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2203), - [anon_sym_None] = ACTIONS(2201), - [sym_integer] = ACTIONS(2201), - [sym_float] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2201), - [anon_sym_api] = ACTIONS(2201), - [sym_true] = ACTIONS(2201), - [sym_false] = ACTIONS(2201), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2201), - [anon_sym_include] = ACTIONS(2201), - [anon_sym_DEF] = ACTIONS(2201), - [anon_sym_cdef] = ACTIONS(2201), - [anon_sym_cpdef] = ACTIONS(2201), - [anon_sym_int] = ACTIONS(2201), - [anon_sym_double] = ACTIONS(2201), - [anon_sym_complex] = ACTIONS(2201), - [anon_sym_new] = ACTIONS(2201), - [anon_sym_signed] = ACTIONS(2201), - [anon_sym_unsigned] = ACTIONS(2201), - [anon_sym_char] = ACTIONS(2201), - [anon_sym_short] = ACTIONS(2201), - [anon_sym_long] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_volatile] = ACTIONS(2201), - [anon_sym_ctypedef] = ACTIONS(2201), - [anon_sym_struct] = ACTIONS(2201), - [anon_sym_union] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_cppclass] = ACTIONS(2201), - [anon_sym_fused] = ACTIONS(2201), - [anon_sym_public] = ACTIONS(2201), - [anon_sym_packed] = ACTIONS(2201), - [anon_sym_inline] = ACTIONS(2201), - [anon_sym_readonly] = ACTIONS(2201), - [anon_sym_sizeof] = ACTIONS(2201), - [sym__dedent] = ACTIONS(2203), - [sym_string_start] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_cimport] = ACTIONS(2167), + [anon_sym_from] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_print] = ACTIONS(2167), + [anon_sym_assert] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_del] = ACTIONS(2167), + [anon_sym_raise] = ACTIONS(2167), + [anon_sym_pass] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_def] = ACTIONS(2167), + [anon_sym_global] = ACTIONS(2167), + [anon_sym_nonlocal] = ACTIONS(2167), + [anon_sym_exec] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_AT] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2169), + [anon_sym_not] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_lambda] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2169), + [anon_sym_None] = ACTIONS(2167), + [sym_integer] = ACTIONS(2167), + [sym_float] = ACTIONS(2169), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_api] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2167), + [anon_sym_include] = ACTIONS(2167), + [anon_sym_DEF] = ACTIONS(2167), + [anon_sym_IF] = ACTIONS(2167), + [anon_sym_cdef] = ACTIONS(2167), + [anon_sym_cpdef] = ACTIONS(2167), + [anon_sym_int] = ACTIONS(2167), + [anon_sym_double] = ACTIONS(2167), + [anon_sym_complex] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_signed] = ACTIONS(2167), + [anon_sym_unsigned] = ACTIONS(2167), + [anon_sym_char] = ACTIONS(2167), + [anon_sym_short] = ACTIONS(2167), + [anon_sym_long] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_volatile] = ACTIONS(2167), + [anon_sym_ctypedef] = ACTIONS(2167), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_cppclass] = ACTIONS(2167), + [anon_sym_fused] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_packed] = ACTIONS(2167), + [anon_sym_inline] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_sizeof] = ACTIONS(2167), + [sym__dedent] = ACTIONS(2169), + [sym_string_start] = ACTIONS(2169), }, [675] = { - [sym_identifier] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_import] = ACTIONS(2205), - [anon_sym_cimport] = ACTIONS(2205), - [anon_sym_from] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2207), - [anon_sym_print] = ACTIONS(2205), - [anon_sym_assert] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_del] = ACTIONS(2205), - [anon_sym_raise] = ACTIONS(2205), - [anon_sym_pass] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_match] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [anon_sym_with] = ACTIONS(2205), - [anon_sym_def] = ACTIONS(2205), - [anon_sym_global] = ACTIONS(2205), - [anon_sym_nonlocal] = ACTIONS(2205), - [anon_sym_exec] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_class] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_AT] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_not] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2207), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2207), - [anon_sym_lambda] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2207), - [anon_sym_None] = ACTIONS(2205), - [sym_integer] = ACTIONS(2205), - [sym_float] = ACTIONS(2207), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_api] = ACTIONS(2205), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2205), - [anon_sym_include] = ACTIONS(2205), - [anon_sym_DEF] = ACTIONS(2205), - [anon_sym_cdef] = ACTIONS(2205), - [anon_sym_cpdef] = ACTIONS(2205), - [anon_sym_int] = ACTIONS(2205), - [anon_sym_double] = ACTIONS(2205), - [anon_sym_complex] = ACTIONS(2205), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_signed] = ACTIONS(2205), - [anon_sym_unsigned] = ACTIONS(2205), - [anon_sym_char] = ACTIONS(2205), - [anon_sym_short] = ACTIONS(2205), - [anon_sym_long] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_volatile] = ACTIONS(2205), - [anon_sym_ctypedef] = ACTIONS(2205), - [anon_sym_struct] = ACTIONS(2205), - [anon_sym_union] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_cppclass] = ACTIONS(2205), - [anon_sym_fused] = ACTIONS(2205), - [anon_sym_public] = ACTIONS(2205), - [anon_sym_packed] = ACTIONS(2205), - [anon_sym_inline] = ACTIONS(2205), - [anon_sym_readonly] = ACTIONS(2205), - [anon_sym_sizeof] = ACTIONS(2205), - [sym__dedent] = ACTIONS(2207), - [sym_string_start] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2171), + [anon_sym_cimport] = ACTIONS(2171), + [anon_sym_from] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_print] = ACTIONS(2171), + [anon_sym_assert] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_del] = ACTIONS(2171), + [anon_sym_raise] = ACTIONS(2171), + [anon_sym_pass] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_async] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_while] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2171), + [anon_sym_with] = ACTIONS(2171), + [anon_sym_def] = ACTIONS(2171), + [anon_sym_global] = ACTIONS(2171), + [anon_sym_nonlocal] = ACTIONS(2171), + [anon_sym_exec] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2171), + [anon_sym_class] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_AT] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2173), + [anon_sym_not] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_lambda] = ACTIONS(2171), + [anon_sym_yield] = ACTIONS(2171), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2173), + [anon_sym_None] = ACTIONS(2171), + [sym_integer] = ACTIONS(2171), + [sym_float] = ACTIONS(2173), + [anon_sym_await] = ACTIONS(2171), + [anon_sym_api] = ACTIONS(2171), + [sym_true] = ACTIONS(2171), + [sym_false] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2171), + [anon_sym_include] = ACTIONS(2171), + [anon_sym_DEF] = ACTIONS(2171), + [anon_sym_IF] = ACTIONS(2171), + [anon_sym_cdef] = ACTIONS(2171), + [anon_sym_cpdef] = ACTIONS(2171), + [anon_sym_int] = ACTIONS(2171), + [anon_sym_double] = ACTIONS(2171), + [anon_sym_complex] = ACTIONS(2171), + [anon_sym_new] = ACTIONS(2171), + [anon_sym_signed] = ACTIONS(2171), + [anon_sym_unsigned] = ACTIONS(2171), + [anon_sym_char] = ACTIONS(2171), + [anon_sym_short] = ACTIONS(2171), + [anon_sym_long] = ACTIONS(2171), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_volatile] = ACTIONS(2171), + [anon_sym_ctypedef] = ACTIONS(2171), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_union] = ACTIONS(2171), + [anon_sym_enum] = ACTIONS(2171), + [anon_sym_cppclass] = ACTIONS(2171), + [anon_sym_fused] = ACTIONS(2171), + [anon_sym_public] = ACTIONS(2171), + [anon_sym_packed] = ACTIONS(2171), + [anon_sym_inline] = ACTIONS(2171), + [anon_sym_readonly] = ACTIONS(2171), + [anon_sym_sizeof] = ACTIONS(2171), + [sym__dedent] = ACTIONS(2173), + [sym_string_start] = ACTIONS(2173), }, [676] = { - [sym_identifier] = ACTIONS(2209), - [anon_sym_SEMI] = ACTIONS(2211), - [anon_sym_import] = ACTIONS(2209), - [anon_sym_cimport] = ACTIONS(2209), - [anon_sym_from] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(2211), - [anon_sym_print] = ACTIONS(2209), - [anon_sym_assert] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_del] = ACTIONS(2209), - [anon_sym_raise] = ACTIONS(2209), - [anon_sym_pass] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_async] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [anon_sym_with] = ACTIONS(2209), - [anon_sym_def] = ACTIONS(2209), - [anon_sym_global] = ACTIONS(2209), - [anon_sym_nonlocal] = ACTIONS(2209), - [anon_sym_exec] = ACTIONS(2209), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_class] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_AT] = ACTIONS(2211), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_PLUS] = ACTIONS(2211), - [anon_sym_not] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym_TILDE] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2211), - [anon_sym_lambda] = ACTIONS(2209), - [anon_sym_yield] = ACTIONS(2209), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), - [anon_sym_None] = ACTIONS(2209), - [sym_integer] = ACTIONS(2209), - [sym_float] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_api] = ACTIONS(2209), - [sym_true] = ACTIONS(2209), - [sym_false] = ACTIONS(2209), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2209), - [anon_sym_include] = ACTIONS(2209), - [anon_sym_DEF] = ACTIONS(2209), - [anon_sym_cdef] = ACTIONS(2209), - [anon_sym_cpdef] = ACTIONS(2209), - [anon_sym_int] = ACTIONS(2209), - [anon_sym_double] = ACTIONS(2209), - [anon_sym_complex] = ACTIONS(2209), - [anon_sym_new] = ACTIONS(2209), - [anon_sym_signed] = ACTIONS(2209), - [anon_sym_unsigned] = ACTIONS(2209), - [anon_sym_char] = ACTIONS(2209), - [anon_sym_short] = ACTIONS(2209), - [anon_sym_long] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_volatile] = ACTIONS(2209), - [anon_sym_ctypedef] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(2209), - [anon_sym_union] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [anon_sym_cppclass] = ACTIONS(2209), - [anon_sym_fused] = ACTIONS(2209), - [anon_sym_public] = ACTIONS(2209), - [anon_sym_packed] = ACTIONS(2209), - [anon_sym_inline] = ACTIONS(2209), - [anon_sym_readonly] = ACTIONS(2209), - [anon_sym_sizeof] = ACTIONS(2209), - [sym__dedent] = ACTIONS(2211), - [sym_string_start] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2177), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_cimport] = ACTIONS(2175), + [anon_sym_from] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_print] = ACTIONS(2175), + [anon_sym_assert] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_del] = ACTIONS(2175), + [anon_sym_raise] = ACTIONS(2175), + [anon_sym_pass] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_def] = ACTIONS(2175), + [anon_sym_global] = ACTIONS(2175), + [anon_sym_nonlocal] = ACTIONS(2175), + [anon_sym_exec] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_AT] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2177), + [anon_sym_not] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_TILDE] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_lambda] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2177), + [anon_sym_None] = ACTIONS(2175), + [sym_integer] = ACTIONS(2175), + [sym_float] = ACTIONS(2177), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_api] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2175), + [anon_sym_include] = ACTIONS(2175), + [anon_sym_DEF] = ACTIONS(2175), + [anon_sym_IF] = ACTIONS(2175), + [anon_sym_cdef] = ACTIONS(2175), + [anon_sym_cpdef] = ACTIONS(2175), + [anon_sym_int] = ACTIONS(2175), + [anon_sym_double] = ACTIONS(2175), + [anon_sym_complex] = ACTIONS(2175), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_signed] = ACTIONS(2175), + [anon_sym_unsigned] = ACTIONS(2175), + [anon_sym_char] = ACTIONS(2175), + [anon_sym_short] = ACTIONS(2175), + [anon_sym_long] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_volatile] = ACTIONS(2175), + [anon_sym_ctypedef] = ACTIONS(2175), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_cppclass] = ACTIONS(2175), + [anon_sym_fused] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_packed] = ACTIONS(2175), + [anon_sym_inline] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_sizeof] = ACTIONS(2175), + [sym__dedent] = ACTIONS(2177), + [sym_string_start] = ACTIONS(2177), }, [677] = { - [sym_identifier] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_cimport] = ACTIONS(2213), - [anon_sym_from] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_print] = ACTIONS(2213), - [anon_sym_assert] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_del] = ACTIONS(2213), - [anon_sym_raise] = ACTIONS(2213), - [anon_sym_pass] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_def] = ACTIONS(2213), - [anon_sym_global] = ACTIONS(2213), - [anon_sym_nonlocal] = ACTIONS(2213), - [anon_sym_exec] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_AT] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_PLUS] = ACTIONS(2215), - [anon_sym_not] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2215), - [anon_sym_lambda] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2215), - [anon_sym_None] = ACTIONS(2213), - [sym_integer] = ACTIONS(2213), - [sym_float] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_api] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2213), - [anon_sym_include] = ACTIONS(2213), - [anon_sym_DEF] = ACTIONS(2213), - [anon_sym_cdef] = ACTIONS(2213), - [anon_sym_cpdef] = ACTIONS(2213), - [anon_sym_int] = ACTIONS(2213), - [anon_sym_double] = ACTIONS(2213), - [anon_sym_complex] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_signed] = ACTIONS(2213), - [anon_sym_unsigned] = ACTIONS(2213), - [anon_sym_char] = ACTIONS(2213), - [anon_sym_short] = ACTIONS(2213), - [anon_sym_long] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_volatile] = ACTIONS(2213), - [anon_sym_ctypedef] = ACTIONS(2213), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_union] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_cppclass] = ACTIONS(2213), - [anon_sym_fused] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_packed] = ACTIONS(2213), - [anon_sym_inline] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_sizeof] = ACTIONS(2213), - [sym__dedent] = ACTIONS(2215), - [sym_string_start] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_import] = ACTIONS(2179), + [anon_sym_cimport] = ACTIONS(2179), + [anon_sym_from] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_print] = ACTIONS(2179), + [anon_sym_assert] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_del] = ACTIONS(2179), + [anon_sym_raise] = ACTIONS(2179), + [anon_sym_pass] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [anon_sym_try] = ACTIONS(2179), + [anon_sym_with] = ACTIONS(2179), + [anon_sym_def] = ACTIONS(2179), + [anon_sym_global] = ACTIONS(2179), + [anon_sym_nonlocal] = ACTIONS(2179), + [anon_sym_exec] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_class] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_AT] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2181), + [anon_sym_not] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_TILDE] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_lambda] = ACTIONS(2179), + [anon_sym_yield] = ACTIONS(2179), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2181), + [anon_sym_None] = ACTIONS(2179), + [sym_integer] = ACTIONS(2179), + [sym_float] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2179), + [anon_sym_api] = ACTIONS(2179), + [sym_true] = ACTIONS(2179), + [sym_false] = ACTIONS(2179), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2179), + [anon_sym_include] = ACTIONS(2179), + [anon_sym_DEF] = ACTIONS(2179), + [anon_sym_IF] = ACTIONS(2179), + [anon_sym_cdef] = ACTIONS(2179), + [anon_sym_cpdef] = ACTIONS(2179), + [anon_sym_int] = ACTIONS(2179), + [anon_sym_double] = ACTIONS(2179), + [anon_sym_complex] = ACTIONS(2179), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_signed] = ACTIONS(2179), + [anon_sym_unsigned] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [anon_sym_short] = ACTIONS(2179), + [anon_sym_long] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_volatile] = ACTIONS(2179), + [anon_sym_ctypedef] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_cppclass] = ACTIONS(2179), + [anon_sym_fused] = ACTIONS(2179), + [anon_sym_public] = ACTIONS(2179), + [anon_sym_packed] = ACTIONS(2179), + [anon_sym_inline] = ACTIONS(2179), + [anon_sym_readonly] = ACTIONS(2179), + [anon_sym_sizeof] = ACTIONS(2179), + [sym__dedent] = ACTIONS(2181), + [sym_string_start] = ACTIONS(2181), }, [678] = { - [sym_identifier] = ACTIONS(2217), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_import] = ACTIONS(2217), - [anon_sym_cimport] = ACTIONS(2217), - [anon_sym_from] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_print] = ACTIONS(2217), - [anon_sym_assert] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_del] = ACTIONS(2217), - [anon_sym_raise] = ACTIONS(2217), - [anon_sym_pass] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [anon_sym_with] = ACTIONS(2217), - [anon_sym_def] = ACTIONS(2217), - [anon_sym_global] = ACTIONS(2217), - [anon_sym_nonlocal] = ACTIONS(2217), - [anon_sym_exec] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_class] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_AT] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2219), - [anon_sym_not] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_TILDE] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_lambda] = ACTIONS(2217), - [anon_sym_yield] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2219), - [anon_sym_None] = ACTIONS(2217), - [sym_integer] = ACTIONS(2217), - [sym_float] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(2217), - [anon_sym_api] = ACTIONS(2217), - [sym_true] = ACTIONS(2217), - [sym_false] = ACTIONS(2217), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2217), - [anon_sym_include] = ACTIONS(2217), - [anon_sym_DEF] = ACTIONS(2217), - [anon_sym_cdef] = ACTIONS(2217), - [anon_sym_cpdef] = ACTIONS(2217), - [anon_sym_int] = ACTIONS(2217), - [anon_sym_double] = ACTIONS(2217), - [anon_sym_complex] = ACTIONS(2217), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_signed] = ACTIONS(2217), - [anon_sym_unsigned] = ACTIONS(2217), - [anon_sym_char] = ACTIONS(2217), - [anon_sym_short] = ACTIONS(2217), - [anon_sym_long] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_volatile] = ACTIONS(2217), - [anon_sym_ctypedef] = ACTIONS(2217), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_union] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_cppclass] = ACTIONS(2217), - [anon_sym_fused] = ACTIONS(2217), - [anon_sym_public] = ACTIONS(2217), - [anon_sym_packed] = ACTIONS(2217), - [anon_sym_inline] = ACTIONS(2217), - [anon_sym_readonly] = ACTIONS(2217), - [anon_sym_sizeof] = ACTIONS(2217), - [sym__dedent] = ACTIONS(2219), - [sym_string_start] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_cimport] = ACTIONS(2183), + [anon_sym_from] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_print] = ACTIONS(2183), + [anon_sym_assert] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_del] = ACTIONS(2183), + [anon_sym_raise] = ACTIONS(2183), + [anon_sym_pass] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_def] = ACTIONS(2183), + [anon_sym_global] = ACTIONS(2183), + [anon_sym_nonlocal] = ACTIONS(2183), + [anon_sym_exec] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_AT] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_not] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_TILDE] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_lambda] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2185), + [anon_sym_None] = ACTIONS(2183), + [sym_integer] = ACTIONS(2183), + [sym_float] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_api] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2183), + [anon_sym_include] = ACTIONS(2183), + [anon_sym_DEF] = ACTIONS(2183), + [anon_sym_IF] = ACTIONS(2183), + [anon_sym_cdef] = ACTIONS(2183), + [anon_sym_cpdef] = ACTIONS(2183), + [anon_sym_int] = ACTIONS(2183), + [anon_sym_double] = ACTIONS(2183), + [anon_sym_complex] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_signed] = ACTIONS(2183), + [anon_sym_unsigned] = ACTIONS(2183), + [anon_sym_char] = ACTIONS(2183), + [anon_sym_short] = ACTIONS(2183), + [anon_sym_long] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_volatile] = ACTIONS(2183), + [anon_sym_ctypedef] = ACTIONS(2183), + [anon_sym_struct] = ACTIONS(2183), + [anon_sym_union] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [anon_sym_cppclass] = ACTIONS(2183), + [anon_sym_fused] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_packed] = ACTIONS(2183), + [anon_sym_inline] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_sizeof] = ACTIONS(2183), + [sym__dedent] = ACTIONS(2185), + [sym_string_start] = ACTIONS(2185), }, [679] = { - [sym_identifier] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_cimport] = ACTIONS(2221), - [anon_sym_from] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_print] = ACTIONS(2221), - [anon_sym_assert] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_del] = ACTIONS(2221), - [anon_sym_raise] = ACTIONS(2221), - [anon_sym_pass] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_def] = ACTIONS(2221), - [anon_sym_global] = ACTIONS(2221), - [anon_sym_nonlocal] = ACTIONS(2221), - [anon_sym_exec] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_AT] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_PLUS] = ACTIONS(2223), - [anon_sym_not] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_TILDE] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_lambda] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2223), - [anon_sym_None] = ACTIONS(2221), - [sym_integer] = ACTIONS(2221), - [sym_float] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_api] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2221), - [anon_sym_include] = ACTIONS(2221), - [anon_sym_DEF] = ACTIONS(2221), - [anon_sym_cdef] = ACTIONS(2221), - [anon_sym_cpdef] = ACTIONS(2221), - [anon_sym_int] = ACTIONS(2221), - [anon_sym_double] = ACTIONS(2221), - [anon_sym_complex] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_signed] = ACTIONS(2221), - [anon_sym_unsigned] = ACTIONS(2221), - [anon_sym_char] = ACTIONS(2221), - [anon_sym_short] = ACTIONS(2221), - [anon_sym_long] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_volatile] = ACTIONS(2221), - [anon_sym_ctypedef] = ACTIONS(2221), - [anon_sym_struct] = ACTIONS(2221), - [anon_sym_union] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_cppclass] = ACTIONS(2221), - [anon_sym_fused] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_packed] = ACTIONS(2221), - [anon_sym_inline] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_sizeof] = ACTIONS(2221), - [sym__dedent] = ACTIONS(2223), - [sym_string_start] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_import] = ACTIONS(2187), + [anon_sym_cimport] = ACTIONS(2187), + [anon_sym_from] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_print] = ACTIONS(2187), + [anon_sym_assert] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_del] = ACTIONS(2187), + [anon_sym_raise] = ACTIONS(2187), + [anon_sym_pass] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_with] = ACTIONS(2187), + [anon_sym_def] = ACTIONS(2187), + [anon_sym_global] = ACTIONS(2187), + [anon_sym_nonlocal] = ACTIONS(2187), + [anon_sym_exec] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_AT] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_not] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_lambda] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2189), + [anon_sym_None] = ACTIONS(2187), + [sym_integer] = ACTIONS(2187), + [sym_float] = ACTIONS(2189), + [anon_sym_await] = ACTIONS(2187), + [anon_sym_api] = ACTIONS(2187), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2187), + [anon_sym_include] = ACTIONS(2187), + [anon_sym_DEF] = ACTIONS(2187), + [anon_sym_IF] = ACTIONS(2187), + [anon_sym_cdef] = ACTIONS(2187), + [anon_sym_cpdef] = ACTIONS(2187), + [anon_sym_int] = ACTIONS(2187), + [anon_sym_double] = ACTIONS(2187), + [anon_sym_complex] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2187), + [anon_sym_signed] = ACTIONS(2187), + [anon_sym_unsigned] = ACTIONS(2187), + [anon_sym_char] = ACTIONS(2187), + [anon_sym_short] = ACTIONS(2187), + [anon_sym_long] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_volatile] = ACTIONS(2187), + [anon_sym_ctypedef] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_cppclass] = ACTIONS(2187), + [anon_sym_fused] = ACTIONS(2187), + [anon_sym_public] = ACTIONS(2187), + [anon_sym_packed] = ACTIONS(2187), + [anon_sym_inline] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_sizeof] = ACTIONS(2187), + [sym__dedent] = ACTIONS(2189), + [sym_string_start] = ACTIONS(2189), }, [680] = { - [sym_identifier] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_import] = ACTIONS(2225), - [anon_sym_cimport] = ACTIONS(2225), - [anon_sym_from] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_print] = ACTIONS(2225), - [anon_sym_assert] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_del] = ACTIONS(2225), - [anon_sym_raise] = ACTIONS(2225), - [anon_sym_pass] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_with] = ACTIONS(2225), - [anon_sym_def] = ACTIONS(2225), - [anon_sym_global] = ACTIONS(2225), - [anon_sym_nonlocal] = ACTIONS(2225), - [anon_sym_exec] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_class] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_AT] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_not] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2227), - [anon_sym_TILDE] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_lambda] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2227), - [anon_sym_None] = ACTIONS(2225), - [sym_integer] = ACTIONS(2225), - [sym_float] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_api] = ACTIONS(2225), - [sym_true] = ACTIONS(2225), - [sym_false] = ACTIONS(2225), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2225), - [anon_sym_include] = ACTIONS(2225), - [anon_sym_DEF] = ACTIONS(2225), - [anon_sym_cdef] = ACTIONS(2225), - [anon_sym_cpdef] = ACTIONS(2225), - [anon_sym_int] = ACTIONS(2225), - [anon_sym_double] = ACTIONS(2225), - [anon_sym_complex] = ACTIONS(2225), - [anon_sym_new] = ACTIONS(2225), - [anon_sym_signed] = ACTIONS(2225), - [anon_sym_unsigned] = ACTIONS(2225), - [anon_sym_char] = ACTIONS(2225), - [anon_sym_short] = ACTIONS(2225), - [anon_sym_long] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_volatile] = ACTIONS(2225), - [anon_sym_ctypedef] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_union] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_cppclass] = ACTIONS(2225), - [anon_sym_fused] = ACTIONS(2225), - [anon_sym_public] = ACTIONS(2225), - [anon_sym_packed] = ACTIONS(2225), - [anon_sym_inline] = ACTIONS(2225), - [anon_sym_readonly] = ACTIONS(2225), - [anon_sym_sizeof] = ACTIONS(2225), - [sym__dedent] = ACTIONS(2227), - [sym_string_start] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2191), + [anon_sym_cimport] = ACTIONS(2191), + [anon_sym_from] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [anon_sym_print] = ACTIONS(2191), + [anon_sym_assert] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_del] = ACTIONS(2191), + [anon_sym_raise] = ACTIONS(2191), + [anon_sym_pass] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [anon_sym_with] = ACTIONS(2191), + [anon_sym_def] = ACTIONS(2191), + [anon_sym_global] = ACTIONS(2191), + [anon_sym_nonlocal] = ACTIONS(2191), + [anon_sym_exec] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_class] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_AT] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2193), + [anon_sym_not] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_TILDE] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_lambda] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2193), + [anon_sym_None] = ACTIONS(2191), + [sym_integer] = ACTIONS(2191), + [sym_float] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2191), + [anon_sym_api] = ACTIONS(2191), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2191), + [anon_sym_include] = ACTIONS(2191), + [anon_sym_DEF] = ACTIONS(2191), + [anon_sym_IF] = ACTIONS(2191), + [anon_sym_cdef] = ACTIONS(2191), + [anon_sym_cpdef] = ACTIONS(2191), + [anon_sym_int] = ACTIONS(2191), + [anon_sym_double] = ACTIONS(2191), + [anon_sym_complex] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2191), + [anon_sym_signed] = ACTIONS(2191), + [anon_sym_unsigned] = ACTIONS(2191), + [anon_sym_char] = ACTIONS(2191), + [anon_sym_short] = ACTIONS(2191), + [anon_sym_long] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_volatile] = ACTIONS(2191), + [anon_sym_ctypedef] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_cppclass] = ACTIONS(2191), + [anon_sym_fused] = ACTIONS(2191), + [anon_sym_public] = ACTIONS(2191), + [anon_sym_packed] = ACTIONS(2191), + [anon_sym_inline] = ACTIONS(2191), + [anon_sym_readonly] = ACTIONS(2191), + [anon_sym_sizeof] = ACTIONS(2191), + [sym__dedent] = ACTIONS(2193), + [sym_string_start] = ACTIONS(2193), }, [681] = { - [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), + [sym_identifier] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2195), + [anon_sym_cimport] = ACTIONS(2195), + [anon_sym_from] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_print] = ACTIONS(2195), + [anon_sym_assert] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_del] = ACTIONS(2195), + [anon_sym_raise] = ACTIONS(2195), + [anon_sym_pass] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [anon_sym_try] = ACTIONS(2195), + [anon_sym_with] = ACTIONS(2195), + [anon_sym_def] = ACTIONS(2195), + [anon_sym_global] = ACTIONS(2195), + [anon_sym_nonlocal] = ACTIONS(2195), + [anon_sym_exec] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_class] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_not] = ACTIONS(2195), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_lambda] = ACTIONS(2195), + [anon_sym_yield] = ACTIONS(2195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2197), + [anon_sym_None] = ACTIONS(2195), + [sym_integer] = ACTIONS(2195), + [sym_float] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_api] = ACTIONS(2195), + [sym_true] = ACTIONS(2195), + [sym_false] = ACTIONS(2195), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2195), + [anon_sym_include] = ACTIONS(2195), + [anon_sym_DEF] = ACTIONS(2195), + [anon_sym_IF] = ACTIONS(2195), + [anon_sym_cdef] = ACTIONS(2195), + [anon_sym_cpdef] = ACTIONS(2195), + [anon_sym_int] = ACTIONS(2195), + [anon_sym_double] = ACTIONS(2195), + [anon_sym_complex] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(2195), + [anon_sym_signed] = ACTIONS(2195), + [anon_sym_unsigned] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [anon_sym_short] = ACTIONS(2195), + [anon_sym_long] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_volatile] = ACTIONS(2195), + [anon_sym_ctypedef] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_cppclass] = ACTIONS(2195), + [anon_sym_fused] = ACTIONS(2195), + [anon_sym_public] = ACTIONS(2195), + [anon_sym_packed] = ACTIONS(2195), + [anon_sym_inline] = ACTIONS(2195), + [anon_sym_readonly] = ACTIONS(2195), + [anon_sym_sizeof] = ACTIONS(2195), + [sym__dedent] = ACTIONS(2197), + [sym_string_start] = ACTIONS(2197), }, [682] = { - [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), + [sym_identifier] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym_import] = ACTIONS(2199), + [anon_sym_cimport] = ACTIONS(2199), + [anon_sym_from] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2201), + [anon_sym_print] = ACTIONS(2199), + [anon_sym_assert] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2199), + [anon_sym_del] = ACTIONS(2199), + [anon_sym_raise] = ACTIONS(2199), + [anon_sym_pass] = ACTIONS(2199), + [anon_sym_break] = ACTIONS(2199), + [anon_sym_continue] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2199), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_for] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [anon_sym_try] = ACTIONS(2199), + [anon_sym_with] = ACTIONS(2199), + [anon_sym_def] = ACTIONS(2199), + [anon_sym_global] = ACTIONS(2199), + [anon_sym_nonlocal] = ACTIONS(2199), + [anon_sym_exec] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2199), + [anon_sym_class] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_AT] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_PLUS] = ACTIONS(2201), + [anon_sym_not] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_TILDE] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_lambda] = ACTIONS(2199), + [anon_sym_yield] = ACTIONS(2199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2201), + [anon_sym_None] = ACTIONS(2199), + [sym_integer] = ACTIONS(2199), + [sym_float] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(2199), + [anon_sym_api] = ACTIONS(2199), + [sym_true] = ACTIONS(2199), + [sym_false] = ACTIONS(2199), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2199), + [anon_sym_include] = ACTIONS(2199), + [anon_sym_DEF] = ACTIONS(2199), + [anon_sym_IF] = ACTIONS(2199), + [anon_sym_cdef] = ACTIONS(2199), + [anon_sym_cpdef] = ACTIONS(2199), + [anon_sym_int] = ACTIONS(2199), + [anon_sym_double] = ACTIONS(2199), + [anon_sym_complex] = ACTIONS(2199), + [anon_sym_new] = ACTIONS(2199), + [anon_sym_signed] = ACTIONS(2199), + [anon_sym_unsigned] = ACTIONS(2199), + [anon_sym_char] = ACTIONS(2199), + [anon_sym_short] = ACTIONS(2199), + [anon_sym_long] = ACTIONS(2199), + [anon_sym_const] = ACTIONS(2199), + [anon_sym_volatile] = ACTIONS(2199), + [anon_sym_ctypedef] = ACTIONS(2199), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_union] = ACTIONS(2199), + [anon_sym_enum] = ACTIONS(2199), + [anon_sym_cppclass] = ACTIONS(2199), + [anon_sym_fused] = ACTIONS(2199), + [anon_sym_public] = ACTIONS(2199), + [anon_sym_packed] = ACTIONS(2199), + [anon_sym_inline] = ACTIONS(2199), + [anon_sym_readonly] = ACTIONS(2199), + [anon_sym_sizeof] = ACTIONS(2199), + [sym__dedent] = ACTIONS(2201), + [sym_string_start] = ACTIONS(2201), }, [683] = { - [sym_identifier] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_cimport] = ACTIONS(2237), - [anon_sym_from] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_print] = ACTIONS(2237), - [anon_sym_assert] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_del] = ACTIONS(2237), - [anon_sym_raise] = ACTIONS(2237), - [anon_sym_pass] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_def] = ACTIONS(2237), - [anon_sym_global] = ACTIONS(2237), - [anon_sym_nonlocal] = ACTIONS(2237), - [anon_sym_exec] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2239), - [anon_sym_AT] = ACTIONS(2239), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2239), - [anon_sym_not] = ACTIONS(2237), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2239), - [anon_sym_lambda] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2239), - [anon_sym_None] = ACTIONS(2237), - [sym_integer] = ACTIONS(2237), - [sym_float] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_api] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2237), - [anon_sym_include] = ACTIONS(2237), - [anon_sym_DEF] = ACTIONS(2237), - [anon_sym_cdef] = ACTIONS(2237), - [anon_sym_cpdef] = ACTIONS(2237), - [anon_sym_int] = ACTIONS(2237), - [anon_sym_double] = ACTIONS(2237), - [anon_sym_complex] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_signed] = ACTIONS(2237), - [anon_sym_unsigned] = ACTIONS(2237), - [anon_sym_char] = ACTIONS(2237), - [anon_sym_short] = ACTIONS(2237), - [anon_sym_long] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_volatile] = ACTIONS(2237), - [anon_sym_ctypedef] = ACTIONS(2237), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_union] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [anon_sym_cppclass] = ACTIONS(2237), - [anon_sym_fused] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_packed] = ACTIONS(2237), - [anon_sym_inline] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_sizeof] = ACTIONS(2237), - [sym__dedent] = ACTIONS(2239), - [sym_string_start] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2203), + [anon_sym_cimport] = ACTIONS(2203), + [anon_sym_from] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_print] = ACTIONS(2203), + [anon_sym_assert] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_del] = ACTIONS(2203), + [anon_sym_raise] = ACTIONS(2203), + [anon_sym_pass] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [anon_sym_try] = ACTIONS(2203), + [anon_sym_with] = ACTIONS(2203), + [anon_sym_def] = ACTIONS(2203), + [anon_sym_global] = ACTIONS(2203), + [anon_sym_nonlocal] = ACTIONS(2203), + [anon_sym_exec] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_class] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_not] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_lambda] = ACTIONS(2203), + [anon_sym_yield] = ACTIONS(2203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2205), + [anon_sym_None] = ACTIONS(2203), + [sym_integer] = ACTIONS(2203), + [sym_float] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2203), + [anon_sym_api] = ACTIONS(2203), + [sym_true] = ACTIONS(2203), + [sym_false] = ACTIONS(2203), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2203), + [anon_sym_include] = ACTIONS(2203), + [anon_sym_DEF] = ACTIONS(2203), + [anon_sym_IF] = ACTIONS(2203), + [anon_sym_cdef] = ACTIONS(2203), + [anon_sym_cpdef] = ACTIONS(2203), + [anon_sym_int] = ACTIONS(2203), + [anon_sym_double] = ACTIONS(2203), + [anon_sym_complex] = ACTIONS(2203), + [anon_sym_new] = ACTIONS(2203), + [anon_sym_signed] = ACTIONS(2203), + [anon_sym_unsigned] = ACTIONS(2203), + [anon_sym_char] = ACTIONS(2203), + [anon_sym_short] = ACTIONS(2203), + [anon_sym_long] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_volatile] = ACTIONS(2203), + [anon_sym_ctypedef] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_cppclass] = ACTIONS(2203), + [anon_sym_fused] = ACTIONS(2203), + [anon_sym_public] = ACTIONS(2203), + [anon_sym_packed] = ACTIONS(2203), + [anon_sym_inline] = ACTIONS(2203), + [anon_sym_readonly] = ACTIONS(2203), + [anon_sym_sizeof] = ACTIONS(2203), + [sym__dedent] = ACTIONS(2205), + [sym_string_start] = ACTIONS(2205), }, [684] = { - [sym_identifier] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2243), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_cimport] = ACTIONS(2241), - [anon_sym_from] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_print] = ACTIONS(2241), - [anon_sym_assert] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_del] = ACTIONS(2241), - [anon_sym_raise] = ACTIONS(2241), - [anon_sym_pass] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_with] = ACTIONS(2241), - [anon_sym_def] = ACTIONS(2241), - [anon_sym_global] = ACTIONS(2241), - [anon_sym_nonlocal] = ACTIONS(2241), - [anon_sym_exec] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_AT] = ACTIONS(2243), - [anon_sym_DASH] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2243), - [anon_sym_not] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_TILDE] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2243), - [anon_sym_lambda] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2243), - [anon_sym_None] = ACTIONS(2241), - [sym_integer] = ACTIONS(2241), - [sym_float] = ACTIONS(2243), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_api] = ACTIONS(2241), - [sym_true] = ACTIONS(2241), - [sym_false] = ACTIONS(2241), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2241), - [anon_sym_include] = ACTIONS(2241), - [anon_sym_DEF] = ACTIONS(2241), - [anon_sym_cdef] = ACTIONS(2241), - [anon_sym_cpdef] = ACTIONS(2241), - [anon_sym_int] = ACTIONS(2241), - [anon_sym_double] = ACTIONS(2241), - [anon_sym_complex] = ACTIONS(2241), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_signed] = ACTIONS(2241), - [anon_sym_unsigned] = ACTIONS(2241), - [anon_sym_char] = ACTIONS(2241), - [anon_sym_short] = ACTIONS(2241), - [anon_sym_long] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_volatile] = ACTIONS(2241), - [anon_sym_ctypedef] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(2241), - [anon_sym_union] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [anon_sym_cppclass] = ACTIONS(2241), - [anon_sym_fused] = ACTIONS(2241), - [anon_sym_public] = ACTIONS(2241), - [anon_sym_packed] = ACTIONS(2241), - [anon_sym_inline] = ACTIONS(2241), - [anon_sym_readonly] = ACTIONS(2241), - [anon_sym_sizeof] = ACTIONS(2241), - [sym__dedent] = ACTIONS(2243), - [sym_string_start] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_import] = ACTIONS(2207), + [anon_sym_cimport] = ACTIONS(2207), + [anon_sym_from] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_print] = ACTIONS(2207), + [anon_sym_assert] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_del] = ACTIONS(2207), + [anon_sym_raise] = ACTIONS(2207), + [anon_sym_pass] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_async] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_try] = ACTIONS(2207), + [anon_sym_with] = ACTIONS(2207), + [anon_sym_def] = ACTIONS(2207), + [anon_sym_global] = ACTIONS(2207), + [anon_sym_nonlocal] = ACTIONS(2207), + [anon_sym_exec] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2207), + [anon_sym_class] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_AT] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_PLUS] = ACTIONS(2209), + [anon_sym_not] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_lambda] = ACTIONS(2207), + [anon_sym_yield] = ACTIONS(2207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2209), + [anon_sym_None] = ACTIONS(2207), + [sym_integer] = ACTIONS(2207), + [sym_float] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(2207), + [anon_sym_api] = ACTIONS(2207), + [sym_true] = ACTIONS(2207), + [sym_false] = ACTIONS(2207), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2207), + [anon_sym_include] = ACTIONS(2207), + [anon_sym_DEF] = ACTIONS(2207), + [anon_sym_IF] = ACTIONS(2207), + [anon_sym_cdef] = ACTIONS(2207), + [anon_sym_cpdef] = ACTIONS(2207), + [anon_sym_int] = ACTIONS(2207), + [anon_sym_double] = ACTIONS(2207), + [anon_sym_complex] = ACTIONS(2207), + [anon_sym_new] = ACTIONS(2207), + [anon_sym_signed] = ACTIONS(2207), + [anon_sym_unsigned] = ACTIONS(2207), + [anon_sym_char] = ACTIONS(2207), + [anon_sym_short] = ACTIONS(2207), + [anon_sym_long] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [anon_sym_volatile] = ACTIONS(2207), + [anon_sym_ctypedef] = ACTIONS(2207), + [anon_sym_struct] = ACTIONS(2207), + [anon_sym_union] = ACTIONS(2207), + [anon_sym_enum] = ACTIONS(2207), + [anon_sym_cppclass] = ACTIONS(2207), + [anon_sym_fused] = ACTIONS(2207), + [anon_sym_public] = ACTIONS(2207), + [anon_sym_packed] = ACTIONS(2207), + [anon_sym_inline] = ACTIONS(2207), + [anon_sym_readonly] = ACTIONS(2207), + [anon_sym_sizeof] = ACTIONS(2207), + [sym__dedent] = ACTIONS(2209), + [sym_string_start] = ACTIONS(2209), }, [685] = { - [sym_identifier] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_import] = ACTIONS(2245), - [anon_sym_cimport] = ACTIONS(2245), - [anon_sym_from] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(2247), - [anon_sym_print] = ACTIONS(2245), - [anon_sym_assert] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_del] = ACTIONS(2245), - [anon_sym_raise] = ACTIONS(2245), - [anon_sym_pass] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_with] = ACTIONS(2245), - [anon_sym_def] = ACTIONS(2245), - [anon_sym_global] = ACTIONS(2245), - [anon_sym_nonlocal] = ACTIONS(2245), - [anon_sym_exec] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_AT] = ACTIONS(2247), - [anon_sym_DASH] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_PLUS] = ACTIONS(2247), - [anon_sym_not] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2247), - [anon_sym_TILDE] = ACTIONS(2247), - [anon_sym_LT] = ACTIONS(2247), - [anon_sym_lambda] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2247), - [anon_sym_None] = ACTIONS(2245), - [sym_integer] = ACTIONS(2245), - [sym_float] = ACTIONS(2247), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_api] = ACTIONS(2245), - [sym_true] = ACTIONS(2245), - [sym_false] = ACTIONS(2245), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2245), - [anon_sym_include] = ACTIONS(2245), - [anon_sym_DEF] = ACTIONS(2245), - [anon_sym_cdef] = ACTIONS(2245), - [anon_sym_cpdef] = ACTIONS(2245), - [anon_sym_int] = ACTIONS(2245), - [anon_sym_double] = ACTIONS(2245), - [anon_sym_complex] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_signed] = ACTIONS(2245), - [anon_sym_unsigned] = ACTIONS(2245), - [anon_sym_char] = ACTIONS(2245), - [anon_sym_short] = ACTIONS(2245), - [anon_sym_long] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_volatile] = ACTIONS(2245), - [anon_sym_ctypedef] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_union] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_cppclass] = ACTIONS(2245), - [anon_sym_fused] = ACTIONS(2245), - [anon_sym_public] = ACTIONS(2245), - [anon_sym_packed] = ACTIONS(2245), - [anon_sym_inline] = ACTIONS(2245), - [anon_sym_readonly] = ACTIONS(2245), - [anon_sym_sizeof] = ACTIONS(2245), - [sym__dedent] = ACTIONS(2247), - [sym_string_start] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2211), + [anon_sym_cimport] = ACTIONS(2211), + [anon_sym_from] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2213), + [anon_sym_print] = ACTIONS(2211), + [anon_sym_assert] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_del] = ACTIONS(2211), + [anon_sym_raise] = ACTIONS(2211), + [anon_sym_pass] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_async] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [anon_sym_try] = ACTIONS(2211), + [anon_sym_with] = ACTIONS(2211), + [anon_sym_def] = ACTIONS(2211), + [anon_sym_global] = ACTIONS(2211), + [anon_sym_nonlocal] = ACTIONS(2211), + [anon_sym_exec] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2211), + [anon_sym_class] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_not] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_lambda] = ACTIONS(2211), + [anon_sym_yield] = ACTIONS(2211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2213), + [anon_sym_None] = ACTIONS(2211), + [sym_integer] = ACTIONS(2211), + [sym_float] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2211), + [anon_sym_api] = ACTIONS(2211), + [sym_true] = ACTIONS(2211), + [sym_false] = ACTIONS(2211), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2211), + [anon_sym_include] = ACTIONS(2211), + [anon_sym_DEF] = ACTIONS(2211), + [anon_sym_IF] = ACTIONS(2211), + [anon_sym_cdef] = ACTIONS(2211), + [anon_sym_cpdef] = ACTIONS(2211), + [anon_sym_int] = ACTIONS(2211), + [anon_sym_double] = ACTIONS(2211), + [anon_sym_complex] = ACTIONS(2211), + [anon_sym_new] = ACTIONS(2211), + [anon_sym_signed] = ACTIONS(2211), + [anon_sym_unsigned] = ACTIONS(2211), + [anon_sym_char] = ACTIONS(2211), + [anon_sym_short] = ACTIONS(2211), + [anon_sym_long] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [anon_sym_volatile] = ACTIONS(2211), + [anon_sym_ctypedef] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_union] = ACTIONS(2211), + [anon_sym_enum] = ACTIONS(2211), + [anon_sym_cppclass] = ACTIONS(2211), + [anon_sym_fused] = ACTIONS(2211), + [anon_sym_public] = ACTIONS(2211), + [anon_sym_packed] = ACTIONS(2211), + [anon_sym_inline] = ACTIONS(2211), + [anon_sym_readonly] = ACTIONS(2211), + [anon_sym_sizeof] = ACTIONS(2211), + [sym__dedent] = ACTIONS(2213), + [sym_string_start] = ACTIONS(2213), }, [686] = { - [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), + [sym_identifier] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2217), + [anon_sym_import] = ACTIONS(2215), + [anon_sym_cimport] = ACTIONS(2215), + [anon_sym_from] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2217), + [anon_sym_print] = ACTIONS(2215), + [anon_sym_assert] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_del] = ACTIONS(2215), + [anon_sym_raise] = ACTIONS(2215), + [anon_sym_pass] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [anon_sym_with] = ACTIONS(2215), + [anon_sym_def] = ACTIONS(2215), + [anon_sym_global] = ACTIONS(2215), + [anon_sym_nonlocal] = ACTIONS(2215), + [anon_sym_exec] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_class] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_AT] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_PLUS] = ACTIONS(2217), + [anon_sym_not] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2217), + [anon_sym_TILDE] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_lambda] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2217), + [anon_sym_None] = ACTIONS(2215), + [sym_integer] = ACTIONS(2215), + [sym_float] = ACTIONS(2217), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_api] = ACTIONS(2215), + [sym_true] = ACTIONS(2215), + [sym_false] = ACTIONS(2215), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2215), + [anon_sym_include] = ACTIONS(2215), + [anon_sym_DEF] = ACTIONS(2215), + [anon_sym_IF] = ACTIONS(2215), + [anon_sym_cdef] = ACTIONS(2215), + [anon_sym_cpdef] = ACTIONS(2215), + [anon_sym_int] = ACTIONS(2215), + [anon_sym_double] = ACTIONS(2215), + [anon_sym_complex] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2215), + [anon_sym_signed] = ACTIONS(2215), + [anon_sym_unsigned] = ACTIONS(2215), + [anon_sym_char] = ACTIONS(2215), + [anon_sym_short] = ACTIONS(2215), + [anon_sym_long] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_volatile] = ACTIONS(2215), + [anon_sym_ctypedef] = ACTIONS(2215), + [anon_sym_struct] = ACTIONS(2215), + [anon_sym_union] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [anon_sym_cppclass] = ACTIONS(2215), + [anon_sym_fused] = ACTIONS(2215), + [anon_sym_public] = ACTIONS(2215), + [anon_sym_packed] = ACTIONS(2215), + [anon_sym_inline] = ACTIONS(2215), + [anon_sym_readonly] = ACTIONS(2215), + [anon_sym_sizeof] = ACTIONS(2215), + [sym__dedent] = ACTIONS(2217), + [sym_string_start] = ACTIONS(2217), }, [687] = { - [sym_identifier] = ACTIONS(2253), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_import] = ACTIONS(2253), - [anon_sym_cimport] = ACTIONS(2253), - [anon_sym_from] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(2255), - [anon_sym_print] = ACTIONS(2253), - [anon_sym_assert] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_del] = ACTIONS(2253), - [anon_sym_raise] = ACTIONS(2253), - [anon_sym_pass] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2253), - [anon_sym_with] = ACTIONS(2253), - [anon_sym_def] = ACTIONS(2253), - [anon_sym_global] = ACTIONS(2253), - [anon_sym_nonlocal] = ACTIONS(2253), - [anon_sym_exec] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_class] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_not] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2255), - [anon_sym_TILDE] = ACTIONS(2255), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_lambda] = ACTIONS(2253), - [anon_sym_yield] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2255), - [anon_sym_None] = ACTIONS(2253), - [sym_integer] = ACTIONS(2253), - [sym_float] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2253), - [anon_sym_api] = ACTIONS(2253), - [sym_true] = ACTIONS(2253), - [sym_false] = ACTIONS(2253), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2253), - [anon_sym_include] = ACTIONS(2253), - [anon_sym_DEF] = ACTIONS(2253), - [anon_sym_cdef] = ACTIONS(2253), - [anon_sym_cpdef] = ACTIONS(2253), - [anon_sym_int] = ACTIONS(2253), - [anon_sym_double] = ACTIONS(2253), - [anon_sym_complex] = ACTIONS(2253), - [anon_sym_new] = ACTIONS(2253), - [anon_sym_signed] = ACTIONS(2253), - [anon_sym_unsigned] = ACTIONS(2253), - [anon_sym_char] = ACTIONS(2253), - [anon_sym_short] = ACTIONS(2253), - [anon_sym_long] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_volatile] = ACTIONS(2253), - [anon_sym_ctypedef] = ACTIONS(2253), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_cppclass] = ACTIONS(2253), - [anon_sym_fused] = ACTIONS(2253), - [anon_sym_public] = ACTIONS(2253), - [anon_sym_packed] = ACTIONS(2253), - [anon_sym_inline] = ACTIONS(2253), - [anon_sym_readonly] = ACTIONS(2253), - [anon_sym_sizeof] = ACTIONS(2253), - [sym__dedent] = ACTIONS(2255), - [sym_string_start] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2219), + [anon_sym_cimport] = ACTIONS(2219), + [anon_sym_from] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2221), + [anon_sym_print] = ACTIONS(2219), + [anon_sym_assert] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_del] = ACTIONS(2219), + [anon_sym_raise] = ACTIONS(2219), + [anon_sym_pass] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_with] = ACTIONS(2219), + [anon_sym_def] = ACTIONS(2219), + [anon_sym_global] = ACTIONS(2219), + [anon_sym_nonlocal] = ACTIONS(2219), + [anon_sym_exec] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_class] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_not] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_lambda] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2221), + [anon_sym_None] = ACTIONS(2219), + [sym_integer] = ACTIONS(2219), + [sym_float] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_api] = ACTIONS(2219), + [sym_true] = ACTIONS(2219), + [sym_false] = ACTIONS(2219), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2219), + [anon_sym_include] = ACTIONS(2219), + [anon_sym_DEF] = ACTIONS(2219), + [anon_sym_IF] = ACTIONS(2219), + [anon_sym_cdef] = ACTIONS(2219), + [anon_sym_cpdef] = ACTIONS(2219), + [anon_sym_int] = ACTIONS(2219), + [anon_sym_double] = ACTIONS(2219), + [anon_sym_complex] = ACTIONS(2219), + [anon_sym_new] = ACTIONS(2219), + [anon_sym_signed] = ACTIONS(2219), + [anon_sym_unsigned] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [anon_sym_short] = ACTIONS(2219), + [anon_sym_long] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_volatile] = ACTIONS(2219), + [anon_sym_ctypedef] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_cppclass] = ACTIONS(2219), + [anon_sym_fused] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_packed] = ACTIONS(2219), + [anon_sym_inline] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_sizeof] = ACTIONS(2219), + [sym__dedent] = ACTIONS(2221), + [sym_string_start] = ACTIONS(2221), }, [688] = { - [sym_identifier] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_import] = ACTIONS(2257), - [anon_sym_cimport] = ACTIONS(2257), - [anon_sym_from] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_print] = ACTIONS(2257), - [anon_sym_assert] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_del] = ACTIONS(2257), - [anon_sym_raise] = ACTIONS(2257), - [anon_sym_pass] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_match] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_with] = ACTIONS(2257), - [anon_sym_def] = ACTIONS(2257), - [anon_sym_global] = ACTIONS(2257), - [anon_sym_nonlocal] = ACTIONS(2257), - [anon_sym_exec] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_AT] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_PLUS] = ACTIONS(2259), - [anon_sym_not] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_lambda] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2259), - [anon_sym_None] = ACTIONS(2257), - [sym_integer] = ACTIONS(2257), - [sym_float] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_api] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2257), - [anon_sym_include] = ACTIONS(2257), - [anon_sym_DEF] = ACTIONS(2257), - [anon_sym_cdef] = ACTIONS(2257), - [anon_sym_cpdef] = ACTIONS(2257), - [anon_sym_int] = ACTIONS(2257), - [anon_sym_double] = ACTIONS(2257), - [anon_sym_complex] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_signed] = ACTIONS(2257), - [anon_sym_unsigned] = ACTIONS(2257), - [anon_sym_char] = ACTIONS(2257), - [anon_sym_short] = ACTIONS(2257), - [anon_sym_long] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_volatile] = ACTIONS(2257), - [anon_sym_ctypedef] = ACTIONS(2257), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_union] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_cppclass] = ACTIONS(2257), - [anon_sym_fused] = ACTIONS(2257), - [anon_sym_public] = ACTIONS(2257), - [anon_sym_packed] = ACTIONS(2257), - [anon_sym_inline] = ACTIONS(2257), - [anon_sym_readonly] = ACTIONS(2257), - [anon_sym_sizeof] = ACTIONS(2257), - [sym__dedent] = ACTIONS(2259), - [sym_string_start] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2223), + [anon_sym_cimport] = ACTIONS(2223), + [anon_sym_from] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [anon_sym_print] = ACTIONS(2223), + [anon_sym_assert] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_del] = ACTIONS(2223), + [anon_sym_raise] = ACTIONS(2223), + [anon_sym_pass] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_match] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [anon_sym_with] = ACTIONS(2223), + [anon_sym_def] = ACTIONS(2223), + [anon_sym_global] = ACTIONS(2223), + [anon_sym_nonlocal] = ACTIONS(2223), + [anon_sym_exec] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_not] = ACTIONS(2223), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_lambda] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2225), + [anon_sym_None] = ACTIONS(2223), + [sym_integer] = ACTIONS(2223), + [sym_float] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_api] = ACTIONS(2223), + [sym_true] = ACTIONS(2223), + [sym_false] = ACTIONS(2223), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2223), + [anon_sym_include] = ACTIONS(2223), + [anon_sym_DEF] = ACTIONS(2223), + [anon_sym_IF] = ACTIONS(2223), + [anon_sym_cdef] = ACTIONS(2223), + [anon_sym_cpdef] = ACTIONS(2223), + [anon_sym_int] = ACTIONS(2223), + [anon_sym_double] = ACTIONS(2223), + [anon_sym_complex] = ACTIONS(2223), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_signed] = ACTIONS(2223), + [anon_sym_unsigned] = ACTIONS(2223), + [anon_sym_char] = ACTIONS(2223), + [anon_sym_short] = ACTIONS(2223), + [anon_sym_long] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_volatile] = ACTIONS(2223), + [anon_sym_ctypedef] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2223), + [anon_sym_union] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [anon_sym_cppclass] = ACTIONS(2223), + [anon_sym_fused] = ACTIONS(2223), + [anon_sym_public] = ACTIONS(2223), + [anon_sym_packed] = ACTIONS(2223), + [anon_sym_inline] = ACTIONS(2223), + [anon_sym_readonly] = ACTIONS(2223), + [anon_sym_sizeof] = ACTIONS(2223), + [sym__dedent] = ACTIONS(2225), + [sym_string_start] = ACTIONS(2225), }, [689] = { - [sym_identifier] = ACTIONS(2261), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_import] = ACTIONS(2261), - [anon_sym_cimport] = ACTIONS(2261), - [anon_sym_from] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_STAR] = ACTIONS(2263), - [anon_sym_print] = ACTIONS(2261), - [anon_sym_assert] = ACTIONS(2261), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_del] = ACTIONS(2261), - [anon_sym_raise] = ACTIONS(2261), - [anon_sym_pass] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_match] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2261), - [anon_sym_with] = ACTIONS(2261), - [anon_sym_def] = ACTIONS(2261), - [anon_sym_global] = ACTIONS(2261), - [anon_sym_nonlocal] = ACTIONS(2261), - [anon_sym_exec] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_class] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_AT] = ACTIONS(2263), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_PLUS] = ACTIONS(2263), - [anon_sym_not] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_TILDE] = ACTIONS(2263), - [anon_sym_LT] = ACTIONS(2263), - [anon_sym_lambda] = ACTIONS(2261), - [anon_sym_yield] = ACTIONS(2261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2263), - [anon_sym_None] = ACTIONS(2261), - [sym_integer] = ACTIONS(2261), - [sym_float] = ACTIONS(2263), - [anon_sym_await] = ACTIONS(2261), - [anon_sym_api] = ACTIONS(2261), - [sym_true] = ACTIONS(2261), - [sym_false] = ACTIONS(2261), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2261), - [anon_sym_include] = ACTIONS(2261), - [anon_sym_DEF] = ACTIONS(2261), - [anon_sym_cdef] = ACTIONS(2261), - [anon_sym_cpdef] = ACTIONS(2261), - [anon_sym_int] = ACTIONS(2261), - [anon_sym_double] = ACTIONS(2261), - [anon_sym_complex] = ACTIONS(2261), - [anon_sym_new] = ACTIONS(2261), - [anon_sym_signed] = ACTIONS(2261), - [anon_sym_unsigned] = ACTIONS(2261), - [anon_sym_char] = ACTIONS(2261), - [anon_sym_short] = ACTIONS(2261), - [anon_sym_long] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_volatile] = ACTIONS(2261), - [anon_sym_ctypedef] = ACTIONS(2261), - [anon_sym_struct] = ACTIONS(2261), - [anon_sym_union] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_cppclass] = ACTIONS(2261), - [anon_sym_fused] = ACTIONS(2261), - [anon_sym_public] = ACTIONS(2261), - [anon_sym_packed] = ACTIONS(2261), - [anon_sym_inline] = ACTIONS(2261), - [anon_sym_readonly] = ACTIONS(2261), - [anon_sym_sizeof] = ACTIONS(2261), - [sym__dedent] = ACTIONS(2263), - [sym_string_start] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_import] = ACTIONS(2227), + [anon_sym_cimport] = ACTIONS(2227), + [anon_sym_from] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_print] = ACTIONS(2227), + [anon_sym_assert] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_del] = ACTIONS(2227), + [anon_sym_raise] = ACTIONS(2227), + [anon_sym_pass] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [anon_sym_with] = ACTIONS(2227), + [anon_sym_def] = ACTIONS(2227), + [anon_sym_global] = ACTIONS(2227), + [anon_sym_nonlocal] = ACTIONS(2227), + [anon_sym_exec] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_class] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_AT] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_PLUS] = ACTIONS(2229), + [anon_sym_not] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_TILDE] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_lambda] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2229), + [anon_sym_None] = ACTIONS(2227), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_api] = ACTIONS(2227), + [sym_true] = ACTIONS(2227), + [sym_false] = ACTIONS(2227), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2227), + [anon_sym_include] = ACTIONS(2227), + [anon_sym_DEF] = ACTIONS(2227), + [anon_sym_IF] = ACTIONS(2227), + [anon_sym_cdef] = ACTIONS(2227), + [anon_sym_cpdef] = ACTIONS(2227), + [anon_sym_int] = ACTIONS(2227), + [anon_sym_double] = ACTIONS(2227), + [anon_sym_complex] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2227), + [anon_sym_signed] = ACTIONS(2227), + [anon_sym_unsigned] = ACTIONS(2227), + [anon_sym_char] = ACTIONS(2227), + [anon_sym_short] = ACTIONS(2227), + [anon_sym_long] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_volatile] = ACTIONS(2227), + [anon_sym_ctypedef] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2227), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [anon_sym_cppclass] = ACTIONS(2227), + [anon_sym_fused] = ACTIONS(2227), + [anon_sym_public] = ACTIONS(2227), + [anon_sym_packed] = ACTIONS(2227), + [anon_sym_inline] = ACTIONS(2227), + [anon_sym_readonly] = ACTIONS(2227), + [anon_sym_sizeof] = ACTIONS(2227), + [sym__dedent] = ACTIONS(2229), + [sym_string_start] = ACTIONS(2229), }, [690] = { - [sym_identifier] = ACTIONS(2265), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_import] = ACTIONS(2265), - [anon_sym_cimport] = ACTIONS(2265), - [anon_sym_from] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_print] = ACTIONS(2265), - [anon_sym_assert] = ACTIONS(2265), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_del] = ACTIONS(2265), - [anon_sym_raise] = ACTIONS(2265), - [anon_sym_pass] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_match] = ACTIONS(2265), - [anon_sym_async] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2265), - [anon_sym_with] = ACTIONS(2265), - [anon_sym_def] = ACTIONS(2265), - [anon_sym_global] = ACTIONS(2265), - [anon_sym_nonlocal] = ACTIONS(2265), - [anon_sym_exec] = ACTIONS(2265), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_class] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_AT] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_PLUS] = ACTIONS(2267), - [anon_sym_not] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2267), - [anon_sym_lambda] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2267), - [anon_sym_None] = ACTIONS(2265), - [sym_integer] = ACTIONS(2265), - [sym_float] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2265), - [anon_sym_api] = ACTIONS(2265), - [sym_true] = ACTIONS(2265), - [sym_false] = ACTIONS(2265), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2265), - [anon_sym_include] = ACTIONS(2265), - [anon_sym_DEF] = ACTIONS(2265), - [anon_sym_cdef] = ACTIONS(2265), - [anon_sym_cpdef] = ACTIONS(2265), - [anon_sym_int] = ACTIONS(2265), - [anon_sym_double] = ACTIONS(2265), - [anon_sym_complex] = ACTIONS(2265), - [anon_sym_new] = ACTIONS(2265), - [anon_sym_signed] = ACTIONS(2265), - [anon_sym_unsigned] = ACTIONS(2265), - [anon_sym_char] = ACTIONS(2265), - [anon_sym_short] = ACTIONS(2265), - [anon_sym_long] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_volatile] = ACTIONS(2265), - [anon_sym_ctypedef] = ACTIONS(2265), - [anon_sym_struct] = ACTIONS(2265), - [anon_sym_union] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [anon_sym_cppclass] = ACTIONS(2265), - [anon_sym_fused] = ACTIONS(2265), - [anon_sym_public] = ACTIONS(2265), - [anon_sym_packed] = ACTIONS(2265), - [anon_sym_inline] = ACTIONS(2265), - [anon_sym_readonly] = ACTIONS(2265), - [anon_sym_sizeof] = ACTIONS(2265), - [sym__dedent] = ACTIONS(2267), - [sym_string_start] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2231), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2231), + [anon_sym_cimport] = ACTIONS(2231), + [anon_sym_from] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2233), + [anon_sym_print] = ACTIONS(2231), + [anon_sym_assert] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_del] = ACTIONS(2231), + [anon_sym_raise] = ACTIONS(2231), + [anon_sym_pass] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(2231), + [anon_sym_continue] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_async] = ACTIONS(2231), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_with] = ACTIONS(2231), + [anon_sym_def] = ACTIONS(2231), + [anon_sym_global] = ACTIONS(2231), + [anon_sym_nonlocal] = ACTIONS(2231), + [anon_sym_exec] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_class] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_AT] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_not] = ACTIONS(2231), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_lambda] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2233), + [anon_sym_None] = ACTIONS(2231), + [sym_integer] = ACTIONS(2231), + [sym_float] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_api] = ACTIONS(2231), + [sym_true] = ACTIONS(2231), + [sym_false] = ACTIONS(2231), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2231), + [anon_sym_include] = ACTIONS(2231), + [anon_sym_DEF] = ACTIONS(2231), + [anon_sym_IF] = ACTIONS(2231), + [anon_sym_cdef] = ACTIONS(2231), + [anon_sym_cpdef] = ACTIONS(2231), + [anon_sym_int] = ACTIONS(2231), + [anon_sym_double] = ACTIONS(2231), + [anon_sym_complex] = ACTIONS(2231), + [anon_sym_new] = ACTIONS(2231), + [anon_sym_signed] = ACTIONS(2231), + [anon_sym_unsigned] = ACTIONS(2231), + [anon_sym_char] = ACTIONS(2231), + [anon_sym_short] = ACTIONS(2231), + [anon_sym_long] = ACTIONS(2231), + [anon_sym_const] = ACTIONS(2231), + [anon_sym_volatile] = ACTIONS(2231), + [anon_sym_ctypedef] = ACTIONS(2231), + [anon_sym_struct] = ACTIONS(2231), + [anon_sym_union] = ACTIONS(2231), + [anon_sym_enum] = ACTIONS(2231), + [anon_sym_cppclass] = ACTIONS(2231), + [anon_sym_fused] = ACTIONS(2231), + [anon_sym_public] = ACTIONS(2231), + [anon_sym_packed] = ACTIONS(2231), + [anon_sym_inline] = ACTIONS(2231), + [anon_sym_readonly] = ACTIONS(2231), + [anon_sym_sizeof] = ACTIONS(2231), + [sym__dedent] = ACTIONS(2233), + [sym_string_start] = ACTIONS(2233), }, [691] = { - [sym_identifier] = ACTIONS(2269), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_import] = ACTIONS(2269), - [anon_sym_cimport] = ACTIONS(2269), - [anon_sym_from] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2271), - [anon_sym_print] = ACTIONS(2269), - [anon_sym_assert] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_del] = ACTIONS(2269), - [anon_sym_raise] = ACTIONS(2269), - [anon_sym_pass] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2269), - [anon_sym_with] = ACTIONS(2269), - [anon_sym_def] = ACTIONS(2269), - [anon_sym_global] = ACTIONS(2269), - [anon_sym_nonlocal] = ACTIONS(2269), - [anon_sym_exec] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_class] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_AT] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_PLUS] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2271), - [anon_sym_TILDE] = ACTIONS(2271), - [anon_sym_LT] = ACTIONS(2271), - [anon_sym_lambda] = ACTIONS(2269), - [anon_sym_yield] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2271), - [anon_sym_None] = ACTIONS(2269), - [sym_integer] = ACTIONS(2269), - [sym_float] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_api] = ACTIONS(2269), - [sym_true] = ACTIONS(2269), - [sym_false] = ACTIONS(2269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2269), - [anon_sym_include] = ACTIONS(2269), - [anon_sym_DEF] = ACTIONS(2269), - [anon_sym_cdef] = ACTIONS(2269), - [anon_sym_cpdef] = ACTIONS(2269), - [anon_sym_int] = ACTIONS(2269), - [anon_sym_double] = ACTIONS(2269), - [anon_sym_complex] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2269), - [anon_sym_signed] = ACTIONS(2269), - [anon_sym_unsigned] = ACTIONS(2269), - [anon_sym_char] = ACTIONS(2269), - [anon_sym_short] = ACTIONS(2269), - [anon_sym_long] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_volatile] = ACTIONS(2269), - [anon_sym_ctypedef] = ACTIONS(2269), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_cppclass] = ACTIONS(2269), - [anon_sym_fused] = ACTIONS(2269), - [anon_sym_public] = ACTIONS(2269), - [anon_sym_packed] = ACTIONS(2269), - [anon_sym_inline] = ACTIONS(2269), - [anon_sym_readonly] = ACTIONS(2269), - [anon_sym_sizeof] = ACTIONS(2269), - [sym__dedent] = ACTIONS(2271), - [sym_string_start] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2235), + [anon_sym_cimport] = ACTIONS(2235), + [anon_sym_from] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_print] = ACTIONS(2235), + [anon_sym_assert] = ACTIONS(2235), + [anon_sym_return] = ACTIONS(2235), + [anon_sym_del] = ACTIONS(2235), + [anon_sym_raise] = ACTIONS(2235), + [anon_sym_pass] = ACTIONS(2235), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_match] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_while] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [anon_sym_with] = ACTIONS(2235), + [anon_sym_def] = ACTIONS(2235), + [anon_sym_global] = ACTIONS(2235), + [anon_sym_nonlocal] = ACTIONS(2235), + [anon_sym_exec] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_class] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_not] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_lambda] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2237), + [anon_sym_None] = ACTIONS(2235), + [sym_integer] = ACTIONS(2235), + [sym_float] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_api] = ACTIONS(2235), + [sym_true] = ACTIONS(2235), + [sym_false] = ACTIONS(2235), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2235), + [anon_sym_include] = ACTIONS(2235), + [anon_sym_DEF] = ACTIONS(2235), + [anon_sym_IF] = ACTIONS(2235), + [anon_sym_cdef] = ACTIONS(2235), + [anon_sym_cpdef] = ACTIONS(2235), + [anon_sym_int] = ACTIONS(2235), + [anon_sym_double] = ACTIONS(2235), + [anon_sym_complex] = ACTIONS(2235), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_signed] = ACTIONS(2235), + [anon_sym_unsigned] = ACTIONS(2235), + [anon_sym_char] = ACTIONS(2235), + [anon_sym_short] = ACTIONS(2235), + [anon_sym_long] = ACTIONS(2235), + [anon_sym_const] = ACTIONS(2235), + [anon_sym_volatile] = ACTIONS(2235), + [anon_sym_ctypedef] = ACTIONS(2235), + [anon_sym_struct] = ACTIONS(2235), + [anon_sym_union] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [anon_sym_cppclass] = ACTIONS(2235), + [anon_sym_fused] = ACTIONS(2235), + [anon_sym_public] = ACTIONS(2235), + [anon_sym_packed] = ACTIONS(2235), + [anon_sym_inline] = ACTIONS(2235), + [anon_sym_readonly] = ACTIONS(2235), + [anon_sym_sizeof] = ACTIONS(2235), + [sym__dedent] = ACTIONS(2237), + [sym_string_start] = ACTIONS(2237), }, [692] = { - [sym_identifier] = ACTIONS(2273), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_import] = ACTIONS(2273), - [anon_sym_cimport] = ACTIONS(2273), - [anon_sym_from] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_print] = ACTIONS(2273), - [anon_sym_assert] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_del] = ACTIONS(2273), - [anon_sym_raise] = ACTIONS(2273), - [anon_sym_pass] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_with] = ACTIONS(2273), - [anon_sym_def] = ACTIONS(2273), - [anon_sym_global] = ACTIONS(2273), - [anon_sym_nonlocal] = ACTIONS(2273), - [anon_sym_exec] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_class] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_AT] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_PLUS] = ACTIONS(2275), - [anon_sym_not] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_TILDE] = ACTIONS(2275), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_lambda] = ACTIONS(2273), - [anon_sym_yield] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2275), - [anon_sym_None] = ACTIONS(2273), - [sym_integer] = ACTIONS(2273), - [sym_float] = ACTIONS(2275), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_api] = ACTIONS(2273), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2273), - [anon_sym_include] = ACTIONS(2273), - [anon_sym_DEF] = ACTIONS(2273), - [anon_sym_cdef] = ACTIONS(2273), - [anon_sym_cpdef] = ACTIONS(2273), - [anon_sym_int] = ACTIONS(2273), - [anon_sym_double] = ACTIONS(2273), - [anon_sym_complex] = ACTIONS(2273), - [anon_sym_new] = ACTIONS(2273), - [anon_sym_signed] = ACTIONS(2273), - [anon_sym_unsigned] = ACTIONS(2273), - [anon_sym_char] = ACTIONS(2273), - [anon_sym_short] = ACTIONS(2273), - [anon_sym_long] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_volatile] = ACTIONS(2273), - [anon_sym_ctypedef] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_cppclass] = ACTIONS(2273), - [anon_sym_fused] = ACTIONS(2273), - [anon_sym_public] = ACTIONS(2273), - [anon_sym_packed] = ACTIONS(2273), - [anon_sym_inline] = ACTIONS(2273), - [anon_sym_readonly] = ACTIONS(2273), - [anon_sym_sizeof] = ACTIONS(2273), - [sym__dedent] = ACTIONS(2275), - [sym_string_start] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_import] = ACTIONS(2239), + [anon_sym_cimport] = ACTIONS(2239), + [anon_sym_from] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_print] = ACTIONS(2239), + [anon_sym_assert] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_del] = ACTIONS(2239), + [anon_sym_raise] = ACTIONS(2239), + [anon_sym_pass] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [anon_sym_with] = ACTIONS(2239), + [anon_sym_def] = ACTIONS(2239), + [anon_sym_global] = ACTIONS(2239), + [anon_sym_nonlocal] = ACTIONS(2239), + [anon_sym_exec] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_class] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_AT] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_not] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_lambda] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2241), + [anon_sym_None] = ACTIONS(2239), + [sym_integer] = ACTIONS(2239), + [sym_float] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_api] = ACTIONS(2239), + [sym_true] = ACTIONS(2239), + [sym_false] = ACTIONS(2239), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2239), + [anon_sym_include] = ACTIONS(2239), + [anon_sym_DEF] = ACTIONS(2239), + [anon_sym_IF] = ACTIONS(2239), + [anon_sym_cdef] = ACTIONS(2239), + [anon_sym_cpdef] = ACTIONS(2239), + [anon_sym_int] = ACTIONS(2239), + [anon_sym_double] = ACTIONS(2239), + [anon_sym_complex] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2239), + [anon_sym_signed] = ACTIONS(2239), + [anon_sym_unsigned] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [anon_sym_short] = ACTIONS(2239), + [anon_sym_long] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_volatile] = ACTIONS(2239), + [anon_sym_ctypedef] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_cppclass] = ACTIONS(2239), + [anon_sym_fused] = ACTIONS(2239), + [anon_sym_public] = ACTIONS(2239), + [anon_sym_packed] = ACTIONS(2239), + [anon_sym_inline] = ACTIONS(2239), + [anon_sym_readonly] = ACTIONS(2239), + [anon_sym_sizeof] = ACTIONS(2239), + [sym__dedent] = ACTIONS(2241), + [sym_string_start] = ACTIONS(2241), }, [693] = { - [sym_identifier] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_import] = ACTIONS(2277), - [anon_sym_cimport] = ACTIONS(2277), - [anon_sym_from] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_print] = ACTIONS(2277), - [anon_sym_assert] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_del] = ACTIONS(2277), - [anon_sym_raise] = ACTIONS(2277), - [anon_sym_pass] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_with] = ACTIONS(2277), - [anon_sym_def] = ACTIONS(2277), - [anon_sym_global] = ACTIONS(2277), - [anon_sym_nonlocal] = ACTIONS(2277), - [anon_sym_exec] = ACTIONS(2277), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_class] = ACTIONS(2277), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_AT] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_not] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_TILDE] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_lambda] = ACTIONS(2277), - [anon_sym_yield] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2279), - [anon_sym_None] = ACTIONS(2277), - [sym_integer] = ACTIONS(2277), - [sym_float] = ACTIONS(2279), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_api] = ACTIONS(2277), - [sym_true] = ACTIONS(2277), - [sym_false] = ACTIONS(2277), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2277), - [anon_sym_include] = ACTIONS(2277), - [anon_sym_DEF] = ACTIONS(2277), - [anon_sym_cdef] = ACTIONS(2277), - [anon_sym_cpdef] = ACTIONS(2277), - [anon_sym_int] = ACTIONS(2277), - [anon_sym_double] = ACTIONS(2277), - [anon_sym_complex] = ACTIONS(2277), - [anon_sym_new] = ACTIONS(2277), - [anon_sym_signed] = ACTIONS(2277), - [anon_sym_unsigned] = ACTIONS(2277), - [anon_sym_char] = ACTIONS(2277), - [anon_sym_short] = ACTIONS(2277), - [anon_sym_long] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_volatile] = ACTIONS(2277), - [anon_sym_ctypedef] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_union] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_cppclass] = ACTIONS(2277), - [anon_sym_fused] = ACTIONS(2277), - [anon_sym_public] = ACTIONS(2277), - [anon_sym_packed] = ACTIONS(2277), - [anon_sym_inline] = ACTIONS(2277), - [anon_sym_readonly] = ACTIONS(2277), - [anon_sym_sizeof] = ACTIONS(2277), - [sym__dedent] = ACTIONS(2279), - [sym_string_start] = ACTIONS(2279), + [sym_identifier] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_import] = ACTIONS(2243), + [anon_sym_cimport] = ACTIONS(2243), + [anon_sym_from] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_print] = ACTIONS(2243), + [anon_sym_assert] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_del] = ACTIONS(2243), + [anon_sym_raise] = ACTIONS(2243), + [anon_sym_pass] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [anon_sym_with] = ACTIONS(2243), + [anon_sym_def] = ACTIONS(2243), + [anon_sym_global] = ACTIONS(2243), + [anon_sym_nonlocal] = ACTIONS(2243), + [anon_sym_exec] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_class] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_AT] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_PLUS] = ACTIONS(2245), + [anon_sym_not] = ACTIONS(2243), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_TILDE] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_lambda] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2245), + [anon_sym_None] = ACTIONS(2243), + [sym_integer] = ACTIONS(2243), + [sym_float] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2243), + [anon_sym_api] = ACTIONS(2243), + [sym_true] = ACTIONS(2243), + [sym_false] = ACTIONS(2243), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2243), + [anon_sym_include] = ACTIONS(2243), + [anon_sym_DEF] = ACTIONS(2243), + [anon_sym_IF] = ACTIONS(2243), + [anon_sym_cdef] = ACTIONS(2243), + [anon_sym_cpdef] = ACTIONS(2243), + [anon_sym_int] = ACTIONS(2243), + [anon_sym_double] = ACTIONS(2243), + [anon_sym_complex] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2243), + [anon_sym_signed] = ACTIONS(2243), + [anon_sym_unsigned] = ACTIONS(2243), + [anon_sym_char] = ACTIONS(2243), + [anon_sym_short] = ACTIONS(2243), + [anon_sym_long] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_volatile] = ACTIONS(2243), + [anon_sym_ctypedef] = ACTIONS(2243), + [anon_sym_struct] = ACTIONS(2243), + [anon_sym_union] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [anon_sym_cppclass] = ACTIONS(2243), + [anon_sym_fused] = ACTIONS(2243), + [anon_sym_public] = ACTIONS(2243), + [anon_sym_packed] = ACTIONS(2243), + [anon_sym_inline] = ACTIONS(2243), + [anon_sym_readonly] = ACTIONS(2243), + [anon_sym_sizeof] = ACTIONS(2243), + [sym__dedent] = ACTIONS(2245), + [sym_string_start] = ACTIONS(2245), }, [694] = { - [sym_identifier] = ACTIONS(2281), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_import] = ACTIONS(2281), - [anon_sym_cimport] = ACTIONS(2281), - [anon_sym_from] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(2283), - [anon_sym_print] = ACTIONS(2281), - [anon_sym_assert] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_del] = ACTIONS(2281), - [anon_sym_raise] = ACTIONS(2281), - [anon_sym_pass] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_with] = ACTIONS(2281), - [anon_sym_def] = ACTIONS(2281), - [anon_sym_global] = ACTIONS(2281), - [anon_sym_nonlocal] = ACTIONS(2281), - [anon_sym_exec] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_class] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_AT] = ACTIONS(2283), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2283), - [anon_sym_not] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2283), - [anon_sym_TILDE] = ACTIONS(2283), - [anon_sym_LT] = ACTIONS(2283), - [anon_sym_lambda] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2283), - [anon_sym_None] = ACTIONS(2281), - [sym_integer] = ACTIONS(2281), - [sym_float] = ACTIONS(2283), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_api] = ACTIONS(2281), - [sym_true] = ACTIONS(2281), - [sym_false] = ACTIONS(2281), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2281), - [anon_sym_include] = ACTIONS(2281), - [anon_sym_DEF] = ACTIONS(2281), - [anon_sym_cdef] = ACTIONS(2281), - [anon_sym_cpdef] = ACTIONS(2281), - [anon_sym_int] = ACTIONS(2281), - [anon_sym_double] = ACTIONS(2281), - [anon_sym_complex] = ACTIONS(2281), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_signed] = ACTIONS(2281), - [anon_sym_unsigned] = ACTIONS(2281), - [anon_sym_char] = ACTIONS(2281), - [anon_sym_short] = ACTIONS(2281), - [anon_sym_long] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_volatile] = ACTIONS(2281), - [anon_sym_ctypedef] = ACTIONS(2281), - [anon_sym_struct] = ACTIONS(2281), - [anon_sym_union] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_cppclass] = ACTIONS(2281), - [anon_sym_fused] = ACTIONS(2281), - [anon_sym_public] = ACTIONS(2281), - [anon_sym_packed] = ACTIONS(2281), - [anon_sym_inline] = ACTIONS(2281), - [anon_sym_readonly] = ACTIONS(2281), - [anon_sym_sizeof] = ACTIONS(2281), - [sym__dedent] = ACTIONS(2283), - [sym_string_start] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_import] = ACTIONS(2247), + [anon_sym_cimport] = ACTIONS(2247), + [anon_sym_from] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2249), + [anon_sym_print] = ACTIONS(2247), + [anon_sym_assert] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_del] = ACTIONS(2247), + [anon_sym_raise] = ACTIONS(2247), + [anon_sym_pass] = ACTIONS(2247), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [anon_sym_try] = ACTIONS(2247), + [anon_sym_with] = ACTIONS(2247), + [anon_sym_def] = ACTIONS(2247), + [anon_sym_global] = ACTIONS(2247), + [anon_sym_nonlocal] = ACTIONS(2247), + [anon_sym_exec] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_class] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_AT] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_PLUS] = ACTIONS(2249), + [anon_sym_not] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_TILDE] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_lambda] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2249), + [anon_sym_None] = ACTIONS(2247), + [sym_integer] = ACTIONS(2247), + [sym_float] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2247), + [anon_sym_api] = ACTIONS(2247), + [sym_true] = ACTIONS(2247), + [sym_false] = ACTIONS(2247), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2247), + [anon_sym_include] = ACTIONS(2247), + [anon_sym_DEF] = ACTIONS(2247), + [anon_sym_IF] = ACTIONS(2247), + [anon_sym_cdef] = ACTIONS(2247), + [anon_sym_cpdef] = ACTIONS(2247), + [anon_sym_int] = ACTIONS(2247), + [anon_sym_double] = ACTIONS(2247), + [anon_sym_complex] = ACTIONS(2247), + [anon_sym_new] = ACTIONS(2247), + [anon_sym_signed] = ACTIONS(2247), + [anon_sym_unsigned] = ACTIONS(2247), + [anon_sym_char] = ACTIONS(2247), + [anon_sym_short] = ACTIONS(2247), + [anon_sym_long] = ACTIONS(2247), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_volatile] = ACTIONS(2247), + [anon_sym_ctypedef] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(2247), + [anon_sym_enum] = ACTIONS(2247), + [anon_sym_cppclass] = ACTIONS(2247), + [anon_sym_fused] = ACTIONS(2247), + [anon_sym_public] = ACTIONS(2247), + [anon_sym_packed] = ACTIONS(2247), + [anon_sym_inline] = ACTIONS(2247), + [anon_sym_readonly] = ACTIONS(2247), + [anon_sym_sizeof] = ACTIONS(2247), + [sym__dedent] = ACTIONS(2249), + [sym_string_start] = ACTIONS(2249), }, [695] = { - [sym_identifier] = ACTIONS(2285), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2285), - [anon_sym_cimport] = ACTIONS(2285), - [anon_sym_from] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2287), - [anon_sym_print] = ACTIONS(2285), - [anon_sym_assert] = ACTIONS(2285), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_del] = ACTIONS(2285), - [anon_sym_raise] = ACTIONS(2285), - [anon_sym_pass] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_match] = ACTIONS(2285), - [anon_sym_async] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2285), - [anon_sym_with] = ACTIONS(2285), - [anon_sym_def] = ACTIONS(2285), - [anon_sym_global] = ACTIONS(2285), - [anon_sym_nonlocal] = ACTIONS(2285), - [anon_sym_exec] = ACTIONS(2285), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_class] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_not] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_lambda] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2285), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2287), - [anon_sym_None] = ACTIONS(2285), - [sym_integer] = ACTIONS(2285), - [sym_float] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2285), - [anon_sym_api] = ACTIONS(2285), - [sym_true] = ACTIONS(2285), - [sym_false] = ACTIONS(2285), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2285), - [anon_sym_include] = ACTIONS(2285), - [anon_sym_DEF] = ACTIONS(2285), - [anon_sym_cdef] = ACTIONS(2285), - [anon_sym_cpdef] = ACTIONS(2285), - [anon_sym_int] = ACTIONS(2285), - [anon_sym_double] = ACTIONS(2285), - [anon_sym_complex] = ACTIONS(2285), - [anon_sym_new] = ACTIONS(2285), - [anon_sym_signed] = ACTIONS(2285), - [anon_sym_unsigned] = ACTIONS(2285), - [anon_sym_char] = ACTIONS(2285), - [anon_sym_short] = ACTIONS(2285), - [anon_sym_long] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_volatile] = ACTIONS(2285), - [anon_sym_ctypedef] = ACTIONS(2285), - [anon_sym_struct] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [anon_sym_cppclass] = ACTIONS(2285), - [anon_sym_fused] = ACTIONS(2285), - [anon_sym_public] = ACTIONS(2285), - [anon_sym_packed] = ACTIONS(2285), - [anon_sym_inline] = ACTIONS(2285), - [anon_sym_readonly] = ACTIONS(2285), - [anon_sym_sizeof] = ACTIONS(2285), - [sym__dedent] = ACTIONS(2287), - [sym_string_start] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_import] = ACTIONS(2251), + [anon_sym_cimport] = ACTIONS(2251), + [anon_sym_from] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2253), + [anon_sym_print] = ACTIONS(2251), + [anon_sym_assert] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_del] = ACTIONS(2251), + [anon_sym_raise] = ACTIONS(2251), + [anon_sym_pass] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_try] = ACTIONS(2251), + [anon_sym_with] = ACTIONS(2251), + [anon_sym_def] = ACTIONS(2251), + [anon_sym_global] = ACTIONS(2251), + [anon_sym_nonlocal] = ACTIONS(2251), + [anon_sym_exec] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_class] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_AT] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_PLUS] = ACTIONS(2253), + [anon_sym_not] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_TILDE] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_lambda] = ACTIONS(2251), + [anon_sym_yield] = ACTIONS(2251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2253), + [anon_sym_None] = ACTIONS(2251), + [sym_integer] = ACTIONS(2251), + [sym_float] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_api] = ACTIONS(2251), + [sym_true] = ACTIONS(2251), + [sym_false] = ACTIONS(2251), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2251), + [anon_sym_include] = ACTIONS(2251), + [anon_sym_DEF] = ACTIONS(2251), + [anon_sym_IF] = ACTIONS(2251), + [anon_sym_cdef] = ACTIONS(2251), + [anon_sym_cpdef] = ACTIONS(2251), + [anon_sym_int] = ACTIONS(2251), + [anon_sym_double] = ACTIONS(2251), + [anon_sym_complex] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2251), + [anon_sym_signed] = ACTIONS(2251), + [anon_sym_unsigned] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [anon_sym_short] = ACTIONS(2251), + [anon_sym_long] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_volatile] = ACTIONS(2251), + [anon_sym_ctypedef] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_cppclass] = ACTIONS(2251), + [anon_sym_fused] = ACTIONS(2251), + [anon_sym_public] = ACTIONS(2251), + [anon_sym_packed] = ACTIONS(2251), + [anon_sym_inline] = ACTIONS(2251), + [anon_sym_readonly] = ACTIONS(2251), + [anon_sym_sizeof] = ACTIONS(2251), + [sym__dedent] = ACTIONS(2253), + [sym_string_start] = ACTIONS(2253), }, [696] = { - [sym_identifier] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_import] = ACTIONS(2289), - [anon_sym_cimport] = ACTIONS(2289), - [anon_sym_from] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_print] = ACTIONS(2289), - [anon_sym_assert] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_del] = ACTIONS(2289), - [anon_sym_raise] = ACTIONS(2289), - [anon_sym_pass] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [anon_sym_with] = ACTIONS(2289), - [anon_sym_def] = ACTIONS(2289), - [anon_sym_global] = ACTIONS(2289), - [anon_sym_nonlocal] = ACTIONS(2289), - [anon_sym_exec] = ACTIONS(2289), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_class] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_AT] = ACTIONS(2291), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_PLUS] = ACTIONS(2291), - [anon_sym_not] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_TILDE] = ACTIONS(2291), - [anon_sym_LT] = ACTIONS(2291), - [anon_sym_lambda] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2291), - [anon_sym_None] = ACTIONS(2289), - [sym_integer] = ACTIONS(2289), - [sym_float] = ACTIONS(2291), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_api] = ACTIONS(2289), - [sym_true] = ACTIONS(2289), - [sym_false] = ACTIONS(2289), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2289), - [anon_sym_include] = ACTIONS(2289), - [anon_sym_DEF] = ACTIONS(2289), - [anon_sym_cdef] = ACTIONS(2289), - [anon_sym_cpdef] = ACTIONS(2289), - [anon_sym_int] = ACTIONS(2289), - [anon_sym_double] = ACTIONS(2289), - [anon_sym_complex] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2289), - [anon_sym_signed] = ACTIONS(2289), - [anon_sym_unsigned] = ACTIONS(2289), - [anon_sym_char] = ACTIONS(2289), - [anon_sym_short] = ACTIONS(2289), - [anon_sym_long] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_volatile] = ACTIONS(2289), - [anon_sym_ctypedef] = ACTIONS(2289), - [anon_sym_struct] = ACTIONS(2289), - [anon_sym_union] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_cppclass] = ACTIONS(2289), - [anon_sym_fused] = ACTIONS(2289), - [anon_sym_public] = ACTIONS(2289), - [anon_sym_packed] = ACTIONS(2289), - [anon_sym_inline] = ACTIONS(2289), - [anon_sym_readonly] = ACTIONS(2289), - [anon_sym_sizeof] = ACTIONS(2289), - [sym__dedent] = ACTIONS(2291), - [sym_string_start] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym_import] = ACTIONS(2255), + [anon_sym_cimport] = ACTIONS(2255), + [anon_sym_from] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_print] = ACTIONS(2255), + [anon_sym_assert] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_del] = ACTIONS(2255), + [anon_sym_raise] = ACTIONS(2255), + [anon_sym_pass] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_match] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_with] = ACTIONS(2255), + [anon_sym_def] = ACTIONS(2255), + [anon_sym_global] = ACTIONS(2255), + [anon_sym_nonlocal] = ACTIONS(2255), + [anon_sym_exec] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2257), + [anon_sym_AT] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2257), + [anon_sym_not] = ACTIONS(2255), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_lambda] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2257), + [anon_sym_None] = ACTIONS(2255), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2257), + [anon_sym_await] = ACTIONS(2255), + [anon_sym_api] = ACTIONS(2255), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2255), + [anon_sym_include] = ACTIONS(2255), + [anon_sym_DEF] = ACTIONS(2255), + [anon_sym_IF] = ACTIONS(2255), + [anon_sym_cdef] = ACTIONS(2255), + [anon_sym_cpdef] = ACTIONS(2255), + [anon_sym_int] = ACTIONS(2255), + [anon_sym_double] = ACTIONS(2255), + [anon_sym_complex] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_signed] = ACTIONS(2255), + [anon_sym_unsigned] = ACTIONS(2255), + [anon_sym_char] = ACTIONS(2255), + [anon_sym_short] = ACTIONS(2255), + [anon_sym_long] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_volatile] = ACTIONS(2255), + [anon_sym_ctypedef] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_cppclass] = ACTIONS(2255), + [anon_sym_fused] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_packed] = ACTIONS(2255), + [anon_sym_inline] = ACTIONS(2255), + [anon_sym_readonly] = ACTIONS(2255), + [anon_sym_sizeof] = ACTIONS(2255), + [sym__dedent] = ACTIONS(2257), + [sym_string_start] = ACTIONS(2257), }, [697] = { - [sym_identifier] = ACTIONS(2293), - [anon_sym_SEMI] = ACTIONS(2295), - [anon_sym_import] = ACTIONS(2293), - [anon_sym_cimport] = ACTIONS(2293), - [anon_sym_from] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_print] = ACTIONS(2293), - [anon_sym_assert] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_del] = ACTIONS(2293), - [anon_sym_raise] = ACTIONS(2293), - [anon_sym_pass] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2293), - [anon_sym_with] = ACTIONS(2293), - [anon_sym_def] = ACTIONS(2293), - [anon_sym_global] = ACTIONS(2293), - [anon_sym_nonlocal] = ACTIONS(2293), - [anon_sym_exec] = ACTIONS(2293), - [anon_sym_type] = ACTIONS(2293), - [anon_sym_class] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2295), - [anon_sym_AT] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(2295), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2295), - [anon_sym_not] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_TILDE] = ACTIONS(2295), - [anon_sym_LT] = ACTIONS(2295), - [anon_sym_lambda] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2295), - [anon_sym_None] = ACTIONS(2293), - [sym_integer] = ACTIONS(2293), - [sym_float] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2293), - [anon_sym_api] = ACTIONS(2293), - [sym_true] = ACTIONS(2293), - [sym_false] = ACTIONS(2293), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2293), - [anon_sym_include] = ACTIONS(2293), - [anon_sym_DEF] = ACTIONS(2293), - [anon_sym_cdef] = ACTIONS(2293), - [anon_sym_cpdef] = ACTIONS(2293), - [anon_sym_int] = ACTIONS(2293), - [anon_sym_double] = ACTIONS(2293), - [anon_sym_complex] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(2293), - [anon_sym_signed] = ACTIONS(2293), - [anon_sym_unsigned] = ACTIONS(2293), - [anon_sym_char] = ACTIONS(2293), - [anon_sym_short] = ACTIONS(2293), - [anon_sym_long] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_volatile] = ACTIONS(2293), - [anon_sym_ctypedef] = ACTIONS(2293), - [anon_sym_struct] = ACTIONS(2293), - [anon_sym_union] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), - [anon_sym_cppclass] = ACTIONS(2293), - [anon_sym_fused] = ACTIONS(2293), - [anon_sym_public] = ACTIONS(2293), - [anon_sym_packed] = ACTIONS(2293), - [anon_sym_inline] = ACTIONS(2293), - [anon_sym_readonly] = ACTIONS(2293), - [anon_sym_sizeof] = ACTIONS(2293), - [sym__dedent] = ACTIONS(2295), - [sym_string_start] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2259), + [anon_sym_cimport] = ACTIONS(2259), + [anon_sym_from] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(2261), + [anon_sym_print] = ACTIONS(2259), + [anon_sym_assert] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_del] = ACTIONS(2259), + [anon_sym_raise] = ACTIONS(2259), + [anon_sym_pass] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [anon_sym_with] = ACTIONS(2259), + [anon_sym_def] = ACTIONS(2259), + [anon_sym_global] = ACTIONS(2259), + [anon_sym_nonlocal] = ACTIONS(2259), + [anon_sym_exec] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_class] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2261), + [anon_sym_not] = ACTIONS(2259), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_TILDE] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_lambda] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2261), + [anon_sym_None] = ACTIONS(2259), + [sym_integer] = ACTIONS(2259), + [sym_float] = ACTIONS(2261), + [anon_sym_await] = ACTIONS(2259), + [anon_sym_api] = ACTIONS(2259), + [sym_true] = ACTIONS(2259), + [sym_false] = ACTIONS(2259), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2259), + [anon_sym_include] = ACTIONS(2259), + [anon_sym_DEF] = ACTIONS(2259), + [anon_sym_IF] = ACTIONS(2259), + [anon_sym_cdef] = ACTIONS(2259), + [anon_sym_cpdef] = ACTIONS(2259), + [anon_sym_int] = ACTIONS(2259), + [anon_sym_double] = ACTIONS(2259), + [anon_sym_complex] = ACTIONS(2259), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_signed] = ACTIONS(2259), + [anon_sym_unsigned] = ACTIONS(2259), + [anon_sym_char] = ACTIONS(2259), + [anon_sym_short] = ACTIONS(2259), + [anon_sym_long] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_volatile] = ACTIONS(2259), + [anon_sym_ctypedef] = ACTIONS(2259), + [anon_sym_struct] = ACTIONS(2259), + [anon_sym_union] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [anon_sym_cppclass] = ACTIONS(2259), + [anon_sym_fused] = ACTIONS(2259), + [anon_sym_public] = ACTIONS(2259), + [anon_sym_packed] = ACTIONS(2259), + [anon_sym_inline] = ACTIONS(2259), + [anon_sym_readonly] = ACTIONS(2259), + [anon_sym_sizeof] = ACTIONS(2259), + [sym__dedent] = ACTIONS(2261), + [sym_string_start] = ACTIONS(2261), }, [698] = { - [sym_identifier] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2299), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_cimport] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(2299), - [anon_sym_print] = ACTIONS(2297), - [anon_sym_assert] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_del] = ACTIONS(2297), - [anon_sym_raise] = ACTIONS(2297), - [anon_sym_pass] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_def] = ACTIONS(2297), - [anon_sym_global] = ACTIONS(2297), - [anon_sym_nonlocal] = ACTIONS(2297), - [anon_sym_exec] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_AT] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_not] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_TILDE] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(2299), - [anon_sym_lambda] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2299), - [anon_sym_None] = ACTIONS(2297), - [sym_integer] = ACTIONS(2297), - [sym_float] = ACTIONS(2299), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_api] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_include] = ACTIONS(2297), - [anon_sym_DEF] = ACTIONS(2297), - [anon_sym_cdef] = ACTIONS(2297), - [anon_sym_cpdef] = ACTIONS(2297), - [anon_sym_int] = ACTIONS(2297), - [anon_sym_double] = ACTIONS(2297), - [anon_sym_complex] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_signed] = ACTIONS(2297), - [anon_sym_unsigned] = ACTIONS(2297), - [anon_sym_char] = ACTIONS(2297), - [anon_sym_short] = ACTIONS(2297), - [anon_sym_long] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_volatile] = ACTIONS(2297), - [anon_sym_ctypedef] = ACTIONS(2297), - [anon_sym_struct] = ACTIONS(2297), - [anon_sym_union] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [anon_sym_cppclass] = ACTIONS(2297), - [anon_sym_fused] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_packed] = ACTIONS(2297), - [anon_sym_inline] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_sizeof] = ACTIONS(2297), - [sym__dedent] = ACTIONS(2299), - [sym_string_start] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2265), + [anon_sym_import] = ACTIONS(2263), + [anon_sym_cimport] = ACTIONS(2263), + [anon_sym_from] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_print] = ACTIONS(2263), + [anon_sym_assert] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_del] = ACTIONS(2263), + [anon_sym_raise] = ACTIONS(2263), + [anon_sym_pass] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_match] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [anon_sym_with] = ACTIONS(2263), + [anon_sym_def] = ACTIONS(2263), + [anon_sym_global] = ACTIONS(2263), + [anon_sym_nonlocal] = ACTIONS(2263), + [anon_sym_exec] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_class] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_AT] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2265), + [anon_sym_PLUS] = ACTIONS(2265), + [anon_sym_not] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_TILDE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_lambda] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2265), + [anon_sym_None] = ACTIONS(2263), + [sym_integer] = ACTIONS(2263), + [sym_float] = ACTIONS(2265), + [anon_sym_await] = ACTIONS(2263), + [anon_sym_api] = ACTIONS(2263), + [sym_true] = ACTIONS(2263), + [sym_false] = ACTIONS(2263), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2263), + [anon_sym_include] = ACTIONS(2263), + [anon_sym_DEF] = ACTIONS(2263), + [anon_sym_IF] = ACTIONS(2263), + [anon_sym_cdef] = ACTIONS(2263), + [anon_sym_cpdef] = ACTIONS(2263), + [anon_sym_int] = ACTIONS(2263), + [anon_sym_double] = ACTIONS(2263), + [anon_sym_complex] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2263), + [anon_sym_signed] = ACTIONS(2263), + [anon_sym_unsigned] = ACTIONS(2263), + [anon_sym_char] = ACTIONS(2263), + [anon_sym_short] = ACTIONS(2263), + [anon_sym_long] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_volatile] = ACTIONS(2263), + [anon_sym_ctypedef] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2263), + [anon_sym_union] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [anon_sym_cppclass] = ACTIONS(2263), + [anon_sym_fused] = ACTIONS(2263), + [anon_sym_public] = ACTIONS(2263), + [anon_sym_packed] = ACTIONS(2263), + [anon_sym_inline] = ACTIONS(2263), + [anon_sym_readonly] = ACTIONS(2263), + [anon_sym_sizeof] = ACTIONS(2263), + [sym__dedent] = ACTIONS(2265), + [sym_string_start] = ACTIONS(2265), }, [699] = { - [sym_identifier] = ACTIONS(2301), - [anon_sym_SEMI] = ACTIONS(2303), - [anon_sym_import] = ACTIONS(2301), - [anon_sym_cimport] = ACTIONS(2301), - [anon_sym_from] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2303), - [anon_sym_STAR] = ACTIONS(2303), - [anon_sym_print] = ACTIONS(2301), - [anon_sym_assert] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_del] = ACTIONS(2301), - [anon_sym_raise] = ACTIONS(2301), - [anon_sym_pass] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2301), - [anon_sym_with] = ACTIONS(2301), - [anon_sym_def] = ACTIONS(2301), - [anon_sym_global] = ACTIONS(2301), - [anon_sym_nonlocal] = ACTIONS(2301), - [anon_sym_exec] = ACTIONS(2301), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_class] = ACTIONS(2301), - [anon_sym_LBRACK] = ACTIONS(2303), - [anon_sym_AT] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_PLUS] = ACTIONS(2303), - [anon_sym_not] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2303), - [anon_sym_TILDE] = ACTIONS(2303), - [anon_sym_LT] = ACTIONS(2303), - [anon_sym_lambda] = ACTIONS(2301), - [anon_sym_yield] = ACTIONS(2301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2303), - [anon_sym_None] = ACTIONS(2301), - [sym_integer] = ACTIONS(2301), - [sym_float] = ACTIONS(2303), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_api] = ACTIONS(2301), - [sym_true] = ACTIONS(2301), - [sym_false] = ACTIONS(2301), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2301), - [anon_sym_include] = ACTIONS(2301), - [anon_sym_DEF] = ACTIONS(2301), - [anon_sym_cdef] = ACTIONS(2301), - [anon_sym_cpdef] = ACTIONS(2301), - [anon_sym_int] = ACTIONS(2301), - [anon_sym_double] = ACTIONS(2301), - [anon_sym_complex] = ACTIONS(2301), - [anon_sym_new] = ACTIONS(2301), - [anon_sym_signed] = ACTIONS(2301), - [anon_sym_unsigned] = ACTIONS(2301), - [anon_sym_char] = ACTIONS(2301), - [anon_sym_short] = ACTIONS(2301), - [anon_sym_long] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_volatile] = ACTIONS(2301), - [anon_sym_ctypedef] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), - [anon_sym_cppclass] = ACTIONS(2301), - [anon_sym_fused] = ACTIONS(2301), - [anon_sym_public] = ACTIONS(2301), - [anon_sym_packed] = ACTIONS(2301), - [anon_sym_inline] = ACTIONS(2301), - [anon_sym_readonly] = ACTIONS(2301), - [anon_sym_sizeof] = ACTIONS(2301), - [sym__dedent] = ACTIONS(2303), - [sym_string_start] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2267), + [anon_sym_SEMI] = ACTIONS(2269), + [anon_sym_import] = ACTIONS(2267), + [anon_sym_cimport] = ACTIONS(2267), + [anon_sym_from] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2269), + [anon_sym_print] = ACTIONS(2267), + [anon_sym_assert] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_del] = ACTIONS(2267), + [anon_sym_raise] = ACTIONS(2267), + [anon_sym_pass] = ACTIONS(2267), + [anon_sym_break] = ACTIONS(2267), + [anon_sym_continue] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2267), + [anon_sym_match] = ACTIONS(2267), + [anon_sym_async] = ACTIONS(2267), + [anon_sym_for] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2267), + [anon_sym_try] = ACTIONS(2267), + [anon_sym_with] = ACTIONS(2267), + [anon_sym_def] = ACTIONS(2267), + [anon_sym_global] = ACTIONS(2267), + [anon_sym_nonlocal] = ACTIONS(2267), + [anon_sym_exec] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2267), + [anon_sym_class] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2269), + [anon_sym_AT] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_PLUS] = ACTIONS(2269), + [anon_sym_not] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2269), + [anon_sym_TILDE] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_lambda] = ACTIONS(2267), + [anon_sym_yield] = ACTIONS(2267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2269), + [anon_sym_None] = ACTIONS(2267), + [sym_integer] = ACTIONS(2267), + [sym_float] = ACTIONS(2269), + [anon_sym_await] = ACTIONS(2267), + [anon_sym_api] = ACTIONS(2267), + [sym_true] = ACTIONS(2267), + [sym_false] = ACTIONS(2267), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2267), + [anon_sym_include] = ACTIONS(2267), + [anon_sym_DEF] = ACTIONS(2267), + [anon_sym_IF] = ACTIONS(2267), + [anon_sym_cdef] = ACTIONS(2267), + [anon_sym_cpdef] = ACTIONS(2267), + [anon_sym_int] = ACTIONS(2267), + [anon_sym_double] = ACTIONS(2267), + [anon_sym_complex] = ACTIONS(2267), + [anon_sym_new] = ACTIONS(2267), + [anon_sym_signed] = ACTIONS(2267), + [anon_sym_unsigned] = ACTIONS(2267), + [anon_sym_char] = ACTIONS(2267), + [anon_sym_short] = ACTIONS(2267), + [anon_sym_long] = ACTIONS(2267), + [anon_sym_const] = ACTIONS(2267), + [anon_sym_volatile] = ACTIONS(2267), + [anon_sym_ctypedef] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2267), + [anon_sym_union] = ACTIONS(2267), + [anon_sym_enum] = ACTIONS(2267), + [anon_sym_cppclass] = ACTIONS(2267), + [anon_sym_fused] = ACTIONS(2267), + [anon_sym_public] = ACTIONS(2267), + [anon_sym_packed] = ACTIONS(2267), + [anon_sym_inline] = ACTIONS(2267), + [anon_sym_readonly] = ACTIONS(2267), + [anon_sym_sizeof] = ACTIONS(2267), + [sym__dedent] = ACTIONS(2269), + [sym_string_start] = ACTIONS(2269), }, [700] = { - [sym_identifier] = ACTIONS(2305), - [anon_sym_SEMI] = ACTIONS(2307), - [anon_sym_import] = ACTIONS(2305), - [anon_sym_cimport] = ACTIONS(2305), - [anon_sym_from] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_print] = ACTIONS(2305), - [anon_sym_assert] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_del] = ACTIONS(2305), - [anon_sym_raise] = ACTIONS(2305), - [anon_sym_pass] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_with] = ACTIONS(2305), - [anon_sym_def] = ACTIONS(2305), - [anon_sym_global] = ACTIONS(2305), - [anon_sym_nonlocal] = ACTIONS(2305), - [anon_sym_exec] = ACTIONS(2305), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2307), - [anon_sym_AT] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2307), - [anon_sym_LBRACE] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2307), - [anon_sym_not] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_TILDE] = ACTIONS(2307), - [anon_sym_LT] = ACTIONS(2307), - [anon_sym_lambda] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2307), - [anon_sym_None] = ACTIONS(2305), - [sym_integer] = ACTIONS(2305), - [sym_float] = ACTIONS(2307), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_api] = ACTIONS(2305), - [sym_true] = ACTIONS(2305), - [sym_false] = ACTIONS(2305), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2305), - [anon_sym_include] = ACTIONS(2305), - [anon_sym_DEF] = ACTIONS(2305), - [anon_sym_cdef] = ACTIONS(2305), - [anon_sym_cpdef] = ACTIONS(2305), - [anon_sym_int] = ACTIONS(2305), - [anon_sym_double] = ACTIONS(2305), - [anon_sym_complex] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_signed] = ACTIONS(2305), - [anon_sym_unsigned] = ACTIONS(2305), - [anon_sym_char] = ACTIONS(2305), - [anon_sym_short] = ACTIONS(2305), - [anon_sym_long] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_volatile] = ACTIONS(2305), - [anon_sym_ctypedef] = ACTIONS(2305), - [anon_sym_struct] = ACTIONS(2305), - [anon_sym_union] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_cppclass] = ACTIONS(2305), - [anon_sym_fused] = ACTIONS(2305), - [anon_sym_public] = ACTIONS(2305), - [anon_sym_packed] = ACTIONS(2305), - [anon_sym_inline] = ACTIONS(2305), - [anon_sym_readonly] = ACTIONS(2305), - [anon_sym_sizeof] = ACTIONS(2305), - [sym__dedent] = ACTIONS(2307), - [sym_string_start] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_import] = ACTIONS(2271), + [anon_sym_cimport] = ACTIONS(2271), + [anon_sym_from] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_print] = ACTIONS(2271), + [anon_sym_assert] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_del] = ACTIONS(2271), + [anon_sym_raise] = ACTIONS(2271), + [anon_sym_pass] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [anon_sym_try] = ACTIONS(2271), + [anon_sym_with] = ACTIONS(2271), + [anon_sym_def] = ACTIONS(2271), + [anon_sym_global] = ACTIONS(2271), + [anon_sym_nonlocal] = ACTIONS(2271), + [anon_sym_exec] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_class] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_AT] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_not] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2273), + [anon_sym_TILDE] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_lambda] = ACTIONS(2271), + [anon_sym_yield] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2273), + [anon_sym_None] = ACTIONS(2271), + [sym_integer] = ACTIONS(2271), + [sym_float] = ACTIONS(2273), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_api] = ACTIONS(2271), + [sym_true] = ACTIONS(2271), + [sym_false] = ACTIONS(2271), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2271), + [anon_sym_include] = ACTIONS(2271), + [anon_sym_DEF] = ACTIONS(2271), + [anon_sym_IF] = ACTIONS(2271), + [anon_sym_cdef] = ACTIONS(2271), + [anon_sym_cpdef] = ACTIONS(2271), + [anon_sym_int] = ACTIONS(2271), + [anon_sym_double] = ACTIONS(2271), + [anon_sym_complex] = ACTIONS(2271), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_signed] = ACTIONS(2271), + [anon_sym_unsigned] = ACTIONS(2271), + [anon_sym_char] = ACTIONS(2271), + [anon_sym_short] = ACTIONS(2271), + [anon_sym_long] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [anon_sym_volatile] = ACTIONS(2271), + [anon_sym_ctypedef] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_enum] = ACTIONS(2271), + [anon_sym_cppclass] = ACTIONS(2271), + [anon_sym_fused] = ACTIONS(2271), + [anon_sym_public] = ACTIONS(2271), + [anon_sym_packed] = ACTIONS(2271), + [anon_sym_inline] = ACTIONS(2271), + [anon_sym_readonly] = ACTIONS(2271), + [anon_sym_sizeof] = ACTIONS(2271), + [sym__dedent] = ACTIONS(2273), + [sym_string_start] = ACTIONS(2273), }, [701] = { - [sym_identifier] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2311), - [anon_sym_import] = ACTIONS(2309), - [anon_sym_cimport] = ACTIONS(2309), - [anon_sym_from] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_print] = ACTIONS(2309), - [anon_sym_assert] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_del] = ACTIONS(2309), - [anon_sym_raise] = ACTIONS(2309), - [anon_sym_pass] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_async] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_with] = ACTIONS(2309), - [anon_sym_def] = ACTIONS(2309), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_nonlocal] = ACTIONS(2309), - [anon_sym_exec] = ACTIONS(2309), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_class] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2311), - [anon_sym_AT] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2311), - [anon_sym_not] = ACTIONS(2309), - [anon_sym_AMP] = ACTIONS(2311), - [anon_sym_TILDE] = ACTIONS(2311), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_lambda] = ACTIONS(2309), - [anon_sym_yield] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2311), - [anon_sym_None] = ACTIONS(2309), - [sym_integer] = ACTIONS(2309), - [sym_float] = ACTIONS(2311), - [anon_sym_await] = ACTIONS(2309), - [anon_sym_api] = ACTIONS(2309), - [sym_true] = ACTIONS(2309), - [sym_false] = ACTIONS(2309), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2309), - [anon_sym_include] = ACTIONS(2309), - [anon_sym_DEF] = ACTIONS(2309), - [anon_sym_cdef] = ACTIONS(2309), - [anon_sym_cpdef] = ACTIONS(2309), - [anon_sym_int] = ACTIONS(2309), - [anon_sym_double] = ACTIONS(2309), - [anon_sym_complex] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_signed] = ACTIONS(2309), - [anon_sym_unsigned] = ACTIONS(2309), - [anon_sym_char] = ACTIONS(2309), - [anon_sym_short] = ACTIONS(2309), - [anon_sym_long] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_volatile] = ACTIONS(2309), - [anon_sym_ctypedef] = ACTIONS(2309), - [anon_sym_struct] = ACTIONS(2309), - [anon_sym_union] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_cppclass] = ACTIONS(2309), - [anon_sym_fused] = ACTIONS(2309), - [anon_sym_public] = ACTIONS(2309), - [anon_sym_packed] = ACTIONS(2309), - [anon_sym_inline] = ACTIONS(2309), - [anon_sym_readonly] = ACTIONS(2309), - [anon_sym_sizeof] = ACTIONS(2309), - [sym__dedent] = ACTIONS(2311), - [sym_string_start] = ACTIONS(2311), + [sym_identifier] = ACTIONS(2275), + [anon_sym_SEMI] = ACTIONS(2277), + [anon_sym_import] = ACTIONS(2275), + [anon_sym_cimport] = ACTIONS(2275), + [anon_sym_from] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2277), + [anon_sym_print] = ACTIONS(2275), + [anon_sym_assert] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_del] = ACTIONS(2275), + [anon_sym_raise] = ACTIONS(2275), + [anon_sym_pass] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_async] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [anon_sym_try] = ACTIONS(2275), + [anon_sym_with] = ACTIONS(2275), + [anon_sym_def] = ACTIONS(2275), + [anon_sym_global] = ACTIONS(2275), + [anon_sym_nonlocal] = ACTIONS(2275), + [anon_sym_exec] = ACTIONS(2275), + [anon_sym_type] = ACTIONS(2275), + [anon_sym_class] = ACTIONS(2275), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_AT] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2277), + [anon_sym_PLUS] = ACTIONS(2277), + [anon_sym_not] = ACTIONS(2275), + [anon_sym_AMP] = ACTIONS(2277), + [anon_sym_TILDE] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_lambda] = ACTIONS(2275), + [anon_sym_yield] = ACTIONS(2275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2277), + [anon_sym_None] = ACTIONS(2275), + [sym_integer] = ACTIONS(2275), + [sym_float] = ACTIONS(2277), + [anon_sym_await] = ACTIONS(2275), + [anon_sym_api] = ACTIONS(2275), + [sym_true] = ACTIONS(2275), + [sym_false] = ACTIONS(2275), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2275), + [anon_sym_include] = ACTIONS(2275), + [anon_sym_DEF] = ACTIONS(2275), + [anon_sym_IF] = ACTIONS(2275), + [anon_sym_cdef] = ACTIONS(2275), + [anon_sym_cpdef] = ACTIONS(2275), + [anon_sym_int] = ACTIONS(2275), + [anon_sym_double] = ACTIONS(2275), + [anon_sym_complex] = ACTIONS(2275), + [anon_sym_new] = ACTIONS(2275), + [anon_sym_signed] = ACTIONS(2275), + [anon_sym_unsigned] = ACTIONS(2275), + [anon_sym_char] = ACTIONS(2275), + [anon_sym_short] = ACTIONS(2275), + [anon_sym_long] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [anon_sym_volatile] = ACTIONS(2275), + [anon_sym_ctypedef] = ACTIONS(2275), + [anon_sym_struct] = ACTIONS(2275), + [anon_sym_union] = ACTIONS(2275), + [anon_sym_enum] = ACTIONS(2275), + [anon_sym_cppclass] = ACTIONS(2275), + [anon_sym_fused] = ACTIONS(2275), + [anon_sym_public] = ACTIONS(2275), + [anon_sym_packed] = ACTIONS(2275), + [anon_sym_inline] = ACTIONS(2275), + [anon_sym_readonly] = ACTIONS(2275), + [anon_sym_sizeof] = ACTIONS(2275), + [sym__dedent] = ACTIONS(2277), + [sym_string_start] = ACTIONS(2277), }, [702] = { - [sym_identifier] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2315), - [anon_sym_import] = ACTIONS(2313), - [anon_sym_cimport] = ACTIONS(2313), - [anon_sym_from] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2315), - [anon_sym_STAR] = ACTIONS(2315), - [anon_sym_print] = ACTIONS(2313), - [anon_sym_assert] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_del] = ACTIONS(2313), - [anon_sym_raise] = ACTIONS(2313), - [anon_sym_pass] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_with] = ACTIONS(2313), - [anon_sym_def] = ACTIONS(2313), - [anon_sym_global] = ACTIONS(2313), - [anon_sym_nonlocal] = ACTIONS(2313), - [anon_sym_exec] = ACTIONS(2313), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_class] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_AT] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2315), - [anon_sym_PLUS] = ACTIONS(2315), - [anon_sym_not] = ACTIONS(2313), - [anon_sym_AMP] = ACTIONS(2315), - [anon_sym_TILDE] = ACTIONS(2315), - [anon_sym_LT] = ACTIONS(2315), - [anon_sym_lambda] = ACTIONS(2313), - [anon_sym_yield] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2315), - [anon_sym_None] = ACTIONS(2313), - [sym_integer] = ACTIONS(2313), - [sym_float] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_api] = ACTIONS(2313), - [sym_true] = ACTIONS(2313), - [sym_false] = ACTIONS(2313), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2313), - [anon_sym_include] = ACTIONS(2313), - [anon_sym_DEF] = ACTIONS(2313), - [anon_sym_cdef] = ACTIONS(2313), - [anon_sym_cpdef] = ACTIONS(2313), - [anon_sym_int] = ACTIONS(2313), - [anon_sym_double] = ACTIONS(2313), - [anon_sym_complex] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_signed] = ACTIONS(2313), - [anon_sym_unsigned] = ACTIONS(2313), - [anon_sym_char] = ACTIONS(2313), - [anon_sym_short] = ACTIONS(2313), - [anon_sym_long] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_volatile] = ACTIONS(2313), - [anon_sym_ctypedef] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2313), - [anon_sym_union] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), - [anon_sym_cppclass] = ACTIONS(2313), - [anon_sym_fused] = ACTIONS(2313), - [anon_sym_public] = ACTIONS(2313), - [anon_sym_packed] = ACTIONS(2313), - [anon_sym_inline] = ACTIONS(2313), - [anon_sym_readonly] = ACTIONS(2313), - [anon_sym_sizeof] = ACTIONS(2313), - [sym__dedent] = ACTIONS(2315), - [sym_string_start] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_import] = ACTIONS(2279), + [anon_sym_cimport] = ACTIONS(2279), + [anon_sym_from] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(2281), + [anon_sym_print] = ACTIONS(2279), + [anon_sym_assert] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2279), + [anon_sym_del] = ACTIONS(2279), + [anon_sym_raise] = ACTIONS(2279), + [anon_sym_pass] = ACTIONS(2279), + [anon_sym_break] = ACTIONS(2279), + [anon_sym_continue] = ACTIONS(2279), + [anon_sym_if] = ACTIONS(2279), + [anon_sym_match] = ACTIONS(2279), + [anon_sym_async] = ACTIONS(2279), + [anon_sym_for] = ACTIONS(2279), + [anon_sym_while] = ACTIONS(2279), + [anon_sym_try] = ACTIONS(2279), + [anon_sym_with] = ACTIONS(2279), + [anon_sym_def] = ACTIONS(2279), + [anon_sym_global] = ACTIONS(2279), + [anon_sym_nonlocal] = ACTIONS(2279), + [anon_sym_exec] = ACTIONS(2279), + [anon_sym_type] = ACTIONS(2279), + [anon_sym_class] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_AT] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2281), + [anon_sym_not] = ACTIONS(2279), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_TILDE] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_lambda] = ACTIONS(2279), + [anon_sym_yield] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2281), + [anon_sym_None] = ACTIONS(2279), + [sym_integer] = ACTIONS(2279), + [sym_float] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2279), + [anon_sym_api] = ACTIONS(2279), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2279), + [anon_sym_include] = ACTIONS(2279), + [anon_sym_DEF] = ACTIONS(2279), + [anon_sym_IF] = ACTIONS(2279), + [anon_sym_cdef] = ACTIONS(2279), + [anon_sym_cpdef] = ACTIONS(2279), + [anon_sym_int] = ACTIONS(2279), + [anon_sym_double] = ACTIONS(2279), + [anon_sym_complex] = ACTIONS(2279), + [anon_sym_new] = ACTIONS(2279), + [anon_sym_signed] = ACTIONS(2279), + [anon_sym_unsigned] = ACTIONS(2279), + [anon_sym_char] = ACTIONS(2279), + [anon_sym_short] = ACTIONS(2279), + [anon_sym_long] = ACTIONS(2279), + [anon_sym_const] = ACTIONS(2279), + [anon_sym_volatile] = ACTIONS(2279), + [anon_sym_ctypedef] = ACTIONS(2279), + [anon_sym_struct] = ACTIONS(2279), + [anon_sym_union] = ACTIONS(2279), + [anon_sym_enum] = ACTIONS(2279), + [anon_sym_cppclass] = ACTIONS(2279), + [anon_sym_fused] = ACTIONS(2279), + [anon_sym_public] = ACTIONS(2279), + [anon_sym_packed] = ACTIONS(2279), + [anon_sym_inline] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2279), + [anon_sym_sizeof] = ACTIONS(2279), + [sym__dedent] = ACTIONS(2281), + [sym_string_start] = ACTIONS(2281), }, [703] = { - [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_print] = ACTIONS(2317), - [anon_sym_assert] = ACTIONS(2317), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_del] = ACTIONS(2317), - [anon_sym_raise] = ACTIONS(2317), - [anon_sym_pass] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_with] = ACTIONS(2317), - [anon_sym_def] = ACTIONS(2317), - [anon_sym_global] = ACTIONS(2317), - [anon_sym_nonlocal] = ACTIONS(2317), - [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_not] = ACTIONS(2317), - [anon_sym_AMP] = ACTIONS(2319), - [anon_sym_TILDE] = ACTIONS(2319), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_lambda] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2319), - [anon_sym_None] = ACTIONS(2317), - [sym_integer] = ACTIONS(2317), - [sym_float] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_api] = ACTIONS(2317), - [sym_true] = ACTIONS(2317), - [sym_false] = ACTIONS(2317), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2317), - [anon_sym_include] = ACTIONS(2317), - [anon_sym_DEF] = ACTIONS(2317), - [anon_sym_cdef] = ACTIONS(2317), - [anon_sym_cpdef] = ACTIONS(2317), - [anon_sym_int] = ACTIONS(2317), - [anon_sym_double] = ACTIONS(2317), - [anon_sym_complex] = ACTIONS(2317), - [anon_sym_new] = ACTIONS(2317), - [anon_sym_signed] = ACTIONS(2317), - [anon_sym_unsigned] = ACTIONS(2317), - [anon_sym_char] = ACTIONS(2317), - [anon_sym_short] = ACTIONS(2317), - [anon_sym_long] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_volatile] = ACTIONS(2317), - [anon_sym_ctypedef] = ACTIONS(2317), - [anon_sym_struct] = ACTIONS(2317), - [anon_sym_union] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - [anon_sym_cppclass] = ACTIONS(2317), - [anon_sym_fused] = ACTIONS(2317), - [anon_sym_public] = ACTIONS(2317), - [anon_sym_packed] = ACTIONS(2317), - [anon_sym_inline] = ACTIONS(2317), - [anon_sym_readonly] = ACTIONS(2317), - [anon_sym_sizeof] = ACTIONS(2317), - [sym__dedent] = ACTIONS(2319), - [sym_string_start] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2283), + [anon_sym_cimport] = ACTIONS(2283), + [anon_sym_from] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_print] = ACTIONS(2283), + [anon_sym_assert] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2283), + [anon_sym_del] = ACTIONS(2283), + [anon_sym_raise] = ACTIONS(2283), + [anon_sym_pass] = ACTIONS(2283), + [anon_sym_break] = ACTIONS(2283), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_match] = ACTIONS(2283), + [anon_sym_async] = ACTIONS(2283), + [anon_sym_for] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2283), + [anon_sym_try] = ACTIONS(2283), + [anon_sym_with] = ACTIONS(2283), + [anon_sym_def] = ACTIONS(2283), + [anon_sym_global] = ACTIONS(2283), + [anon_sym_nonlocal] = ACTIONS(2283), + [anon_sym_exec] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2283), + [anon_sym_class] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_not] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_lambda] = ACTIONS(2283), + [anon_sym_yield] = ACTIONS(2283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2285), + [anon_sym_None] = ACTIONS(2283), + [sym_integer] = ACTIONS(2283), + [sym_float] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2283), + [anon_sym_api] = ACTIONS(2283), + [sym_true] = ACTIONS(2283), + [sym_false] = ACTIONS(2283), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2283), + [anon_sym_include] = ACTIONS(2283), + [anon_sym_DEF] = ACTIONS(2283), + [anon_sym_IF] = ACTIONS(2283), + [anon_sym_cdef] = ACTIONS(2283), + [anon_sym_cpdef] = ACTIONS(2283), + [anon_sym_int] = ACTIONS(2283), + [anon_sym_double] = ACTIONS(2283), + [anon_sym_complex] = ACTIONS(2283), + [anon_sym_new] = ACTIONS(2283), + [anon_sym_signed] = ACTIONS(2283), + [anon_sym_unsigned] = ACTIONS(2283), + [anon_sym_char] = ACTIONS(2283), + [anon_sym_short] = ACTIONS(2283), + [anon_sym_long] = ACTIONS(2283), + [anon_sym_const] = ACTIONS(2283), + [anon_sym_volatile] = ACTIONS(2283), + [anon_sym_ctypedef] = ACTIONS(2283), + [anon_sym_struct] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_enum] = ACTIONS(2283), + [anon_sym_cppclass] = ACTIONS(2283), + [anon_sym_fused] = ACTIONS(2283), + [anon_sym_public] = ACTIONS(2283), + [anon_sym_packed] = ACTIONS(2283), + [anon_sym_inline] = ACTIONS(2283), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_sizeof] = ACTIONS(2283), + [sym__dedent] = ACTIONS(2285), + [sym_string_start] = ACTIONS(2285), }, [704] = { - [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), + [sym_identifier] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2287), + [anon_sym_cimport] = ACTIONS(2287), + [anon_sym_from] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_print] = ACTIONS(2287), + [anon_sym_assert] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_del] = ACTIONS(2287), + [anon_sym_raise] = ACTIONS(2287), + [anon_sym_pass] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_match] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_try] = ACTIONS(2287), + [anon_sym_with] = ACTIONS(2287), + [anon_sym_def] = ACTIONS(2287), + [anon_sym_global] = ACTIONS(2287), + [anon_sym_nonlocal] = ACTIONS(2287), + [anon_sym_exec] = ACTIONS(2287), + [anon_sym_type] = ACTIONS(2287), + [anon_sym_class] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_AT] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_not] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_TILDE] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_lambda] = ACTIONS(2287), + [anon_sym_yield] = ACTIONS(2287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2289), + [anon_sym_None] = ACTIONS(2287), + [sym_integer] = ACTIONS(2287), + [sym_float] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2287), + [anon_sym_api] = ACTIONS(2287), + [sym_true] = ACTIONS(2287), + [sym_false] = ACTIONS(2287), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2287), + [anon_sym_include] = ACTIONS(2287), + [anon_sym_DEF] = ACTIONS(2287), + [anon_sym_IF] = ACTIONS(2287), + [anon_sym_cdef] = ACTIONS(2287), + [anon_sym_cpdef] = ACTIONS(2287), + [anon_sym_int] = ACTIONS(2287), + [anon_sym_double] = ACTIONS(2287), + [anon_sym_complex] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2287), + [anon_sym_signed] = ACTIONS(2287), + [anon_sym_unsigned] = ACTIONS(2287), + [anon_sym_char] = ACTIONS(2287), + [anon_sym_short] = ACTIONS(2287), + [anon_sym_long] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [anon_sym_volatile] = ACTIONS(2287), + [anon_sym_ctypedef] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(2287), + [anon_sym_union] = ACTIONS(2287), + [anon_sym_enum] = ACTIONS(2287), + [anon_sym_cppclass] = ACTIONS(2287), + [anon_sym_fused] = ACTIONS(2287), + [anon_sym_public] = ACTIONS(2287), + [anon_sym_packed] = ACTIONS(2287), + [anon_sym_inline] = ACTIONS(2287), + [anon_sym_readonly] = ACTIONS(2287), + [anon_sym_sizeof] = ACTIONS(2287), + [sym__dedent] = ACTIONS(2289), + [sym_string_start] = ACTIONS(2289), }, [705] = { - [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(2291), + [anon_sym_SEMI] = ACTIONS(2293), + [anon_sym_import] = ACTIONS(2291), + [anon_sym_cimport] = ACTIONS(2291), + [anon_sym_from] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_print] = ACTIONS(2291), + [anon_sym_assert] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_del] = ACTIONS(2291), + [anon_sym_raise] = ACTIONS(2291), + [anon_sym_pass] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_match] = ACTIONS(2291), + [anon_sym_async] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2291), + [anon_sym_with] = ACTIONS(2291), + [anon_sym_def] = ACTIONS(2291), + [anon_sym_global] = ACTIONS(2291), + [anon_sym_nonlocal] = ACTIONS(2291), + [anon_sym_exec] = ACTIONS(2291), + [anon_sym_type] = ACTIONS(2291), + [anon_sym_class] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2293), + [anon_sym_AT] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2293), + [anon_sym_PLUS] = ACTIONS(2293), + [anon_sym_not] = ACTIONS(2291), + [anon_sym_AMP] = ACTIONS(2293), + [anon_sym_TILDE] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_lambda] = ACTIONS(2291), + [anon_sym_yield] = ACTIONS(2291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2293), + [anon_sym_None] = ACTIONS(2291), + [sym_integer] = ACTIONS(2291), + [sym_float] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2291), + [anon_sym_api] = ACTIONS(2291), + [sym_true] = ACTIONS(2291), + [sym_false] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2291), + [anon_sym_include] = ACTIONS(2291), + [anon_sym_DEF] = ACTIONS(2291), + [anon_sym_IF] = ACTIONS(2291), + [anon_sym_cdef] = ACTIONS(2291), + [anon_sym_cpdef] = ACTIONS(2291), + [anon_sym_int] = ACTIONS(2291), + [anon_sym_double] = ACTIONS(2291), + [anon_sym_complex] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2291), + [anon_sym_signed] = ACTIONS(2291), + [anon_sym_unsigned] = ACTIONS(2291), + [anon_sym_char] = ACTIONS(2291), + [anon_sym_short] = ACTIONS(2291), + [anon_sym_long] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_volatile] = ACTIONS(2291), + [anon_sym_ctypedef] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_cppclass] = ACTIONS(2291), + [anon_sym_fused] = ACTIONS(2291), + [anon_sym_public] = ACTIONS(2291), + [anon_sym_packed] = ACTIONS(2291), + [anon_sym_inline] = ACTIONS(2291), + [anon_sym_readonly] = ACTIONS(2291), + [anon_sym_sizeof] = ACTIONS(2291), + [sym__dedent] = ACTIONS(2293), + [sym_string_start] = ACTIONS(2293), }, [706] = { - [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_identifier] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_import] = ACTIONS(2295), + [anon_sym_cimport] = ACTIONS(2295), + [anon_sym_from] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_print] = ACTIONS(2295), + [anon_sym_assert] = ACTIONS(2295), + [anon_sym_return] = ACTIONS(2295), + [anon_sym_del] = ACTIONS(2295), + [anon_sym_raise] = ACTIONS(2295), + [anon_sym_pass] = ACTIONS(2295), + [anon_sym_break] = ACTIONS(2295), + [anon_sym_continue] = ACTIONS(2295), + [anon_sym_if] = ACTIONS(2295), + [anon_sym_match] = ACTIONS(2295), + [anon_sym_async] = ACTIONS(2295), + [anon_sym_for] = ACTIONS(2295), + [anon_sym_while] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2295), + [anon_sym_with] = ACTIONS(2295), + [anon_sym_def] = ACTIONS(2295), + [anon_sym_global] = ACTIONS(2295), + [anon_sym_nonlocal] = ACTIONS(2295), + [anon_sym_exec] = ACTIONS(2295), + [anon_sym_type] = ACTIONS(2295), + [anon_sym_class] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2297), + [anon_sym_AT] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_not] = ACTIONS(2295), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_TILDE] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_lambda] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2297), + [anon_sym_None] = ACTIONS(2295), + [sym_integer] = ACTIONS(2295), + [sym_float] = ACTIONS(2297), + [anon_sym_await] = ACTIONS(2295), + [anon_sym_api] = ACTIONS(2295), + [sym_true] = ACTIONS(2295), + [sym_false] = ACTIONS(2295), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2295), + [anon_sym_include] = ACTIONS(2295), + [anon_sym_DEF] = ACTIONS(2295), + [anon_sym_IF] = ACTIONS(2295), + [anon_sym_cdef] = ACTIONS(2295), + [anon_sym_cpdef] = ACTIONS(2295), + [anon_sym_int] = ACTIONS(2295), + [anon_sym_double] = ACTIONS(2295), + [anon_sym_complex] = ACTIONS(2295), + [anon_sym_new] = ACTIONS(2295), + [anon_sym_signed] = ACTIONS(2295), + [anon_sym_unsigned] = ACTIONS(2295), + [anon_sym_char] = ACTIONS(2295), + [anon_sym_short] = ACTIONS(2295), + [anon_sym_long] = ACTIONS(2295), + [anon_sym_const] = ACTIONS(2295), + [anon_sym_volatile] = ACTIONS(2295), + [anon_sym_ctypedef] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2295), + [anon_sym_union] = ACTIONS(2295), + [anon_sym_enum] = ACTIONS(2295), + [anon_sym_cppclass] = ACTIONS(2295), + [anon_sym_fused] = ACTIONS(2295), + [anon_sym_public] = ACTIONS(2295), + [anon_sym_packed] = ACTIONS(2295), + [anon_sym_inline] = ACTIONS(2295), + [anon_sym_readonly] = ACTIONS(2295), + [anon_sym_sizeof] = ACTIONS(2295), + [sym__dedent] = ACTIONS(2297), + [sym_string_start] = ACTIONS(2297), }, [707] = { - [sym_identifier] = ACTIONS(2333), - [anon_sym_SEMI] = ACTIONS(2335), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_cimport] = ACTIONS(2333), - [anon_sym_from] = ACTIONS(2333), - [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_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_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_DOT_DOT_DOT] = ACTIONS(2335), - [anon_sym_None] = ACTIONS(2333), - [sym_integer] = ACTIONS(2333), - [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), - [sym__dedent] = ACTIONS(2335), - [sym_string_start] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_import] = ACTIONS(2299), + [anon_sym_cimport] = ACTIONS(2299), + [anon_sym_from] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_print] = ACTIONS(2299), + [anon_sym_assert] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_del] = ACTIONS(2299), + [anon_sym_raise] = ACTIONS(2299), + [anon_sym_pass] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_match] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [anon_sym_with] = ACTIONS(2299), + [anon_sym_def] = ACTIONS(2299), + [anon_sym_global] = ACTIONS(2299), + [anon_sym_nonlocal] = ACTIONS(2299), + [anon_sym_exec] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_AT] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_not] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + [anon_sym_TILDE] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_lambda] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2301), + [anon_sym_None] = ACTIONS(2299), + [sym_integer] = ACTIONS(2299), + [sym_float] = ACTIONS(2301), + [anon_sym_await] = ACTIONS(2299), + [anon_sym_api] = ACTIONS(2299), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2299), + [anon_sym_include] = ACTIONS(2299), + [anon_sym_DEF] = ACTIONS(2299), + [anon_sym_IF] = ACTIONS(2299), + [anon_sym_cdef] = ACTIONS(2299), + [anon_sym_cpdef] = ACTIONS(2299), + [anon_sym_int] = ACTIONS(2299), + [anon_sym_double] = ACTIONS(2299), + [anon_sym_complex] = ACTIONS(2299), + [anon_sym_new] = ACTIONS(2299), + [anon_sym_signed] = ACTIONS(2299), + [anon_sym_unsigned] = ACTIONS(2299), + [anon_sym_char] = ACTIONS(2299), + [anon_sym_short] = ACTIONS(2299), + [anon_sym_long] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_volatile] = ACTIONS(2299), + [anon_sym_ctypedef] = ACTIONS(2299), + [anon_sym_struct] = ACTIONS(2299), + [anon_sym_union] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [anon_sym_cppclass] = ACTIONS(2299), + [anon_sym_fused] = ACTIONS(2299), + [anon_sym_public] = ACTIONS(2299), + [anon_sym_packed] = ACTIONS(2299), + [anon_sym_inline] = ACTIONS(2299), + [anon_sym_readonly] = ACTIONS(2299), + [anon_sym_sizeof] = ACTIONS(2299), + [sym__dedent] = ACTIONS(2301), + [sym_string_start] = ACTIONS(2301), }, [708] = { - [sym_identifier] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2339), - [anon_sym_import] = ACTIONS(2337), - [anon_sym_cimport] = ACTIONS(2337), - [anon_sym_from] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_STAR] = ACTIONS(2339), - [anon_sym_print] = ACTIONS(2337), - [anon_sym_assert] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_del] = ACTIONS(2337), - [anon_sym_raise] = ACTIONS(2337), - [anon_sym_pass] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_match] = ACTIONS(2337), - [anon_sym_async] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_with] = ACTIONS(2337), - [anon_sym_def] = ACTIONS(2337), - [anon_sym_global] = ACTIONS(2337), - [anon_sym_nonlocal] = ACTIONS(2337), - [anon_sym_exec] = ACTIONS(2337), - [anon_sym_type] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2339), - [anon_sym_DASH] = ACTIONS(2339), - [anon_sym_LBRACE] = ACTIONS(2339), - [anon_sym_PLUS] = ACTIONS(2339), - [anon_sym_not] = ACTIONS(2337), - [anon_sym_AMP] = ACTIONS(2339), - [anon_sym_TILDE] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(2339), - [anon_sym_lambda] = ACTIONS(2337), - [anon_sym_yield] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2339), - [anon_sym_None] = ACTIONS(2337), - [sym_integer] = ACTIONS(2337), - [sym_float] = ACTIONS(2339), - [anon_sym_await] = ACTIONS(2337), - [anon_sym_api] = ACTIONS(2337), - [sym_true] = ACTIONS(2337), - [sym_false] = ACTIONS(2337), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2337), - [anon_sym_include] = ACTIONS(2337), - [anon_sym_DEF] = ACTIONS(2337), - [anon_sym_cdef] = ACTIONS(2337), - [anon_sym_cpdef] = ACTIONS(2337), - [anon_sym_int] = ACTIONS(2337), - [anon_sym_double] = ACTIONS(2337), - [anon_sym_complex] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2337), - [anon_sym_signed] = ACTIONS(2337), - [anon_sym_unsigned] = ACTIONS(2337), - [anon_sym_char] = ACTIONS(2337), - [anon_sym_short] = ACTIONS(2337), - [anon_sym_long] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [anon_sym_volatile] = ACTIONS(2337), - [anon_sym_ctypedef] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2337), - [anon_sym_union] = ACTIONS(2337), - [anon_sym_enum] = ACTIONS(2337), - [anon_sym_cppclass] = ACTIONS(2337), - [anon_sym_fused] = ACTIONS(2337), - [anon_sym_public] = ACTIONS(2337), - [anon_sym_packed] = ACTIONS(2337), - [anon_sym_inline] = ACTIONS(2337), - [anon_sym_readonly] = ACTIONS(2337), - [anon_sym_sizeof] = ACTIONS(2337), - [sym__dedent] = ACTIONS(2339), - [sym_string_start] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym_import] = ACTIONS(2303), + [anon_sym_cimport] = ACTIONS(2303), + [anon_sym_from] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_STAR] = ACTIONS(2305), + [anon_sym_print] = ACTIONS(2303), + [anon_sym_assert] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_del] = ACTIONS(2303), + [anon_sym_raise] = ACTIONS(2303), + [anon_sym_pass] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_async] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_with] = ACTIONS(2303), + [anon_sym_def] = ACTIONS(2303), + [anon_sym_global] = ACTIONS(2303), + [anon_sym_nonlocal] = ACTIONS(2303), + [anon_sym_exec] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2303), + [anon_sym_class] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_AT] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_not] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2305), + [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_lambda] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2305), + [anon_sym_None] = ACTIONS(2303), + [sym_integer] = ACTIONS(2303), + [sym_float] = ACTIONS(2305), + [anon_sym_await] = ACTIONS(2303), + [anon_sym_api] = ACTIONS(2303), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2303), + [anon_sym_include] = ACTIONS(2303), + [anon_sym_DEF] = ACTIONS(2303), + [anon_sym_IF] = ACTIONS(2303), + [anon_sym_cdef] = ACTIONS(2303), + [anon_sym_cpdef] = ACTIONS(2303), + [anon_sym_int] = ACTIONS(2303), + [anon_sym_double] = ACTIONS(2303), + [anon_sym_complex] = ACTIONS(2303), + [anon_sym_new] = ACTIONS(2303), + [anon_sym_signed] = ACTIONS(2303), + [anon_sym_unsigned] = ACTIONS(2303), + [anon_sym_char] = ACTIONS(2303), + [anon_sym_short] = ACTIONS(2303), + [anon_sym_long] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_volatile] = ACTIONS(2303), + [anon_sym_ctypedef] = ACTIONS(2303), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_cppclass] = ACTIONS(2303), + [anon_sym_fused] = ACTIONS(2303), + [anon_sym_public] = ACTIONS(2303), + [anon_sym_packed] = ACTIONS(2303), + [anon_sym_inline] = ACTIONS(2303), + [anon_sym_readonly] = ACTIONS(2303), + [anon_sym_sizeof] = ACTIONS(2303), + [sym__dedent] = ACTIONS(2305), + [sym_string_start] = ACTIONS(2305), }, [709] = { - [sym_identifier] = ACTIONS(2341), - [anon_sym_SEMI] = ACTIONS(2343), - [anon_sym_import] = ACTIONS(2341), - [anon_sym_cimport] = ACTIONS(2341), - [anon_sym_from] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(2343), - [anon_sym_print] = ACTIONS(2341), - [anon_sym_assert] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_del] = ACTIONS(2341), - [anon_sym_raise] = ACTIONS(2341), - [anon_sym_pass] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_async] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_with] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2341), - [anon_sym_global] = ACTIONS(2341), - [anon_sym_nonlocal] = ACTIONS(2341), - [anon_sym_exec] = ACTIONS(2341), - [anon_sym_type] = ACTIONS(2341), - [anon_sym_class] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_AT] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_not] = ACTIONS(2341), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2343), - [anon_sym_lambda] = ACTIONS(2341), - [anon_sym_yield] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2343), - [anon_sym_None] = ACTIONS(2341), - [sym_integer] = ACTIONS(2341), - [sym_float] = ACTIONS(2343), - [anon_sym_await] = ACTIONS(2341), - [anon_sym_api] = ACTIONS(2341), - [sym_true] = ACTIONS(2341), - [sym_false] = ACTIONS(2341), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2341), - [anon_sym_include] = ACTIONS(2341), - [anon_sym_DEF] = ACTIONS(2341), - [anon_sym_cdef] = ACTIONS(2341), - [anon_sym_cpdef] = ACTIONS(2341), - [anon_sym_int] = ACTIONS(2341), - [anon_sym_double] = ACTIONS(2341), - [anon_sym_complex] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2341), - [anon_sym_signed] = ACTIONS(2341), - [anon_sym_unsigned] = ACTIONS(2341), - [anon_sym_char] = ACTIONS(2341), - [anon_sym_short] = ACTIONS(2341), - [anon_sym_long] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_volatile] = ACTIONS(2341), - [anon_sym_ctypedef] = ACTIONS(2341), - [anon_sym_struct] = ACTIONS(2341), - [anon_sym_union] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), - [anon_sym_cppclass] = ACTIONS(2341), - [anon_sym_fused] = ACTIONS(2341), - [anon_sym_public] = ACTIONS(2341), - [anon_sym_packed] = ACTIONS(2341), - [anon_sym_inline] = ACTIONS(2341), - [anon_sym_readonly] = ACTIONS(2341), - [anon_sym_sizeof] = ACTIONS(2341), - [sym__dedent] = ACTIONS(2343), - [sym_string_start] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_import] = ACTIONS(2307), + [anon_sym_cimport] = ACTIONS(2307), + [anon_sym_from] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_print] = ACTIONS(2307), + [anon_sym_assert] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_del] = ACTIONS(2307), + [anon_sym_raise] = ACTIONS(2307), + [anon_sym_pass] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_with] = ACTIONS(2307), + [anon_sym_def] = ACTIONS(2307), + [anon_sym_global] = ACTIONS(2307), + [anon_sym_nonlocal] = ACTIONS(2307), + [anon_sym_exec] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_class] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_AT] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2309), + [anon_sym_not] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2309), + [anon_sym_lambda] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2309), + [anon_sym_None] = ACTIONS(2307), + [sym_integer] = ACTIONS(2307), + [sym_float] = ACTIONS(2309), + [anon_sym_await] = ACTIONS(2307), + [anon_sym_api] = ACTIONS(2307), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2307), + [anon_sym_include] = ACTIONS(2307), + [anon_sym_DEF] = ACTIONS(2307), + [anon_sym_IF] = ACTIONS(2307), + [anon_sym_cdef] = ACTIONS(2307), + [anon_sym_cpdef] = ACTIONS(2307), + [anon_sym_int] = ACTIONS(2307), + [anon_sym_double] = ACTIONS(2307), + [anon_sym_complex] = ACTIONS(2307), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_signed] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_char] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym_ctypedef] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_cppclass] = ACTIONS(2307), + [anon_sym_fused] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_packed] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym_readonly] = ACTIONS(2307), + [anon_sym_sizeof] = ACTIONS(2307), + [sym__dedent] = ACTIONS(2309), + [sym_string_start] = ACTIONS(2309), }, [710] = { - [sym_identifier] = ACTIONS(2345), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_import] = ACTIONS(2345), - [anon_sym_cimport] = ACTIONS(2345), - [anon_sym_from] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_print] = ACTIONS(2345), - [anon_sym_assert] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_del] = ACTIONS(2345), - [anon_sym_raise] = ACTIONS(2345), - [anon_sym_pass] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_with] = ACTIONS(2345), - [anon_sym_def] = ACTIONS(2345), - [anon_sym_global] = ACTIONS(2345), - [anon_sym_nonlocal] = ACTIONS(2345), - [anon_sym_exec] = ACTIONS(2345), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_class] = ACTIONS(2345), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_AT] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_not] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_TILDE] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_lambda] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2347), - [anon_sym_None] = ACTIONS(2345), - [sym_integer] = ACTIONS(2345), - [sym_float] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_api] = ACTIONS(2345), - [sym_true] = ACTIONS(2345), - [sym_false] = ACTIONS(2345), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2345), - [anon_sym_include] = ACTIONS(2345), - [anon_sym_DEF] = ACTIONS(2345), - [anon_sym_cdef] = ACTIONS(2345), - [anon_sym_cpdef] = ACTIONS(2345), - [anon_sym_int] = ACTIONS(2345), - [anon_sym_double] = ACTIONS(2345), - [anon_sym_complex] = ACTIONS(2345), - [anon_sym_new] = ACTIONS(2345), - [anon_sym_signed] = ACTIONS(2345), - [anon_sym_unsigned] = ACTIONS(2345), - [anon_sym_char] = ACTIONS(2345), - [anon_sym_short] = ACTIONS(2345), - [anon_sym_long] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_volatile] = ACTIONS(2345), - [anon_sym_ctypedef] = ACTIONS(2345), - [anon_sym_struct] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_cppclass] = ACTIONS(2345), - [anon_sym_fused] = ACTIONS(2345), - [anon_sym_public] = ACTIONS(2345), - [anon_sym_packed] = ACTIONS(2345), - [anon_sym_inline] = ACTIONS(2345), - [anon_sym_readonly] = ACTIONS(2345), - [anon_sym_sizeof] = ACTIONS(2345), - [sym__dedent] = ACTIONS(2347), - [sym_string_start] = ACTIONS(2347), + [sym_identifier] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2313), + [anon_sym_import] = ACTIONS(2311), + [anon_sym_cimport] = ACTIONS(2311), + [anon_sym_from] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(2313), + [anon_sym_print] = ACTIONS(2311), + [anon_sym_assert] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_del] = ACTIONS(2311), + [anon_sym_raise] = ACTIONS(2311), + [anon_sym_pass] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_async] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_with] = ACTIONS(2311), + [anon_sym_def] = ACTIONS(2311), + [anon_sym_global] = ACTIONS(2311), + [anon_sym_nonlocal] = ACTIONS(2311), + [anon_sym_exec] = ACTIONS(2311), + [anon_sym_type] = ACTIONS(2311), + [anon_sym_class] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_AT] = ACTIONS(2313), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2313), + [anon_sym_not] = ACTIONS(2311), + [anon_sym_AMP] = ACTIONS(2313), + [anon_sym_TILDE] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_lambda] = ACTIONS(2311), + [anon_sym_yield] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2313), + [anon_sym_None] = ACTIONS(2311), + [sym_integer] = ACTIONS(2311), + [sym_float] = ACTIONS(2313), + [anon_sym_await] = ACTIONS(2311), + [anon_sym_api] = ACTIONS(2311), + [sym_true] = ACTIONS(2311), + [sym_false] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2311), + [anon_sym_include] = ACTIONS(2311), + [anon_sym_DEF] = ACTIONS(2311), + [anon_sym_IF] = ACTIONS(2311), + [anon_sym_cdef] = ACTIONS(2311), + [anon_sym_cpdef] = ACTIONS(2311), + [anon_sym_int] = ACTIONS(2311), + [anon_sym_double] = ACTIONS(2311), + [anon_sym_complex] = ACTIONS(2311), + [anon_sym_new] = ACTIONS(2311), + [anon_sym_signed] = ACTIONS(2311), + [anon_sym_unsigned] = ACTIONS(2311), + [anon_sym_char] = ACTIONS(2311), + [anon_sym_short] = ACTIONS(2311), + [anon_sym_long] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [anon_sym_volatile] = ACTIONS(2311), + [anon_sym_ctypedef] = ACTIONS(2311), + [anon_sym_struct] = ACTIONS(2311), + [anon_sym_union] = ACTIONS(2311), + [anon_sym_enum] = ACTIONS(2311), + [anon_sym_cppclass] = ACTIONS(2311), + [anon_sym_fused] = ACTIONS(2311), + [anon_sym_public] = ACTIONS(2311), + [anon_sym_packed] = ACTIONS(2311), + [anon_sym_inline] = ACTIONS(2311), + [anon_sym_readonly] = ACTIONS(2311), + [anon_sym_sizeof] = ACTIONS(2311), + [sym__dedent] = ACTIONS(2313), + [sym_string_start] = ACTIONS(2313), }, [711] = { - [sym_identifier] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2351), - [anon_sym_import] = ACTIONS(2349), - [anon_sym_cimport] = ACTIONS(2349), - [anon_sym_from] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2351), - [anon_sym_print] = ACTIONS(2349), - [anon_sym_assert] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_del] = ACTIONS(2349), - [anon_sym_raise] = ACTIONS(2349), - [anon_sym_pass] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_with] = ACTIONS(2349), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_global] = ACTIONS(2349), - [anon_sym_nonlocal] = ACTIONS(2349), - [anon_sym_exec] = ACTIONS(2349), - [anon_sym_type] = ACTIONS(2349), - [anon_sym_class] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_AT] = ACTIONS(2351), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2351), - [anon_sym_not] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_TILDE] = ACTIONS(2351), - [anon_sym_LT] = ACTIONS(2351), - [anon_sym_lambda] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2351), - [anon_sym_None] = ACTIONS(2349), - [sym_integer] = ACTIONS(2349), - [sym_float] = ACTIONS(2351), - [anon_sym_await] = ACTIONS(2349), - [anon_sym_api] = ACTIONS(2349), - [sym_true] = ACTIONS(2349), - [sym_false] = ACTIONS(2349), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2349), - [anon_sym_include] = ACTIONS(2349), - [anon_sym_DEF] = ACTIONS(2349), - [anon_sym_cdef] = ACTIONS(2349), - [anon_sym_cpdef] = ACTIONS(2349), - [anon_sym_int] = ACTIONS(2349), - [anon_sym_double] = ACTIONS(2349), - [anon_sym_complex] = ACTIONS(2349), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_signed] = ACTIONS(2349), - [anon_sym_unsigned] = ACTIONS(2349), - [anon_sym_char] = ACTIONS(2349), - [anon_sym_short] = ACTIONS(2349), - [anon_sym_long] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_volatile] = ACTIONS(2349), - [anon_sym_ctypedef] = ACTIONS(2349), - [anon_sym_struct] = ACTIONS(2349), - [anon_sym_union] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), - [anon_sym_cppclass] = ACTIONS(2349), - [anon_sym_fused] = ACTIONS(2349), - [anon_sym_public] = ACTIONS(2349), - [anon_sym_packed] = ACTIONS(2349), - [anon_sym_inline] = ACTIONS(2349), - [anon_sym_readonly] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2349), - [sym__dedent] = ACTIONS(2351), - [sym_string_start] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2315), + [anon_sym_cimport] = ACTIONS(2315), + [anon_sym_from] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_print] = ACTIONS(2315), + [anon_sym_assert] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_del] = ACTIONS(2315), + [anon_sym_raise] = ACTIONS(2315), + [anon_sym_pass] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_async] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(2315), + [anon_sym_with] = ACTIONS(2315), + [anon_sym_def] = ACTIONS(2315), + [anon_sym_global] = ACTIONS(2315), + [anon_sym_nonlocal] = ACTIONS(2315), + [anon_sym_exec] = ACTIONS(2315), + [anon_sym_type] = ACTIONS(2315), + [anon_sym_class] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_AT] = ACTIONS(2317), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2317), + [anon_sym_not] = ACTIONS(2315), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_TILDE] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_lambda] = ACTIONS(2315), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2317), + [anon_sym_None] = ACTIONS(2315), + [sym_integer] = ACTIONS(2315), + [sym_float] = ACTIONS(2317), + [anon_sym_await] = ACTIONS(2315), + [anon_sym_api] = ACTIONS(2315), + [sym_true] = ACTIONS(2315), + [sym_false] = ACTIONS(2315), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2315), + [anon_sym_include] = ACTIONS(2315), + [anon_sym_DEF] = ACTIONS(2315), + [anon_sym_IF] = ACTIONS(2315), + [anon_sym_cdef] = ACTIONS(2315), + [anon_sym_cpdef] = ACTIONS(2315), + [anon_sym_int] = ACTIONS(2315), + [anon_sym_double] = ACTIONS(2315), + [anon_sym_complex] = ACTIONS(2315), + [anon_sym_new] = ACTIONS(2315), + [anon_sym_signed] = ACTIONS(2315), + [anon_sym_unsigned] = ACTIONS(2315), + [anon_sym_char] = ACTIONS(2315), + [anon_sym_short] = ACTIONS(2315), + [anon_sym_long] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [anon_sym_volatile] = ACTIONS(2315), + [anon_sym_ctypedef] = ACTIONS(2315), + [anon_sym_struct] = ACTIONS(2315), + [anon_sym_union] = ACTIONS(2315), + [anon_sym_enum] = ACTIONS(2315), + [anon_sym_cppclass] = ACTIONS(2315), + [anon_sym_fused] = ACTIONS(2315), + [anon_sym_public] = ACTIONS(2315), + [anon_sym_packed] = ACTIONS(2315), + [anon_sym_inline] = ACTIONS(2315), + [anon_sym_readonly] = ACTIONS(2315), + [anon_sym_sizeof] = ACTIONS(2315), + [sym__dedent] = ACTIONS(2317), + [sym_string_start] = ACTIONS(2317), }, [712] = { - [sym_identifier] = ACTIONS(2353), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_import] = ACTIONS(2353), - [anon_sym_cimport] = ACTIONS(2353), - [anon_sym_from] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_print] = ACTIONS(2353), - [anon_sym_assert] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_del] = ACTIONS(2353), - [anon_sym_raise] = ACTIONS(2353), - [anon_sym_pass] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_with] = ACTIONS(2353), - [anon_sym_def] = ACTIONS(2353), - [anon_sym_global] = ACTIONS(2353), - [anon_sym_nonlocal] = ACTIONS(2353), - [anon_sym_exec] = ACTIONS(2353), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_AT] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_not] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_TILDE] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2355), - [anon_sym_lambda] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2355), - [anon_sym_None] = ACTIONS(2353), - [sym_integer] = ACTIONS(2353), - [sym_float] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2353), - [anon_sym_api] = ACTIONS(2353), - [sym_true] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2353), - [anon_sym_include] = ACTIONS(2353), - [anon_sym_DEF] = ACTIONS(2353), - [anon_sym_cdef] = ACTIONS(2353), - [anon_sym_cpdef] = ACTIONS(2353), - [anon_sym_int] = ACTIONS(2353), - [anon_sym_double] = ACTIONS(2353), - [anon_sym_complex] = ACTIONS(2353), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_signed] = ACTIONS(2353), - [anon_sym_unsigned] = ACTIONS(2353), - [anon_sym_char] = ACTIONS(2353), - [anon_sym_short] = ACTIONS(2353), - [anon_sym_long] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_volatile] = ACTIONS(2353), - [anon_sym_ctypedef] = ACTIONS(2353), - [anon_sym_struct] = ACTIONS(2353), - [anon_sym_union] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_cppclass] = ACTIONS(2353), - [anon_sym_fused] = ACTIONS(2353), - [anon_sym_public] = ACTIONS(2353), - [anon_sym_packed] = ACTIONS(2353), - [anon_sym_inline] = ACTIONS(2353), - [anon_sym_readonly] = ACTIONS(2353), - [anon_sym_sizeof] = ACTIONS(2353), - [sym__dedent] = ACTIONS(2355), - [sym_string_start] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2321), + [anon_sym_import] = ACTIONS(2319), + [anon_sym_cimport] = ACTIONS(2319), + [anon_sym_from] = ACTIONS(2319), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_print] = ACTIONS(2319), + [anon_sym_assert] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_del] = ACTIONS(2319), + [anon_sym_raise] = ACTIONS(2319), + [anon_sym_pass] = ACTIONS(2319), + [anon_sym_break] = ACTIONS(2319), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [anon_sym_with] = ACTIONS(2319), + [anon_sym_def] = ACTIONS(2319), + [anon_sym_global] = ACTIONS(2319), + [anon_sym_nonlocal] = ACTIONS(2319), + [anon_sym_exec] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_class] = 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(2319), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_TILDE] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_lambda] = ACTIONS(2319), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), + [anon_sym_None] = ACTIONS(2319), + [sym_integer] = ACTIONS(2319), + [sym_float] = ACTIONS(2321), + [anon_sym_await] = ACTIONS(2319), + [anon_sym_api] = ACTIONS(2319), + [sym_true] = ACTIONS(2319), + [sym_false] = ACTIONS(2319), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2319), + [anon_sym_include] = ACTIONS(2319), + [anon_sym_DEF] = ACTIONS(2319), + [anon_sym_IF] = ACTIONS(2319), + [anon_sym_cdef] = ACTIONS(2319), + [anon_sym_cpdef] = ACTIONS(2319), + [anon_sym_int] = ACTIONS(2319), + [anon_sym_double] = ACTIONS(2319), + [anon_sym_complex] = ACTIONS(2319), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_signed] = ACTIONS(2319), + [anon_sym_unsigned] = ACTIONS(2319), + [anon_sym_char] = ACTIONS(2319), + [anon_sym_short] = ACTIONS(2319), + [anon_sym_long] = ACTIONS(2319), + [anon_sym_const] = ACTIONS(2319), + [anon_sym_volatile] = ACTIONS(2319), + [anon_sym_ctypedef] = ACTIONS(2319), + [anon_sym_struct] = ACTIONS(2319), + [anon_sym_union] = ACTIONS(2319), + [anon_sym_enum] = ACTIONS(2319), + [anon_sym_cppclass] = ACTIONS(2319), + [anon_sym_fused] = ACTIONS(2319), + [anon_sym_public] = ACTIONS(2319), + [anon_sym_packed] = ACTIONS(2319), + [anon_sym_inline] = ACTIONS(2319), + [anon_sym_readonly] = ACTIONS(2319), + [anon_sym_sizeof] = ACTIONS(2319), + [sym__dedent] = ACTIONS(2321), + [sym_string_start] = ACTIONS(2321), }, [713] = { - [sym_identifier] = ACTIONS(2357), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_import] = ACTIONS(2357), - [anon_sym_cimport] = ACTIONS(2357), - [anon_sym_from] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_STAR] = ACTIONS(2359), - [anon_sym_print] = ACTIONS(2357), - [anon_sym_assert] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_del] = ACTIONS(2357), - [anon_sym_raise] = ACTIONS(2357), - [anon_sym_pass] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_match] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_with] = ACTIONS(2357), - [anon_sym_def] = ACTIONS(2357), - [anon_sym_global] = ACTIONS(2357), - [anon_sym_nonlocal] = ACTIONS(2357), - [anon_sym_exec] = ACTIONS(2357), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_class] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_AT] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_not] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_TILDE] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2359), - [anon_sym_lambda] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2359), - [anon_sym_None] = ACTIONS(2357), - [sym_integer] = ACTIONS(2357), - [sym_float] = ACTIONS(2359), - [anon_sym_await] = ACTIONS(2357), - [anon_sym_api] = ACTIONS(2357), - [sym_true] = ACTIONS(2357), - [sym_false] = ACTIONS(2357), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2357), - [anon_sym_include] = ACTIONS(2357), - [anon_sym_DEF] = ACTIONS(2357), - [anon_sym_cdef] = ACTIONS(2357), - [anon_sym_cpdef] = ACTIONS(2357), - [anon_sym_int] = ACTIONS(2357), - [anon_sym_double] = ACTIONS(2357), - [anon_sym_complex] = ACTIONS(2357), - [anon_sym_new] = ACTIONS(2357), - [anon_sym_signed] = ACTIONS(2357), - [anon_sym_unsigned] = ACTIONS(2357), - [anon_sym_char] = ACTIONS(2357), - [anon_sym_short] = ACTIONS(2357), - [anon_sym_long] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_volatile] = ACTIONS(2357), - [anon_sym_ctypedef] = ACTIONS(2357), - [anon_sym_struct] = ACTIONS(2357), - [anon_sym_union] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), - [anon_sym_cppclass] = ACTIONS(2357), - [anon_sym_fused] = ACTIONS(2357), - [anon_sym_public] = ACTIONS(2357), - [anon_sym_packed] = ACTIONS(2357), - [anon_sym_inline] = ACTIONS(2357), - [anon_sym_readonly] = ACTIONS(2357), - [anon_sym_sizeof] = ACTIONS(2357), - [sym__dedent] = ACTIONS(2359), - [sym_string_start] = ACTIONS(2359), + [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_IF] = 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), }, [714] = { - [sym_identifier] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2363), - [anon_sym_import] = ACTIONS(2361), - [anon_sym_cimport] = ACTIONS(2361), - [anon_sym_from] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_STAR] = ACTIONS(2363), - [anon_sym_print] = ACTIONS(2361), - [anon_sym_assert] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_del] = ACTIONS(2361), - [anon_sym_raise] = ACTIONS(2361), - [anon_sym_pass] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_async] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_with] = ACTIONS(2361), - [anon_sym_def] = ACTIONS(2361), - [anon_sym_global] = ACTIONS(2361), - [anon_sym_nonlocal] = ACTIONS(2361), - [anon_sym_exec] = ACTIONS(2361), - [anon_sym_type] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2363), - [anon_sym_AT] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_PLUS] = ACTIONS(2363), - [anon_sym_not] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_LT] = ACTIONS(2363), - [anon_sym_lambda] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2363), - [anon_sym_None] = ACTIONS(2361), - [sym_integer] = ACTIONS(2361), - [sym_float] = ACTIONS(2363), - [anon_sym_await] = ACTIONS(2361), - [anon_sym_api] = ACTIONS(2361), - [sym_true] = ACTIONS(2361), - [sym_false] = ACTIONS(2361), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2361), - [anon_sym_include] = ACTIONS(2361), - [anon_sym_DEF] = ACTIONS(2361), - [anon_sym_cdef] = ACTIONS(2361), - [anon_sym_cpdef] = ACTIONS(2361), - [anon_sym_int] = ACTIONS(2361), - [anon_sym_double] = ACTIONS(2361), - [anon_sym_complex] = ACTIONS(2361), - [anon_sym_new] = ACTIONS(2361), - [anon_sym_signed] = ACTIONS(2361), - [anon_sym_unsigned] = ACTIONS(2361), - [anon_sym_char] = ACTIONS(2361), - [anon_sym_short] = ACTIONS(2361), - [anon_sym_long] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_volatile] = ACTIONS(2361), - [anon_sym_ctypedef] = ACTIONS(2361), - [anon_sym_struct] = ACTIONS(2361), - [anon_sym_union] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_cppclass] = ACTIONS(2361), - [anon_sym_fused] = ACTIONS(2361), - [anon_sym_public] = ACTIONS(2361), - [anon_sym_packed] = ACTIONS(2361), - [anon_sym_inline] = ACTIONS(2361), - [anon_sym_readonly] = ACTIONS(2361), - [anon_sym_sizeof] = ACTIONS(2361), - [sym__dedent] = ACTIONS(2363), - [sym_string_start] = ACTIONS(2363), + [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_IF] = 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), }, [715] = { - [sym_identifier] = ACTIONS(2365), - [anon_sym_SEMI] = ACTIONS(2367), - [anon_sym_import] = ACTIONS(2365), - [anon_sym_cimport] = ACTIONS(2365), - [anon_sym_from] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_STAR] = ACTIONS(2367), - [anon_sym_print] = ACTIONS(2365), - [anon_sym_assert] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_del] = ACTIONS(2365), - [anon_sym_raise] = ACTIONS(2365), - [anon_sym_pass] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_async] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_with] = ACTIONS(2365), - [anon_sym_def] = ACTIONS(2365), - [anon_sym_global] = ACTIONS(2365), - [anon_sym_nonlocal] = ACTIONS(2365), - [anon_sym_exec] = ACTIONS(2365), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_class] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2367), - [anon_sym_AT] = ACTIONS(2367), - [anon_sym_DASH] = ACTIONS(2367), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_PLUS] = ACTIONS(2367), - [anon_sym_not] = ACTIONS(2365), - [anon_sym_AMP] = ACTIONS(2367), - [anon_sym_TILDE] = ACTIONS(2367), - [anon_sym_LT] = ACTIONS(2367), - [anon_sym_lambda] = ACTIONS(2365), - [anon_sym_yield] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2367), - [anon_sym_None] = ACTIONS(2365), - [sym_integer] = ACTIONS(2365), - [sym_float] = ACTIONS(2367), - [anon_sym_await] = ACTIONS(2365), - [anon_sym_api] = ACTIONS(2365), - [sym_true] = ACTIONS(2365), - [sym_false] = ACTIONS(2365), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2365), - [anon_sym_include] = ACTIONS(2365), - [anon_sym_DEF] = ACTIONS(2365), - [anon_sym_cdef] = ACTIONS(2365), - [anon_sym_cpdef] = ACTIONS(2365), - [anon_sym_int] = ACTIONS(2365), - [anon_sym_double] = ACTIONS(2365), - [anon_sym_complex] = ACTIONS(2365), - [anon_sym_new] = ACTIONS(2365), - [anon_sym_signed] = ACTIONS(2365), - [anon_sym_unsigned] = ACTIONS(2365), - [anon_sym_char] = ACTIONS(2365), - [anon_sym_short] = ACTIONS(2365), - [anon_sym_long] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [anon_sym_volatile] = ACTIONS(2365), - [anon_sym_ctypedef] = ACTIONS(2365), - [anon_sym_struct] = ACTIONS(2365), - [anon_sym_union] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), - [anon_sym_cppclass] = ACTIONS(2365), - [anon_sym_fused] = ACTIONS(2365), - [anon_sym_public] = ACTIONS(2365), - [anon_sym_packed] = ACTIONS(2365), - [anon_sym_inline] = ACTIONS(2365), - [anon_sym_readonly] = ACTIONS(2365), - [anon_sym_sizeof] = ACTIONS(2365), - [sym__dedent] = ACTIONS(2367), - [sym_string_start] = ACTIONS(2367), + [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(2333), + [anon_sym_STAR] = 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(2333), + [anon_sym_AT] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_PLUS] = ACTIONS(2333), + [anon_sym_not] = ACTIONS(2331), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_TILDE] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_lambda] = ACTIONS(2331), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2333), + [anon_sym_None] = ACTIONS(2331), + [sym_integer] = ACTIONS(2331), + [sym_float] = 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_IF] = 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(2333), + [sym_string_start] = ACTIONS(2333), }, [716] = { - [sym_identifier] = ACTIONS(2369), - [anon_sym_SEMI] = ACTIONS(2371), - [anon_sym_import] = ACTIONS(2369), - [anon_sym_cimport] = ACTIONS(2369), - [anon_sym_from] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(2371), - [anon_sym_print] = ACTIONS(2369), - [anon_sym_assert] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_del] = ACTIONS(2369), - [anon_sym_raise] = ACTIONS(2369), - [anon_sym_pass] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_with] = ACTIONS(2369), - [anon_sym_def] = ACTIONS(2369), - [anon_sym_global] = ACTIONS(2369), - [anon_sym_nonlocal] = ACTIONS(2369), - [anon_sym_exec] = ACTIONS(2369), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_class] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_AT] = ACTIONS(2371), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_PLUS] = ACTIONS(2371), - [anon_sym_not] = ACTIONS(2369), - [anon_sym_AMP] = ACTIONS(2371), - [anon_sym_TILDE] = ACTIONS(2371), - [anon_sym_LT] = ACTIONS(2371), - [anon_sym_lambda] = ACTIONS(2369), - [anon_sym_yield] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2371), - [anon_sym_None] = ACTIONS(2369), - [sym_integer] = ACTIONS(2369), - [sym_float] = ACTIONS(2371), - [anon_sym_await] = ACTIONS(2369), - [anon_sym_api] = ACTIONS(2369), - [sym_true] = ACTIONS(2369), - [sym_false] = ACTIONS(2369), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2369), - [anon_sym_include] = ACTIONS(2369), - [anon_sym_DEF] = ACTIONS(2369), - [anon_sym_cdef] = ACTIONS(2369), - [anon_sym_cpdef] = ACTIONS(2369), - [anon_sym_int] = ACTIONS(2369), - [anon_sym_double] = ACTIONS(2369), - [anon_sym_complex] = ACTIONS(2369), - [anon_sym_new] = ACTIONS(2369), - [anon_sym_signed] = ACTIONS(2369), - [anon_sym_unsigned] = ACTIONS(2369), - [anon_sym_char] = ACTIONS(2369), - [anon_sym_short] = ACTIONS(2369), - [anon_sym_long] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [anon_sym_volatile] = ACTIONS(2369), - [anon_sym_ctypedef] = ACTIONS(2369), - [anon_sym_struct] = ACTIONS(2369), - [anon_sym_union] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [anon_sym_cppclass] = ACTIONS(2369), - [anon_sym_fused] = ACTIONS(2369), - [anon_sym_public] = ACTIONS(2369), - [anon_sym_packed] = ACTIONS(2369), - [anon_sym_inline] = ACTIONS(2369), - [anon_sym_readonly] = ACTIONS(2369), - [anon_sym_sizeof] = ACTIONS(2369), - [sym__dedent] = ACTIONS(2371), - [sym_string_start] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_import] = ACTIONS(2335), + [anon_sym_cimport] = ACTIONS(2335), + [anon_sym_from] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_print] = ACTIONS(2335), + [anon_sym_assert] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_del] = ACTIONS(2335), + [anon_sym_raise] = ACTIONS(2335), + [anon_sym_pass] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_with] = ACTIONS(2335), + [anon_sym_def] = ACTIONS(2335), + [anon_sym_global] = ACTIONS(2335), + [anon_sym_nonlocal] = ACTIONS(2335), + [anon_sym_exec] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_class] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_AT] = ACTIONS(2337), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_PLUS] = ACTIONS(2337), + [anon_sym_not] = ACTIONS(2335), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_TILDE] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_lambda] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2337), + [anon_sym_None] = ACTIONS(2335), + [sym_integer] = ACTIONS(2335), + [sym_float] = ACTIONS(2337), + [anon_sym_await] = ACTIONS(2335), + [anon_sym_api] = ACTIONS(2335), + [sym_true] = ACTIONS(2335), + [sym_false] = ACTIONS(2335), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2335), + [anon_sym_include] = ACTIONS(2335), + [anon_sym_DEF] = ACTIONS(2335), + [anon_sym_IF] = ACTIONS(2335), + [anon_sym_cdef] = ACTIONS(2335), + [anon_sym_cpdef] = ACTIONS(2335), + [anon_sym_int] = ACTIONS(2335), + [anon_sym_double] = ACTIONS(2335), + [anon_sym_complex] = ACTIONS(2335), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_signed] = ACTIONS(2335), + [anon_sym_unsigned] = ACTIONS(2335), + [anon_sym_char] = ACTIONS(2335), + [anon_sym_short] = ACTIONS(2335), + [anon_sym_long] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_volatile] = ACTIONS(2335), + [anon_sym_ctypedef] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_union] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [anon_sym_cppclass] = ACTIONS(2335), + [anon_sym_fused] = ACTIONS(2335), + [anon_sym_public] = ACTIONS(2335), + [anon_sym_packed] = ACTIONS(2335), + [anon_sym_inline] = ACTIONS(2335), + [anon_sym_readonly] = ACTIONS(2335), + [anon_sym_sizeof] = ACTIONS(2335), + [sym__dedent] = ACTIONS(2337), + [sym_string_start] = ACTIONS(2337), }, [717] = { - [sym_identifier] = ACTIONS(2373), - [anon_sym_SEMI] = ACTIONS(2375), - [anon_sym_import] = ACTIONS(2373), - [anon_sym_cimport] = ACTIONS(2373), - [anon_sym_from] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_STAR] = ACTIONS(2375), - [anon_sym_print] = ACTIONS(2373), - [anon_sym_assert] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_del] = ACTIONS(2373), - [anon_sym_raise] = ACTIONS(2373), - [anon_sym_pass] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_async] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_with] = ACTIONS(2373), - [anon_sym_def] = ACTIONS(2373), - [anon_sym_global] = ACTIONS(2373), - [anon_sym_nonlocal] = ACTIONS(2373), - [anon_sym_exec] = ACTIONS(2373), - [anon_sym_type] = ACTIONS(2373), - [anon_sym_class] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_AT] = ACTIONS(2375), - [anon_sym_DASH] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_PLUS] = ACTIONS(2375), - [anon_sym_not] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_TILDE] = ACTIONS(2375), - [anon_sym_LT] = ACTIONS(2375), - [anon_sym_lambda] = ACTIONS(2373), - [anon_sym_yield] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2375), - [anon_sym_None] = ACTIONS(2373), - [sym_integer] = ACTIONS(2373), - [sym_float] = ACTIONS(2375), - [anon_sym_await] = ACTIONS(2373), - [anon_sym_api] = ACTIONS(2373), - [sym_true] = ACTIONS(2373), - [sym_false] = ACTIONS(2373), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2373), - [anon_sym_include] = ACTIONS(2373), - [anon_sym_DEF] = ACTIONS(2373), - [anon_sym_cdef] = ACTIONS(2373), - [anon_sym_cpdef] = ACTIONS(2373), - [anon_sym_int] = ACTIONS(2373), - [anon_sym_double] = ACTIONS(2373), - [anon_sym_complex] = ACTIONS(2373), - [anon_sym_new] = ACTIONS(2373), - [anon_sym_signed] = ACTIONS(2373), - [anon_sym_unsigned] = ACTIONS(2373), - [anon_sym_char] = ACTIONS(2373), - [anon_sym_short] = ACTIONS(2373), - [anon_sym_long] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [anon_sym_volatile] = ACTIONS(2373), - [anon_sym_ctypedef] = ACTIONS(2373), - [anon_sym_struct] = ACTIONS(2373), - [anon_sym_union] = ACTIONS(2373), - [anon_sym_enum] = ACTIONS(2373), - [anon_sym_cppclass] = ACTIONS(2373), - [anon_sym_fused] = ACTIONS(2373), - [anon_sym_public] = ACTIONS(2373), - [anon_sym_packed] = ACTIONS(2373), - [anon_sym_inline] = ACTIONS(2373), - [anon_sym_readonly] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2373), - [sym__dedent] = ACTIONS(2375), - [sym_string_start] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_cimport] = ACTIONS(2339), + [anon_sym_from] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_print] = ACTIONS(2339), + [anon_sym_assert] = ACTIONS(2339), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_del] = ACTIONS(2339), + [anon_sym_raise] = ACTIONS(2339), + [anon_sym_pass] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2339), + [anon_sym_continue] = ACTIONS(2339), + [anon_sym_if] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2339), + [anon_sym_async] = ACTIONS(2339), + [anon_sym_for] = ACTIONS(2339), + [anon_sym_while] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(2339), + [anon_sym_with] = ACTIONS(2339), + [anon_sym_def] = ACTIONS(2339), + [anon_sym_global] = ACTIONS(2339), + [anon_sym_nonlocal] = ACTIONS(2339), + [anon_sym_exec] = ACTIONS(2339), + [anon_sym_type] = ACTIONS(2339), + [anon_sym_class] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_AT] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_not] = ACTIONS(2339), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_TILDE] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_lambda] = ACTIONS(2339), + [anon_sym_yield] = ACTIONS(2339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2341), + [anon_sym_None] = ACTIONS(2339), + [sym_integer] = ACTIONS(2339), + [sym_float] = ACTIONS(2341), + [anon_sym_await] = ACTIONS(2339), + [anon_sym_api] = ACTIONS(2339), + [sym_true] = ACTIONS(2339), + [sym_false] = ACTIONS(2339), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2339), + [anon_sym_include] = ACTIONS(2339), + [anon_sym_DEF] = ACTIONS(2339), + [anon_sym_IF] = ACTIONS(2339), + [anon_sym_cdef] = ACTIONS(2339), + [anon_sym_cpdef] = ACTIONS(2339), + [anon_sym_int] = ACTIONS(2339), + [anon_sym_double] = ACTIONS(2339), + [anon_sym_complex] = ACTIONS(2339), + [anon_sym_new] = ACTIONS(2339), + [anon_sym_signed] = ACTIONS(2339), + [anon_sym_unsigned] = ACTIONS(2339), + [anon_sym_char] = ACTIONS(2339), + [anon_sym_short] = ACTIONS(2339), + [anon_sym_long] = ACTIONS(2339), + [anon_sym_const] = ACTIONS(2339), + [anon_sym_volatile] = ACTIONS(2339), + [anon_sym_ctypedef] = ACTIONS(2339), + [anon_sym_struct] = ACTIONS(2339), + [anon_sym_union] = ACTIONS(2339), + [anon_sym_enum] = ACTIONS(2339), + [anon_sym_cppclass] = ACTIONS(2339), + [anon_sym_fused] = ACTIONS(2339), + [anon_sym_public] = ACTIONS(2339), + [anon_sym_packed] = ACTIONS(2339), + [anon_sym_inline] = ACTIONS(2339), + [anon_sym_readonly] = ACTIONS(2339), + [anon_sym_sizeof] = ACTIONS(2339), + [sym__dedent] = ACTIONS(2341), + [sym_string_start] = ACTIONS(2341), }, [718] = { - [sym_identifier] = ACTIONS(2377), - [anon_sym_SEMI] = ACTIONS(2379), - [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), + [sym_identifier] = ACTIONS(2343), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_import] = ACTIONS(2343), + [anon_sym_cimport] = ACTIONS(2343), + [anon_sym_from] = ACTIONS(2343), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2345), + [anon_sym_print] = ACTIONS(2343), + [anon_sym_assert] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2343), + [anon_sym_del] = ACTIONS(2343), + [anon_sym_raise] = ACTIONS(2343), + [anon_sym_pass] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_if] = ACTIONS(2343), + [anon_sym_match] = ACTIONS(2343), + [anon_sym_async] = ACTIONS(2343), + [anon_sym_for] = ACTIONS(2343), + [anon_sym_while] = ACTIONS(2343), + [anon_sym_try] = ACTIONS(2343), + [anon_sym_with] = ACTIONS(2343), + [anon_sym_def] = ACTIONS(2343), + [anon_sym_global] = ACTIONS(2343), + [anon_sym_nonlocal] = ACTIONS(2343), + [anon_sym_exec] = ACTIONS(2343), + [anon_sym_type] = ACTIONS(2343), + [anon_sym_class] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_AT] = ACTIONS(2345), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2345), + [anon_sym_not] = ACTIONS(2343), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_TILDE] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_lambda] = ACTIONS(2343), + [anon_sym_yield] = ACTIONS(2343), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2345), + [anon_sym_None] = ACTIONS(2343), + [sym_integer] = ACTIONS(2343), + [sym_float] = ACTIONS(2345), + [anon_sym_await] = ACTIONS(2343), + [anon_sym_api] = ACTIONS(2343), + [sym_true] = ACTIONS(2343), + [sym_false] = ACTIONS(2343), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2343), + [anon_sym_include] = ACTIONS(2343), + [anon_sym_DEF] = ACTIONS(2343), + [anon_sym_IF] = ACTIONS(2343), + [anon_sym_cdef] = ACTIONS(2343), + [anon_sym_cpdef] = ACTIONS(2343), + [anon_sym_int] = ACTIONS(2343), + [anon_sym_double] = ACTIONS(2343), + [anon_sym_complex] = ACTIONS(2343), + [anon_sym_new] = ACTIONS(2343), + [anon_sym_signed] = ACTIONS(2343), + [anon_sym_unsigned] = ACTIONS(2343), + [anon_sym_char] = ACTIONS(2343), + [anon_sym_short] = ACTIONS(2343), + [anon_sym_long] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2343), + [anon_sym_volatile] = ACTIONS(2343), + [anon_sym_ctypedef] = ACTIONS(2343), + [anon_sym_struct] = ACTIONS(2343), + [anon_sym_union] = ACTIONS(2343), + [anon_sym_enum] = ACTIONS(2343), + [anon_sym_cppclass] = ACTIONS(2343), + [anon_sym_fused] = ACTIONS(2343), + [anon_sym_public] = ACTIONS(2343), + [anon_sym_packed] = ACTIONS(2343), + [anon_sym_inline] = ACTIONS(2343), + [anon_sym_readonly] = ACTIONS(2343), + [anon_sym_sizeof] = ACTIONS(2343), + [sym__dedent] = ACTIONS(2345), + [sym_string_start] = ACTIONS(2345), }, [719] = { - [sym_identifier] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2383), - [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), - [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_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_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_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), + [sym_identifier] = ACTIONS(2347), + [anon_sym_SEMI] = ACTIONS(2349), + [anon_sym_import] = ACTIONS(2347), + [anon_sym_cimport] = ACTIONS(2347), + [anon_sym_from] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_STAR] = ACTIONS(2349), + [anon_sym_print] = ACTIONS(2347), + [anon_sym_assert] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_del] = ACTIONS(2347), + [anon_sym_raise] = ACTIONS(2347), + [anon_sym_pass] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_async] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [anon_sym_try] = ACTIONS(2347), + [anon_sym_with] = ACTIONS(2347), + [anon_sym_def] = ACTIONS(2347), + [anon_sym_global] = ACTIONS(2347), + [anon_sym_nonlocal] = ACTIONS(2347), + [anon_sym_exec] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_class] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_AT] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_not] = ACTIONS(2347), + [anon_sym_AMP] = ACTIONS(2349), + [anon_sym_TILDE] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2349), + [anon_sym_lambda] = ACTIONS(2347), + [anon_sym_yield] = ACTIONS(2347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), + [anon_sym_None] = ACTIONS(2347), + [sym_integer] = ACTIONS(2347), + [sym_float] = ACTIONS(2349), + [anon_sym_await] = ACTIONS(2347), + [anon_sym_api] = ACTIONS(2347), + [sym_true] = ACTIONS(2347), + [sym_false] = ACTIONS(2347), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2347), + [anon_sym_include] = ACTIONS(2347), + [anon_sym_DEF] = ACTIONS(2347), + [anon_sym_IF] = ACTIONS(2347), + [anon_sym_cdef] = ACTIONS(2347), + [anon_sym_cpdef] = ACTIONS(2347), + [anon_sym_int] = ACTIONS(2347), + [anon_sym_double] = ACTIONS(2347), + [anon_sym_complex] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(2347), + [anon_sym_signed] = ACTIONS(2347), + [anon_sym_unsigned] = ACTIONS(2347), + [anon_sym_char] = ACTIONS(2347), + [anon_sym_short] = ACTIONS(2347), + [anon_sym_long] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [anon_sym_volatile] = ACTIONS(2347), + [anon_sym_ctypedef] = ACTIONS(2347), + [anon_sym_struct] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2347), + [anon_sym_enum] = ACTIONS(2347), + [anon_sym_cppclass] = ACTIONS(2347), + [anon_sym_fused] = ACTIONS(2347), + [anon_sym_public] = ACTIONS(2347), + [anon_sym_packed] = ACTIONS(2347), + [anon_sym_inline] = ACTIONS(2347), + [anon_sym_readonly] = ACTIONS(2347), + [anon_sym_sizeof] = ACTIONS(2347), + [sym__dedent] = ACTIONS(2349), + [sym_string_start] = ACTIONS(2349), }, [720] = { - [sym_identifier] = ACTIONS(2385), - [anon_sym_SEMI] = ACTIONS(2387), - [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_identifier] = ACTIONS(2351), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_import] = ACTIONS(2351), + [anon_sym_cimport] = ACTIONS(2351), + [anon_sym_from] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_print] = ACTIONS(2351), + [anon_sym_assert] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_del] = ACTIONS(2351), + [anon_sym_raise] = ACTIONS(2351), + [anon_sym_pass] = ACTIONS(2351), + [anon_sym_break] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_match] = ACTIONS(2351), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_try] = ACTIONS(2351), + [anon_sym_with] = ACTIONS(2351), + [anon_sym_def] = ACTIONS(2351), + [anon_sym_global] = ACTIONS(2351), + [anon_sym_nonlocal] = ACTIONS(2351), + [anon_sym_exec] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_class] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_AT] = ACTIONS(2353), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2353), + [anon_sym_not] = ACTIONS(2351), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_TILDE] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_lambda] = ACTIONS(2351), + [anon_sym_yield] = ACTIONS(2351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2353), + [anon_sym_None] = ACTIONS(2351), + [sym_integer] = ACTIONS(2351), + [sym_float] = ACTIONS(2353), + [anon_sym_await] = ACTIONS(2351), + [anon_sym_api] = ACTIONS(2351), + [sym_true] = ACTIONS(2351), + [sym_false] = ACTIONS(2351), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2351), + [anon_sym_include] = ACTIONS(2351), + [anon_sym_DEF] = ACTIONS(2351), + [anon_sym_IF] = ACTIONS(2351), + [anon_sym_cdef] = ACTIONS(2351), + [anon_sym_cpdef] = ACTIONS(2351), + [anon_sym_int] = ACTIONS(2351), + [anon_sym_double] = ACTIONS(2351), + [anon_sym_complex] = ACTIONS(2351), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_signed] = ACTIONS(2351), + [anon_sym_unsigned] = ACTIONS(2351), + [anon_sym_char] = ACTIONS(2351), + [anon_sym_short] = ACTIONS(2351), + [anon_sym_long] = ACTIONS(2351), + [anon_sym_const] = ACTIONS(2351), + [anon_sym_volatile] = ACTIONS(2351), + [anon_sym_ctypedef] = ACTIONS(2351), + [anon_sym_struct] = ACTIONS(2351), + [anon_sym_union] = ACTIONS(2351), + [anon_sym_enum] = ACTIONS(2351), + [anon_sym_cppclass] = ACTIONS(2351), + [anon_sym_fused] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_packed] = ACTIONS(2351), + [anon_sym_inline] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_sizeof] = ACTIONS(2351), + [sym__dedent] = ACTIONS(2353), + [sym_string_start] = ACTIONS(2353), }, [721] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4484), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5373), - [sym_c_function_argument_type] = STATE(5621), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_print] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_exec] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_identifier] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_import] = ACTIONS(2355), + [anon_sym_cimport] = ACTIONS(2355), + [anon_sym_from] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_print] = ACTIONS(2355), + [anon_sym_assert] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_del] = ACTIONS(2355), + [anon_sym_raise] = ACTIONS(2355), + [anon_sym_pass] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_match] = ACTIONS(2355), + [anon_sym_async] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_with] = ACTIONS(2355), + [anon_sym_def] = ACTIONS(2355), + [anon_sym_global] = ACTIONS(2355), + [anon_sym_nonlocal] = ACTIONS(2355), + [anon_sym_exec] = ACTIONS(2355), + [anon_sym_type] = ACTIONS(2355), + [anon_sym_class] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_AT] = ACTIONS(2357), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_PLUS] = ACTIONS(2357), + [anon_sym_not] = ACTIONS(2355), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_TILDE] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_lambda] = ACTIONS(2355), + [anon_sym_yield] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), + [anon_sym_None] = ACTIONS(2355), + [sym_integer] = ACTIONS(2355), + [sym_float] = ACTIONS(2357), + [anon_sym_await] = ACTIONS(2355), + [anon_sym_api] = ACTIONS(2355), + [sym_true] = ACTIONS(2355), + [sym_false] = ACTIONS(2355), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2355), + [anon_sym_include] = ACTIONS(2355), + [anon_sym_DEF] = ACTIONS(2355), + [anon_sym_IF] = ACTIONS(2355), + [anon_sym_cdef] = ACTIONS(2355), + [anon_sym_cpdef] = ACTIONS(2355), + [anon_sym_int] = ACTIONS(2355), + [anon_sym_double] = ACTIONS(2355), + [anon_sym_complex] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_signed] = ACTIONS(2355), + [anon_sym_unsigned] = ACTIONS(2355), + [anon_sym_char] = ACTIONS(2355), + [anon_sym_short] = ACTIONS(2355), + [anon_sym_long] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_volatile] = ACTIONS(2355), + [anon_sym_ctypedef] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_cppclass] = ACTIONS(2355), + [anon_sym_fused] = ACTIONS(2355), + [anon_sym_public] = ACTIONS(2355), + [anon_sym_packed] = ACTIONS(2355), + [anon_sym_inline] = ACTIONS(2355), + [anon_sym_readonly] = ACTIONS(2355), + [anon_sym_sizeof] = ACTIONS(2355), + [sym__dedent] = ACTIONS(2357), + [sym_string_start] = ACTIONS(2357), }, [722] = { - [sym_identifier] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_import] = ACTIONS(2389), - [anon_sym_cimport] = ACTIONS(2389), - [anon_sym_from] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_STAR] = ACTIONS(2391), - [anon_sym_print] = ACTIONS(2389), - [anon_sym_assert] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_del] = ACTIONS(2389), - [anon_sym_raise] = ACTIONS(2389), - [anon_sym_pass] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_with] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2389), - [anon_sym_global] = ACTIONS(2389), - [anon_sym_nonlocal] = ACTIONS(2389), - [anon_sym_exec] = ACTIONS(2389), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_class] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_AT] = ACTIONS(2391), - [anon_sym_DASH] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2391), - [anon_sym_not] = ACTIONS(2389), - [anon_sym_AMP] = ACTIONS(2391), - [anon_sym_TILDE] = ACTIONS(2391), - [anon_sym_LT] = ACTIONS(2391), - [anon_sym_lambda] = ACTIONS(2389), - [anon_sym_yield] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2391), - [anon_sym_None] = ACTIONS(2389), - [sym_integer] = ACTIONS(2389), - [sym_float] = ACTIONS(2391), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_api] = ACTIONS(2389), - [sym_true] = ACTIONS(2389), - [sym_false] = ACTIONS(2389), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2389), - [anon_sym_include] = ACTIONS(2389), - [anon_sym_DEF] = ACTIONS(2389), - [anon_sym_cdef] = ACTIONS(2389), - [anon_sym_cpdef] = ACTIONS(2389), - [anon_sym_int] = ACTIONS(2389), - [anon_sym_double] = ACTIONS(2389), - [anon_sym_complex] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2389), - [anon_sym_signed] = ACTIONS(2389), - [anon_sym_unsigned] = ACTIONS(2389), - [anon_sym_char] = ACTIONS(2389), - [anon_sym_short] = ACTIONS(2389), - [anon_sym_long] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_volatile] = ACTIONS(2389), - [anon_sym_ctypedef] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(2389), - [anon_sym_union] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_cppclass] = ACTIONS(2389), - [anon_sym_fused] = ACTIONS(2389), - [anon_sym_public] = ACTIONS(2389), - [anon_sym_packed] = ACTIONS(2389), - [anon_sym_inline] = ACTIONS(2389), - [anon_sym_readonly] = ACTIONS(2389), - [anon_sym_sizeof] = ACTIONS(2389), - [sym__dedent] = ACTIONS(2391), - [sym_string_start] = ACTIONS(2391), + [sym_identifier] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_import] = ACTIONS(2359), + [anon_sym_cimport] = ACTIONS(2359), + [anon_sym_from] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2361), + [anon_sym_print] = ACTIONS(2359), + [anon_sym_assert] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_del] = ACTIONS(2359), + [anon_sym_raise] = ACTIONS(2359), + [anon_sym_pass] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_match] = ACTIONS(2359), + [anon_sym_async] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [anon_sym_with] = ACTIONS(2359), + [anon_sym_def] = ACTIONS(2359), + [anon_sym_global] = ACTIONS(2359), + [anon_sym_nonlocal] = ACTIONS(2359), + [anon_sym_exec] = ACTIONS(2359), + [anon_sym_type] = ACTIONS(2359), + [anon_sym_class] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_AT] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2361), + [anon_sym_not] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_lambda] = ACTIONS(2359), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2361), + [anon_sym_None] = ACTIONS(2359), + [sym_integer] = ACTIONS(2359), + [sym_float] = ACTIONS(2361), + [anon_sym_await] = ACTIONS(2359), + [anon_sym_api] = ACTIONS(2359), + [sym_true] = ACTIONS(2359), + [sym_false] = ACTIONS(2359), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2359), + [anon_sym_include] = ACTIONS(2359), + [anon_sym_DEF] = ACTIONS(2359), + [anon_sym_IF] = ACTIONS(2359), + [anon_sym_cdef] = ACTIONS(2359), + [anon_sym_cpdef] = ACTIONS(2359), + [anon_sym_int] = ACTIONS(2359), + [anon_sym_double] = ACTIONS(2359), + [anon_sym_complex] = ACTIONS(2359), + [anon_sym_new] = ACTIONS(2359), + [anon_sym_signed] = ACTIONS(2359), + [anon_sym_unsigned] = ACTIONS(2359), + [anon_sym_char] = ACTIONS(2359), + [anon_sym_short] = ACTIONS(2359), + [anon_sym_long] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_volatile] = ACTIONS(2359), + [anon_sym_ctypedef] = ACTIONS(2359), + [anon_sym_struct] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_enum] = ACTIONS(2359), + [anon_sym_cppclass] = ACTIONS(2359), + [anon_sym_fused] = ACTIONS(2359), + [anon_sym_public] = ACTIONS(2359), + [anon_sym_packed] = ACTIONS(2359), + [anon_sym_inline] = ACTIONS(2359), + [anon_sym_readonly] = ACTIONS(2359), + [anon_sym_sizeof] = ACTIONS(2359), + [sym__dedent] = ACTIONS(2361), + [sym_string_start] = ACTIONS(2361), }, [723] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4511), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5239), - [sym_c_function_argument_type] = STATE(5546), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_print] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_exec] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_identifier] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2365), + [anon_sym_import] = ACTIONS(2363), + [anon_sym_cimport] = ACTIONS(2363), + [anon_sym_from] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(2365), + [anon_sym_print] = ACTIONS(2363), + [anon_sym_assert] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_del] = ACTIONS(2363), + [anon_sym_raise] = ACTIONS(2363), + [anon_sym_pass] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_async] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_with] = ACTIONS(2363), + [anon_sym_def] = ACTIONS(2363), + [anon_sym_global] = ACTIONS(2363), + [anon_sym_nonlocal] = ACTIONS(2363), + [anon_sym_exec] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_class] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_AT] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2365), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_lambda] = ACTIONS(2363), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2365), + [anon_sym_None] = ACTIONS(2363), + [sym_integer] = ACTIONS(2363), + [sym_float] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_api] = ACTIONS(2363), + [sym_true] = ACTIONS(2363), + [sym_false] = ACTIONS(2363), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2363), + [anon_sym_include] = ACTIONS(2363), + [anon_sym_DEF] = ACTIONS(2363), + [anon_sym_IF] = ACTIONS(2363), + [anon_sym_cdef] = ACTIONS(2363), + [anon_sym_cpdef] = ACTIONS(2363), + [anon_sym_int] = ACTIONS(2363), + [anon_sym_double] = ACTIONS(2363), + [anon_sym_complex] = ACTIONS(2363), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_signed] = ACTIONS(2363), + [anon_sym_unsigned] = ACTIONS(2363), + [anon_sym_char] = ACTIONS(2363), + [anon_sym_short] = ACTIONS(2363), + [anon_sym_long] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [anon_sym_volatile] = ACTIONS(2363), + [anon_sym_ctypedef] = ACTIONS(2363), + [anon_sym_struct] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(2363), + [anon_sym_cppclass] = ACTIONS(2363), + [anon_sym_fused] = ACTIONS(2363), + [anon_sym_public] = ACTIONS(2363), + [anon_sym_packed] = ACTIONS(2363), + [anon_sym_inline] = ACTIONS(2363), + [anon_sym_readonly] = ACTIONS(2363), + [anon_sym_sizeof] = ACTIONS(2363), + [sym__dedent] = ACTIONS(2365), + [sym_string_start] = ACTIONS(2365), }, [724] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4517), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5328), - [sym_c_function_argument_type] = STATE(5519), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_print] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_exec] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_identifier] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2369), + [anon_sym_import] = ACTIONS(2367), + [anon_sym_cimport] = ACTIONS(2367), + [anon_sym_from] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(2369), + [anon_sym_print] = ACTIONS(2367), + [anon_sym_assert] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_del] = ACTIONS(2367), + [anon_sym_raise] = ACTIONS(2367), + [anon_sym_pass] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_async] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [anon_sym_try] = ACTIONS(2367), + [anon_sym_with] = ACTIONS(2367), + [anon_sym_def] = ACTIONS(2367), + [anon_sym_global] = ACTIONS(2367), + [anon_sym_nonlocal] = ACTIONS(2367), + [anon_sym_exec] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2367), + [anon_sym_class] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_AT] = ACTIONS(2369), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2369), + [anon_sym_not] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2369), + [anon_sym_TILDE] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_lambda] = ACTIONS(2367), + [anon_sym_yield] = ACTIONS(2367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2369), + [anon_sym_None] = ACTIONS(2367), + [sym_integer] = ACTIONS(2367), + [sym_float] = ACTIONS(2369), + [anon_sym_await] = ACTIONS(2367), + [anon_sym_api] = ACTIONS(2367), + [sym_true] = ACTIONS(2367), + [sym_false] = ACTIONS(2367), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2367), + [anon_sym_include] = ACTIONS(2367), + [anon_sym_DEF] = ACTIONS(2367), + [anon_sym_IF] = ACTIONS(2367), + [anon_sym_cdef] = ACTIONS(2367), + [anon_sym_cpdef] = ACTIONS(2367), + [anon_sym_int] = ACTIONS(2367), + [anon_sym_double] = ACTIONS(2367), + [anon_sym_complex] = ACTIONS(2367), + [anon_sym_new] = ACTIONS(2367), + [anon_sym_signed] = ACTIONS(2367), + [anon_sym_unsigned] = ACTIONS(2367), + [anon_sym_char] = ACTIONS(2367), + [anon_sym_short] = ACTIONS(2367), + [anon_sym_long] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [anon_sym_volatile] = ACTIONS(2367), + [anon_sym_ctypedef] = ACTIONS(2367), + [anon_sym_struct] = ACTIONS(2367), + [anon_sym_union] = ACTIONS(2367), + [anon_sym_enum] = ACTIONS(2367), + [anon_sym_cppclass] = ACTIONS(2367), + [anon_sym_fused] = ACTIONS(2367), + [anon_sym_public] = ACTIONS(2367), + [anon_sym_packed] = ACTIONS(2367), + [anon_sym_inline] = ACTIONS(2367), + [anon_sym_readonly] = ACTIONS(2367), + [anon_sym_sizeof] = ACTIONS(2367), + [sym__dedent] = ACTIONS(2369), + [sym_string_start] = ACTIONS(2369), }, [725] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4367), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5256), - [sym_c_function_argument_type] = STATE(5506), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_print] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_exec] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_identifier] = ACTIONS(2371), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_import] = ACTIONS(2371), + [anon_sym_cimport] = ACTIONS(2371), + [anon_sym_from] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_print] = ACTIONS(2371), + [anon_sym_assert] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_del] = ACTIONS(2371), + [anon_sym_raise] = ACTIONS(2371), + [anon_sym_pass] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_try] = ACTIONS(2371), + [anon_sym_with] = ACTIONS(2371), + [anon_sym_def] = ACTIONS(2371), + [anon_sym_global] = ACTIONS(2371), + [anon_sym_nonlocal] = ACTIONS(2371), + [anon_sym_exec] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_class] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_AT] = ACTIONS(2373), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2373), + [anon_sym_not] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_lambda] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2373), + [anon_sym_None] = ACTIONS(2371), + [sym_integer] = ACTIONS(2371), + [sym_float] = ACTIONS(2373), + [anon_sym_await] = ACTIONS(2371), + [anon_sym_api] = ACTIONS(2371), + [sym_true] = ACTIONS(2371), + [sym_false] = ACTIONS(2371), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2371), + [anon_sym_include] = ACTIONS(2371), + [anon_sym_DEF] = ACTIONS(2371), + [anon_sym_IF] = ACTIONS(2371), + [anon_sym_cdef] = ACTIONS(2371), + [anon_sym_cpdef] = ACTIONS(2371), + [anon_sym_int] = ACTIONS(2371), + [anon_sym_double] = ACTIONS(2371), + [anon_sym_complex] = ACTIONS(2371), + [anon_sym_new] = ACTIONS(2371), + [anon_sym_signed] = ACTIONS(2371), + [anon_sym_unsigned] = ACTIONS(2371), + [anon_sym_char] = ACTIONS(2371), + [anon_sym_short] = ACTIONS(2371), + [anon_sym_long] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_volatile] = ACTIONS(2371), + [anon_sym_ctypedef] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), + [anon_sym_cppclass] = ACTIONS(2371), + [anon_sym_fused] = ACTIONS(2371), + [anon_sym_public] = ACTIONS(2371), + [anon_sym_packed] = ACTIONS(2371), + [anon_sym_inline] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_sizeof] = ACTIONS(2371), + [sym__dedent] = ACTIONS(2373), + [sym_string_start] = ACTIONS(2373), }, [726] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4378), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5315), - [sym_c_function_argument_type] = STATE(5495), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_print] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_exec] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_identifier] = ACTIONS(2375), + [anon_sym_SEMI] = ACTIONS(2377), + [anon_sym_import] = ACTIONS(2375), + [anon_sym_cimport] = ACTIONS(2375), + [anon_sym_from] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2377), + [anon_sym_print] = ACTIONS(2375), + [anon_sym_assert] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_del] = ACTIONS(2375), + [anon_sym_raise] = ACTIONS(2375), + [anon_sym_pass] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2375), + [anon_sym_async] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [anon_sym_try] = ACTIONS(2375), + [anon_sym_with] = ACTIONS(2375), + [anon_sym_def] = ACTIONS(2375), + [anon_sym_global] = ACTIONS(2375), + [anon_sym_nonlocal] = ACTIONS(2375), + [anon_sym_exec] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2375), + [anon_sym_class] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_AT] = ACTIONS(2377), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2377), + [anon_sym_not] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_TILDE] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_lambda] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2377), + [anon_sym_None] = ACTIONS(2375), + [sym_integer] = ACTIONS(2375), + [sym_float] = ACTIONS(2377), + [anon_sym_await] = ACTIONS(2375), + [anon_sym_api] = ACTIONS(2375), + [sym_true] = ACTIONS(2375), + [sym_false] = ACTIONS(2375), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2375), + [anon_sym_include] = ACTIONS(2375), + [anon_sym_DEF] = ACTIONS(2375), + [anon_sym_IF] = ACTIONS(2375), + [anon_sym_cdef] = ACTIONS(2375), + [anon_sym_cpdef] = ACTIONS(2375), + [anon_sym_int] = ACTIONS(2375), + [anon_sym_double] = ACTIONS(2375), + [anon_sym_complex] = ACTIONS(2375), + [anon_sym_new] = ACTIONS(2375), + [anon_sym_signed] = ACTIONS(2375), + [anon_sym_unsigned] = ACTIONS(2375), + [anon_sym_char] = ACTIONS(2375), + [anon_sym_short] = ACTIONS(2375), + [anon_sym_long] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [anon_sym_volatile] = ACTIONS(2375), + [anon_sym_ctypedef] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2375), + [anon_sym_union] = ACTIONS(2375), + [anon_sym_enum] = ACTIONS(2375), + [anon_sym_cppclass] = ACTIONS(2375), + [anon_sym_fused] = ACTIONS(2375), + [anon_sym_public] = ACTIONS(2375), + [anon_sym_packed] = ACTIONS(2375), + [anon_sym_inline] = ACTIONS(2375), + [anon_sym_readonly] = ACTIONS(2375), + [anon_sym_sizeof] = ACTIONS(2375), + [sym__dedent] = ACTIONS(2377), + [sym_string_start] = ACTIONS(2377), }, [727] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4394), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5383), - [sym_c_function_argument_type] = STATE(5641), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_print] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_exec] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_identifier] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_import] = ACTIONS(2379), + [anon_sym_cimport] = ACTIONS(2379), + [anon_sym_from] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(2381), + [anon_sym_print] = ACTIONS(2379), + [anon_sym_assert] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_del] = ACTIONS(2379), + [anon_sym_raise] = ACTIONS(2379), + [anon_sym_pass] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_async] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_with] = ACTIONS(2379), + [anon_sym_def] = ACTIONS(2379), + [anon_sym_global] = ACTIONS(2379), + [anon_sym_nonlocal] = ACTIONS(2379), + [anon_sym_exec] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_class] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_AT] = ACTIONS(2381), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_PLUS] = ACTIONS(2381), + [anon_sym_not] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2381), + [anon_sym_TILDE] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_lambda] = ACTIONS(2379), + [anon_sym_yield] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2381), + [anon_sym_None] = ACTIONS(2379), + [sym_integer] = ACTIONS(2379), + [sym_float] = ACTIONS(2381), + [anon_sym_await] = ACTIONS(2379), + [anon_sym_api] = ACTIONS(2379), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2379), + [anon_sym_include] = ACTIONS(2379), + [anon_sym_DEF] = ACTIONS(2379), + [anon_sym_IF] = ACTIONS(2379), + [anon_sym_cdef] = ACTIONS(2379), + [anon_sym_cpdef] = ACTIONS(2379), + [anon_sym_int] = ACTIONS(2379), + [anon_sym_double] = ACTIONS(2379), + [anon_sym_complex] = ACTIONS(2379), + [anon_sym_new] = ACTIONS(2379), + [anon_sym_signed] = ACTIONS(2379), + [anon_sym_unsigned] = ACTIONS(2379), + [anon_sym_char] = ACTIONS(2379), + [anon_sym_short] = ACTIONS(2379), + [anon_sym_long] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_volatile] = ACTIONS(2379), + [anon_sym_ctypedef] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_cppclass] = ACTIONS(2379), + [anon_sym_fused] = ACTIONS(2379), + [anon_sym_public] = ACTIONS(2379), + [anon_sym_packed] = ACTIONS(2379), + [anon_sym_inline] = ACTIONS(2379), + [anon_sym_readonly] = ACTIONS(2379), + [anon_sym_sizeof] = ACTIONS(2379), + [sym__dedent] = ACTIONS(2381), + [sym_string_start] = ACTIONS(2381), }, [728] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4406), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5443), - [sym_c_function_argument_type] = STATE(5774), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_print] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_exec] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_identifier] = ACTIONS(2383), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_import] = ACTIONS(2383), + [anon_sym_cimport] = ACTIONS(2383), + [anon_sym_from] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_STAR] = ACTIONS(2385), + [anon_sym_print] = ACTIONS(2383), + [anon_sym_assert] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_del] = ACTIONS(2383), + [anon_sym_raise] = ACTIONS(2383), + [anon_sym_pass] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [anon_sym_try] = ACTIONS(2383), + [anon_sym_with] = ACTIONS(2383), + [anon_sym_def] = ACTIONS(2383), + [anon_sym_global] = ACTIONS(2383), + [anon_sym_nonlocal] = ACTIONS(2383), + [anon_sym_exec] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_class] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_AT] = ACTIONS(2385), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_PLUS] = ACTIONS(2385), + [anon_sym_not] = ACTIONS(2383), + [anon_sym_AMP] = ACTIONS(2385), + [anon_sym_TILDE] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_lambda] = ACTIONS(2383), + [anon_sym_yield] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2385), + [anon_sym_None] = ACTIONS(2383), + [sym_integer] = ACTIONS(2383), + [sym_float] = ACTIONS(2385), + [anon_sym_await] = ACTIONS(2383), + [anon_sym_api] = ACTIONS(2383), + [sym_true] = ACTIONS(2383), + [sym_false] = ACTIONS(2383), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2383), + [anon_sym_include] = ACTIONS(2383), + [anon_sym_DEF] = ACTIONS(2383), + [anon_sym_IF] = ACTIONS(2383), + [anon_sym_cdef] = ACTIONS(2383), + [anon_sym_cpdef] = ACTIONS(2383), + [anon_sym_int] = ACTIONS(2383), + [anon_sym_double] = ACTIONS(2383), + [anon_sym_complex] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2383), + [anon_sym_signed] = ACTIONS(2383), + [anon_sym_unsigned] = ACTIONS(2383), + [anon_sym_char] = ACTIONS(2383), + [anon_sym_short] = ACTIONS(2383), + [anon_sym_long] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_volatile] = ACTIONS(2383), + [anon_sym_ctypedef] = ACTIONS(2383), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_cppclass] = ACTIONS(2383), + [anon_sym_fused] = ACTIONS(2383), + [anon_sym_public] = ACTIONS(2383), + [anon_sym_packed] = ACTIONS(2383), + [anon_sym_inline] = ACTIONS(2383), + [anon_sym_readonly] = ACTIONS(2383), + [anon_sym_sizeof] = ACTIONS(2383), + [sym__dedent] = ACTIONS(2385), + [sym_string_start] = ACTIONS(2385), }, [729] = { - [sym_identifier] = ACTIONS(2393), - [anon_sym_SEMI] = ACTIONS(2395), - [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), + [sym_identifier] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2389), + [anon_sym_import] = ACTIONS(2387), + [anon_sym_cimport] = ACTIONS(2387), + [anon_sym_from] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(2389), + [anon_sym_print] = ACTIONS(2387), + [anon_sym_assert] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_del] = ACTIONS(2387), + [anon_sym_raise] = ACTIONS(2387), + [anon_sym_pass] = ACTIONS(2387), + [anon_sym_break] = ACTIONS(2387), + [anon_sym_continue] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_async] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_while] = ACTIONS(2387), + [anon_sym_try] = ACTIONS(2387), + [anon_sym_with] = ACTIONS(2387), + [anon_sym_def] = ACTIONS(2387), + [anon_sym_global] = ACTIONS(2387), + [anon_sym_nonlocal] = ACTIONS(2387), + [anon_sym_exec] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2387), + [anon_sym_class] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_AT] = ACTIONS(2389), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(2389), + [anon_sym_not] = ACTIONS(2387), + [anon_sym_AMP] = ACTIONS(2389), + [anon_sym_TILDE] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_lambda] = ACTIONS(2387), + [anon_sym_yield] = ACTIONS(2387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2389), + [anon_sym_None] = ACTIONS(2387), + [sym_integer] = ACTIONS(2387), + [sym_float] = ACTIONS(2389), + [anon_sym_await] = ACTIONS(2387), + [anon_sym_api] = ACTIONS(2387), + [sym_true] = ACTIONS(2387), + [sym_false] = ACTIONS(2387), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2387), + [anon_sym_include] = ACTIONS(2387), + [anon_sym_DEF] = ACTIONS(2387), + [anon_sym_IF] = ACTIONS(2387), + [anon_sym_cdef] = ACTIONS(2387), + [anon_sym_cpdef] = ACTIONS(2387), + [anon_sym_int] = ACTIONS(2387), + [anon_sym_double] = ACTIONS(2387), + [anon_sym_complex] = ACTIONS(2387), + [anon_sym_new] = ACTIONS(2387), + [anon_sym_signed] = ACTIONS(2387), + [anon_sym_unsigned] = ACTIONS(2387), + [anon_sym_char] = ACTIONS(2387), + [anon_sym_short] = ACTIONS(2387), + [anon_sym_long] = ACTIONS(2387), + [anon_sym_const] = ACTIONS(2387), + [anon_sym_volatile] = ACTIONS(2387), + [anon_sym_ctypedef] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_enum] = ACTIONS(2387), + [anon_sym_cppclass] = ACTIONS(2387), + [anon_sym_fused] = ACTIONS(2387), + [anon_sym_public] = ACTIONS(2387), + [anon_sym_packed] = ACTIONS(2387), + [anon_sym_inline] = ACTIONS(2387), + [anon_sym_readonly] = ACTIONS(2387), + [anon_sym_sizeof] = ACTIONS(2387), + [sym__dedent] = ACTIONS(2389), + [sym_string_start] = ACTIONS(2389), }, [730] = { - [sym_identifier] = ACTIONS(2397), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_import] = ACTIONS(2397), - [anon_sym_cimport] = ACTIONS(2397), - [anon_sym_from] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(2399), - [anon_sym_print] = ACTIONS(2397), - [anon_sym_assert] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_del] = ACTIONS(2397), - [anon_sym_raise] = ACTIONS(2397), - [anon_sym_pass] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_match] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_with] = ACTIONS(2397), - [anon_sym_def] = ACTIONS(2397), - [anon_sym_global] = ACTIONS(2397), - [anon_sym_nonlocal] = ACTIONS(2397), - [anon_sym_exec] = ACTIONS(2397), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_AT] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_PLUS] = ACTIONS(2399), - [anon_sym_not] = ACTIONS(2397), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_LT] = ACTIONS(2399), - [anon_sym_lambda] = ACTIONS(2397), - [anon_sym_yield] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2399), - [anon_sym_None] = ACTIONS(2397), - [sym_integer] = ACTIONS(2397), - [sym_float] = ACTIONS(2399), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_api] = ACTIONS(2397), - [sym_true] = ACTIONS(2397), - [sym_false] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2397), - [anon_sym_include] = ACTIONS(2397), - [anon_sym_DEF] = ACTIONS(2397), - [anon_sym_cdef] = ACTIONS(2397), - [anon_sym_cpdef] = ACTIONS(2397), - [anon_sym_int] = ACTIONS(2397), - [anon_sym_double] = ACTIONS(2397), - [anon_sym_complex] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_signed] = ACTIONS(2397), - [anon_sym_unsigned] = ACTIONS(2397), - [anon_sym_char] = ACTIONS(2397), - [anon_sym_short] = ACTIONS(2397), - [anon_sym_long] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_ctypedef] = ACTIONS(2397), - [anon_sym_struct] = ACTIONS(2397), - [anon_sym_union] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_cppclass] = ACTIONS(2397), - [anon_sym_fused] = ACTIONS(2397), - [anon_sym_public] = ACTIONS(2397), - [anon_sym_packed] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_readonly] = ACTIONS(2397), - [anon_sym_sizeof] = ACTIONS(2397), - [sym__dedent] = ACTIONS(2399), - [sym_string_start] = ACTIONS(2399), + [sym_identifier] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2393), + [anon_sym_import] = ACTIONS(2391), + [anon_sym_cimport] = ACTIONS(2391), + [anon_sym_from] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_STAR] = ACTIONS(2393), + [anon_sym_print] = ACTIONS(2391), + [anon_sym_assert] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_del] = ACTIONS(2391), + [anon_sym_raise] = ACTIONS(2391), + [anon_sym_pass] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_async] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [anon_sym_try] = ACTIONS(2391), + [anon_sym_with] = ACTIONS(2391), + [anon_sym_def] = ACTIONS(2391), + [anon_sym_global] = ACTIONS(2391), + [anon_sym_nonlocal] = ACTIONS(2391), + [anon_sym_exec] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2391), + [anon_sym_class] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_AT] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2393), + [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_not] = ACTIONS(2391), + [anon_sym_AMP] = ACTIONS(2393), + [anon_sym_TILDE] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2393), + [anon_sym_lambda] = ACTIONS(2391), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2393), + [anon_sym_None] = ACTIONS(2391), + [sym_integer] = ACTIONS(2391), + [sym_float] = ACTIONS(2393), + [anon_sym_await] = ACTIONS(2391), + [anon_sym_api] = ACTIONS(2391), + [sym_true] = ACTIONS(2391), + [sym_false] = ACTIONS(2391), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2391), + [anon_sym_include] = ACTIONS(2391), + [anon_sym_DEF] = ACTIONS(2391), + [anon_sym_IF] = ACTIONS(2391), + [anon_sym_cdef] = ACTIONS(2391), + [anon_sym_cpdef] = ACTIONS(2391), + [anon_sym_int] = ACTIONS(2391), + [anon_sym_double] = ACTIONS(2391), + [anon_sym_complex] = ACTIONS(2391), + [anon_sym_new] = ACTIONS(2391), + [anon_sym_signed] = ACTIONS(2391), + [anon_sym_unsigned] = ACTIONS(2391), + [anon_sym_char] = ACTIONS(2391), + [anon_sym_short] = ACTIONS(2391), + [anon_sym_long] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_volatile] = ACTIONS(2391), + [anon_sym_ctypedef] = ACTIONS(2391), + [anon_sym_struct] = ACTIONS(2391), + [anon_sym_union] = ACTIONS(2391), + [anon_sym_enum] = ACTIONS(2391), + [anon_sym_cppclass] = ACTIONS(2391), + [anon_sym_fused] = ACTIONS(2391), + [anon_sym_public] = ACTIONS(2391), + [anon_sym_packed] = ACTIONS(2391), + [anon_sym_inline] = ACTIONS(2391), + [anon_sym_readonly] = ACTIONS(2391), + [anon_sym_sizeof] = ACTIONS(2391), + [sym__dedent] = ACTIONS(2393), + [sym_string_start] = ACTIONS(2393), }, [731] = { - [sym_list_splat_pattern] = STATE(2421), - [sym_primary_expression] = STATE(2212), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_attribute] = STATE(2347), - [sym_subscript] = STATE(2347), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(1973), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_print] = ACTIONS(1979), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_async] = ACTIONS(1979), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(1979), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_type_conversion] = ACTIONS(811), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(1995), - [anon_sym_api] = ACTIONS(1979), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), + [sym_identifier] = ACTIONS(2395), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_import] = ACTIONS(2395), + [anon_sym_cimport] = ACTIONS(2395), + [anon_sym_from] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_STAR] = ACTIONS(2397), + [anon_sym_print] = ACTIONS(2395), + [anon_sym_assert] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_del] = ACTIONS(2395), + [anon_sym_raise] = ACTIONS(2395), + [anon_sym_pass] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_async] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_with] = ACTIONS(2395), + [anon_sym_def] = ACTIONS(2395), + [anon_sym_global] = ACTIONS(2395), + [anon_sym_nonlocal] = ACTIONS(2395), + [anon_sym_exec] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2395), + [anon_sym_class] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_AT] = ACTIONS(2397), + [anon_sym_DASH] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_PLUS] = ACTIONS(2397), + [anon_sym_not] = ACTIONS(2395), + [anon_sym_AMP] = ACTIONS(2397), + [anon_sym_TILDE] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2397), + [anon_sym_lambda] = ACTIONS(2395), + [anon_sym_yield] = ACTIONS(2395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2397), + [anon_sym_None] = ACTIONS(2395), + [sym_integer] = ACTIONS(2395), + [sym_float] = ACTIONS(2397), + [anon_sym_await] = ACTIONS(2395), + [anon_sym_api] = ACTIONS(2395), + [sym_true] = ACTIONS(2395), + [sym_false] = ACTIONS(2395), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2395), + [anon_sym_include] = ACTIONS(2395), + [anon_sym_DEF] = ACTIONS(2395), + [anon_sym_IF] = ACTIONS(2395), + [anon_sym_cdef] = ACTIONS(2395), + [anon_sym_cpdef] = ACTIONS(2395), + [anon_sym_int] = ACTIONS(2395), + [anon_sym_double] = ACTIONS(2395), + [anon_sym_complex] = ACTIONS(2395), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_signed] = ACTIONS(2395), + [anon_sym_unsigned] = ACTIONS(2395), + [anon_sym_char] = ACTIONS(2395), + [anon_sym_short] = ACTIONS(2395), + [anon_sym_long] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_volatile] = ACTIONS(2395), + [anon_sym_ctypedef] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_cppclass] = ACTIONS(2395), + [anon_sym_fused] = ACTIONS(2395), + [anon_sym_public] = ACTIONS(2395), + [anon_sym_packed] = ACTIONS(2395), + [anon_sym_inline] = ACTIONS(2395), + [anon_sym_readonly] = ACTIONS(2395), + [anon_sym_sizeof] = ACTIONS(2395), + [sym__dedent] = ACTIONS(2397), + [sym_string_start] = ACTIONS(2397), }, [732] = { - [sym_identifier] = ACTIONS(2401), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_import] = ACTIONS(2401), - [anon_sym_cimport] = ACTIONS(2401), - [anon_sym_from] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_print] = ACTIONS(2401), - [anon_sym_assert] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_del] = ACTIONS(2401), - [anon_sym_raise] = ACTIONS(2401), - [anon_sym_pass] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_match] = ACTIONS(2401), - [anon_sym_async] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_with] = ACTIONS(2401), - [anon_sym_def] = ACTIONS(2401), - [anon_sym_global] = ACTIONS(2401), - [anon_sym_nonlocal] = ACTIONS(2401), - [anon_sym_exec] = ACTIONS(2401), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2403), - [anon_sym_AT] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_PLUS] = ACTIONS(2403), - [anon_sym_not] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_LT] = ACTIONS(2403), - [anon_sym_lambda] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(2401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2403), - [anon_sym_None] = ACTIONS(2401), - [sym_integer] = ACTIONS(2401), - [sym_float] = ACTIONS(2403), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_api] = ACTIONS(2401), - [sym_true] = ACTIONS(2401), - [sym_false] = ACTIONS(2401), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2401), - [anon_sym_include] = ACTIONS(2401), - [anon_sym_DEF] = ACTIONS(2401), - [anon_sym_cdef] = ACTIONS(2401), - [anon_sym_cpdef] = ACTIONS(2401), - [anon_sym_int] = ACTIONS(2401), - [anon_sym_double] = ACTIONS(2401), - [anon_sym_complex] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_signed] = ACTIONS(2401), - [anon_sym_unsigned] = ACTIONS(2401), - [anon_sym_char] = ACTIONS(2401), - [anon_sym_short] = ACTIONS(2401), - [anon_sym_long] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_volatile] = ACTIONS(2401), - [anon_sym_ctypedef] = ACTIONS(2401), - [anon_sym_struct] = ACTIONS(2401), - [anon_sym_union] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_cppclass] = ACTIONS(2401), - [anon_sym_fused] = ACTIONS(2401), - [anon_sym_public] = ACTIONS(2401), - [anon_sym_packed] = ACTIONS(2401), - [anon_sym_inline] = ACTIONS(2401), - [anon_sym_readonly] = ACTIONS(2401), - [anon_sym_sizeof] = ACTIONS(2401), - [sym__dedent] = ACTIONS(2403), - [sym_string_start] = ACTIONS(2403), - }, - [733] = { - [sym_list_splat_pattern] = STATE(2604), - [sym_primary_expression] = STATE(2269), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(1374), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_print] = ACTIONS(2409), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_match] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(813), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2409), - [anon_sym_EQ] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_api] = ACTIONS(2409), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), + [sym_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(3299), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1576), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_in] = ACTIONS(1366), + [anon_sym_STAR_STAR] = ACTIONS(1576), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_not] = ACTIONS(1366), + [anon_sym_and] = ACTIONS(1366), + [anon_sym_or] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_LT_LT] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_is] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_LT_GT] = ACTIONS(1361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_type_conversion] = ACTIONS(1361), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [733] = { + [sym_identifier] = ACTIONS(2399), + [anon_sym_import] = ACTIONS(2399), + [anon_sym_cimport] = ACTIONS(2399), + [anon_sym_from] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_STAR] = ACTIONS(2401), + [anon_sym_print] = ACTIONS(2399), + [anon_sym_assert] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_del] = ACTIONS(2399), + [anon_sym_raise] = ACTIONS(2399), + [anon_sym_pass] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [anon_sym_try] = ACTIONS(2399), + [anon_sym_with] = ACTIONS(2399), + [anon_sym_def] = ACTIONS(2399), + [anon_sym_global] = ACTIONS(2399), + [anon_sym_nonlocal] = ACTIONS(2399), + [anon_sym_exec] = ACTIONS(2399), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_class] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_AT] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_not] = ACTIONS(2399), + [anon_sym_AMP] = ACTIONS(2401), + [anon_sym_TILDE] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2401), + [anon_sym_lambda] = ACTIONS(2399), + [anon_sym_yield] = ACTIONS(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2401), + [anon_sym_None] = ACTIONS(2399), + [sym_integer] = ACTIONS(2399), + [sym_float] = ACTIONS(2401), + [anon_sym_await] = ACTIONS(2399), + [anon_sym_api] = ACTIONS(2399), + [sym_true] = ACTIONS(2399), + [sym_false] = ACTIONS(2399), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2399), + [anon_sym_include] = ACTIONS(2399), + [anon_sym_DEF] = ACTIONS(2399), + [anon_sym_IF] = ACTIONS(2399), + [anon_sym_cdef] = ACTIONS(2399), + [anon_sym_cpdef] = ACTIONS(2399), + [anon_sym_int] = ACTIONS(2399), + [anon_sym_double] = ACTIONS(2399), + [anon_sym_complex] = ACTIONS(2399), + [anon_sym_new] = ACTIONS(2399), + [anon_sym_signed] = ACTIONS(2399), + [anon_sym_unsigned] = ACTIONS(2399), + [anon_sym_char] = ACTIONS(2399), + [anon_sym_short] = ACTIONS(2399), + [anon_sym_long] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_volatile] = ACTIONS(2399), + [anon_sym_ctypedef] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_cppclass] = ACTIONS(2399), + [anon_sym_fused] = ACTIONS(2399), + [anon_sym_public] = ACTIONS(2399), + [anon_sym_packed] = ACTIONS(2399), + [anon_sym_inline] = ACTIONS(2399), + [anon_sym_readonly] = ACTIONS(2399), + [anon_sym_sizeof] = ACTIONS(2399), + [sym__dedent] = ACTIONS(2401), + [sym_string_start] = ACTIONS(2401), }, [734] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(3290), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(847), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(813), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_SLASH_SLASH] = ACTIONS(813), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(847), - [anon_sym_STAR_EQ] = ACTIONS(847), - [anon_sym_SLASH_EQ] = ACTIONS(847), - [anon_sym_AT_EQ] = ACTIONS(847), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), - [anon_sym_PERCENT_EQ] = ACTIONS(847), - [anon_sym_STAR_STAR_EQ] = ACTIONS(847), - [anon_sym_GT_GT_EQ] = ACTIONS(847), - [anon_sym_LT_LT_EQ] = ACTIONS(847), - [anon_sym_AMP_EQ] = ACTIONS(847), - [anon_sym_CARET_EQ] = ACTIONS(847), - [anon_sym_PIPE_EQ] = ACTIONS(847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1344), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym__newline] = ACTIONS(847), - [sym_string_start] = ACTIONS(1279), + [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_IF] = 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), }, [735] = { - [sym_identifier] = ACTIONS(2417), - [anon_sym_import] = ACTIONS(2417), - [anon_sym_cimport] = ACTIONS(2417), - [anon_sym_from] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_print] = ACTIONS(2417), - [anon_sym_assert] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_del] = ACTIONS(2417), - [anon_sym_raise] = ACTIONS(2417), - [anon_sym_pass] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_match] = ACTIONS(2417), - [anon_sym_async] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_with] = ACTIONS(2417), - [anon_sym_def] = ACTIONS(2417), - [anon_sym_global] = ACTIONS(2417), - [anon_sym_nonlocal] = ACTIONS(2417), - [anon_sym_exec] = ACTIONS(2417), - [anon_sym_type] = ACTIONS(2417), - [anon_sym_class] = ACTIONS(2417), - [anon_sym_LBRACK] = ACTIONS(2419), - [anon_sym_AT] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_not] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_lambda] = ACTIONS(2417), - [anon_sym_yield] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2419), - [anon_sym_None] = ACTIONS(2417), - [sym_integer] = ACTIONS(2417), - [sym_float] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2417), - [anon_sym_api] = ACTIONS(2417), - [sym_true] = ACTIONS(2417), - [sym_false] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2417), - [anon_sym_include] = ACTIONS(2417), - [anon_sym_DEF] = ACTIONS(2417), - [anon_sym_cdef] = ACTIONS(2417), - [anon_sym_cpdef] = ACTIONS(2417), - [anon_sym_int] = ACTIONS(2417), - [anon_sym_double] = ACTIONS(2417), - [anon_sym_complex] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_signed] = ACTIONS(2417), - [anon_sym_unsigned] = ACTIONS(2417), - [anon_sym_char] = ACTIONS(2417), - [anon_sym_short] = ACTIONS(2417), - [anon_sym_long] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_volatile] = ACTIONS(2417), - [anon_sym_ctypedef] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2417), - [anon_sym_union] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_cppclass] = ACTIONS(2417), - [anon_sym_fused] = ACTIONS(2417), - [anon_sym_public] = ACTIONS(2417), - [anon_sym_packed] = ACTIONS(2417), - [anon_sym_inline] = ACTIONS(2417), - [anon_sym_readonly] = ACTIONS(2417), - [anon_sym_sizeof] = ACTIONS(2417), - [sym__dedent] = ACTIONS(2419), - [sym_string_start] = ACTIONS(2419), + [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_IF] = 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), }, [736] = { - [sym_identifier] = ACTIONS(2421), - [anon_sym_import] = ACTIONS(2421), - [anon_sym_cimport] = ACTIONS(2421), - [anon_sym_from] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_print] = ACTIONS(2421), - [anon_sym_assert] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_del] = ACTIONS(2421), - [anon_sym_raise] = ACTIONS(2421), - [anon_sym_pass] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_match] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_with] = ACTIONS(2421), - [anon_sym_def] = ACTIONS(2421), - [anon_sym_global] = ACTIONS(2421), - [anon_sym_nonlocal] = ACTIONS(2421), - [anon_sym_exec] = ACTIONS(2421), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2423), - [anon_sym_AT] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_PLUS] = ACTIONS(2423), - [anon_sym_not] = ACTIONS(2421), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_LT] = ACTIONS(2423), - [anon_sym_lambda] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2423), - [anon_sym_None] = ACTIONS(2421), - [sym_integer] = ACTIONS(2421), - [sym_float] = ACTIONS(2423), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_api] = ACTIONS(2421), - [sym_true] = ACTIONS(2421), - [sym_false] = ACTIONS(2421), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2421), - [anon_sym_include] = ACTIONS(2421), - [anon_sym_DEF] = ACTIONS(2421), - [anon_sym_cdef] = ACTIONS(2421), - [anon_sym_cpdef] = ACTIONS(2421), - [anon_sym_int] = ACTIONS(2421), - [anon_sym_double] = ACTIONS(2421), - [anon_sym_complex] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_char] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_volatile] = ACTIONS(2421), - [anon_sym_ctypedef] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_cppclass] = ACTIONS(2421), - [anon_sym_fused] = ACTIONS(2421), - [anon_sym_public] = ACTIONS(2421), - [anon_sym_packed] = ACTIONS(2421), - [anon_sym_inline] = ACTIONS(2421), - [anon_sym_readonly] = ACTIONS(2421), - [anon_sym_sizeof] = ACTIONS(2421), - [sym__dedent] = ACTIONS(2423), - [sym_string_start] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2411), + [anon_sym_import] = ACTIONS(2411), + [anon_sym_cimport] = ACTIONS(2411), + [anon_sym_from] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_print] = ACTIONS(2411), + [anon_sym_assert] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_del] = ACTIONS(2411), + [anon_sym_raise] = ACTIONS(2411), + [anon_sym_pass] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_async] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_with] = ACTIONS(2411), + [anon_sym_def] = ACTIONS(2411), + [anon_sym_global] = ACTIONS(2411), + [anon_sym_nonlocal] = ACTIONS(2411), + [anon_sym_exec] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_AT] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_PLUS] = ACTIONS(2413), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_LT] = ACTIONS(2413), + [anon_sym_lambda] = ACTIONS(2411), + [anon_sym_yield] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2413), + [anon_sym_None] = ACTIONS(2411), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2413), + [anon_sym_await] = ACTIONS(2411), + [anon_sym_api] = ACTIONS(2411), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2411), + [anon_sym_include] = ACTIONS(2411), + [anon_sym_DEF] = ACTIONS(2411), + [anon_sym_IF] = ACTIONS(2411), + [anon_sym_cdef] = ACTIONS(2411), + [anon_sym_cpdef] = ACTIONS(2411), + [anon_sym_int] = ACTIONS(2411), + [anon_sym_double] = ACTIONS(2411), + [anon_sym_complex] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_char] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_ctypedef] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_cppclass] = ACTIONS(2411), + [anon_sym_fused] = ACTIONS(2411), + [anon_sym_public] = ACTIONS(2411), + [anon_sym_packed] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_readonly] = ACTIONS(2411), + [anon_sym_sizeof] = ACTIONS(2411), + [sym__dedent] = ACTIONS(2413), + [sym_string_start] = ACTIONS(2413), }, [737] = { - [sym_list_splat_pattern] = STATE(2421), - [sym_primary_expression] = STATE(2212), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_attribute] = STATE(2347), - [sym_subscript] = STATE(2347), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(1973), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_print] = ACTIONS(1979), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_async] = ACTIONS(1979), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(1979), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_type_conversion] = ACTIONS(811), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(1995), - [anon_sym_api] = ACTIONS(1979), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), + [sym_identifier] = ACTIONS(2415), + [anon_sym_import] = ACTIONS(2415), + [anon_sym_cimport] = ACTIONS(2415), + [anon_sym_from] = ACTIONS(2415), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_STAR] = ACTIONS(2417), + [anon_sym_print] = ACTIONS(2415), + [anon_sym_assert] = ACTIONS(2415), + [anon_sym_return] = ACTIONS(2415), + [anon_sym_del] = ACTIONS(2415), + [anon_sym_raise] = ACTIONS(2415), + [anon_sym_pass] = ACTIONS(2415), + [anon_sym_break] = ACTIONS(2415), + [anon_sym_continue] = ACTIONS(2415), + [anon_sym_if] = ACTIONS(2415), + [anon_sym_match] = ACTIONS(2415), + [anon_sym_async] = ACTIONS(2415), + [anon_sym_for] = ACTIONS(2415), + [anon_sym_while] = ACTIONS(2415), + [anon_sym_try] = ACTIONS(2415), + [anon_sym_with] = ACTIONS(2415), + [anon_sym_def] = ACTIONS(2415), + [anon_sym_global] = ACTIONS(2415), + [anon_sym_nonlocal] = ACTIONS(2415), + [anon_sym_exec] = ACTIONS(2415), + [anon_sym_type] = ACTIONS(2415), + [anon_sym_class] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2417), + [anon_sym_AT] = ACTIONS(2417), + [anon_sym_DASH] = ACTIONS(2417), + [anon_sym_LBRACE] = ACTIONS(2417), + [anon_sym_PLUS] = ACTIONS(2417), + [anon_sym_not] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(2417), + [anon_sym_TILDE] = ACTIONS(2417), + [anon_sym_LT] = ACTIONS(2417), + [anon_sym_lambda] = ACTIONS(2415), + [anon_sym_yield] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2417), + [anon_sym_None] = ACTIONS(2415), + [sym_integer] = ACTIONS(2415), + [sym_float] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2415), + [anon_sym_api] = ACTIONS(2415), + [sym_true] = ACTIONS(2415), + [sym_false] = ACTIONS(2415), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2415), + [anon_sym_include] = ACTIONS(2415), + [anon_sym_DEF] = ACTIONS(2415), + [anon_sym_IF] = ACTIONS(2415), + [anon_sym_cdef] = ACTIONS(2415), + [anon_sym_cpdef] = ACTIONS(2415), + [anon_sym_int] = ACTIONS(2415), + [anon_sym_double] = ACTIONS(2415), + [anon_sym_complex] = ACTIONS(2415), + [anon_sym_new] = ACTIONS(2415), + [anon_sym_signed] = ACTIONS(2415), + [anon_sym_unsigned] = ACTIONS(2415), + [anon_sym_char] = ACTIONS(2415), + [anon_sym_short] = ACTIONS(2415), + [anon_sym_long] = ACTIONS(2415), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_volatile] = ACTIONS(2415), + [anon_sym_ctypedef] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(2415), + [anon_sym_union] = ACTIONS(2415), + [anon_sym_enum] = ACTIONS(2415), + [anon_sym_cppclass] = ACTIONS(2415), + [anon_sym_fused] = ACTIONS(2415), + [anon_sym_public] = ACTIONS(2415), + [anon_sym_packed] = ACTIONS(2415), + [anon_sym_inline] = ACTIONS(2415), + [anon_sym_readonly] = ACTIONS(2415), + [anon_sym_sizeof] = ACTIONS(2415), + [sym__dedent] = ACTIONS(2417), + [sym_string_start] = ACTIONS(2417), }, [738] = { - [sym_identifier] = ACTIONS(1619), - [anon_sym_import] = ACTIONS(1619), - [anon_sym_cimport] = ACTIONS(1619), - [anon_sym_from] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_print] = ACTIONS(1619), - [anon_sym_assert] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_del] = ACTIONS(1619), - [anon_sym_raise] = ACTIONS(1619), - [anon_sym_pass] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_match] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_try] = ACTIONS(1619), - [anon_sym_with] = ACTIONS(1619), - [anon_sym_def] = ACTIONS(1619), - [anon_sym_global] = ACTIONS(1619), - [anon_sym_nonlocal] = ACTIONS(1619), - [anon_sym_exec] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(1619), - [anon_sym_class] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_AT] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_not] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_lambda] = ACTIONS(1619), - [anon_sym_yield] = ACTIONS(1619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1623), - [anon_sym_None] = ACTIONS(1619), - [sym_integer] = ACTIONS(1619), - [sym_float] = ACTIONS(1623), - [anon_sym_await] = ACTIONS(1619), - [anon_sym_api] = ACTIONS(1619), - [sym_true] = ACTIONS(1619), - [sym_false] = ACTIONS(1619), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1619), - [anon_sym_include] = ACTIONS(1619), - [anon_sym_DEF] = ACTIONS(1619), - [anon_sym_cdef] = ACTIONS(1619), - [anon_sym_cpdef] = ACTIONS(1619), - [anon_sym_int] = ACTIONS(1619), - [anon_sym_double] = ACTIONS(1619), - [anon_sym_complex] = ACTIONS(1619), - [anon_sym_new] = ACTIONS(1619), - [anon_sym_signed] = ACTIONS(1619), - [anon_sym_unsigned] = ACTIONS(1619), - [anon_sym_char] = ACTIONS(1619), - [anon_sym_short] = ACTIONS(1619), - [anon_sym_long] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_volatile] = ACTIONS(1619), - [anon_sym_ctypedef] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1619), - [anon_sym_union] = ACTIONS(1619), - [anon_sym_enum] = ACTIONS(1619), - [anon_sym_cppclass] = ACTIONS(1619), - [anon_sym_fused] = ACTIONS(1619), - [anon_sym_public] = ACTIONS(1619), - [anon_sym_packed] = ACTIONS(1619), - [anon_sym_inline] = ACTIONS(1619), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_sizeof] = ACTIONS(1619), - [sym__dedent] = ACTIONS(1623), - [sym_string_start] = ACTIONS(1623), + [sym_identifier] = ACTIONS(2419), + [anon_sym_import] = ACTIONS(2419), + [anon_sym_cimport] = ACTIONS(2419), + [anon_sym_from] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_print] = ACTIONS(2419), + [anon_sym_assert] = ACTIONS(2419), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_del] = ACTIONS(2419), + [anon_sym_raise] = ACTIONS(2419), + [anon_sym_pass] = ACTIONS(2419), + [anon_sym_break] = ACTIONS(2419), + [anon_sym_continue] = ACTIONS(2419), + [anon_sym_if] = ACTIONS(2419), + [anon_sym_match] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_for] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2419), + [anon_sym_with] = ACTIONS(2419), + [anon_sym_def] = ACTIONS(2419), + [anon_sym_global] = ACTIONS(2419), + [anon_sym_nonlocal] = ACTIONS(2419), + [anon_sym_exec] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2419), + [anon_sym_class] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_AT] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2421), + [anon_sym_not] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_LT] = ACTIONS(2421), + [anon_sym_lambda] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2421), + [anon_sym_None] = ACTIONS(2419), + [sym_integer] = ACTIONS(2419), + [sym_float] = ACTIONS(2421), + [anon_sym_await] = ACTIONS(2419), + [anon_sym_api] = ACTIONS(2419), + [sym_true] = ACTIONS(2419), + [sym_false] = ACTIONS(2419), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2419), + [anon_sym_include] = ACTIONS(2419), + [anon_sym_DEF] = ACTIONS(2419), + [anon_sym_IF] = ACTIONS(2419), + [anon_sym_cdef] = ACTIONS(2419), + [anon_sym_cpdef] = ACTIONS(2419), + [anon_sym_int] = ACTIONS(2419), + [anon_sym_double] = ACTIONS(2419), + [anon_sym_complex] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2419), + [anon_sym_signed] = ACTIONS(2419), + [anon_sym_unsigned] = ACTIONS(2419), + [anon_sym_char] = ACTIONS(2419), + [anon_sym_short] = ACTIONS(2419), + [anon_sym_long] = ACTIONS(2419), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_volatile] = ACTIONS(2419), + [anon_sym_ctypedef] = ACTIONS(2419), + [anon_sym_struct] = ACTIONS(2419), + [anon_sym_union] = ACTIONS(2419), + [anon_sym_enum] = ACTIONS(2419), + [anon_sym_cppclass] = ACTIONS(2419), + [anon_sym_fused] = ACTIONS(2419), + [anon_sym_public] = ACTIONS(2419), + [anon_sym_packed] = ACTIONS(2419), + [anon_sym_inline] = ACTIONS(2419), + [anon_sym_readonly] = ACTIONS(2419), + [anon_sym_sizeof] = ACTIONS(2419), + [sym__dedent] = ACTIONS(2421), + [sym_string_start] = ACTIONS(2421), }, [739] = { - [sym_identifier] = ACTIONS(2425), - [anon_sym_import] = ACTIONS(2425), - [anon_sym_cimport] = ACTIONS(2425), - [anon_sym_from] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_STAR] = ACTIONS(2427), - [anon_sym_print] = ACTIONS(2425), - [anon_sym_assert] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_del] = ACTIONS(2425), - [anon_sym_raise] = ACTIONS(2425), - [anon_sym_pass] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_async] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_with] = ACTIONS(2425), - [anon_sym_def] = ACTIONS(2425), - [anon_sym_global] = ACTIONS(2425), - [anon_sym_nonlocal] = ACTIONS(2425), - [anon_sym_exec] = ACTIONS(2425), - [anon_sym_type] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2425), - [anon_sym_LBRACK] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_PLUS] = ACTIONS(2427), - [anon_sym_not] = ACTIONS(2425), - [anon_sym_AMP] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_LT] = ACTIONS(2427), - [anon_sym_lambda] = ACTIONS(2425), - [anon_sym_yield] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2427), - [anon_sym_None] = ACTIONS(2425), - [sym_integer] = ACTIONS(2425), - [sym_float] = ACTIONS(2427), - [anon_sym_await] = ACTIONS(2425), - [anon_sym_api] = ACTIONS(2425), - [sym_true] = ACTIONS(2425), - [sym_false] = ACTIONS(2425), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2425), - [anon_sym_include] = ACTIONS(2425), - [anon_sym_DEF] = ACTIONS(2425), - [anon_sym_cdef] = ACTIONS(2425), - [anon_sym_cpdef] = ACTIONS(2425), - [anon_sym_int] = ACTIONS(2425), - [anon_sym_double] = ACTIONS(2425), - [anon_sym_complex] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_signed] = ACTIONS(2425), - [anon_sym_unsigned] = ACTIONS(2425), - [anon_sym_char] = ACTIONS(2425), - [anon_sym_short] = ACTIONS(2425), - [anon_sym_long] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_volatile] = ACTIONS(2425), - [anon_sym_ctypedef] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2425), - [anon_sym_union] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_cppclass] = ACTIONS(2425), - [anon_sym_fused] = ACTIONS(2425), - [anon_sym_public] = ACTIONS(2425), - [anon_sym_packed] = ACTIONS(2425), - [anon_sym_inline] = ACTIONS(2425), - [anon_sym_readonly] = ACTIONS(2425), - [anon_sym_sizeof] = ACTIONS(2425), - [sym__dedent] = ACTIONS(2427), - [sym_string_start] = ACTIONS(2427), + [sym_identifier] = ACTIONS(1645), + [anon_sym_import] = ACTIONS(1645), + [anon_sym_cimport] = ACTIONS(1645), + [anon_sym_from] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(1649), + [anon_sym_print] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_del] = ACTIONS(1645), + [anon_sym_raise] = ACTIONS(1645), + [anon_sym_pass] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1645), + [anon_sym_async] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_try] = ACTIONS(1645), + [anon_sym_with] = ACTIONS(1645), + [anon_sym_def] = ACTIONS(1645), + [anon_sym_global] = ACTIONS(1645), + [anon_sym_nonlocal] = ACTIONS(1645), + [anon_sym_exec] = ACTIONS(1645), + [anon_sym_type] = ACTIONS(1645), + [anon_sym_class] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1649), + [anon_sym_AT] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_not] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_TILDE] = ACTIONS(1649), + [anon_sym_LT] = ACTIONS(1649), + [anon_sym_lambda] = ACTIONS(1645), + [anon_sym_yield] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1649), + [anon_sym_None] = ACTIONS(1645), + [sym_integer] = ACTIONS(1645), + [sym_float] = ACTIONS(1649), + [anon_sym_await] = ACTIONS(1645), + [anon_sym_api] = ACTIONS(1645), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1645), + [anon_sym_include] = ACTIONS(1645), + [anon_sym_DEF] = ACTIONS(1645), + [anon_sym_IF] = ACTIONS(1645), + [anon_sym_cdef] = ACTIONS(1645), + [anon_sym_cpdef] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_complex] = ACTIONS(1645), + [anon_sym_new] = ACTIONS(1645), + [anon_sym_signed] = ACTIONS(1645), + [anon_sym_unsigned] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_volatile] = ACTIONS(1645), + [anon_sym_ctypedef] = ACTIONS(1645), + [anon_sym_struct] = ACTIONS(1645), + [anon_sym_union] = ACTIONS(1645), + [anon_sym_enum] = ACTIONS(1645), + [anon_sym_cppclass] = ACTIONS(1645), + [anon_sym_fused] = ACTIONS(1645), + [anon_sym_public] = ACTIONS(1645), + [anon_sym_packed] = ACTIONS(1645), + [anon_sym_inline] = ACTIONS(1645), + [anon_sym_readonly] = ACTIONS(1645), + [anon_sym_sizeof] = ACTIONS(1645), + [sym__dedent] = ACTIONS(1649), + [sym_string_start] = ACTIONS(1649), }, [740] = { - [sym_identifier] = ACTIONS(2429), - [anon_sym_import] = ACTIONS(2429), - [anon_sym_cimport] = ACTIONS(2429), - [anon_sym_from] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_STAR] = ACTIONS(2431), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4579), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5326), + [sym_c_function_argument_type] = STATE(5707), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), [anon_sym_print] = ACTIONS(2429), - [anon_sym_assert] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_del] = ACTIONS(2429), - [anon_sym_raise] = ACTIONS(2429), - [anon_sym_pass] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), [anon_sym_match] = ACTIONS(2429), [anon_sym_async] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_with] = ACTIONS(2429), - [anon_sym_def] = ACTIONS(2429), - [anon_sym_global] = ACTIONS(2429), - [anon_sym_nonlocal] = ACTIONS(2429), [anon_sym_exec] = ACTIONS(2429), - [anon_sym_type] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2431), - [anon_sym_not] = ACTIONS(2429), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_lambda] = ACTIONS(2429), - [anon_sym_yield] = ACTIONS(2429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_None] = ACTIONS(2429), - [sym_integer] = ACTIONS(2429), - [sym_float] = ACTIONS(2431), - [anon_sym_await] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2431), [anon_sym_api] = ACTIONS(2429), - [sym_true] = ACTIONS(2429), - [sym_false] = ACTIONS(2429), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2429), - [anon_sym_include] = ACTIONS(2429), - [anon_sym_DEF] = ACTIONS(2429), - [anon_sym_cdef] = ACTIONS(2429), - [anon_sym_cpdef] = ACTIONS(2429), - [anon_sym_int] = ACTIONS(2429), - [anon_sym_double] = ACTIONS(2429), - [anon_sym_complex] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_signed] = ACTIONS(2429), - [anon_sym_unsigned] = ACTIONS(2429), - [anon_sym_char] = ACTIONS(2429), - [anon_sym_short] = ACTIONS(2429), - [anon_sym_long] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_volatile] = ACTIONS(2429), - [anon_sym_ctypedef] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_cppclass] = ACTIONS(2429), - [anon_sym_fused] = ACTIONS(2429), - [anon_sym_public] = ACTIONS(2429), - [anon_sym_packed] = ACTIONS(2429), - [anon_sym_inline] = ACTIONS(2429), - [anon_sym_readonly] = ACTIONS(2429), - [anon_sym_sizeof] = ACTIONS(2429), - [sym__dedent] = ACTIONS(2431), - [sym_string_start] = ACTIONS(2431), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [741] = { - [sym_identifier] = ACTIONS(2433), - [anon_sym_import] = ACTIONS(2433), - [anon_sym_cimport] = ACTIONS(2433), - [anon_sym_from] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_print] = ACTIONS(2433), - [anon_sym_assert] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_del] = ACTIONS(2433), - [anon_sym_raise] = ACTIONS(2433), - [anon_sym_pass] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_with] = ACTIONS(2433), - [anon_sym_def] = ACTIONS(2433), - [anon_sym_global] = ACTIONS(2433), - [anon_sym_nonlocal] = ACTIONS(2433), - [anon_sym_exec] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_class] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_AT] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2435), - [anon_sym_not] = ACTIONS(2433), - [anon_sym_AMP] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2435), - [anon_sym_lambda] = ACTIONS(2433), - [anon_sym_yield] = ACTIONS(2433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_None] = ACTIONS(2433), - [sym_integer] = ACTIONS(2433), - [sym_float] = ACTIONS(2435), + [sym_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(2252), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_else] = ACTIONS(859), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_in] = ACTIONS(859), + [anon_sym_by] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), [anon_sym_await] = ACTIONS(2433), - [anon_sym_api] = ACTIONS(2433), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2433), - [anon_sym_include] = ACTIONS(2433), - [anon_sym_DEF] = ACTIONS(2433), - [anon_sym_cdef] = ACTIONS(2433), - [anon_sym_cpdef] = ACTIONS(2433), - [anon_sym_int] = ACTIONS(2433), - [anon_sym_double] = ACTIONS(2433), - [anon_sym_complex] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_signed] = ACTIONS(2433), - [anon_sym_unsigned] = ACTIONS(2433), - [anon_sym_char] = ACTIONS(2433), - [anon_sym_short] = ACTIONS(2433), - [anon_sym_long] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_volatile] = ACTIONS(2433), - [anon_sym_ctypedef] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_cppclass] = ACTIONS(2433), - [anon_sym_fused] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_packed] = ACTIONS(2433), - [anon_sym_inline] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_sizeof] = ACTIONS(2433), - [sym__dedent] = ACTIONS(2435), - [sym_string_start] = ACTIONS(2435), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [742] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(2239), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_else] = ACTIONS(813), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(813), - [anon_sym_by] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1603), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_list_splat_pattern] = STATE(2465), + [sym_primary_expression] = STATE(2275), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2435), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_print] = ACTIONS(2441), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_type_conversion] = ACTIONS(857), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_api] = ACTIONS(2441), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, [743] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(2239), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_from] = ACTIONS(833), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_in] = ACTIONS(830), - [anon_sym_by] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1603), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_identifier] = ACTIONS(2463), + [anon_sym_import] = ACTIONS(2463), + [anon_sym_cimport] = ACTIONS(2463), + [anon_sym_from] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_print] = ACTIONS(2463), + [anon_sym_assert] = ACTIONS(2463), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_del] = ACTIONS(2463), + [anon_sym_raise] = ACTIONS(2463), + [anon_sym_pass] = ACTIONS(2463), + [anon_sym_break] = ACTIONS(2463), + [anon_sym_continue] = ACTIONS(2463), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_match] = ACTIONS(2463), + [anon_sym_async] = ACTIONS(2463), + [anon_sym_for] = ACTIONS(2463), + [anon_sym_while] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2463), + [anon_sym_with] = ACTIONS(2463), + [anon_sym_def] = ACTIONS(2463), + [anon_sym_global] = ACTIONS(2463), + [anon_sym_nonlocal] = ACTIONS(2463), + [anon_sym_exec] = ACTIONS(2463), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_class] = ACTIONS(2463), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_AT] = ACTIONS(2465), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_PLUS] = ACTIONS(2465), + [anon_sym_not] = ACTIONS(2463), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_TILDE] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_lambda] = ACTIONS(2463), + [anon_sym_yield] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), + [anon_sym_None] = ACTIONS(2463), + [sym_integer] = ACTIONS(2463), + [sym_float] = ACTIONS(2465), + [anon_sym_await] = ACTIONS(2463), + [anon_sym_api] = ACTIONS(2463), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2463), + [anon_sym_include] = ACTIONS(2463), + [anon_sym_DEF] = ACTIONS(2463), + [anon_sym_IF] = ACTIONS(2463), + [anon_sym_cdef] = ACTIONS(2463), + [anon_sym_cpdef] = ACTIONS(2463), + [anon_sym_int] = ACTIONS(2463), + [anon_sym_double] = ACTIONS(2463), + [anon_sym_complex] = ACTIONS(2463), + [anon_sym_new] = ACTIONS(2463), + [anon_sym_signed] = ACTIONS(2463), + [anon_sym_unsigned] = ACTIONS(2463), + [anon_sym_char] = ACTIONS(2463), + [anon_sym_short] = ACTIONS(2463), + [anon_sym_long] = ACTIONS(2463), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_volatile] = ACTIONS(2463), + [anon_sym_ctypedef] = ACTIONS(2463), + [anon_sym_struct] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2463), + [anon_sym_enum] = ACTIONS(2463), + [anon_sym_cppclass] = ACTIONS(2463), + [anon_sym_fused] = ACTIONS(2463), + [anon_sym_public] = ACTIONS(2463), + [anon_sym_packed] = ACTIONS(2463), + [anon_sym_inline] = ACTIONS(2463), + [anon_sym_readonly] = ACTIONS(2463), + [anon_sym_sizeof] = ACTIONS(2463), + [sym__dedent] = ACTIONS(2465), + [sym_string_start] = ACTIONS(2465), }, [744] = { - [sym_list_splat_pattern] = STATE(2449), - [sym_primary_expression] = STATE(2198), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2441), - [anon_sym_print] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_async] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(813), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2459), - [anon_sym_api] = ACTIONS(2443), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4524), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5292), + [sym_c_function_argument_type] = STATE(5756), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_exec] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_api] = ACTIONS(2429), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [745] = { - [sym_identifier] = ACTIONS(2465), - [anon_sym_import] = ACTIONS(2465), - [anon_sym_cimport] = ACTIONS(2465), - [anon_sym_from] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_STAR] = ACTIONS(2467), - [anon_sym_print] = ACTIONS(2465), - [anon_sym_assert] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_del] = ACTIONS(2465), - [anon_sym_raise] = ACTIONS(2465), - [anon_sym_pass] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_with] = ACTIONS(2465), - [anon_sym_def] = ACTIONS(2465), - [anon_sym_global] = ACTIONS(2465), - [anon_sym_nonlocal] = ACTIONS(2465), - [anon_sym_exec] = ACTIONS(2465), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_AT] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_PLUS] = ACTIONS(2467), - [anon_sym_not] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2467), - [anon_sym_TILDE] = ACTIONS(2467), - [anon_sym_LT] = ACTIONS(2467), - [anon_sym_lambda] = ACTIONS(2465), - [anon_sym_yield] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2467), - [anon_sym_None] = ACTIONS(2465), - [sym_integer] = ACTIONS(2465), - [sym_float] = ACTIONS(2467), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_api] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2465), - [anon_sym_include] = ACTIONS(2465), - [anon_sym_DEF] = ACTIONS(2465), - [anon_sym_cdef] = ACTIONS(2465), - [anon_sym_cpdef] = ACTIONS(2465), - [anon_sym_int] = ACTIONS(2465), - [anon_sym_double] = ACTIONS(2465), - [anon_sym_complex] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_signed] = ACTIONS(2465), - [anon_sym_unsigned] = ACTIONS(2465), - [anon_sym_char] = ACTIONS(2465), - [anon_sym_short] = ACTIONS(2465), - [anon_sym_long] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_volatile] = ACTIONS(2465), - [anon_sym_ctypedef] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [anon_sym_cppclass] = ACTIONS(2465), - [anon_sym_fused] = ACTIONS(2465), - [anon_sym_public] = ACTIONS(2465), - [anon_sym_packed] = ACTIONS(2465), - [anon_sym_inline] = ACTIONS(2465), - [anon_sym_readonly] = ACTIONS(2465), - [anon_sym_sizeof] = ACTIONS(2465), - [sym__dedent] = ACTIONS(2467), - [sym_string_start] = ACTIONS(2467), + [sym_list_splat_pattern] = STATE(2465), + [sym_primary_expression] = STATE(2275), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2435), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_print] = ACTIONS(2441), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_type_conversion] = ACTIONS(857), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_api] = ACTIONS(2441), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, [746] = { - [sym_identifier] = ACTIONS(2469), - [anon_sym_import] = ACTIONS(2469), - [anon_sym_cimport] = ACTIONS(2469), - [anon_sym_from] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_print] = ACTIONS(2469), - [anon_sym_assert] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_del] = ACTIONS(2469), - [anon_sym_raise] = ACTIONS(2469), - [anon_sym_pass] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2469), - [anon_sym_async] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_with] = ACTIONS(2469), - [anon_sym_def] = ACTIONS(2469), - [anon_sym_global] = ACTIONS(2469), - [anon_sym_nonlocal] = ACTIONS(2469), - [anon_sym_exec] = ACTIONS(2469), - [anon_sym_type] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_AT] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_not] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2471), - [anon_sym_LT] = ACTIONS(2471), - [anon_sym_lambda] = ACTIONS(2469), - [anon_sym_yield] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2471), - [anon_sym_None] = ACTIONS(2469), - [sym_integer] = ACTIONS(2469), - [sym_float] = ACTIONS(2471), - [anon_sym_await] = ACTIONS(2469), - [anon_sym_api] = ACTIONS(2469), - [sym_true] = ACTIONS(2469), - [sym_false] = ACTIONS(2469), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2469), - [anon_sym_include] = ACTIONS(2469), - [anon_sym_DEF] = ACTIONS(2469), - [anon_sym_cdef] = ACTIONS(2469), - [anon_sym_cpdef] = ACTIONS(2469), - [anon_sym_int] = ACTIONS(2469), - [anon_sym_double] = ACTIONS(2469), - [anon_sym_complex] = ACTIONS(2469), - [anon_sym_new] = ACTIONS(2469), - [anon_sym_signed] = ACTIONS(2469), - [anon_sym_unsigned] = ACTIONS(2469), - [anon_sym_char] = ACTIONS(2469), - [anon_sym_short] = ACTIONS(2469), - [anon_sym_long] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_volatile] = ACTIONS(2469), - [anon_sym_ctypedef] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(2469), - [anon_sym_union] = ACTIONS(2469), - [anon_sym_enum] = ACTIONS(2469), - [anon_sym_cppclass] = ACTIONS(2469), - [anon_sym_fused] = ACTIONS(2469), - [anon_sym_public] = ACTIONS(2469), - [anon_sym_packed] = ACTIONS(2469), - [anon_sym_inline] = ACTIONS(2469), - [anon_sym_readonly] = ACTIONS(2469), - [anon_sym_sizeof] = ACTIONS(2469), - [sym__dedent] = ACTIONS(2471), - [sym_string_start] = ACTIONS(2471), + [sym_identifier] = ACTIONS(2467), + [anon_sym_import] = ACTIONS(2467), + [anon_sym_cimport] = ACTIONS(2467), + [anon_sym_from] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_print] = ACTIONS(2467), + [anon_sym_assert] = ACTIONS(2467), + [anon_sym_return] = ACTIONS(2467), + [anon_sym_del] = ACTIONS(2467), + [anon_sym_raise] = ACTIONS(2467), + [anon_sym_pass] = ACTIONS(2467), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_match] = ACTIONS(2467), + [anon_sym_async] = ACTIONS(2467), + [anon_sym_for] = ACTIONS(2467), + [anon_sym_while] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2467), + [anon_sym_with] = ACTIONS(2467), + [anon_sym_def] = ACTIONS(2467), + [anon_sym_global] = ACTIONS(2467), + [anon_sym_nonlocal] = ACTIONS(2467), + [anon_sym_exec] = ACTIONS(2467), + [anon_sym_type] = ACTIONS(2467), + [anon_sym_class] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_AT] = ACTIONS(2469), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_PLUS] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2467), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_TILDE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_lambda] = ACTIONS(2467), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), + [anon_sym_None] = ACTIONS(2467), + [sym_integer] = ACTIONS(2467), + [sym_float] = ACTIONS(2469), + [anon_sym_await] = ACTIONS(2467), + [anon_sym_api] = ACTIONS(2467), + [sym_true] = ACTIONS(2467), + [sym_false] = ACTIONS(2467), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2467), + [anon_sym_include] = ACTIONS(2467), + [anon_sym_DEF] = ACTIONS(2467), + [anon_sym_IF] = ACTIONS(2467), + [anon_sym_cdef] = ACTIONS(2467), + [anon_sym_cpdef] = ACTIONS(2467), + [anon_sym_int] = ACTIONS(2467), + [anon_sym_double] = ACTIONS(2467), + [anon_sym_complex] = ACTIONS(2467), + [anon_sym_new] = ACTIONS(2467), + [anon_sym_signed] = ACTIONS(2467), + [anon_sym_unsigned] = ACTIONS(2467), + [anon_sym_char] = ACTIONS(2467), + [anon_sym_short] = ACTIONS(2467), + [anon_sym_long] = ACTIONS(2467), + [anon_sym_const] = ACTIONS(2467), + [anon_sym_volatile] = ACTIONS(2467), + [anon_sym_ctypedef] = ACTIONS(2467), + [anon_sym_struct] = ACTIONS(2467), + [anon_sym_union] = ACTIONS(2467), + [anon_sym_enum] = ACTIONS(2467), + [anon_sym_cppclass] = ACTIONS(2467), + [anon_sym_fused] = ACTIONS(2467), + [anon_sym_public] = ACTIONS(2467), + [anon_sym_packed] = ACTIONS(2467), + [anon_sym_inline] = ACTIONS(2467), + [anon_sym_readonly] = ACTIONS(2467), + [anon_sym_sizeof] = ACTIONS(2467), + [sym__dedent] = ACTIONS(2469), + [sym_string_start] = ACTIONS(2469), }, [747] = { - [sym_identifier] = ACTIONS(2473), - [anon_sym_import] = ACTIONS(2473), - [anon_sym_cimport] = ACTIONS(2473), - [anon_sym_from] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_print] = ACTIONS(2473), - [anon_sym_assert] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_del] = ACTIONS(2473), - [anon_sym_raise] = ACTIONS(2473), - [anon_sym_pass] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_with] = ACTIONS(2473), - [anon_sym_def] = ACTIONS(2473), - [anon_sym_global] = ACTIONS(2473), - [anon_sym_nonlocal] = ACTIONS(2473), - [anon_sym_exec] = ACTIONS(2473), - [anon_sym_type] = ACTIONS(2473), - [anon_sym_class] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_AT] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_not] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_lambda] = ACTIONS(2473), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), - [anon_sym_None] = ACTIONS(2473), - [sym_integer] = ACTIONS(2473), - [sym_float] = ACTIONS(2475), - [anon_sym_await] = ACTIONS(2473), - [anon_sym_api] = ACTIONS(2473), - [sym_true] = ACTIONS(2473), - [sym_false] = ACTIONS(2473), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2473), - [anon_sym_include] = ACTIONS(2473), - [anon_sym_DEF] = ACTIONS(2473), - [anon_sym_cdef] = ACTIONS(2473), - [anon_sym_cpdef] = ACTIONS(2473), - [anon_sym_int] = ACTIONS(2473), - [anon_sym_double] = ACTIONS(2473), - [anon_sym_complex] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_signed] = ACTIONS(2473), - [anon_sym_unsigned] = ACTIONS(2473), - [anon_sym_char] = ACTIONS(2473), - [anon_sym_short] = ACTIONS(2473), - [anon_sym_long] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_volatile] = ACTIONS(2473), - [anon_sym_ctypedef] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2473), - [anon_sym_union] = ACTIONS(2473), - [anon_sym_enum] = ACTIONS(2473), - [anon_sym_cppclass] = ACTIONS(2473), - [anon_sym_fused] = ACTIONS(2473), - [anon_sym_public] = ACTIONS(2473), - [anon_sym_packed] = ACTIONS(2473), - [anon_sym_inline] = ACTIONS(2473), - [anon_sym_readonly] = ACTIONS(2473), - [anon_sym_sizeof] = ACTIONS(2473), - [sym__dedent] = ACTIONS(2475), - [sym_string_start] = ACTIONS(2475), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4422), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5437), + [sym_c_function_argument_type] = STATE(5700), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_exec] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_api] = ACTIONS(2429), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [748] = { - [sym_identifier] = ACTIONS(2477), - [anon_sym_import] = ACTIONS(2477), - [anon_sym_cimport] = ACTIONS(2477), - [anon_sym_from] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2479), - [anon_sym_print] = ACTIONS(2477), - [anon_sym_assert] = ACTIONS(2477), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_del] = ACTIONS(2477), - [anon_sym_raise] = ACTIONS(2477), - [anon_sym_pass] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_async] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_with] = ACTIONS(2477), - [anon_sym_def] = ACTIONS(2477), - [anon_sym_global] = ACTIONS(2477), - [anon_sym_nonlocal] = ACTIONS(2477), - [anon_sym_exec] = ACTIONS(2477), - [anon_sym_type] = ACTIONS(2477), - [anon_sym_class] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_not] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_lambda] = ACTIONS(2477), - [anon_sym_yield] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2479), - [anon_sym_None] = ACTIONS(2477), - [sym_integer] = ACTIONS(2477), - [sym_float] = ACTIONS(2479), - [anon_sym_await] = ACTIONS(2477), - [anon_sym_api] = ACTIONS(2477), - [sym_true] = ACTIONS(2477), - [sym_false] = ACTIONS(2477), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2477), - [anon_sym_include] = ACTIONS(2477), - [anon_sym_DEF] = ACTIONS(2477), - [anon_sym_cdef] = ACTIONS(2477), - [anon_sym_cpdef] = ACTIONS(2477), - [anon_sym_int] = ACTIONS(2477), - [anon_sym_double] = ACTIONS(2477), - [anon_sym_complex] = ACTIONS(2477), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_signed] = ACTIONS(2477), - [anon_sym_unsigned] = ACTIONS(2477), - [anon_sym_char] = ACTIONS(2477), - [anon_sym_short] = ACTIONS(2477), - [anon_sym_long] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [anon_sym_volatile] = ACTIONS(2477), - [anon_sym_ctypedef] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(2477), - [anon_sym_union] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2477), - [anon_sym_cppclass] = ACTIONS(2477), - [anon_sym_fused] = ACTIONS(2477), - [anon_sym_public] = ACTIONS(2477), - [anon_sym_packed] = ACTIONS(2477), - [anon_sym_inline] = ACTIONS(2477), - [anon_sym_readonly] = ACTIONS(2477), - [anon_sym_sizeof] = ACTIONS(2477), - [sym__dedent] = ACTIONS(2479), - [sym_string_start] = ACTIONS(2479), + [sym_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(3299), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_from] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1576), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_in] = ACTIONS(1366), + [anon_sym_by] = ACTIONS(1366), + [anon_sym_STAR_STAR] = ACTIONS(1576), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_not] = ACTIONS(1366), + [anon_sym_and] = ACTIONS(1366), + [anon_sym_or] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_LT_LT] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_is] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_LT_GT] = ACTIONS(1361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [749] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(3290), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(1329), - [anon_sym_COLON] = ACTIONS(1327), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1329), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_EQ] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1329), - [anon_sym_SLASH_SLASH] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_LT_LT] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_AT_EQ] = ACTIONS(1327), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1327), - [anon_sym_PERCENT_EQ] = ACTIONS(1327), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1327), - [anon_sym_GT_GT_EQ] = ACTIONS(1327), - [anon_sym_LT_LT_EQ] = ACTIONS(1327), - [anon_sym_AMP_EQ] = ACTIONS(1327), - [anon_sym_CARET_EQ] = ACTIONS(1327), - [anon_sym_PIPE_EQ] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1344), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym__newline] = ACTIONS(1327), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4568), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5403), + [sym_c_function_argument_type] = STATE(5617), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_exec] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_api] = ACTIONS(2429), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [750] = { - [sym_list_splat_pattern] = STATE(2421), - [sym_primary_expression] = STATE(2212), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_attribute] = STATE(2347), - [sym_subscript] = STATE(2347), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(1973), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_as] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_print] = ACTIONS(1979), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_COLON] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_async] = ACTIONS(1979), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1329), - [anon_sym_STAR_STAR] = ACTIONS(1530), - [anon_sym_exec] = ACTIONS(1979), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_and] = ACTIONS(1329), - [anon_sym_or] = ACTIONS(1329), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1530), - [anon_sym_SLASH_SLASH] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_is] = ACTIONS(1329), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_LT_EQ] = ACTIONS(1530), - [anon_sym_EQ_EQ] = ACTIONS(1530), - [anon_sym_BANG_EQ] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1530), - [anon_sym_GT] = ACTIONS(1329), - [anon_sym_LT_GT] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(1995), - [anon_sym_api] = ACTIONS(1979), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4487), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5353), + [sym_c_function_argument_type] = STATE(5865), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_exec] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_api] = ACTIONS(2429), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [751] = { - [sym_list_splat_pattern] = STATE(2546), - [sym_primary_expression] = STATE(2287), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_print] = ACTIONS(2487), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_async] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(813), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2487), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(818), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2495), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2503), - [anon_sym_api] = ACTIONS(2487), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4549), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5360), + [sym_c_function_argument_type] = STATE(5523), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_exec] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_api] = ACTIONS(2429), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [752] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(3290), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1327), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1530), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_RBRACK] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1530), - [anon_sym_SLASH_SLASH] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_is] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ] = ACTIONS(1327), - [anon_sym_BANG_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_LT_GT] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1344), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4414), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5485), + [sym_c_function_argument_type] = STATE(5805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_exec] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_api] = ACTIONS(2429), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [753] = { - [sym_list_splat_pattern] = STATE(2604), - [sym_primary_expression] = STATE(2269), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(1374), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_print] = ACTIONS(2409), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_match] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(813), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_api] = ACTIONS(2409), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4401), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5427), + [sym_c_function_argument_type] = STATE(5683), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_exec] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_api] = ACTIONS(2429), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [754] = { - [sym_list_splat_pattern] = STATE(2642), - [sym_primary_expression] = STATE(2425), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2509), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_print] = ACTIONS(2515), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_async] = ACTIONS(2515), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2515), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(811), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2515), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_identifier] = ACTIONS(2471), + [anon_sym_import] = ACTIONS(2471), + [anon_sym_cimport] = ACTIONS(2471), + [anon_sym_from] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_print] = ACTIONS(2471), + [anon_sym_assert] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_del] = ACTIONS(2471), + [anon_sym_raise] = ACTIONS(2471), + [anon_sym_pass] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_async] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_try] = ACTIONS(2471), + [anon_sym_with] = ACTIONS(2471), + [anon_sym_def] = ACTIONS(2471), + [anon_sym_global] = ACTIONS(2471), + [anon_sym_nonlocal] = ACTIONS(2471), + [anon_sym_exec] = ACTIONS(2471), + [anon_sym_type] = ACTIONS(2471), + [anon_sym_class] = ACTIONS(2471), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_AT] = ACTIONS(2473), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_not] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2473), + [anon_sym_TILDE] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_lambda] = ACTIONS(2471), + [anon_sym_yield] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2473), + [anon_sym_None] = ACTIONS(2471), + [sym_integer] = ACTIONS(2471), + [sym_float] = ACTIONS(2473), + [anon_sym_await] = ACTIONS(2471), + [anon_sym_api] = ACTIONS(2471), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2471), + [anon_sym_include] = ACTIONS(2471), + [anon_sym_DEF] = ACTIONS(2471), + [anon_sym_IF] = ACTIONS(2471), + [anon_sym_cdef] = ACTIONS(2471), + [anon_sym_cpdef] = ACTIONS(2471), + [anon_sym_int] = ACTIONS(2471), + [anon_sym_double] = ACTIONS(2471), + [anon_sym_complex] = ACTIONS(2471), + [anon_sym_new] = ACTIONS(2471), + [anon_sym_signed] = ACTIONS(2471), + [anon_sym_unsigned] = ACTIONS(2471), + [anon_sym_char] = ACTIONS(2471), + [anon_sym_short] = ACTIONS(2471), + [anon_sym_long] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [anon_sym_volatile] = ACTIONS(2471), + [anon_sym_ctypedef] = ACTIONS(2471), + [anon_sym_struct] = ACTIONS(2471), + [anon_sym_union] = ACTIONS(2471), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_cppclass] = ACTIONS(2471), + [anon_sym_fused] = ACTIONS(2471), + [anon_sym_public] = ACTIONS(2471), + [anon_sym_packed] = ACTIONS(2471), + [anon_sym_inline] = ACTIONS(2471), + [anon_sym_readonly] = ACTIONS(2471), + [anon_sym_sizeof] = ACTIONS(2471), + [sym__dedent] = ACTIONS(2473), + [sym_string_start] = ACTIONS(2473), }, [755] = { - [sym_list_splat_pattern] = STATE(2642), - [sym_primary_expression] = STATE(2425), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2509), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_as] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_print] = ACTIONS(2515), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_async] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1329), - [anon_sym_STAR_STAR] = ACTIONS(1530), - [anon_sym_exec] = ACTIONS(2515), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_and] = ACTIONS(1329), - [anon_sym_or] = ACTIONS(1329), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1530), - [anon_sym_SLASH_SLASH] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_is] = ACTIONS(1329), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_LT_EQ] = ACTIONS(1530), - [anon_sym_EQ_EQ] = ACTIONS(1530), - [anon_sym_BANG_EQ] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1530), - [anon_sym_GT] = ACTIONS(1329), - [anon_sym_LT_GT] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2515), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_list_splat_pattern] = STATE(2500), + [sym_primary_expression] = STATE(2286), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_print] = ACTIONS(2481), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2497), + [anon_sym_api] = ACTIONS(2481), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), }, [756] = { - [sym_list_splat_pattern] = STATE(2604), - [sym_primary_expression] = STATE(2269), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(1374), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_print] = ACTIONS(2409), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_match] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(813), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_api] = ACTIONS(2409), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), + [sym_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(3299), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1363), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_STAR_STAR] = ACTIONS(1363), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1363), + [anon_sym_SLASH_SLASH] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_LT_LT] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(1361), + [anon_sym_DASH_EQ] = ACTIONS(1361), + [anon_sym_STAR_EQ] = ACTIONS(1361), + [anon_sym_SLASH_EQ] = ACTIONS(1361), + [anon_sym_AT_EQ] = ACTIONS(1361), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1361), + [anon_sym_PERCENT_EQ] = ACTIONS(1361), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1361), + [anon_sym_GT_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_LT_EQ] = ACTIONS(1361), + [anon_sym_AMP_EQ] = ACTIONS(1361), + [anon_sym_CARET_EQ] = ACTIONS(1361), + [anon_sym_PIPE_EQ] = ACTIONS(1361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1311), + [sym__newline] = ACTIONS(1361), + [sym_string_start] = ACTIONS(1313), }, [757] = { - [sym_list_splat_pattern] = STATE(2546), - [sym_primary_expression] = STATE(2287), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_print] = ACTIONS(2487), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_async] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(813), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2487), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(811), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2495), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2503), - [anon_sym_api] = ACTIONS(2487), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_list_splat_pattern] = STATE(2465), + [sym_primary_expression] = STATE(2275), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2435), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_print] = ACTIONS(2441), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_type_conversion] = ACTIONS(857), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_api] = ACTIONS(2441), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, [758] = { - [sym_list_splat_pattern] = STATE(2449), - [sym_primary_expression] = STATE(2198), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2437), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2441), - [anon_sym_print] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_async] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(813), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2451), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2459), - [anon_sym_api] = ACTIONS(2443), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [sym_list_splat_pattern] = STATE(2465), + [sym_primary_expression] = STATE(2275), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2435), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_print] = ACTIONS(2441), + [anon_sym_GT_GT] = ACTIONS(1576), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_COLON] = ACTIONS(1366), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_in] = ACTIONS(1363), + [anon_sym_STAR_STAR] = ACTIONS(1576), + [anon_sym_exec] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_and] = ACTIONS(1363), + [anon_sym_or] = ACTIONS(1363), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_LT_LT] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_is] = ACTIONS(1363), + [anon_sym_LT] = ACTIONS(2449), + [anon_sym_LT_EQ] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1576), + [anon_sym_BANG_EQ] = ACTIONS(1576), + [anon_sym_GT_EQ] = ACTIONS(1576), + [anon_sym_GT] = ACTIONS(1363), + [anon_sym_LT_GT] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_api] = ACTIONS(2441), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, [759] = { - [sym_list_splat_pattern] = STATE(2703), - [sym_primary_expression] = STATE(2533), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_print] = ACTIONS(2541), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2541), - [anon_sym_EQ] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2543), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(2545), - [anon_sym_api] = ACTIONS(2541), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(3299), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(893), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_AT_EQ] = ACTIONS(893), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(893), + [anon_sym_PERCENT_EQ] = ACTIONS(893), + [anon_sym_STAR_STAR_EQ] = ACTIONS(893), + [anon_sym_GT_GT_EQ] = ACTIONS(893), + [anon_sym_LT_LT_EQ] = ACTIONS(893), + [anon_sym_AMP_EQ] = ACTIONS(893), + [anon_sym_CARET_EQ] = ACTIONS(893), + [anon_sym_PIPE_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1311), + [sym__newline] = ACTIONS(893), + [sym_string_start] = ACTIONS(1313), }, [760] = { - [sym_list_splat_pattern] = STATE(2703), - [sym_primary_expression] = STATE(2533), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_COMMA] = ACTIONS(1530), - [anon_sym_as] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_print] = ACTIONS(2541), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1329), - [anon_sym_STAR_STAR] = ACTIONS(1530), - [anon_sym_exec] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_and] = ACTIONS(1329), - [anon_sym_or] = ACTIONS(1329), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1530), - [anon_sym_SLASH_SLASH] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_is] = ACTIONS(1329), - [anon_sym_LT] = ACTIONS(2543), - [anon_sym_LT_EQ] = ACTIONS(1530), - [anon_sym_EQ_EQ] = ACTIONS(1530), - [anon_sym_BANG_EQ] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1530), - [anon_sym_GT] = ACTIONS(1329), - [anon_sym_LT_GT] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(2545), - [anon_sym_api] = ACTIONS(2541), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(2252), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_else] = ACTIONS(859), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_in] = ACTIONS(859), + [anon_sym_by] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [761] = { - [sym_list_splat_pattern] = STATE(2642), - [sym_primary_expression] = STATE(2425), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2509), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_print] = ACTIONS(2515), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_if] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_async] = ACTIONS(2515), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2515), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(811), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2523), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2531), - [anon_sym_api] = ACTIONS(2515), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(2252), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_from] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_in] = ACTIONS(876), + [anon_sym_by] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(2433), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [762] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(3290), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(1329), - [anon_sym_COLON] = ACTIONS(1327), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1329), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_EQ] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1329), - [anon_sym_SLASH_SLASH] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_LT_LT] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_AT_EQ] = ACTIONS(1327), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1327), - [anon_sym_PERCENT_EQ] = ACTIONS(1327), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1327), - [anon_sym_GT_GT_EQ] = ACTIONS(1327), - [anon_sym_LT_LT_EQ] = ACTIONS(1327), - [anon_sym_AMP_EQ] = ACTIONS(1327), - [anon_sym_CARET_EQ] = ACTIONS(1327), - [anon_sym_PIPE_EQ] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1344), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_list_splat_pattern] = STATE(2540), + [sym_primary_expression] = STATE(2322), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_print] = ACTIONS(2507), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_async] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2507), + [anon_sym_EQ] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2511), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(2513), + [anon_sym_api] = ACTIONS(2507), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [763] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(3290), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(813), - [anon_sym_COLON] = ACTIONS(847), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(813), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_SLASH_SLASH] = ACTIONS(813), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(847), - [anon_sym_STAR_EQ] = ACTIONS(847), - [anon_sym_SLASH_EQ] = ACTIONS(847), - [anon_sym_AT_EQ] = ACTIONS(847), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(847), - [anon_sym_PERCENT_EQ] = ACTIONS(847), - [anon_sym_STAR_STAR_EQ] = ACTIONS(847), - [anon_sym_GT_GT_EQ] = ACTIONS(847), - [anon_sym_LT_LT_EQ] = ACTIONS(847), - [anon_sym_AMP_EQ] = ACTIONS(847), - [anon_sym_CARET_EQ] = ACTIONS(847), - [anon_sym_PIPE_EQ] = ACTIONS(847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1344), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_list_splat_pattern] = STATE(2500), + [sym_primary_expression] = STATE(2286), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2475), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_print] = ACTIONS(2481), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2497), + [anon_sym_api] = ACTIONS(2481), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), }, [764] = { - [sym_list_splat_pattern] = STATE(2546), - [sym_primary_expression] = STATE(2287), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2481), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_print] = ACTIONS(2487), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_if] = ACTIONS(813), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_async] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(813), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2487), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(811), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2495), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2503), - [anon_sym_api] = ACTIONS(2487), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_list_splat_pattern] = STATE(2540), + [sym_primary_expression] = STATE(2322), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_RPAREN] = ACTIONS(864), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_print] = ACTIONS(2507), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_async] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2511), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(2513), + [anon_sym_api] = ACTIONS(2507), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [765] = { - [sym_list_splat_pattern] = STATE(2604), - [sym_primary_expression] = STATE(2269), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(1374), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_print] = ACTIONS(2409), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_if] = ACTIONS(813), - [anon_sym_match] = ACTIONS(2409), - [anon_sym_async] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(813), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_api] = ACTIONS(2409), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_list_splat_pattern] = STATE(2736), + [sym_primary_expression] = STATE(2472), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2515), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_print] = ACTIONS(2521), + [anon_sym_GT_GT] = ACTIONS(1576), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_in] = ACTIONS(1363), + [anon_sym_STAR_STAR] = ACTIONS(1576), + [anon_sym_exec] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_and] = ACTIONS(1363), + [anon_sym_or] = ACTIONS(1363), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_LT_LT] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_is] = ACTIONS(1363), + [anon_sym_LT] = ACTIONS(2529), + [anon_sym_LT_EQ] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1576), + [anon_sym_BANG_EQ] = ACTIONS(1576), + [anon_sym_GT_EQ] = ACTIONS(1576), + [anon_sym_GT] = ACTIONS(1363), + [anon_sym_LT_GT] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_api] = ACTIONS(2521), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [766] = { - [sym_list_splat_pattern] = STATE(2349), - [sym_primary_expression] = STATE(3290), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_as] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_print] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1530), - [anon_sym_exec] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_not] = ACTIONS(1332), - [anon_sym_and] = ACTIONS(1332), - [anon_sym_or] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1530), - [anon_sym_SLASH_SLASH] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_is] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ] = ACTIONS(1327), - [anon_sym_BANG_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_LT_GT] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1344), - [anon_sym_api] = ACTIONS(1336), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_list_splat_pattern] = STATE(2540), + [sym_primary_expression] = STATE(2322), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_print] = ACTIONS(2507), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_async] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2511), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(2513), + [anon_sym_api] = ACTIONS(2507), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [767] = { - [sym_list_splat_pattern] = STATE(2703), - [sym_primary_expression] = STATE(2533), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_print] = ACTIONS(2541), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_COLON_EQ] = ACTIONS(828), - [anon_sym_if] = ACTIONS(813), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2543), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(2545), - [anon_sym_api] = ACTIONS(2541), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(3299), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1576), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_in] = ACTIONS(1366), + [anon_sym_STAR_STAR] = ACTIONS(1576), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_not] = ACTIONS(1366), + [anon_sym_and] = ACTIONS(1366), + [anon_sym_or] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_LT_LT] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_is] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_LT_GT] = ACTIONS(1361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [768] = { - [sym_list_splat_pattern] = STATE(2703), - [sym_primary_expression] = STATE(2533), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_as] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_print] = ACTIONS(2541), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_if] = ACTIONS(813), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_in] = ACTIONS(813), - [anon_sym_STAR_STAR] = ACTIONS(811), - [anon_sym_exec] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(813), - [anon_sym_and] = ACTIONS(813), - [anon_sym_or] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(811), - [anon_sym_SLASH_SLASH] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_is] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(2543), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT_GT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(2545), - [anon_sym_api] = ACTIONS(2541), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_list_splat_pattern] = STATE(2610), + [sym_primary_expression] = STATE(2296), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2543), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_print] = ACTIONS(2549), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2549), + [anon_sym_async] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(857), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2557), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2565), + [anon_sym_api] = ACTIONS(2549), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [769] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym__patterns] = STATE(5563), - [sym_pattern] = STATE(4806), - [sym_tuple_pattern] = STATE(5319), - [sym_list_pattern] = STATE(5319), - [sym_list_splat_pattern] = STATE(2538), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3768), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2541), - [sym_subscript] = STATE(2541), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5686), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_RBRACK] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_list_splat_pattern] = STATE(2760), + [sym_primary_expression] = STATE(2668), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_print] = ACTIONS(2575), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2575), + [anon_sym_async] = ACTIONS(2575), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2579), + [anon_sym_api] = ACTIONS(2575), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [770] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym__patterns] = STATE(5695), - [sym_pattern] = STATE(4806), - [sym_tuple_pattern] = STATE(5319), - [sym_list_pattern] = STATE(5319), - [sym_list_splat_pattern] = STATE(2538), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3718), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2541), - [sym_subscript] = STATE(2541), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5604), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_RBRACK] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_list_splat_pattern] = STATE(2610), + [sym_primary_expression] = STATE(2296), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2543), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_print] = ACTIONS(2549), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2549), + [anon_sym_async] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(864), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2557), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2565), + [anon_sym_api] = ACTIONS(2549), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [771] = { - [sym_named_expression] = STATE(2468), - [sym__named_expression_lhs] = STATE(5491), - [sym_list_splat] = STATE(5104), - [sym_dictionary_splat] = STATE(4816), - [sym_parenthesized_list_splat] = STATE(5104), - [sym_list_splat_pattern] = STATE(2449), - [sym_as_pattern] = STATE(2468), - [sym_expression] = STATE(3644), - [sym_primary_expression] = STATE(2119), - [sym_not_operator] = STATE(2468), - [sym_boolean_operator] = STATE(2468), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_comparison_operator] = STATE(2468), - [sym_lambda] = STATE(2468), - [sym_yield] = STATE(5104), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_pair] = STATE(4152), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym__collection_elements] = STATE(5625), - [sym_conditional_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_new_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_lambda] = ACTIONS(2591), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2595), - [anon_sym_api] = ACTIONS(2581), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [sym_list_splat_pattern] = STATE(2760), + [sym_primary_expression] = STATE(2668), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_print] = ACTIONS(2575), + [anon_sym_GT_GT] = ACTIONS(1576), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(2575), + [anon_sym_async] = ACTIONS(2575), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_in] = ACTIONS(1363), + [anon_sym_STAR_STAR] = ACTIONS(1576), + [anon_sym_exec] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_and] = ACTIONS(1363), + [anon_sym_or] = ACTIONS(1363), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_LT_LT] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_is] = ACTIONS(1363), + [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1576), + [anon_sym_BANG_EQ] = ACTIONS(1576), + [anon_sym_GT_EQ] = ACTIONS(1576), + [anon_sym_GT] = ACTIONS(1363), + [anon_sym_LT_GT] = ACTIONS(1576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2579), + [anon_sym_api] = ACTIONS(2575), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [772] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym__patterns] = STATE(5511), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3696), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4886), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5637), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), + [sym_list_splat_pattern] = STATE(2736), + [sym_primary_expression] = STATE(2472), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2515), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_print] = ACTIONS(2521), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(857), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2529), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_api] = ACTIONS(2521), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [773] = { + [sym_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(3299), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1363), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_STAR_STAR] = ACTIONS(1363), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1363), + [anon_sym_SLASH_SLASH] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_LT_LT] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(1361), + [anon_sym_DASH_EQ] = ACTIONS(1361), + [anon_sym_STAR_EQ] = ACTIONS(1361), + [anon_sym_SLASH_EQ] = ACTIONS(1361), + [anon_sym_AT_EQ] = ACTIONS(1361), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1361), + [anon_sym_PERCENT_EQ] = ACTIONS(1361), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1361), + [anon_sym_GT_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_LT_EQ] = ACTIONS(1361), + [anon_sym_AMP_EQ] = ACTIONS(1361), + [anon_sym_CARET_EQ] = ACTIONS(1361), + [anon_sym_PIPE_EQ] = ACTIONS(1361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), - }, - [773] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym__patterns] = STATE(5563), - [sym_pattern] = STATE(4806), - [sym_tuple_pattern] = STATE(5319), - [sym_list_pattern] = STATE(5319), - [sym_list_splat_pattern] = STATE(2538), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3731), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2541), - [sym_subscript] = STATE(2541), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5765), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_RBRACK] = ACTIONS(2603), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [774] = { - [sym_named_expression] = STATE(2468), - [sym__named_expression_lhs] = STATE(5491), - [sym_list_splat] = STATE(5104), - [sym_dictionary_splat] = STATE(4866), - [sym_parenthesized_list_splat] = STATE(5104), - [sym_list_splat_pattern] = STATE(2449), - [sym_as_pattern] = STATE(2468), - [sym_expression] = STATE(3650), - [sym_primary_expression] = STATE(2119), - [sym_not_operator] = STATE(2468), - [sym_boolean_operator] = STATE(2468), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_comparison_operator] = STATE(2468), - [sym_lambda] = STATE(2468), - [sym_yield] = STATE(5104), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_pair] = STATE(4161), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym__collection_elements] = STATE(5688), - [sym_conditional_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_new_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_lambda] = ACTIONS(2591), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2595), - [anon_sym_api] = ACTIONS(2581), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [sym_list_splat_pattern] = STATE(2610), + [sym_primary_expression] = STATE(2296), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2543), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_print] = ACTIONS(2549), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_if] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2549), + [anon_sym_async] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(857), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2557), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2565), + [anon_sym_api] = ACTIONS(2549), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [775] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_expression_list] = STATE(5379), - [sym_pattern] = STATE(3324), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(4040), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5379), - [sym_augmented_assignment] = STATE(5379), - [sym_pattern_list] = STATE(3341), - [sym__right_hand_side] = STATE(5379), - [sym_yield] = STATE(5379), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [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_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(3299), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1576), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_in] = ACTIONS(1366), + [anon_sym_STAR_STAR] = ACTIONS(1576), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_not] = ACTIONS(1366), + [anon_sym_and] = ACTIONS(1366), + [anon_sym_or] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_LT_LT] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_is] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_LT_GT] = ACTIONS(1361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1378), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [776] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym__patterns] = STATE(5676), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3696), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4886), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5637), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), + [sym_list_splat_pattern] = STATE(2435), + [sym_primary_expression] = STATE(3299), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_print] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(893), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_STAR_STAR] = ACTIONS(859), + [anon_sym_exec] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_AT_EQ] = ACTIONS(893), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(893), + [anon_sym_PERCENT_EQ] = ACTIONS(893), + [anon_sym_STAR_STAR_EQ] = ACTIONS(893), + [anon_sym_GT_GT_EQ] = ACTIONS(893), + [anon_sym_LT_LT_EQ] = ACTIONS(893), + [anon_sym_AMP_EQ] = ACTIONS(893), + [anon_sym_CARET_EQ] = ACTIONS(893), + [anon_sym_PIPE_EQ] = ACTIONS(893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), + [anon_sym_api] = ACTIONS(1370), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [777] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym__patterns] = STATE(5570), - [sym_pattern] = STATE(4806), - [sym_tuple_pattern] = STATE(5319), - [sym_list_pattern] = STATE(5319), - [sym_list_splat_pattern] = STATE(2538), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3712), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2541), - [sym_subscript] = STATE(2541), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5749), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_RBRACK] = ACTIONS(2611), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_list_splat_pattern] = STATE(2736), + [sym_primary_expression] = STATE(2472), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2515), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_print] = ACTIONS(2521), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_if] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_match] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2521), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(857), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2529), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2537), + [anon_sym_api] = ACTIONS(2521), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [778] = { - [sym_named_expression] = STATE(2468), - [sym__named_expression_lhs] = STATE(5491), - [sym_list_splat] = STATE(5104), - [sym_dictionary_splat] = STATE(4897), - [sym_parenthesized_list_splat] = STATE(5104), - [sym_list_splat_pattern] = STATE(2449), - [sym_as_pattern] = STATE(2468), - [sym_expression] = STATE(3651), - [sym_primary_expression] = STATE(2119), - [sym_not_operator] = STATE(2468), - [sym_boolean_operator] = STATE(2468), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_comparison_operator] = STATE(2468), - [sym_lambda] = STATE(2468), - [sym_yield] = STATE(5104), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_pair] = STATE(4163), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym__collection_elements] = STATE(5804), - [sym_conditional_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_new_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_lambda] = ACTIONS(2591), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2595), - [anon_sym_api] = ACTIONS(2581), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [sym_list_splat_pattern] = STATE(2760), + [sym_primary_expression] = STATE(2668), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_print] = ACTIONS(2575), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_COLON_EQ] = ACTIONS(874), + [anon_sym_if] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2575), + [anon_sym_async] = ACTIONS(2575), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2579), + [anon_sym_api] = ACTIONS(2575), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [779] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5080), - [sym_parenthesized_list_splat] = STATE(5082), - [sym__patterns] = STATE(5618), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3771), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4814), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5542), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_list_splat_pattern] = STATE(2540), + [sym_primary_expression] = STATE(2322), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_print] = ACTIONS(2507), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_if] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_async] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2511), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(2513), + [anon_sym_api] = ACTIONS(2507), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [780] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym__patterns] = STATE(5618), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3696), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4886), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5637), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(2619), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_list_splat_pattern] = STATE(2760), + [sym_primary_expression] = STATE(2668), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_as] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_print] = ACTIONS(2575), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_if] = ACTIONS(859), + [anon_sym_match] = ACTIONS(2575), + [anon_sym_async] = ACTIONS(2575), + [anon_sym_in] = ACTIONS(859), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_exec] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_AT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_is] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(2577), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT_GT] = ACTIONS(857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2579), + [anon_sym_api] = ACTIONS(2575), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [781] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym__patterns] = STATE(5563), - [sym_pattern] = STATE(4806), - [sym_tuple_pattern] = STATE(5319), - [sym_list_pattern] = STATE(5319), - [sym_list_splat_pattern] = STATE(2538), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3712), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2541), - [sym_subscript] = STATE(2541), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5749), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_RBRACK] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym__patterns] = STATE(5664), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3789), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(5102), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5714), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [782] = { - [sym_named_expression] = STATE(2468), - [sym__named_expression_lhs] = STATE(5491), - [sym_list_splat] = STATE(5104), - [sym_dictionary_splat] = STATE(4924), - [sym_parenthesized_list_splat] = STATE(5104), - [sym_list_splat_pattern] = STATE(2449), - [sym_as_pattern] = STATE(2468), - [sym_expression] = STATE(3653), - [sym_primary_expression] = STATE(2119), - [sym_not_operator] = STATE(2468), - [sym_boolean_operator] = STATE(2468), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_comparison_operator] = STATE(2468), - [sym_lambda] = STATE(2468), - [sym_yield] = STATE(5104), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_pair] = STATE(4167), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym__collection_elements] = STATE(5605), - [sym_conditional_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_new_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_lambda] = ACTIONS(2591), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2595), - [anon_sym_api] = ACTIONS(2581), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym__patterns] = STATE(5698), + [sym_pattern] = STATE(5149), + [sym_tuple_pattern] = STATE(5297), + [sym_list_pattern] = STATE(5297), + [sym_list_splat_pattern] = STATE(2571), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3738), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2576), + [sym_subscript] = STATE(2576), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5547), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_exec] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2593), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [783] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym__patterns] = STATE(5570), - [sym_pattern] = STATE(4806), - [sym_tuple_pattern] = STATE(5319), - [sym_list_pattern] = STATE(5319), - [sym_list_splat_pattern] = STATE(2538), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3697), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2541), - [sym_subscript] = STATE(2541), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5585), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_RBRACK] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym__patterns] = STATE(5706), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3789), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(5102), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5714), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [784] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym__patterns] = STATE(5517), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3696), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4886), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5637), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym__patterns] = STATE(5698), + [sym_pattern] = STATE(5149), + [sym_tuple_pattern] = STATE(5297), + [sym_list_pattern] = STATE(5297), + [sym_list_splat_pattern] = STATE(2571), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3758), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2576), + [sym_subscript] = STATE(2576), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5750), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_exec] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2593), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [785] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym__patterns] = STATE(5563), - [sym_pattern] = STATE(4806), - [sym_tuple_pattern] = STATE(5319), - [sym_list_pattern] = STATE(5319), - [sym_list_splat_pattern] = STATE(2538), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3712), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2541), - [sym_subscript] = STATE(2541), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5749), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_RBRACK] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_named_expression] = STATE(2410), + [sym__named_expression_lhs] = STATE(5874), + [sym_list_splat] = STATE(4872), + [sym_dictionary_splat] = STATE(4948), + [sym_parenthesized_list_splat] = STATE(4872), + [sym_list_splat_pattern] = STATE(2500), + [sym_as_pattern] = STATE(2410), + [sym_expression] = STATE(3702), + [sym_primary_expression] = STATE(2161), + [sym_not_operator] = STATE(2410), + [sym_boolean_operator] = STATE(2410), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_comparison_operator] = STATE(2410), + [sym_lambda] = STATE(2410), + [sym_yield] = STATE(4872), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_pair] = STATE(4167), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym__collection_elements] = STATE(5789), + [sym_conditional_expression] = STATE(2410), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_new_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_lambda] = ACTIONS(2633), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2637), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), }, [786] = { - [sym_named_expression] = STATE(2468), - [sym__named_expression_lhs] = STATE(5491), - [sym_list_splat] = STATE(5104), - [sym_dictionary_splat] = STATE(4949), - [sym_parenthesized_list_splat] = STATE(5104), - [sym_list_splat_pattern] = STATE(2449), - [sym_as_pattern] = STATE(2468), - [sym_expression] = STATE(3655), - [sym_primary_expression] = STATE(2119), - [sym_not_operator] = STATE(2468), - [sym_boolean_operator] = STATE(2468), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_comparison_operator] = STATE(2468), - [sym_lambda] = STATE(2468), - [sym_yield] = STATE(5104), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_pair] = STATE(4171), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym__collection_elements] = STATE(5739), - [sym_conditional_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_new_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_lambda] = ACTIONS(2591), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2595), - [anon_sym_api] = ACTIONS(2581), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym__patterns] = STATE(5706), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3789), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(5102), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5714), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [787] = { - [sym_named_expression] = STATE(2468), - [sym__named_expression_lhs] = STATE(5491), - [sym_list_splat] = STATE(5104), - [sym_dictionary_splat] = STATE(5170), - [sym_parenthesized_list_splat] = STATE(5104), - [sym_list_splat_pattern] = STATE(2449), - [sym_as_pattern] = STATE(2468), - [sym_expression] = STATE(3678), - [sym_primary_expression] = STATE(2119), - [sym_not_operator] = STATE(2468), - [sym_boolean_operator] = STATE(2468), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_comparison_operator] = STATE(2468), - [sym_lambda] = STATE(2468), - [sym_yield] = STATE(5104), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_pair] = STATE(4099), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym__collection_elements] = STATE(5492), - [sym_conditional_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_new_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_lambda] = ACTIONS(2591), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2595), - [anon_sym_api] = ACTIONS(2581), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym__patterns] = STATE(5709), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3789), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(5102), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5714), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [788] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym__patterns] = STATE(5676), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3696), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4886), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5637), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym__patterns] = STATE(5795), + [sym_pattern] = STATE(5149), + [sym_tuple_pattern] = STATE(5297), + [sym_list_pattern] = STATE(5297), + [sym_list_splat_pattern] = STATE(2571), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3758), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2576), + [sym_subscript] = STATE(2576), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5750), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_exec] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2593), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [789] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym__patterns] = STATE(5695), - [sym_pattern] = STATE(4806), - [sym_tuple_pattern] = STATE(5319), - [sym_list_pattern] = STATE(5319), - [sym_list_splat_pattern] = STATE(2538), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3712), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2541), - [sym_subscript] = STATE(2541), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5749), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_RBRACK] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_named_expression] = STATE(2410), + [sym__named_expression_lhs] = STATE(5874), + [sym_list_splat] = STATE(4872), + [sym_dictionary_splat] = STATE(4984), + [sym_parenthesized_list_splat] = STATE(4872), + [sym_list_splat_pattern] = STATE(2500), + [sym_as_pattern] = STATE(2410), + [sym_expression] = STATE(3704), + [sym_primary_expression] = STATE(2161), + [sym_not_operator] = STATE(2410), + [sym_boolean_operator] = STATE(2410), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_comparison_operator] = STATE(2410), + [sym_lambda] = STATE(2410), + [sym_yield] = STATE(4872), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_pair] = STATE(4177), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym__collection_elements] = STATE(5647), + [sym_conditional_expression] = STATE(2410), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_new_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_lambda] = ACTIONS(2633), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2637), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), }, [790] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_expression_list] = STATE(5419), - [sym_pattern] = STATE(3324), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(4040), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5419), - [sym_augmented_assignment] = STATE(5419), - [sym_pattern_list] = STATE(3341), - [sym__right_hand_side] = STATE(5419), - [sym_yield] = STATE(5419), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym__patterns] = STATE(5748), + [sym_pattern] = STATE(5149), + [sym_tuple_pattern] = STATE(5297), + [sym_list_pattern] = STATE(5297), + [sym_list_splat_pattern] = STATE(2571), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3766), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2576), + [sym_subscript] = STATE(2576), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5870), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_exec] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2593), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), + }, + [791] = { + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym__patterns] = STATE(5569), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3789), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(5102), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5714), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), + }, + [792] = { + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym__patterns] = STATE(5795), + [sym_pattern] = STATE(5149), + [sym_tuple_pattern] = STATE(5297), + [sym_list_pattern] = STATE(5297), + [sym_list_splat_pattern] = STATE(2571), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3758), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2576), + [sym_subscript] = STATE(2576), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5750), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_exec] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2593), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), + }, + [793] = { + [sym_named_expression] = STATE(2410), + [sym__named_expression_lhs] = STATE(5874), + [sym_list_splat] = STATE(4872), + [sym_dictionary_splat] = STATE(5010), + [sym_parenthesized_list_splat] = STATE(4872), + [sym_list_splat_pattern] = STATE(2500), + [sym_as_pattern] = STATE(2410), + [sym_expression] = STATE(3707), + [sym_primary_expression] = STATE(2161), + [sym_not_operator] = STATE(2410), + [sym_boolean_operator] = STATE(2410), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_comparison_operator] = STATE(2410), + [sym_lambda] = STATE(2410), + [sym_yield] = STATE(4872), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_pair] = STATE(4180), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym__collection_elements] = STATE(5767), + [sym_conditional_expression] = STATE(2410), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_new_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_lambda] = ACTIONS(2633), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2637), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), + }, + [794] = { + [sym_named_expression] = STATE(2410), + [sym__named_expression_lhs] = STATE(5874), + [sym_list_splat] = STATE(4872), + [sym_dictionary_splat] = STATE(4860), + [sym_parenthesized_list_splat] = STATE(4872), + [sym_list_splat_pattern] = STATE(2500), + [sym_as_pattern] = STATE(2410), + [sym_expression] = STATE(3698), + [sym_primary_expression] = STATE(2161), + [sym_not_operator] = STATE(2410), + [sym_boolean_operator] = STATE(2410), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_comparison_operator] = STATE(2410), + [sym_lambda] = STATE(2410), + [sym_yield] = STATE(4872), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_pair] = STATE(4156), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym__collection_elements] = STATE(5598), + [sym_conditional_expression] = STATE(2410), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_new_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_lambda] = ACTIONS(2633), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2637), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), + }, + [795] = { + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym__patterns] = STATE(5795), + [sym_pattern] = STATE(5149), + [sym_tuple_pattern] = STATE(5297), + [sym_list_pattern] = STATE(5297), + [sym_list_splat_pattern] = STATE(2571), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3811), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2576), + [sym_subscript] = STATE(2576), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5685), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_exec] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2593), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), + }, + [796] = { + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym__patterns] = STATE(5795), + [sym_pattern] = STATE(5149), + [sym_tuple_pattern] = STATE(5297), + [sym_list_pattern] = STATE(5297), + [sym_list_splat_pattern] = STATE(2571), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3775), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2576), + [sym_subscript] = STATE(2576), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5736), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_exec] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2593), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), + }, + [797] = { + [sym_named_expression] = STATE(2410), + [sym__named_expression_lhs] = STATE(5874), + [sym_list_splat] = STATE(4872), + [sym_dictionary_splat] = STATE(4918), + [sym_parenthesized_list_splat] = STATE(4872), + [sym_list_splat_pattern] = STATE(2500), + [sym_as_pattern] = STATE(2410), + [sym_expression] = STATE(3699), + [sym_primary_expression] = STATE(2161), + [sym_not_operator] = STATE(2410), + [sym_boolean_operator] = STATE(2410), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_comparison_operator] = STATE(2410), + [sym_lambda] = STATE(2410), + [sym_yield] = STATE(4872), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_pair] = STATE(4162), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym__collection_elements] = STATE(5524), + [sym_conditional_expression] = STATE(2410), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_new_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_lambda] = ACTIONS(2633), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2637), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), + }, + [798] = { + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_expression_list] = STATE(5411), + [sym_pattern] = STATE(3431), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(4081), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5411), + [sym_augmented_assignment] = STATE(5411), + [sym_pattern_list] = STATE(3343), + [sym__right_hand_side] = STATE(5411), + [sym_yield] = STATE(5411), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [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_print] = ACTIONS(373), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_exec] = ACTIONS(373), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), @@ -102670,583 +104726,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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), - }, - [791] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym__patterns] = STATE(5676), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3746), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4858), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5724), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), - }, - [792] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym__patterns] = STATE(5676), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3746), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4858), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5724), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), - }, - [793] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym__patterns] = STATE(5601), - [sym_pattern] = STATE(4806), - [sym_tuple_pattern] = STATE(5319), - [sym_list_pattern] = STATE(5319), - [sym_list_splat_pattern] = STATE(2538), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3712), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2541), - [sym_subscript] = STATE(2541), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5749), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_RBRACK] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), - }, - [794] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym__patterns] = STATE(5636), - [sym_pattern] = STATE(4806), - [sym_tuple_pattern] = STATE(5319), - [sym_list_pattern] = STATE(5319), - [sym_list_splat_pattern] = STATE(2538), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3712), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2541), - [sym_subscript] = STATE(2541), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5749), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_RBRACK] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), - }, - [795] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym__patterns] = STATE(5563), - [sym_pattern] = STATE(4806), - [sym_tuple_pattern] = STATE(5319), - [sym_list_pattern] = STATE(5319), - [sym_list_splat_pattern] = STATE(2538), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3768), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2541), - [sym_subscript] = STATE(2541), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5686), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_RBRACK] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, - [796] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4809), - [sym_parenthesized_list_splat] = STATE(4970), - [sym__patterns] = STATE(5511), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3772), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(5026), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5545), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [799] = { + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym__patterns] = STATE(5706), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3814), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4911), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5521), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, - [797] = { - [sym_named_expression] = STATE(2468), - [sym__named_expression_lhs] = STATE(5491), - [sym_list_splat] = STATE(5104), - [sym_dictionary_splat] = STATE(5033), - [sym_parenthesized_list_splat] = STATE(5104), - [sym_list_splat_pattern] = STATE(2449), - [sym_as_pattern] = STATE(2468), - [sym_expression] = STATE(3630), - [sym_primary_expression] = STATE(2119), - [sym_not_operator] = STATE(2468), - [sym_boolean_operator] = STATE(2468), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_comparison_operator] = STATE(2468), - [sym_lambda] = STATE(2468), - [sym_yield] = STATE(5104), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_pair] = STATE(4182), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym__collection_elements] = STATE(5610), - [sym_conditional_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_new_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_lambda] = ACTIONS(2591), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2595), - [anon_sym_api] = ACTIONS(2581), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [800] = { + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym__patterns] = STATE(5861), + [sym_pattern] = STATE(5149), + [sym_tuple_pattern] = STATE(5297), + [sym_list_pattern] = STATE(5297), + [sym_list_splat_pattern] = STATE(2571), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3758), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2576), + [sym_subscript] = STATE(2576), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5750), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_exec] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2593), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, - [798] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_expression_list] = STATE(5332), - [sym_pattern] = STATE(3324), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(1937), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(4040), - [sym_primary_expression] = STATE(2121), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_assignment] = STATE(5332), - [sym_augmented_assignment] = STATE(5332), - [sym_pattern_list] = STATE(3341), - [sym__right_hand_side] = STATE(5332), - [sym_yield] = STATE(5332), - [sym_attribute] = STATE(1951), - [sym_subscript] = STATE(1951), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), + [801] = { + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_expression_list] = STATE(5283), + [sym_pattern] = STATE(3431), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(4081), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5283), + [sym_augmented_assignment] = STATE(5283), + [sym_pattern_list] = STATE(3343), + [sym__right_hand_side] = STATE(5283), + [sym_yield] = STATE(5283), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), [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_print] = ACTIONS(373), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_exec] = ACTIONS(373), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), @@ -103262,4134 +104948,3317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), [anon_sym_await] = ACTIONS(85), - [anon_sym_api] = ACTIONS(363), + [anon_sym_api] = ACTIONS(373), [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), - }, - [799] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym__patterns] = STATE(5676), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3716), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4895), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5740), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), - }, - [800] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym__patterns] = STATE(5563), - [sym_pattern] = STATE(4806), - [sym_tuple_pattern] = STATE(5319), - [sym_list_pattern] = STATE(5319), - [sym_list_splat_pattern] = STATE(2538), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3712), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2541), - [sym_subscript] = STATE(2541), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5749), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2553), - [anon_sym_match] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_exec] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2555), - [anon_sym_RBRACK] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2567), - [anon_sym_api] = ACTIONS(2553), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), - }, - [801] = { - [sym_named_expression] = STATE(2468), - [sym__named_expression_lhs] = STATE(5491), - [sym_list_splat] = STATE(5104), - [sym_dictionary_splat] = STATE(4903), - [sym_parenthesized_list_splat] = STATE(5104), - [sym_list_splat_pattern] = STATE(2449), - [sym_as_pattern] = STATE(2468), - [sym_expression] = STATE(3639), - [sym_primary_expression] = STATE(2119), - [sym_not_operator] = STATE(2468), - [sym_boolean_operator] = STATE(2468), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_comparison_operator] = STATE(2468), - [sym_lambda] = STATE(2468), - [sym_yield] = STATE(5104), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_pair] = STATE(4108), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym__collection_elements] = STATE(5522), - [sym_conditional_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_new_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_COMMA] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_lambda] = ACTIONS(2591), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2595), - [anon_sym_api] = ACTIONS(2581), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, [802] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym__patterns] = STATE(5676), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3696), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4886), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5637), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym__patterns] = STATE(5761), + [sym_pattern] = STATE(5149), + [sym_tuple_pattern] = STATE(5297), + [sym_list_pattern] = STATE(5297), + [sym_list_splat_pattern] = STATE(2571), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3758), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2576), + [sym_subscript] = STATE(2576), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5750), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_exec] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2593), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [803] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym__patterns] = STATE(5538), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(2582), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3696), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4886), - [sym_attribute] = STATE(2623), - [sym_subscript] = STATE(2623), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5637), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(2667), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_exec] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1378), - [anon_sym_api] = ACTIONS(1354), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2410), + [sym__named_expression_lhs] = STATE(5874), + [sym_list_splat] = STATE(4872), + [sym_dictionary_splat] = STATE(4809), + [sym_parenthesized_list_splat] = STATE(4872), + [sym_list_splat_pattern] = STATE(2500), + [sym_as_pattern] = STATE(2410), + [sym_expression] = STATE(3684), + [sym_primary_expression] = STATE(2161), + [sym_not_operator] = STATE(2410), + [sym_boolean_operator] = STATE(2410), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_comparison_operator] = STATE(2410), + [sym_lambda] = STATE(2410), + [sym_yield] = STATE(4872), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_pair] = STATE(4258), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym__collection_elements] = STATE(5575), + [sym_conditional_expression] = STATE(2410), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_new_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_lambda] = ACTIONS(2633), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2637), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), }, [804] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(3883), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_type] = STATE(4360), - [sym_splat_type] = STATE(4473), - [sym_generic_type] = STATE(4473), - [sym_union_type] = STATE(4473), - [sym_constrained_type] = STATE(4473), - [sym_member_type] = STATE(4473), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_STAR_STAR] = ACTIONS(2675), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym__patterns] = STATE(5795), + [sym_pattern] = STATE(5149), + [sym_tuple_pattern] = STATE(5297), + [sym_list_pattern] = STATE(5297), + [sym_list_splat_pattern] = STATE(2571), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3811), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2576), + [sym_subscript] = STATE(2576), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5685), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_exec] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2593), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [805] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(3883), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_type] = STATE(4360), - [sym_splat_type] = STATE(4473), - [sym_generic_type] = STATE(4473), - [sym_union_type] = STATE(4473), - [sym_constrained_type] = STATE(4473), - [sym_member_type] = STATE(4473), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_STAR_STAR] = ACTIONS(2675), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym__patterns] = STATE(5706), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3778), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4944), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5729), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [806] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(3883), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_type] = STATE(4360), - [sym_splat_type] = STATE(4473), - [sym_generic_type] = STATE(4473), - [sym_union_type] = STATE(4473), - [sym_constrained_type] = STATE(4473), - [sym_member_type] = STATE(4473), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_STAR_STAR] = ACTIONS(2675), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_expression_list] = STATE(5426), + [sym_pattern] = STATE(3431), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2000), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(4081), + [sym_primary_expression] = STATE(2170), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_assignment] = STATE(5426), + [sym_augmented_assignment] = STATE(5426), + [sym_pattern_list] = STATE(3343), + [sym__right_hand_side] = STATE(5426), + [sym_yield] = STATE(5426), + [sym_attribute] = STATE(1982), + [sym_subscript] = STATE(1982), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(373), + [anon_sym_match] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_exec] = ACTIONS(373), + [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(373), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, [807] = { - [sym_named_expression] = STATE(3906), - [sym__named_expression_lhs] = STATE(5700), - [sym_expression_list] = STATE(4420), - [sym_pattern] = STATE(5237), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(2469), - [sym_as_pattern] = STATE(3906), - [sym_expression] = STATE(3795), - [sym_primary_expression] = STATE(2117), - [sym_not_operator] = STATE(3906), - [sym_boolean_operator] = STATE(3906), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_comparison_operator] = STATE(3906), - [sym_lambda] = STATE(3906), - [sym_pattern_list] = STATE(4420), - [sym_yield] = STATE(4420), - [sym_attribute] = STATE(2474), - [sym_subscript] = STATE(2474), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_conditional_expression] = STATE(3906), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym__f_expression] = STATE(4420), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_new_expression] = STATE(3906), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_print] = ACTIONS(2699), - [anon_sym_match] = ACTIONS(2699), - [anon_sym_async] = ACTIONS(2699), - [anon_sym_exec] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_lambda] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(2709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(2711), - [anon_sym_api] = ACTIONS(2699), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), + [sym_named_expression] = STATE(2410), + [sym__named_expression_lhs] = STATE(5874), + [sym_list_splat] = STATE(4872), + [sym_dictionary_splat] = STATE(4859), + [sym_parenthesized_list_splat] = STATE(4872), + [sym_list_splat_pattern] = STATE(2500), + [sym_as_pattern] = STATE(2410), + [sym_expression] = STATE(3665), + [sym_primary_expression] = STATE(2161), + [sym_not_operator] = STATE(2410), + [sym_boolean_operator] = STATE(2410), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_comparison_operator] = STATE(2410), + [sym_lambda] = STATE(2410), + [sym_yield] = STATE(4872), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_pair] = STATE(4157), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym__collection_elements] = STATE(5810), + [sym_conditional_expression] = STATE(2410), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_new_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_lambda] = ACTIONS(2633), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2637), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), }, [808] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(3883), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_type] = STATE(4360), - [sym_splat_type] = STATE(4473), - [sym_generic_type] = STATE(4473), - [sym_union_type] = STATE(4473), - [sym_constrained_type] = STATE(4473), - [sym_member_type] = STATE(4473), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_STAR_STAR] = ACTIONS(2675), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym__patterns] = STATE(5795), + [sym_pattern] = STATE(5149), + [sym_tuple_pattern] = STATE(5297), + [sym_list_pattern] = STATE(5297), + [sym_list_splat_pattern] = STATE(2571), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3758), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2576), + [sym_subscript] = STATE(2576), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5750), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_exec] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2593), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [809] = { - [sym_named_expression] = STATE(3906), - [sym__named_expression_lhs] = STATE(5700), - [sym_expression_list] = STATE(4460), - [sym_pattern] = STATE(5237), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(2469), - [sym_as_pattern] = STATE(3906), - [sym_expression] = STATE(3795), - [sym_primary_expression] = STATE(2117), - [sym_not_operator] = STATE(3906), - [sym_boolean_operator] = STATE(3906), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_comparison_operator] = STATE(3906), - [sym_lambda] = STATE(3906), - [sym_pattern_list] = STATE(4460), - [sym_yield] = STATE(4460), - [sym_attribute] = STATE(2474), - [sym_subscript] = STATE(2474), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_conditional_expression] = STATE(3906), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym__f_expression] = STATE(4460), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_new_expression] = STATE(3906), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_print] = ACTIONS(2699), - [anon_sym_match] = ACTIONS(2699), - [anon_sym_async] = ACTIONS(2699), - [anon_sym_exec] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_lambda] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(2709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(2711), - [anon_sym_api] = ACTIONS(2699), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), + [sym_named_expression] = STATE(2410), + [sym__named_expression_lhs] = STATE(5874), + [sym_list_splat] = STATE(4872), + [sym_dictionary_splat] = STATE(5109), + [sym_parenthesized_list_splat] = STATE(4872), + [sym_list_splat_pattern] = STATE(2500), + [sym_as_pattern] = STATE(2410), + [sym_expression] = STATE(3693), + [sym_primary_expression] = STATE(2161), + [sym_not_operator] = STATE(2410), + [sym_boolean_operator] = STATE(2410), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_comparison_operator] = STATE(2410), + [sym_lambda] = STATE(2410), + [sym_yield] = STATE(4872), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_pair] = STATE(4260), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym__collection_elements] = STATE(5778), + [sym_conditional_expression] = STATE(2410), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_new_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_lambda] = ACTIONS(2633), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2637), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), }, [810] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(3883), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_type] = STATE(4360), - [sym_splat_type] = STATE(4473), - [sym_generic_type] = STATE(4473), - [sym_union_type] = STATE(4473), - [sym_constrained_type] = STATE(4473), - [sym_member_type] = STATE(4473), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_STAR_STAR] = ACTIONS(2675), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym__patterns] = STATE(5706), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3789), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(5102), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5714), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [811] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(3883), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_type] = STATE(4360), - [sym_splat_type] = STATE(4473), - [sym_generic_type] = STATE(4473), - [sym_union_type] = STATE(4473), - [sym_constrained_type] = STATE(4473), - [sym_member_type] = STATE(4473), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_STAR_STAR] = ACTIONS(2675), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4886), + [sym_parenthesized_list_splat] = STATE(4888), + [sym__patterns] = STATE(5709), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3736), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4857), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5746), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [812] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4215), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(5077), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(5252), + [sym_parenthesized_list_splat] = STATE(5257), + [sym__patterns] = STATE(5595), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4784), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5773), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [813] = { - [sym_else_clause] = STATE(1156), - [sym_except_clause] = STATE(934), - [sym_finally_clause] = STATE(1513), - [aux_sym_try_statement_repeat1] = STATE(934), - [sym_identifier] = ACTIONS(2727), - [anon_sym_import] = ACTIONS(2727), - [anon_sym_cimport] = ACTIONS(2727), - [anon_sym_from] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_assert] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_del] = ACTIONS(2727), - [anon_sym_raise] = ACTIONS(2727), - [anon_sym_pass] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_except] = ACTIONS(2733), - [anon_sym_finally] = ACTIONS(2735), - [anon_sym_with] = ACTIONS(2727), - [anon_sym_def] = ACTIONS(2727), - [anon_sym_global] = ACTIONS(2727), - [anon_sym_nonlocal] = ACTIONS(2727), - [anon_sym_exec] = ACTIONS(2727), - [anon_sym_type] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_lambda] = ACTIONS(2727), - [anon_sym_yield] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_None] = ACTIONS(2727), - [sym_integer] = ACTIONS(2727), - [sym_float] = ACTIONS(2729), - [anon_sym_await] = ACTIONS(2727), - [anon_sym_api] = ACTIONS(2727), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2727), - [anon_sym_include] = ACTIONS(2727), - [anon_sym_DEF] = ACTIONS(2727), - [anon_sym_cdef] = ACTIONS(2727), - [anon_sym_cpdef] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_ctypedef] = ACTIONS(2727), - [anon_sym_public] = ACTIONS(2727), - [anon_sym_packed] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym_readonly] = ACTIONS(2727), - [anon_sym_sizeof] = ACTIONS(2727), - [sym__dedent] = ACTIONS(2729), - [sym_string_start] = ACTIONS(2729), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym__patterns] = STATE(5706), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3814), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4911), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5521), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [814] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4875), - [sym_dictionary_splat] = STATE(4875), - [sym_parenthesized_list_splat] = STATE(4876), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3710), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_keyword_argument] = STATE(4875), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_print] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(2747), - [anon_sym_api] = ACTIONS(2745), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym__patterns] = STATE(5595), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(2578), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3789), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(5102), + [sym_attribute] = STATE(2579), + [sym_subscript] = STATE(2579), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5714), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2581), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_exec] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_api] = ACTIONS(1388), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [815] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4215), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(5212), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym__patterns] = STATE(5748), + [sym_pattern] = STATE(5149), + [sym_tuple_pattern] = STATE(5297), + [sym_list_pattern] = STATE(5297), + [sym_list_splat_pattern] = STATE(2571), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3758), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2576), + [sym_subscript] = STATE(2576), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5750), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2593), + [anon_sym_match] = ACTIONS(2593), + [anon_sym_async] = ACTIONS(2593), + [anon_sym_exec] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_api] = ACTIONS(2593), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [816] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3930), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(4356), - [sym_splat_type] = STATE(4280), - [sym_generic_type] = STATE(4280), - [sym_union_type] = STATE(4280), - [sym_constrained_type] = STATE(4280), - [sym_member_type] = STATE(4280), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_print] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_STAR_STAR] = ACTIONS(2753), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(1319), - [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(849), - [anon_sym_api] = ACTIONS(824), - [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), + [sym_else_clause] = STATE(1101), + [sym_except_group_clause] = STATE(884), + [sym_finally_clause] = STATE(1565), + [aux_sym_try_statement_repeat2] = STATE(884), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_import] = ACTIONS(2705), + [anon_sym_cimport] = ACTIONS(2705), + [anon_sym_from] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_print] = ACTIONS(2705), + [anon_sym_assert] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_del] = ACTIONS(2705), + [anon_sym_raise] = ACTIONS(2705), + [anon_sym_pass] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_except_STAR] = ACTIONS(2709), + [anon_sym_finally] = ACTIONS(2711), + [anon_sym_with] = ACTIONS(2705), + [anon_sym_def] = ACTIONS(2705), + [anon_sym_global] = ACTIONS(2705), + [anon_sym_nonlocal] = ACTIONS(2705), + [anon_sym_exec] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_AT] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_not] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_lambda] = ACTIONS(2705), + [anon_sym_yield] = ACTIONS(2705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2703), + [anon_sym_None] = ACTIONS(2705), + [sym_integer] = ACTIONS(2705), + [sym_float] = ACTIONS(2703), + [anon_sym_await] = ACTIONS(2705), + [anon_sym_api] = ACTIONS(2705), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2705), + [anon_sym_include] = ACTIONS(2705), + [anon_sym_DEF] = ACTIONS(2705), + [anon_sym_IF] = ACTIONS(2705), + [anon_sym_cdef] = ACTIONS(2705), + [anon_sym_cpdef] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_ctypedef] = ACTIONS(2705), + [anon_sym_public] = ACTIONS(2705), + [anon_sym_packed] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_readonly] = ACTIONS(2705), + [anon_sym_sizeof] = ACTIONS(2705), + [sym_string_start] = ACTIONS(2703), }, [817] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(3977), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(4604), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(2757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_else_clause] = STATE(1101), + [sym_except_clause] = STATE(883), + [sym_finally_clause] = STATE(1565), + [aux_sym_try_statement_repeat1] = STATE(883), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_import] = ACTIONS(2705), + [anon_sym_cimport] = ACTIONS(2705), + [anon_sym_from] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_print] = ACTIONS(2705), + [anon_sym_assert] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_del] = ACTIONS(2705), + [anon_sym_raise] = ACTIONS(2705), + [anon_sym_pass] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_except] = ACTIONS(2713), + [anon_sym_finally] = ACTIONS(2711), + [anon_sym_with] = ACTIONS(2705), + [anon_sym_def] = ACTIONS(2705), + [anon_sym_global] = ACTIONS(2705), + [anon_sym_nonlocal] = ACTIONS(2705), + [anon_sym_exec] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_AT] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_not] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_lambda] = ACTIONS(2705), + [anon_sym_yield] = ACTIONS(2705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2703), + [anon_sym_None] = ACTIONS(2705), + [sym_integer] = ACTIONS(2705), + [sym_float] = ACTIONS(2703), + [anon_sym_await] = ACTIONS(2705), + [anon_sym_api] = ACTIONS(2705), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2705), + [anon_sym_include] = ACTIONS(2705), + [anon_sym_DEF] = ACTIONS(2705), + [anon_sym_IF] = ACTIONS(2705), + [anon_sym_cdef] = ACTIONS(2705), + [anon_sym_cpdef] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_ctypedef] = ACTIONS(2705), + [anon_sym_public] = ACTIONS(2705), + [anon_sym_packed] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_readonly] = ACTIONS(2705), + [anon_sym_sizeof] = ACTIONS(2705), + [sym_string_start] = ACTIONS(2703), }, [818] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5038), - [sym_dictionary_splat] = STATE(5038), - [sym_parenthesized_list_splat] = STATE(5047), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3702), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_keyword_argument] = STATE(5038), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_print] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(2747), - [anon_sym_api] = ACTIONS(2745), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_type] = STATE(4436), + [sym_splat_type] = STATE(4492), + [sym_generic_type] = STATE(4492), + [sym_union_type] = STATE(4492), + [sym_constrained_type] = STATE(4492), + [sym_member_type] = STATE(4492), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_STAR_STAR] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [819] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4930), - [sym_dictionary_splat] = STATE(4930), - [sym_parenthesized_list_splat] = STATE(4931), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_keyword_argument] = STATE(4930), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2763), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_print] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(2747), - [anon_sym_api] = ACTIONS(2745), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_else_clause] = STATE(1154), + [sym_except_group_clause] = STATE(908), + [sym_finally_clause] = STATE(1446), + [aux_sym_try_statement_repeat2] = STATE(908), + [sym_identifier] = ACTIONS(2735), + [anon_sym_import] = ACTIONS(2735), + [anon_sym_cimport] = ACTIONS(2735), + [anon_sym_from] = ACTIONS(2735), + [anon_sym_LPAREN] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2737), + [anon_sym_print] = ACTIONS(2735), + [anon_sym_assert] = ACTIONS(2735), + [anon_sym_return] = ACTIONS(2735), + [anon_sym_del] = ACTIONS(2735), + [anon_sym_raise] = ACTIONS(2735), + [anon_sym_pass] = ACTIONS(2735), + [anon_sym_break] = ACTIONS(2735), + [anon_sym_continue] = ACTIONS(2735), + [anon_sym_if] = ACTIONS(2735), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(2735), + [anon_sym_async] = ACTIONS(2735), + [anon_sym_for] = ACTIONS(2735), + [anon_sym_while] = ACTIONS(2735), + [anon_sym_try] = ACTIONS(2735), + [anon_sym_except_STAR] = ACTIONS(2741), + [anon_sym_finally] = ACTIONS(2743), + [anon_sym_with] = ACTIONS(2735), + [anon_sym_def] = ACTIONS(2735), + [anon_sym_global] = ACTIONS(2735), + [anon_sym_nonlocal] = ACTIONS(2735), + [anon_sym_exec] = ACTIONS(2735), + [anon_sym_type] = ACTIONS(2735), + [anon_sym_class] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_AT] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2737), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_lambda] = ACTIONS(2735), + [anon_sym_yield] = ACTIONS(2735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2737), + [anon_sym_None] = ACTIONS(2735), + [sym_integer] = ACTIONS(2735), + [sym_float] = ACTIONS(2737), + [anon_sym_await] = ACTIONS(2735), + [anon_sym_api] = ACTIONS(2735), + [sym_true] = ACTIONS(2735), + [sym_false] = ACTIONS(2735), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2735), + [anon_sym_include] = ACTIONS(2735), + [anon_sym_DEF] = ACTIONS(2735), + [anon_sym_IF] = ACTIONS(2735), + [anon_sym_cdef] = ACTIONS(2735), + [anon_sym_cpdef] = ACTIONS(2735), + [anon_sym_new] = ACTIONS(2735), + [anon_sym_ctypedef] = ACTIONS(2735), + [anon_sym_public] = ACTIONS(2735), + [anon_sym_packed] = ACTIONS(2735), + [anon_sym_inline] = ACTIONS(2735), + [anon_sym_readonly] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(2735), + [sym__dedent] = ACTIONS(2737), + [sym_string_start] = ACTIONS(2737), }, [820] = { - [sym_else_clause] = STATE(1156), - [sym_except_group_clause] = STATE(936), - [sym_finally_clause] = STATE(1513), - [aux_sym_try_statement_repeat2] = STATE(936), - [sym_identifier] = ACTIONS(2727), - [anon_sym_import] = ACTIONS(2727), - [anon_sym_cimport] = ACTIONS(2727), - [anon_sym_from] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_assert] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_del] = ACTIONS(2727), - [anon_sym_raise] = ACTIONS(2727), - [anon_sym_pass] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_except_STAR] = ACTIONS(2765), - [anon_sym_finally] = ACTIONS(2735), - [anon_sym_with] = ACTIONS(2727), - [anon_sym_def] = ACTIONS(2727), - [anon_sym_global] = ACTIONS(2727), - [anon_sym_nonlocal] = ACTIONS(2727), - [anon_sym_exec] = ACTIONS(2727), - [anon_sym_type] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_lambda] = ACTIONS(2727), - [anon_sym_yield] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_None] = ACTIONS(2727), - [sym_integer] = ACTIONS(2727), - [sym_float] = ACTIONS(2729), - [anon_sym_await] = ACTIONS(2727), - [anon_sym_api] = ACTIONS(2727), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2727), - [anon_sym_include] = ACTIONS(2727), - [anon_sym_DEF] = ACTIONS(2727), - [anon_sym_cdef] = ACTIONS(2727), - [anon_sym_cpdef] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_ctypedef] = ACTIONS(2727), - [anon_sym_public] = ACTIONS(2727), - [anon_sym_packed] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym_readonly] = ACTIONS(2727), - [anon_sym_sizeof] = ACTIONS(2727), - [sym__dedent] = ACTIONS(2729), - [sym_string_start] = ACTIONS(2729), + [sym_else_clause] = STATE(1077), + [sym_except_group_clause] = STATE(884), + [sym_finally_clause] = STATE(1564), + [aux_sym_try_statement_repeat2] = STATE(884), + [ts_builtin_sym_end] = ACTIONS(2737), + [sym_identifier] = ACTIONS(2735), + [anon_sym_import] = ACTIONS(2735), + [anon_sym_cimport] = ACTIONS(2735), + [anon_sym_from] = ACTIONS(2735), + [anon_sym_LPAREN] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2737), + [anon_sym_print] = ACTIONS(2735), + [anon_sym_assert] = ACTIONS(2735), + [anon_sym_return] = ACTIONS(2735), + [anon_sym_del] = ACTIONS(2735), + [anon_sym_raise] = ACTIONS(2735), + [anon_sym_pass] = ACTIONS(2735), + [anon_sym_break] = ACTIONS(2735), + [anon_sym_continue] = ACTIONS(2735), + [anon_sym_if] = ACTIONS(2735), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2735), + [anon_sym_async] = ACTIONS(2735), + [anon_sym_for] = ACTIONS(2735), + [anon_sym_while] = ACTIONS(2735), + [anon_sym_try] = ACTIONS(2735), + [anon_sym_except_STAR] = ACTIONS(2709), + [anon_sym_finally] = ACTIONS(2711), + [anon_sym_with] = ACTIONS(2735), + [anon_sym_def] = ACTIONS(2735), + [anon_sym_global] = ACTIONS(2735), + [anon_sym_nonlocal] = ACTIONS(2735), + [anon_sym_exec] = ACTIONS(2735), + [anon_sym_type] = ACTIONS(2735), + [anon_sym_class] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_AT] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2737), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_lambda] = ACTIONS(2735), + [anon_sym_yield] = ACTIONS(2735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2737), + [anon_sym_None] = ACTIONS(2735), + [sym_integer] = ACTIONS(2735), + [sym_float] = ACTIONS(2737), + [anon_sym_await] = ACTIONS(2735), + [anon_sym_api] = ACTIONS(2735), + [sym_true] = ACTIONS(2735), + [sym_false] = ACTIONS(2735), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2735), + [anon_sym_include] = ACTIONS(2735), + [anon_sym_DEF] = ACTIONS(2735), + [anon_sym_IF] = ACTIONS(2735), + [anon_sym_cdef] = ACTIONS(2735), + [anon_sym_cpdef] = ACTIONS(2735), + [anon_sym_new] = ACTIONS(2735), + [anon_sym_ctypedef] = ACTIONS(2735), + [anon_sym_public] = ACTIONS(2735), + [anon_sym_packed] = ACTIONS(2735), + [anon_sym_inline] = ACTIONS(2735), + [anon_sym_readonly] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(2735), + [sym_string_start] = ACTIONS(2737), }, [821] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4194), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_type] = STATE(4436), + [sym_splat_type] = STATE(4492), + [sym_generic_type] = STATE(4492), + [sym_union_type] = STATE(4492), + [sym_constrained_type] = STATE(4492), + [sym_member_type] = STATE(4492), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_STAR_STAR] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [822] = { - [sym_pattern] = STATE(3255), - [sym_tuple_pattern] = STATE(3249), - [sym_list_pattern] = STATE(3249), - [sym_list_splat_pattern] = STATE(2601), - [sym_primary_expression] = STATE(3268), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2618), - [sym_subscript] = STATE(2618), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2771), - [anon_sym_SEMI] = ACTIONS(2773), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_STAR] = ACTIONS(2777), - [anon_sym_print] = ACTIONS(2779), - [anon_sym_COLON] = ACTIONS(2773), - [anon_sym_match] = ACTIONS(2779), - [anon_sym_async] = ACTIONS(2779), - [anon_sym_exec] = ACTIONS(2779), - [anon_sym_EQ] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(2773), - [anon_sym_DASH_EQ] = ACTIONS(2773), - [anon_sym_STAR_EQ] = ACTIONS(2773), - [anon_sym_SLASH_EQ] = ACTIONS(2773), - [anon_sym_AT_EQ] = ACTIONS(2773), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2773), - [anon_sym_PERCENT_EQ] = ACTIONS(2773), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2773), - [anon_sym_GT_GT_EQ] = ACTIONS(2773), - [anon_sym_LT_LT_EQ] = ACTIONS(2773), - [anon_sym_AMP_EQ] = ACTIONS(2773), - [anon_sym_CARET_EQ] = ACTIONS(2773), - [anon_sym_PIPE_EQ] = ACTIONS(2773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(2783), - [anon_sym_api] = ACTIONS(2779), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym__newline] = ACTIONS(2773), - [sym_string_start] = ACTIONS(1279), + [sym_else_clause] = STATE(1154), + [sym_except_clause] = STATE(907), + [sym_finally_clause] = STATE(1446), + [aux_sym_try_statement_repeat1] = STATE(907), + [sym_identifier] = ACTIONS(2735), + [anon_sym_import] = ACTIONS(2735), + [anon_sym_cimport] = ACTIONS(2735), + [anon_sym_from] = ACTIONS(2735), + [anon_sym_LPAREN] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2737), + [anon_sym_print] = ACTIONS(2735), + [anon_sym_assert] = ACTIONS(2735), + [anon_sym_return] = ACTIONS(2735), + [anon_sym_del] = ACTIONS(2735), + [anon_sym_raise] = ACTIONS(2735), + [anon_sym_pass] = ACTIONS(2735), + [anon_sym_break] = ACTIONS(2735), + [anon_sym_continue] = ACTIONS(2735), + [anon_sym_if] = ACTIONS(2735), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(2735), + [anon_sym_async] = ACTIONS(2735), + [anon_sym_for] = ACTIONS(2735), + [anon_sym_while] = ACTIONS(2735), + [anon_sym_try] = ACTIONS(2735), + [anon_sym_except] = ACTIONS(2747), + [anon_sym_finally] = ACTIONS(2743), + [anon_sym_with] = ACTIONS(2735), + [anon_sym_def] = ACTIONS(2735), + [anon_sym_global] = ACTIONS(2735), + [anon_sym_nonlocal] = ACTIONS(2735), + [anon_sym_exec] = ACTIONS(2735), + [anon_sym_type] = ACTIONS(2735), + [anon_sym_class] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_AT] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2737), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_lambda] = ACTIONS(2735), + [anon_sym_yield] = ACTIONS(2735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2737), + [anon_sym_None] = ACTIONS(2735), + [sym_integer] = ACTIONS(2735), + [sym_float] = ACTIONS(2737), + [anon_sym_await] = ACTIONS(2735), + [anon_sym_api] = ACTIONS(2735), + [sym_true] = ACTIONS(2735), + [sym_false] = ACTIONS(2735), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2735), + [anon_sym_include] = ACTIONS(2735), + [anon_sym_DEF] = ACTIONS(2735), + [anon_sym_IF] = ACTIONS(2735), + [anon_sym_cdef] = ACTIONS(2735), + [anon_sym_cpdef] = ACTIONS(2735), + [anon_sym_new] = ACTIONS(2735), + [anon_sym_ctypedef] = ACTIONS(2735), + [anon_sym_public] = ACTIONS(2735), + [anon_sym_packed] = ACTIONS(2735), + [anon_sym_inline] = ACTIONS(2735), + [anon_sym_readonly] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(2735), + [sym__dedent] = ACTIONS(2737), + [sym_string_start] = ACTIONS(2737), }, [823] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(3883), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_type] = STATE(4384), - [sym_splat_type] = STATE(4473), - [sym_generic_type] = STATE(4473), - [sym_union_type] = STATE(4473), - [sym_constrained_type] = STATE(4473), - [sym_member_type] = STATE(4473), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_STAR_STAR] = ACTIONS(2675), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_else_clause] = STATE(1087), + [sym_except_clause] = STATE(907), + [sym_finally_clause] = STATE(1530), + [aux_sym_try_statement_repeat1] = STATE(907), + [sym_identifier] = ACTIONS(2705), + [anon_sym_import] = ACTIONS(2705), + [anon_sym_cimport] = ACTIONS(2705), + [anon_sym_from] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_print] = ACTIONS(2705), + [anon_sym_assert] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_del] = ACTIONS(2705), + [anon_sym_raise] = ACTIONS(2705), + [anon_sym_pass] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_except] = ACTIONS(2747), + [anon_sym_finally] = ACTIONS(2743), + [anon_sym_with] = ACTIONS(2705), + [anon_sym_def] = ACTIONS(2705), + [anon_sym_global] = ACTIONS(2705), + [anon_sym_nonlocal] = ACTIONS(2705), + [anon_sym_exec] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_AT] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_not] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_lambda] = ACTIONS(2705), + [anon_sym_yield] = ACTIONS(2705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2703), + [anon_sym_None] = ACTIONS(2705), + [sym_integer] = ACTIONS(2705), + [sym_float] = ACTIONS(2703), + [anon_sym_await] = ACTIONS(2705), + [anon_sym_api] = ACTIONS(2705), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2705), + [anon_sym_include] = ACTIONS(2705), + [anon_sym_DEF] = ACTIONS(2705), + [anon_sym_IF] = ACTIONS(2705), + [anon_sym_cdef] = ACTIONS(2705), + [anon_sym_cpdef] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_ctypedef] = ACTIONS(2705), + [anon_sym_public] = ACTIONS(2705), + [anon_sym_packed] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_readonly] = ACTIONS(2705), + [anon_sym_sizeof] = ACTIONS(2705), + [sym__dedent] = ACTIONS(2703), + [sym_string_start] = ACTIONS(2703), }, [824] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(3883), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_type] = STATE(4385), - [sym_splat_type] = STATE(4473), - [sym_generic_type] = STATE(4473), - [sym_union_type] = STATE(4473), - [sym_constrained_type] = STATE(4473), - [sym_member_type] = STATE(4473), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_STAR_STAR] = ACTIONS(2675), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_type] = STATE(4436), + [sym_splat_type] = STATE(4492), + [sym_generic_type] = STATE(4492), + [sym_union_type] = STATE(4492), + [sym_constrained_type] = STATE(4492), + [sym_member_type] = STATE(4492), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_STAR_STAR] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [825] = { - [sym_else_clause] = STATE(1138), - [sym_except_clause] = STATE(952), - [sym_finally_clause] = STATE(1657), - [aux_sym_try_statement_repeat1] = STATE(952), - [ts_builtin_sym_end] = ACTIONS(2785), - [sym_identifier] = ACTIONS(2787), - [anon_sym_import] = ACTIONS(2787), - [anon_sym_cimport] = ACTIONS(2787), - [anon_sym_from] = ACTIONS(2787), - [anon_sym_LPAREN] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_print] = ACTIONS(2787), - [anon_sym_assert] = ACTIONS(2787), - [anon_sym_return] = ACTIONS(2787), - [anon_sym_del] = ACTIONS(2787), - [anon_sym_raise] = ACTIONS(2787), - [anon_sym_pass] = ACTIONS(2787), - [anon_sym_break] = ACTIONS(2787), - [anon_sym_continue] = ACTIONS(2787), - [anon_sym_if] = ACTIONS(2787), - [anon_sym_else] = ACTIONS(2789), - [anon_sym_match] = ACTIONS(2787), - [anon_sym_async] = ACTIONS(2787), - [anon_sym_for] = ACTIONS(2787), - [anon_sym_while] = ACTIONS(2787), - [anon_sym_try] = ACTIONS(2787), - [anon_sym_except] = ACTIONS(2791), - [anon_sym_finally] = ACTIONS(2793), - [anon_sym_with] = ACTIONS(2787), - [anon_sym_def] = ACTIONS(2787), - [anon_sym_global] = ACTIONS(2787), - [anon_sym_nonlocal] = ACTIONS(2787), - [anon_sym_exec] = ACTIONS(2787), - [anon_sym_type] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_AT] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_LT] = ACTIONS(2785), - [anon_sym_lambda] = ACTIONS(2787), - [anon_sym_yield] = ACTIONS(2787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2785), - [anon_sym_None] = ACTIONS(2787), - [sym_integer] = ACTIONS(2787), - [sym_float] = ACTIONS(2785), - [anon_sym_await] = ACTIONS(2787), - [anon_sym_api] = ACTIONS(2787), - [sym_true] = ACTIONS(2787), - [sym_false] = ACTIONS(2787), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2787), - [anon_sym_include] = ACTIONS(2787), - [anon_sym_DEF] = ACTIONS(2787), - [anon_sym_cdef] = ACTIONS(2787), - [anon_sym_cpdef] = ACTIONS(2787), - [anon_sym_new] = ACTIONS(2787), - [anon_sym_ctypedef] = ACTIONS(2787), - [anon_sym_public] = ACTIONS(2787), - [anon_sym_packed] = ACTIONS(2787), - [anon_sym_inline] = ACTIONS(2787), - [anon_sym_readonly] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(2787), - [sym_string_start] = ACTIONS(2785), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_type] = STATE(4436), + [sym_splat_type] = STATE(4492), + [sym_generic_type] = STATE(4492), + [sym_union_type] = STATE(4492), + [sym_constrained_type] = STATE(4492), + [sym_member_type] = STATE(4492), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_STAR_STAR] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [826] = { - [sym_else_clause] = STATE(1138), - [sym_except_group_clause] = STATE(955), - [sym_finally_clause] = STATE(1657), - [aux_sym_try_statement_repeat2] = STATE(955), - [ts_builtin_sym_end] = ACTIONS(2785), - [sym_identifier] = ACTIONS(2787), - [anon_sym_import] = ACTIONS(2787), - [anon_sym_cimport] = ACTIONS(2787), - [anon_sym_from] = ACTIONS(2787), - [anon_sym_LPAREN] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_print] = ACTIONS(2787), - [anon_sym_assert] = ACTIONS(2787), - [anon_sym_return] = ACTIONS(2787), - [anon_sym_del] = ACTIONS(2787), - [anon_sym_raise] = ACTIONS(2787), - [anon_sym_pass] = ACTIONS(2787), - [anon_sym_break] = ACTIONS(2787), - [anon_sym_continue] = ACTIONS(2787), - [anon_sym_if] = ACTIONS(2787), - [anon_sym_else] = ACTIONS(2789), - [anon_sym_match] = ACTIONS(2787), - [anon_sym_async] = ACTIONS(2787), - [anon_sym_for] = ACTIONS(2787), - [anon_sym_while] = ACTIONS(2787), - [anon_sym_try] = ACTIONS(2787), - [anon_sym_except_STAR] = ACTIONS(2795), - [anon_sym_finally] = ACTIONS(2793), - [anon_sym_with] = ACTIONS(2787), - [anon_sym_def] = ACTIONS(2787), - [anon_sym_global] = ACTIONS(2787), - [anon_sym_nonlocal] = ACTIONS(2787), - [anon_sym_exec] = ACTIONS(2787), - [anon_sym_type] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_AT] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_LT] = ACTIONS(2785), - [anon_sym_lambda] = ACTIONS(2787), - [anon_sym_yield] = ACTIONS(2787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2785), - [anon_sym_None] = ACTIONS(2787), - [sym_integer] = ACTIONS(2787), - [sym_float] = ACTIONS(2785), - [anon_sym_await] = ACTIONS(2787), - [anon_sym_api] = ACTIONS(2787), - [sym_true] = ACTIONS(2787), - [sym_false] = ACTIONS(2787), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2787), - [anon_sym_include] = ACTIONS(2787), - [anon_sym_DEF] = ACTIONS(2787), - [anon_sym_cdef] = ACTIONS(2787), - [anon_sym_cpdef] = ACTIONS(2787), - [anon_sym_new] = ACTIONS(2787), - [anon_sym_ctypedef] = ACTIONS(2787), - [anon_sym_public] = ACTIONS(2787), - [anon_sym_packed] = ACTIONS(2787), - [anon_sym_inline] = ACTIONS(2787), - [anon_sym_readonly] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(2787), - [sym_string_start] = ACTIONS(2785), + [sym_named_expression] = STATE(3933), + [sym__named_expression_lhs] = STATE(5687), + [sym_expression_list] = STATE(4577), + [sym_pattern] = STATE(5287), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2413), + [sym_as_pattern] = STATE(3933), + [sym_expression] = STATE(3867), + [sym_primary_expression] = STATE(2159), + [sym_not_operator] = STATE(3933), + [sym_boolean_operator] = STATE(3933), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_comparison_operator] = STATE(3933), + [sym_lambda] = STATE(3933), + [sym_pattern_list] = STATE(4577), + [sym_yield] = STATE(4577), + [sym_attribute] = STATE(2427), + [sym_subscript] = STATE(2427), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_conditional_expression] = STATE(3933), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym__f_expression] = STATE(4577), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_new_expression] = STATE(3933), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2753), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(2759), + [anon_sym_match] = ACTIONS(2759), + [anon_sym_async] = ACTIONS(2759), + [anon_sym_exec] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_lambda] = ACTIONS(2767), + [anon_sym_yield] = ACTIONS(2769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2771), + [anon_sym_api] = ACTIONS(2759), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, [827] = { - [sym__patterns] = STATE(5676), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(3257), - [sym_primary_expression] = STATE(3286), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(3259), - [sym_subscript] = STATE(3259), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5282), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_RPAREN] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_print] = ACTIONS(2805), - [anon_sym_match] = ACTIONS(2805), - [anon_sym_async] = ACTIONS(2805), - [anon_sym_exec] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2805), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_else_clause] = STATE(1087), + [sym_except_group_clause] = STATE(908), + [sym_finally_clause] = STATE(1530), + [aux_sym_try_statement_repeat2] = STATE(908), + [sym_identifier] = ACTIONS(2705), + [anon_sym_import] = ACTIONS(2705), + [anon_sym_cimport] = ACTIONS(2705), + [anon_sym_from] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_print] = ACTIONS(2705), + [anon_sym_assert] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_del] = ACTIONS(2705), + [anon_sym_raise] = ACTIONS(2705), + [anon_sym_pass] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_except_STAR] = ACTIONS(2741), + [anon_sym_finally] = ACTIONS(2743), + [anon_sym_with] = ACTIONS(2705), + [anon_sym_def] = ACTIONS(2705), + [anon_sym_global] = ACTIONS(2705), + [anon_sym_nonlocal] = ACTIONS(2705), + [anon_sym_exec] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_AT] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_not] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_lambda] = ACTIONS(2705), + [anon_sym_yield] = ACTIONS(2705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2703), + [anon_sym_None] = ACTIONS(2705), + [sym_integer] = ACTIONS(2705), + [sym_float] = ACTIONS(2703), + [anon_sym_await] = ACTIONS(2705), + [anon_sym_api] = ACTIONS(2705), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2705), + [anon_sym_include] = ACTIONS(2705), + [anon_sym_DEF] = ACTIONS(2705), + [anon_sym_IF] = ACTIONS(2705), + [anon_sym_cdef] = ACTIONS(2705), + [anon_sym_cpdef] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_ctypedef] = ACTIONS(2705), + [anon_sym_public] = ACTIONS(2705), + [anon_sym_packed] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_readonly] = ACTIONS(2705), + [anon_sym_sizeof] = ACTIONS(2705), + [sym__dedent] = ACTIONS(2703), + [sym_string_start] = ACTIONS(2703), }, [828] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5822), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3832), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(4218), - [sym_splat_type] = STATE(4280), - [sym_generic_type] = STATE(4280), - [sym_union_type] = STATE(4280), - [sym_constrained_type] = STATE(4280), - [sym_member_type] = STATE(4280), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_print] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_STAR_STAR] = ACTIONS(2753), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2813), - [anon_sym_AMP] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2815), - [anon_sym_DOT_DOT_DOT] = ACTIONS(77), - [anon_sym_None] = ACTIONS(79), - [sym_integer] = ACTIONS(81), - [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(849), - [anon_sym_api] = ACTIONS(824), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2817), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_type] = STATE(4436), + [sym_splat_type] = STATE(4492), + [sym_generic_type] = STATE(4492), + [sym_union_type] = STATE(4492), + [sym_constrained_type] = STATE(4492), + [sym_member_type] = STATE(4492), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_STAR_STAR] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [829] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4823), - [sym_dictionary_splat] = STATE(4823), - [sym_parenthesized_list_splat] = STATE(4824), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3691), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_keyword_argument] = STATE(4823), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2819), - [anon_sym_COMMA] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_print] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(2747), - [anon_sym_api] = ACTIONS(2745), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_else_clause] = STATE(1077), + [sym_except_clause] = STATE(883), + [sym_finally_clause] = STATE(1564), + [aux_sym_try_statement_repeat1] = STATE(883), + [ts_builtin_sym_end] = ACTIONS(2737), + [sym_identifier] = ACTIONS(2735), + [anon_sym_import] = ACTIONS(2735), + [anon_sym_cimport] = ACTIONS(2735), + [anon_sym_from] = ACTIONS(2735), + [anon_sym_LPAREN] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2737), + [anon_sym_print] = ACTIONS(2735), + [anon_sym_assert] = ACTIONS(2735), + [anon_sym_return] = ACTIONS(2735), + [anon_sym_del] = ACTIONS(2735), + [anon_sym_raise] = ACTIONS(2735), + [anon_sym_pass] = ACTIONS(2735), + [anon_sym_break] = ACTIONS(2735), + [anon_sym_continue] = ACTIONS(2735), + [anon_sym_if] = ACTIONS(2735), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2735), + [anon_sym_async] = ACTIONS(2735), + [anon_sym_for] = ACTIONS(2735), + [anon_sym_while] = ACTIONS(2735), + [anon_sym_try] = ACTIONS(2735), + [anon_sym_except] = ACTIONS(2713), + [anon_sym_finally] = ACTIONS(2711), + [anon_sym_with] = ACTIONS(2735), + [anon_sym_def] = ACTIONS(2735), + [anon_sym_global] = ACTIONS(2735), + [anon_sym_nonlocal] = ACTIONS(2735), + [anon_sym_exec] = ACTIONS(2735), + [anon_sym_type] = ACTIONS(2735), + [anon_sym_class] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_AT] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2737), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_lambda] = ACTIONS(2735), + [anon_sym_yield] = ACTIONS(2735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2737), + [anon_sym_None] = ACTIONS(2735), + [sym_integer] = ACTIONS(2735), + [sym_float] = ACTIONS(2737), + [anon_sym_await] = ACTIONS(2735), + [anon_sym_api] = ACTIONS(2735), + [sym_true] = ACTIONS(2735), + [sym_false] = ACTIONS(2735), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2735), + [anon_sym_include] = ACTIONS(2735), + [anon_sym_DEF] = ACTIONS(2735), + [anon_sym_IF] = ACTIONS(2735), + [anon_sym_cdef] = ACTIONS(2735), + [anon_sym_cpdef] = ACTIONS(2735), + [anon_sym_new] = ACTIONS(2735), + [anon_sym_ctypedef] = ACTIONS(2735), + [anon_sym_public] = ACTIONS(2735), + [anon_sym_packed] = ACTIONS(2735), + [anon_sym_inline] = ACTIONS(2735), + [anon_sym_readonly] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(2735), + [sym_string_start] = ACTIONS(2737), }, [830] = { - [sym_else_clause] = STATE(1164), - [sym_except_clause] = STATE(934), - [sym_finally_clause] = STATE(1545), - [aux_sym_try_statement_repeat1] = STATE(934), - [sym_identifier] = ACTIONS(2787), - [anon_sym_import] = ACTIONS(2787), - [anon_sym_cimport] = ACTIONS(2787), - [anon_sym_from] = ACTIONS(2787), - [anon_sym_LPAREN] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_print] = ACTIONS(2787), - [anon_sym_assert] = ACTIONS(2787), - [anon_sym_return] = ACTIONS(2787), - [anon_sym_del] = ACTIONS(2787), - [anon_sym_raise] = ACTIONS(2787), - [anon_sym_pass] = ACTIONS(2787), - [anon_sym_break] = ACTIONS(2787), - [anon_sym_continue] = ACTIONS(2787), - [anon_sym_if] = ACTIONS(2787), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_match] = ACTIONS(2787), - [anon_sym_async] = ACTIONS(2787), - [anon_sym_for] = ACTIONS(2787), - [anon_sym_while] = ACTIONS(2787), - [anon_sym_try] = ACTIONS(2787), - [anon_sym_except] = ACTIONS(2733), - [anon_sym_finally] = ACTIONS(2735), - [anon_sym_with] = ACTIONS(2787), - [anon_sym_def] = ACTIONS(2787), - [anon_sym_global] = ACTIONS(2787), - [anon_sym_nonlocal] = ACTIONS(2787), - [anon_sym_exec] = ACTIONS(2787), - [anon_sym_type] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_AT] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_LT] = ACTIONS(2785), - [anon_sym_lambda] = ACTIONS(2787), - [anon_sym_yield] = ACTIONS(2787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2785), - [anon_sym_None] = ACTIONS(2787), - [sym_integer] = ACTIONS(2787), - [sym_float] = ACTIONS(2785), - [anon_sym_await] = ACTIONS(2787), - [anon_sym_api] = ACTIONS(2787), - [sym_true] = ACTIONS(2787), - [sym_false] = ACTIONS(2787), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2787), - [anon_sym_include] = ACTIONS(2787), - [anon_sym_DEF] = ACTIONS(2787), - [anon_sym_cdef] = ACTIONS(2787), - [anon_sym_cpdef] = ACTIONS(2787), - [anon_sym_new] = ACTIONS(2787), - [anon_sym_ctypedef] = ACTIONS(2787), - [anon_sym_public] = ACTIONS(2787), - [anon_sym_packed] = ACTIONS(2787), - [anon_sym_inline] = ACTIONS(2787), - [anon_sym_readonly] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(2787), - [sym__dedent] = ACTIONS(2785), - [sym_string_start] = ACTIONS(2785), + [sym_named_expression] = STATE(3933), + [sym__named_expression_lhs] = STATE(5687), + [sym_expression_list] = STATE(4440), + [sym_pattern] = STATE(5287), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2413), + [sym_as_pattern] = STATE(3933), + [sym_expression] = STATE(3867), + [sym_primary_expression] = STATE(2159), + [sym_not_operator] = STATE(3933), + [sym_boolean_operator] = STATE(3933), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_comparison_operator] = STATE(3933), + [sym_lambda] = STATE(3933), + [sym_pattern_list] = STATE(4440), + [sym_yield] = STATE(4440), + [sym_attribute] = STATE(2427), + [sym_subscript] = STATE(2427), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_conditional_expression] = STATE(3933), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym__f_expression] = STATE(4440), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_new_expression] = STATE(3933), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2753), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(2759), + [anon_sym_match] = ACTIONS(2759), + [anon_sym_async] = ACTIONS(2759), + [anon_sym_exec] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_lambda] = ACTIONS(2767), + [anon_sym_yield] = ACTIONS(2769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2771), + [anon_sym_api] = ACTIONS(2759), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, [831] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(3883), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_type] = STATE(4330), - [sym_splat_type] = STATE(4473), - [sym_generic_type] = STATE(4473), - [sym_union_type] = STATE(4473), - [sym_constrained_type] = STATE(4473), - [sym_member_type] = STATE(4473), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_STAR_STAR] = ACTIONS(2675), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_type] = STATE(4436), + [sym_splat_type] = STATE(4492), + [sym_generic_type] = STATE(4492), + [sym_union_type] = STATE(4492), + [sym_constrained_type] = STATE(4492), + [sym_member_type] = STATE(4492), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_STAR_STAR] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [832] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(3883), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_type] = STATE(4296), - [sym_splat_type] = STATE(4473), - [sym_generic_type] = STATE(4473), - [sym_union_type] = STATE(4473), - [sym_constrained_type] = STATE(4473), - [sym_member_type] = STATE(4473), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_STAR_STAR] = ACTIONS(2675), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4181), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(5127), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [833] = { - [sym_pattern] = STATE(3255), - [sym_tuple_pattern] = STATE(3249), - [sym_list_pattern] = STATE(3249), - [sym_list_splat_pattern] = STATE(2601), - [sym_primary_expression] = STATE(3268), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2618), - [sym_subscript] = STATE(2618), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2771), - [anon_sym_SEMI] = ACTIONS(2821), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_STAR] = ACTIONS(2777), - [anon_sym_print] = ACTIONS(2779), - [anon_sym_COLON] = ACTIONS(2821), - [anon_sym_match] = ACTIONS(2779), - [anon_sym_async] = ACTIONS(2779), - [anon_sym_exec] = ACTIONS(2779), - [anon_sym_EQ] = ACTIONS(2821), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(2821), - [anon_sym_DASH_EQ] = ACTIONS(2821), - [anon_sym_STAR_EQ] = ACTIONS(2821), - [anon_sym_SLASH_EQ] = ACTIONS(2821), - [anon_sym_AT_EQ] = ACTIONS(2821), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2821), - [anon_sym_PERCENT_EQ] = ACTIONS(2821), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2821), - [anon_sym_GT_GT_EQ] = ACTIONS(2821), - [anon_sym_LT_LT_EQ] = ACTIONS(2821), - [anon_sym_AMP_EQ] = ACTIONS(2821), - [anon_sym_CARET_EQ] = ACTIONS(2821), - [anon_sym_PIPE_EQ] = ACTIONS(2821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(2783), - [anon_sym_api] = ACTIONS(2779), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym__newline] = ACTIONS(2821), - [sym_string_start] = ACTIONS(1279), + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_import] = ACTIONS(1546), + [anon_sym_cimport] = ACTIONS(1546), + [anon_sym_from] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1546), + [anon_sym_assert] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_del] = ACTIONS(1546), + [anon_sym_raise] = ACTIONS(1546), + [anon_sym_pass] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_elif] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_try] = ACTIONS(1546), + [anon_sym_finally] = ACTIONS(1546), + [anon_sym_with] = ACTIONS(1546), + [anon_sym_def] = ACTIONS(1546), + [anon_sym_global] = ACTIONS(1546), + [anon_sym_nonlocal] = ACTIONS(1546), + [anon_sym_exec] = ACTIONS(1546), + [anon_sym_type] = ACTIONS(1546), + [anon_sym_class] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_not] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_lambda] = ACTIONS(1546), + [anon_sym_yield] = ACTIONS(1546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1548), + [anon_sym_None] = ACTIONS(1546), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1548), + [anon_sym_await] = ACTIONS(1546), + [anon_sym_api] = ACTIONS(1546), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1546), + [anon_sym_include] = ACTIONS(1546), + [anon_sym_DEF] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_ELIF] = ACTIONS(1546), + [anon_sym_ELSE] = ACTIONS(1546), + [anon_sym_cdef] = ACTIONS(1546), + [anon_sym_cpdef] = ACTIONS(1546), + [anon_sym_new] = ACTIONS(1546), + [anon_sym_ctypedef] = ACTIONS(1546), + [anon_sym_public] = ACTIONS(1546), + [anon_sym_packed] = ACTIONS(1546), + [anon_sym_inline] = ACTIONS(1546), + [anon_sym_readonly] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1546), + [sym_string_start] = ACTIONS(1548), }, [834] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(3883), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_type] = STATE(4231), - [sym_splat_type] = STATE(4473), - [sym_generic_type] = STATE(4473), - [sym_union_type] = STATE(4473), - [sym_constrained_type] = STATE(4473), - [sym_member_type] = STATE(4473), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_STAR_STAR] = ACTIONS(2675), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4181), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(4977), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [835] = { - [sym_else_clause] = STATE(1164), - [sym_except_group_clause] = STATE(936), - [sym_finally_clause] = STATE(1545), - [aux_sym_try_statement_repeat2] = STATE(936), - [sym_identifier] = ACTIONS(2787), - [anon_sym_import] = ACTIONS(2787), - [anon_sym_cimport] = ACTIONS(2787), - [anon_sym_from] = ACTIONS(2787), - [anon_sym_LPAREN] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_print] = ACTIONS(2787), - [anon_sym_assert] = ACTIONS(2787), - [anon_sym_return] = ACTIONS(2787), - [anon_sym_del] = ACTIONS(2787), - [anon_sym_raise] = ACTIONS(2787), - [anon_sym_pass] = ACTIONS(2787), - [anon_sym_break] = ACTIONS(2787), - [anon_sym_continue] = ACTIONS(2787), - [anon_sym_if] = ACTIONS(2787), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_match] = ACTIONS(2787), - [anon_sym_async] = ACTIONS(2787), - [anon_sym_for] = ACTIONS(2787), - [anon_sym_while] = ACTIONS(2787), - [anon_sym_try] = ACTIONS(2787), - [anon_sym_except_STAR] = ACTIONS(2765), - [anon_sym_finally] = ACTIONS(2735), - [anon_sym_with] = ACTIONS(2787), - [anon_sym_def] = ACTIONS(2787), - [anon_sym_global] = ACTIONS(2787), - [anon_sym_nonlocal] = ACTIONS(2787), - [anon_sym_exec] = ACTIONS(2787), - [anon_sym_type] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_AT] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_LT] = ACTIONS(2785), - [anon_sym_lambda] = ACTIONS(2787), - [anon_sym_yield] = ACTIONS(2787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2785), - [anon_sym_None] = ACTIONS(2787), - [sym_integer] = ACTIONS(2787), - [sym_float] = ACTIONS(2785), - [anon_sym_await] = ACTIONS(2787), - [anon_sym_api] = ACTIONS(2787), - [sym_true] = ACTIONS(2787), - [sym_false] = ACTIONS(2787), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2787), - [anon_sym_include] = ACTIONS(2787), - [anon_sym_DEF] = ACTIONS(2787), - [anon_sym_cdef] = ACTIONS(2787), - [anon_sym_cpdef] = ACTIONS(2787), - [anon_sym_new] = ACTIONS(2787), - [anon_sym_ctypedef] = ACTIONS(2787), - [anon_sym_public] = ACTIONS(2787), - [anon_sym_packed] = ACTIONS(2787), - [anon_sym_inline] = ACTIONS(2787), - [anon_sym_readonly] = ACTIONS(2787), - [anon_sym_sizeof] = ACTIONS(2787), - [sym__dedent] = ACTIONS(2785), - [sym_string_start] = ACTIONS(2785), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4868), + [sym_dictionary_splat] = STATE(4868), + [sym_parenthesized_list_splat] = STATE(4869), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3748), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_keyword_argument] = STATE(4868), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2789), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_print] = ACTIONS(2793), + [anon_sym_match] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(2795), + [anon_sym_api] = ACTIONS(2793), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [836] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_with_item] = STATE(4739), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3694), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4886), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5637), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2825), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4181), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(4931), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [837] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4978), - [sym_dictionary_splat] = STATE(4978), - [sym_parenthesized_list_splat] = STATE(4979), + [sym_pattern] = STATE(3312), + [sym_tuple_pattern] = STATE(3329), + [sym_list_pattern] = STATE(3329), [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3759), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_keyword_argument] = STATE(4978), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2827), - [anon_sym_COMMA] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_print] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(2747), - [anon_sym_api] = ACTIONS(2745), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_primary_expression] = STATE(3337), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2605), + [sym_subscript] = STATE(2605), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_print] = ACTIONS(2805), + [anon_sym_COLON] = ACTIONS(2799), + [anon_sym_match] = ACTIONS(2805), + [anon_sym_async] = ACTIONS(2805), + [anon_sym_exec] = ACTIONS(2805), + [anon_sym_EQ] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(2799), + [anon_sym_DASH_EQ] = ACTIONS(2799), + [anon_sym_STAR_EQ] = ACTIONS(2799), + [anon_sym_SLASH_EQ] = ACTIONS(2799), + [anon_sym_AT_EQ] = ACTIONS(2799), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2799), + [anon_sym_PERCENT_EQ] = ACTIONS(2799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2799), + [anon_sym_GT_GT_EQ] = ACTIONS(2799), + [anon_sym_LT_LT_EQ] = ACTIONS(2799), + [anon_sym_AMP_EQ] = ACTIONS(2799), + [anon_sym_CARET_EQ] = ACTIONS(2799), + [anon_sym_PIPE_EQ] = ACTIONS(2799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(2809), + [anon_sym_api] = ACTIONS(2805), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1311), + [sym__newline] = ACTIONS(2799), + [sym_string_start] = ACTIONS(1313), }, [838] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(3883), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_type] = STATE(4360), - [sym_splat_type] = STATE(4473), - [sym_generic_type] = STATE(4473), - [sym_union_type] = STATE(4473), - [sym_constrained_type] = STATE(4473), - [sym_member_type] = STATE(4473), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_STAR_STAR] = ACTIONS(2675), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_pattern] = STATE(3312), + [sym_tuple_pattern] = STATE(3329), + [sym_list_pattern] = STATE(3329), + [sym_list_splat_pattern] = STATE(2604), + [sym_primary_expression] = STATE(3337), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2605), + [sym_subscript] = STATE(2605), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_print] = ACTIONS(2805), + [anon_sym_COLON] = ACTIONS(2811), + [anon_sym_match] = ACTIONS(2805), + [anon_sym_async] = ACTIONS(2805), + [anon_sym_exec] = ACTIONS(2805), + [anon_sym_EQ] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(2811), + [anon_sym_DASH_EQ] = ACTIONS(2811), + [anon_sym_STAR_EQ] = ACTIONS(2811), + [anon_sym_SLASH_EQ] = ACTIONS(2811), + [anon_sym_AT_EQ] = ACTIONS(2811), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2811), + [anon_sym_PERCENT_EQ] = ACTIONS(2811), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2811), + [anon_sym_GT_GT_EQ] = ACTIONS(2811), + [anon_sym_LT_LT_EQ] = ACTIONS(2811), + [anon_sym_AMP_EQ] = ACTIONS(2811), + [anon_sym_CARET_EQ] = ACTIONS(2811), + [anon_sym_PIPE_EQ] = ACTIONS(2811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(2809), + [anon_sym_api] = ACTIONS(2805), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1311), + [sym__newline] = ACTIONS(2811), + [sym_string_start] = ACTIONS(1313), }, [839] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4215), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(4792), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), - }, - [840] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5822), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3832), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(4281), - [sym_splat_type] = STATE(4280), - [sym_generic_type] = STATE(4280), - [sym_union_type] = STATE(4280), - [sym_constrained_type] = STATE(4280), - [sym_member_type] = STATE(4280), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_print] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_STAR_STAR] = ACTIONS(2753), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(1319), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5872), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3858), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(4396), + [sym_splat_type] = STATE(4327), + [sym_generic_type] = STATE(4327), + [sym_union_type] = STATE(4327), + [sym_constrained_type] = STATE(4327), + [sym_member_type] = STATE(4327), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_print] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_STAR_STAR] = ACTIONS(2817), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1353), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2819), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2815), + [anon_sym_lambda] = ACTIONS(2821), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(849), - [anon_sym_api] = ACTIONS(824), + [anon_sym_await] = ACTIONS(895), + [anon_sym_api] = ACTIONS(870), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2817), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), + }, + [840] = { + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_import] = ACTIONS(1496), + [anon_sym_cimport] = ACTIONS(1496), + [anon_sym_from] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_print] = ACTIONS(1496), + [anon_sym_assert] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_del] = ACTIONS(1496), + [anon_sym_raise] = ACTIONS(1496), + [anon_sym_pass] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_elif] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_finally] = ACTIONS(1496), + [anon_sym_with] = ACTIONS(1496), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_global] = ACTIONS(1496), + [anon_sym_nonlocal] = ACTIONS(1496), + [anon_sym_exec] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_class] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_AT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_not] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_lambda] = ACTIONS(1496), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1498), + [anon_sym_None] = ACTIONS(1496), + [sym_integer] = ACTIONS(1496), + [sym_float] = ACTIONS(1498), + [anon_sym_await] = ACTIONS(1496), + [anon_sym_api] = ACTIONS(1496), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1496), + [anon_sym_include] = ACTIONS(1496), + [anon_sym_DEF] = ACTIONS(1496), + [anon_sym_IF] = ACTIONS(1496), + [anon_sym_ELIF] = ACTIONS(1496), + [anon_sym_ELSE] = ACTIONS(1496), + [anon_sym_cdef] = ACTIONS(1496), + [anon_sym_cpdef] = ACTIONS(1496), + [anon_sym_new] = ACTIONS(1496), + [anon_sym_ctypedef] = ACTIONS(1496), + [anon_sym_public] = ACTIONS(1496), + [anon_sym_packed] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym_readonly] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1496), + [sym_string_start] = ACTIONS(1498), }, [841] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4215), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(5167), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_type] = STATE(4436), + [sym_splat_type] = STATE(4492), + [sym_generic_type] = STATE(4492), + [sym_union_type] = STATE(4492), + [sym_constrained_type] = STATE(4492), + [sym_member_type] = STATE(4492), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_STAR_STAR] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [842] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4215), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(4604), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(5036), + [sym_dictionary_splat] = STATE(5036), + [sym_parenthesized_list_splat] = STATE(5037), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3805), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_keyword_argument] = STATE(5036), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2825), + [anon_sym_COMMA] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_print] = ACTIONS(2793), + [anon_sym_match] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(2795), + [anon_sym_api] = ACTIONS(2793), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [843] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5822), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3832), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(4290), - [sym_splat_type] = STATE(4280), - [sym_generic_type] = STATE(4280), - [sym_union_type] = STATE(4280), - [sym_constrained_type] = STATE(4280), - [sym_member_type] = STATE(4280), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_print] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_STAR_STAR] = ACTIONS(2753), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(1319), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4181), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(5084), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [844] = { + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5872), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3858), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(4378), + [sym_splat_type] = STATE(4327), + [sym_generic_type] = STATE(4327), + [sym_union_type] = STATE(4327), + [sym_constrained_type] = STATE(4327), + [sym_member_type] = STATE(4327), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_print] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_STAR_STAR] = ACTIONS(2817), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1353), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2819), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(2815), + [anon_sym_lambda] = ACTIONS(2821), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(849), - [anon_sym_api] = ACTIONS(824), + [anon_sym_await] = ACTIONS(895), + [anon_sym_api] = ACTIONS(870), [sym_true] = ACTIONS(81), [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2817), - [anon_sym_sizeof] = ACTIONS(105), - [sym_string_start] = ACTIONS(107), - }, - [844] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4215), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(5064), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, [845] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(3977), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(4588), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(2757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_type] = STATE(4548), + [sym_splat_type] = STATE(4492), + [sym_generic_type] = STATE(4492), + [sym_union_type] = STATE(4492), + [sym_constrained_type] = STATE(4492), + [sym_member_type] = STATE(4492), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_STAR_STAR] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [846] = { - [sym_else_clause] = STATE(1122), - [sym_except_clause] = STATE(952), - [sym_finally_clause] = STATE(1764), - [aux_sym_try_statement_repeat1] = STATE(952), - [ts_builtin_sym_end] = ACTIONS(2729), - [sym_identifier] = ACTIONS(2727), - [anon_sym_import] = ACTIONS(2727), - [anon_sym_cimport] = ACTIONS(2727), - [anon_sym_from] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_assert] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_del] = ACTIONS(2727), - [anon_sym_raise] = ACTIONS(2727), - [anon_sym_pass] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2789), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_except] = ACTIONS(2791), - [anon_sym_finally] = ACTIONS(2793), - [anon_sym_with] = ACTIONS(2727), - [anon_sym_def] = ACTIONS(2727), - [anon_sym_global] = ACTIONS(2727), - [anon_sym_nonlocal] = ACTIONS(2727), - [anon_sym_exec] = ACTIONS(2727), - [anon_sym_type] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_lambda] = ACTIONS(2727), - [anon_sym_yield] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_None] = ACTIONS(2727), - [sym_integer] = ACTIONS(2727), - [sym_float] = ACTIONS(2729), - [anon_sym_await] = ACTIONS(2727), - [anon_sym_api] = ACTIONS(2727), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2727), - [anon_sym_include] = ACTIONS(2727), - [anon_sym_DEF] = ACTIONS(2727), - [anon_sym_cdef] = ACTIONS(2727), - [anon_sym_cpdef] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_ctypedef] = ACTIONS(2727), - [anon_sym_public] = ACTIONS(2727), - [anon_sym_packed] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym_readonly] = ACTIONS(2727), - [anon_sym_sizeof] = ACTIONS(2727), - [sym_string_start] = ACTIONS(2729), + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_import] = ACTIONS(1480), + [anon_sym_cimport] = ACTIONS(1480), + [anon_sym_from] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_del] = ACTIONS(1480), + [anon_sym_raise] = ACTIONS(1480), + [anon_sym_pass] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_elif] = ACTIONS(1480), + [anon_sym_else] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_try] = ACTIONS(1480), + [anon_sym_finally] = ACTIONS(1480), + [anon_sym_with] = ACTIONS(1480), + [anon_sym_def] = ACTIONS(1480), + [anon_sym_global] = ACTIONS(1480), + [anon_sym_nonlocal] = ACTIONS(1480), + [anon_sym_exec] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_class] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_not] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_lambda] = ACTIONS(1480), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1482), + [anon_sym_None] = ACTIONS(1480), + [sym_integer] = ACTIONS(1480), + [sym_float] = ACTIONS(1482), + [anon_sym_await] = ACTIONS(1480), + [anon_sym_api] = ACTIONS(1480), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1480), + [anon_sym_include] = ACTIONS(1480), + [anon_sym_DEF] = ACTIONS(1480), + [anon_sym_IF] = ACTIONS(1480), + [anon_sym_ELIF] = ACTIONS(1480), + [anon_sym_ELSE] = ACTIONS(1480), + [anon_sym_cdef] = ACTIONS(1480), + [anon_sym_cpdef] = ACTIONS(1480), + [anon_sym_new] = ACTIONS(1480), + [anon_sym_ctypedef] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_packed] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1480), + [sym_string_start] = ACTIONS(1482), }, [847] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4215), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(5071), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), - }, - [848] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4215), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(5073), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), - }, - [849] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4215), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(4879), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), - }, - [850] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4992), - [sym_dictionary_splat] = STATE(4992), - [sym_parenthesized_list_splat] = STATE(4993), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3766), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_keyword_argument] = STATE(4992), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_print] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(2747), - [anon_sym_api] = ACTIONS(2745), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), - }, - [851] = { - [sym_else_clause] = STATE(1122), - [sym_except_group_clause] = STATE(955), - [sym_finally_clause] = STATE(1764), - [aux_sym_try_statement_repeat2] = STATE(955), - [ts_builtin_sym_end] = ACTIONS(2729), - [sym_identifier] = ACTIONS(2727), - [anon_sym_import] = ACTIONS(2727), - [anon_sym_cimport] = ACTIONS(2727), - [anon_sym_from] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_print] = ACTIONS(2727), - [anon_sym_assert] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_del] = ACTIONS(2727), - [anon_sym_raise] = ACTIONS(2727), - [anon_sym_pass] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2789), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_except_STAR] = ACTIONS(2795), - [anon_sym_finally] = ACTIONS(2793), - [anon_sym_with] = ACTIONS(2727), - [anon_sym_def] = ACTIONS(2727), - [anon_sym_global] = ACTIONS(2727), - [anon_sym_nonlocal] = ACTIONS(2727), - [anon_sym_exec] = ACTIONS(2727), - [anon_sym_type] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_not] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_lambda] = ACTIONS(2727), - [anon_sym_yield] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_None] = ACTIONS(2727), - [sym_integer] = ACTIONS(2727), - [sym_float] = ACTIONS(2729), - [anon_sym_await] = ACTIONS(2727), - [anon_sym_api] = ACTIONS(2727), - [sym_true] = ACTIONS(2727), - [sym_false] = ACTIONS(2727), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2727), - [anon_sym_include] = ACTIONS(2727), - [anon_sym_DEF] = ACTIONS(2727), - [anon_sym_cdef] = ACTIONS(2727), - [anon_sym_cpdef] = ACTIONS(2727), - [anon_sym_new] = ACTIONS(2727), - [anon_sym_ctypedef] = ACTIONS(2727), - [anon_sym_public] = ACTIONS(2727), - [anon_sym_packed] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym_readonly] = ACTIONS(2727), - [anon_sym_sizeof] = ACTIONS(2727), - [sym_string_start] = ACTIONS(2729), - }, - [852] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5751), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(3977), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(4601), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(2757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), - }, - [853] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4905), - [sym_dictionary_splat] = STATE(4905), - [sym_parenthesized_list_splat] = STATE(4906), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3717), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_keyword_argument] = STATE(4905), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2829), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_print] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(2747), - [anon_sym_api] = ACTIONS(2745), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), - }, - [854] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4215), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_type] = STATE(4815), - [sym_splat_type] = STATE(4653), - [sym_generic_type] = STATE(4653), - [sym_union_type] = STATE(4653), - [sym_constrained_type] = STATE(4653), - [sym_member_type] = STATE(4653), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(457), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), - }, - [855] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5136), - [sym_dictionary_splat] = STATE(5136), - [sym_parenthesized_list_splat] = STATE(5138), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3763), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_keyword_argument] = STATE(5136), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2831), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_print] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2745), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(2747), - [anon_sym_api] = ACTIONS(2745), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), - }, - [856] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3930), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(4539), - [sym_splat_type] = STATE(4280), - [sym_generic_type] = STATE(4280), - [sym_union_type] = STATE(4280), - [sym_constrained_type] = STATE(4280), - [sym_member_type] = STATE(4280), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_print] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_STAR_STAR] = ACTIONS(2753), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(1319), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3941), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(4532), + [sym_splat_type] = STATE(4327), + [sym_generic_type] = STATE(4327), + [sym_union_type] = STATE(4327), + [sym_constrained_type] = STATE(4327), + [sym_member_type] = STATE(4327), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_print] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_STAR_STAR] = ACTIONS(2817), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1353), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -107402,10493 +108271,10344 @@ 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(849), - [anon_sym_api] = ACTIONS(824), + [anon_sym_await] = ACTIONS(895), + [anon_sym_api] = ACTIONS(870), [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), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, - [857] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3930), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_type] = STATE(4218), - [sym_splat_type] = STATE(4280), - [sym_generic_type] = STATE(4280), - [sym_union_type] = STATE(4280), - [sym_constrained_type] = STATE(4280), - [sym_member_type] = STATE(4280), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2751), - [anon_sym_print] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_STAR_STAR] = ACTIONS(2753), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(1319), + [848] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_type] = STATE(4294), + [sym_splat_type] = STATE(4492), + [sym_generic_type] = STATE(4492), + [sym_union_type] = STATE(4492), + [sym_constrained_type] = STATE(4492), + [sym_member_type] = STATE(4492), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_STAR_STAR] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [849] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4181), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(5192), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [850] = { + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_with_item] = STATE(5251), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3727), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(5102), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5714), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), + }, + [851] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_type] = STATE(4358), + [sym_splat_type] = STATE(4492), + [sym_generic_type] = STATE(4492), + [sym_union_type] = STATE(4492), + [sym_constrained_type] = STATE(4492), + [sym_member_type] = STATE(4492), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_STAR_STAR] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [852] = { + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_import] = ACTIONS(1500), + [anon_sym_cimport] = ACTIONS(1500), + [anon_sym_from] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_print] = ACTIONS(1500), + [anon_sym_assert] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_del] = ACTIONS(1500), + [anon_sym_raise] = ACTIONS(1500), + [anon_sym_pass] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_elif] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_finally] = ACTIONS(1500), + [anon_sym_with] = ACTIONS(1500), + [anon_sym_def] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(1500), + [anon_sym_nonlocal] = ACTIONS(1500), + [anon_sym_exec] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_class] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_AT] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_not] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_lambda] = ACTIONS(1500), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1502), + [anon_sym_None] = ACTIONS(1500), + [sym_integer] = ACTIONS(1500), + [sym_float] = ACTIONS(1502), + [anon_sym_await] = ACTIONS(1500), + [anon_sym_api] = ACTIONS(1500), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1500), + [anon_sym_include] = ACTIONS(1500), + [anon_sym_DEF] = ACTIONS(1500), + [anon_sym_IF] = ACTIONS(1500), + [anon_sym_ELIF] = ACTIONS(1500), + [anon_sym_ELSE] = ACTIONS(1500), + [anon_sym_cdef] = ACTIONS(1500), + [anon_sym_cpdef] = ACTIONS(1500), + [anon_sym_new] = ACTIONS(1500), + [anon_sym_ctypedef] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_packed] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1500), + [sym_string_start] = ACTIONS(1502), + }, + [853] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5801), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4000), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(4644), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(2833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2835), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [854] = { + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5872), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3858), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(4380), + [sym_splat_type] = STATE(4327), + [sym_generic_type] = STATE(4327), + [sym_union_type] = STATE(4327), + [sym_constrained_type] = STATE(4327), + [sym_member_type] = STATE(4327), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_print] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_STAR_STAR] = ACTIONS(2817), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1353), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), + [anon_sym_not] = ACTIONS(2819), [anon_sym_AMP] = ACTIONS(65), [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(71), - [anon_sym_lambda] = ACTIONS(73), + [anon_sym_lambda] = ACTIONS(2821), [anon_sym_DOT_DOT_DOT] = ACTIONS(77), [anon_sym_None] = ACTIONS(79), [sym_integer] = ACTIONS(81), [sym_float] = ACTIONS(83), - [anon_sym_await] = ACTIONS(849), - [anon_sym_api] = ACTIONS(824), + [anon_sym_await] = ACTIONS(895), + [anon_sym_api] = ACTIONS(870), [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), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), + }, + [855] = { + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3733), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_print] = ACTIONS(2793), + [anon_sym_match] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(2795), + [anon_sym_api] = ACTIONS(2793), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), + }, + [856] = { + [sym__patterns] = STATE(5706), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(3293), + [sym_primary_expression] = STATE(3328), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(3295), + [sym_subscript] = STATE(3295), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5334), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_RPAREN] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_print] = ACTIONS(2845), + [anon_sym_match] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(2845), + [anon_sym_exec] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(2851), + [anon_sym_api] = ACTIONS(2845), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [857] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_type] = STATE(4262), + [sym_splat_type] = STATE(4492), + [sym_generic_type] = STATE(4492), + [sym_union_type] = STATE(4492), + [sym_constrained_type] = STATE(4492), + [sym_member_type] = STATE(4492), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_STAR_STAR] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [858] = { - [sym__patterns] = STATE(5511), - [sym_pattern] = STATE(4811), - [sym_tuple_pattern] = STATE(5233), - [sym_list_pattern] = STATE(5233), - [sym_list_splat_pattern] = STATE(3257), - [sym_primary_expression] = STATE(3286), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(3259), - [sym_subscript] = STATE(3259), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_int_type] = STATE(3530), - [sym__signedness] = STATE(3209), - [sym__longness] = STATE(3417), - [sym_function_pointer_type] = STATE(3530), - [sym_c_type] = STATE(5282), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_RPAREN] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_print] = ACTIONS(2805), - [anon_sym_match] = ACTIONS(2805), - [anon_sym_async] = ACTIONS(2805), - [anon_sym_exec] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(2811), - [anon_sym_api] = ACTIONS(2805), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_int] = ACTIONS(1380), - [anon_sym_double] = ACTIONS(1380), - [anon_sym_complex] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1384), - [anon_sym_unsigned] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4181), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(5224), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [859] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4181), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(4644), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [860] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), - }, - [861] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3746), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4858), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5724), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), - }, - [862] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym_list_splat_pattern] = STATE(2546), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3768), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5686), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2551), + [sym__patterns] = STATE(5595), + [sym_pattern] = STATE(4851), + [sym_tuple_pattern] = STATE(5343), + [sym_list_pattern] = STATE(5343), + [sym_list_splat_pattern] = STATE(3293), + [sym_primary_expression] = STATE(3328), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(3295), + [sym_subscript] = STATE(3295), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_int_type] = STATE(3596), + [sym__signedness] = STATE(3262), + [sym__longness] = STATE(3482), + [sym_function_pointer_type] = STATE(3596), + [sym_c_type] = STATE(5334), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_RPAREN] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2843), [anon_sym_print] = ACTIONS(2845), [anon_sym_match] = ACTIONS(2845), [anon_sym_async] = ACTIONS(2845), [anon_sym_exec] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(2847), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(2851), [anon_sym_api] = ACTIONS(2845), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_int] = ACTIONS(1414), + [anon_sym_double] = ACTIONS(1414), + [anon_sym_complex] = ACTIONS(1414), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_short] = ACTIONS(1420), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_volatile] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [861] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4181), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(5118), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [862] = { + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5161), + [sym_dictionary_splat] = STATE(5161), + [sym_parenthesized_list_splat] = STATE(5162), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4107), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5161), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [863] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4809), - [sym_parenthesized_list_splat] = STATE(4970), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3772), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(5026), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5545), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5801), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4000), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(4732), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(2833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2835), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [864] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3696), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4886), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5637), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2825), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4181), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(5126), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [865] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4992), + [sym_dictionary_splat] = STATE(4992), + [sym_parenthesized_list_splat] = STATE(4993), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3796), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_keyword_argument] = STATE(4992), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2859), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_print] = ACTIONS(2793), + [anon_sym_match] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(2795), + [anon_sym_api] = ACTIONS(2793), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [866] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(5220), + [sym_dictionary_splat] = STATE(5220), + [sym_parenthesized_list_splat] = STATE(5250), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3797), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_keyword_argument] = STATE(5220), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2861), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_print] = ACTIONS(2793), + [anon_sym_match] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(2795), + [anon_sym_api] = ACTIONS(2793), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [867] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym_list_splat_pattern] = STATE(2546), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3712), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5749), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(2845), - [anon_sym_exec] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_api] = ACTIONS(2845), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4181), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(5131), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [868] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2857), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_import] = ACTIONS(1476), + [anon_sym_cimport] = ACTIONS(1476), + [anon_sym_from] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_print] = ACTIONS(1476), + [anon_sym_assert] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_del] = ACTIONS(1476), + [anon_sym_raise] = ACTIONS(1476), + [anon_sym_pass] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_elif] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_try] = ACTIONS(1476), + [anon_sym_finally] = ACTIONS(1476), + [anon_sym_with] = ACTIONS(1476), + [anon_sym_def] = ACTIONS(1476), + [anon_sym_global] = ACTIONS(1476), + [anon_sym_nonlocal] = ACTIONS(1476), + [anon_sym_exec] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_not] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_lambda] = ACTIONS(1476), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_None] = ACTIONS(1476), + [sym_integer] = ACTIONS(1476), + [sym_float] = ACTIONS(1478), + [anon_sym_await] = ACTIONS(1476), + [anon_sym_api] = ACTIONS(1476), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1476), + [anon_sym_include] = ACTIONS(1476), + [anon_sym_DEF] = ACTIONS(1476), + [anon_sym_IF] = ACTIONS(1476), + [anon_sym_ELIF] = ACTIONS(1476), + [anon_sym_ELSE] = ACTIONS(1476), + [anon_sym_cdef] = ACTIONS(1476), + [anon_sym_cpdef] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_ctypedef] = ACTIONS(1476), + [anon_sym_public] = ACTIONS(1476), + [anon_sym_packed] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym_readonly] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1476), + [sym_string_start] = ACTIONS(1478), }, [869] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4924), + [sym_dictionary_splat] = STATE(4924), + [sym_parenthesized_list_splat] = STATE(4925), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3765), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_keyword_argument] = STATE(4924), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2863), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_print] = ACTIONS(2793), + [anon_sym_match] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(2795), + [anon_sym_api] = ACTIONS(2793), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [870] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2861), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(3909), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_type] = STATE(4547), + [sym_splat_type] = STATE(4492), + [sym_generic_type] = STATE(4492), + [sym_union_type] = STATE(4492), + [sym_constrained_type] = STATE(4492), + [sym_member_type] = STATE(4492), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_STAR_STAR] = ACTIONS(2721), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [871] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(5004), + [sym_dictionary_splat] = STATE(5004), + [sym_parenthesized_list_splat] = STATE(5008), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3769), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_keyword_argument] = STATE(5004), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2865), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_print] = ACTIONS(2793), + [anon_sym_match] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(2795), + [anon_sym_api] = ACTIONS(2793), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [872] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3733), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4923), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5594), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5801), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4000), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_type] = STATE(4622), + [sym_splat_type] = STATE(4760), + [sym_generic_type] = STATE(4760), + [sym_union_type] = STATE(4760), + [sym_constrained_type] = STATE(4760), + [sym_member_type] = STATE(4760), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(2781), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(467), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(2833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2835), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [873] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym_list_splat_pattern] = STATE(2546), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3727), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5826), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(2845), - [anon_sym_exec] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_api] = ACTIONS(2845), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3941), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(4584), + [sym_splat_type] = STATE(4327), + [sym_generic_type] = STATE(4327), + [sym_union_type] = STATE(4327), + [sym_constrained_type] = STATE(4327), + [sym_member_type] = STATE(4327), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_print] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_STAR_STAR] = ACTIONS(2817), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1353), + [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(895), + [anon_sym_api] = ACTIONS(870), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, [874] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5080), - [sym_parenthesized_list_splat] = STATE(5082), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3771), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4814), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5542), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3941), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_type] = STATE(4396), + [sym_splat_type] = STATE(4327), + [sym_generic_type] = STATE(4327), + [sym_union_type] = STATE(4327), + [sym_constrained_type] = STATE(4327), + [sym_member_type] = STATE(4327), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_print] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_STAR_STAR] = ACTIONS(2817), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1353), + [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(895), + [anon_sym_api] = ACTIONS(870), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym_string_start] = ACTIONS(109), }, [875] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4958), + [sym_dictionary_splat] = STATE(4958), + [sym_parenthesized_list_splat] = STATE(4959), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3781), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_keyword_argument] = STATE(4958), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_COMMA] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_print] = ACTIONS(2793), + [anon_sym_match] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(2795), + [anon_sym_api] = ACTIONS(2793), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [876] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [877] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(3933), + [sym__named_expression_lhs] = STATE(5687), + [sym_expression_list] = STATE(4447), + [sym_list_splat_pattern] = STATE(2465), + [sym_as_pattern] = STATE(3933), + [sym_expression] = STATE(3892), + [sym_primary_expression] = STATE(2159), + [sym_not_operator] = STATE(3933), + [sym_boolean_operator] = STATE(3933), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_comparison_operator] = STATE(3933), + [sym_lambda] = STATE(3933), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_conditional_expression] = STATE(3933), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_new_expression] = STATE(3933), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2871), + [anon_sym_from] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(2875), + [anon_sym_COLON] = ACTIONS(2877), + [anon_sym_match] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_exec] = ACTIONS(2875), + [anon_sym_EQ] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_lambda] = ACTIONS(2767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_type_conversion] = ACTIONS(2877), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2879), + [anon_sym_api] = ACTIONS(2875), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, [878] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [879] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3772), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(5026), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5545), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [880] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym_list_splat_pattern] = STATE(2546), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3734), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5598), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(2845), - [anon_sym_exec] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_api] = ACTIONS(2845), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_elif_clause] = STATE(1133), + [sym_else_clause] = STATE(1571), + [aux_sym_if_statement_repeat1] = STATE(979), + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2887), + [anon_sym_import] = ACTIONS(2887), + [anon_sym_cimport] = ACTIONS(2887), + [anon_sym_from] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_print] = ACTIONS(2887), + [anon_sym_assert] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_del] = ACTIONS(2887), + [anon_sym_raise] = ACTIONS(2887), + [anon_sym_pass] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_elif] = ACTIONS(2889), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_async] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_with] = ACTIONS(2887), + [anon_sym_def] = ACTIONS(2887), + [anon_sym_global] = ACTIONS(2887), + [anon_sym_nonlocal] = ACTIONS(2887), + [anon_sym_exec] = ACTIONS(2887), + [anon_sym_type] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_AT] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_lambda] = ACTIONS(2887), + [anon_sym_yield] = ACTIONS(2887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2885), + [anon_sym_None] = ACTIONS(2887), + [sym_integer] = ACTIONS(2887), + [sym_float] = ACTIONS(2885), + [anon_sym_await] = ACTIONS(2887), + [anon_sym_api] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2887), + [anon_sym_include] = ACTIONS(2887), + [anon_sym_DEF] = ACTIONS(2887), + [anon_sym_IF] = ACTIONS(2887), + [anon_sym_cdef] = ACTIONS(2887), + [anon_sym_cpdef] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_ctypedef] = ACTIONS(2887), + [anon_sym_public] = ACTIONS(2887), + [anon_sym_packed] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym_readonly] = ACTIONS(2887), + [anon_sym_sizeof] = ACTIONS(2887), + [sym_string_start] = ACTIONS(2885), }, [881] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4809), - [sym_parenthesized_list_splat] = STATE(4970), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3733), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4923), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5594), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_elif_clause] = STATE(1133), + [sym_else_clause] = STATE(1573), + [aux_sym_if_statement_repeat1] = STATE(902), + [ts_builtin_sym_end] = ACTIONS(2891), + [sym_identifier] = ACTIONS(2893), + [anon_sym_import] = ACTIONS(2893), + [anon_sym_cimport] = ACTIONS(2893), + [anon_sym_from] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_print] = ACTIONS(2893), + [anon_sym_assert] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_del] = ACTIONS(2893), + [anon_sym_raise] = ACTIONS(2893), + [anon_sym_pass] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2893), + [anon_sym_continue] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_elif] = ACTIONS(2889), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2893), + [anon_sym_async] = ACTIONS(2893), + [anon_sym_for] = ACTIONS(2893), + [anon_sym_while] = ACTIONS(2893), + [anon_sym_try] = ACTIONS(2893), + [anon_sym_with] = ACTIONS(2893), + [anon_sym_def] = ACTIONS(2893), + [anon_sym_global] = ACTIONS(2893), + [anon_sym_nonlocal] = ACTIONS(2893), + [anon_sym_exec] = ACTIONS(2893), + [anon_sym_type] = ACTIONS(2893), + [anon_sym_class] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_AT] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_TILDE] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_lambda] = ACTIONS(2893), + [anon_sym_yield] = ACTIONS(2893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2891), + [anon_sym_None] = ACTIONS(2893), + [sym_integer] = ACTIONS(2893), + [sym_float] = ACTIONS(2891), + [anon_sym_await] = ACTIONS(2893), + [anon_sym_api] = ACTIONS(2893), + [sym_true] = ACTIONS(2893), + [sym_false] = ACTIONS(2893), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2893), + [anon_sym_include] = ACTIONS(2893), + [anon_sym_DEF] = ACTIONS(2893), + [anon_sym_IF] = ACTIONS(2893), + [anon_sym_cdef] = ACTIONS(2893), + [anon_sym_cpdef] = ACTIONS(2893), + [anon_sym_new] = ACTIONS(2893), + [anon_sym_ctypedef] = ACTIONS(2893), + [anon_sym_public] = ACTIONS(2893), + [anon_sym_packed] = ACTIONS(2893), + [anon_sym_inline] = ACTIONS(2893), + [anon_sym_readonly] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2893), + [sym_string_start] = ACTIONS(2891), }, [882] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2879), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(5129), + [sym_parenthesized_list_splat] = STATE(5130), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3760), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4915), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5708), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [883] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_except_clause] = STATE(883), + [aux_sym_try_statement_repeat1] = STATE(883), + [ts_builtin_sym_end] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2899), + [anon_sym_import] = ACTIONS(2899), + [anon_sym_cimport] = ACTIONS(2899), + [anon_sym_from] = ACTIONS(2899), + [anon_sym_LPAREN] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_print] = ACTIONS(2899), + [anon_sym_assert] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_del] = ACTIONS(2899), + [anon_sym_raise] = ACTIONS(2899), + [anon_sym_pass] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(2899), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_else] = ACTIONS(2899), + [anon_sym_match] = ACTIONS(2899), + [anon_sym_async] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_while] = ACTIONS(2899), + [anon_sym_try] = ACTIONS(2899), + [anon_sym_except] = ACTIONS(2901), + [anon_sym_finally] = ACTIONS(2899), + [anon_sym_with] = ACTIONS(2899), + [anon_sym_def] = ACTIONS(2899), + [anon_sym_global] = ACTIONS(2899), + [anon_sym_nonlocal] = ACTIONS(2899), + [anon_sym_exec] = ACTIONS(2899), + [anon_sym_type] = ACTIONS(2899), + [anon_sym_class] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_AT] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_not] = ACTIONS(2899), + [anon_sym_AMP] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_lambda] = ACTIONS(2899), + [anon_sym_yield] = ACTIONS(2899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2897), + [anon_sym_None] = ACTIONS(2899), + [sym_integer] = ACTIONS(2899), + [sym_float] = ACTIONS(2897), + [anon_sym_await] = ACTIONS(2899), + [anon_sym_api] = ACTIONS(2899), + [sym_true] = ACTIONS(2899), + [sym_false] = ACTIONS(2899), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2899), + [anon_sym_include] = ACTIONS(2899), + [anon_sym_DEF] = ACTIONS(2899), + [anon_sym_IF] = ACTIONS(2899), + [anon_sym_cdef] = ACTIONS(2899), + [anon_sym_cpdef] = ACTIONS(2899), + [anon_sym_new] = ACTIONS(2899), + [anon_sym_ctypedef] = ACTIONS(2899), + [anon_sym_public] = ACTIONS(2899), + [anon_sym_packed] = ACTIONS(2899), + [anon_sym_inline] = ACTIONS(2899), + [anon_sym_readonly] = ACTIONS(2899), + [anon_sym_sizeof] = ACTIONS(2899), + [sym_string_start] = ACTIONS(2897), }, [884] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_except_group_clause] = STATE(884), + [aux_sym_try_statement_repeat2] = STATE(884), + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2906), + [anon_sym_import] = ACTIONS(2906), + [anon_sym_cimport] = ACTIONS(2906), + [anon_sym_from] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2904), + [anon_sym_print] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_del] = ACTIONS(2906), + [anon_sym_raise] = ACTIONS(2906), + [anon_sym_pass] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_else] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_async] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_except_STAR] = ACTIONS(2908), + [anon_sym_finally] = ACTIONS(2906), + [anon_sym_with] = ACTIONS(2906), + [anon_sym_def] = ACTIONS(2906), + [anon_sym_global] = ACTIONS(2906), + [anon_sym_nonlocal] = ACTIONS(2906), + [anon_sym_exec] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_AT] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_not] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), + [anon_sym_lambda] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2904), + [anon_sym_None] = ACTIONS(2906), + [sym_integer] = ACTIONS(2906), + [sym_float] = ACTIONS(2904), + [anon_sym_await] = ACTIONS(2906), + [anon_sym_api] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2906), + [anon_sym_include] = ACTIONS(2906), + [anon_sym_DEF] = ACTIONS(2906), + [anon_sym_IF] = ACTIONS(2906), + [anon_sym_cdef] = ACTIONS(2906), + [anon_sym_cpdef] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_ctypedef] = ACTIONS(2906), + [anon_sym_public] = ACTIONS(2906), + [anon_sym_packed] = ACTIONS(2906), + [anon_sym_inline] = ACTIONS(2906), + [anon_sym_readonly] = ACTIONS(2906), + [anon_sym_sizeof] = ACTIONS(2906), + [sym_string_start] = ACTIONS(2904), }, [885] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2885), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3814), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4911), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5521), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [886] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3756), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4948), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5728), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym_list_splat_pattern] = STATE(2610), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3811), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5685), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(2917), + [anon_sym_exec] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_api] = ACTIONS(2917), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [887] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym_list_splat_pattern] = STATE(2546), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3697), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5585), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(2845), - [anon_sym_exec] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_api] = ACTIONS(2845), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(5252), + [sym_parenthesized_list_splat] = STATE(5257), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4784), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5773), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [888] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5080), - [sym_parenthesized_list_splat] = STATE(5082), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3756), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4948), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5728), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [889] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [890] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_elif_clause] = STATE(1133), + [sym_else_clause] = STATE(1525), + [aux_sym_if_statement_repeat1] = STATE(880), + [ts_builtin_sym_end] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), + [anon_sym_import] = ACTIONS(2929), + [anon_sym_cimport] = ACTIONS(2929), + [anon_sym_from] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_print] = ACTIONS(2929), + [anon_sym_assert] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_del] = ACTIONS(2929), + [anon_sym_raise] = ACTIONS(2929), + [anon_sym_pass] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_elif] = ACTIONS(2889), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_async] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_while] = ACTIONS(2929), + [anon_sym_try] = ACTIONS(2929), + [anon_sym_with] = ACTIONS(2929), + [anon_sym_def] = ACTIONS(2929), + [anon_sym_global] = ACTIONS(2929), + [anon_sym_nonlocal] = ACTIONS(2929), + [anon_sym_exec] = ACTIONS(2929), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_class] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_AT] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_not] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2927), + [anon_sym_lambda] = ACTIONS(2929), + [anon_sym_yield] = ACTIONS(2929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2927), + [anon_sym_None] = ACTIONS(2929), + [sym_integer] = ACTIONS(2929), + [sym_float] = ACTIONS(2927), + [anon_sym_await] = ACTIONS(2929), + [anon_sym_api] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2929), + [anon_sym_include] = ACTIONS(2929), + [anon_sym_DEF] = ACTIONS(2929), + [anon_sym_IF] = ACTIONS(2929), + [anon_sym_cdef] = ACTIONS(2929), + [anon_sym_cpdef] = ACTIONS(2929), + [anon_sym_new] = ACTIONS(2929), + [anon_sym_ctypedef] = ACTIONS(2929), + [anon_sym_public] = ACTIONS(2929), + [anon_sym_packed] = ACTIONS(2929), + [anon_sym_inline] = ACTIONS(2929), + [anon_sym_readonly] = ACTIONS(2929), + [anon_sym_sizeof] = ACTIONS(2929), + [sym_string_start] = ACTIONS(2927), }, [891] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [892] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [893] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3771), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4814), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5542), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_ELIF_clause] = STATE(1132), + [sym_ELSE_clause] = STATE(1475), + [aux_sym_IF_statement_repeat1] = STATE(986), + [ts_builtin_sym_end] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2937), + [anon_sym_import] = ACTIONS(2937), + [anon_sym_cimport] = ACTIONS(2937), + [anon_sym_from] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_print] = ACTIONS(2937), + [anon_sym_assert] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_del] = ACTIONS(2937), + [anon_sym_raise] = ACTIONS(2937), + [anon_sym_pass] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_async] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_while] = ACTIONS(2937), + [anon_sym_try] = ACTIONS(2937), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_def] = ACTIONS(2937), + [anon_sym_global] = ACTIONS(2937), + [anon_sym_nonlocal] = ACTIONS(2937), + [anon_sym_exec] = ACTIONS(2937), + [anon_sym_type] = ACTIONS(2937), + [anon_sym_class] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_AT] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_not] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_lambda] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2935), + [anon_sym_None] = ACTIONS(2937), + [sym_integer] = ACTIONS(2937), + [sym_float] = ACTIONS(2935), + [anon_sym_await] = ACTIONS(2937), + [anon_sym_api] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2937), + [anon_sym_include] = ACTIONS(2937), + [anon_sym_DEF] = ACTIONS(2937), + [anon_sym_IF] = ACTIONS(2937), + [anon_sym_ELIF] = ACTIONS(2939), + [anon_sym_ELSE] = ACTIONS(2941), + [anon_sym_cdef] = ACTIONS(2937), + [anon_sym_cpdef] = ACTIONS(2937), + [anon_sym_new] = ACTIONS(2937), + [anon_sym_ctypedef] = ACTIONS(2937), + [anon_sym_public] = ACTIONS(2937), + [anon_sym_packed] = ACTIONS(2937), + [anon_sym_inline] = ACTIONS(2937), + [anon_sym_readonly] = ACTIONS(2937), + [anon_sym_sizeof] = ACTIONS(2937), + [sym_string_start] = ACTIONS(2935), }, [894] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym_list_splat_pattern] = STATE(2546), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3718), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5604), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(2845), - [anon_sym_exec] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_api] = ACTIONS(2845), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_ELIF_clause] = STATE(1132), + [sym_ELSE_clause] = STATE(1479), + [aux_sym_IF_statement_repeat1] = STATE(938), + [ts_builtin_sym_end] = ACTIONS(2943), + [sym_identifier] = ACTIONS(2945), + [anon_sym_import] = ACTIONS(2945), + [anon_sym_cimport] = ACTIONS(2945), + [anon_sym_from] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_print] = ACTIONS(2945), + [anon_sym_assert] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_del] = ACTIONS(2945), + [anon_sym_raise] = ACTIONS(2945), + [anon_sym_pass] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_match] = ACTIONS(2945), + [anon_sym_async] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_try] = ACTIONS(2945), + [anon_sym_with] = ACTIONS(2945), + [anon_sym_def] = ACTIONS(2945), + [anon_sym_global] = ACTIONS(2945), + [anon_sym_nonlocal] = ACTIONS(2945), + [anon_sym_exec] = ACTIONS(2945), + [anon_sym_type] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_AT] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_not] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_LT] = ACTIONS(2943), + [anon_sym_lambda] = ACTIONS(2945), + [anon_sym_yield] = ACTIONS(2945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2943), + [anon_sym_None] = ACTIONS(2945), + [sym_integer] = ACTIONS(2945), + [sym_float] = ACTIONS(2943), + [anon_sym_await] = ACTIONS(2945), + [anon_sym_api] = ACTIONS(2945), + [sym_true] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2945), + [anon_sym_include] = ACTIONS(2945), + [anon_sym_DEF] = ACTIONS(2945), + [anon_sym_IF] = ACTIONS(2945), + [anon_sym_ELIF] = ACTIONS(2939), + [anon_sym_ELSE] = ACTIONS(2941), + [anon_sym_cdef] = ACTIONS(2945), + [anon_sym_cpdef] = ACTIONS(2945), + [anon_sym_new] = ACTIONS(2945), + [anon_sym_ctypedef] = ACTIONS(2945), + [anon_sym_public] = ACTIONS(2945), + [anon_sym_packed] = ACTIONS(2945), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym_readonly] = ACTIONS(2945), + [anon_sym_sizeof] = ACTIONS(2945), + [sym_string_start] = ACTIONS(2943), }, [895] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4928), - [sym_parenthesized_list_splat] = STATE(4929), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3716), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4895), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5740), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2947), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [896] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [897] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_elif_clause] = STATE(1092), + [sym_else_clause] = STATE(1598), + [aux_sym_if_statement_repeat1] = STATE(903), + [sym_identifier] = ACTIONS(2929), + [anon_sym_import] = ACTIONS(2929), + [anon_sym_cimport] = ACTIONS(2929), + [anon_sym_from] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_print] = ACTIONS(2929), + [anon_sym_assert] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_del] = ACTIONS(2929), + [anon_sym_raise] = ACTIONS(2929), + [anon_sym_pass] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_elif] = ACTIONS(2951), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(2929), + [anon_sym_async] = ACTIONS(2929), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_while] = ACTIONS(2929), + [anon_sym_try] = ACTIONS(2929), + [anon_sym_with] = ACTIONS(2929), + [anon_sym_def] = ACTIONS(2929), + [anon_sym_global] = ACTIONS(2929), + [anon_sym_nonlocal] = ACTIONS(2929), + [anon_sym_exec] = ACTIONS(2929), + [anon_sym_type] = ACTIONS(2929), + [anon_sym_class] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_AT] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_not] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2927), + [anon_sym_lambda] = ACTIONS(2929), + [anon_sym_yield] = ACTIONS(2929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2927), + [anon_sym_None] = ACTIONS(2929), + [sym_integer] = ACTIONS(2929), + [sym_float] = ACTIONS(2927), + [anon_sym_await] = ACTIONS(2929), + [anon_sym_api] = ACTIONS(2929), + [sym_true] = ACTIONS(2929), + [sym_false] = ACTIONS(2929), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2929), + [anon_sym_include] = ACTIONS(2929), + [anon_sym_DEF] = ACTIONS(2929), + [anon_sym_IF] = ACTIONS(2929), + [anon_sym_cdef] = ACTIONS(2929), + [anon_sym_cpdef] = ACTIONS(2929), + [anon_sym_new] = ACTIONS(2929), + [anon_sym_ctypedef] = ACTIONS(2929), + [anon_sym_public] = ACTIONS(2929), + [anon_sym_packed] = ACTIONS(2929), + [anon_sym_inline] = ACTIONS(2929), + [anon_sym_readonly] = ACTIONS(2929), + [anon_sym_sizeof] = ACTIONS(2929), + [sym__dedent] = ACTIONS(2927), + [sym_string_start] = ACTIONS(2927), }, [898] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3788), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4982), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5632), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [899] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym_list_splat_pattern] = STATE(2610), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3770), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5774), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(2917), + [anon_sym_exec] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_api] = ACTIONS(2917), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [900] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3716), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4895), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5740), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4886), + [sym_parenthesized_list_splat] = STATE(4888), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3736), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4857), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5746), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [901] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym_list_splat_pattern] = STATE(2546), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3739), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5734), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(2845), - [anon_sym_exec] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_api] = ACTIONS(2845), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_ELIF_clause] = STATE(1070), + [sym_ELSE_clause] = STATE(1477), + [aux_sym_IF_statement_repeat1] = STATE(911), + [sym_identifier] = ACTIONS(2957), + [anon_sym_import] = ACTIONS(2957), + [anon_sym_cimport] = ACTIONS(2957), + [anon_sym_from] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_print] = ACTIONS(2957), + [anon_sym_assert] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_del] = ACTIONS(2957), + [anon_sym_raise] = ACTIONS(2957), + [anon_sym_pass] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_async] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_with] = ACTIONS(2957), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_global] = ACTIONS(2957), + [anon_sym_nonlocal] = ACTIONS(2957), + [anon_sym_exec] = ACTIONS(2957), + [anon_sym_type] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_AT] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2959), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2959), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2959), + [anon_sym_lambda] = ACTIONS(2957), + [anon_sym_yield] = ACTIONS(2957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), + [anon_sym_None] = ACTIONS(2957), + [sym_integer] = ACTIONS(2957), + [sym_float] = ACTIONS(2959), + [anon_sym_await] = ACTIONS(2957), + [anon_sym_api] = ACTIONS(2957), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2957), + [anon_sym_include] = ACTIONS(2957), + [anon_sym_DEF] = ACTIONS(2957), + [anon_sym_IF] = ACTIONS(2957), + [anon_sym_ELIF] = ACTIONS(2961), + [anon_sym_ELSE] = ACTIONS(2963), + [anon_sym_cdef] = ACTIONS(2957), + [anon_sym_cpdef] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_ctypedef] = ACTIONS(2957), + [anon_sym_public] = ACTIONS(2957), + [anon_sym_packed] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2957), + [anon_sym_sizeof] = ACTIONS(2957), + [sym__dedent] = ACTIONS(2959), + [sym_string_start] = ACTIONS(2959), }, [902] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_elif_clause] = STATE(1133), + [sym_else_clause] = STATE(1589), + [aux_sym_if_statement_repeat1] = STATE(979), + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2967), + [anon_sym_import] = ACTIONS(2967), + [anon_sym_cimport] = ACTIONS(2967), + [anon_sym_from] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_print] = ACTIONS(2967), + [anon_sym_assert] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_del] = ACTIONS(2967), + [anon_sym_raise] = ACTIONS(2967), + [anon_sym_pass] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_elif] = ACTIONS(2889), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2967), + [anon_sym_async] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2967), + [anon_sym_with] = ACTIONS(2967), + [anon_sym_def] = ACTIONS(2967), + [anon_sym_global] = ACTIONS(2967), + [anon_sym_nonlocal] = ACTIONS(2967), + [anon_sym_exec] = ACTIONS(2967), + [anon_sym_type] = ACTIONS(2967), + [anon_sym_class] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_AT] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_not] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_lambda] = ACTIONS(2967), + [anon_sym_yield] = ACTIONS(2967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_None] = ACTIONS(2967), + [sym_integer] = ACTIONS(2967), + [sym_float] = ACTIONS(2965), + [anon_sym_await] = ACTIONS(2967), + [anon_sym_api] = ACTIONS(2967), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2967), + [anon_sym_include] = ACTIONS(2967), + [anon_sym_DEF] = ACTIONS(2967), + [anon_sym_IF] = ACTIONS(2967), + [anon_sym_cdef] = ACTIONS(2967), + [anon_sym_cpdef] = ACTIONS(2967), + [anon_sym_new] = ACTIONS(2967), + [anon_sym_ctypedef] = ACTIONS(2967), + [anon_sym_public] = ACTIONS(2967), + [anon_sym_packed] = ACTIONS(2967), + [anon_sym_inline] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2967), + [anon_sym_sizeof] = ACTIONS(2967), + [sym_string_start] = ACTIONS(2965), }, [903] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_elif_clause] = STATE(1092), + [sym_else_clause] = STATE(1494), + [aux_sym_if_statement_repeat1] = STATE(975), + [sym_identifier] = ACTIONS(2887), + [anon_sym_import] = ACTIONS(2887), + [anon_sym_cimport] = ACTIONS(2887), + [anon_sym_from] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_print] = ACTIONS(2887), + [anon_sym_assert] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_del] = ACTIONS(2887), + [anon_sym_raise] = ACTIONS(2887), + [anon_sym_pass] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_elif] = ACTIONS(2951), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_async] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_with] = ACTIONS(2887), + [anon_sym_def] = ACTIONS(2887), + [anon_sym_global] = ACTIONS(2887), + [anon_sym_nonlocal] = ACTIONS(2887), + [anon_sym_exec] = ACTIONS(2887), + [anon_sym_type] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_AT] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_lambda] = ACTIONS(2887), + [anon_sym_yield] = ACTIONS(2887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2885), + [anon_sym_None] = ACTIONS(2887), + [sym_integer] = ACTIONS(2887), + [sym_float] = ACTIONS(2885), + [anon_sym_await] = ACTIONS(2887), + [anon_sym_api] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2887), + [anon_sym_include] = ACTIONS(2887), + [anon_sym_DEF] = ACTIONS(2887), + [anon_sym_IF] = ACTIONS(2887), + [anon_sym_cdef] = ACTIONS(2887), + [anon_sym_cpdef] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_ctypedef] = ACTIONS(2887), + [anon_sym_public] = ACTIONS(2887), + [anon_sym_packed] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym_readonly] = ACTIONS(2887), + [anon_sym_sizeof] = ACTIONS(2887), + [sym__dedent] = ACTIONS(2885), + [sym_string_start] = ACTIONS(2885), }, [904] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_elif_clause] = STATE(1092), + [sym_else_clause] = STATE(1497), + [aux_sym_if_statement_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(2893), + [anon_sym_import] = ACTIONS(2893), + [anon_sym_cimport] = ACTIONS(2893), + [anon_sym_from] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_print] = ACTIONS(2893), + [anon_sym_assert] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_del] = ACTIONS(2893), + [anon_sym_raise] = ACTIONS(2893), + [anon_sym_pass] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2893), + [anon_sym_continue] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_elif] = ACTIONS(2951), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(2893), + [anon_sym_async] = ACTIONS(2893), + [anon_sym_for] = ACTIONS(2893), + [anon_sym_while] = ACTIONS(2893), + [anon_sym_try] = ACTIONS(2893), + [anon_sym_with] = ACTIONS(2893), + [anon_sym_def] = ACTIONS(2893), + [anon_sym_global] = ACTIONS(2893), + [anon_sym_nonlocal] = ACTIONS(2893), + [anon_sym_exec] = ACTIONS(2893), + [anon_sym_type] = ACTIONS(2893), + [anon_sym_class] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_AT] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_TILDE] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_lambda] = ACTIONS(2893), + [anon_sym_yield] = ACTIONS(2893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2891), + [anon_sym_None] = ACTIONS(2893), + [sym_integer] = ACTIONS(2893), + [sym_float] = ACTIONS(2891), + [anon_sym_await] = ACTIONS(2893), + [anon_sym_api] = ACTIONS(2893), + [sym_true] = ACTIONS(2893), + [sym_false] = ACTIONS(2893), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2893), + [anon_sym_include] = ACTIONS(2893), + [anon_sym_DEF] = ACTIONS(2893), + [anon_sym_IF] = ACTIONS(2893), + [anon_sym_cdef] = ACTIONS(2893), + [anon_sym_cpdef] = ACTIONS(2893), + [anon_sym_new] = ACTIONS(2893), + [anon_sym_ctypedef] = ACTIONS(2893), + [anon_sym_public] = ACTIONS(2893), + [anon_sym_packed] = ACTIONS(2893), + [anon_sym_inline] = ACTIONS(2893), + [anon_sym_readonly] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2893), + [sym__dedent] = ACTIONS(2891), + [sym_string_start] = ACTIONS(2891), }, [905] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [906] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(5165), - [sym_parenthesized_list_splat] = STATE(5165), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3707), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4864), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5577), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [907] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat] = STATE(4800), - [sym_parenthesized_list_splat] = STATE(4800), - [sym_list_splat_pattern] = STATE(2546), - [sym_as_pattern] = STATE(2536), - [sym_expression] = STATE(3731), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_yield] = STATE(4800), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym__collection_elements] = STATE(5765), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_print] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(2845), - [anon_sym_exec] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_api] = ACTIONS(2845), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_except_clause] = STATE(907), + [aux_sym_try_statement_repeat1] = STATE(907), + [sym_identifier] = ACTIONS(2899), + [anon_sym_import] = ACTIONS(2899), + [anon_sym_cimport] = ACTIONS(2899), + [anon_sym_from] = ACTIONS(2899), + [anon_sym_LPAREN] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_print] = ACTIONS(2899), + [anon_sym_assert] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_del] = ACTIONS(2899), + [anon_sym_raise] = ACTIONS(2899), + [anon_sym_pass] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(2899), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_else] = ACTIONS(2899), + [anon_sym_match] = ACTIONS(2899), + [anon_sym_async] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_while] = ACTIONS(2899), + [anon_sym_try] = ACTIONS(2899), + [anon_sym_except] = ACTIONS(2973), + [anon_sym_finally] = ACTIONS(2899), + [anon_sym_with] = ACTIONS(2899), + [anon_sym_def] = ACTIONS(2899), + [anon_sym_global] = ACTIONS(2899), + [anon_sym_nonlocal] = ACTIONS(2899), + [anon_sym_exec] = ACTIONS(2899), + [anon_sym_type] = ACTIONS(2899), + [anon_sym_class] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_AT] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_not] = ACTIONS(2899), + [anon_sym_AMP] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_lambda] = ACTIONS(2899), + [anon_sym_yield] = ACTIONS(2899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2897), + [anon_sym_None] = ACTIONS(2899), + [sym_integer] = ACTIONS(2899), + [sym_float] = ACTIONS(2897), + [anon_sym_await] = ACTIONS(2899), + [anon_sym_api] = ACTIONS(2899), + [sym_true] = ACTIONS(2899), + [sym_false] = ACTIONS(2899), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2899), + [anon_sym_include] = ACTIONS(2899), + [anon_sym_DEF] = ACTIONS(2899), + [anon_sym_IF] = ACTIONS(2899), + [anon_sym_cdef] = ACTIONS(2899), + [anon_sym_cpdef] = ACTIONS(2899), + [anon_sym_new] = ACTIONS(2899), + [anon_sym_ctypedef] = ACTIONS(2899), + [anon_sym_public] = ACTIONS(2899), + [anon_sym_packed] = ACTIONS(2899), + [anon_sym_inline] = ACTIONS(2899), + [anon_sym_readonly] = ACTIONS(2899), + [anon_sym_sizeof] = ACTIONS(2899), + [sym__dedent] = ACTIONS(2897), + [sym_string_start] = ACTIONS(2897), }, [908] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_except_group_clause] = STATE(908), + [aux_sym_try_statement_repeat2] = STATE(908), + [sym_identifier] = ACTIONS(2906), + [anon_sym_import] = ACTIONS(2906), + [anon_sym_cimport] = ACTIONS(2906), + [anon_sym_from] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2904), + [anon_sym_print] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_del] = ACTIONS(2906), + [anon_sym_raise] = ACTIONS(2906), + [anon_sym_pass] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_else] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_async] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_except_STAR] = ACTIONS(2976), + [anon_sym_finally] = ACTIONS(2906), + [anon_sym_with] = ACTIONS(2906), + [anon_sym_def] = ACTIONS(2906), + [anon_sym_global] = ACTIONS(2906), + [anon_sym_nonlocal] = ACTIONS(2906), + [anon_sym_exec] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_AT] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_not] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), + [anon_sym_lambda] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2904), + [anon_sym_None] = ACTIONS(2906), + [sym_integer] = ACTIONS(2906), + [sym_float] = ACTIONS(2904), + [anon_sym_await] = ACTIONS(2906), + [anon_sym_api] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2906), + [anon_sym_include] = ACTIONS(2906), + [anon_sym_DEF] = ACTIONS(2906), + [anon_sym_IF] = ACTIONS(2906), + [anon_sym_cdef] = ACTIONS(2906), + [anon_sym_cpdef] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_ctypedef] = ACTIONS(2906), + [anon_sym_public] = ACTIONS(2906), + [anon_sym_packed] = ACTIONS(2906), + [anon_sym_inline] = ACTIONS(2906), + [anon_sym_readonly] = ACTIONS(2906), + [anon_sym_sizeof] = ACTIONS(2906), + [sym__dedent] = ACTIONS(2904), + [sym_string_start] = ACTIONS(2904), }, [909] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [910] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2929), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [911] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_ELIF_clause] = STATE(1070), + [sym_ELSE_clause] = STATE(1547), + [aux_sym_IF_statement_repeat1] = STATE(978), + [sym_identifier] = ACTIONS(2937), + [anon_sym_import] = ACTIONS(2937), + [anon_sym_cimport] = ACTIONS(2937), + [anon_sym_from] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_print] = ACTIONS(2937), + [anon_sym_assert] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_del] = ACTIONS(2937), + [anon_sym_raise] = ACTIONS(2937), + [anon_sym_pass] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_match] = ACTIONS(2937), + [anon_sym_async] = ACTIONS(2937), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_while] = ACTIONS(2937), + [anon_sym_try] = ACTIONS(2937), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_def] = ACTIONS(2937), + [anon_sym_global] = ACTIONS(2937), + [anon_sym_nonlocal] = ACTIONS(2937), + [anon_sym_exec] = ACTIONS(2937), + [anon_sym_type] = ACTIONS(2937), + [anon_sym_class] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_AT] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_not] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_lambda] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2935), + [anon_sym_None] = ACTIONS(2937), + [sym_integer] = ACTIONS(2937), + [sym_float] = ACTIONS(2935), + [anon_sym_await] = ACTIONS(2937), + [anon_sym_api] = ACTIONS(2937), + [sym_true] = ACTIONS(2937), + [sym_false] = ACTIONS(2937), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2937), + [anon_sym_include] = ACTIONS(2937), + [anon_sym_DEF] = ACTIONS(2937), + [anon_sym_IF] = ACTIONS(2937), + [anon_sym_ELIF] = ACTIONS(2961), + [anon_sym_ELSE] = ACTIONS(2963), + [anon_sym_cdef] = ACTIONS(2937), + [anon_sym_cpdef] = ACTIONS(2937), + [anon_sym_new] = ACTIONS(2937), + [anon_sym_ctypedef] = ACTIONS(2937), + [anon_sym_public] = ACTIONS(2937), + [anon_sym_packed] = ACTIONS(2937), + [anon_sym_inline] = ACTIONS(2937), + [anon_sym_readonly] = ACTIONS(2937), + [anon_sym_sizeof] = ACTIONS(2937), + [sym__dedent] = ACTIONS(2935), + [sym_string_start] = ACTIONS(2935), }, [912] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2933), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_ELIF_clause] = STATE(1070), + [sym_ELSE_clause] = STATE(1556), + [aux_sym_IF_statement_repeat1] = STATE(915), + [sym_identifier] = ACTIONS(2945), + [anon_sym_import] = ACTIONS(2945), + [anon_sym_cimport] = ACTIONS(2945), + [anon_sym_from] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_print] = ACTIONS(2945), + [anon_sym_assert] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_del] = ACTIONS(2945), + [anon_sym_raise] = ACTIONS(2945), + [anon_sym_pass] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_match] = ACTIONS(2945), + [anon_sym_async] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_try] = ACTIONS(2945), + [anon_sym_with] = ACTIONS(2945), + [anon_sym_def] = ACTIONS(2945), + [anon_sym_global] = ACTIONS(2945), + [anon_sym_nonlocal] = ACTIONS(2945), + [anon_sym_exec] = ACTIONS(2945), + [anon_sym_type] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_AT] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_not] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_LT] = ACTIONS(2943), + [anon_sym_lambda] = ACTIONS(2945), + [anon_sym_yield] = ACTIONS(2945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2943), + [anon_sym_None] = ACTIONS(2945), + [sym_integer] = ACTIONS(2945), + [sym_float] = ACTIONS(2943), + [anon_sym_await] = ACTIONS(2945), + [anon_sym_api] = ACTIONS(2945), + [sym_true] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2945), + [anon_sym_include] = ACTIONS(2945), + [anon_sym_DEF] = ACTIONS(2945), + [anon_sym_IF] = ACTIONS(2945), + [anon_sym_ELIF] = ACTIONS(2961), + [anon_sym_ELSE] = ACTIONS(2963), + [anon_sym_cdef] = ACTIONS(2945), + [anon_sym_cpdef] = ACTIONS(2945), + [anon_sym_new] = ACTIONS(2945), + [anon_sym_ctypedef] = ACTIONS(2945), + [anon_sym_public] = ACTIONS(2945), + [anon_sym_packed] = ACTIONS(2945), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym_readonly] = ACTIONS(2945), + [anon_sym_sizeof] = ACTIONS(2945), + [sym__dedent] = ACTIONS(2943), + [sym_string_start] = ACTIONS(2943), }, [913] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_elif_clause] = STATE(1092), + [sym_else_clause] = STATE(1576), + [aux_sym_if_statement_repeat1] = STATE(975), + [sym_identifier] = ACTIONS(2967), + [anon_sym_import] = ACTIONS(2967), + [anon_sym_cimport] = ACTIONS(2967), + [anon_sym_from] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_print] = ACTIONS(2967), + [anon_sym_assert] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_del] = ACTIONS(2967), + [anon_sym_raise] = ACTIONS(2967), + [anon_sym_pass] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_elif] = ACTIONS(2951), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(2967), + [anon_sym_async] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2967), + [anon_sym_with] = ACTIONS(2967), + [anon_sym_def] = ACTIONS(2967), + [anon_sym_global] = ACTIONS(2967), + [anon_sym_nonlocal] = ACTIONS(2967), + [anon_sym_exec] = ACTIONS(2967), + [anon_sym_type] = ACTIONS(2967), + [anon_sym_class] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_AT] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_not] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_lambda] = ACTIONS(2967), + [anon_sym_yield] = ACTIONS(2967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), + [anon_sym_None] = ACTIONS(2967), + [sym_integer] = ACTIONS(2967), + [sym_float] = ACTIONS(2965), + [anon_sym_await] = ACTIONS(2967), + [anon_sym_api] = ACTIONS(2967), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2967), + [anon_sym_include] = ACTIONS(2967), + [anon_sym_DEF] = ACTIONS(2967), + [anon_sym_IF] = ACTIONS(2967), + [anon_sym_cdef] = ACTIONS(2967), + [anon_sym_cpdef] = ACTIONS(2967), + [anon_sym_new] = ACTIONS(2967), + [anon_sym_ctypedef] = ACTIONS(2967), + [anon_sym_public] = ACTIONS(2967), + [anon_sym_packed] = ACTIONS(2967), + [anon_sym_inline] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2967), + [anon_sym_sizeof] = ACTIONS(2967), + [sym__dedent] = ACTIONS(2965), + [sym_string_start] = ACTIONS(2965), }, [914] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2937), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3789), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(5102), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5714), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [915] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_ELIF_clause] = STATE(1070), + [sym_ELSE_clause] = STATE(1453), + [aux_sym_IF_statement_repeat1] = STATE(978), + [sym_identifier] = ACTIONS(2983), + [anon_sym_import] = ACTIONS(2983), + [anon_sym_cimport] = ACTIONS(2983), + [anon_sym_from] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_print] = ACTIONS(2983), + [anon_sym_assert] = ACTIONS(2983), + [anon_sym_return] = ACTIONS(2983), + [anon_sym_del] = ACTIONS(2983), + [anon_sym_raise] = ACTIONS(2983), + [anon_sym_pass] = ACTIONS(2983), + [anon_sym_break] = ACTIONS(2983), + [anon_sym_continue] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2983), + [anon_sym_match] = ACTIONS(2983), + [anon_sym_async] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2983), + [anon_sym_while] = ACTIONS(2983), + [anon_sym_try] = ACTIONS(2983), + [anon_sym_with] = ACTIONS(2983), + [anon_sym_def] = ACTIONS(2983), + [anon_sym_global] = ACTIONS(2983), + [anon_sym_nonlocal] = ACTIONS(2983), + [anon_sym_exec] = ACTIONS(2983), + [anon_sym_type] = ACTIONS(2983), + [anon_sym_class] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_AT] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_lambda] = ACTIONS(2983), + [anon_sym_yield] = ACTIONS(2983), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2985), + [anon_sym_None] = ACTIONS(2983), + [sym_integer] = ACTIONS(2983), + [sym_float] = ACTIONS(2985), + [anon_sym_await] = ACTIONS(2983), + [anon_sym_api] = ACTIONS(2983), + [sym_true] = ACTIONS(2983), + [sym_false] = ACTIONS(2983), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2983), + [anon_sym_include] = ACTIONS(2983), + [anon_sym_DEF] = ACTIONS(2983), + [anon_sym_IF] = ACTIONS(2983), + [anon_sym_ELIF] = ACTIONS(2961), + [anon_sym_ELSE] = ACTIONS(2963), + [anon_sym_cdef] = ACTIONS(2983), + [anon_sym_cpdef] = ACTIONS(2983), + [anon_sym_new] = ACTIONS(2983), + [anon_sym_ctypedef] = ACTIONS(2983), + [anon_sym_public] = ACTIONS(2983), + [anon_sym_packed] = ACTIONS(2983), + [anon_sym_inline] = ACTIONS(2983), + [anon_sym_readonly] = ACTIONS(2983), + [anon_sym_sizeof] = ACTIONS(2983), + [sym__dedent] = ACTIONS(2985), + [sym_string_start] = ACTIONS(2985), }, [916] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym_list_splat_pattern] = STATE(2610), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3758), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5750), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(2917), + [anon_sym_exec] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_api] = ACTIONS(2917), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [917] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym_list_splat_pattern] = STATE(2610), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3780), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5636), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(2917), + [anon_sym_exec] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_api] = ACTIONS(2917), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [918] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2945), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(5252), + [sym_parenthesized_list_splat] = STATE(5257), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3788), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4982), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5632), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [919] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2991), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [920] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2949), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [921] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(2995), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [922] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3803), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(5009), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5752), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [923] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat] = STATE(4928), - [sym_parenthesized_list_splat] = STATE(4929), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym_expression] = STATE(3707), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_yield] = STATE(4864), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym__collection_elements] = STATE(5577), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym_list_splat_pattern] = STATE(2610), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3738), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5547), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(2917), + [anon_sym_exec] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_api] = ACTIONS(2917), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [924] = { - [sym_named_expression] = STATE(3906), - [sym__named_expression_lhs] = STATE(5700), - [sym_expression_list] = STATE(4480), - [sym_list_splat_pattern] = STATE(2421), - [sym_as_pattern] = STATE(3906), - [sym_expression] = STATE(3836), - [sym_primary_expression] = STATE(2117), - [sym_not_operator] = STATE(3906), - [sym_boolean_operator] = STATE(3906), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_comparison_operator] = STATE(3906), - [sym_lambda] = STATE(3906), - [sym_attribute] = STATE(2347), - [sym_subscript] = STATE(2347), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_conditional_expression] = STATE(3906), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_new_expression] = STATE(3906), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(2955), - [anon_sym_from] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_COLON] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_lambda] = ACTIONS(2707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_type_conversion] = ACTIONS(2961), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(2963), - [anon_sym_api] = ACTIONS(2959), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4886), + [sym_parenthesized_list_splat] = STATE(4888), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3803), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(5009), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5752), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [925] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [926] = { - [sym_elif_clause] = STATE(1100), - [sym_else_clause] = STATE(1729), - [aux_sym_if_statement_repeat1] = STATE(992), - [ts_builtin_sym_end] = ACTIONS(2967), - [sym_identifier] = ACTIONS(2969), - [anon_sym_import] = ACTIONS(2969), - [anon_sym_cimport] = ACTIONS(2969), - [anon_sym_from] = ACTIONS(2969), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [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(2971), - [anon_sym_else] = ACTIONS(2789), - [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(2967), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_lambda] = ACTIONS(2969), - [anon_sym_yield] = ACTIONS(2969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2967), - [anon_sym_None] = ACTIONS(2969), - [sym_integer] = ACTIONS(2969), - [sym_float] = ACTIONS(2967), - [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(2967), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3003), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [927] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_expression_list] = STATE(5363), - [sym_pattern] = STATE(4711), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(2529), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(3992), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_pattern_list] = STATE(5403), - [sym_attribute] = STATE(2531), - [sym_subscript] = STATE(2531), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_print] = ACTIONS(2979), - [anon_sym_match] = ACTIONS(2979), - [anon_sym_async] = ACTIONS(2979), - [anon_sym_exec] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(2983), - [anon_sym_api] = ACTIONS(2979), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [928] = { - [sym_elif_clause] = STATE(1100), - [sym_else_clause] = STATE(1713), - [aux_sym_if_statement_repeat1] = STATE(944), - [ts_builtin_sym_end] = ACTIONS(2985), - [sym_identifier] = ACTIONS(2987), - [anon_sym_import] = ACTIONS(2987), - [anon_sym_cimport] = ACTIONS(2987), - [anon_sym_from] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_print] = ACTIONS(2987), - [anon_sym_assert] = ACTIONS(2987), - [anon_sym_return] = ACTIONS(2987), - [anon_sym_del] = ACTIONS(2987), - [anon_sym_raise] = ACTIONS(2987), - [anon_sym_pass] = ACTIONS(2987), - [anon_sym_break] = ACTIONS(2987), - [anon_sym_continue] = ACTIONS(2987), - [anon_sym_if] = ACTIONS(2987), - [anon_sym_elif] = ACTIONS(2971), - [anon_sym_else] = ACTIONS(2789), - [anon_sym_match] = ACTIONS(2987), - [anon_sym_async] = ACTIONS(2987), - [anon_sym_for] = ACTIONS(2987), - [anon_sym_while] = ACTIONS(2987), - [anon_sym_try] = ACTIONS(2987), - [anon_sym_with] = ACTIONS(2987), - [anon_sym_def] = ACTIONS(2987), - [anon_sym_global] = ACTIONS(2987), - [anon_sym_nonlocal] = ACTIONS(2987), - [anon_sym_exec] = ACTIONS(2987), - [anon_sym_type] = ACTIONS(2987), - [anon_sym_class] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_AT] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_lambda] = ACTIONS(2987), - [anon_sym_yield] = ACTIONS(2987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2985), - [anon_sym_None] = ACTIONS(2987), - [sym_integer] = ACTIONS(2987), - [sym_float] = ACTIONS(2985), - [anon_sym_await] = ACTIONS(2987), - [anon_sym_api] = ACTIONS(2987), - [sym_true] = ACTIONS(2987), - [sym_false] = ACTIONS(2987), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2987), - [anon_sym_include] = ACTIONS(2987), - [anon_sym_DEF] = ACTIONS(2987), - [anon_sym_cdef] = ACTIONS(2987), - [anon_sym_cpdef] = ACTIONS(2987), - [anon_sym_new] = ACTIONS(2987), - [anon_sym_ctypedef] = ACTIONS(2987), - [anon_sym_public] = ACTIONS(2987), - [anon_sym_packed] = ACTIONS(2987), - [anon_sym_inline] = ACTIONS(2987), - [anon_sym_readonly] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2987), - [sym_string_start] = ACTIONS(2985), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [929] = { - [sym_named_expression] = STATE(3906), - [sym__named_expression_lhs] = STATE(5757), - [sym_list_splat] = STATE(5461), - [sym_parenthesized_list_splat] = STATE(5461), - [sym_list_splat_pattern] = STATE(2421), - [sym_as_pattern] = STATE(3906), - [sym_expression] = STATE(4284), - [sym_primary_expression] = STATE(2117), - [sym_not_operator] = STATE(3906), - [sym_boolean_operator] = STATE(3906), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_comparison_operator] = STATE(3906), - [sym_lambda] = STATE(3906), - [sym_yield] = STATE(5461), - [sym_attribute] = STATE(2347), - [sym_subscript] = STATE(2347), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_conditional_expression] = STATE(3906), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_new_expression] = STATE(3906), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_lambda] = ACTIONS(2997), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(2963), - [anon_sym_api] = ACTIONS(2959), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2999), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3736), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4857), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5746), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [930] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat] = STATE(5458), - [sym_parenthesized_list_splat] = STATE(5458), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4245), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_yield] = STATE(5458), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym_list_splat_pattern] = STATE(2610), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3766), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5870), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(2917), + [anon_sym_exec] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_api] = ACTIONS(2917), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [931] = { - [sym_elif_clause] = STATE(1152), - [sym_else_clause] = STATE(1502), - [aux_sym_if_statement_repeat1] = STATE(932), - [sym_identifier] = ACTIONS(2987), - [anon_sym_import] = ACTIONS(2987), - [anon_sym_cimport] = ACTIONS(2987), - [anon_sym_from] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_print] = ACTIONS(2987), - [anon_sym_assert] = ACTIONS(2987), - [anon_sym_return] = ACTIONS(2987), - [anon_sym_del] = ACTIONS(2987), - [anon_sym_raise] = ACTIONS(2987), - [anon_sym_pass] = ACTIONS(2987), - [anon_sym_break] = ACTIONS(2987), - [anon_sym_continue] = ACTIONS(2987), - [anon_sym_if] = ACTIONS(2987), - [anon_sym_elif] = ACTIONS(3009), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_match] = ACTIONS(2987), - [anon_sym_async] = ACTIONS(2987), - [anon_sym_for] = ACTIONS(2987), - [anon_sym_while] = ACTIONS(2987), - [anon_sym_try] = ACTIONS(2987), - [anon_sym_with] = ACTIONS(2987), - [anon_sym_def] = ACTIONS(2987), - [anon_sym_global] = ACTIONS(2987), - [anon_sym_nonlocal] = ACTIONS(2987), - [anon_sym_exec] = ACTIONS(2987), - [anon_sym_type] = ACTIONS(2987), - [anon_sym_class] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_AT] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_not] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_lambda] = ACTIONS(2987), - [anon_sym_yield] = ACTIONS(2987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2985), - [anon_sym_None] = ACTIONS(2987), - [sym_integer] = ACTIONS(2987), - [sym_float] = ACTIONS(2985), - [anon_sym_await] = ACTIONS(2987), - [anon_sym_api] = ACTIONS(2987), - [sym_true] = ACTIONS(2987), - [sym_false] = ACTIONS(2987), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(2987), - [anon_sym_include] = ACTIONS(2987), - [anon_sym_DEF] = ACTIONS(2987), - [anon_sym_cdef] = ACTIONS(2987), - [anon_sym_cpdef] = ACTIONS(2987), - [anon_sym_new] = ACTIONS(2987), - [anon_sym_ctypedef] = ACTIONS(2987), - [anon_sym_public] = ACTIONS(2987), - [anon_sym_packed] = ACTIONS(2987), - [anon_sym_inline] = ACTIONS(2987), - [anon_sym_readonly] = ACTIONS(2987), - [anon_sym_sizeof] = ACTIONS(2987), - [sym__dedent] = ACTIONS(2985), - [sym_string_start] = ACTIONS(2985), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(5129), + [sym_parenthesized_list_splat] = STATE(5130), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3778), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4944), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5729), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [932] = { - [sym_elif_clause] = STATE(1152), - [sym_else_clause] = STATE(1529), - [aux_sym_if_statement_repeat1] = STATE(976), - [sym_identifier] = ACTIONS(3011), - [anon_sym_import] = ACTIONS(3011), - [anon_sym_cimport] = ACTIONS(3011), - [anon_sym_from] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_print] = ACTIONS(3011), - [anon_sym_assert] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_del] = ACTIONS(3011), - [anon_sym_raise] = ACTIONS(3011), - [anon_sym_pass] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_elif] = ACTIONS(3009), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(3011), - [anon_sym_for] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_with] = ACTIONS(3011), - [anon_sym_def] = ACTIONS(3011), - [anon_sym_global] = ACTIONS(3011), - [anon_sym_nonlocal] = ACTIONS(3011), - [anon_sym_exec] = ACTIONS(3011), - [anon_sym_type] = ACTIONS(3011), - [anon_sym_class] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_AT] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_not] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_lambda] = ACTIONS(3011), - [anon_sym_yield] = ACTIONS(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3013), - [anon_sym_None] = ACTIONS(3011), - [sym_integer] = ACTIONS(3011), - [sym_float] = ACTIONS(3013), - [anon_sym_await] = ACTIONS(3011), - [anon_sym_api] = ACTIONS(3011), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3011), - [anon_sym_include] = ACTIONS(3011), - [anon_sym_DEF] = ACTIONS(3011), - [anon_sym_cdef] = ACTIONS(3011), - [anon_sym_cpdef] = ACTIONS(3011), - [anon_sym_new] = ACTIONS(3011), - [anon_sym_ctypedef] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_packed] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_readonly] = ACTIONS(3011), - [anon_sym_sizeof] = ACTIONS(3011), - [sym__dedent] = ACTIONS(3013), - [sym_string_start] = ACTIONS(3013), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [933] = { - [sym_elif_clause] = STATE(1152), - [sym_else_clause] = STATE(1531), - [aux_sym_if_statement_repeat1] = STATE(937), - [sym_identifier] = ACTIONS(3015), - [anon_sym_import] = ACTIONS(3015), - [anon_sym_cimport] = ACTIONS(3015), - [anon_sym_from] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_print] = ACTIONS(3015), - [anon_sym_assert] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3015), - [anon_sym_del] = ACTIONS(3015), - [anon_sym_raise] = ACTIONS(3015), - [anon_sym_pass] = ACTIONS(3015), - [anon_sym_break] = ACTIONS(3015), - [anon_sym_continue] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_elif] = ACTIONS(3009), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_async] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3015), - [anon_sym_while] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3015), - [anon_sym_def] = ACTIONS(3015), - [anon_sym_global] = ACTIONS(3015), - [anon_sym_nonlocal] = ACTIONS(3015), - [anon_sym_exec] = ACTIONS(3015), - [anon_sym_type] = ACTIONS(3015), - [anon_sym_class] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_not] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_lambda] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), - [anon_sym_None] = ACTIONS(3015), - [sym_integer] = ACTIONS(3015), - [sym_float] = ACTIONS(3017), - [anon_sym_await] = ACTIONS(3015), - [anon_sym_api] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3015), - [anon_sym_include] = ACTIONS(3015), - [anon_sym_DEF] = ACTIONS(3015), - [anon_sym_cdef] = ACTIONS(3015), - [anon_sym_cpdef] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3015), - [anon_sym_ctypedef] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3015), - [anon_sym_packed] = ACTIONS(3015), - [anon_sym_inline] = ACTIONS(3015), - [anon_sym_readonly] = ACTIONS(3015), - [anon_sym_sizeof] = ACTIONS(3015), - [sym__dedent] = ACTIONS(3017), - [sym_string_start] = ACTIONS(3017), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3015), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [934] = { - [sym_except_clause] = STATE(934), - [aux_sym_try_statement_repeat1] = STATE(934), - [sym_identifier] = ACTIONS(3019), - [anon_sym_import] = ACTIONS(3019), - [anon_sym_cimport] = ACTIONS(3019), - [anon_sym_from] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_print] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_del] = ACTIONS(3019), - [anon_sym_raise] = ACTIONS(3019), - [anon_sym_pass] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_async] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_except] = ACTIONS(3023), - [anon_sym_finally] = ACTIONS(3019), - [anon_sym_with] = ACTIONS(3019), - [anon_sym_def] = ACTIONS(3019), - [anon_sym_global] = ACTIONS(3019), - [anon_sym_nonlocal] = ACTIONS(3019), - [anon_sym_exec] = ACTIONS(3019), - [anon_sym_type] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_AT] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_lambda] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3021), - [anon_sym_None] = ACTIONS(3019), - [sym_integer] = ACTIONS(3019), - [sym_float] = ACTIONS(3021), - [anon_sym_await] = ACTIONS(3019), - [anon_sym_api] = ACTIONS(3019), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3019), - [anon_sym_include] = ACTIONS(3019), - [anon_sym_DEF] = ACTIONS(3019), - [anon_sym_cdef] = ACTIONS(3019), - [anon_sym_cpdef] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_ctypedef] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_packed] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_sizeof] = ACTIONS(3019), - [sym__dedent] = ACTIONS(3021), - [sym_string_start] = ACTIONS(3021), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [935] = { - [sym_named_expression] = STATE(3906), - [sym__named_expression_lhs] = STATE(5757), - [sym_list_splat] = STATE(5461), - [sym_parenthesized_list_splat] = STATE(5461), - [sym_list_splat_pattern] = STATE(2421), - [sym_as_pattern] = STATE(3906), - [sym_expression] = STATE(4284), - [sym_primary_expression] = STATE(2117), - [sym_not_operator] = STATE(3906), - [sym_boolean_operator] = STATE(3906), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_comparison_operator] = STATE(3906), - [sym_lambda] = STATE(3906), - [sym_yield] = STATE(5461), - [sym_attribute] = STATE(2347), - [sym_subscript] = STATE(2347), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_conditional_expression] = STATE(3906), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_new_expression] = STATE(3906), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_lambda] = ACTIONS(2997), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(2963), - [anon_sym_api] = ACTIONS(2959), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2999), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3019), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [936] = { - [sym_except_group_clause] = STATE(936), - [aux_sym_try_statement_repeat2] = STATE(936), - [sym_identifier] = ACTIONS(3026), - [anon_sym_import] = ACTIONS(3026), - [anon_sym_cimport] = ACTIONS(3026), - [anon_sym_from] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3028), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_print] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_del] = ACTIONS(3026), - [anon_sym_raise] = ACTIONS(3026), - [anon_sym_pass] = ACTIONS(3026), - [anon_sym_break] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_else] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_async] = ACTIONS(3026), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_except_STAR] = ACTIONS(3030), - [anon_sym_finally] = ACTIONS(3026), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_def] = ACTIONS(3026), - [anon_sym_global] = ACTIONS(3026), - [anon_sym_nonlocal] = ACTIONS(3026), - [anon_sym_exec] = ACTIONS(3026), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_class] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3028), - [anon_sym_AT] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_lambda] = ACTIONS(3026), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3028), - [anon_sym_None] = ACTIONS(3026), - [sym_integer] = ACTIONS(3026), - [sym_float] = ACTIONS(3028), - [anon_sym_await] = ACTIONS(3026), - [anon_sym_api] = ACTIONS(3026), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3026), - [anon_sym_include] = ACTIONS(3026), - [anon_sym_DEF] = ACTIONS(3026), - [anon_sym_cdef] = ACTIONS(3026), - [anon_sym_cpdef] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_ctypedef] = ACTIONS(3026), - [anon_sym_public] = ACTIONS(3026), - [anon_sym_packed] = ACTIONS(3026), - [anon_sym_inline] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3026), - [anon_sym_sizeof] = ACTIONS(3026), - [sym__dedent] = ACTIONS(3028), - [sym_string_start] = ACTIONS(3028), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3778), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4944), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5729), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(3011), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [937] = { - [sym_elif_clause] = STATE(1152), - [sym_else_clause] = STATE(1560), - [aux_sym_if_statement_repeat1] = STATE(976), - [sym_identifier] = ACTIONS(2969), - [anon_sym_import] = ACTIONS(2969), - [anon_sym_cimport] = ACTIONS(2969), - [anon_sym_from] = ACTIONS(2969), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [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(3009), - [anon_sym_else] = ACTIONS(2731), - [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(2967), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_lambda] = ACTIONS(2969), - [anon_sym_yield] = ACTIONS(2969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2967), - [anon_sym_None] = ACTIONS(2969), - [sym_integer] = ACTIONS(2969), - [sym_float] = ACTIONS(2967), - [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(2967), - [sym_string_start] = ACTIONS(2967), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym_list_splat_pattern] = STATE(2610), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3786), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5762), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(2917), + [anon_sym_exec] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_api] = ACTIONS(2917), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [938] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5406), - [sym_dictionary_splat] = STATE(5406), - [sym_parenthesized_list_splat] = STATE(5416), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4220), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_keyword_argument] = STATE(5406), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_print] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_STAR_STAR] = ACTIONS(1412), - [anon_sym_exec] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_api] = ACTIONS(1410), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_ELIF_clause] = STATE(1132), + [sym_ELSE_clause] = STATE(1456), + [aux_sym_IF_statement_repeat1] = STATE(986), + [ts_builtin_sym_end] = ACTIONS(2985), + [sym_identifier] = ACTIONS(2983), + [anon_sym_import] = ACTIONS(2983), + [anon_sym_cimport] = ACTIONS(2983), + [anon_sym_from] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_print] = ACTIONS(2983), + [anon_sym_assert] = ACTIONS(2983), + [anon_sym_return] = ACTIONS(2983), + [anon_sym_del] = ACTIONS(2983), + [anon_sym_raise] = ACTIONS(2983), + [anon_sym_pass] = ACTIONS(2983), + [anon_sym_break] = ACTIONS(2983), + [anon_sym_continue] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2983), + [anon_sym_match] = ACTIONS(2983), + [anon_sym_async] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2983), + [anon_sym_while] = ACTIONS(2983), + [anon_sym_try] = ACTIONS(2983), + [anon_sym_with] = ACTIONS(2983), + [anon_sym_def] = ACTIONS(2983), + [anon_sym_global] = ACTIONS(2983), + [anon_sym_nonlocal] = ACTIONS(2983), + [anon_sym_exec] = ACTIONS(2983), + [anon_sym_type] = ACTIONS(2983), + [anon_sym_class] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_AT] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_lambda] = ACTIONS(2983), + [anon_sym_yield] = ACTIONS(2983), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2985), + [anon_sym_None] = ACTIONS(2983), + [sym_integer] = ACTIONS(2983), + [sym_float] = ACTIONS(2985), + [anon_sym_await] = ACTIONS(2983), + [anon_sym_api] = ACTIONS(2983), + [sym_true] = ACTIONS(2983), + [sym_false] = ACTIONS(2983), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2983), + [anon_sym_include] = ACTIONS(2983), + [anon_sym_DEF] = ACTIONS(2983), + [anon_sym_IF] = ACTIONS(2983), + [anon_sym_ELIF] = ACTIONS(2939), + [anon_sym_ELSE] = ACTIONS(2941), + [anon_sym_cdef] = ACTIONS(2983), + [anon_sym_cpdef] = ACTIONS(2983), + [anon_sym_new] = ACTIONS(2983), + [anon_sym_ctypedef] = ACTIONS(2983), + [anon_sym_public] = ACTIONS(2983), + [anon_sym_packed] = ACTIONS(2983), + [anon_sym_inline] = ACTIONS(2983), + [anon_sym_readonly] = ACTIONS(2983), + [anon_sym_sizeof] = ACTIONS(2983), + [sym_string_start] = ACTIONS(2985), }, [939] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat_pattern] = STATE(2546), - [sym_as_pattern] = STATE(2536), - [sym__expression_within_for_in_clause] = STATE(4366), - [sym_expression] = STATE(4015), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_lambda_within_for_in_clause] = STATE(4366), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_print] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_exec] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(3039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_api] = ACTIONS(2845), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [940] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym__expression_within_for_in_clause] = STATE(4493), - [sym_expression] = STATE(4018), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_lambda_within_for_in_clause] = STATE(4493), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(3043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [941] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat] = STATE(5458), - [sym_parenthesized_list_splat] = STATE(5458), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4245), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_yield] = STATE(5458), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [942] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_expression_list] = STATE(5337), - [sym_pattern] = STATE(4635), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(2529), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4008), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_pattern_list] = STATE(5464), - [sym_attribute] = STATE(2531), - [sym_subscript] = STATE(2531), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_print] = ACTIONS(2979), - [anon_sym_match] = ACTIONS(2979), - [anon_sym_async] = ACTIONS(2979), - [anon_sym_exec] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(2983), - [anon_sym_api] = ACTIONS(2979), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [943] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat_pattern] = STATE(2546), - [sym_as_pattern] = STATE(2536), - [sym__expression_within_for_in_clause] = STATE(4366), - [sym_expression] = STATE(4015), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_lambda_within_for_in_clause] = STATE(4366), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_print] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_exec] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(3047), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(3039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_api] = ACTIONS(2845), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3760), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4915), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5708), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [944] = { - [sym_elif_clause] = STATE(1100), - [sym_else_clause] = STATE(1573), - [aux_sym_if_statement_repeat1] = STATE(992), - [ts_builtin_sym_end] = ACTIONS(3013), - [sym_identifier] = ACTIONS(3011), - [anon_sym_import] = ACTIONS(3011), - [anon_sym_cimport] = ACTIONS(3011), - [anon_sym_from] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_print] = ACTIONS(3011), - [anon_sym_assert] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_del] = ACTIONS(3011), - [anon_sym_raise] = ACTIONS(3011), - [anon_sym_pass] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_elif] = ACTIONS(2971), - [anon_sym_else] = ACTIONS(2789), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(3011), - [anon_sym_for] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_with] = ACTIONS(3011), - [anon_sym_def] = ACTIONS(3011), - [anon_sym_global] = ACTIONS(3011), - [anon_sym_nonlocal] = ACTIONS(3011), - [anon_sym_exec] = ACTIONS(3011), - [anon_sym_type] = ACTIONS(3011), - [anon_sym_class] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_AT] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_not] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_lambda] = ACTIONS(3011), - [anon_sym_yield] = ACTIONS(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3013), - [anon_sym_None] = ACTIONS(3011), - [sym_integer] = ACTIONS(3011), - [sym_float] = ACTIONS(3013), - [anon_sym_await] = ACTIONS(3011), - [anon_sym_api] = ACTIONS(3011), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3011), - [anon_sym_include] = ACTIONS(3011), - [anon_sym_DEF] = ACTIONS(3011), - [anon_sym_cdef] = ACTIONS(3011), - [anon_sym_cpdef] = ACTIONS(3011), - [anon_sym_new] = ACTIONS(3011), - [anon_sym_ctypedef] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_packed] = ACTIONS(3011), - [anon_sym_inline] = ACTIONS(3011), - [anon_sym_readonly] = ACTIONS(3011), - [anon_sym_sizeof] = ACTIONS(3011), - [sym_string_start] = ACTIONS(3013), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat] = STATE(5143), + [sym_parenthesized_list_splat] = STATE(5143), + [sym_list_splat_pattern] = STATE(2610), + [sym_as_pattern] = STATE(2570), + [sym_expression] = STATE(3775), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_yield] = STATE(5143), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym__collection_elements] = STATE(5736), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_print] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(2917), + [anon_sym_exec] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_api] = ACTIONS(2917), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [945] = { - [sym_elif_clause] = STATE(1100), - [sym_else_clause] = STATE(1575), - [aux_sym_if_statement_repeat1] = STATE(926), - [ts_builtin_sym_end] = ACTIONS(3017), - [sym_identifier] = ACTIONS(3015), - [anon_sym_import] = ACTIONS(3015), - [anon_sym_cimport] = ACTIONS(3015), - [anon_sym_from] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_print] = ACTIONS(3015), - [anon_sym_assert] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3015), - [anon_sym_del] = ACTIONS(3015), - [anon_sym_raise] = ACTIONS(3015), - [anon_sym_pass] = ACTIONS(3015), - [anon_sym_break] = ACTIONS(3015), - [anon_sym_continue] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_elif] = ACTIONS(2971), - [anon_sym_else] = ACTIONS(2789), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_async] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3015), - [anon_sym_while] = ACTIONS(3015), - [anon_sym_try] = ACTIONS(3015), - [anon_sym_with] = ACTIONS(3015), - [anon_sym_def] = ACTIONS(3015), - [anon_sym_global] = ACTIONS(3015), - [anon_sym_nonlocal] = ACTIONS(3015), - [anon_sym_exec] = ACTIONS(3015), - [anon_sym_type] = ACTIONS(3015), - [anon_sym_class] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_not] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_lambda] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), - [anon_sym_None] = ACTIONS(3015), - [sym_integer] = ACTIONS(3015), - [sym_float] = ACTIONS(3017), - [anon_sym_await] = ACTIONS(3015), - [anon_sym_api] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3015), - [anon_sym_include] = ACTIONS(3015), - [anon_sym_DEF] = ACTIONS(3015), - [anon_sym_cdef] = ACTIONS(3015), - [anon_sym_cpdef] = ACTIONS(3015), - [anon_sym_new] = ACTIONS(3015), - [anon_sym_ctypedef] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3015), - [anon_sym_packed] = ACTIONS(3015), - [anon_sym_inline] = ACTIONS(3015), - [anon_sym_readonly] = ACTIONS(3015), - [anon_sym_sizeof] = ACTIONS(3015), - [sym_string_start] = ACTIONS(3017), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [946] = { - [sym_pattern] = STATE(3278), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(2713), - [sym_primary_expression] = STATE(3287), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2714), - [sym_subscript] = STATE(2714), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_print] = ACTIONS(3055), - [anon_sym_COLON] = ACTIONS(2821), - [anon_sym_match] = ACTIONS(3055), - [anon_sym_async] = ACTIONS(3055), - [anon_sym_exec] = ACTIONS(3055), - [anon_sym_EQ] = ACTIONS(2821), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(2821), - [anon_sym_DASH_EQ] = ACTIONS(2821), - [anon_sym_STAR_EQ] = ACTIONS(2821), - [anon_sym_SLASH_EQ] = ACTIONS(2821), - [anon_sym_AT_EQ] = ACTIONS(2821), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2821), - [anon_sym_PERCENT_EQ] = ACTIONS(2821), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2821), - [anon_sym_GT_GT_EQ] = ACTIONS(2821), - [anon_sym_LT_LT_EQ] = ACTIONS(2821), - [anon_sym_AMP_EQ] = ACTIONS(2821), - [anon_sym_CARET_EQ] = ACTIONS(2821), - [anon_sym_PIPE_EQ] = ACTIONS(2821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(3059), - [anon_sym_api] = ACTIONS(3055), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [947] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat_pattern] = STATE(2546), - [sym_as_pattern] = STATE(2536), - [sym__expression_within_for_in_clause] = STATE(4366), - [sym_expression] = STATE(4015), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_lambda_within_for_in_clause] = STATE(4366), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_print] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_exec] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(3039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_api] = ACTIONS(2845), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [948] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5413), - [sym_parenthesized_list_splat] = STATE(5413), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4338), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_yield] = STATE(5413), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_print] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_exec] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3039), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [949] = { - [sym_pattern] = STATE(3278), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(2713), - [sym_primary_expression] = STATE(3287), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_attribute] = STATE(2714), - [sym_subscript] = STATE(2714), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_print] = ACTIONS(3055), - [anon_sym_COLON] = ACTIONS(2773), - [anon_sym_match] = ACTIONS(3055), - [anon_sym_async] = ACTIONS(3055), - [anon_sym_exec] = ACTIONS(3055), - [anon_sym_EQ] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(2773), - [anon_sym_DASH_EQ] = ACTIONS(2773), - [anon_sym_STAR_EQ] = ACTIONS(2773), - [anon_sym_SLASH_EQ] = ACTIONS(2773), - [anon_sym_AT_EQ] = ACTIONS(2773), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2773), - [anon_sym_PERCENT_EQ] = ACTIONS(2773), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2773), - [anon_sym_GT_GT_EQ] = ACTIONS(2773), - [anon_sym_LT_LT_EQ] = ACTIONS(2773), - [anon_sym_AMP_EQ] = ACTIONS(2773), - [anon_sym_CARET_EQ] = ACTIONS(2773), - [anon_sym_PIPE_EQ] = ACTIONS(2773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(3059), - [anon_sym_api] = ACTIONS(3055), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [950] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym__expression_within_for_in_clause] = STATE(4493), - [sym_expression] = STATE(4018), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_lambda_within_for_in_clause] = STATE(4493), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(3071), - [anon_sym_for] = ACTIONS(3071), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(3043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3043), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [951] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym__expression_within_for_in_clause] = STATE(4493), - [sym_expression] = STATE(4018), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_lambda_within_for_in_clause] = STATE(4493), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(3043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [952] = { - [sym_except_clause] = STATE(952), - [aux_sym_try_statement_repeat1] = STATE(952), - [ts_builtin_sym_end] = ACTIONS(3021), - [sym_identifier] = ACTIONS(3019), - [anon_sym_import] = ACTIONS(3019), - [anon_sym_cimport] = ACTIONS(3019), - [anon_sym_from] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_print] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_del] = ACTIONS(3019), - [anon_sym_raise] = ACTIONS(3019), - [anon_sym_pass] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_async] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_except] = ACTIONS(3073), - [anon_sym_finally] = ACTIONS(3019), - [anon_sym_with] = ACTIONS(3019), - [anon_sym_def] = ACTIONS(3019), - [anon_sym_global] = ACTIONS(3019), - [anon_sym_nonlocal] = ACTIONS(3019), - [anon_sym_exec] = ACTIONS(3019), - [anon_sym_type] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_AT] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_not] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_lambda] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3021), - [anon_sym_None] = ACTIONS(3019), - [sym_integer] = ACTIONS(3019), - [sym_float] = ACTIONS(3021), - [anon_sym_await] = ACTIONS(3019), - [anon_sym_api] = ACTIONS(3019), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3019), - [anon_sym_include] = ACTIONS(3019), - [anon_sym_DEF] = ACTIONS(3019), - [anon_sym_cdef] = ACTIONS(3019), - [anon_sym_cpdef] = ACTIONS(3019), - [anon_sym_new] = ACTIONS(3019), - [anon_sym_ctypedef] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_packed] = ACTIONS(3019), - [anon_sym_inline] = ACTIONS(3019), - [anon_sym_readonly] = ACTIONS(3019), - [anon_sym_sizeof] = ACTIONS(3019), - [sym_string_start] = ACTIONS(3021), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3047), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [953] = { - [sym_named_expression] = STATE(2579), - [sym__named_expression_lhs] = STATE(5800), - [sym_list_splat_pattern] = STATE(2604), - [sym_as_pattern] = STATE(2579), - [sym__expression_within_for_in_clause] = STATE(4493), - [sym_expression] = STATE(4018), - [sym_primary_expression] = STATE(2122), - [sym_not_operator] = STATE(2579), - [sym_boolean_operator] = STATE(2579), - [sym_binary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_comparison_operator] = STATE(2579), - [sym_lambda] = STATE(2579), - [sym_lambda_within_for_in_clause] = STATE(4493), - [sym_attribute] = STATE(2556), - [sym_subscript] = STATE(2556), - [sym_ellipsis] = STATE(2556), - [sym_call] = STATE(2556), - [sym_list] = STATE(2556), - [sym_set] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_dictionary] = STATE(2556), - [sym_list_comprehension] = STATE(2556), - [sym_dictionary_comprehension] = STATE(2556), - [sym_set_comprehension] = STATE(2556), - [sym_generator_expression] = STATE(2556), - [sym_parenthesized_expression] = STATE(2556), - [sym_conditional_expression] = STATE(2579), - [sym_concatenated_string] = STATE(2556), - [sym_string] = STATE(2202), - [sym_none] = STATE(2556), - [sym_await] = STATE(2556), - [sym_new_expression] = STATE(2579), - [sym_sizeof_expression] = STATE(2556), - [sym_cast_expression] = STATE(2556), - [sym_identifier] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_print] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_exec] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_lambda] = ACTIONS(3043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_None] = ACTIONS(1372), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1376), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_api] = ACTIONS(1502), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_sizeof] = ACTIONS(1392), - [sym_string_start] = ACTIONS(1394), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [954] = { - [sym_named_expression] = STATE(2468), - [sym__named_expression_lhs] = STATE(5491), - [sym_list_splat_pattern] = STATE(2449), - [sym_as_pattern] = STATE(2468), - [sym__expression_within_for_in_clause] = STATE(4389), - [sym_expression] = STATE(3956), - [sym_primary_expression] = STATE(2119), - [sym_not_operator] = STATE(2468), - [sym_boolean_operator] = STATE(2468), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_comparison_operator] = STATE(2468), - [sym_lambda] = STATE(2468), - [sym_lambda_within_for_in_clause] = STATE(4389), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym_conditional_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_new_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_exec] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_lambda] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2595), - [anon_sym_api] = ACTIONS(2581), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [955] = { - [sym_except_group_clause] = STATE(955), - [aux_sym_try_statement_repeat2] = STATE(955), - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_identifier] = ACTIONS(3026), - [anon_sym_import] = ACTIONS(3026), - [anon_sym_cimport] = ACTIONS(3026), - [anon_sym_from] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3028), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_print] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_del] = ACTIONS(3026), - [anon_sym_raise] = ACTIONS(3026), - [anon_sym_pass] = ACTIONS(3026), - [anon_sym_break] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_else] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_async] = ACTIONS(3026), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_while] = ACTIONS(3026), - [anon_sym_try] = ACTIONS(3026), - [anon_sym_except_STAR] = ACTIONS(3080), - [anon_sym_finally] = ACTIONS(3026), - [anon_sym_with] = ACTIONS(3026), - [anon_sym_def] = ACTIONS(3026), - [anon_sym_global] = ACTIONS(3026), - [anon_sym_nonlocal] = ACTIONS(3026), - [anon_sym_exec] = ACTIONS(3026), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_class] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3028), - [anon_sym_AT] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3028), - [anon_sym_PLUS] = ACTIONS(3028), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3028), - [anon_sym_lambda] = ACTIONS(3026), - [anon_sym_yield] = ACTIONS(3026), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3028), - [anon_sym_None] = ACTIONS(3026), - [sym_integer] = ACTIONS(3026), - [sym_float] = ACTIONS(3028), - [anon_sym_await] = ACTIONS(3026), - [anon_sym_api] = ACTIONS(3026), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3026), - [anon_sym_include] = ACTIONS(3026), - [anon_sym_DEF] = ACTIONS(3026), - [anon_sym_cdef] = ACTIONS(3026), - [anon_sym_cpdef] = ACTIONS(3026), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_ctypedef] = ACTIONS(3026), - [anon_sym_public] = ACTIONS(3026), - [anon_sym_packed] = ACTIONS(3026), - [anon_sym_inline] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3026), - [anon_sym_sizeof] = ACTIONS(3026), - [sym_string_start] = ACTIONS(3028), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [956] = { - [sym_named_expression] = STATE(2468), - [sym__named_expression_lhs] = STATE(5491), - [sym_list_splat_pattern] = STATE(2449), - [sym_as_pattern] = STATE(2468), - [sym__expression_within_for_in_clause] = STATE(4389), - [sym_expression] = STATE(3956), - [sym_primary_expression] = STATE(2119), - [sym_not_operator] = STATE(2468), - [sym_boolean_operator] = STATE(2468), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_comparison_operator] = STATE(2468), - [sym_lambda] = STATE(2468), - [sym_lambda_within_for_in_clause] = STATE(4389), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym_conditional_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_new_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(3071), - [anon_sym_for] = ACTIONS(3071), - [anon_sym_exec] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_lambda] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2595), - [anon_sym_api] = ACTIONS(2581), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [957] = { - [sym_named_expression] = STATE(2468), - [sym__named_expression_lhs] = STATE(5491), - [sym_list_splat_pattern] = STATE(2449), - [sym_as_pattern] = STATE(2468), - [sym__expression_within_for_in_clause] = STATE(4389), - [sym_expression] = STATE(3956), - [sym_primary_expression] = STATE(2119), - [sym_not_operator] = STATE(2468), - [sym_boolean_operator] = STATE(2468), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_comparison_operator] = STATE(2468), - [sym_lambda] = STATE(2468), - [sym_lambda_within_for_in_clause] = STATE(4389), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym_conditional_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_new_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_exec] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_lambda] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2595), - [anon_sym_api] = ACTIONS(2581), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [958] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_expression_list] = STATE(5272), - [sym_pattern] = STATE(4702), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(2529), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(3997), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_pattern_list] = STATE(5449), - [sym_attribute] = STATE(2531), - [sym_subscript] = STATE(2531), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_print] = ACTIONS(2979), - [anon_sym_match] = ACTIONS(2979), - [anon_sym_async] = ACTIONS(2979), - [anon_sym_exec] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(2983), - [anon_sym_api] = ACTIONS(2979), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [959] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_expression_list] = STATE(5277), - [sym_pattern] = STATE(4706), - [sym_tuple_pattern] = STATE(3274), - [sym_list_pattern] = STATE(3274), - [sym_list_splat_pattern] = STATE(2529), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4038), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_pattern_list] = STATE(5455), - [sym_attribute] = STATE(2531), - [sym_subscript] = STATE(2531), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_print] = ACTIONS(2979), - [anon_sym_match] = ACTIONS(2979), - [anon_sym_async] = ACTIONS(2979), - [anon_sym_exec] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(2983), - [anon_sym_api] = ACTIONS(2979), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [960] = { - [sym_named_expression] = STATE(2468), - [sym__named_expression_lhs] = STATE(5491), - [sym_list_splat_pattern] = STATE(2449), - [sym_as_pattern] = STATE(2468), - [sym__expression_within_for_in_clause] = STATE(4389), - [sym_expression] = STATE(3956), - [sym_primary_expression] = STATE(2119), - [sym_not_operator] = STATE(2468), - [sym_boolean_operator] = STATE(2468), - [sym_binary_operator] = STATE(2328), - [sym_unary_operator] = STATE(2328), - [sym_comparison_operator] = STATE(2468), - [sym_lambda] = STATE(2468), - [sym_lambda_within_for_in_clause] = STATE(4389), - [sym_attribute] = STATE(2328), - [sym_subscript] = STATE(2328), - [sym_ellipsis] = STATE(2328), - [sym_call] = STATE(2328), - [sym_list] = STATE(2328), - [sym_set] = STATE(2328), - [sym_tuple] = STATE(2328), - [sym_dictionary] = STATE(2328), - [sym_list_comprehension] = STATE(2328), - [sym_dictionary_comprehension] = STATE(2328), - [sym_set_comprehension] = STATE(2328), - [sym_generator_expression] = STATE(2328), - [sym_parenthesized_expression] = STATE(2328), - [sym_conditional_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2328), - [sym_string] = STATE(2193), - [sym_none] = STATE(2328), - [sym_await] = STATE(2328), - [sym_new_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2328), - [sym_cast_expression] = STATE(2328), - [sym_identifier] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_print] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_exec] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_not] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_TILDE] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_lambda] = ACTIONS(3078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2453), - [anon_sym_None] = ACTIONS(2455), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2457), - [anon_sym_await] = ACTIONS(2595), - [anon_sym_api] = ACTIONS(2581), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_sizeof] = ACTIONS(2461), - [sym_string_start] = ACTIONS(2463), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [961] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5413), - [sym_parenthesized_list_splat] = STATE(5413), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4338), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_yield] = STATE(5413), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_print] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_exec] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_ELIF_clause] = STATE(1132), + [sym_ELSE_clause] = STATE(1554), + [aux_sym_IF_statement_repeat1] = STATE(893), + [ts_builtin_sym_end] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2957), + [anon_sym_import] = ACTIONS(2957), + [anon_sym_cimport] = ACTIONS(2957), + [anon_sym_from] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_print] = ACTIONS(2957), + [anon_sym_assert] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_del] = ACTIONS(2957), + [anon_sym_raise] = ACTIONS(2957), + [anon_sym_pass] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_match] = ACTIONS(2957), + [anon_sym_async] = ACTIONS(2957), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_with] = ACTIONS(2957), + [anon_sym_def] = ACTIONS(2957), + [anon_sym_global] = ACTIONS(2957), + [anon_sym_nonlocal] = ACTIONS(2957), + [anon_sym_exec] = ACTIONS(2957), + [anon_sym_type] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_AT] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2959), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2959), + [anon_sym_not] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2959), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2959), + [anon_sym_lambda] = ACTIONS(2957), + [anon_sym_yield] = ACTIONS(2957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), + [anon_sym_None] = ACTIONS(2957), + [sym_integer] = ACTIONS(2957), + [sym_float] = ACTIONS(2959), + [anon_sym_await] = ACTIONS(2957), + [anon_sym_api] = ACTIONS(2957), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(2957), + [anon_sym_include] = ACTIONS(2957), + [anon_sym_DEF] = ACTIONS(2957), + [anon_sym_IF] = ACTIONS(2957), + [anon_sym_ELIF] = ACTIONS(2939), + [anon_sym_ELSE] = ACTIONS(2941), + [anon_sym_cdef] = ACTIONS(2957), + [anon_sym_cpdef] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_ctypedef] = ACTIONS(2957), + [anon_sym_public] = ACTIONS(2957), + [anon_sym_packed] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym_readonly] = ACTIONS(2957), + [anon_sym_sizeof] = ACTIONS(2957), + [sym_string_start] = ACTIONS(2959), }, [962] = { - [sym_named_expression] = STATE(2536), - [sym__named_expression_lhs] = STATE(5737), - [sym_list_splat_pattern] = STATE(2546), - [sym_as_pattern] = STATE(2536), - [sym__expression_within_for_in_clause] = STATE(4366), - [sym_expression] = STATE(4015), - [sym_primary_expression] = STATE(2127), - [sym_not_operator] = STATE(2536), - [sym_boolean_operator] = STATE(2536), - [sym_binary_operator] = STATE(2512), - [sym_unary_operator] = STATE(2512), - [sym_comparison_operator] = STATE(2536), - [sym_lambda] = STATE(2536), - [sym_lambda_within_for_in_clause] = STATE(4366), - [sym_attribute] = STATE(2512), - [sym_subscript] = STATE(2512), - [sym_ellipsis] = STATE(2512), - [sym_call] = STATE(2512), - [sym_list] = STATE(2512), - [sym_set] = STATE(2512), - [sym_tuple] = STATE(2512), - [sym_dictionary] = STATE(2512), - [sym_list_comprehension] = STATE(2512), - [sym_dictionary_comprehension] = STATE(2512), - [sym_set_comprehension] = STATE(2512), - [sym_generator_expression] = STATE(2512), - [sym_parenthesized_expression] = STATE(2512), - [sym_conditional_expression] = STATE(2536), - [sym_concatenated_string] = STATE(2512), - [sym_string] = STATE(2229), - [sym_none] = STATE(2512), - [sym_await] = STATE(2512), - [sym_new_expression] = STATE(2536), - [sym_sizeof_expression] = STATE(2512), - [sym_cast_expression] = STATE(2512), - [sym_identifier] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_print] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(3071), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(3071), - [anon_sym_for] = ACTIONS(3071), - [anon_sym_exec] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_RBRACK] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_not] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_lambda] = ACTIONS(3039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2497), - [anon_sym_None] = ACTIONS(2499), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2501), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_api] = ACTIONS(2845), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_sizeof] = ACTIONS(2505), - [sym_string_start] = ACTIONS(2507), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat] = STATE(4840), + [sym_parenthesized_list_splat] = STATE(4840), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_yield] = STATE(4784), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym__collection_elements] = STATE(5773), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_RPAREN] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [963] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym__expression_within_for_in_clause] = STATE(4511), + [sym_expression] = STATE(3988), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_lambda_within_for_in_clause] = STATE(4511), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(3069), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(3071), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [964] = { - [sym_named_expression] = STATE(3906), - [sym__named_expression_lhs] = STATE(5700), - [sym_list_splat_pattern] = STATE(2421), - [sym_as_pattern] = STATE(3906), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2117), - [sym_not_operator] = STATE(3906), - [sym_boolean_operator] = STATE(3906), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_comparison_operator] = STATE(3906), - [sym_lambda] = STATE(3906), - [sym_attribute] = STATE(2347), - [sym_subscript] = STATE(2347), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_conditional_expression] = STATE(3906), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_new_expression] = STATE(3906), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_COLON] = ACTIONS(3085), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_lambda] = ACTIONS(2707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_type_conversion] = ACTIONS(3085), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(2963), - [anon_sym_api] = ACTIONS(2959), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), + [sym_named_expression] = STATE(3933), + [sym__named_expression_lhs] = STATE(5807), + [sym_list_splat] = STATE(5309), + [sym_parenthesized_list_splat] = STATE(5309), + [sym_list_splat_pattern] = STATE(2465), + [sym_as_pattern] = STATE(3933), + [sym_expression] = STATE(4372), + [sym_primary_expression] = STATE(2159), + [sym_not_operator] = STATE(3933), + [sym_boolean_operator] = STATE(3933), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_comparison_operator] = STATE(3933), + [sym_lambda] = STATE(3933), + [sym_yield] = STATE(5309), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_conditional_expression] = STATE(3933), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_new_expression] = STATE(3933), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_print] = ACTIONS(2875), + [anon_sym_match] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_exec] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_lambda] = ACTIONS(3081), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2879), + [anon_sym_api] = ACTIONS(2875), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, [965] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym__expression_within_for_in_clause] = STATE(4511), + [sym_expression] = STATE(3988), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_lambda_within_for_in_clause] = STATE(4511), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_RPAREN] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(3071), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [966] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym__expression_within_for_in_clause] = STATE(4511), + [sym_expression] = STATE(3988), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_lambda_within_for_in_clause] = STATE(4511), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(3071), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [967] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2410), + [sym__named_expression_lhs] = STATE(5874), + [sym_list_splat_pattern] = STATE(2500), + [sym_as_pattern] = STATE(2410), + [sym__expression_within_for_in_clause] = STATE(4495), + [sym_expression] = STATE(4006), + [sym_primary_expression] = STATE(2161), + [sym_not_operator] = STATE(2410), + [sym_boolean_operator] = STATE(2410), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_comparison_operator] = STATE(2410), + [sym_lambda] = STATE(2410), + [sym_lambda_within_for_in_clause] = STATE(4495), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym_conditional_expression] = STATE(2410), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_new_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(3069), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_lambda] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2637), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), }, [968] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat] = STATE(5512), + [sym_parenthesized_list_splat] = STATE(5512), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4270), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_yield] = STATE(5512), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [969] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat_pattern] = STATE(2610), + [sym_as_pattern] = STATE(2570), + [sym__expression_within_for_in_clause] = STATE(4540), + [sym_expression] = STATE(4047), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_lambda_within_for_in_clause] = STATE(4540), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_print] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_exec] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_api] = ACTIONS(2917), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [970] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat_pattern] = STATE(2610), + [sym_as_pattern] = STATE(2570), + [sym__expression_within_for_in_clause] = STATE(4540), + [sym_expression] = STATE(4047), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_lambda_within_for_in_clause] = STATE(4540), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_print] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_exec] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_api] = ACTIONS(2917), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [971] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_expression_list] = STATE(5346), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4166), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(3065), - [anon_sym_from] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_RPAREN] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_print] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_exec] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_expression_list] = STATE(5383), + [sym_pattern] = STATE(4605), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2591), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(3986), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_pattern_list] = STATE(5509), + [sym_attribute] = STATE(2598), + [sym_subscript] = STATE(2598), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_print] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3115), + [anon_sym_exec] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(3119), + [anon_sym_api] = ACTIONS(3115), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [972] = { - [sym_named_expression] = STATE(3906), - [sym__named_expression_lhs] = STATE(5757), - [sym_list_splat] = STATE(5461), - [sym_parenthesized_list_splat] = STATE(5461), - [sym_list_splat_pattern] = STATE(2421), - [sym_as_pattern] = STATE(3906), - [sym_expression] = STATE(4284), - [sym_primary_expression] = STATE(2117), - [sym_not_operator] = STATE(3906), - [sym_boolean_operator] = STATE(3906), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_comparison_operator] = STATE(3906), - [sym_lambda] = STATE(3906), - [sym_yield] = STATE(5461), - [sym_attribute] = STATE(2347), - [sym_subscript] = STATE(2347), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_conditional_expression] = STATE(3906), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_new_expression] = STATE(3906), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_lambda] = ACTIONS(2997), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(2963), - [anon_sym_api] = ACTIONS(2959), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2999), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat] = STATE(5512), + [sym_parenthesized_list_splat] = STATE(5512), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4270), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_yield] = STATE(5512), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [973] = { - [sym_named_expression] = STATE(2712), - [sym__named_expression_lhs] = STATE(5581), - [sym_list_splat] = STATE(5413), - [sym_parenthesized_list_splat] = STATE(5413), - [sym_list_splat_pattern] = STATE(2703), - [sym_as_pattern] = STATE(2712), - [sym_expression] = STATE(4338), - [sym_primary_expression] = STATE(2221), - [sym_not_operator] = STATE(2712), - [sym_boolean_operator] = STATE(2712), - [sym_binary_operator] = STATE(2710), - [sym_unary_operator] = STATE(2710), - [sym_comparison_operator] = STATE(2712), - [sym_lambda] = STATE(2712), - [sym_yield] = STATE(5413), - [sym_attribute] = STATE(2710), - [sym_subscript] = STATE(2710), - [sym_ellipsis] = STATE(2710), - [sym_call] = STATE(2710), - [sym_list] = STATE(2710), - [sym_set] = STATE(2710), - [sym_tuple] = STATE(2710), - [sym_dictionary] = STATE(2710), - [sym_list_comprehension] = STATE(2710), - [sym_dictionary_comprehension] = STATE(2710), - [sym_set_comprehension] = STATE(2710), - [sym_generator_expression] = STATE(2710), - [sym_parenthesized_expression] = STATE(2710), - [sym_conditional_expression] = STATE(2712), - [sym_concatenated_string] = STATE(2710), - [sym_string] = STATE(2410), - [sym_none] = STATE(2710), - [sym_await] = STATE(2710), - [sym_new_expression] = STATE(2712), - [sym_sizeof_expression] = STATE(2710), - [sym_cast_expression] = STATE(2710), - [sym_identifier] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_print] = ACTIONS(1599), - [anon_sym_match] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1599), - [anon_sym_exec] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_not] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_lambda] = ACTIONS(1424), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_None] = ACTIONS(1428), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1601), - [anon_sym_api] = ACTIONS(1599), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1438), - [sym_string_start] = ACTIONS(1440), + [sym_named_expression] = STATE(2410), + [sym__named_expression_lhs] = STATE(5874), + [sym_list_splat_pattern] = STATE(2500), + [sym_as_pattern] = STATE(2410), + [sym__expression_within_for_in_clause] = STATE(4495), + [sym_expression] = STATE(4006), + [sym_primary_expression] = STATE(2161), + [sym_not_operator] = STATE(2410), + [sym_boolean_operator] = STATE(2410), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_comparison_operator] = STATE(2410), + [sym_lambda] = STATE(2410), + [sym_lambda_within_for_in_clause] = STATE(4495), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym_conditional_expression] = STATE(2410), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_new_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_lambda] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2637), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), }, [974] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_import] = ACTIONS(1510), - [anon_sym_cimport] = ACTIONS(1510), - [anon_sym_from] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1510), - [anon_sym_assert] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_del] = ACTIONS(1510), - [anon_sym_raise] = ACTIONS(1510), - [anon_sym_pass] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_elif] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1510), - [anon_sym_finally] = ACTIONS(1510), - [anon_sym_with] = ACTIONS(1510), - [anon_sym_def] = ACTIONS(1510), - [anon_sym_global] = ACTIONS(1510), - [anon_sym_nonlocal] = ACTIONS(1510), - [anon_sym_exec] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_class] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_not] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_lambda] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), - [anon_sym_None] = ACTIONS(1510), - [sym_integer] = ACTIONS(1510), - [sym_float] = ACTIONS(1512), - [anon_sym_await] = ACTIONS(1510), - [anon_sym_api] = ACTIONS(1510), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1510), - [anon_sym_include] = ACTIONS(1510), - [anon_sym_DEF] = ACTIONS(1510), - [anon_sym_cdef] = ACTIONS(1510), - [anon_sym_cpdef] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_ctypedef] = ACTIONS(1510), - [anon_sym_public] = ACTIONS(1510), - [anon_sym_packed] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_readonly] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1510), - [sym_string_start] = ACTIONS(1512), + [sym_named_expression] = STATE(2577), + [sym__named_expression_lhs] = STATE(5608), + [sym_list_splat_pattern] = STATE(2540), + [sym_as_pattern] = STATE(2577), + [sym__expression_within_for_in_clause] = STATE(4511), + [sym_expression] = STATE(3988), + [sym_primary_expression] = STATE(2169), + [sym_not_operator] = STATE(2577), + [sym_boolean_operator] = STATE(2577), + [sym_binary_operator] = STATE(2575), + [sym_unary_operator] = STATE(2575), + [sym_comparison_operator] = STATE(2577), + [sym_lambda] = STATE(2577), + [sym_lambda_within_for_in_clause] = STATE(4511), + [sym_attribute] = STATE(2575), + [sym_subscript] = STATE(2575), + [sym_ellipsis] = STATE(2575), + [sym_call] = STATE(2575), + [sym_list] = STATE(2575), + [sym_set] = STATE(2575), + [sym_tuple] = STATE(2575), + [sym_dictionary] = STATE(2575), + [sym_list_comprehension] = STATE(2575), + [sym_dictionary_comprehension] = STATE(2575), + [sym_set_comprehension] = STATE(2575), + [sym_generator_expression] = STATE(2575), + [sym_parenthesized_expression] = STATE(2575), + [sym_conditional_expression] = STATE(2577), + [sym_concatenated_string] = STATE(2575), + [sym_string] = STATE(2242), + [sym_none] = STATE(2575), + [sym_await] = STATE(2575), + [sym_new_expression] = STATE(2577), + [sym_sizeof_expression] = STATE(2575), + [sym_cast_expression] = STATE(2575), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_RPAREN] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_print] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_exec] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_not] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_lambda] = ACTIONS(3071), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1404), + [anon_sym_None] = ACTIONS(1406), + [sym_integer] = ACTIONS(1408), + [sym_float] = ACTIONS(1410), + [anon_sym_await] = ACTIONS(1560), + [anon_sym_api] = ACTIONS(1556), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1426), + [sym_string_start] = ACTIONS(1428), }, [975] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_import] = ACTIONS(1514), - [anon_sym_cimport] = ACTIONS(1514), - [anon_sym_from] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_print] = ACTIONS(1514), - [anon_sym_assert] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_del] = ACTIONS(1514), - [anon_sym_raise] = ACTIONS(1514), - [anon_sym_pass] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_elif] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_finally] = ACTIONS(1514), - [anon_sym_with] = ACTIONS(1514), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_global] = ACTIONS(1514), - [anon_sym_nonlocal] = ACTIONS(1514), - [anon_sym_exec] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_class] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_not] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_lambda] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_None] = ACTIONS(1514), - [sym_integer] = ACTIONS(1514), - [sym_float] = ACTIONS(1516), - [anon_sym_await] = ACTIONS(1514), - [anon_sym_api] = ACTIONS(1514), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1514), - [anon_sym_include] = ACTIONS(1514), - [anon_sym_DEF] = ACTIONS(1514), - [anon_sym_cdef] = ACTIONS(1514), - [anon_sym_cpdef] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_ctypedef] = ACTIONS(1514), - [anon_sym_public] = ACTIONS(1514), - [anon_sym_packed] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_readonly] = ACTIONS(1514), - [anon_sym_sizeof] = ACTIONS(1514), - [sym_string_start] = ACTIONS(1516), + [sym_elif_clause] = STATE(1092), + [aux_sym_if_statement_repeat1] = STATE(975), + [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_elif] = ACTIONS(3129), + [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_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_IF] = 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), }, [976] = { - [sym_elif_clause] = STATE(1152), - [aux_sym_if_statement_repeat1] = STATE(976), - [sym_identifier] = ACTIONS(3101), - [anon_sym_import] = ACTIONS(3101), - [anon_sym_cimport] = ACTIONS(3101), - [anon_sym_from] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_print] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_del] = ACTIONS(3101), - [anon_sym_raise] = ACTIONS(3101), - [anon_sym_pass] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_elif] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_async] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_with] = ACTIONS(3101), - [anon_sym_def] = ACTIONS(3101), - [anon_sym_global] = ACTIONS(3101), - [anon_sym_nonlocal] = ACTIONS(3101), - [anon_sym_exec] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_not] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_lambda] = ACTIONS(3101), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_None] = ACTIONS(3101), - [sym_integer] = ACTIONS(3101), - [sym_float] = ACTIONS(3103), - [anon_sym_await] = ACTIONS(3101), - [anon_sym_api] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3101), - [anon_sym_include] = ACTIONS(3101), - [anon_sym_DEF] = ACTIONS(3101), - [anon_sym_cdef] = ACTIONS(3101), - [anon_sym_cpdef] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_ctypedef] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_packed] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_sizeof] = ACTIONS(3101), - [sym__dedent] = ACTIONS(3103), - [sym_string_start] = ACTIONS(3103), - }, - [977] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_expression_list] = STATE(5279), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3939), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_from] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_print] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(1319), - [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(849), - [anon_sym_api] = ACTIONS(824), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5483), + [sym_parenthesized_list_splat] = STATE(5483), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4383), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_yield] = STATE(5483), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_exec] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_api] = ACTIONS(2429), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(99), - [anon_sym_sizeof] = ACTIONS(105), - [sym__newline] = ACTIONS(2961), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), + }, + [977] = { + [sym_named_expression] = STATE(2410), + [sym__named_expression_lhs] = STATE(5874), + [sym_list_splat_pattern] = STATE(2500), + [sym_as_pattern] = STATE(2410), + [sym__expression_within_for_in_clause] = STATE(4495), + [sym_expression] = STATE(4006), + [sym_primary_expression] = STATE(2161), + [sym_not_operator] = STATE(2410), + [sym_boolean_operator] = STATE(2410), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_comparison_operator] = STATE(2410), + [sym_lambda] = STATE(2410), + [sym_lambda_within_for_in_clause] = STATE(4495), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym_conditional_expression] = STATE(2410), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_new_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_lambda] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2637), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), }, [978] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_ELIF_clause] = STATE(1070), + [aux_sym_IF_statement_repeat1] = STATE(978), + [sym_identifier] = ACTIONS(3136), + [anon_sym_import] = ACTIONS(3136), + [anon_sym_cimport] = ACTIONS(3136), + [anon_sym_from] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_print] = ACTIONS(3136), + [anon_sym_assert] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_del] = ACTIONS(3136), + [anon_sym_raise] = ACTIONS(3136), + [anon_sym_pass] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_match] = ACTIONS(3136), + [anon_sym_async] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_with] = ACTIONS(3136), + [anon_sym_def] = ACTIONS(3136), + [anon_sym_global] = ACTIONS(3136), + [anon_sym_nonlocal] = ACTIONS(3136), + [anon_sym_exec] = ACTIONS(3136), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_class] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_not] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_lambda] = ACTIONS(3136), + [anon_sym_yield] = ACTIONS(3136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3138), + [anon_sym_None] = ACTIONS(3136), + [sym_integer] = ACTIONS(3136), + [sym_float] = ACTIONS(3138), + [anon_sym_await] = ACTIONS(3136), + [anon_sym_api] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3136), + [anon_sym_include] = ACTIONS(3136), + [anon_sym_DEF] = ACTIONS(3136), + [anon_sym_IF] = ACTIONS(3136), + [anon_sym_ELIF] = ACTIONS(3140), + [anon_sym_ELSE] = ACTIONS(3136), + [anon_sym_cdef] = ACTIONS(3136), + [anon_sym_cpdef] = ACTIONS(3136), + [anon_sym_new] = ACTIONS(3136), + [anon_sym_ctypedef] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_packed] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_readonly] = ACTIONS(3136), + [anon_sym_sizeof] = ACTIONS(3136), + [sym__dedent] = ACTIONS(3138), + [sym_string_start] = ACTIONS(3138), }, [979] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_expression_list] = STATE(5093), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3915), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym_from] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_print] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(1319), - [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(849), - [anon_sym_api] = ACTIONS(824), - [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(3114), - [sym_string_start] = ACTIONS(107), + [sym_elif_clause] = STATE(1133), + [aux_sym_if_statement_repeat1] = STATE(979), + [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_elif] = ACTIONS(3143), + [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_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_IF] = 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), }, [980] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1526), - [anon_sym_cimport] = ACTIONS(1526), - [anon_sym_from] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_print] = ACTIONS(1526), - [anon_sym_assert] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_del] = ACTIONS(1526), - [anon_sym_raise] = ACTIONS(1526), - [anon_sym_pass] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_elif] = ACTIONS(1526), - [anon_sym_else] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_try] = ACTIONS(1526), - [anon_sym_finally] = ACTIONS(1526), - [anon_sym_with] = ACTIONS(1526), - [anon_sym_def] = ACTIONS(1526), - [anon_sym_global] = ACTIONS(1526), - [anon_sym_nonlocal] = ACTIONS(1526), - [anon_sym_exec] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_class] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_lambda] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), - [anon_sym_None] = ACTIONS(1526), - [sym_integer] = ACTIONS(1526), - [sym_float] = ACTIONS(1528), - [anon_sym_await] = ACTIONS(1526), - [anon_sym_api] = ACTIONS(1526), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1526), - [anon_sym_include] = ACTIONS(1526), - [anon_sym_DEF] = ACTIONS(1526), - [anon_sym_cdef] = ACTIONS(1526), - [anon_sym_cpdef] = ACTIONS(1526), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_ctypedef] = ACTIONS(1526), - [anon_sym_public] = ACTIONS(1526), - [anon_sym_packed] = ACTIONS(1526), - [anon_sym_inline] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1526), - [anon_sym_sizeof] = ACTIONS(1526), - [sym_string_start] = ACTIONS(1528), + [sym_named_expression] = STATE(2410), + [sym__named_expression_lhs] = STATE(5874), + [sym_list_splat_pattern] = STATE(2500), + [sym_as_pattern] = STATE(2410), + [sym__expression_within_for_in_clause] = STATE(4495), + [sym_expression] = STATE(4006), + [sym_primary_expression] = STATE(2161), + [sym_not_operator] = STATE(2410), + [sym_boolean_operator] = STATE(2410), + [sym_binary_operator] = STATE(2445), + [sym_unary_operator] = STATE(2445), + [sym_comparison_operator] = STATE(2410), + [sym_lambda] = STATE(2410), + [sym_lambda_within_for_in_clause] = STATE(4495), + [sym_attribute] = STATE(2445), + [sym_subscript] = STATE(2445), + [sym_ellipsis] = STATE(2445), + [sym_call] = STATE(2445), + [sym_list] = STATE(2445), + [sym_set] = STATE(2445), + [sym_tuple] = STATE(2445), + [sym_dictionary] = STATE(2445), + [sym_list_comprehension] = STATE(2445), + [sym_dictionary_comprehension] = STATE(2445), + [sym_set_comprehension] = STATE(2445), + [sym_generator_expression] = STATE(2445), + [sym_parenthesized_expression] = STATE(2445), + [sym_conditional_expression] = STATE(2410), + [sym_concatenated_string] = STATE(2445), + [sym_string] = STATE(2226), + [sym_none] = STATE(2445), + [sym_await] = STATE(2445), + [sym_new_expression] = STATE(2410), + [sym_sizeof_expression] = STATE(2445), + [sym_cast_expression] = STATE(2445), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_print] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_exec] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_TILDE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_lambda] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_None] = ACTIONS(2493), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2495), + [anon_sym_await] = ACTIONS(2637), + [anon_sym_api] = ACTIONS(2623), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_string_start] = ACTIONS(2501), }, [981] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_pattern] = STATE(3294), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2809), + [sym_primary_expression] = STATE(3330), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2811), + [sym_subscript] = STATE(2811), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_print] = ACTIONS(3152), + [anon_sym_COLON] = ACTIONS(2799), + [anon_sym_match] = ACTIONS(3152), + [anon_sym_async] = ACTIONS(3152), + [anon_sym_exec] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(2799), + [anon_sym_DASH_EQ] = ACTIONS(2799), + [anon_sym_STAR_EQ] = ACTIONS(2799), + [anon_sym_SLASH_EQ] = ACTIONS(2799), + [anon_sym_AT_EQ] = ACTIONS(2799), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2799), + [anon_sym_PERCENT_EQ] = ACTIONS(2799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2799), + [anon_sym_GT_GT_EQ] = ACTIONS(2799), + [anon_sym_LT_LT_EQ] = ACTIONS(2799), + [anon_sym_AMP_EQ] = ACTIONS(2799), + [anon_sym_CARET_EQ] = ACTIONS(2799), + [anon_sym_PIPE_EQ] = ACTIONS(2799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_api] = ACTIONS(3152), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [982] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3120), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat_pattern] = STATE(2610), + [sym_as_pattern] = STATE(2570), + [sym__expression_within_for_in_clause] = STATE(4540), + [sym_expression] = STATE(4047), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_lambda_within_for_in_clause] = STATE(4540), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_print] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(3069), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_exec] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_api] = ACTIONS(2917), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [983] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_expression_list] = STATE(5412), + [sym_pattern] = STATE(4759), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2591), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(3987), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_pattern_list] = STATE(5475), + [sym_attribute] = STATE(2598), + [sym_subscript] = STATE(2598), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_print] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3115), + [anon_sym_exec] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(3119), + [anon_sym_api] = ACTIONS(3115), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [984] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2570), + [sym__named_expression_lhs] = STATE(5785), + [sym_list_splat_pattern] = STATE(2610), + [sym_as_pattern] = STATE(2570), + [sym__expression_within_for_in_clause] = STATE(4540), + [sym_expression] = STATE(4047), + [sym_primary_expression] = STATE(2168), + [sym_not_operator] = STATE(2570), + [sym_boolean_operator] = STATE(2570), + [sym_binary_operator] = STATE(2568), + [sym_unary_operator] = STATE(2568), + [sym_comparison_operator] = STATE(2570), + [sym_lambda] = STATE(2570), + [sym_lambda_within_for_in_clause] = STATE(4540), + [sym_attribute] = STATE(2568), + [sym_subscript] = STATE(2568), + [sym_ellipsis] = STATE(2568), + [sym_call] = STATE(2568), + [sym_list] = STATE(2568), + [sym_set] = STATE(2568), + [sym_tuple] = STATE(2568), + [sym_dictionary] = STATE(2568), + [sym_list_comprehension] = STATE(2568), + [sym_dictionary_comprehension] = STATE(2568), + [sym_set_comprehension] = STATE(2568), + [sym_generator_expression] = STATE(2568), + [sym_parenthesized_expression] = STATE(2568), + [sym_conditional_expression] = STATE(2570), + [sym_concatenated_string] = STATE(2568), + [sym_string] = STATE(2283), + [sym_none] = STATE(2568), + [sym_await] = STATE(2568), + [sym_new_expression] = STATE(2570), + [sym_sizeof_expression] = STATE(2568), + [sym_cast_expression] = STATE(2568), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_print] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_exec] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2553), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_lambda] = ACTIONS(3107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [anon_sym_None] = ACTIONS(2561), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2563), + [anon_sym_await] = ACTIONS(2921), + [anon_sym_api] = ACTIONS(2917), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_string_start] = ACTIONS(2569), }, [985] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(3933), + [sym__named_expression_lhs] = STATE(5807), + [sym_list_splat] = STATE(5309), + [sym_parenthesized_list_splat] = STATE(5309), + [sym_list_splat_pattern] = STATE(2465), + [sym_as_pattern] = STATE(3933), + [sym_expression] = STATE(4372), + [sym_primary_expression] = STATE(2159), + [sym_not_operator] = STATE(3933), + [sym_boolean_operator] = STATE(3933), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_comparison_operator] = STATE(3933), + [sym_lambda] = STATE(3933), + [sym_yield] = STATE(5309), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_conditional_expression] = STATE(3933), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_new_expression] = STATE(3933), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_print] = ACTIONS(2875), + [anon_sym_match] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_exec] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_lambda] = ACTIONS(3081), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2879), + [anon_sym_api] = ACTIONS(2875), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, [986] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_import] = ACTIONS(1518), - [anon_sym_cimport] = ACTIONS(1518), - [anon_sym_from] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_print] = ACTIONS(1518), - [anon_sym_assert] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_del] = ACTIONS(1518), - [anon_sym_raise] = ACTIONS(1518), - [anon_sym_pass] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_elif] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_finally] = ACTIONS(1518), - [anon_sym_with] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_global] = ACTIONS(1518), - [anon_sym_nonlocal] = ACTIONS(1518), - [anon_sym_exec] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_not] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_lambda] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), - [anon_sym_None] = ACTIONS(1518), - [sym_integer] = ACTIONS(1518), - [sym_float] = ACTIONS(1520), - [anon_sym_await] = ACTIONS(1518), - [anon_sym_api] = ACTIONS(1518), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1518), - [anon_sym_include] = ACTIONS(1518), - [anon_sym_DEF] = ACTIONS(1518), - [anon_sym_cdef] = ACTIONS(1518), - [anon_sym_cpdef] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_ctypedef] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_packed] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_sizeof] = ACTIONS(1518), - [sym_string_start] = ACTIONS(1520), + [sym_ELIF_clause] = STATE(1132), + [aux_sym_IF_statement_repeat1] = STATE(986), + [ts_builtin_sym_end] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3136), + [anon_sym_import] = ACTIONS(3136), + [anon_sym_cimport] = ACTIONS(3136), + [anon_sym_from] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_print] = ACTIONS(3136), + [anon_sym_assert] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_del] = ACTIONS(3136), + [anon_sym_raise] = ACTIONS(3136), + [anon_sym_pass] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_match] = ACTIONS(3136), + [anon_sym_async] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_with] = ACTIONS(3136), + [anon_sym_def] = ACTIONS(3136), + [anon_sym_global] = ACTIONS(3136), + [anon_sym_nonlocal] = ACTIONS(3136), + [anon_sym_exec] = ACTIONS(3136), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_class] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_not] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_lambda] = ACTIONS(3136), + [anon_sym_yield] = ACTIONS(3136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3138), + [anon_sym_None] = ACTIONS(3136), + [sym_integer] = ACTIONS(3136), + [sym_float] = ACTIONS(3138), + [anon_sym_await] = ACTIONS(3136), + [anon_sym_api] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3136), + [anon_sym_include] = ACTIONS(3136), + [anon_sym_DEF] = ACTIONS(3136), + [anon_sym_IF] = ACTIONS(3136), + [anon_sym_ELIF] = ACTIONS(3158), + [anon_sym_ELSE] = ACTIONS(3136), + [anon_sym_cdef] = ACTIONS(3136), + [anon_sym_cpdef] = ACTIONS(3136), + [anon_sym_new] = ACTIONS(3136), + [anon_sym_ctypedef] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_packed] = ACTIONS(3136), + [anon_sym_inline] = ACTIONS(3136), + [anon_sym_readonly] = ACTIONS(3136), + [anon_sym_sizeof] = ACTIONS(3136), + [sym_string_start] = ACTIONS(3138), }, [987] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5483), + [sym_parenthesized_list_splat] = STATE(5483), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4383), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_yield] = STATE(5483), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_exec] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_api] = ACTIONS(2429), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [988] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_expression_list] = STATE(5327), + [sym_pattern] = STATE(4735), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2591), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4078), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_pattern_list] = STATE(5497), + [sym_attribute] = STATE(2598), + [sym_subscript] = STATE(2598), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_print] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3115), + [anon_sym_exec] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(3119), + [anon_sym_api] = ACTIONS(3115), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [989] = { - [sym_named_expression] = STATE(3906), - [sym__named_expression_lhs] = STATE(5757), - [sym_expression_list] = STATE(4480), - [sym_list_splat_pattern] = STATE(2421), - [sym_as_pattern] = STATE(3906), - [sym_expression] = STATE(4204), - [sym_primary_expression] = STATE(2117), - [sym_not_operator] = STATE(3906), - [sym_boolean_operator] = STATE(3906), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_comparison_operator] = STATE(3906), - [sym_lambda] = STATE(3906), - [sym_attribute] = STATE(2347), - [sym_subscript] = STATE(2347), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_conditional_expression] = STATE(3906), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_new_expression] = STATE(3906), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(2955), - [anon_sym_from] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_lambda] = ACTIONS(2997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(2963), - [anon_sym_api] = ACTIONS(2959), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2999), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_expression_list] = STATE(5331), + [sym_pattern] = STATE(4743), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2591), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4061), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_pattern_list] = STATE(5502), + [sym_attribute] = STATE(2598), + [sym_subscript] = STATE(2598), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_print] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3115), + [anon_sym_exec] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(3119), + [anon_sym_api] = ACTIONS(3115), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [990] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat] = STATE(5458), - [sym_parenthesized_list_splat] = STATE(5458), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4245), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_yield] = STATE(5458), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5377), + [sym_dictionary_splat] = STATE(5377), + [sym_parenthesized_list_splat] = STATE(5414), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4285), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_keyword_argument] = STATE(5377), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_print] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_STAR_STAR] = ACTIONS(1446), + [anon_sym_exec] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_api] = ACTIONS(1444), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [991] = { - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_import] = ACTIONS(1522), - [anon_sym_cimport] = ACTIONS(1522), - [anon_sym_from] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_print] = ACTIONS(1522), - [anon_sym_assert] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_del] = ACTIONS(1522), - [anon_sym_raise] = ACTIONS(1522), - [anon_sym_pass] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_elif] = ACTIONS(1522), - [anon_sym_else] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [anon_sym_finally] = ACTIONS(1522), - [anon_sym_with] = ACTIONS(1522), - [anon_sym_def] = ACTIONS(1522), - [anon_sym_global] = ACTIONS(1522), - [anon_sym_nonlocal] = ACTIONS(1522), - [anon_sym_exec] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_class] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_not] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_lambda] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_None] = ACTIONS(1522), - [sym_integer] = ACTIONS(1522), - [sym_float] = ACTIONS(1524), - [anon_sym_await] = ACTIONS(1522), - [anon_sym_api] = ACTIONS(1522), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1522), - [anon_sym_include] = ACTIONS(1522), - [anon_sym_DEF] = ACTIONS(1522), - [anon_sym_cdef] = ACTIONS(1522), - [anon_sym_cpdef] = ACTIONS(1522), - [anon_sym_new] = ACTIONS(1522), - [anon_sym_ctypedef] = ACTIONS(1522), - [anon_sym_public] = ACTIONS(1522), - [anon_sym_packed] = ACTIONS(1522), - [anon_sym_inline] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1522), - [sym_string_start] = ACTIONS(1524), + [sym_pattern] = STATE(3294), + [sym_tuple_pattern] = STATE(3321), + [sym_list_pattern] = STATE(3321), + [sym_list_splat_pattern] = STATE(2809), + [sym_primary_expression] = STATE(3330), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_attribute] = STATE(2811), + [sym_subscript] = STATE(2811), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_print] = ACTIONS(3152), + [anon_sym_COLON] = ACTIONS(2811), + [anon_sym_match] = ACTIONS(3152), + [anon_sym_async] = ACTIONS(3152), + [anon_sym_exec] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(2811), + [anon_sym_DASH_EQ] = ACTIONS(2811), + [anon_sym_STAR_EQ] = ACTIONS(2811), + [anon_sym_SLASH_EQ] = ACTIONS(2811), + [anon_sym_AT_EQ] = ACTIONS(2811), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(2811), + [anon_sym_PERCENT_EQ] = ACTIONS(2811), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2811), + [anon_sym_GT_GT_EQ] = ACTIONS(2811), + [anon_sym_LT_LT_EQ] = ACTIONS(2811), + [anon_sym_AMP_EQ] = ACTIONS(2811), + [anon_sym_CARET_EQ] = ACTIONS(2811), + [anon_sym_PIPE_EQ] = ACTIONS(2811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_api] = ACTIONS(3152), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [992] = { - [sym_elif_clause] = STATE(1100), - [aux_sym_if_statement_repeat1] = STATE(992), - [ts_builtin_sym_end] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3101), - [anon_sym_import] = ACTIONS(3101), - [anon_sym_cimport] = ACTIONS(3101), - [anon_sym_from] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_print] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_del] = ACTIONS(3101), - [anon_sym_raise] = ACTIONS(3101), - [anon_sym_pass] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_elif] = ACTIONS(3134), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_async] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_while] = ACTIONS(3101), - [anon_sym_try] = ACTIONS(3101), - [anon_sym_with] = ACTIONS(3101), - [anon_sym_def] = ACTIONS(3101), - [anon_sym_global] = ACTIONS(3101), - [anon_sym_nonlocal] = ACTIONS(3101), - [anon_sym_exec] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_not] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_lambda] = ACTIONS(3101), - [anon_sym_yield] = ACTIONS(3101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_None] = ACTIONS(3101), - [sym_integer] = ACTIONS(3101), - [sym_float] = ACTIONS(3103), - [anon_sym_await] = ACTIONS(3101), - [anon_sym_api] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3101), - [anon_sym_include] = ACTIONS(3101), - [anon_sym_DEF] = ACTIONS(3101), - [anon_sym_cdef] = ACTIONS(3101), - [anon_sym_cpdef] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_ctypedef] = ACTIONS(3101), - [anon_sym_public] = ACTIONS(3101), - [anon_sym_packed] = ACTIONS(3101), - [anon_sym_inline] = ACTIONS(3101), - [anon_sym_readonly] = ACTIONS(3101), - [anon_sym_sizeof] = ACTIONS(3101), - [sym_string_start] = ACTIONS(3103), + [sym_named_expression] = STATE(3933), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat_pattern] = STATE(2465), + [sym_as_pattern] = STATE(3933), + [sym_expression] = STATE(3970), + [sym_primary_expression] = STATE(2159), + [sym_not_operator] = STATE(3933), + [sym_boolean_operator] = STATE(3933), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_comparison_operator] = STATE(3933), + [sym_lambda] = STATE(3933), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_conditional_expression] = STATE(3933), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_new_expression] = STATE(3933), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(2875), + [anon_sym_COLON] = ACTIONS(3161), + [anon_sym_match] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_exec] = ACTIONS(2875), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_lambda] = ACTIONS(2767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_type_conversion] = ACTIONS(3161), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2879), + [anon_sym_api] = ACTIONS(2875), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, [993] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), + [sym_identifier] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_cimport] = ACTIONS(3163), + [anon_sym_from] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_print] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_del] = ACTIONS(3163), + [anon_sym_raise] = ACTIONS(3163), + [anon_sym_pass] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_else] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_async] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_except] = ACTIONS(3163), + [anon_sym_finally] = ACTIONS(3163), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_def] = ACTIONS(3163), + [anon_sym_global] = ACTIONS(3163), + [anon_sym_nonlocal] = ACTIONS(3163), + [anon_sym_exec] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_AT] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_lambda] = ACTIONS(3163), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3165), + [anon_sym_None] = ACTIONS(3163), + [sym_integer] = ACTIONS(3163), + [sym_float] = ACTIONS(3165), + [anon_sym_await] = ACTIONS(3163), + [anon_sym_api] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3163), + [anon_sym_include] = ACTIONS(3163), + [anon_sym_DEF] = ACTIONS(3163), + [anon_sym_IF] = ACTIONS(3163), + [anon_sym_cdef] = ACTIONS(3163), + [anon_sym_cpdef] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_ctypedef] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_packed] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym_readonly] = ACTIONS(3163), + [anon_sym_sizeof] = ACTIONS(3163), + [sym__dedent] = ACTIONS(3165), + [sym_string_start] = ACTIONS(3165), }, [994] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_expression_list] = STATE(5375), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4205), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_from] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [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_STAR] = ACTIONS(3169), + [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_IF] = 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), }, [995] = { - [sym_named_expression] = STATE(3906), - [sym__named_expression_lhs] = STATE(5700), - [sym_list_splat_pattern] = STATE(2421), - [sym_as_pattern] = STATE(3906), - [sym_expression] = STATE(3924), - [sym_primary_expression] = STATE(2117), - [sym_not_operator] = STATE(3906), - [sym_boolean_operator] = STATE(3906), - [sym_binary_operator] = STATE(2347), - [sym_unary_operator] = STATE(2347), - [sym_comparison_operator] = STATE(3906), - [sym_lambda] = STATE(3906), - [sym_attribute] = STATE(2347), - [sym_subscript] = STATE(2347), - [sym_ellipsis] = STATE(2347), - [sym_call] = STATE(2347), - [sym_list] = STATE(2347), - [sym_set] = STATE(2347), - [sym_tuple] = STATE(2347), - [sym_dictionary] = STATE(2347), - [sym_list_comprehension] = STATE(2347), - [sym_dictionary_comprehension] = STATE(2347), - [sym_set_comprehension] = STATE(2347), - [sym_generator_expression] = STATE(2347), - [sym_parenthesized_expression] = STATE(2347), - [sym_conditional_expression] = STATE(3906), - [sym_concatenated_string] = STATE(2347), - [sym_string] = STATE(2153), - [sym_none] = STATE(2347), - [sym_await] = STATE(2347), - [sym_new_expression] = STATE(3906), - [sym_sizeof_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_identifier] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_print] = ACTIONS(2959), - [anon_sym_COLON] = ACTIONS(3143), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_exec] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1983), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_lambda] = ACTIONS(2707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1989), - [anon_sym_None] = ACTIONS(1991), - [sym_type_conversion] = ACTIONS(3143), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1993), - [anon_sym_await] = ACTIONS(2963), - [anon_sym_api] = ACTIONS(2959), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_sizeof] = ACTIONS(1997), - [sym_string_start] = ACTIONS(1999), - }, - [996] = { - [ts_builtin_sym_end] = ACTIONS(3145), - [sym_identifier] = ACTIONS(3147), - [anon_sym_import] = ACTIONS(3147), - [anon_sym_cimport] = ACTIONS(3147), - [anon_sym_from] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_print] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_del] = ACTIONS(3147), - [anon_sym_raise] = ACTIONS(3147), - [anon_sym_pass] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_async] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_except_STAR] = ACTIONS(3145), - [anon_sym_finally] = ACTIONS(3147), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_def] = ACTIONS(3147), - [anon_sym_global] = ACTIONS(3147), - [anon_sym_nonlocal] = ACTIONS(3147), - [anon_sym_exec] = ACTIONS(3147), - [anon_sym_type] = ACTIONS(3147), - [anon_sym_class] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_not] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_lambda] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), - [anon_sym_None] = ACTIONS(3147), - [sym_integer] = ACTIONS(3147), - [sym_float] = ACTIONS(3145), - [anon_sym_await] = ACTIONS(3147), - [anon_sym_api] = ACTIONS(3147), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3147), - [anon_sym_include] = ACTIONS(3147), - [anon_sym_DEF] = ACTIONS(3147), - [anon_sym_cdef] = ACTIONS(3147), - [anon_sym_cpdef] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_ctypedef] = ACTIONS(3147), - [anon_sym_public] = ACTIONS(3147), - [anon_sym_packed] = ACTIONS(3147), - [anon_sym_inline] = ACTIONS(3147), - [anon_sym_readonly] = ACTIONS(3147), - [anon_sym_sizeof] = ACTIONS(3147), - [sym_string_start] = ACTIONS(3145), - }, - [997] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4170), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [998] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [999] = { - [ts_builtin_sym_end] = ACTIONS(3157), - [sym_identifier] = ACTIONS(3159), - [anon_sym_import] = ACTIONS(3159), - [anon_sym_cimport] = ACTIONS(3159), - [anon_sym_from] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [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(3157), - [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(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(3159), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_lambda] = ACTIONS(3159), - [anon_sym_yield] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), - [anon_sym_None] = ACTIONS(3159), - [sym_integer] = ACTIONS(3159), - [sym_float] = ACTIONS(3157), - [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(3157), - }, - [1000] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1001] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1510), - [anon_sym_import] = ACTIONS(1510), - [anon_sym_cimport] = ACTIONS(1510), - [anon_sym_from] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1510), - [anon_sym_assert] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_del] = ACTIONS(1510), - [anon_sym_raise] = ACTIONS(1510), - [anon_sym_pass] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1510), - [anon_sym_except_STAR] = ACTIONS(1512), - [anon_sym_finally] = ACTIONS(1510), - [anon_sym_with] = ACTIONS(1510), - [anon_sym_def] = ACTIONS(1510), - [anon_sym_global] = ACTIONS(1510), - [anon_sym_nonlocal] = ACTIONS(1510), - [anon_sym_exec] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_class] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_not] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_lambda] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), - [anon_sym_None] = ACTIONS(1510), - [sym_integer] = ACTIONS(1510), - [sym_float] = ACTIONS(1512), - [anon_sym_await] = ACTIONS(1510), - [anon_sym_api] = ACTIONS(1510), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1510), - [anon_sym_include] = ACTIONS(1510), - [anon_sym_DEF] = ACTIONS(1510), - [anon_sym_cdef] = ACTIONS(1510), - [anon_sym_cpdef] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_ctypedef] = ACTIONS(1510), - [anon_sym_public] = ACTIONS(1510), - [anon_sym_packed] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_readonly] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1510), - [sym_string_start] = ACTIONS(1512), - }, - [1002] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1514), - [anon_sym_import] = ACTIONS(1514), - [anon_sym_cimport] = ACTIONS(1514), - [anon_sym_from] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_print] = ACTIONS(1514), - [anon_sym_assert] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_del] = ACTIONS(1514), - [anon_sym_raise] = ACTIONS(1514), - [anon_sym_pass] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_except_STAR] = ACTIONS(1516), - [anon_sym_finally] = ACTIONS(1514), - [anon_sym_with] = ACTIONS(1514), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_global] = ACTIONS(1514), - [anon_sym_nonlocal] = ACTIONS(1514), - [anon_sym_exec] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_class] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_not] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_lambda] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_None] = ACTIONS(1514), - [sym_integer] = ACTIONS(1514), - [sym_float] = ACTIONS(1516), - [anon_sym_await] = ACTIONS(1514), - [anon_sym_api] = ACTIONS(1514), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1514), - [anon_sym_include] = ACTIONS(1514), - [anon_sym_DEF] = ACTIONS(1514), - [anon_sym_cdef] = ACTIONS(1514), - [anon_sym_cpdef] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_ctypedef] = ACTIONS(1514), - [anon_sym_public] = ACTIONS(1514), - [anon_sym_packed] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_readonly] = ACTIONS(1514), - [anon_sym_sizeof] = ACTIONS(1514), - [sym_string_start] = ACTIONS(1516), - }, - [1003] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1004] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1005] = { - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_identifier] = ACTIONS(1522), - [anon_sym_import] = ACTIONS(1522), - [anon_sym_cimport] = ACTIONS(1522), - [anon_sym_from] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_print] = ACTIONS(1522), - [anon_sym_assert] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_del] = ACTIONS(1522), - [anon_sym_raise] = ACTIONS(1522), - [anon_sym_pass] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_else] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [anon_sym_except_STAR] = ACTIONS(1524), - [anon_sym_finally] = ACTIONS(1522), - [anon_sym_with] = ACTIONS(1522), - [anon_sym_def] = ACTIONS(1522), - [anon_sym_global] = ACTIONS(1522), - [anon_sym_nonlocal] = ACTIONS(1522), - [anon_sym_exec] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_class] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_not] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_lambda] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_None] = ACTIONS(1522), - [sym_integer] = ACTIONS(1522), - [sym_float] = ACTIONS(1524), - [anon_sym_await] = ACTIONS(1522), - [anon_sym_api] = ACTIONS(1522), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1522), - [anon_sym_include] = ACTIONS(1522), - [anon_sym_DEF] = ACTIONS(1522), - [anon_sym_cdef] = ACTIONS(1522), - [anon_sym_cpdef] = ACTIONS(1522), - [anon_sym_new] = ACTIONS(1522), - [anon_sym_ctypedef] = ACTIONS(1522), - [anon_sym_public] = ACTIONS(1522), - [anon_sym_packed] = ACTIONS(1522), - [anon_sym_inline] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1522), - [sym_string_start] = ACTIONS(1524), - }, - [1006] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(1526), - [anon_sym_cimport] = ACTIONS(1526), - [anon_sym_from] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_print] = ACTIONS(1526), - [anon_sym_assert] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_del] = ACTIONS(1526), - [anon_sym_raise] = ACTIONS(1526), - [anon_sym_pass] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_else] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_try] = ACTIONS(1526), - [anon_sym_except_STAR] = ACTIONS(1528), - [anon_sym_finally] = ACTIONS(1526), - [anon_sym_with] = ACTIONS(1526), - [anon_sym_def] = ACTIONS(1526), - [anon_sym_global] = ACTIONS(1526), - [anon_sym_nonlocal] = ACTIONS(1526), - [anon_sym_exec] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_class] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_lambda] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), - [anon_sym_None] = ACTIONS(1526), - [sym_integer] = ACTIONS(1526), - [sym_float] = ACTIONS(1528), - [anon_sym_await] = ACTIONS(1526), - [anon_sym_api] = ACTIONS(1526), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1526), - [anon_sym_include] = ACTIONS(1526), - [anon_sym_DEF] = ACTIONS(1526), - [anon_sym_cdef] = ACTIONS(1526), - [anon_sym_cpdef] = ACTIONS(1526), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_ctypedef] = ACTIONS(1526), - [anon_sym_public] = ACTIONS(1526), - [anon_sym_packed] = ACTIONS(1526), - [anon_sym_inline] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1526), - [anon_sym_sizeof] = ACTIONS(1526), - [sym_string_start] = ACTIONS(1528), - }, - [1007] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(1526), - [anon_sym_cimport] = ACTIONS(1526), - [anon_sym_from] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_print] = ACTIONS(1526), - [anon_sym_assert] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_del] = ACTIONS(1526), - [anon_sym_raise] = ACTIONS(1526), - [anon_sym_pass] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_else] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_try] = ACTIONS(1526), - [anon_sym_except] = ACTIONS(1526), - [anon_sym_finally] = ACTIONS(1526), - [anon_sym_with] = ACTIONS(1526), - [anon_sym_def] = ACTIONS(1526), - [anon_sym_global] = ACTIONS(1526), - [anon_sym_nonlocal] = ACTIONS(1526), - [anon_sym_exec] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_class] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_lambda] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), - [anon_sym_None] = ACTIONS(1526), - [sym_integer] = ACTIONS(1526), - [sym_float] = ACTIONS(1528), - [anon_sym_await] = ACTIONS(1526), - [anon_sym_api] = ACTIONS(1526), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1526), - [anon_sym_include] = ACTIONS(1526), - [anon_sym_DEF] = ACTIONS(1526), - [anon_sym_cdef] = ACTIONS(1526), - [anon_sym_cpdef] = ACTIONS(1526), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_ctypedef] = ACTIONS(1526), - [anon_sym_public] = ACTIONS(1526), - [anon_sym_packed] = ACTIONS(1526), - [anon_sym_inline] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1526), - [anon_sym_sizeof] = ACTIONS(1526), - [sym_string_start] = ACTIONS(1528), - }, - [1008] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3964), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_from] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_print] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(1319), + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_expression_list] = STATE(5216), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3911), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_from] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_print] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1353), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -117901,895 +118621,297 @@ 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(849), - [anon_sym_api] = ACTIONS(824), + [anon_sym_await] = ACTIONS(895), + [anon_sym_api] = ACTIONS(870), [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(3143), - [sym_string_start] = ACTIONS(107), - }, - [1009] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1518), - [anon_sym_import] = ACTIONS(1518), - [anon_sym_cimport] = ACTIONS(1518), - [anon_sym_from] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_print] = ACTIONS(1518), - [anon_sym_assert] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_del] = ACTIONS(1518), - [anon_sym_raise] = ACTIONS(1518), - [anon_sym_pass] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_except_STAR] = ACTIONS(1520), - [anon_sym_finally] = ACTIONS(1518), - [anon_sym_with] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_global] = ACTIONS(1518), - [anon_sym_nonlocal] = ACTIONS(1518), - [anon_sym_exec] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_not] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_lambda] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), - [anon_sym_None] = ACTIONS(1518), - [sym_integer] = ACTIONS(1518), - [sym_float] = ACTIONS(1520), - [anon_sym_await] = ACTIONS(1518), - [anon_sym_api] = ACTIONS(1518), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1518), - [anon_sym_include] = ACTIONS(1518), - [anon_sym_DEF] = ACTIONS(1518), - [anon_sym_cdef] = ACTIONS(1518), - [anon_sym_cpdef] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_ctypedef] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_packed] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_sizeof] = ACTIONS(1518), - [sym_string_start] = ACTIONS(1520), - }, - [1010] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1011] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1012] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1013] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1014] = { - [sym_identifier] = ACTIONS(3177), - [anon_sym_import] = ACTIONS(3177), - [anon_sym_cimport] = ACTIONS(3177), - [anon_sym_from] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3179), - [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] = ACTIONS(3177), - [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(3179), - [anon_sym_AT] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_lambda] = ACTIONS(3177), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), - [anon_sym_None] = ACTIONS(3177), - [sym_integer] = ACTIONS(3177), - [sym_float] = ACTIONS(3179), - [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(3179), - [sym_string_start] = ACTIONS(3179), - }, - [1015] = { - [sym_identifier] = ACTIONS(3147), - [anon_sym_import] = ACTIONS(3147), - [anon_sym_cimport] = ACTIONS(3147), - [anon_sym_from] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_print] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_del] = ACTIONS(3147), - [anon_sym_raise] = ACTIONS(3147), - [anon_sym_pass] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_async] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_except_STAR] = ACTIONS(3145), - [anon_sym_finally] = ACTIONS(3147), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_def] = ACTIONS(3147), - [anon_sym_global] = ACTIONS(3147), - [anon_sym_nonlocal] = ACTIONS(3147), - [anon_sym_exec] = ACTIONS(3147), - [anon_sym_type] = ACTIONS(3147), - [anon_sym_class] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_not] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_lambda] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3145), - [anon_sym_None] = ACTIONS(3147), - [sym_integer] = ACTIONS(3147), - [sym_float] = ACTIONS(3145), - [anon_sym_await] = ACTIONS(3147), - [anon_sym_api] = ACTIONS(3147), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3147), - [anon_sym_include] = ACTIONS(3147), - [anon_sym_DEF] = ACTIONS(3147), - [anon_sym_cdef] = ACTIONS(3147), - [anon_sym_cpdef] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_ctypedef] = ACTIONS(3147), - [anon_sym_public] = ACTIONS(3147), - [anon_sym_packed] = ACTIONS(3147), - [anon_sym_inline] = ACTIONS(3147), - [anon_sym_readonly] = ACTIONS(3147), - [anon_sym_sizeof] = ACTIONS(3147), - [sym__dedent] = ACTIONS(3145), - [sym_string_start] = ACTIONS(3145), - }, - [1016] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1017] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(3171), + [sym_string_start] = ACTIONS(109), }, - [1018] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1514), - [anon_sym_import] = ACTIONS(1514), - [anon_sym_cimport] = ACTIONS(1514), - [anon_sym_from] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_print] = ACTIONS(1514), - [anon_sym_assert] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_del] = ACTIONS(1514), - [anon_sym_raise] = ACTIONS(1514), - [anon_sym_pass] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_except] = ACTIONS(1514), - [anon_sym_finally] = ACTIONS(1514), - [anon_sym_with] = ACTIONS(1514), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_global] = ACTIONS(1514), - [anon_sym_nonlocal] = ACTIONS(1514), - [anon_sym_exec] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_class] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_not] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_lambda] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_None] = ACTIONS(1514), - [sym_integer] = ACTIONS(1514), - [sym_float] = ACTIONS(1516), - [anon_sym_await] = ACTIONS(1514), - [anon_sym_api] = ACTIONS(1514), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1514), - [anon_sym_include] = ACTIONS(1514), - [anon_sym_DEF] = ACTIONS(1514), - [anon_sym_cdef] = ACTIONS(1514), - [anon_sym_cpdef] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_ctypedef] = ACTIONS(1514), - [anon_sym_public] = ACTIONS(1514), - [anon_sym_packed] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_readonly] = ACTIONS(1514), - [anon_sym_sizeof] = ACTIONS(1514), - [sym_string_start] = ACTIONS(1516), + [996] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, - [1019] = { - [sym_identifier] = ACTIONS(1522), - [anon_sym_import] = ACTIONS(1522), - [anon_sym_cimport] = ACTIONS(1522), - [anon_sym_from] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_print] = ACTIONS(1522), - [anon_sym_assert] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_del] = ACTIONS(1522), - [anon_sym_raise] = ACTIONS(1522), - [anon_sym_pass] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_else] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [anon_sym_except] = ACTIONS(1522), - [anon_sym_finally] = ACTIONS(1522), - [anon_sym_with] = ACTIONS(1522), - [anon_sym_def] = ACTIONS(1522), - [anon_sym_global] = ACTIONS(1522), - [anon_sym_nonlocal] = ACTIONS(1522), - [anon_sym_exec] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_class] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_not] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_lambda] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_None] = ACTIONS(1522), - [sym_integer] = ACTIONS(1522), - [sym_float] = ACTIONS(1524), - [anon_sym_await] = ACTIONS(1522), - [anon_sym_api] = ACTIONS(1522), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1522), - [anon_sym_include] = ACTIONS(1522), - [anon_sym_DEF] = ACTIONS(1522), - [anon_sym_cdef] = ACTIONS(1522), - [anon_sym_cpdef] = ACTIONS(1522), - [anon_sym_new] = ACTIONS(1522), - [anon_sym_ctypedef] = ACTIONS(1522), - [anon_sym_public] = ACTIONS(1522), - [anon_sym_packed] = ACTIONS(1522), - [anon_sym_inline] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1522), - [sym__dedent] = ACTIONS(1524), - [sym_string_start] = ACTIONS(1524), + [997] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, - [1020] = { - [sym_identifier] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(1526), - [anon_sym_cimport] = ACTIONS(1526), - [anon_sym_from] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_print] = ACTIONS(1526), - [anon_sym_assert] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_del] = ACTIONS(1526), - [anon_sym_raise] = ACTIONS(1526), - [anon_sym_pass] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_else] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_try] = ACTIONS(1526), - [anon_sym_except] = ACTIONS(1526), - [anon_sym_finally] = ACTIONS(1526), - [anon_sym_with] = ACTIONS(1526), - [anon_sym_def] = ACTIONS(1526), - [anon_sym_global] = ACTIONS(1526), - [anon_sym_nonlocal] = ACTIONS(1526), - [anon_sym_exec] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_class] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_lambda] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), - [anon_sym_None] = ACTIONS(1526), - [sym_integer] = ACTIONS(1526), - [sym_float] = ACTIONS(1528), - [anon_sym_await] = ACTIONS(1526), - [anon_sym_api] = ACTIONS(1526), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1526), - [anon_sym_include] = ACTIONS(1526), - [anon_sym_DEF] = ACTIONS(1526), - [anon_sym_cdef] = ACTIONS(1526), - [anon_sym_cpdef] = ACTIONS(1526), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_ctypedef] = ACTIONS(1526), - [anon_sym_public] = ACTIONS(1526), - [anon_sym_packed] = ACTIONS(1526), - [anon_sym_inline] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1526), - [anon_sym_sizeof] = ACTIONS(1526), - [sym__dedent] = ACTIONS(1528), - [sym_string_start] = ACTIONS(1528), + [998] = { + [ts_builtin_sym_end] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3183), + [anon_sym_import] = ACTIONS(3183), + [anon_sym_cimport] = ACTIONS(3183), + [anon_sym_from] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_print] = ACTIONS(3183), + [anon_sym_assert] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_del] = ACTIONS(3183), + [anon_sym_raise] = ACTIONS(3183), + [anon_sym_pass] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_else] = ACTIONS(3183), + [anon_sym_match] = ACTIONS(3183), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_except] = ACTIONS(3183), + [anon_sym_finally] = ACTIONS(3183), + [anon_sym_with] = ACTIONS(3183), + [anon_sym_def] = ACTIONS(3183), + [anon_sym_global] = ACTIONS(3183), + [anon_sym_nonlocal] = ACTIONS(3183), + [anon_sym_exec] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_AT] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_not] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_LT] = ACTIONS(3181), + [anon_sym_lambda] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), + [anon_sym_None] = ACTIONS(3183), + [sym_integer] = ACTIONS(3183), + [sym_float] = ACTIONS(3181), + [anon_sym_await] = ACTIONS(3183), + [anon_sym_api] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3183), + [anon_sym_include] = ACTIONS(3183), + [anon_sym_DEF] = ACTIONS(3183), + [anon_sym_IF] = ACTIONS(3183), + [anon_sym_cdef] = ACTIONS(3183), + [anon_sym_cpdef] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_ctypedef] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_packed] = ACTIONS(3183), + [anon_sym_inline] = ACTIONS(3183), + [anon_sym_readonly] = ACTIONS(3183), + [anon_sym_sizeof] = ACTIONS(3183), + [sym_string_start] = ACTIONS(3181), }, - [1021] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [999] = { + [sym_named_expression] = STATE(3933), + [sym__named_expression_lhs] = STATE(5807), + [sym_list_splat] = STATE(5309), + [sym_parenthesized_list_splat] = STATE(5309), + [sym_list_splat_pattern] = STATE(2465), + [sym_as_pattern] = STATE(3933), + [sym_expression] = STATE(4372), + [sym_primary_expression] = STATE(2159), + [sym_not_operator] = STATE(3933), + [sym_boolean_operator] = STATE(3933), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_comparison_operator] = STATE(3933), + [sym_lambda] = STATE(3933), + [sym_yield] = STATE(5309), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_conditional_expression] = STATE(3933), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_new_expression] = STATE(3933), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_print] = ACTIONS(2875), + [anon_sym_match] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_exec] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_lambda] = ACTIONS(3081), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2879), + [anon_sym_api] = ACTIONS(2875), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, - [1022] = { + [1000] = { + [ts_builtin_sym_end] = ACTIONS(3185), [sym_identifier] = ACTIONS(3187), [anon_sym_import] = ACTIONS(3187), [anon_sym_cimport] = ACTIONS(3187), [anon_sym_from] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), [anon_sym_print] = ACTIONS(3187), [anon_sym_assert] = ACTIONS(3187), [anon_sym_return] = ACTIONS(3187), @@ -118814,21 +118936,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3187), [anon_sym_type] = ACTIONS(3187), [anon_sym_class] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_AT] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), [anon_sym_not] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), [anon_sym_lambda] = ACTIONS(3187), [anon_sym_yield] = ACTIONS(3187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), [anon_sym_None] = ACTIONS(3187), [sym_integer] = ACTIONS(3187), - [sym_float] = ACTIONS(3189), + [sym_float] = ACTIONS(3185), [anon_sym_await] = ACTIONS(3187), [anon_sym_api] = ACTIONS(3187), [sym_true] = ACTIONS(3187), @@ -118838,6 +118960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(3187), [anon_sym_include] = ACTIONS(3187), [anon_sym_DEF] = ACTIONS(3187), + [anon_sym_IF] = ACTIONS(3187), [anon_sym_cdef] = ACTIONS(3187), [anon_sym_cpdef] = ACTIONS(3187), [anon_sym_new] = ACTIONS(3187), @@ -118847,16 +118970,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3187), [anon_sym_readonly] = ACTIONS(3187), [anon_sym_sizeof] = ACTIONS(3187), - [sym__dedent] = ACTIONS(3189), - [sym_string_start] = ACTIONS(3189), + [sym_string_start] = ACTIONS(3185), }, - [1023] = { + [1001] = { + [ts_builtin_sym_end] = ACTIONS(3189), [sym_identifier] = ACTIONS(3191), [anon_sym_import] = ACTIONS(3191), [anon_sym_cimport] = ACTIONS(3191), [anon_sym_from] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), [anon_sym_print] = ACTIONS(3191), [anon_sym_assert] = ACTIONS(3191), [anon_sym_return] = ACTIONS(3191), @@ -118881,21 +119004,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3191), [anon_sym_type] = ACTIONS(3191), [anon_sym_class] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), [anon_sym_not] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), [anon_sym_lambda] = ACTIONS(3191), [anon_sym_yield] = ACTIONS(3191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), [anon_sym_None] = ACTIONS(3191), [sym_integer] = ACTIONS(3191), - [sym_float] = ACTIONS(3193), + [sym_float] = ACTIONS(3189), [anon_sym_await] = ACTIONS(3191), [anon_sym_api] = ACTIONS(3191), [sym_true] = ACTIONS(3191), @@ -118905,6 +119028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(3191), [anon_sym_include] = ACTIONS(3191), [anon_sym_DEF] = ACTIONS(3191), + [anon_sym_IF] = ACTIONS(3191), [anon_sym_cdef] = ACTIONS(3191), [anon_sym_cpdef] = ACTIONS(3191), [anon_sym_new] = ACTIONS(3191), @@ -118914,16 +119038,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3191), [anon_sym_readonly] = ACTIONS(3191), [anon_sym_sizeof] = ACTIONS(3191), - [sym__dedent] = ACTIONS(3193), - [sym_string_start] = ACTIONS(3193), + [sym_string_start] = ACTIONS(3189), }, - [1024] = { + [1002] = { + [ts_builtin_sym_end] = ACTIONS(3193), [sym_identifier] = ACTIONS(3195), [anon_sym_import] = ACTIONS(3195), [anon_sym_cimport] = ACTIONS(3195), [anon_sym_from] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), [anon_sym_print] = ACTIONS(3195), [anon_sym_assert] = ACTIONS(3195), [anon_sym_return] = ACTIONS(3195), @@ -118939,7 +119063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3195), [anon_sym_while] = ACTIONS(3195), [anon_sym_try] = ACTIONS(3195), - [anon_sym_except_STAR] = ACTIONS(3197), + [anon_sym_except_STAR] = ACTIONS(3193), [anon_sym_finally] = ACTIONS(3195), [anon_sym_with] = ACTIONS(3195), [anon_sym_def] = ACTIONS(3195), @@ -118948,21 +119072,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3195), [anon_sym_type] = ACTIONS(3195), [anon_sym_class] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_AT] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), [anon_sym_not] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), [anon_sym_lambda] = ACTIONS(3195), [anon_sym_yield] = ACTIONS(3195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), [anon_sym_None] = ACTIONS(3195), [sym_integer] = ACTIONS(3195), - [sym_float] = ACTIONS(3197), + [sym_float] = ACTIONS(3193), [anon_sym_await] = ACTIONS(3195), [anon_sym_api] = ACTIONS(3195), [sym_true] = ACTIONS(3195), @@ -118972,6 +119096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(3195), [anon_sym_include] = ACTIONS(3195), [anon_sym_DEF] = ACTIONS(3195), + [anon_sym_IF] = ACTIONS(3195), [anon_sym_cdef] = ACTIONS(3195), [anon_sym_cpdef] = ACTIONS(3195), [anon_sym_new] = ACTIONS(3195), @@ -118981,412 +119106,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3195), [anon_sym_readonly] = ACTIONS(3195), [anon_sym_sizeof] = ACTIONS(3195), - [sym__dedent] = ACTIONS(3197), - [sym_string_start] = ACTIONS(3197), - }, - [1025] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1026] = { - [sym_identifier] = ACTIONS(1510), - [anon_sym_import] = ACTIONS(1510), - [anon_sym_cimport] = ACTIONS(1510), - [anon_sym_from] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1510), - [anon_sym_assert] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_del] = ACTIONS(1510), - [anon_sym_raise] = ACTIONS(1510), - [anon_sym_pass] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1510), - [anon_sym_except] = ACTIONS(1510), - [anon_sym_finally] = ACTIONS(1510), - [anon_sym_with] = ACTIONS(1510), - [anon_sym_def] = ACTIONS(1510), - [anon_sym_global] = ACTIONS(1510), - [anon_sym_nonlocal] = ACTIONS(1510), - [anon_sym_exec] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_class] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_not] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_lambda] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), - [anon_sym_None] = ACTIONS(1510), - [sym_integer] = ACTIONS(1510), - [sym_float] = ACTIONS(1512), - [anon_sym_await] = ACTIONS(1510), - [anon_sym_api] = ACTIONS(1510), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1510), - [anon_sym_include] = ACTIONS(1510), - [anon_sym_DEF] = ACTIONS(1510), - [anon_sym_cdef] = ACTIONS(1510), - [anon_sym_cpdef] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_ctypedef] = ACTIONS(1510), - [anon_sym_public] = ACTIONS(1510), - [anon_sym_packed] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_readonly] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1510), - [sym__dedent] = ACTIONS(1512), - [sym_string_start] = ACTIONS(1512), - }, - [1027] = { - [sym_identifier] = ACTIONS(1518), - [anon_sym_import] = ACTIONS(1518), - [anon_sym_cimport] = ACTIONS(1518), - [anon_sym_from] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_print] = ACTIONS(1518), - [anon_sym_assert] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_del] = ACTIONS(1518), - [anon_sym_raise] = ACTIONS(1518), - [anon_sym_pass] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_except] = ACTIONS(1518), - [anon_sym_finally] = ACTIONS(1518), - [anon_sym_with] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_global] = ACTIONS(1518), - [anon_sym_nonlocal] = ACTIONS(1518), - [anon_sym_exec] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_not] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_lambda] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), - [anon_sym_None] = ACTIONS(1518), - [sym_integer] = ACTIONS(1518), - [sym_float] = ACTIONS(1520), - [anon_sym_await] = ACTIONS(1518), - [anon_sym_api] = ACTIONS(1518), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1518), - [anon_sym_include] = ACTIONS(1518), - [anon_sym_DEF] = ACTIONS(1518), - [anon_sym_cdef] = ACTIONS(1518), - [anon_sym_cpdef] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_ctypedef] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_packed] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_sizeof] = ACTIONS(1518), - [sym__dedent] = ACTIONS(1520), - [sym_string_start] = ACTIONS(1520), - }, - [1028] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_string_start] = ACTIONS(3193), }, - [1029] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [1003] = { + [ts_builtin_sym_end] = ACTIONS(3197), + [sym_identifier] = ACTIONS(3199), + [anon_sym_import] = ACTIONS(3199), + [anon_sym_cimport] = ACTIONS(3199), + [anon_sym_from] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_print] = ACTIONS(3199), + [anon_sym_assert] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_del] = ACTIONS(3199), + [anon_sym_raise] = ACTIONS(3199), + [anon_sym_pass] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_else] = ACTIONS(3199), + [anon_sym_match] = ACTIONS(3199), + [anon_sym_async] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_except_STAR] = ACTIONS(3197), + [anon_sym_finally] = ACTIONS(3199), + [anon_sym_with] = ACTIONS(3199), + [anon_sym_def] = ACTIONS(3199), + [anon_sym_global] = ACTIONS(3199), + [anon_sym_nonlocal] = ACTIONS(3199), + [anon_sym_exec] = ACTIONS(3199), + [anon_sym_type] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_not] = ACTIONS(3199), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_lambda] = ACTIONS(3199), + [anon_sym_yield] = ACTIONS(3199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), + [anon_sym_None] = ACTIONS(3199), + [sym_integer] = ACTIONS(3199), + [sym_float] = ACTIONS(3197), + [anon_sym_await] = ACTIONS(3199), + [anon_sym_api] = ACTIONS(3199), + [sym_true] = ACTIONS(3199), + [sym_false] = ACTIONS(3199), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3199), + [anon_sym_include] = ACTIONS(3199), + [anon_sym_DEF] = ACTIONS(3199), + [anon_sym_IF] = ACTIONS(3199), + [anon_sym_cdef] = ACTIONS(3199), + [anon_sym_cpdef] = ACTIONS(3199), + [anon_sym_new] = ACTIONS(3199), + [anon_sym_ctypedef] = ACTIONS(3199), + [anon_sym_public] = ACTIONS(3199), + [anon_sym_packed] = ACTIONS(3199), + [anon_sym_inline] = ACTIONS(3199), + [anon_sym_readonly] = ACTIONS(3199), + [anon_sym_sizeof] = ACTIONS(3199), + [sym_string_start] = ACTIONS(3197), }, - [1030] = { - [sym_identifier] = ACTIONS(1514), - [anon_sym_import] = ACTIONS(1514), - [anon_sym_cimport] = ACTIONS(1514), - [anon_sym_from] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_print] = ACTIONS(1514), - [anon_sym_assert] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_del] = ACTIONS(1514), - [anon_sym_raise] = ACTIONS(1514), - [anon_sym_pass] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_except] = ACTIONS(1514), - [anon_sym_finally] = ACTIONS(1514), - [anon_sym_with] = ACTIONS(1514), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_global] = ACTIONS(1514), - [anon_sym_nonlocal] = ACTIONS(1514), - [anon_sym_exec] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_class] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_not] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_lambda] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_None] = ACTIONS(1514), - [sym_integer] = ACTIONS(1514), - [sym_float] = ACTIONS(1516), - [anon_sym_await] = ACTIONS(1514), - [anon_sym_api] = ACTIONS(1514), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1514), - [anon_sym_include] = ACTIONS(1514), - [anon_sym_DEF] = ACTIONS(1514), - [anon_sym_cdef] = ACTIONS(1514), - [anon_sym_cpdef] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_ctypedef] = ACTIONS(1514), - [anon_sym_public] = ACTIONS(1514), - [anon_sym_packed] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_readonly] = ACTIONS(1514), - [anon_sym_sizeof] = ACTIONS(1514), - [sym__dedent] = ACTIONS(1516), - [sym_string_start] = ACTIONS(1516), + [1004] = { + [sym_identifier] = ACTIONS(3201), + [anon_sym_import] = ACTIONS(3201), + [anon_sym_cimport] = ACTIONS(3201), + [anon_sym_from] = ACTIONS(3201), + [anon_sym_LPAREN] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3203), + [anon_sym_print] = ACTIONS(3201), + [anon_sym_assert] = ACTIONS(3201), + [anon_sym_return] = ACTIONS(3201), + [anon_sym_del] = ACTIONS(3201), + [anon_sym_raise] = ACTIONS(3201), + [anon_sym_pass] = ACTIONS(3201), + [anon_sym_break] = ACTIONS(3201), + [anon_sym_continue] = ACTIONS(3201), + [anon_sym_if] = ACTIONS(3201), + [anon_sym_else] = ACTIONS(3201), + [anon_sym_match] = ACTIONS(3201), + [anon_sym_async] = ACTIONS(3201), + [anon_sym_for] = ACTIONS(3201), + [anon_sym_while] = ACTIONS(3201), + [anon_sym_try] = ACTIONS(3201), + [anon_sym_except_STAR] = ACTIONS(3203), + [anon_sym_finally] = ACTIONS(3201), + [anon_sym_with] = ACTIONS(3201), + [anon_sym_def] = ACTIONS(3201), + [anon_sym_global] = ACTIONS(3201), + [anon_sym_nonlocal] = ACTIONS(3201), + [anon_sym_exec] = ACTIONS(3201), + [anon_sym_type] = ACTIONS(3201), + [anon_sym_class] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3203), + [anon_sym_AT] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_not] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3203), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_lambda] = ACTIONS(3201), + [anon_sym_yield] = ACTIONS(3201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3203), + [anon_sym_None] = ACTIONS(3201), + [sym_integer] = ACTIONS(3201), + [sym_float] = ACTIONS(3203), + [anon_sym_await] = ACTIONS(3201), + [anon_sym_api] = ACTIONS(3201), + [sym_true] = ACTIONS(3201), + [sym_false] = ACTIONS(3201), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3201), + [anon_sym_include] = ACTIONS(3201), + [anon_sym_DEF] = ACTIONS(3201), + [anon_sym_IF] = ACTIONS(3201), + [anon_sym_cdef] = ACTIONS(3201), + [anon_sym_cpdef] = ACTIONS(3201), + [anon_sym_new] = ACTIONS(3201), + [anon_sym_ctypedef] = ACTIONS(3201), + [anon_sym_public] = ACTIONS(3201), + [anon_sym_packed] = ACTIONS(3201), + [anon_sym_inline] = ACTIONS(3201), + [anon_sym_readonly] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3201), + [sym__dedent] = ACTIONS(3203), + [sym_string_start] = ACTIONS(3203), }, - [1031] = { + [1005] = { [sym_identifier] = ACTIONS(3205), [anon_sym_import] = ACTIONS(3205), [anon_sym_cimport] = ACTIONS(3205), @@ -119441,6 +119299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(3205), [anon_sym_include] = ACTIONS(3205), [anon_sym_DEF] = ACTIONS(3205), + [anon_sym_IF] = ACTIONS(3205), [anon_sym_cdef] = ACTIONS(3205), [anon_sym_cpdef] = ACTIONS(3205), [anon_sym_new] = ACTIONS(3205), @@ -119453,519 +119312,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(3207), [sym_string_start] = ACTIONS(3207), }, - [1032] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4101), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3211), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1033] = { - [sym_named_expression] = STATE(3138), - [sym__named_expression_lhs] = STATE(5559), - [sym_dictionary_splat] = STATE(5400), - [sym_list_splat_pattern] = STATE(2349), - [sym_as_pattern] = STATE(3138), - [sym_expression] = STATE(4364), - [sym_primary_expression] = STATE(2108), - [sym_not_operator] = STATE(3138), - [sym_boolean_operator] = STATE(3138), - [sym_binary_operator] = STATE(2443), - [sym_unary_operator] = STATE(2443), - [sym_comparison_operator] = STATE(3138), - [sym_lambda] = STATE(3138), - [sym_attribute] = STATE(2443), - [sym_subscript] = STATE(2443), - [sym_ellipsis] = STATE(2443), - [sym_call] = STATE(2443), - [sym_list] = STATE(2443), - [sym_set] = STATE(2443), - [sym_tuple] = STATE(2443), - [sym_dictionary] = STATE(2443), - [sym_pair] = STATE(5400), - [sym_list_comprehension] = STATE(2443), - [sym_dictionary_comprehension] = STATE(2443), - [sym_set_comprehension] = STATE(2443), - [sym_generator_expression] = STATE(2443), - [sym_parenthesized_expression] = STATE(2443), - [sym_conditional_expression] = STATE(3138), - [sym_concatenated_string] = STATE(2443), - [sym_string] = STATE(2143), - [sym_none] = STATE(2443), - [sym_await] = STATE(2443), - [sym_new_expression] = STATE(3138), - [sym_sizeof_expression] = STATE(2443), - [sym_cast_expression] = STATE(2443), - [sym_identifier] = ACTIONS(1243), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_print] = ACTIONS(1249), - [anon_sym_match] = ACTIONS(1249), - [anon_sym_async] = ACTIONS(1249), - [anon_sym_STAR_STAR] = ACTIONS(2583), - [anon_sym_exec] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_not] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_TILDE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_lambda] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_None] = ACTIONS(1267), - [sym_integer] = ACTIONS(1269), - [sym_float] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_api] = ACTIONS(1249), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_string_start] = ACTIONS(1279), - }, - [1034] = { - [sym_identifier] = ACTIONS(3213), - [anon_sym_import] = ACTIONS(3213), - [anon_sym_cimport] = ACTIONS(3213), - [anon_sym_from] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_print] = ACTIONS(3213), - [anon_sym_assert] = ACTIONS(3213), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_del] = ACTIONS(3213), - [anon_sym_raise] = ACTIONS(3213), - [anon_sym_pass] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_else] = ACTIONS(3213), - [anon_sym_match] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_while] = ACTIONS(3213), - [anon_sym_try] = ACTIONS(3213), - [anon_sym_except] = ACTIONS(3213), - [anon_sym_finally] = ACTIONS(3213), - [anon_sym_with] = ACTIONS(3213), - [anon_sym_def] = ACTIONS(3213), - [anon_sym_global] = ACTIONS(3213), - [anon_sym_nonlocal] = ACTIONS(3213), - [anon_sym_exec] = ACTIONS(3213), - [anon_sym_type] = ACTIONS(3213), - [anon_sym_class] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_AT] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_not] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_lambda] = ACTIONS(3213), - [anon_sym_yield] = ACTIONS(3213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3215), - [anon_sym_None] = ACTIONS(3213), - [sym_integer] = ACTIONS(3213), - [sym_float] = ACTIONS(3215), - [anon_sym_await] = ACTIONS(3213), - [anon_sym_api] = ACTIONS(3213), - [sym_true] = ACTIONS(3213), - [sym_false] = ACTIONS(3213), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3213), - [anon_sym_include] = ACTIONS(3213), - [anon_sym_DEF] = ACTIONS(3213), - [anon_sym_cdef] = ACTIONS(3213), - [anon_sym_cpdef] = ACTIONS(3213), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_ctypedef] = ACTIONS(3213), - [anon_sym_public] = ACTIONS(3213), - [anon_sym_packed] = ACTIONS(3213), - [anon_sym_inline] = ACTIONS(3213), - [anon_sym_readonly] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3213), - [sym__dedent] = ACTIONS(3215), - [sym_string_start] = ACTIONS(3215), - }, - [1035] = { - [ts_builtin_sym_end] = ACTIONS(3217), - [sym_identifier] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_cimport] = ACTIONS(3219), - [anon_sym_from] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3217), - [anon_sym_print] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_del] = ACTIONS(3219), - [anon_sym_raise] = ACTIONS(3219), - [anon_sym_pass] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_except] = ACTIONS(3219), - [anon_sym_finally] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_def] = ACTIONS(3219), - [anon_sym_global] = ACTIONS(3219), - [anon_sym_nonlocal] = ACTIONS(3219), - [anon_sym_exec] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_lambda] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_None] = ACTIONS(3219), - [sym_integer] = ACTIONS(3219), - [sym_float] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_api] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3219), - [anon_sym_include] = ACTIONS(3219), - [anon_sym_DEF] = ACTIONS(3219), - [anon_sym_cdef] = ACTIONS(3219), - [anon_sym_cpdef] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_ctypedef] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_packed] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_sizeof] = ACTIONS(3219), - [sym_string_start] = ACTIONS(3217), + [1006] = { + [ts_builtin_sym_end] = ACTIONS(3207), + [sym_identifier] = ACTIONS(3205), + [anon_sym_import] = ACTIONS(3205), + [anon_sym_cimport] = ACTIONS(3205), + [anon_sym_from] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3207), + [anon_sym_print] = ACTIONS(3205), + [anon_sym_assert] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_del] = ACTIONS(3205), + [anon_sym_raise] = ACTIONS(3205), + [anon_sym_pass] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_else] = ACTIONS(3205), + [anon_sym_match] = ACTIONS(3205), + [anon_sym_async] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_while] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3205), + [anon_sym_except] = ACTIONS(3205), + [anon_sym_finally] = ACTIONS(3205), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_def] = ACTIONS(3205), + [anon_sym_global] = ACTIONS(3205), + [anon_sym_nonlocal] = ACTIONS(3205), + [anon_sym_exec] = ACTIONS(3205), + [anon_sym_type] = ACTIONS(3205), + [anon_sym_class] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_AT] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_not] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_LT] = ACTIONS(3207), + [anon_sym_lambda] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3207), + [anon_sym_None] = ACTIONS(3205), + [sym_integer] = ACTIONS(3205), + [sym_float] = ACTIONS(3207), + [anon_sym_await] = ACTIONS(3205), + [anon_sym_api] = ACTIONS(3205), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3205), + [anon_sym_include] = ACTIONS(3205), + [anon_sym_DEF] = ACTIONS(3205), + [anon_sym_IF] = ACTIONS(3205), + [anon_sym_cdef] = ACTIONS(3205), + [anon_sym_cpdef] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_ctypedef] = ACTIONS(3205), + [anon_sym_public] = ACTIONS(3205), + [anon_sym_packed] = ACTIONS(3205), + [anon_sym_inline] = ACTIONS(3205), + [anon_sym_readonly] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(3205), + [sym_string_start] = ACTIONS(3207), }, - [1036] = { - [ts_builtin_sym_end] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_cimport] = ACTIONS(3223), - [anon_sym_from] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_print] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_del] = ACTIONS(3223), - [anon_sym_raise] = ACTIONS(3223), - [anon_sym_pass] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_except_STAR] = ACTIONS(3221), - [anon_sym_finally] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_def] = ACTIONS(3223), - [anon_sym_global] = ACTIONS(3223), - [anon_sym_nonlocal] = ACTIONS(3223), - [anon_sym_exec] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_not] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_lambda] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_None] = ACTIONS(3223), - [sym_integer] = ACTIONS(3223), - [sym_float] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_api] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3223), - [anon_sym_include] = ACTIONS(3223), - [anon_sym_DEF] = ACTIONS(3223), - [anon_sym_cdef] = ACTIONS(3223), - [anon_sym_cpdef] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_ctypedef] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_packed] = ACTIONS(3223), - [anon_sym_inline] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_sizeof] = ACTIONS(3223), - [sym_string_start] = ACTIONS(3221), + [1007] = { + [sym_named_expression] = STATE(3933), + [sym__named_expression_lhs] = STATE(5807), + [sym_expression_list] = STATE(4447), + [sym_list_splat_pattern] = STATE(2465), + [sym_as_pattern] = STATE(3933), + [sym_expression] = STATE(4202), + [sym_primary_expression] = STATE(2159), + [sym_not_operator] = STATE(3933), + [sym_boolean_operator] = STATE(3933), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_comparison_operator] = STATE(3933), + [sym_lambda] = STATE(3933), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_conditional_expression] = STATE(3933), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_new_expression] = STATE(3933), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2871), + [anon_sym_from] = ACTIONS(3209), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(2875), + [anon_sym_match] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_exec] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_lambda] = ACTIONS(3081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2879), + [anon_sym_api] = ACTIONS(2875), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(3083), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, - [1037] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [1008] = { + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_identifier] = ACTIONS(1546), + [anon_sym_import] = ACTIONS(1546), + [anon_sym_cimport] = ACTIONS(1546), + [anon_sym_from] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1546), + [anon_sym_assert] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_del] = ACTIONS(1546), + [anon_sym_raise] = ACTIONS(1546), + [anon_sym_pass] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_try] = ACTIONS(1546), + [anon_sym_except] = ACTIONS(1546), + [anon_sym_finally] = ACTIONS(1546), + [anon_sym_with] = ACTIONS(1546), + [anon_sym_def] = ACTIONS(1546), + [anon_sym_global] = ACTIONS(1546), + [anon_sym_nonlocal] = ACTIONS(1546), + [anon_sym_exec] = ACTIONS(1546), + [anon_sym_type] = ACTIONS(1546), + [anon_sym_class] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_not] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_lambda] = ACTIONS(1546), + [anon_sym_yield] = ACTIONS(1546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1548), + [anon_sym_None] = ACTIONS(1546), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1548), + [anon_sym_await] = ACTIONS(1546), + [anon_sym_api] = ACTIONS(1546), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1546), + [anon_sym_include] = ACTIONS(1546), + [anon_sym_DEF] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_cdef] = ACTIONS(1546), + [anon_sym_cpdef] = ACTIONS(1546), + [anon_sym_new] = ACTIONS(1546), + [anon_sym_ctypedef] = ACTIONS(1546), + [anon_sym_public] = ACTIONS(1546), + [anon_sym_packed] = ACTIONS(1546), + [anon_sym_inline] = ACTIONS(1546), + [anon_sym_readonly] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1546), + [sym_string_start] = ACTIONS(1548), }, - [1038] = { - [sym_identifier] = ACTIONS(3159), - [anon_sym_import] = ACTIONS(3159), - [anon_sym_cimport] = ACTIONS(3159), - [anon_sym_from] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [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(3157), - [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(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(3159), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_lambda] = ACTIONS(3159), - [anon_sym_yield] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), - [anon_sym_None] = ACTIONS(3159), - [sym_integer] = ACTIONS(3159), - [sym_float] = ACTIONS(3157), - [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(3157), - [sym_string_start] = ACTIONS(3157), + [1009] = { + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1496), + [anon_sym_import] = ACTIONS(1496), + [anon_sym_cimport] = ACTIONS(1496), + [anon_sym_from] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_print] = ACTIONS(1496), + [anon_sym_assert] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_del] = ACTIONS(1496), + [anon_sym_raise] = ACTIONS(1496), + [anon_sym_pass] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_except] = ACTIONS(1496), + [anon_sym_finally] = ACTIONS(1496), + [anon_sym_with] = ACTIONS(1496), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_global] = ACTIONS(1496), + [anon_sym_nonlocal] = ACTIONS(1496), + [anon_sym_exec] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_class] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_AT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_not] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_lambda] = ACTIONS(1496), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1498), + [anon_sym_None] = ACTIONS(1496), + [sym_integer] = ACTIONS(1496), + [sym_float] = ACTIONS(1498), + [anon_sym_await] = ACTIONS(1496), + [anon_sym_api] = ACTIONS(1496), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1496), + [anon_sym_include] = ACTIONS(1496), + [anon_sym_DEF] = ACTIONS(1496), + [anon_sym_IF] = ACTIONS(1496), + [anon_sym_cdef] = ACTIONS(1496), + [anon_sym_cpdef] = ACTIONS(1496), + [anon_sym_new] = ACTIONS(1496), + [anon_sym_ctypedef] = ACTIONS(1496), + [anon_sym_public] = ACTIONS(1496), + [anon_sym_packed] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym_readonly] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1496), + [sym_string_start] = ACTIONS(1498), }, - [1039] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3964), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_from] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_print] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(1319), + [1010] = { + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_expression_list] = STATE(5277), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(4056), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_from] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_print] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1353), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -119978,1231 +119641,2948 @@ 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(849), - [anon_sym_api] = ACTIONS(824), + [anon_sym_await] = ACTIONS(895), + [anon_sym_api] = ACTIONS(870), [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(3085), - [sym_string_start] = ACTIONS(107), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(2877), + [sym_string_start] = ACTIONS(109), + }, + [1011] = { + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1500), + [anon_sym_import] = ACTIONS(1500), + [anon_sym_cimport] = ACTIONS(1500), + [anon_sym_from] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_print] = ACTIONS(1500), + [anon_sym_assert] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_del] = ACTIONS(1500), + [anon_sym_raise] = ACTIONS(1500), + [anon_sym_pass] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_except] = ACTIONS(1500), + [anon_sym_finally] = ACTIONS(1500), + [anon_sym_with] = ACTIONS(1500), + [anon_sym_def] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(1500), + [anon_sym_nonlocal] = ACTIONS(1500), + [anon_sym_exec] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_class] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_AT] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_not] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_lambda] = ACTIONS(1500), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1502), + [anon_sym_None] = ACTIONS(1500), + [sym_integer] = ACTIONS(1500), + [sym_float] = ACTIONS(1502), + [anon_sym_await] = ACTIONS(1500), + [anon_sym_api] = ACTIONS(1500), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1500), + [anon_sym_include] = ACTIONS(1500), + [anon_sym_DEF] = ACTIONS(1500), + [anon_sym_IF] = ACTIONS(1500), + [anon_sym_cdef] = ACTIONS(1500), + [anon_sym_cpdef] = ACTIONS(1500), + [anon_sym_new] = ACTIONS(1500), + [anon_sym_ctypedef] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_packed] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1500), + [sym_string_start] = ACTIONS(1502), + }, + [1012] = { + [sym_identifier] = ACTIONS(3183), + [anon_sym_import] = ACTIONS(3183), + [anon_sym_cimport] = ACTIONS(3183), + [anon_sym_from] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_print] = ACTIONS(3183), + [anon_sym_assert] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_del] = ACTIONS(3183), + [anon_sym_raise] = ACTIONS(3183), + [anon_sym_pass] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_else] = ACTIONS(3183), + [anon_sym_match] = ACTIONS(3183), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_except] = ACTIONS(3183), + [anon_sym_finally] = ACTIONS(3183), + [anon_sym_with] = ACTIONS(3183), + [anon_sym_def] = ACTIONS(3183), + [anon_sym_global] = ACTIONS(3183), + [anon_sym_nonlocal] = ACTIONS(3183), + [anon_sym_exec] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_AT] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_not] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_LT] = ACTIONS(3181), + [anon_sym_lambda] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), + [anon_sym_None] = ACTIONS(3183), + [sym_integer] = ACTIONS(3183), + [sym_float] = ACTIONS(3181), + [anon_sym_await] = ACTIONS(3183), + [anon_sym_api] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3183), + [anon_sym_include] = ACTIONS(3183), + [anon_sym_DEF] = ACTIONS(3183), + [anon_sym_IF] = ACTIONS(3183), + [anon_sym_cdef] = ACTIONS(3183), + [anon_sym_cpdef] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_ctypedef] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_packed] = ACTIONS(3183), + [anon_sym_inline] = ACTIONS(3183), + [anon_sym_readonly] = ACTIONS(3183), + [anon_sym_sizeof] = ACTIONS(3183), + [sym__dedent] = ACTIONS(3181), + [sym_string_start] = ACTIONS(3181), + }, + [1013] = { + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1476), + [anon_sym_import] = ACTIONS(1476), + [anon_sym_cimport] = ACTIONS(1476), + [anon_sym_from] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_print] = ACTIONS(1476), + [anon_sym_assert] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_del] = ACTIONS(1476), + [anon_sym_raise] = ACTIONS(1476), + [anon_sym_pass] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_try] = ACTIONS(1476), + [anon_sym_except_STAR] = ACTIONS(1478), + [anon_sym_finally] = ACTIONS(1476), + [anon_sym_with] = ACTIONS(1476), + [anon_sym_def] = ACTIONS(1476), + [anon_sym_global] = ACTIONS(1476), + [anon_sym_nonlocal] = ACTIONS(1476), + [anon_sym_exec] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_not] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_lambda] = ACTIONS(1476), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_None] = ACTIONS(1476), + [sym_integer] = ACTIONS(1476), + [sym_float] = ACTIONS(1478), + [anon_sym_await] = ACTIONS(1476), + [anon_sym_api] = ACTIONS(1476), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1476), + [anon_sym_include] = ACTIONS(1476), + [anon_sym_DEF] = ACTIONS(1476), + [anon_sym_IF] = ACTIONS(1476), + [anon_sym_cdef] = ACTIONS(1476), + [anon_sym_cpdef] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_ctypedef] = ACTIONS(1476), + [anon_sym_public] = ACTIONS(1476), + [anon_sym_packed] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym_readonly] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1476), + [sym_string_start] = ACTIONS(1478), + }, + [1014] = { + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1480), + [anon_sym_import] = ACTIONS(1480), + [anon_sym_cimport] = ACTIONS(1480), + [anon_sym_from] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_del] = ACTIONS(1480), + [anon_sym_raise] = ACTIONS(1480), + [anon_sym_pass] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_else] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_try] = ACTIONS(1480), + [anon_sym_except_STAR] = ACTIONS(1482), + [anon_sym_finally] = ACTIONS(1480), + [anon_sym_with] = ACTIONS(1480), + [anon_sym_def] = ACTIONS(1480), + [anon_sym_global] = ACTIONS(1480), + [anon_sym_nonlocal] = ACTIONS(1480), + [anon_sym_exec] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_class] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_not] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_lambda] = ACTIONS(1480), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1482), + [anon_sym_None] = ACTIONS(1480), + [sym_integer] = ACTIONS(1480), + [sym_float] = ACTIONS(1482), + [anon_sym_await] = ACTIONS(1480), + [anon_sym_api] = ACTIONS(1480), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1480), + [anon_sym_include] = ACTIONS(1480), + [anon_sym_DEF] = ACTIONS(1480), + [anon_sym_IF] = ACTIONS(1480), + [anon_sym_cdef] = ACTIONS(1480), + [anon_sym_cpdef] = ACTIONS(1480), + [anon_sym_new] = ACTIONS(1480), + [anon_sym_ctypedef] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_packed] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1480), + [sym_string_start] = ACTIONS(1482), + }, + [1015] = { + [sym_identifier] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3191), + [anon_sym_cimport] = ACTIONS(3191), + [anon_sym_from] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_print] = ACTIONS(3191), + [anon_sym_assert] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_del] = ACTIONS(3191), + [anon_sym_raise] = ACTIONS(3191), + [anon_sym_pass] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_else] = ACTIONS(3191), + [anon_sym_match] = ACTIONS(3191), + [anon_sym_async] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_except] = ACTIONS(3191), + [anon_sym_finally] = ACTIONS(3191), + [anon_sym_with] = ACTIONS(3191), + [anon_sym_def] = ACTIONS(3191), + [anon_sym_global] = ACTIONS(3191), + [anon_sym_nonlocal] = ACTIONS(3191), + [anon_sym_exec] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_lambda] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), + [anon_sym_None] = ACTIONS(3191), + [sym_integer] = ACTIONS(3191), + [sym_float] = ACTIONS(3189), + [anon_sym_await] = ACTIONS(3191), + [anon_sym_api] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3191), + [anon_sym_include] = ACTIONS(3191), + [anon_sym_DEF] = ACTIONS(3191), + [anon_sym_IF] = ACTIONS(3191), + [anon_sym_cdef] = ACTIONS(3191), + [anon_sym_cpdef] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_ctypedef] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_packed] = ACTIONS(3191), + [anon_sym_inline] = ACTIONS(3191), + [anon_sym_readonly] = ACTIONS(3191), + [anon_sym_sizeof] = ACTIONS(3191), + [sym__dedent] = ACTIONS(3189), + [sym_string_start] = ACTIONS(3189), + }, + [1016] = { + [sym_identifier] = ACTIONS(3199), + [anon_sym_import] = ACTIONS(3199), + [anon_sym_cimport] = ACTIONS(3199), + [anon_sym_from] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_print] = ACTIONS(3199), + [anon_sym_assert] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_del] = ACTIONS(3199), + [anon_sym_raise] = ACTIONS(3199), + [anon_sym_pass] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_else] = ACTIONS(3199), + [anon_sym_match] = ACTIONS(3199), + [anon_sym_async] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_except_STAR] = ACTIONS(3197), + [anon_sym_finally] = ACTIONS(3199), + [anon_sym_with] = ACTIONS(3199), + [anon_sym_def] = ACTIONS(3199), + [anon_sym_global] = ACTIONS(3199), + [anon_sym_nonlocal] = ACTIONS(3199), + [anon_sym_exec] = ACTIONS(3199), + [anon_sym_type] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_not] = ACTIONS(3199), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_lambda] = ACTIONS(3199), + [anon_sym_yield] = ACTIONS(3199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), + [anon_sym_None] = ACTIONS(3199), + [sym_integer] = ACTIONS(3199), + [sym_float] = ACTIONS(3197), + [anon_sym_await] = ACTIONS(3199), + [anon_sym_api] = ACTIONS(3199), + [sym_true] = ACTIONS(3199), + [sym_false] = ACTIONS(3199), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3199), + [anon_sym_include] = ACTIONS(3199), + [anon_sym_DEF] = ACTIONS(3199), + [anon_sym_IF] = ACTIONS(3199), + [anon_sym_cdef] = ACTIONS(3199), + [anon_sym_cpdef] = ACTIONS(3199), + [anon_sym_new] = ACTIONS(3199), + [anon_sym_ctypedef] = ACTIONS(3199), + [anon_sym_public] = ACTIONS(3199), + [anon_sym_packed] = ACTIONS(3199), + [anon_sym_inline] = ACTIONS(3199), + [anon_sym_readonly] = ACTIONS(3199), + [anon_sym_sizeof] = ACTIONS(3199), + [sym__dedent] = ACTIONS(3197), + [sym_string_start] = ACTIONS(3197), + }, + [1017] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [1018] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [1019] = { + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_identifier] = ACTIONS(1546), + [anon_sym_import] = ACTIONS(1546), + [anon_sym_cimport] = ACTIONS(1546), + [anon_sym_from] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1546), + [anon_sym_assert] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_del] = ACTIONS(1546), + [anon_sym_raise] = ACTIONS(1546), + [anon_sym_pass] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_try] = ACTIONS(1546), + [anon_sym_except_STAR] = ACTIONS(1548), + [anon_sym_finally] = ACTIONS(1546), + [anon_sym_with] = ACTIONS(1546), + [anon_sym_def] = ACTIONS(1546), + [anon_sym_global] = ACTIONS(1546), + [anon_sym_nonlocal] = ACTIONS(1546), + [anon_sym_exec] = ACTIONS(1546), + [anon_sym_type] = ACTIONS(1546), + [anon_sym_class] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_not] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_lambda] = ACTIONS(1546), + [anon_sym_yield] = ACTIONS(1546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1548), + [anon_sym_None] = ACTIONS(1546), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1548), + [anon_sym_await] = ACTIONS(1546), + [anon_sym_api] = ACTIONS(1546), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1546), + [anon_sym_include] = ACTIONS(1546), + [anon_sym_DEF] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_cdef] = ACTIONS(1546), + [anon_sym_cpdef] = ACTIONS(1546), + [anon_sym_new] = ACTIONS(1546), + [anon_sym_ctypedef] = ACTIONS(1546), + [anon_sym_public] = ACTIONS(1546), + [anon_sym_packed] = ACTIONS(1546), + [anon_sym_inline] = ACTIONS(1546), + [anon_sym_readonly] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1546), + [sym_string_start] = ACTIONS(1548), + }, + [1020] = { + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1496), + [anon_sym_import] = ACTIONS(1496), + [anon_sym_cimport] = ACTIONS(1496), + [anon_sym_from] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_print] = ACTIONS(1496), + [anon_sym_assert] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_del] = ACTIONS(1496), + [anon_sym_raise] = ACTIONS(1496), + [anon_sym_pass] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_except_STAR] = ACTIONS(1498), + [anon_sym_finally] = ACTIONS(1496), + [anon_sym_with] = ACTIONS(1496), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_global] = ACTIONS(1496), + [anon_sym_nonlocal] = ACTIONS(1496), + [anon_sym_exec] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_class] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_AT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_not] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_lambda] = ACTIONS(1496), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1498), + [anon_sym_None] = ACTIONS(1496), + [sym_integer] = ACTIONS(1496), + [sym_float] = ACTIONS(1498), + [anon_sym_await] = ACTIONS(1496), + [anon_sym_api] = ACTIONS(1496), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1496), + [anon_sym_include] = ACTIONS(1496), + [anon_sym_DEF] = ACTIONS(1496), + [anon_sym_IF] = ACTIONS(1496), + [anon_sym_cdef] = ACTIONS(1496), + [anon_sym_cpdef] = ACTIONS(1496), + [anon_sym_new] = ACTIONS(1496), + [anon_sym_ctypedef] = ACTIONS(1496), + [anon_sym_public] = ACTIONS(1496), + [anon_sym_packed] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym_readonly] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1496), + [sym_string_start] = ACTIONS(1498), + }, + [1021] = { + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1500), + [anon_sym_import] = ACTIONS(1500), + [anon_sym_cimport] = ACTIONS(1500), + [anon_sym_from] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_print] = ACTIONS(1500), + [anon_sym_assert] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_del] = ACTIONS(1500), + [anon_sym_raise] = ACTIONS(1500), + [anon_sym_pass] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_except_STAR] = ACTIONS(1502), + [anon_sym_finally] = ACTIONS(1500), + [anon_sym_with] = ACTIONS(1500), + [anon_sym_def] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(1500), + [anon_sym_nonlocal] = ACTIONS(1500), + [anon_sym_exec] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_class] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_AT] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_not] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_lambda] = ACTIONS(1500), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1502), + [anon_sym_None] = ACTIONS(1500), + [sym_integer] = ACTIONS(1500), + [sym_float] = ACTIONS(1502), + [anon_sym_await] = ACTIONS(1500), + [anon_sym_api] = ACTIONS(1500), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1500), + [anon_sym_include] = ACTIONS(1500), + [anon_sym_DEF] = ACTIONS(1500), + [anon_sym_IF] = ACTIONS(1500), + [anon_sym_cdef] = ACTIONS(1500), + [anon_sym_cpdef] = ACTIONS(1500), + [anon_sym_new] = ACTIONS(1500), + [anon_sym_ctypedef] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_packed] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1500), + [sym_string_start] = ACTIONS(1502), + }, + [1022] = { + [sym_identifier] = ACTIONS(1546), + [anon_sym_import] = ACTIONS(1546), + [anon_sym_cimport] = ACTIONS(1546), + [anon_sym_from] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1546), + [anon_sym_assert] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_del] = ACTIONS(1546), + [anon_sym_raise] = ACTIONS(1546), + [anon_sym_pass] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_try] = ACTIONS(1546), + [anon_sym_except] = ACTIONS(1546), + [anon_sym_finally] = ACTIONS(1546), + [anon_sym_with] = ACTIONS(1546), + [anon_sym_def] = ACTIONS(1546), + [anon_sym_global] = ACTIONS(1546), + [anon_sym_nonlocal] = ACTIONS(1546), + [anon_sym_exec] = ACTIONS(1546), + [anon_sym_type] = ACTIONS(1546), + [anon_sym_class] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_not] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_lambda] = ACTIONS(1546), + [anon_sym_yield] = ACTIONS(1546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1548), + [anon_sym_None] = ACTIONS(1546), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1548), + [anon_sym_await] = ACTIONS(1546), + [anon_sym_api] = ACTIONS(1546), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1546), + [anon_sym_include] = ACTIONS(1546), + [anon_sym_DEF] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_cdef] = ACTIONS(1546), + [anon_sym_cpdef] = ACTIONS(1546), + [anon_sym_new] = ACTIONS(1546), + [anon_sym_ctypedef] = ACTIONS(1546), + [anon_sym_public] = ACTIONS(1546), + [anon_sym_packed] = ACTIONS(1546), + [anon_sym_inline] = ACTIONS(1546), + [anon_sym_readonly] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1546), + [sym__dedent] = ACTIONS(1548), + [sym_string_start] = ACTIONS(1548), + }, + [1023] = { + [sym_identifier] = ACTIONS(1496), + [anon_sym_import] = ACTIONS(1496), + [anon_sym_cimport] = ACTIONS(1496), + [anon_sym_from] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_print] = ACTIONS(1496), + [anon_sym_assert] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_del] = ACTIONS(1496), + [anon_sym_raise] = ACTIONS(1496), + [anon_sym_pass] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_except] = ACTIONS(1496), + [anon_sym_finally] = ACTIONS(1496), + [anon_sym_with] = ACTIONS(1496), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_global] = ACTIONS(1496), + [anon_sym_nonlocal] = ACTIONS(1496), + [anon_sym_exec] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_class] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_AT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_not] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_lambda] = ACTIONS(1496), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1498), + [anon_sym_None] = ACTIONS(1496), + [sym_integer] = ACTIONS(1496), + [sym_float] = ACTIONS(1498), + [anon_sym_await] = ACTIONS(1496), + [anon_sym_api] = ACTIONS(1496), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1496), + [anon_sym_include] = ACTIONS(1496), + [anon_sym_DEF] = ACTIONS(1496), + [anon_sym_IF] = ACTIONS(1496), + [anon_sym_cdef] = ACTIONS(1496), + [anon_sym_cpdef] = ACTIONS(1496), + [anon_sym_new] = ACTIONS(1496), + [anon_sym_ctypedef] = ACTIONS(1496), + [anon_sym_public] = ACTIONS(1496), + [anon_sym_packed] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym_readonly] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1496), + [sym__dedent] = ACTIONS(1498), + [sym_string_start] = ACTIONS(1498), + }, + [1024] = { + [sym_identifier] = ACTIONS(1476), + [anon_sym_import] = ACTIONS(1476), + [anon_sym_cimport] = ACTIONS(1476), + [anon_sym_from] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_print] = ACTIONS(1476), + [anon_sym_assert] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_del] = ACTIONS(1476), + [anon_sym_raise] = ACTIONS(1476), + [anon_sym_pass] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_try] = ACTIONS(1476), + [anon_sym_except] = ACTIONS(1476), + [anon_sym_finally] = ACTIONS(1476), + [anon_sym_with] = ACTIONS(1476), + [anon_sym_def] = ACTIONS(1476), + [anon_sym_global] = ACTIONS(1476), + [anon_sym_nonlocal] = ACTIONS(1476), + [anon_sym_exec] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_not] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_lambda] = ACTIONS(1476), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_None] = ACTIONS(1476), + [sym_integer] = ACTIONS(1476), + [sym_float] = ACTIONS(1478), + [anon_sym_await] = ACTIONS(1476), + [anon_sym_api] = ACTIONS(1476), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1476), + [anon_sym_include] = ACTIONS(1476), + [anon_sym_DEF] = ACTIONS(1476), + [anon_sym_IF] = ACTIONS(1476), + [anon_sym_cdef] = ACTIONS(1476), + [anon_sym_cpdef] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_ctypedef] = ACTIONS(1476), + [anon_sym_public] = ACTIONS(1476), + [anon_sym_packed] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym_readonly] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1476), + [sym__dedent] = ACTIONS(1478), + [sym_string_start] = ACTIONS(1478), + }, + [1025] = { + [sym_identifier] = ACTIONS(1500), + [anon_sym_import] = ACTIONS(1500), + [anon_sym_cimport] = ACTIONS(1500), + [anon_sym_from] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_print] = ACTIONS(1500), + [anon_sym_assert] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_del] = ACTIONS(1500), + [anon_sym_raise] = ACTIONS(1500), + [anon_sym_pass] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_except] = ACTIONS(1500), + [anon_sym_finally] = ACTIONS(1500), + [anon_sym_with] = ACTIONS(1500), + [anon_sym_def] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(1500), + [anon_sym_nonlocal] = ACTIONS(1500), + [anon_sym_exec] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_class] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_AT] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_not] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_lambda] = ACTIONS(1500), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1502), + [anon_sym_None] = ACTIONS(1500), + [sym_integer] = ACTIONS(1500), + [sym_float] = ACTIONS(1502), + [anon_sym_await] = ACTIONS(1500), + [anon_sym_api] = ACTIONS(1500), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1500), + [anon_sym_include] = ACTIONS(1500), + [anon_sym_DEF] = ACTIONS(1500), + [anon_sym_IF] = ACTIONS(1500), + [anon_sym_cdef] = ACTIONS(1500), + [anon_sym_cpdef] = ACTIONS(1500), + [anon_sym_new] = ACTIONS(1500), + [anon_sym_ctypedef] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_packed] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1500), + [sym__dedent] = ACTIONS(1502), + [sym_string_start] = ACTIONS(1502), + }, + [1026] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [1027] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [1028] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [1029] = { + [sym_identifier] = ACTIONS(1546), + [anon_sym_import] = ACTIONS(1546), + [anon_sym_cimport] = ACTIONS(1546), + [anon_sym_from] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1546), + [anon_sym_assert] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_del] = ACTIONS(1546), + [anon_sym_raise] = ACTIONS(1546), + [anon_sym_pass] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_try] = ACTIONS(1546), + [anon_sym_except_STAR] = ACTIONS(1548), + [anon_sym_finally] = ACTIONS(1546), + [anon_sym_with] = ACTIONS(1546), + [anon_sym_def] = ACTIONS(1546), + [anon_sym_global] = ACTIONS(1546), + [anon_sym_nonlocal] = ACTIONS(1546), + [anon_sym_exec] = ACTIONS(1546), + [anon_sym_type] = ACTIONS(1546), + [anon_sym_class] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_not] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_lambda] = ACTIONS(1546), + [anon_sym_yield] = ACTIONS(1546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1548), + [anon_sym_None] = ACTIONS(1546), + [sym_integer] = ACTIONS(1546), + [sym_float] = ACTIONS(1548), + [anon_sym_await] = ACTIONS(1546), + [anon_sym_api] = ACTIONS(1546), + [sym_true] = ACTIONS(1546), + [sym_false] = ACTIONS(1546), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1546), + [anon_sym_include] = ACTIONS(1546), + [anon_sym_DEF] = ACTIONS(1546), + [anon_sym_IF] = ACTIONS(1546), + [anon_sym_cdef] = ACTIONS(1546), + [anon_sym_cpdef] = ACTIONS(1546), + [anon_sym_new] = ACTIONS(1546), + [anon_sym_ctypedef] = ACTIONS(1546), + [anon_sym_public] = ACTIONS(1546), + [anon_sym_packed] = ACTIONS(1546), + [anon_sym_inline] = ACTIONS(1546), + [anon_sym_readonly] = ACTIONS(1546), + [anon_sym_sizeof] = ACTIONS(1546), + [sym__dedent] = ACTIONS(1548), + [sym_string_start] = ACTIONS(1548), + }, + [1030] = { + [sym_identifier] = ACTIONS(1496), + [anon_sym_import] = ACTIONS(1496), + [anon_sym_cimport] = ACTIONS(1496), + [anon_sym_from] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_print] = ACTIONS(1496), + [anon_sym_assert] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_del] = ACTIONS(1496), + [anon_sym_raise] = ACTIONS(1496), + [anon_sym_pass] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_else] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [anon_sym_except_STAR] = ACTIONS(1498), + [anon_sym_finally] = ACTIONS(1496), + [anon_sym_with] = ACTIONS(1496), + [anon_sym_def] = ACTIONS(1496), + [anon_sym_global] = ACTIONS(1496), + [anon_sym_nonlocal] = ACTIONS(1496), + [anon_sym_exec] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_class] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_AT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_not] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_lambda] = ACTIONS(1496), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1498), + [anon_sym_None] = ACTIONS(1496), + [sym_integer] = ACTIONS(1496), + [sym_float] = ACTIONS(1498), + [anon_sym_await] = ACTIONS(1496), + [anon_sym_api] = ACTIONS(1496), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1496), + [anon_sym_include] = ACTIONS(1496), + [anon_sym_DEF] = ACTIONS(1496), + [anon_sym_IF] = ACTIONS(1496), + [anon_sym_cdef] = ACTIONS(1496), + [anon_sym_cpdef] = ACTIONS(1496), + [anon_sym_new] = ACTIONS(1496), + [anon_sym_ctypedef] = ACTIONS(1496), + [anon_sym_public] = ACTIONS(1496), + [anon_sym_packed] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym_readonly] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1496), + [sym__dedent] = ACTIONS(1498), + [sym_string_start] = ACTIONS(1498), + }, + [1031] = { + [sym_identifier] = ACTIONS(1476), + [anon_sym_import] = ACTIONS(1476), + [anon_sym_cimport] = ACTIONS(1476), + [anon_sym_from] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_print] = ACTIONS(1476), + [anon_sym_assert] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_del] = ACTIONS(1476), + [anon_sym_raise] = ACTIONS(1476), + [anon_sym_pass] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_try] = ACTIONS(1476), + [anon_sym_except_STAR] = ACTIONS(1478), + [anon_sym_finally] = ACTIONS(1476), + [anon_sym_with] = ACTIONS(1476), + [anon_sym_def] = ACTIONS(1476), + [anon_sym_global] = ACTIONS(1476), + [anon_sym_nonlocal] = ACTIONS(1476), + [anon_sym_exec] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_not] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_lambda] = ACTIONS(1476), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_None] = ACTIONS(1476), + [sym_integer] = ACTIONS(1476), + [sym_float] = ACTIONS(1478), + [anon_sym_await] = ACTIONS(1476), + [anon_sym_api] = ACTIONS(1476), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1476), + [anon_sym_include] = ACTIONS(1476), + [anon_sym_DEF] = ACTIONS(1476), + [anon_sym_IF] = ACTIONS(1476), + [anon_sym_cdef] = ACTIONS(1476), + [anon_sym_cpdef] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_ctypedef] = ACTIONS(1476), + [anon_sym_public] = ACTIONS(1476), + [anon_sym_packed] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym_readonly] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1476), + [sym__dedent] = ACTIONS(1478), + [sym_string_start] = ACTIONS(1478), + }, + [1032] = { + [sym_identifier] = ACTIONS(1500), + [anon_sym_import] = ACTIONS(1500), + [anon_sym_cimport] = ACTIONS(1500), + [anon_sym_from] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_print] = ACTIONS(1500), + [anon_sym_assert] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_del] = ACTIONS(1500), + [anon_sym_raise] = ACTIONS(1500), + [anon_sym_pass] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_else] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_try] = ACTIONS(1500), + [anon_sym_except_STAR] = ACTIONS(1502), + [anon_sym_finally] = ACTIONS(1500), + [anon_sym_with] = ACTIONS(1500), + [anon_sym_def] = ACTIONS(1500), + [anon_sym_global] = ACTIONS(1500), + [anon_sym_nonlocal] = ACTIONS(1500), + [anon_sym_exec] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_class] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_AT] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_not] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_lambda] = ACTIONS(1500), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1502), + [anon_sym_None] = ACTIONS(1500), + [sym_integer] = ACTIONS(1500), + [sym_float] = ACTIONS(1502), + [anon_sym_await] = ACTIONS(1500), + [anon_sym_api] = ACTIONS(1500), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1500), + [anon_sym_include] = ACTIONS(1500), + [anon_sym_DEF] = ACTIONS(1500), + [anon_sym_IF] = ACTIONS(1500), + [anon_sym_cdef] = ACTIONS(1500), + [anon_sym_cpdef] = ACTIONS(1500), + [anon_sym_new] = ACTIONS(1500), + [anon_sym_ctypedef] = ACTIONS(1500), + [anon_sym_public] = ACTIONS(1500), + [anon_sym_packed] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym_readonly] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1500), + [sym__dedent] = ACTIONS(1502), + [sym_string_start] = ACTIONS(1502), + }, + [1033] = { + [sym_identifier] = ACTIONS(1480), + [anon_sym_import] = ACTIONS(1480), + [anon_sym_cimport] = ACTIONS(1480), + [anon_sym_from] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_del] = ACTIONS(1480), + [anon_sym_raise] = ACTIONS(1480), + [anon_sym_pass] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_else] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_try] = ACTIONS(1480), + [anon_sym_except_STAR] = ACTIONS(1482), + [anon_sym_finally] = ACTIONS(1480), + [anon_sym_with] = ACTIONS(1480), + [anon_sym_def] = ACTIONS(1480), + [anon_sym_global] = ACTIONS(1480), + [anon_sym_nonlocal] = ACTIONS(1480), + [anon_sym_exec] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_class] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_not] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_lambda] = ACTIONS(1480), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1482), + [anon_sym_None] = ACTIONS(1480), + [sym_integer] = ACTIONS(1480), + [sym_float] = ACTIONS(1482), + [anon_sym_await] = ACTIONS(1480), + [anon_sym_api] = ACTIONS(1480), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1480), + [anon_sym_include] = ACTIONS(1480), + [anon_sym_DEF] = ACTIONS(1480), + [anon_sym_IF] = ACTIONS(1480), + [anon_sym_cdef] = ACTIONS(1480), + [anon_sym_cpdef] = ACTIONS(1480), + [anon_sym_new] = ACTIONS(1480), + [anon_sym_ctypedef] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_packed] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1480), + [sym__dedent] = ACTIONS(1482), + [sym_string_start] = ACTIONS(1482), + }, + [1034] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [1035] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [1036] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [1037] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [1038] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_expression_list] = STATE(5299), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4236), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_from] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_COMMA] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1039] = { + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_list_splat] = STATE(5483), + [sym_parenthesized_list_splat] = STATE(5483), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4383), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_yield] = STATE(5483), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_exec] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_api] = ACTIONS(2429), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), }, [1040] = { - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_identifier] = ACTIONS(1522), - [anon_sym_import] = ACTIONS(1522), - [anon_sym_cimport] = ACTIONS(1522), - [anon_sym_from] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_print] = ACTIONS(1522), - [anon_sym_assert] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_del] = ACTIONS(1522), - [anon_sym_raise] = ACTIONS(1522), - [anon_sym_pass] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_else] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [anon_sym_except] = ACTIONS(1522), - [anon_sym_finally] = ACTIONS(1522), - [anon_sym_with] = ACTIONS(1522), - [anon_sym_def] = ACTIONS(1522), - [anon_sym_global] = ACTIONS(1522), - [anon_sym_nonlocal] = ACTIONS(1522), - [anon_sym_exec] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_class] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_not] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_lambda] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_None] = ACTIONS(1522), - [sym_integer] = ACTIONS(1522), - [sym_float] = ACTIONS(1524), - [anon_sym_await] = ACTIONS(1522), - [anon_sym_api] = ACTIONS(1522), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1522), - [anon_sym_include] = ACTIONS(1522), - [anon_sym_DEF] = ACTIONS(1522), - [anon_sym_cdef] = ACTIONS(1522), - [anon_sym_cpdef] = ACTIONS(1522), - [anon_sym_new] = ACTIONS(1522), - [anon_sym_ctypedef] = ACTIONS(1522), - [anon_sym_public] = ACTIONS(1522), - [anon_sym_packed] = ACTIONS(1522), - [anon_sym_inline] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1522), - [sym_string_start] = ACTIONS(1524), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [1041] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [1042] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [1043] = { - [sym_identifier] = ACTIONS(1522), - [anon_sym_import] = ACTIONS(1522), - [anon_sym_cimport] = ACTIONS(1522), - [anon_sym_from] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_print] = ACTIONS(1522), - [anon_sym_assert] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_del] = ACTIONS(1522), - [anon_sym_raise] = ACTIONS(1522), - [anon_sym_pass] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_else] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [anon_sym_except_STAR] = ACTIONS(1524), - [anon_sym_finally] = ACTIONS(1522), - [anon_sym_with] = ACTIONS(1522), - [anon_sym_def] = ACTIONS(1522), - [anon_sym_global] = ACTIONS(1522), - [anon_sym_nonlocal] = ACTIONS(1522), - [anon_sym_exec] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_class] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_not] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_lambda] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_None] = ACTIONS(1522), - [sym_integer] = ACTIONS(1522), - [sym_float] = ACTIONS(1524), - [anon_sym_await] = ACTIONS(1522), - [anon_sym_api] = ACTIONS(1522), - [sym_true] = ACTIONS(1522), - [sym_false] = ACTIONS(1522), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1522), - [anon_sym_include] = ACTIONS(1522), - [anon_sym_DEF] = ACTIONS(1522), - [anon_sym_cdef] = ACTIONS(1522), - [anon_sym_cpdef] = ACTIONS(1522), - [anon_sym_new] = ACTIONS(1522), - [anon_sym_ctypedef] = ACTIONS(1522), - [anon_sym_public] = ACTIONS(1522), - [anon_sym_packed] = ACTIONS(1522), - [anon_sym_inline] = ACTIONS(1522), - [anon_sym_readonly] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1522), - [sym__dedent] = ACTIONS(1524), - [sym_string_start] = ACTIONS(1524), + [ts_builtin_sym_end] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_cimport] = ACTIONS(3243), + [anon_sym_from] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_print] = ACTIONS(3243), + [anon_sym_assert] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_del] = ACTIONS(3243), + [anon_sym_raise] = ACTIONS(3243), + [anon_sym_pass] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_else] = ACTIONS(3243), + [anon_sym_match] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_except] = ACTIONS(3243), + [anon_sym_finally] = ACTIONS(3243), + [anon_sym_with] = ACTIONS(3243), + [anon_sym_def] = ACTIONS(3243), + [anon_sym_global] = ACTIONS(3243), + [anon_sym_nonlocal] = ACTIONS(3243), + [anon_sym_exec] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_not] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_lambda] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3241), + [anon_sym_None] = ACTIONS(3243), + [sym_integer] = ACTIONS(3243), + [sym_float] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_api] = ACTIONS(3243), + [sym_true] = ACTIONS(3243), + [sym_false] = ACTIONS(3243), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3243), + [anon_sym_include] = ACTIONS(3243), + [anon_sym_DEF] = ACTIONS(3243), + [anon_sym_IF] = ACTIONS(3243), + [anon_sym_cdef] = ACTIONS(3243), + [anon_sym_cpdef] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_ctypedef] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_packed] = ACTIONS(3243), + [anon_sym_inline] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_sizeof] = ACTIONS(3243), + [sym_string_start] = ACTIONS(3241), }, [1044] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [ts_builtin_sym_end] = ACTIONS(3203), + [sym_identifier] = ACTIONS(3201), + [anon_sym_import] = ACTIONS(3201), + [anon_sym_cimport] = ACTIONS(3201), + [anon_sym_from] = ACTIONS(3201), + [anon_sym_LPAREN] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3203), + [anon_sym_print] = ACTIONS(3201), + [anon_sym_assert] = ACTIONS(3201), + [anon_sym_return] = ACTIONS(3201), + [anon_sym_del] = ACTIONS(3201), + [anon_sym_raise] = ACTIONS(3201), + [anon_sym_pass] = ACTIONS(3201), + [anon_sym_break] = ACTIONS(3201), + [anon_sym_continue] = ACTIONS(3201), + [anon_sym_if] = ACTIONS(3201), + [anon_sym_else] = ACTIONS(3201), + [anon_sym_match] = ACTIONS(3201), + [anon_sym_async] = ACTIONS(3201), + [anon_sym_for] = ACTIONS(3201), + [anon_sym_while] = ACTIONS(3201), + [anon_sym_try] = ACTIONS(3201), + [anon_sym_except_STAR] = ACTIONS(3203), + [anon_sym_finally] = ACTIONS(3201), + [anon_sym_with] = ACTIONS(3201), + [anon_sym_def] = ACTIONS(3201), + [anon_sym_global] = ACTIONS(3201), + [anon_sym_nonlocal] = ACTIONS(3201), + [anon_sym_exec] = ACTIONS(3201), + [anon_sym_type] = ACTIONS(3201), + [anon_sym_class] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3203), + [anon_sym_AT] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_not] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3203), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_lambda] = ACTIONS(3201), + [anon_sym_yield] = ACTIONS(3201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3203), + [anon_sym_None] = ACTIONS(3201), + [sym_integer] = ACTIONS(3201), + [sym_float] = ACTIONS(3203), + [anon_sym_await] = ACTIONS(3201), + [anon_sym_api] = ACTIONS(3201), + [sym_true] = ACTIONS(3201), + [sym_false] = ACTIONS(3201), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3201), + [anon_sym_include] = ACTIONS(3201), + [anon_sym_DEF] = ACTIONS(3201), + [anon_sym_IF] = ACTIONS(3201), + [anon_sym_cdef] = ACTIONS(3201), + [anon_sym_cpdef] = ACTIONS(3201), + [anon_sym_new] = ACTIONS(3201), + [anon_sym_ctypedef] = ACTIONS(3201), + [anon_sym_public] = ACTIONS(3201), + [anon_sym_packed] = ACTIONS(3201), + [anon_sym_inline] = ACTIONS(3201), + [anon_sym_readonly] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3201), + [sym_string_start] = ACTIONS(3203), }, [1045] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_identifier] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_cimport] = ACTIONS(3243), + [anon_sym_from] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_print] = ACTIONS(3243), + [anon_sym_assert] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_del] = ACTIONS(3243), + [anon_sym_raise] = ACTIONS(3243), + [anon_sym_pass] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_else] = ACTIONS(3243), + [anon_sym_match] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_except] = ACTIONS(3243), + [anon_sym_finally] = ACTIONS(3243), + [anon_sym_with] = ACTIONS(3243), + [anon_sym_def] = ACTIONS(3243), + [anon_sym_global] = ACTIONS(3243), + [anon_sym_nonlocal] = ACTIONS(3243), + [anon_sym_exec] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_not] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_lambda] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3241), + [anon_sym_None] = ACTIONS(3243), + [sym_integer] = ACTIONS(3243), + [sym_float] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_api] = ACTIONS(3243), + [sym_true] = ACTIONS(3243), + [sym_false] = ACTIONS(3243), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3243), + [anon_sym_include] = ACTIONS(3243), + [anon_sym_DEF] = ACTIONS(3243), + [anon_sym_IF] = ACTIONS(3243), + [anon_sym_cdef] = ACTIONS(3243), + [anon_sym_cpdef] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_ctypedef] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_packed] = ACTIONS(3243), + [anon_sym_inline] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_sizeof] = ACTIONS(3243), + [sym__dedent] = ACTIONS(3241), + [sym_string_start] = ACTIONS(3241), }, [1046] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [1047] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(3933), + [sym__named_expression_lhs] = STATE(5687), + [sym_list_splat_pattern] = STATE(2465), + [sym_as_pattern] = STATE(3933), + [sym_expression] = STATE(3970), + [sym_primary_expression] = STATE(2159), + [sym_not_operator] = STATE(3933), + [sym_boolean_operator] = STATE(3933), + [sym_binary_operator] = STATE(2405), + [sym_unary_operator] = STATE(2405), + [sym_comparison_operator] = STATE(3933), + [sym_lambda] = STATE(3933), + [sym_attribute] = STATE(2405), + [sym_subscript] = STATE(2405), + [sym_ellipsis] = STATE(2405), + [sym_call] = STATE(2405), + [sym_list] = STATE(2405), + [sym_set] = STATE(2405), + [sym_tuple] = STATE(2405), + [sym_dictionary] = STATE(2405), + [sym_list_comprehension] = STATE(2405), + [sym_dictionary_comprehension] = STATE(2405), + [sym_set_comprehension] = STATE(2405), + [sym_generator_expression] = STATE(2405), + [sym_parenthesized_expression] = STATE(2405), + [sym_conditional_expression] = STATE(3933), + [sym_concatenated_string] = STATE(2405), + [sym_string] = STATE(2231), + [sym_none] = STATE(2405), + [sym_await] = STATE(2405), + [sym_new_expression] = STATE(3933), + [sym_sizeof_expression] = STATE(2405), + [sym_cast_expression] = STATE(2405), + [sym_identifier] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2757), + [anon_sym_print] = ACTIONS(2875), + [anon_sym_COLON] = ACTIONS(3247), + [anon_sym_match] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_exec] = ACTIONS(2875), + [anon_sym_EQ] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_not] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2445), + [anon_sym_TILDE] = ACTIONS(2445), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_lambda] = ACTIONS(2767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2451), + [anon_sym_None] = ACTIONS(2453), + [sym_type_conversion] = ACTIONS(3247), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2879), + [anon_sym_api] = ACTIONS(2875), + [sym_true] = ACTIONS(2435), + [sym_false] = ACTIONS(2435), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_sizeof] = ACTIONS(2459), + [sym_string_start] = ACTIONS(2461), }, [1048] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), }, [1049] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat] = STATE(5512), + [sym_parenthesized_list_splat] = STATE(5512), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4270), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_yield] = STATE(5512), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), }, [1050] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1476), + [anon_sym_import] = ACTIONS(1476), + [anon_sym_cimport] = ACTIONS(1476), + [anon_sym_from] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_print] = ACTIONS(1476), + [anon_sym_assert] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_del] = ACTIONS(1476), + [anon_sym_raise] = ACTIONS(1476), + [anon_sym_pass] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_else] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_try] = ACTIONS(1476), + [anon_sym_except] = ACTIONS(1476), + [anon_sym_finally] = ACTIONS(1476), + [anon_sym_with] = ACTIONS(1476), + [anon_sym_def] = ACTIONS(1476), + [anon_sym_global] = ACTIONS(1476), + [anon_sym_nonlocal] = ACTIONS(1476), + [anon_sym_exec] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_class] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_not] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_lambda] = ACTIONS(1476), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_None] = ACTIONS(1476), + [sym_integer] = ACTIONS(1476), + [sym_float] = ACTIONS(1478), + [anon_sym_await] = ACTIONS(1476), + [anon_sym_api] = ACTIONS(1476), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1476), + [anon_sym_include] = ACTIONS(1476), + [anon_sym_DEF] = ACTIONS(1476), + [anon_sym_IF] = ACTIONS(1476), + [anon_sym_cdef] = ACTIONS(1476), + [anon_sym_cpdef] = ACTIONS(1476), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_ctypedef] = ACTIONS(1476), + [anon_sym_public] = ACTIONS(1476), + [anon_sym_packed] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym_readonly] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1476), + [sym_string_start] = ACTIONS(1478), }, [1051] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4110), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3249), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1480), + [anon_sym_import] = ACTIONS(1480), + [anon_sym_cimport] = ACTIONS(1480), + [anon_sym_from] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_del] = ACTIONS(1480), + [anon_sym_raise] = ACTIONS(1480), + [anon_sym_pass] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_else] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_try] = ACTIONS(1480), + [anon_sym_except] = ACTIONS(1480), + [anon_sym_finally] = ACTIONS(1480), + [anon_sym_with] = ACTIONS(1480), + [anon_sym_def] = ACTIONS(1480), + [anon_sym_global] = ACTIONS(1480), + [anon_sym_nonlocal] = ACTIONS(1480), + [anon_sym_exec] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_class] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_not] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_lambda] = ACTIONS(1480), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1482), + [anon_sym_None] = ACTIONS(1480), + [sym_integer] = ACTIONS(1480), + [sym_float] = ACTIONS(1482), + [anon_sym_await] = ACTIONS(1480), + [anon_sym_api] = ACTIONS(1480), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1480), + [anon_sym_include] = ACTIONS(1480), + [anon_sym_DEF] = ACTIONS(1480), + [anon_sym_IF] = ACTIONS(1480), + [anon_sym_cdef] = ACTIONS(1480), + [anon_sym_cpdef] = ACTIONS(1480), + [anon_sym_new] = ACTIONS(1480), + [anon_sym_ctypedef] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_packed] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1480), + [sym_string_start] = ACTIONS(1482), }, [1052] = { - [sym_identifier] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(1526), - [anon_sym_cimport] = ACTIONS(1526), - [anon_sym_from] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_print] = ACTIONS(1526), - [anon_sym_assert] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_del] = ACTIONS(1526), - [anon_sym_raise] = ACTIONS(1526), - [anon_sym_pass] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_else] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_try] = ACTIONS(1526), - [anon_sym_except_STAR] = ACTIONS(1528), - [anon_sym_finally] = ACTIONS(1526), - [anon_sym_with] = ACTIONS(1526), - [anon_sym_def] = ACTIONS(1526), - [anon_sym_global] = ACTIONS(1526), - [anon_sym_nonlocal] = ACTIONS(1526), - [anon_sym_exec] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_class] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_not] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_lambda] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), - [anon_sym_None] = ACTIONS(1526), - [sym_integer] = ACTIONS(1526), - [sym_float] = ACTIONS(1528), - [anon_sym_await] = ACTIONS(1526), - [anon_sym_api] = ACTIONS(1526), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1526), - [anon_sym_include] = ACTIONS(1526), - [anon_sym_DEF] = ACTIONS(1526), - [anon_sym_cdef] = ACTIONS(1526), - [anon_sym_cpdef] = ACTIONS(1526), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_ctypedef] = ACTIONS(1526), - [anon_sym_public] = ACTIONS(1526), - [anon_sym_packed] = ACTIONS(1526), - [anon_sym_inline] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1526), - [anon_sym_sizeof] = ACTIONS(1526), - [sym__dedent] = ACTIONS(1528), - [sym_string_start] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3163), + [anon_sym_import] = ACTIONS(3163), + [anon_sym_cimport] = ACTIONS(3163), + [anon_sym_from] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_print] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_del] = ACTIONS(3163), + [anon_sym_raise] = ACTIONS(3163), + [anon_sym_pass] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_else] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_async] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_except] = ACTIONS(3163), + [anon_sym_finally] = ACTIONS(3163), + [anon_sym_with] = ACTIONS(3163), + [anon_sym_def] = ACTIONS(3163), + [anon_sym_global] = ACTIONS(3163), + [anon_sym_nonlocal] = ACTIONS(3163), + [anon_sym_exec] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_AT] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_lambda] = ACTIONS(3163), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3165), + [anon_sym_None] = ACTIONS(3163), + [sym_integer] = ACTIONS(3163), + [sym_float] = ACTIONS(3165), + [anon_sym_await] = ACTIONS(3163), + [anon_sym_api] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3163), + [anon_sym_include] = ACTIONS(3163), + [anon_sym_DEF] = ACTIONS(3163), + [anon_sym_IF] = ACTIONS(3163), + [anon_sym_cdef] = ACTIONS(3163), + [anon_sym_cpdef] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_ctypedef] = ACTIONS(3163), + [anon_sym_public] = ACTIONS(3163), + [anon_sym_packed] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym_readonly] = ACTIONS(3163), + [anon_sym_sizeof] = ACTIONS(3163), + [sym_string_start] = ACTIONS(3165), }, [1053] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [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_STAR] = ACTIONS(3169), + [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_IF] = 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), }, [1054] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1055] = { - [sym_identifier] = ACTIONS(1510), - [anon_sym_import] = ACTIONS(1510), - [anon_sym_cimport] = ACTIONS(1510), - [anon_sym_from] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1510), - [anon_sym_assert] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_del] = ACTIONS(1510), - [anon_sym_raise] = ACTIONS(1510), - [anon_sym_pass] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1510), - [anon_sym_except_STAR] = ACTIONS(1512), - [anon_sym_finally] = ACTIONS(1510), - [anon_sym_with] = ACTIONS(1510), - [anon_sym_def] = ACTIONS(1510), - [anon_sym_global] = ACTIONS(1510), - [anon_sym_nonlocal] = ACTIONS(1510), - [anon_sym_exec] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_class] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_not] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_lambda] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), - [anon_sym_None] = ACTIONS(1510), - [sym_integer] = ACTIONS(1510), - [sym_float] = ACTIONS(1512), - [anon_sym_await] = ACTIONS(1510), - [anon_sym_api] = ACTIONS(1510), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1510), - [anon_sym_include] = ACTIONS(1510), - [anon_sym_DEF] = ACTIONS(1510), - [anon_sym_cdef] = ACTIONS(1510), - [anon_sym_cpdef] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_ctypedef] = ACTIONS(1510), - [anon_sym_public] = ACTIONS(1510), - [anon_sym_packed] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_readonly] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1510), - [sym__dedent] = ACTIONS(1512), - [sym_string_start] = ACTIONS(1512), - }, - [1056] = { - [sym_identifier] = ACTIONS(1518), - [anon_sym_import] = ACTIONS(1518), - [anon_sym_cimport] = ACTIONS(1518), - [anon_sym_from] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_print] = ACTIONS(1518), - [anon_sym_assert] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_del] = ACTIONS(1518), - [anon_sym_raise] = ACTIONS(1518), - [anon_sym_pass] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_except_STAR] = ACTIONS(1520), - [anon_sym_finally] = ACTIONS(1518), - [anon_sym_with] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_global] = ACTIONS(1518), - [anon_sym_nonlocal] = ACTIONS(1518), - [anon_sym_exec] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_not] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_lambda] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), - [anon_sym_None] = ACTIONS(1518), - [sym_integer] = ACTIONS(1518), - [sym_float] = ACTIONS(1520), - [anon_sym_await] = ACTIONS(1518), - [anon_sym_api] = ACTIONS(1518), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1518), - [anon_sym_include] = ACTIONS(1518), - [anon_sym_DEF] = ACTIONS(1518), - [anon_sym_cdef] = ACTIONS(1518), - [anon_sym_cpdef] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_ctypedef] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_packed] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_sizeof] = ACTIONS(1518), - [sym__dedent] = ACTIONS(1520), - [sym_string_start] = ACTIONS(1520), - }, - [1057] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1058] = { - [ts_builtin_sym_end] = ACTIONS(3189), [sym_identifier] = ACTIONS(3187), [anon_sym_import] = ACTIONS(3187), [anon_sym_cimport] = ACTIONS(3187), [anon_sym_from] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), [anon_sym_print] = ACTIONS(3187), [anon_sym_assert] = ACTIONS(3187), [anon_sym_return] = ACTIONS(3187), @@ -121227,21 +122607,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3187), [anon_sym_type] = ACTIONS(3187), [anon_sym_class] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_AT] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), [anon_sym_not] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), [anon_sym_lambda] = ACTIONS(3187), [anon_sym_yield] = ACTIONS(3187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), [anon_sym_None] = ACTIONS(3187), [sym_integer] = ACTIONS(3187), - [sym_float] = ACTIONS(3189), + [sym_float] = ACTIONS(3185), [anon_sym_await] = ACTIONS(3187), [anon_sym_api] = ACTIONS(3187), [sym_true] = ACTIONS(3187), @@ -121251,6 +122631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(3187), [anon_sym_include] = ACTIONS(3187), [anon_sym_DEF] = ACTIONS(3187), + [anon_sym_IF] = ACTIONS(3187), [anon_sym_cdef] = ACTIONS(3187), [anon_sym_cpdef] = ACTIONS(3187), [anon_sym_new] = ACTIONS(3187), @@ -121260,887 +122641,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3187), [anon_sym_readonly] = ACTIONS(3187), [anon_sym_sizeof] = ACTIONS(3187), - [sym_string_start] = ACTIONS(3189), + [sym__dedent] = ACTIONS(3185), + [sym_string_start] = ACTIONS(3185), }, - [1059] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1060] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1061] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1062] = { - [sym_identifier] = ACTIONS(1514), - [anon_sym_import] = ACTIONS(1514), - [anon_sym_cimport] = ACTIONS(1514), - [anon_sym_from] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_print] = ACTIONS(1514), - [anon_sym_assert] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_del] = ACTIONS(1514), - [anon_sym_raise] = ACTIONS(1514), - [anon_sym_pass] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_except_STAR] = ACTIONS(1516), - [anon_sym_finally] = ACTIONS(1514), - [anon_sym_with] = ACTIONS(1514), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_global] = ACTIONS(1514), - [anon_sym_nonlocal] = ACTIONS(1514), - [anon_sym_exec] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_class] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_not] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_lambda] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_None] = ACTIONS(1514), - [sym_integer] = ACTIONS(1514), - [sym_float] = ACTIONS(1516), - [anon_sym_await] = ACTIONS(1514), - [anon_sym_api] = ACTIONS(1514), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1514), - [anon_sym_include] = ACTIONS(1514), - [anon_sym_DEF] = ACTIONS(1514), - [anon_sym_cdef] = ACTIONS(1514), - [anon_sym_cpdef] = ACTIONS(1514), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_ctypedef] = ACTIONS(1514), - [anon_sym_public] = ACTIONS(1514), - [anon_sym_packed] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_readonly] = ACTIONS(1514), - [anon_sym_sizeof] = ACTIONS(1514), - [sym__dedent] = ACTIONS(1516), - [sym_string_start] = ACTIONS(1516), - }, - [1063] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1064] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3265), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1065] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1066] = { - [ts_builtin_sym_end] = ACTIONS(3193), - [sym_identifier] = ACTIONS(3191), - [anon_sym_import] = ACTIONS(3191), - [anon_sym_cimport] = ACTIONS(3191), - [anon_sym_from] = ACTIONS(3191), + [1055] = { + [sym_identifier] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3195), + [anon_sym_cimport] = ACTIONS(3195), + [anon_sym_from] = ACTIONS(3195), [anon_sym_LPAREN] = ACTIONS(3193), [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_print] = ACTIONS(3191), - [anon_sym_assert] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_del] = ACTIONS(3191), - [anon_sym_raise] = ACTIONS(3191), - [anon_sym_pass] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3191), - [anon_sym_match] = ACTIONS(3191), - [anon_sym_async] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_except] = ACTIONS(3191), - [anon_sym_finally] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3191), - [anon_sym_def] = ACTIONS(3191), - [anon_sym_global] = ACTIONS(3191), - [anon_sym_nonlocal] = ACTIONS(3191), - [anon_sym_exec] = ACTIONS(3191), - [anon_sym_type] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_not] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_lambda] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), - [anon_sym_None] = ACTIONS(3191), - [sym_integer] = ACTIONS(3191), - [sym_float] = ACTIONS(3193), - [anon_sym_await] = ACTIONS(3191), - [anon_sym_api] = ACTIONS(3191), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3191), - [anon_sym_include] = ACTIONS(3191), - [anon_sym_DEF] = ACTIONS(3191), - [anon_sym_cdef] = ACTIONS(3191), - [anon_sym_cpdef] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_ctypedef] = ACTIONS(3191), - [anon_sym_public] = ACTIONS(3191), - [anon_sym_packed] = ACTIONS(3191), - [anon_sym_inline] = ACTIONS(3191), - [anon_sym_readonly] = ACTIONS(3191), - [anon_sym_sizeof] = ACTIONS(3191), - [sym_string_start] = ACTIONS(3193), - }, - [1067] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1068] = { - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3177), - [anon_sym_import] = ACTIONS(3177), - [anon_sym_cimport] = ACTIONS(3177), - [anon_sym_from] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3179), - [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] = ACTIONS(3177), - [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(3179), - [anon_sym_AT] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_not] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_lambda] = ACTIONS(3177), - [anon_sym_yield] = ACTIONS(3177), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), - [anon_sym_None] = ACTIONS(3177), - [sym_integer] = ACTIONS(3177), - [sym_float] = ACTIONS(3179), - [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(3179), - }, - [1069] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), - }, - [1070] = { - [sym_identifier] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_cimport] = ACTIONS(3219), - [anon_sym_from] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3217), - [anon_sym_print] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_del] = ACTIONS(3219), - [anon_sym_raise] = ACTIONS(3219), - [anon_sym_pass] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_except] = ACTIONS(3219), - [anon_sym_finally] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_def] = ACTIONS(3219), - [anon_sym_global] = ACTIONS(3219), - [anon_sym_nonlocal] = ACTIONS(3219), - [anon_sym_exec] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_not] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_lambda] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), - [anon_sym_None] = ACTIONS(3219), - [sym_integer] = ACTIONS(3219), - [sym_float] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_api] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3219), - [anon_sym_include] = ACTIONS(3219), - [anon_sym_DEF] = ACTIONS(3219), - [anon_sym_cdef] = ACTIONS(3219), - [anon_sym_cpdef] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_ctypedef] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_packed] = ACTIONS(3219), - [anon_sym_inline] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_sizeof] = ACTIONS(3219), - [sym__dedent] = ACTIONS(3217), - [sym_string_start] = ACTIONS(3217), - }, - [1071] = { - [sym_identifier] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_cimport] = ACTIONS(3223), - [anon_sym_from] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_print] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_del] = ACTIONS(3223), - [anon_sym_raise] = ACTIONS(3223), - [anon_sym_pass] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_except_STAR] = ACTIONS(3221), - [anon_sym_finally] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_def] = ACTIONS(3223), - [anon_sym_global] = ACTIONS(3223), - [anon_sym_nonlocal] = ACTIONS(3223), - [anon_sym_exec] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_not] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_lambda] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), - [anon_sym_None] = ACTIONS(3223), - [sym_integer] = ACTIONS(3223), - [sym_float] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_api] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3223), - [anon_sym_include] = ACTIONS(3223), - [anon_sym_DEF] = ACTIONS(3223), - [anon_sym_cdef] = ACTIONS(3223), - [anon_sym_cpdef] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_ctypedef] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_packed] = ACTIONS(3223), - [anon_sym_inline] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_sizeof] = ACTIONS(3223), - [sym__dedent] = ACTIONS(3221), - [sym_string_start] = ACTIONS(3221), - }, - [1072] = { - [ts_builtin_sym_end] = ACTIONS(3197), - [sym_identifier] = ACTIONS(3195), - [anon_sym_import] = ACTIONS(3195), - [anon_sym_cimport] = ACTIONS(3195), - [anon_sym_from] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), [anon_sym_print] = ACTIONS(3195), [anon_sym_assert] = ACTIONS(3195), [anon_sym_return] = ACTIONS(3195), @@ -122156,7 +122666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3195), [anon_sym_while] = ACTIONS(3195), [anon_sym_try] = ACTIONS(3195), - [anon_sym_except_STAR] = ACTIONS(3197), + [anon_sym_except_STAR] = ACTIONS(3193), [anon_sym_finally] = ACTIONS(3195), [anon_sym_with] = ACTIONS(3195), [anon_sym_def] = ACTIONS(3195), @@ -122165,21 +122675,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(3195), [anon_sym_type] = ACTIONS(3195), [anon_sym_class] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_AT] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), [anon_sym_not] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), [anon_sym_lambda] = ACTIONS(3195), [anon_sym_yield] = ACTIONS(3195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), [anon_sym_None] = ACTIONS(3195), [sym_integer] = ACTIONS(3195), - [sym_float] = ACTIONS(3197), + [sym_float] = ACTIONS(3193), [anon_sym_await] = ACTIONS(3195), [anon_sym_api] = ACTIONS(3195), [sym_true] = ACTIONS(3195), @@ -122189,6 +122699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_property] = ACTIONS(3195), [anon_sym_include] = ACTIONS(3195), [anon_sym_DEF] = ACTIONS(3195), + [anon_sym_IF] = ACTIONS(3195), [anon_sym_cdef] = ACTIONS(3195), [anon_sym_cpdef] = ACTIONS(3195), [anon_sym_new] = ACTIONS(3195), @@ -122198,186 +122709,3405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(3195), [anon_sym_readonly] = ACTIONS(3195), [anon_sym_sizeof] = ACTIONS(3195), - [sym_string_start] = ACTIONS(3197), + [sym__dedent] = ACTIONS(3193), + [sym_string_start] = ACTIONS(3193), }, - [1073] = { - [ts_builtin_sym_end] = ACTIONS(3207), - [sym_identifier] = ACTIONS(3205), - [anon_sym_import] = ACTIONS(3205), - [anon_sym_cimport] = ACTIONS(3205), - [anon_sym_from] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_print] = ACTIONS(3205), - [anon_sym_assert] = ACTIONS(3205), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_del] = ACTIONS(3205), - [anon_sym_raise] = ACTIONS(3205), - [anon_sym_pass] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_else] = ACTIONS(3205), - [anon_sym_match] = ACTIONS(3205), - [anon_sym_async] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_while] = ACTIONS(3205), - [anon_sym_try] = ACTIONS(3205), - [anon_sym_except] = ACTIONS(3205), - [anon_sym_finally] = ACTIONS(3205), - [anon_sym_with] = ACTIONS(3205), - [anon_sym_def] = ACTIONS(3205), - [anon_sym_global] = ACTIONS(3205), - [anon_sym_nonlocal] = ACTIONS(3205), - [anon_sym_exec] = ACTIONS(3205), - [anon_sym_type] = ACTIONS(3205), - [anon_sym_class] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_AT] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_not] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_lambda] = ACTIONS(3205), - [anon_sym_yield] = ACTIONS(3205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3207), - [anon_sym_None] = ACTIONS(3205), - [sym_integer] = ACTIONS(3205), - [sym_float] = ACTIONS(3207), - [anon_sym_await] = ACTIONS(3205), - [anon_sym_api] = ACTIONS(3205), - [sym_true] = ACTIONS(3205), - [sym_false] = ACTIONS(3205), + [1056] = { + [sym_named_expression] = STATE(2806), + [sym__named_expression_lhs] = STATE(5627), + [sym_expression_list] = STATE(5458), + [sym_list_splat_pattern] = STATE(2760), + [sym_as_pattern] = STATE(2806), + [sym_expression] = STATE(4256), + [sym_primary_expression] = STATE(2270), + [sym_not_operator] = STATE(2806), + [sym_boolean_operator] = STATE(2806), + [sym_binary_operator] = STATE(2805), + [sym_unary_operator] = STATE(2805), + [sym_comparison_operator] = STATE(2806), + [sym_lambda] = STATE(2806), + [sym_attribute] = STATE(2805), + [sym_subscript] = STATE(2805), + [sym_ellipsis] = STATE(2805), + [sym_call] = STATE(2805), + [sym_list] = STATE(2805), + [sym_set] = STATE(2805), + [sym_tuple] = STATE(2805), + [sym_dictionary] = STATE(2805), + [sym_list_comprehension] = STATE(2805), + [sym_dictionary_comprehension] = STATE(2805), + [sym_set_comprehension] = STATE(2805), + [sym_generator_expression] = STATE(2805), + [sym_parenthesized_expression] = STATE(2805), + [sym_conditional_expression] = STATE(2806), + [sym_concatenated_string] = STATE(2805), + [sym_string] = STATE(2403), + [sym_none] = STATE(2805), + [sym_await] = STATE(2805), + [sym_new_expression] = STATE(2806), + [sym_sizeof_expression] = STATE(2805), + [sym_cast_expression] = STATE(2805), + [sym_identifier] = ACTIONS(3132), + [anon_sym_from] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_RPAREN] = ACTIONS(2877), + [anon_sym_COMMA] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_print] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_exec] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_not] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_lambda] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1460), + [anon_sym_None] = ACTIONS(1462), + [sym_integer] = ACTIONS(1464), + [sym_float] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(2431), + [anon_sym_api] = ACTIONS(2429), + [sym_true] = ACTIONS(1464), + [sym_false] = ACTIONS(1464), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3205), - [anon_sym_include] = ACTIONS(3205), - [anon_sym_DEF] = ACTIONS(3205), - [anon_sym_cdef] = ACTIONS(3205), - [anon_sym_cpdef] = ACTIONS(3205), - [anon_sym_new] = ACTIONS(3205), - [anon_sym_ctypedef] = ACTIONS(3205), - [anon_sym_public] = ACTIONS(3205), - [anon_sym_packed] = ACTIONS(3205), - [anon_sym_inline] = ACTIONS(3205), - [anon_sym_readonly] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3205), - [sym_string_start] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(1470), + [anon_sym_sizeof] = ACTIONS(1472), + [sym_string_start] = ACTIONS(1474), + }, + [1057] = { + [sym_identifier] = ACTIONS(1480), + [anon_sym_import] = ACTIONS(1480), + [anon_sym_cimport] = ACTIONS(1480), + [anon_sym_from] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_del] = ACTIONS(1480), + [anon_sym_raise] = ACTIONS(1480), + [anon_sym_pass] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_else] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_try] = ACTIONS(1480), + [anon_sym_except] = ACTIONS(1480), + [anon_sym_finally] = ACTIONS(1480), + [anon_sym_with] = ACTIONS(1480), + [anon_sym_def] = ACTIONS(1480), + [anon_sym_global] = ACTIONS(1480), + [anon_sym_nonlocal] = ACTIONS(1480), + [anon_sym_exec] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_class] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_not] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_lambda] = ACTIONS(1480), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1482), + [anon_sym_None] = ACTIONS(1480), + [sym_integer] = ACTIONS(1480), + [sym_float] = ACTIONS(1482), + [anon_sym_await] = ACTIONS(1480), + [anon_sym_api] = ACTIONS(1480), + [sym_true] = ACTIONS(1480), + [sym_false] = ACTIONS(1480), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1480), + [anon_sym_include] = ACTIONS(1480), + [anon_sym_DEF] = ACTIONS(1480), + [anon_sym_IF] = ACTIONS(1480), + [anon_sym_cdef] = ACTIONS(1480), + [anon_sym_cpdef] = ACTIONS(1480), + [anon_sym_new] = ACTIONS(1480), + [anon_sym_ctypedef] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_packed] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1480), + [sym__dedent] = ACTIONS(1482), + [sym_string_start] = ACTIONS(1482), + }, + [1058] = { + [sym_identifier] = ACTIONS(3253), + [anon_sym_import] = ACTIONS(3253), + [anon_sym_cimport] = ACTIONS(3253), + [anon_sym_from] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_print] = ACTIONS(3253), + [anon_sym_assert] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3253), + [anon_sym_del] = ACTIONS(3253), + [anon_sym_raise] = ACTIONS(3253), + [anon_sym_pass] = ACTIONS(3253), + [anon_sym_break] = ACTIONS(3253), + [anon_sym_continue] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_match] = ACTIONS(3253), + [anon_sym_async] = ACTIONS(3253), + [anon_sym_for] = ACTIONS(3253), + [anon_sym_while] = ACTIONS(3253), + [anon_sym_try] = ACTIONS(3253), + [anon_sym_with] = ACTIONS(3253), + [anon_sym_def] = ACTIONS(3253), + [anon_sym_global] = ACTIONS(3253), + [anon_sym_nonlocal] = ACTIONS(3253), + [anon_sym_exec] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3253), + [anon_sym_class] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_not] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_lambda] = ACTIONS(3253), + [anon_sym_yield] = ACTIONS(3253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_None] = ACTIONS(3253), + [sym_integer] = ACTIONS(3253), + [sym_float] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3253), + [anon_sym_api] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3253), + [anon_sym_include] = ACTIONS(3253), + [anon_sym_DEF] = ACTIONS(3253), + [anon_sym_IF] = ACTIONS(3253), + [anon_sym_ELIF] = ACTIONS(3253), + [anon_sym_ELSE] = ACTIONS(3253), + [anon_sym_cdef] = ACTIONS(3253), + [anon_sym_cpdef] = ACTIONS(3253), + [anon_sym_new] = ACTIONS(3253), + [anon_sym_ctypedef] = ACTIONS(3253), + [anon_sym_public] = ACTIONS(3253), + [anon_sym_packed] = ACTIONS(3253), + [anon_sym_inline] = ACTIONS(3253), + [anon_sym_readonly] = ACTIONS(3253), + [anon_sym_sizeof] = ACTIONS(3253), + [sym__dedent] = ACTIONS(3255), + [sym_string_start] = ACTIONS(3255), + }, + [1059] = { + [sym_else_clause] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(3257), + [sym_identifier] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_cimport] = ACTIONS(3259), + [anon_sym_from] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_print] = ACTIONS(3259), + [anon_sym_assert] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_del] = ACTIONS(3259), + [anon_sym_raise] = ACTIONS(3259), + [anon_sym_pass] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3259), + [anon_sym_def] = ACTIONS(3259), + [anon_sym_global] = ACTIONS(3259), + [anon_sym_nonlocal] = ACTIONS(3259), + [anon_sym_exec] = ACTIONS(3259), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_not] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_lambda] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3257), + [anon_sym_None] = ACTIONS(3259), + [sym_integer] = ACTIONS(3259), + [sym_float] = ACTIONS(3257), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_api] = ACTIONS(3259), + [sym_true] = ACTIONS(3259), + [sym_false] = ACTIONS(3259), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3259), + [anon_sym_include] = ACTIONS(3259), + [anon_sym_DEF] = ACTIONS(3259), + [anon_sym_IF] = ACTIONS(3259), + [anon_sym_cdef] = ACTIONS(3259), + [anon_sym_cpdef] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_ctypedef] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_packed] = ACTIONS(3259), + [anon_sym_inline] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_sizeof] = ACTIONS(3259), + [sym_string_start] = ACTIONS(3257), + }, + [1060] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1061] = { + [sym_else_clause] = STATE(1449), + [ts_builtin_sym_end] = ACTIONS(3265), + [sym_identifier] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_cimport] = ACTIONS(3267), + [anon_sym_from] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_print] = ACTIONS(3267), + [anon_sym_assert] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_del] = ACTIONS(3267), + [anon_sym_raise] = ACTIONS(3267), + [anon_sym_pass] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_def] = ACTIONS(3267), + [anon_sym_global] = ACTIONS(3267), + [anon_sym_nonlocal] = ACTIONS(3267), + [anon_sym_exec] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_not] = ACTIONS(3267), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_lambda] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3265), + [anon_sym_None] = ACTIONS(3267), + [sym_integer] = ACTIONS(3267), + [sym_float] = ACTIONS(3265), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_api] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3267), + [anon_sym_include] = ACTIONS(3267), + [anon_sym_DEF] = ACTIONS(3267), + [anon_sym_IF] = ACTIONS(3267), + [anon_sym_cdef] = ACTIONS(3267), + [anon_sym_cpdef] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_ctypedef] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_packed] = ACTIONS(3267), + [anon_sym_inline] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_sizeof] = ACTIONS(3267), + [sym_string_start] = ACTIONS(3265), + }, + [1062] = { + [sym_else_clause] = STATE(1498), + [ts_builtin_sym_end] = ACTIONS(3269), + [sym_identifier] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_cimport] = ACTIONS(3271), + [anon_sym_from] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_print] = ACTIONS(3271), + [anon_sym_assert] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_del] = ACTIONS(3271), + [anon_sym_raise] = ACTIONS(3271), + [anon_sym_pass] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_def] = ACTIONS(3271), + [anon_sym_global] = ACTIONS(3271), + [anon_sym_nonlocal] = ACTIONS(3271), + [anon_sym_exec] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3269), + [anon_sym_AT] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_not] = ACTIONS(3271), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_lambda] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3269), + [anon_sym_None] = ACTIONS(3271), + [sym_integer] = ACTIONS(3271), + [sym_float] = ACTIONS(3269), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_api] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3271), + [anon_sym_include] = ACTIONS(3271), + [anon_sym_DEF] = ACTIONS(3271), + [anon_sym_IF] = ACTIONS(3271), + [anon_sym_cdef] = ACTIONS(3271), + [anon_sym_cpdef] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_ctypedef] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_packed] = ACTIONS(3271), + [anon_sym_inline] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_sizeof] = ACTIONS(3271), + [sym_string_start] = ACTIONS(3269), + }, + [1063] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1064] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1065] = { + [ts_builtin_sym_end] = ACTIONS(1619), + [sym_identifier] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_import] = ACTIONS(1617), + [anon_sym_cimport] = ACTIONS(1617), + [anon_sym_from] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_print] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_del] = ACTIONS(1617), + [anon_sym_raise] = ACTIONS(1617), + [anon_sym_pass] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_try] = ACTIONS(1617), + [anon_sym_with] = ACTIONS(1617), + [anon_sym_def] = ACTIONS(1617), + [anon_sym_global] = ACTIONS(1617), + [anon_sym_nonlocal] = ACTIONS(1617), + [anon_sym_exec] = ACTIONS(1617), + [anon_sym_type] = ACTIONS(1617), + [anon_sym_class] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1619), + [anon_sym_AT] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_not] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1619), + [anon_sym_lambda] = ACTIONS(1617), + [anon_sym_yield] = ACTIONS(1617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1619), + [anon_sym_None] = ACTIONS(1617), + [sym_integer] = ACTIONS(1617), + [sym_float] = ACTIONS(1619), + [anon_sym_await] = ACTIONS(1617), + [anon_sym_api] = ACTIONS(1617), + [sym_true] = ACTIONS(1617), + [sym_false] = ACTIONS(1617), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1617), + [anon_sym_include] = ACTIONS(1617), + [anon_sym_DEF] = ACTIONS(1617), + [anon_sym_IF] = ACTIONS(1617), + [anon_sym_cdef] = ACTIONS(1617), + [anon_sym_cpdef] = ACTIONS(1617), + [anon_sym_new] = ACTIONS(1617), + [anon_sym_ctypedef] = ACTIONS(1617), + [anon_sym_public] = ACTIONS(1617), + [anon_sym_packed] = ACTIONS(1617), + [anon_sym_inline] = ACTIONS(1617), + [anon_sym_readonly] = ACTIONS(1617), + [anon_sym_sizeof] = ACTIONS(1617), + [sym_string_start] = ACTIONS(1619), + }, + [1066] = { + [ts_builtin_sym_end] = ACTIONS(1581), + [sym_identifier] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_import] = ACTIONS(1579), + [anon_sym_cimport] = ACTIONS(1579), + [anon_sym_from] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1581), + [anon_sym_print] = ACTIONS(1579), + [anon_sym_assert] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_del] = ACTIONS(1579), + [anon_sym_raise] = ACTIONS(1579), + [anon_sym_pass] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_COLON] = ACTIONS(1581), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_with] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_global] = ACTIONS(1579), + [anon_sym_nonlocal] = ACTIONS(1579), + [anon_sym_exec] = ACTIONS(1579), + [anon_sym_type] = ACTIONS(1579), + [anon_sym_class] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_AT] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_TILDE] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_lambda] = ACTIONS(1579), + [anon_sym_yield] = ACTIONS(1579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1581), + [anon_sym_None] = ACTIONS(1579), + [sym_integer] = ACTIONS(1579), + [sym_float] = ACTIONS(1581), + [anon_sym_await] = ACTIONS(1579), + [anon_sym_api] = ACTIONS(1579), + [sym_true] = ACTIONS(1579), + [sym_false] = ACTIONS(1579), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1579), + [anon_sym_include] = ACTIONS(1579), + [anon_sym_DEF] = ACTIONS(1579), + [anon_sym_IF] = ACTIONS(1579), + [anon_sym_cdef] = ACTIONS(1579), + [anon_sym_cpdef] = ACTIONS(1579), + [anon_sym_new] = ACTIONS(1579), + [anon_sym_ctypedef] = ACTIONS(1579), + [anon_sym_public] = ACTIONS(1579), + [anon_sym_packed] = ACTIONS(1579), + [anon_sym_inline] = ACTIONS(1579), + [anon_sym_readonly] = ACTIONS(1579), + [anon_sym_sizeof] = ACTIONS(1579), + [sym_string_start] = ACTIONS(1581), + }, + [1067] = { + [sym_else_clause] = STATE(1440), + [sym_identifier] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_cimport] = ACTIONS(3279), + [anon_sym_from] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_print] = ACTIONS(3279), + [anon_sym_assert] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_del] = ACTIONS(3279), + [anon_sym_raise] = ACTIONS(3279), + [anon_sym_pass] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_with] = ACTIONS(3279), + [anon_sym_def] = ACTIONS(3279), + [anon_sym_global] = ACTIONS(3279), + [anon_sym_nonlocal] = ACTIONS(3279), + [anon_sym_exec] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_not] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_lambda] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3281), + [anon_sym_None] = ACTIONS(3279), + [sym_integer] = ACTIONS(3279), + [sym_float] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_api] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3279), + [anon_sym_include] = ACTIONS(3279), + [anon_sym_DEF] = ACTIONS(3279), + [anon_sym_IF] = ACTIONS(3279), + [anon_sym_cdef] = ACTIONS(3279), + [anon_sym_cpdef] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_ctypedef] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_packed] = ACTIONS(3279), + [anon_sym_inline] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_sizeof] = ACTIONS(3279), + [sym__dedent] = ACTIONS(3281), + [sym_string_start] = ACTIONS(3281), + }, + [1068] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1069] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1070] = { + [sym_identifier] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_cimport] = ACTIONS(3287), + [anon_sym_from] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_print] = ACTIONS(3287), + [anon_sym_assert] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_del] = ACTIONS(3287), + [anon_sym_raise] = ACTIONS(3287), + [anon_sym_pass] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_match] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3287), + [anon_sym_def] = ACTIONS(3287), + [anon_sym_global] = ACTIONS(3287), + [anon_sym_nonlocal] = ACTIONS(3287), + [anon_sym_exec] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_not] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_lambda] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3289), + [anon_sym_None] = ACTIONS(3287), + [sym_integer] = ACTIONS(3287), + [sym_float] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_api] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3287), + [anon_sym_include] = ACTIONS(3287), + [anon_sym_DEF] = ACTIONS(3287), + [anon_sym_IF] = ACTIONS(3287), + [anon_sym_ELIF] = ACTIONS(3287), + [anon_sym_ELSE] = ACTIONS(3287), + [anon_sym_cdef] = ACTIONS(3287), + [anon_sym_cpdef] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_ctypedef] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_packed] = ACTIONS(3287), + [anon_sym_inline] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_sizeof] = ACTIONS(3287), + [sym__dedent] = ACTIONS(3289), + [sym_string_start] = ACTIONS(3289), + }, + [1071] = { + [sym_else_clause] = STATE(1536), + [ts_builtin_sym_end] = ACTIONS(3291), + [sym_identifier] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_cimport] = ACTIONS(3293), + [anon_sym_from] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_STAR] = ACTIONS(3291), + [anon_sym_print] = ACTIONS(3293), + [anon_sym_assert] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_del] = ACTIONS(3293), + [anon_sym_raise] = ACTIONS(3293), + [anon_sym_pass] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_def] = ACTIONS(3293), + [anon_sym_global] = ACTIONS(3293), + [anon_sym_nonlocal] = ACTIONS(3293), + [anon_sym_exec] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_AT] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_not] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_lambda] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3291), + [anon_sym_None] = ACTIONS(3293), + [sym_integer] = ACTIONS(3293), + [sym_float] = ACTIONS(3291), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_api] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3293), + [anon_sym_include] = ACTIONS(3293), + [anon_sym_DEF] = ACTIONS(3293), + [anon_sym_IF] = ACTIONS(3293), + [anon_sym_cdef] = ACTIONS(3293), + [anon_sym_cpdef] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_ctypedef] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_packed] = ACTIONS(3293), + [anon_sym_inline] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_sizeof] = ACTIONS(3293), + [sym_string_start] = ACTIONS(3291), + }, + [1072] = { + [sym_else_clause] = STATE(1508), + [ts_builtin_sym_end] = ACTIONS(3295), + [sym_identifier] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3297), + [anon_sym_cimport] = ACTIONS(3297), + [anon_sym_from] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_print] = ACTIONS(3297), + [anon_sym_assert] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_del] = ACTIONS(3297), + [anon_sym_raise] = ACTIONS(3297), + [anon_sym_pass] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3297), + [anon_sym_def] = ACTIONS(3297), + [anon_sym_global] = ACTIONS(3297), + [anon_sym_nonlocal] = ACTIONS(3297), + [anon_sym_exec] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_not] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_lambda] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3295), + [anon_sym_None] = ACTIONS(3297), + [sym_integer] = ACTIONS(3297), + [sym_float] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_api] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3297), + [anon_sym_include] = ACTIONS(3297), + [anon_sym_DEF] = ACTIONS(3297), + [anon_sym_IF] = ACTIONS(3297), + [anon_sym_cdef] = ACTIONS(3297), + [anon_sym_cpdef] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_ctypedef] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_packed] = ACTIONS(3297), + [anon_sym_inline] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_sizeof] = ACTIONS(3297), + [sym_string_start] = ACTIONS(3295), + }, + [1073] = { + [sym_else_clause] = STATE(1605), + [ts_builtin_sym_end] = ACTIONS(3299), + [sym_identifier] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_cimport] = ACTIONS(3301), + [anon_sym_from] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3299), + [anon_sym_print] = ACTIONS(3301), + [anon_sym_assert] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_del] = ACTIONS(3301), + [anon_sym_raise] = ACTIONS(3301), + [anon_sym_pass] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_def] = ACTIONS(3301), + [anon_sym_global] = ACTIONS(3301), + [anon_sym_nonlocal] = ACTIONS(3301), + [anon_sym_exec] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_not] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_lambda] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3299), + [anon_sym_None] = ACTIONS(3301), + [sym_integer] = ACTIONS(3301), + [sym_float] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_api] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3301), + [anon_sym_include] = ACTIONS(3301), + [anon_sym_DEF] = ACTIONS(3301), + [anon_sym_IF] = ACTIONS(3301), + [anon_sym_cdef] = ACTIONS(3301), + [anon_sym_cpdef] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_ctypedef] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_packed] = ACTIONS(3301), + [anon_sym_inline] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_sizeof] = ACTIONS(3301), + [sym_string_start] = ACTIONS(3299), }, [1074] = { - [ts_builtin_sym_end] = ACTIONS(3215), - [sym_identifier] = ACTIONS(3213), - [anon_sym_import] = ACTIONS(3213), - [anon_sym_cimport] = ACTIONS(3213), - [anon_sym_from] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_print] = ACTIONS(3213), - [anon_sym_assert] = ACTIONS(3213), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_del] = ACTIONS(3213), - [anon_sym_raise] = ACTIONS(3213), - [anon_sym_pass] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_else] = ACTIONS(3213), - [anon_sym_match] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_while] = ACTIONS(3213), - [anon_sym_try] = ACTIONS(3213), - [anon_sym_except] = ACTIONS(3213), - [anon_sym_finally] = ACTIONS(3213), - [anon_sym_with] = ACTIONS(3213), - [anon_sym_def] = ACTIONS(3213), - [anon_sym_global] = ACTIONS(3213), - [anon_sym_nonlocal] = ACTIONS(3213), - [anon_sym_exec] = ACTIONS(3213), - [anon_sym_type] = ACTIONS(3213), - [anon_sym_class] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_AT] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_not] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_lambda] = ACTIONS(3213), - [anon_sym_yield] = ACTIONS(3213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3215), - [anon_sym_None] = ACTIONS(3213), - [sym_integer] = ACTIONS(3213), - [sym_float] = ACTIONS(3215), - [anon_sym_await] = ACTIONS(3213), - [anon_sym_api] = ACTIONS(3213), - [sym_true] = ACTIONS(3213), - [sym_false] = ACTIONS(3213), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(3213), - [anon_sym_include] = ACTIONS(3213), - [anon_sym_DEF] = ACTIONS(3213), - [anon_sym_cdef] = ACTIONS(3213), - [anon_sym_cpdef] = ACTIONS(3213), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_ctypedef] = ACTIONS(3213), - [anon_sym_public] = ACTIONS(3213), - [anon_sym_packed] = ACTIONS(3213), - [anon_sym_inline] = ACTIONS(3213), - [anon_sym_readonly] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3213), - [sym_string_start] = ACTIONS(3215), + [sym_else_clause] = STATE(1572), + [ts_builtin_sym_end] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_cimport] = ACTIONS(3305), + [anon_sym_from] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_print] = ACTIONS(3305), + [anon_sym_assert] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_del] = ACTIONS(3305), + [anon_sym_raise] = ACTIONS(3305), + [anon_sym_pass] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_def] = ACTIONS(3305), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_nonlocal] = ACTIONS(3305), + [anon_sym_exec] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_not] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_lambda] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3303), + [anon_sym_None] = ACTIONS(3305), + [sym_integer] = ACTIONS(3305), + [sym_float] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_api] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3305), + [anon_sym_include] = ACTIONS(3305), + [anon_sym_DEF] = ACTIONS(3305), + [anon_sym_IF] = ACTIONS(3305), + [anon_sym_cdef] = ACTIONS(3305), + [anon_sym_cpdef] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_ctypedef] = ACTIONS(3305), + [anon_sym_public] = ACTIONS(3305), + [anon_sym_packed] = ACTIONS(3305), + [anon_sym_inline] = ACTIONS(3305), + [anon_sym_readonly] = ACTIONS(3305), + [anon_sym_sizeof] = ACTIONS(3305), + [sym_string_start] = ACTIONS(3303), }, [1075] = { - [sym_named_expression] = STATE(3492), - [sym__named_expression_lhs] = STATE(5657), - [sym_expression_list] = STATE(5453), - [sym_list_splat_pattern] = STATE(2166), - [sym_as_pattern] = STATE(3492), - [sym_expression] = STATE(3971), - [sym_primary_expression] = STATE(2091), - [sym_not_operator] = STATE(3492), - [sym_boolean_operator] = STATE(3492), - [sym_binary_operator] = STATE(2194), - [sym_unary_operator] = STATE(2194), - [sym_comparison_operator] = STATE(3492), - [sym_lambda] = STATE(3492), - [sym_attribute] = STATE(2194), - [sym_subscript] = STATE(2194), - [sym_ellipsis] = STATE(2194), - [sym_call] = STATE(2194), - [sym_list] = STATE(2194), - [sym_set] = STATE(2194), - [sym_tuple] = STATE(2194), - [sym_dictionary] = STATE(2194), - [sym_list_comprehension] = STATE(2194), - [sym_dictionary_comprehension] = STATE(2194), - [sym_set_comprehension] = STATE(2194), - [sym_generator_expression] = STATE(2194), - [sym_parenthesized_expression] = STATE(2194), - [sym_conditional_expression] = STATE(3492), - [sym_concatenated_string] = STATE(2194), - [sym_string] = STATE(2100), - [sym_none] = STATE(2194), - [sym_await] = STATE(2194), - [sym_new_expression] = STATE(3492), - [sym_sizeof_expression] = STATE(2194), - [sym_cast_expression] = STATE(2194), - [sym_identifier] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_print] = ACTIONS(824), - [anon_sym_match] = ACTIONS(824), - [anon_sym_async] = ACTIONS(824), - [anon_sym_exec] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(1319), + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1076] = { + [sym_identifier] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3309), + [anon_sym_cimport] = ACTIONS(3309), + [anon_sym_from] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_print] = ACTIONS(3309), + [anon_sym_assert] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_del] = ACTIONS(3309), + [anon_sym_raise] = ACTIONS(3309), + [anon_sym_pass] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_with] = ACTIONS(3309), + [anon_sym_def] = ACTIONS(3309), + [anon_sym_global] = ACTIONS(3309), + [anon_sym_nonlocal] = ACTIONS(3309), + [anon_sym_exec] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_not] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_lambda] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3311), + [anon_sym_None] = ACTIONS(3309), + [sym_integer] = ACTIONS(3309), + [sym_float] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_api] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3309), + [anon_sym_include] = ACTIONS(3309), + [anon_sym_DEF] = ACTIONS(3309), + [anon_sym_IF] = ACTIONS(3309), + [anon_sym_ELIF] = ACTIONS(3309), + [anon_sym_ELSE] = ACTIONS(3309), + [anon_sym_cdef] = ACTIONS(3309), + [anon_sym_cpdef] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_ctypedef] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_packed] = ACTIONS(3309), + [anon_sym_inline] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_sizeof] = ACTIONS(3309), + [sym__dedent] = ACTIONS(3311), + [sym_string_start] = ACTIONS(3311), + }, + [1077] = { + [sym_finally_clause] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(3313), + [sym_identifier] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_cimport] = ACTIONS(3315), + [anon_sym_from] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3313), + [anon_sym_print] = ACTIONS(3315), + [anon_sym_assert] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_del] = ACTIONS(3315), + [anon_sym_raise] = ACTIONS(3315), + [anon_sym_pass] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_match] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_finally] = ACTIONS(2711), + [anon_sym_with] = ACTIONS(3315), + [anon_sym_def] = ACTIONS(3315), + [anon_sym_global] = ACTIONS(3315), + [anon_sym_nonlocal] = ACTIONS(3315), + [anon_sym_exec] = ACTIONS(3315), + [anon_sym_type] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3313), + [anon_sym_AT] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_PLUS] = ACTIONS(3313), + [anon_sym_not] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_LT] = ACTIONS(3313), + [anon_sym_lambda] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3313), + [anon_sym_None] = ACTIONS(3315), + [sym_integer] = ACTIONS(3315), + [sym_float] = ACTIONS(3313), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_api] = ACTIONS(3315), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3315), + [anon_sym_include] = ACTIONS(3315), + [anon_sym_DEF] = ACTIONS(3315), + [anon_sym_IF] = ACTIONS(3315), + [anon_sym_cdef] = ACTIONS(3315), + [anon_sym_cpdef] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_ctypedef] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_packed] = ACTIONS(3315), + [anon_sym_inline] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_sizeof] = ACTIONS(3315), + [sym_string_start] = ACTIONS(3313), + }, + [1078] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1079] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1080] = { + [sym_else_clause] = STATE(1577), + [sym_identifier] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_cimport] = ACTIONS(3267), + [anon_sym_from] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_print] = ACTIONS(3267), + [anon_sym_assert] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_del] = ACTIONS(3267), + [anon_sym_raise] = ACTIONS(3267), + [anon_sym_pass] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_def] = ACTIONS(3267), + [anon_sym_global] = ACTIONS(3267), + [anon_sym_nonlocal] = ACTIONS(3267), + [anon_sym_exec] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_not] = ACTIONS(3267), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_lambda] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3265), + [anon_sym_None] = ACTIONS(3267), + [sym_integer] = ACTIONS(3267), + [sym_float] = ACTIONS(3265), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_api] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3267), + [anon_sym_include] = ACTIONS(3267), + [anon_sym_DEF] = ACTIONS(3267), + [anon_sym_IF] = ACTIONS(3267), + [anon_sym_cdef] = ACTIONS(3267), + [anon_sym_cpdef] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_ctypedef] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_packed] = ACTIONS(3267), + [anon_sym_inline] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_sizeof] = ACTIONS(3267), + [sym__dedent] = ACTIONS(3265), + [sym_string_start] = ACTIONS(3265), + }, + [1081] = { + [sym_else_clause] = STATE(1584), + [sym_identifier] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_cimport] = ACTIONS(3301), + [anon_sym_from] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3299), + [anon_sym_print] = ACTIONS(3301), + [anon_sym_assert] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_del] = ACTIONS(3301), + [anon_sym_raise] = ACTIONS(3301), + [anon_sym_pass] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_def] = ACTIONS(3301), + [anon_sym_global] = ACTIONS(3301), + [anon_sym_nonlocal] = ACTIONS(3301), + [anon_sym_exec] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_not] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_lambda] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3299), + [anon_sym_None] = ACTIONS(3301), + [sym_integer] = ACTIONS(3301), + [sym_float] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_api] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3301), + [anon_sym_include] = ACTIONS(3301), + [anon_sym_DEF] = ACTIONS(3301), + [anon_sym_IF] = ACTIONS(3301), + [anon_sym_cdef] = ACTIONS(3301), + [anon_sym_cpdef] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_ctypedef] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_packed] = ACTIONS(3301), + [anon_sym_inline] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_sizeof] = ACTIONS(3301), + [sym__dedent] = ACTIONS(3299), + [sym_string_start] = ACTIONS(3299), + }, + [1082] = { + [ts_builtin_sym_end] = ACTIONS(1585), + [sym_identifier] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_import] = ACTIONS(1583), + [anon_sym_cimport] = ACTIONS(1583), + [anon_sym_from] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_print] = ACTIONS(1583), + [anon_sym_assert] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_del] = ACTIONS(1583), + [anon_sym_raise] = ACTIONS(1583), + [anon_sym_pass] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_COLON] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1583), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(1583), + [anon_sym_with] = ACTIONS(1583), + [anon_sym_def] = ACTIONS(1583), + [anon_sym_global] = ACTIONS(1583), + [anon_sym_nonlocal] = ACTIONS(1583), + [anon_sym_exec] = ACTIONS(1583), + [anon_sym_type] = ACTIONS(1583), + [anon_sym_class] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym_AT] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_not] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_TILDE] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_lambda] = ACTIONS(1583), + [anon_sym_yield] = ACTIONS(1583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1585), + [anon_sym_None] = ACTIONS(1583), + [sym_integer] = ACTIONS(1583), + [sym_float] = ACTIONS(1585), + [anon_sym_await] = ACTIONS(1583), + [anon_sym_api] = ACTIONS(1583), + [sym_true] = ACTIONS(1583), + [sym_false] = ACTIONS(1583), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1583), + [anon_sym_include] = ACTIONS(1583), + [anon_sym_DEF] = ACTIONS(1583), + [anon_sym_IF] = ACTIONS(1583), + [anon_sym_cdef] = ACTIONS(1583), + [anon_sym_cpdef] = ACTIONS(1583), + [anon_sym_new] = ACTIONS(1583), + [anon_sym_ctypedef] = ACTIONS(1583), + [anon_sym_public] = ACTIONS(1583), + [anon_sym_packed] = ACTIONS(1583), + [anon_sym_inline] = ACTIONS(1583), + [anon_sym_readonly] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1583), + [sym_string_start] = ACTIONS(1585), + }, + [1083] = { + [ts_builtin_sym_end] = ACTIONS(1601), + [sym_identifier] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(1599), + [anon_sym_cimport] = ACTIONS(1599), + [anon_sym_from] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1601), + [anon_sym_print] = ACTIONS(1599), + [anon_sym_assert] = ACTIONS(1599), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_del] = ACTIONS(1599), + [anon_sym_raise] = ACTIONS(1599), + [anon_sym_pass] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(3321), + [anon_sym_match] = ACTIONS(1599), + [anon_sym_async] = ACTIONS(1599), + [anon_sym_for] = ACTIONS(1599), + [anon_sym_while] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1599), + [anon_sym_with] = ACTIONS(1599), + [anon_sym_def] = ACTIONS(1599), + [anon_sym_global] = ACTIONS(1599), + [anon_sym_nonlocal] = ACTIONS(1599), + [anon_sym_exec] = ACTIONS(1599), + [anon_sym_type] = ACTIONS(1599), + [anon_sym_class] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_AT] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_not] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_TILDE] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1601), + [anon_sym_lambda] = ACTIONS(1599), + [anon_sym_yield] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1601), + [anon_sym_None] = ACTIONS(1599), + [sym_integer] = ACTIONS(1599), + [sym_float] = ACTIONS(1601), + [anon_sym_await] = ACTIONS(1599), + [anon_sym_api] = ACTIONS(1599), + [sym_true] = ACTIONS(1599), + [sym_false] = ACTIONS(1599), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1599), + [anon_sym_include] = ACTIONS(1599), + [anon_sym_DEF] = ACTIONS(1599), + [anon_sym_IF] = ACTIONS(1599), + [anon_sym_cdef] = ACTIONS(1599), + [anon_sym_cpdef] = ACTIONS(1599), + [anon_sym_new] = ACTIONS(1599), + [anon_sym_ctypedef] = ACTIONS(1599), + [anon_sym_public] = ACTIONS(1599), + [anon_sym_packed] = ACTIONS(1599), + [anon_sym_inline] = ACTIONS(1599), + [anon_sym_readonly] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1599), + [sym_string_start] = ACTIONS(1601), + }, + [1084] = { + [sym_else_clause] = STATE(1586), + [sym_identifier] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_cimport] = ACTIONS(3305), + [anon_sym_from] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_print] = ACTIONS(3305), + [anon_sym_assert] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_del] = ACTIONS(3305), + [anon_sym_raise] = ACTIONS(3305), + [anon_sym_pass] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_def] = ACTIONS(3305), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_nonlocal] = ACTIONS(3305), + [anon_sym_exec] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_not] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_lambda] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3303), + [anon_sym_None] = ACTIONS(3305), + [sym_integer] = ACTIONS(3305), + [sym_float] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_api] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3305), + [anon_sym_include] = ACTIONS(3305), + [anon_sym_DEF] = ACTIONS(3305), + [anon_sym_IF] = ACTIONS(3305), + [anon_sym_cdef] = ACTIONS(3305), + [anon_sym_cpdef] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_ctypedef] = ACTIONS(3305), + [anon_sym_public] = ACTIONS(3305), + [anon_sym_packed] = ACTIONS(3305), + [anon_sym_inline] = ACTIONS(3305), + [anon_sym_readonly] = ACTIONS(3305), + [anon_sym_sizeof] = ACTIONS(3305), + [sym__dedent] = ACTIONS(3303), + [sym_string_start] = ACTIONS(3303), + }, + [1085] = { + [sym_else_clause] = STATE(1509), + [ts_builtin_sym_end] = ACTIONS(3323), + [sym_identifier] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3325), + [anon_sym_cimport] = ACTIONS(3325), + [anon_sym_from] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(3323), + [anon_sym_print] = ACTIONS(3325), + [anon_sym_assert] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_del] = ACTIONS(3325), + [anon_sym_raise] = ACTIONS(3325), + [anon_sym_pass] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3325), + [anon_sym_async] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3325), + [anon_sym_with] = ACTIONS(3325), + [anon_sym_def] = ACTIONS(3325), + [anon_sym_global] = ACTIONS(3325), + [anon_sym_nonlocal] = ACTIONS(3325), + [anon_sym_exec] = ACTIONS(3325), + [anon_sym_type] = ACTIONS(3325), + [anon_sym_class] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_not] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_lambda] = ACTIONS(3325), + [anon_sym_yield] = ACTIONS(3325), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3323), + [anon_sym_None] = ACTIONS(3325), + [sym_integer] = ACTIONS(3325), + [sym_float] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3325), + [anon_sym_api] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3325), + [anon_sym_include] = ACTIONS(3325), + [anon_sym_DEF] = ACTIONS(3325), + [anon_sym_IF] = ACTIONS(3325), + [anon_sym_cdef] = ACTIONS(3325), + [anon_sym_cpdef] = ACTIONS(3325), + [anon_sym_new] = ACTIONS(3325), + [anon_sym_ctypedef] = ACTIONS(3325), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_packed] = ACTIONS(3325), + [anon_sym_inline] = ACTIONS(3325), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_sizeof] = ACTIONS(3325), + [sym_string_start] = ACTIONS(3323), + }, + [1086] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4183), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_COMMA] = ACTIONS(3327), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3329), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1087] = { + [sym_finally_clause] = STATE(1601), + [sym_identifier] = ACTIONS(3331), + [anon_sym_import] = ACTIONS(3331), + [anon_sym_cimport] = ACTIONS(3331), + [anon_sym_from] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_print] = ACTIONS(3331), + [anon_sym_assert] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_del] = ACTIONS(3331), + [anon_sym_raise] = ACTIONS(3331), + [anon_sym_pass] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_match] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_finally] = ACTIONS(2743), + [anon_sym_with] = ACTIONS(3331), + [anon_sym_def] = ACTIONS(3331), + [anon_sym_global] = ACTIONS(3331), + [anon_sym_nonlocal] = ACTIONS(3331), + [anon_sym_exec] = ACTIONS(3331), + [anon_sym_type] = ACTIONS(3331), + [anon_sym_class] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_lambda] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), + [anon_sym_None] = ACTIONS(3331), + [sym_integer] = ACTIONS(3331), + [sym_float] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3331), + [anon_sym_api] = ACTIONS(3331), + [sym_true] = ACTIONS(3331), + [sym_false] = ACTIONS(3331), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3331), + [anon_sym_include] = ACTIONS(3331), + [anon_sym_DEF] = ACTIONS(3331), + [anon_sym_IF] = ACTIONS(3331), + [anon_sym_cdef] = ACTIONS(3331), + [anon_sym_cpdef] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3331), + [anon_sym_ctypedef] = ACTIONS(3331), + [anon_sym_public] = ACTIONS(3331), + [anon_sym_packed] = ACTIONS(3331), + [anon_sym_inline] = ACTIONS(3331), + [anon_sym_readonly] = ACTIONS(3331), + [anon_sym_sizeof] = ACTIONS(3331), + [sym__dedent] = ACTIONS(3333), + [sym_string_start] = ACTIONS(3333), + }, + [1088] = { + [ts_builtin_sym_end] = ACTIONS(1566), + [sym_identifier] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_import] = ACTIONS(1564), + [anon_sym_cimport] = ACTIONS(1564), + [anon_sym_from] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_print] = ACTIONS(1564), + [anon_sym_assert] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_del] = ACTIONS(1564), + [anon_sym_raise] = ACTIONS(1564), + [anon_sym_pass] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_COLON] = ACTIONS(3335), + [anon_sym_match] = ACTIONS(1564), + [anon_sym_async] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_with] = ACTIONS(1564), + [anon_sym_def] = ACTIONS(1564), + [anon_sym_global] = ACTIONS(1564), + [anon_sym_nonlocal] = ACTIONS(1564), + [anon_sym_exec] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_class] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_AT] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_not] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_lambda] = ACTIONS(1564), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1566), + [anon_sym_None] = ACTIONS(1564), + [sym_integer] = ACTIONS(1564), + [sym_float] = ACTIONS(1566), + [anon_sym_await] = ACTIONS(1564), + [anon_sym_api] = ACTIONS(1564), + [sym_true] = ACTIONS(1564), + [sym_false] = ACTIONS(1564), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1564), + [anon_sym_include] = ACTIONS(1564), + [anon_sym_DEF] = ACTIONS(1564), + [anon_sym_IF] = ACTIONS(1564), + [anon_sym_cdef] = ACTIONS(1564), + [anon_sym_cpdef] = ACTIONS(1564), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_ctypedef] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_packed] = ACTIONS(1564), + [anon_sym_inline] = ACTIONS(1564), + [anon_sym_readonly] = ACTIONS(1564), + [anon_sym_sizeof] = ACTIONS(1564), + [sym_string_start] = ACTIONS(1566), + }, + [1089] = { + [ts_builtin_sym_end] = ACTIONS(1607), + [sym_identifier] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_import] = ACTIONS(1605), + [anon_sym_cimport] = ACTIONS(1605), + [anon_sym_from] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_print] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_del] = ACTIONS(1605), + [anon_sym_raise] = ACTIONS(1605), + [anon_sym_pass] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_COLON] = ACTIONS(3337), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_async] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_with] = ACTIONS(1605), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_global] = ACTIONS(1605), + [anon_sym_nonlocal] = ACTIONS(1605), + [anon_sym_exec] = ACTIONS(1605), + [anon_sym_type] = ACTIONS(1605), + [anon_sym_class] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_AT] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_not] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_lambda] = ACTIONS(1605), + [anon_sym_yield] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1607), + [anon_sym_None] = ACTIONS(1605), + [sym_integer] = ACTIONS(1605), + [sym_float] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_api] = ACTIONS(1605), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1605), + [anon_sym_include] = ACTIONS(1605), + [anon_sym_DEF] = ACTIONS(1605), + [anon_sym_IF] = ACTIONS(1605), + [anon_sym_cdef] = ACTIONS(1605), + [anon_sym_cpdef] = ACTIONS(1605), + [anon_sym_new] = ACTIONS(1605), + [anon_sym_ctypedef] = ACTIONS(1605), + [anon_sym_public] = ACTIONS(1605), + [anon_sym_packed] = ACTIONS(1605), + [anon_sym_inline] = ACTIONS(1605), + [anon_sym_readonly] = ACTIONS(1605), + [anon_sym_sizeof] = ACTIONS(1605), + [sym_string_start] = ACTIONS(1607), + }, + [1090] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1091] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4127), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_COMMA] = ACTIONS(3341), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3343), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1092] = { + [sym_identifier] = ACTIONS(3345), + [anon_sym_import] = ACTIONS(3345), + [anon_sym_cimport] = ACTIONS(3345), + [anon_sym_from] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_STAR] = ACTIONS(3347), + [anon_sym_print] = ACTIONS(3345), + [anon_sym_assert] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3345), + [anon_sym_del] = ACTIONS(3345), + [anon_sym_raise] = ACTIONS(3345), + [anon_sym_pass] = ACTIONS(3345), + [anon_sym_break] = ACTIONS(3345), + [anon_sym_continue] = ACTIONS(3345), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_elif] = ACTIONS(3345), + [anon_sym_else] = ACTIONS(3345), + [anon_sym_match] = ACTIONS(3345), + [anon_sym_async] = ACTIONS(3345), + [anon_sym_for] = ACTIONS(3345), + [anon_sym_while] = ACTIONS(3345), + [anon_sym_try] = ACTIONS(3345), + [anon_sym_with] = ACTIONS(3345), + [anon_sym_def] = ACTIONS(3345), + [anon_sym_global] = ACTIONS(3345), + [anon_sym_nonlocal] = ACTIONS(3345), + [anon_sym_exec] = ACTIONS(3345), + [anon_sym_type] = ACTIONS(3345), + [anon_sym_class] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_not] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_lambda] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3347), + [anon_sym_None] = ACTIONS(3345), + [sym_integer] = ACTIONS(3345), + [sym_float] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3345), + [anon_sym_api] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3345), + [anon_sym_include] = ACTIONS(3345), + [anon_sym_DEF] = ACTIONS(3345), + [anon_sym_IF] = ACTIONS(3345), + [anon_sym_cdef] = ACTIONS(3345), + [anon_sym_cpdef] = ACTIONS(3345), + [anon_sym_new] = ACTIONS(3345), + [anon_sym_ctypedef] = ACTIONS(3345), + [anon_sym_public] = ACTIONS(3345), + [anon_sym_packed] = ACTIONS(3345), + [anon_sym_inline] = ACTIONS(3345), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_sizeof] = ACTIONS(3345), + [sym__dedent] = ACTIONS(3347), + [sym_string_start] = ACTIONS(3347), + }, + [1093] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1094] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1095] = { + [ts_builtin_sym_end] = ACTIONS(1572), + [sym_identifier] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_import] = ACTIONS(1570), + [anon_sym_cimport] = ACTIONS(1570), + [anon_sym_from] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_print] = ACTIONS(1570), + [anon_sym_assert] = ACTIONS(1570), + [anon_sym_return] = ACTIONS(1570), + [anon_sym_del] = ACTIONS(1570), + [anon_sym_raise] = ACTIONS(1570), + [anon_sym_pass] = ACTIONS(1570), + [anon_sym_break] = ACTIONS(1570), + [anon_sym_continue] = ACTIONS(1570), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_COLON] = ACTIONS(3353), + [anon_sym_match] = ACTIONS(1570), + [anon_sym_async] = ACTIONS(1570), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1570), + [anon_sym_try] = ACTIONS(1570), + [anon_sym_with] = ACTIONS(1570), + [anon_sym_def] = ACTIONS(1570), + [anon_sym_global] = ACTIONS(1570), + [anon_sym_nonlocal] = ACTIONS(1570), + [anon_sym_exec] = ACTIONS(1570), + [anon_sym_type] = ACTIONS(1570), + [anon_sym_class] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_AT] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_not] = ACTIONS(1570), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_lambda] = ACTIONS(1570), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1572), + [anon_sym_None] = ACTIONS(1570), + [sym_integer] = ACTIONS(1570), + [sym_float] = ACTIONS(1572), + [anon_sym_await] = ACTIONS(1570), + [anon_sym_api] = ACTIONS(1570), + [sym_true] = ACTIONS(1570), + [sym_false] = ACTIONS(1570), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1570), + [anon_sym_include] = ACTIONS(1570), + [anon_sym_DEF] = ACTIONS(1570), + [anon_sym_IF] = ACTIONS(1570), + [anon_sym_cdef] = ACTIONS(1570), + [anon_sym_cpdef] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1570), + [anon_sym_ctypedef] = ACTIONS(1570), + [anon_sym_public] = ACTIONS(1570), + [anon_sym_packed] = ACTIONS(1570), + [anon_sym_inline] = ACTIONS(1570), + [anon_sym_readonly] = ACTIONS(1570), + [anon_sym_sizeof] = ACTIONS(1570), + [sym_string_start] = ACTIONS(1572), + }, + [1096] = { + [sym_else_clause] = STATE(1442), + [sym_identifier] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_cimport] = ACTIONS(3271), + [anon_sym_from] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_print] = ACTIONS(3271), + [anon_sym_assert] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_del] = ACTIONS(3271), + [anon_sym_raise] = ACTIONS(3271), + [anon_sym_pass] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_def] = ACTIONS(3271), + [anon_sym_global] = ACTIONS(3271), + [anon_sym_nonlocal] = ACTIONS(3271), + [anon_sym_exec] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3269), + [anon_sym_AT] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_not] = ACTIONS(3271), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_lambda] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3269), + [anon_sym_None] = ACTIONS(3271), + [sym_integer] = ACTIONS(3271), + [sym_float] = ACTIONS(3269), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_api] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3271), + [anon_sym_include] = ACTIONS(3271), + [anon_sym_DEF] = ACTIONS(3271), + [anon_sym_IF] = ACTIONS(3271), + [anon_sym_cdef] = ACTIONS(3271), + [anon_sym_cpdef] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_ctypedef] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_packed] = ACTIONS(3271), + [anon_sym_inline] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_sizeof] = ACTIONS(3271), + [sym__dedent] = ACTIONS(3269), + [sym_string_start] = ACTIONS(3269), + }, + [1097] = { + [ts_builtin_sym_end] = ACTIONS(3355), + [sym_identifier] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_cimport] = ACTIONS(3357), + [anon_sym_from] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_print] = ACTIONS(3357), + [anon_sym_assert] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_del] = ACTIONS(3357), + [anon_sym_raise] = ACTIONS(3357), + [anon_sym_pass] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_elif] = ACTIONS(3357), + [anon_sym_else] = ACTIONS(3357), + [anon_sym_match] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_def] = ACTIONS(3357), + [anon_sym_global] = ACTIONS(3357), + [anon_sym_nonlocal] = ACTIONS(3357), + [anon_sym_exec] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_AT] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_not] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_lambda] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3355), + [anon_sym_None] = ACTIONS(3357), + [sym_integer] = ACTIONS(3357), + [sym_float] = ACTIONS(3355), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_api] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3357), + [anon_sym_include] = ACTIONS(3357), + [anon_sym_DEF] = ACTIONS(3357), + [anon_sym_IF] = ACTIONS(3357), + [anon_sym_cdef] = ACTIONS(3357), + [anon_sym_cpdef] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_ctypedef] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_packed] = ACTIONS(3357), + [anon_sym_inline] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_sizeof] = ACTIONS(3357), + [sym_string_start] = ACTIONS(3355), + }, + [1098] = { + [ts_builtin_sym_end] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3253), + [anon_sym_import] = ACTIONS(3253), + [anon_sym_cimport] = ACTIONS(3253), + [anon_sym_from] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_print] = ACTIONS(3253), + [anon_sym_assert] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3253), + [anon_sym_del] = ACTIONS(3253), + [anon_sym_raise] = ACTIONS(3253), + [anon_sym_pass] = ACTIONS(3253), + [anon_sym_break] = ACTIONS(3253), + [anon_sym_continue] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_match] = ACTIONS(3253), + [anon_sym_async] = ACTIONS(3253), + [anon_sym_for] = ACTIONS(3253), + [anon_sym_while] = ACTIONS(3253), + [anon_sym_try] = ACTIONS(3253), + [anon_sym_with] = ACTIONS(3253), + [anon_sym_def] = ACTIONS(3253), + [anon_sym_global] = ACTIONS(3253), + [anon_sym_nonlocal] = ACTIONS(3253), + [anon_sym_exec] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3253), + [anon_sym_class] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_not] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_lambda] = ACTIONS(3253), + [anon_sym_yield] = ACTIONS(3253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), + [anon_sym_None] = ACTIONS(3253), + [sym_integer] = ACTIONS(3253), + [sym_float] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3253), + [anon_sym_api] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3253), + [anon_sym_include] = ACTIONS(3253), + [anon_sym_DEF] = ACTIONS(3253), + [anon_sym_IF] = ACTIONS(3253), + [anon_sym_ELIF] = ACTIONS(3253), + [anon_sym_ELSE] = ACTIONS(3253), + [anon_sym_cdef] = ACTIONS(3253), + [anon_sym_cpdef] = ACTIONS(3253), + [anon_sym_new] = ACTIONS(3253), + [anon_sym_ctypedef] = ACTIONS(3253), + [anon_sym_public] = ACTIONS(3253), + [anon_sym_packed] = ACTIONS(3253), + [anon_sym_inline] = ACTIONS(3253), + [anon_sym_readonly] = ACTIONS(3253), + [anon_sym_sizeof] = ACTIONS(3253), + [sym_string_start] = ACTIONS(3255), + }, + [1099] = { + [sym_else_clause] = STATE(1451), + [ts_builtin_sym_end] = ACTIONS(3359), + [sym_identifier] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_cimport] = ACTIONS(3361), + [anon_sym_from] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(3359), + [anon_sym_print] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_del] = ACTIONS(3361), + [anon_sym_raise] = ACTIONS(3361), + [anon_sym_pass] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_def] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_nonlocal] = ACTIONS(3361), + [anon_sym_exec] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_not] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_lambda] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3359), + [anon_sym_None] = ACTIONS(3361), + [sym_integer] = ACTIONS(3361), + [sym_float] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_api] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3361), + [anon_sym_include] = ACTIONS(3361), + [anon_sym_DEF] = ACTIONS(3361), + [anon_sym_IF] = ACTIONS(3361), + [anon_sym_cdef] = ACTIONS(3361), + [anon_sym_cpdef] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_ctypedef] = ACTIONS(3361), + [anon_sym_public] = ACTIONS(3361), + [anon_sym_packed] = ACTIONS(3361), + [anon_sym_inline] = ACTIONS(3361), + [anon_sym_readonly] = ACTIONS(3361), + [anon_sym_sizeof] = ACTIONS(3361), + [sym_string_start] = ACTIONS(3359), + }, + [1100] = { + [sym_else_clause] = STATE(1468), + [ts_builtin_sym_end] = ACTIONS(3363), + [sym_identifier] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3365), + [anon_sym_cimport] = ACTIONS(3365), + [anon_sym_from] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_print] = ACTIONS(3365), + [anon_sym_assert] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3365), + [anon_sym_del] = ACTIONS(3365), + [anon_sym_raise] = ACTIONS(3365), + [anon_sym_pass] = ACTIONS(3365), + [anon_sym_break] = ACTIONS(3365), + [anon_sym_continue] = ACTIONS(3365), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_try] = ACTIONS(3365), + [anon_sym_with] = ACTIONS(3365), + [anon_sym_def] = ACTIONS(3365), + [anon_sym_global] = ACTIONS(3365), + [anon_sym_nonlocal] = ACTIONS(3365), + [anon_sym_exec] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_class] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_not] = ACTIONS(3365), + [anon_sym_AMP] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_lambda] = ACTIONS(3365), + [anon_sym_yield] = ACTIONS(3365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3363), + [anon_sym_None] = ACTIONS(3365), + [sym_integer] = ACTIONS(3365), + [sym_float] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3365), + [anon_sym_api] = ACTIONS(3365), + [sym_true] = ACTIONS(3365), + [sym_false] = ACTIONS(3365), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3365), + [anon_sym_include] = ACTIONS(3365), + [anon_sym_DEF] = ACTIONS(3365), + [anon_sym_IF] = ACTIONS(3365), + [anon_sym_cdef] = ACTIONS(3365), + [anon_sym_cpdef] = ACTIONS(3365), + [anon_sym_new] = ACTIONS(3365), + [anon_sym_ctypedef] = ACTIONS(3365), + [anon_sym_public] = ACTIONS(3365), + [anon_sym_packed] = ACTIONS(3365), + [anon_sym_inline] = ACTIONS(3365), + [anon_sym_readonly] = ACTIONS(3365), + [anon_sym_sizeof] = ACTIONS(3365), + [sym_string_start] = ACTIONS(3363), + }, + [1101] = { + [sym_finally_clause] = STATE(1462), + [ts_builtin_sym_end] = ACTIONS(3333), + [sym_identifier] = ACTIONS(3331), + [anon_sym_import] = ACTIONS(3331), + [anon_sym_cimport] = ACTIONS(3331), + [anon_sym_from] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_print] = ACTIONS(3331), + [anon_sym_assert] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_del] = ACTIONS(3331), + [anon_sym_raise] = ACTIONS(3331), + [anon_sym_pass] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_match] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_finally] = ACTIONS(2711), + [anon_sym_with] = ACTIONS(3331), + [anon_sym_def] = ACTIONS(3331), + [anon_sym_global] = ACTIONS(3331), + [anon_sym_nonlocal] = ACTIONS(3331), + [anon_sym_exec] = ACTIONS(3331), + [anon_sym_type] = ACTIONS(3331), + [anon_sym_class] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_lambda] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), + [anon_sym_None] = ACTIONS(3331), + [sym_integer] = ACTIONS(3331), + [sym_float] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3331), + [anon_sym_api] = ACTIONS(3331), + [sym_true] = ACTIONS(3331), + [sym_false] = ACTIONS(3331), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3331), + [anon_sym_include] = ACTIONS(3331), + [anon_sym_DEF] = ACTIONS(3331), + [anon_sym_IF] = ACTIONS(3331), + [anon_sym_cdef] = ACTIONS(3331), + [anon_sym_cpdef] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3331), + [anon_sym_ctypedef] = ACTIONS(3331), + [anon_sym_public] = ACTIONS(3331), + [anon_sym_packed] = ACTIONS(3331), + [anon_sym_inline] = ACTIONS(3331), + [anon_sym_readonly] = ACTIONS(3331), + [anon_sym_sizeof] = ACTIONS(3331), + [sym_string_start] = ACTIONS(3333), + }, + [1102] = { + [ts_builtin_sym_end] = ACTIONS(1613), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_import] = ACTIONS(1611), + [anon_sym_cimport] = ACTIONS(1611), + [anon_sym_from] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1613), + [anon_sym_print] = ACTIONS(1611), + [anon_sym_assert] = ACTIONS(1611), + [anon_sym_return] = ACTIONS(1611), + [anon_sym_del] = ACTIONS(1611), + [anon_sym_raise] = ACTIONS(1611), + [anon_sym_pass] = ACTIONS(1611), + [anon_sym_break] = ACTIONS(1611), + [anon_sym_continue] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(3367), + [anon_sym_match] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_for] = ACTIONS(1611), + [anon_sym_while] = ACTIONS(1611), + [anon_sym_try] = ACTIONS(1611), + [anon_sym_with] = ACTIONS(1611), + [anon_sym_def] = ACTIONS(1611), + [anon_sym_global] = ACTIONS(1611), + [anon_sym_nonlocal] = ACTIONS(1611), + [anon_sym_exec] = ACTIONS(1611), + [anon_sym_type] = ACTIONS(1611), + [anon_sym_class] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1613), + [anon_sym_AT] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_not] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_TILDE] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(1613), + [anon_sym_lambda] = ACTIONS(1611), + [anon_sym_yield] = ACTIONS(1611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1613), + [anon_sym_None] = ACTIONS(1611), + [sym_integer] = ACTIONS(1611), + [sym_float] = ACTIONS(1613), + [anon_sym_await] = ACTIONS(1611), + [anon_sym_api] = ACTIONS(1611), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1611), + [anon_sym_include] = ACTIONS(1611), + [anon_sym_DEF] = ACTIONS(1611), + [anon_sym_IF] = ACTIONS(1611), + [anon_sym_cdef] = ACTIONS(1611), + [anon_sym_cpdef] = ACTIONS(1611), + [anon_sym_new] = ACTIONS(1611), + [anon_sym_ctypedef] = ACTIONS(1611), + [anon_sym_public] = ACTIONS(1611), + [anon_sym_packed] = ACTIONS(1611), + [anon_sym_inline] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1611), + [anon_sym_sizeof] = ACTIONS(1611), + [sym_string_start] = ACTIONS(1613), + }, + [1103] = { + [sym_else_clause] = STATE(1539), + [ts_builtin_sym_end] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_cimport] = ACTIONS(3371), + [anon_sym_from] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_print] = ACTIONS(3371), + [anon_sym_assert] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_del] = ACTIONS(3371), + [anon_sym_raise] = ACTIONS(3371), + [anon_sym_pass] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_with] = ACTIONS(3371), + [anon_sym_def] = ACTIONS(3371), + [anon_sym_global] = ACTIONS(3371), + [anon_sym_nonlocal] = ACTIONS(3371), + [anon_sym_exec] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_AT] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_not] = ACTIONS(3371), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_lambda] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), + [anon_sym_None] = ACTIONS(3371), + [sym_integer] = ACTIONS(3371), + [sym_float] = ACTIONS(3369), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_api] = ACTIONS(3371), + [sym_true] = ACTIONS(3371), + [sym_false] = ACTIONS(3371), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3371), + [anon_sym_include] = ACTIONS(3371), + [anon_sym_DEF] = ACTIONS(3371), + [anon_sym_IF] = ACTIONS(3371), + [anon_sym_cdef] = ACTIONS(3371), + [anon_sym_cpdef] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_ctypedef] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_packed] = ACTIONS(3371), + [anon_sym_inline] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_sizeof] = ACTIONS(3371), + [sym_string_start] = ACTIONS(3369), + }, + [1104] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1105] = { + [sym_else_clause] = STATE(1518), + [ts_builtin_sym_end] = ACTIONS(3375), + [sym_identifier] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3377), + [anon_sym_cimport] = ACTIONS(3377), + [anon_sym_from] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_STAR] = ACTIONS(3375), + [anon_sym_print] = ACTIONS(3377), + [anon_sym_assert] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3377), + [anon_sym_del] = ACTIONS(3377), + [anon_sym_raise] = ACTIONS(3377), + [anon_sym_pass] = ACTIONS(3377), + [anon_sym_break] = ACTIONS(3377), + [anon_sym_continue] = ACTIONS(3377), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_try] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3377), + [anon_sym_def] = ACTIONS(3377), + [anon_sym_global] = ACTIONS(3377), + [anon_sym_nonlocal] = ACTIONS(3377), + [anon_sym_exec] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_class] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_not] = ACTIONS(3377), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_lambda] = ACTIONS(3377), + [anon_sym_yield] = ACTIONS(3377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_None] = ACTIONS(3377), + [sym_integer] = ACTIONS(3377), + [sym_float] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3377), + [anon_sym_api] = ACTIONS(3377), + [sym_true] = ACTIONS(3377), + [sym_false] = ACTIONS(3377), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3377), + [anon_sym_include] = ACTIONS(3377), + [anon_sym_DEF] = ACTIONS(3377), + [anon_sym_IF] = ACTIONS(3377), + [anon_sym_cdef] = ACTIONS(3377), + [anon_sym_cpdef] = ACTIONS(3377), + [anon_sym_new] = ACTIONS(3377), + [anon_sym_ctypedef] = ACTIONS(3377), + [anon_sym_public] = ACTIONS(3377), + [anon_sym_packed] = ACTIONS(3377), + [anon_sym_inline] = ACTIONS(3377), + [anon_sym_readonly] = ACTIONS(3377), + [anon_sym_sizeof] = ACTIONS(3377), + [sym_string_start] = ACTIONS(3375), + }, + [1106] = { + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3989), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym_from] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_print] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1353), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -122390,376 +126120,3836 @@ 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(849), - [anon_sym_api] = ACTIONS(824), + [anon_sym_await] = ACTIONS(895), + [anon_sym_api] = ACTIONS(870), [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(3273), - [sym_string_start] = ACTIONS(107), - }, - [1076] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1518), - [anon_sym_import] = ACTIONS(1518), - [anon_sym_cimport] = ACTIONS(1518), - [anon_sym_from] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_print] = ACTIONS(1518), - [anon_sym_assert] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_del] = ACTIONS(1518), - [anon_sym_raise] = ACTIONS(1518), - [anon_sym_pass] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_except] = ACTIONS(1518), - [anon_sym_finally] = ACTIONS(1518), - [anon_sym_with] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_global] = ACTIONS(1518), - [anon_sym_nonlocal] = ACTIONS(1518), - [anon_sym_exec] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_not] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_lambda] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), - [anon_sym_None] = ACTIONS(1518), - [sym_integer] = ACTIONS(1518), - [sym_float] = ACTIONS(1520), - [anon_sym_await] = ACTIONS(1518), - [anon_sym_api] = ACTIONS(1518), - [sym_true] = ACTIONS(1518), - [sym_false] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1518), - [anon_sym_include] = ACTIONS(1518), - [anon_sym_DEF] = ACTIONS(1518), - [anon_sym_cdef] = ACTIONS(1518), - [anon_sym_cpdef] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_ctypedef] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_packed] = ACTIONS(1518), - [anon_sym_inline] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_sizeof] = ACTIONS(1518), - [sym_string_start] = ACTIONS(1520), - }, - [1077] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1510), - [anon_sym_import] = ACTIONS(1510), - [anon_sym_cimport] = ACTIONS(1510), - [anon_sym_from] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1510), - [anon_sym_assert] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_del] = ACTIONS(1510), - [anon_sym_raise] = ACTIONS(1510), - [anon_sym_pass] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1510), - [anon_sym_except] = ACTIONS(1510), - [anon_sym_finally] = ACTIONS(1510), - [anon_sym_with] = ACTIONS(1510), - [anon_sym_def] = ACTIONS(1510), - [anon_sym_global] = ACTIONS(1510), - [anon_sym_nonlocal] = ACTIONS(1510), - [anon_sym_exec] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_class] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_not] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_lambda] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), - [anon_sym_None] = ACTIONS(1510), - [sym_integer] = ACTIONS(1510), - [sym_float] = ACTIONS(1512), - [anon_sym_await] = ACTIONS(1510), - [anon_sym_api] = ACTIONS(1510), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_property] = ACTIONS(1510), - [anon_sym_include] = ACTIONS(1510), - [anon_sym_DEF] = ACTIONS(1510), - [anon_sym_cdef] = ACTIONS(1510), - [anon_sym_cpdef] = ACTIONS(1510), - [anon_sym_new] = ACTIONS(1510), - [anon_sym_ctypedef] = ACTIONS(1510), - [anon_sym_public] = ACTIONS(1510), - [anon_sym_packed] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_readonly] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1510), - [sym_string_start] = ACTIONS(1512), - }, - [1078] = { - [sym_named_expression] = STATE(2648), - [sym__named_expression_lhs] = STATE(5721), - [sym_list_splat_pattern] = STATE(2642), - [sym_as_pattern] = STATE(2648), - [sym_expression] = STATE(4109), - [sym_primary_expression] = STATE(2177), - [sym_not_operator] = STATE(2648), - [sym_boolean_operator] = STATE(2648), - [sym_binary_operator] = STATE(2647), - [sym_unary_operator] = STATE(2647), - [sym_comparison_operator] = STATE(2648), - [sym_lambda] = STATE(2648), - [sym_attribute] = STATE(2647), - [sym_subscript] = STATE(2647), - [sym_slice] = STATE(5366), - [sym_ellipsis] = STATE(2647), - [sym_call] = STATE(2647), - [sym_list] = STATE(2647), - [sym_set] = STATE(2647), - [sym_tuple] = STATE(2647), - [sym_dictionary] = STATE(2647), - [sym_list_comprehension] = STATE(2647), - [sym_dictionary_comprehension] = STATE(2647), - [sym_set_comprehension] = STATE(2647), - [sym_generator_expression] = STATE(2647), - [sym_parenthesized_expression] = STATE(2647), - [sym_conditional_expression] = STATE(2648), - [sym_concatenated_string] = STATE(2647), - [sym_string] = STATE(2292), - [sym_none] = STATE(2647), - [sym_await] = STATE(2647), - [sym_new_expression] = STATE(2648), - [sym_sizeof_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_print] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_exec] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_RBRACK] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_not] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_lambda] = ACTIONS(2683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2525), - [anon_sym_None] = ACTIONS(2527), - [sym_integer] = ACTIONS(2509), - [sym_float] = ACTIONS(2529), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_api] = ACTIONS(2673), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [anon_sym_new] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2533), - [sym_string_start] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(3161), + [sym_string_start] = ACTIONS(109), + }, + [1107] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1108] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1109] = { + [sym_else_clause] = STATE(1488), + [ts_builtin_sym_end] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_cimport] = ACTIONS(3387), + [anon_sym_from] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3385), + [anon_sym_print] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_del] = ACTIONS(3387), + [anon_sym_raise] = ACTIONS(3387), + [anon_sym_pass] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_def] = ACTIONS(3387), + [anon_sym_global] = ACTIONS(3387), + [anon_sym_nonlocal] = ACTIONS(3387), + [anon_sym_exec] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_AT] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_not] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_lambda] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3385), + [anon_sym_None] = ACTIONS(3387), + [sym_integer] = ACTIONS(3387), + [sym_float] = ACTIONS(3385), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_api] = ACTIONS(3387), + [sym_true] = ACTIONS(3387), + [sym_false] = ACTIONS(3387), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3387), + [anon_sym_include] = ACTIONS(3387), + [anon_sym_DEF] = ACTIONS(3387), + [anon_sym_IF] = ACTIONS(3387), + [anon_sym_cdef] = ACTIONS(3387), + [anon_sym_cpdef] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_ctypedef] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_packed] = ACTIONS(3387), + [anon_sym_inline] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_sizeof] = ACTIONS(3387), + [sym_string_start] = ACTIONS(3385), + }, + [1110] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1111] = { + [sym_else_clause] = STATE(1513), + [sym_identifier] = ACTIONS(3391), + [anon_sym_import] = ACTIONS(3391), + [anon_sym_cimport] = ACTIONS(3391), + [anon_sym_from] = ACTIONS(3391), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_print] = ACTIONS(3391), + [anon_sym_assert] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_del] = ACTIONS(3391), + [anon_sym_raise] = ACTIONS(3391), + [anon_sym_pass] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_with] = ACTIONS(3391), + [anon_sym_def] = ACTIONS(3391), + [anon_sym_global] = ACTIONS(3391), + [anon_sym_nonlocal] = ACTIONS(3391), + [anon_sym_exec] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_AT] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_not] = ACTIONS(3391), + [anon_sym_AMP] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3393), + [anon_sym_None] = ACTIONS(3391), + [sym_integer] = ACTIONS(3391), + [sym_float] = ACTIONS(3393), + [anon_sym_await] = ACTIONS(3391), + [anon_sym_api] = ACTIONS(3391), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3391), + [anon_sym_include] = ACTIONS(3391), + [anon_sym_DEF] = ACTIONS(3391), + [anon_sym_IF] = ACTIONS(3391), + [anon_sym_cdef] = ACTIONS(3391), + [anon_sym_cpdef] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_ctypedef] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3391), + [anon_sym_packed] = ACTIONS(3391), + [anon_sym_inline] = ACTIONS(3391), + [anon_sym_readonly] = ACTIONS(3391), + [anon_sym_sizeof] = ACTIONS(3391), + [sym__dedent] = ACTIONS(3393), + [sym_string_start] = ACTIONS(3393), + }, + [1112] = { + [sym_else_clause] = STATE(1522), + [sym_identifier] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_cimport] = ACTIONS(3395), + [anon_sym_from] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_print] = ACTIONS(3395), + [anon_sym_assert] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_del] = ACTIONS(3395), + [anon_sym_raise] = ACTIONS(3395), + [anon_sym_pass] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_def] = ACTIONS(3395), + [anon_sym_global] = ACTIONS(3395), + [anon_sym_nonlocal] = ACTIONS(3395), + [anon_sym_exec] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_AT] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_PLUS] = ACTIONS(3397), + [anon_sym_not] = ACTIONS(3395), + [anon_sym_AMP] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_lambda] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3397), + [anon_sym_None] = ACTIONS(3395), + [sym_integer] = ACTIONS(3395), + [sym_float] = ACTIONS(3397), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_api] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3395), + [anon_sym_include] = ACTIONS(3395), + [anon_sym_DEF] = ACTIONS(3395), + [anon_sym_IF] = ACTIONS(3395), + [anon_sym_cdef] = ACTIONS(3395), + [anon_sym_cpdef] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_ctypedef] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_packed] = ACTIONS(3395), + [anon_sym_inline] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_sizeof] = ACTIONS(3395), + [sym__dedent] = ACTIONS(3397), + [sym_string_start] = ACTIONS(3397), + }, + [1113] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1114] = { + [sym_else_clause] = STATE(1438), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_cimport] = ACTIONS(3279), + [anon_sym_from] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_print] = ACTIONS(3279), + [anon_sym_assert] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_del] = ACTIONS(3279), + [anon_sym_raise] = ACTIONS(3279), + [anon_sym_pass] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_with] = ACTIONS(3279), + [anon_sym_def] = ACTIONS(3279), + [anon_sym_global] = ACTIONS(3279), + [anon_sym_nonlocal] = ACTIONS(3279), + [anon_sym_exec] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_not] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_lambda] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3281), + [anon_sym_None] = ACTIONS(3279), + [sym_integer] = ACTIONS(3279), + [sym_float] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_api] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3279), + [anon_sym_include] = ACTIONS(3279), + [anon_sym_DEF] = ACTIONS(3279), + [anon_sym_IF] = ACTIONS(3279), + [anon_sym_cdef] = ACTIONS(3279), + [anon_sym_cpdef] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_ctypedef] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_packed] = ACTIONS(3279), + [anon_sym_inline] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_sizeof] = ACTIONS(3279), + [sym_string_start] = ACTIONS(3281), + }, + [1115] = { + [sym_else_clause] = STATE(1541), + [sym_identifier] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_cimport] = ACTIONS(3361), + [anon_sym_from] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(3359), + [anon_sym_print] = ACTIONS(3361), + [anon_sym_assert] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_del] = ACTIONS(3361), + [anon_sym_raise] = ACTIONS(3361), + [anon_sym_pass] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_def] = ACTIONS(3361), + [anon_sym_global] = ACTIONS(3361), + [anon_sym_nonlocal] = ACTIONS(3361), + [anon_sym_exec] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_not] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_lambda] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3359), + [anon_sym_None] = ACTIONS(3361), + [sym_integer] = ACTIONS(3361), + [sym_float] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_api] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3361), + [anon_sym_include] = ACTIONS(3361), + [anon_sym_DEF] = ACTIONS(3361), + [anon_sym_IF] = ACTIONS(3361), + [anon_sym_cdef] = ACTIONS(3361), + [anon_sym_cpdef] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_ctypedef] = ACTIONS(3361), + [anon_sym_public] = ACTIONS(3361), + [anon_sym_packed] = ACTIONS(3361), + [anon_sym_inline] = ACTIONS(3361), + [anon_sym_readonly] = ACTIONS(3361), + [anon_sym_sizeof] = ACTIONS(3361), + [sym__dedent] = ACTIONS(3359), + [sym_string_start] = ACTIONS(3359), + }, + [1116] = { + [sym_else_clause] = STATE(1595), + [ts_builtin_sym_end] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3391), + [anon_sym_import] = ACTIONS(3391), + [anon_sym_cimport] = ACTIONS(3391), + [anon_sym_from] = ACTIONS(3391), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_print] = ACTIONS(3391), + [anon_sym_assert] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_del] = ACTIONS(3391), + [anon_sym_raise] = ACTIONS(3391), + [anon_sym_pass] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_with] = ACTIONS(3391), + [anon_sym_def] = ACTIONS(3391), + [anon_sym_global] = ACTIONS(3391), + [anon_sym_nonlocal] = ACTIONS(3391), + [anon_sym_exec] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_AT] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_not] = ACTIONS(3391), + [anon_sym_AMP] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_lambda] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3393), + [anon_sym_None] = ACTIONS(3391), + [sym_integer] = ACTIONS(3391), + [sym_float] = ACTIONS(3393), + [anon_sym_await] = ACTIONS(3391), + [anon_sym_api] = ACTIONS(3391), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3391), + [anon_sym_include] = ACTIONS(3391), + [anon_sym_DEF] = ACTIONS(3391), + [anon_sym_IF] = ACTIONS(3391), + [anon_sym_cdef] = ACTIONS(3391), + [anon_sym_cpdef] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_ctypedef] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3391), + [anon_sym_packed] = ACTIONS(3391), + [anon_sym_inline] = ACTIONS(3391), + [anon_sym_readonly] = ACTIONS(3391), + [anon_sym_sizeof] = ACTIONS(3391), + [sym_string_start] = ACTIONS(3393), + }, + [1117] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1118] = { + [ts_builtin_sym_end] = ACTIONS(3311), + [sym_identifier] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3309), + [anon_sym_cimport] = ACTIONS(3309), + [anon_sym_from] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_print] = ACTIONS(3309), + [anon_sym_assert] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_del] = ACTIONS(3309), + [anon_sym_raise] = ACTIONS(3309), + [anon_sym_pass] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_with] = ACTIONS(3309), + [anon_sym_def] = ACTIONS(3309), + [anon_sym_global] = ACTIONS(3309), + [anon_sym_nonlocal] = ACTIONS(3309), + [anon_sym_exec] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_not] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_lambda] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3311), + [anon_sym_None] = ACTIONS(3309), + [sym_integer] = ACTIONS(3309), + [sym_float] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_api] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3309), + [anon_sym_include] = ACTIONS(3309), + [anon_sym_DEF] = ACTIONS(3309), + [anon_sym_IF] = ACTIONS(3309), + [anon_sym_ELIF] = ACTIONS(3309), + [anon_sym_ELSE] = ACTIONS(3309), + [anon_sym_cdef] = ACTIONS(3309), + [anon_sym_cpdef] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_ctypedef] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_packed] = ACTIONS(3309), + [anon_sym_inline] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_sizeof] = ACTIONS(3309), + [sym_string_start] = ACTIONS(3311), + }, + [1119] = { + [sym_named_expression] = STATE(3185), + [sym__named_expression_lhs] = STATE(5695), + [sym_dictionary_splat] = STATE(5401), + [sym_list_splat_pattern] = STATE(2435), + [sym_as_pattern] = STATE(3185), + [sym_expression] = STATE(4512), + [sym_primary_expression] = STATE(2156), + [sym_not_operator] = STATE(3185), + [sym_boolean_operator] = STATE(3185), + [sym_binary_operator] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_comparison_operator] = STATE(3185), + [sym_lambda] = STATE(3185), + [sym_attribute] = STATE(2508), + [sym_subscript] = STATE(2508), + [sym_ellipsis] = STATE(2508), + [sym_call] = STATE(2508), + [sym_list] = STATE(2508), + [sym_set] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_dictionary] = STATE(2508), + [sym_pair] = STATE(5401), + [sym_list_comprehension] = STATE(2508), + [sym_dictionary_comprehension] = STATE(2508), + [sym_set_comprehension] = STATE(2508), + [sym_generator_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(2508), + [sym_conditional_expression] = STATE(3185), + [sym_concatenated_string] = STATE(2508), + [sym_string] = STATE(2209), + [sym_none] = STATE(2508), + [sym_await] = STATE(2508), + [sym_new_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(2508), + [sym_cast_expression] = STATE(2508), + [sym_identifier] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_STAR_STAR] = ACTIONS(2625), + [anon_sym_exec] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_not] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_lambda] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1299), + [anon_sym_None] = ACTIONS(1301), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1307), + [anon_sym_api] = ACTIONS(1283), + [sym_true] = ACTIONS(1303), + [sym_false] = ACTIONS(1303), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_string_start] = ACTIONS(1313), + }, + [1120] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1121] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1122] = { + [sym_identifier] = ACTIONS(3407), + [anon_sym_import] = ACTIONS(3407), + [anon_sym_cimport] = ACTIONS(3407), + [anon_sym_from] = ACTIONS(3407), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_STAR] = ACTIONS(3409), + [anon_sym_print] = ACTIONS(3407), + [anon_sym_assert] = ACTIONS(3407), + [anon_sym_return] = ACTIONS(3407), + [anon_sym_del] = ACTIONS(3407), + [anon_sym_raise] = ACTIONS(3407), + [anon_sym_pass] = ACTIONS(3407), + [anon_sym_break] = ACTIONS(3407), + [anon_sym_continue] = ACTIONS(3407), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_elif] = ACTIONS(3407), + [anon_sym_else] = ACTIONS(3407), + [anon_sym_match] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_try] = ACTIONS(3407), + [anon_sym_with] = ACTIONS(3407), + [anon_sym_def] = ACTIONS(3407), + [anon_sym_global] = ACTIONS(3407), + [anon_sym_nonlocal] = ACTIONS(3407), + [anon_sym_exec] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_class] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_AT] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_LT] = ACTIONS(3409), + [anon_sym_lambda] = ACTIONS(3407), + [anon_sym_yield] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3409), + [anon_sym_None] = ACTIONS(3407), + [sym_integer] = ACTIONS(3407), + [sym_float] = ACTIONS(3409), + [anon_sym_await] = ACTIONS(3407), + [anon_sym_api] = ACTIONS(3407), + [sym_true] = ACTIONS(3407), + [sym_false] = ACTIONS(3407), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3407), + [anon_sym_include] = ACTIONS(3407), + [anon_sym_DEF] = ACTIONS(3407), + [anon_sym_IF] = ACTIONS(3407), + [anon_sym_cdef] = ACTIONS(3407), + [anon_sym_cpdef] = ACTIONS(3407), + [anon_sym_new] = ACTIONS(3407), + [anon_sym_ctypedef] = ACTIONS(3407), + [anon_sym_public] = ACTIONS(3407), + [anon_sym_packed] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_readonly] = ACTIONS(3407), + [anon_sym_sizeof] = ACTIONS(3407), + [sym__dedent] = ACTIONS(3409), + [sym_string_start] = ACTIONS(3409), + }, + [1123] = { + [sym_identifier] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_cimport] = ACTIONS(3357), + [anon_sym_from] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_print] = ACTIONS(3357), + [anon_sym_assert] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_del] = ACTIONS(3357), + [anon_sym_raise] = ACTIONS(3357), + [anon_sym_pass] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_elif] = ACTIONS(3357), + [anon_sym_else] = ACTIONS(3357), + [anon_sym_match] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_def] = ACTIONS(3357), + [anon_sym_global] = ACTIONS(3357), + [anon_sym_nonlocal] = ACTIONS(3357), + [anon_sym_exec] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_AT] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_not] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_lambda] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3355), + [anon_sym_None] = ACTIONS(3357), + [sym_integer] = ACTIONS(3357), + [sym_float] = ACTIONS(3355), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_api] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3357), + [anon_sym_include] = ACTIONS(3357), + [anon_sym_DEF] = ACTIONS(3357), + [anon_sym_IF] = ACTIONS(3357), + [anon_sym_cdef] = ACTIONS(3357), + [anon_sym_cpdef] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_ctypedef] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_packed] = ACTIONS(3357), + [anon_sym_inline] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_sizeof] = ACTIONS(3357), + [sym__dedent] = ACTIONS(3355), + [sym_string_start] = ACTIONS(3355), + }, + [1124] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1125] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1126] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1127] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1128] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1129] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1130] = { + [sym_else_clause] = STATE(1606), + [sym_identifier] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3297), + [anon_sym_cimport] = ACTIONS(3297), + [anon_sym_from] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_print] = ACTIONS(3297), + [anon_sym_assert] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_del] = ACTIONS(3297), + [anon_sym_raise] = ACTIONS(3297), + [anon_sym_pass] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3297), + [anon_sym_def] = ACTIONS(3297), + [anon_sym_global] = ACTIONS(3297), + [anon_sym_nonlocal] = ACTIONS(3297), + [anon_sym_exec] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_not] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_lambda] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3295), + [anon_sym_None] = ACTIONS(3297), + [sym_integer] = ACTIONS(3297), + [sym_float] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_api] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3297), + [anon_sym_include] = ACTIONS(3297), + [anon_sym_DEF] = ACTIONS(3297), + [anon_sym_IF] = ACTIONS(3297), + [anon_sym_cdef] = ACTIONS(3297), + [anon_sym_cpdef] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_ctypedef] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_packed] = ACTIONS(3297), + [anon_sym_inline] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_sizeof] = ACTIONS(3297), + [sym__dedent] = ACTIONS(3295), + [sym_string_start] = ACTIONS(3295), + }, + [1131] = { + [sym_else_clause] = STATE(1607), + [sym_identifier] = ACTIONS(3325), + [anon_sym_import] = ACTIONS(3325), + [anon_sym_cimport] = ACTIONS(3325), + [anon_sym_from] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(3323), + [anon_sym_print] = ACTIONS(3325), + [anon_sym_assert] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_del] = ACTIONS(3325), + [anon_sym_raise] = ACTIONS(3325), + [anon_sym_pass] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3325), + [anon_sym_async] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_while] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3325), + [anon_sym_with] = ACTIONS(3325), + [anon_sym_def] = ACTIONS(3325), + [anon_sym_global] = ACTIONS(3325), + [anon_sym_nonlocal] = ACTIONS(3325), + [anon_sym_exec] = ACTIONS(3325), + [anon_sym_type] = ACTIONS(3325), + [anon_sym_class] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_not] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_lambda] = ACTIONS(3325), + [anon_sym_yield] = ACTIONS(3325), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3323), + [anon_sym_None] = ACTIONS(3325), + [sym_integer] = ACTIONS(3325), + [sym_float] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3325), + [anon_sym_api] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3325), + [anon_sym_include] = ACTIONS(3325), + [anon_sym_DEF] = ACTIONS(3325), + [anon_sym_IF] = ACTIONS(3325), + [anon_sym_cdef] = ACTIONS(3325), + [anon_sym_cpdef] = ACTIONS(3325), + [anon_sym_new] = ACTIONS(3325), + [anon_sym_ctypedef] = ACTIONS(3325), + [anon_sym_public] = ACTIONS(3325), + [anon_sym_packed] = ACTIONS(3325), + [anon_sym_inline] = ACTIONS(3325), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_sizeof] = ACTIONS(3325), + [sym__dedent] = ACTIONS(3323), + [sym_string_start] = ACTIONS(3323), + }, + [1132] = { + [ts_builtin_sym_end] = ACTIONS(3289), + [sym_identifier] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_cimport] = ACTIONS(3287), + [anon_sym_from] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_print] = ACTIONS(3287), + [anon_sym_assert] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_del] = ACTIONS(3287), + [anon_sym_raise] = ACTIONS(3287), + [anon_sym_pass] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_match] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3287), + [anon_sym_def] = ACTIONS(3287), + [anon_sym_global] = ACTIONS(3287), + [anon_sym_nonlocal] = ACTIONS(3287), + [anon_sym_exec] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_not] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_lambda] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3289), + [anon_sym_None] = ACTIONS(3287), + [sym_integer] = ACTIONS(3287), + [sym_float] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_api] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3287), + [anon_sym_include] = ACTIONS(3287), + [anon_sym_DEF] = ACTIONS(3287), + [anon_sym_IF] = ACTIONS(3287), + [anon_sym_ELIF] = ACTIONS(3287), + [anon_sym_ELSE] = ACTIONS(3287), + [anon_sym_cdef] = ACTIONS(3287), + [anon_sym_cpdef] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_ctypedef] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_packed] = ACTIONS(3287), + [anon_sym_inline] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_sizeof] = ACTIONS(3287), + [sym_string_start] = ACTIONS(3289), + }, + [1133] = { + [ts_builtin_sym_end] = ACTIONS(3347), + [sym_identifier] = ACTIONS(3345), + [anon_sym_import] = ACTIONS(3345), + [anon_sym_cimport] = ACTIONS(3345), + [anon_sym_from] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_STAR] = ACTIONS(3347), + [anon_sym_print] = ACTIONS(3345), + [anon_sym_assert] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3345), + [anon_sym_del] = ACTIONS(3345), + [anon_sym_raise] = ACTIONS(3345), + [anon_sym_pass] = ACTIONS(3345), + [anon_sym_break] = ACTIONS(3345), + [anon_sym_continue] = ACTIONS(3345), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_elif] = ACTIONS(3345), + [anon_sym_else] = ACTIONS(3345), + [anon_sym_match] = ACTIONS(3345), + [anon_sym_async] = ACTIONS(3345), + [anon_sym_for] = ACTIONS(3345), + [anon_sym_while] = ACTIONS(3345), + [anon_sym_try] = ACTIONS(3345), + [anon_sym_with] = ACTIONS(3345), + [anon_sym_def] = ACTIONS(3345), + [anon_sym_global] = ACTIONS(3345), + [anon_sym_nonlocal] = ACTIONS(3345), + [anon_sym_exec] = ACTIONS(3345), + [anon_sym_type] = ACTIONS(3345), + [anon_sym_class] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_not] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_lambda] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3347), + [anon_sym_None] = ACTIONS(3345), + [sym_integer] = ACTIONS(3345), + [sym_float] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3345), + [anon_sym_api] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3345), + [anon_sym_include] = ACTIONS(3345), + [anon_sym_DEF] = ACTIONS(3345), + [anon_sym_IF] = ACTIONS(3345), + [anon_sym_cdef] = ACTIONS(3345), + [anon_sym_cpdef] = ACTIONS(3345), + [anon_sym_new] = ACTIONS(3345), + [anon_sym_ctypedef] = ACTIONS(3345), + [anon_sym_public] = ACTIONS(3345), + [anon_sym_packed] = ACTIONS(3345), + [anon_sym_inline] = ACTIONS(3345), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_sizeof] = ACTIONS(3345), + [sym_string_start] = ACTIONS(3347), + }, + [1134] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1135] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4163), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3427), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1136] = { + [sym_else_clause] = STATE(1492), + [ts_builtin_sym_end] = ACTIONS(3429), + [sym_identifier] = ACTIONS(3431), + [anon_sym_import] = ACTIONS(3431), + [anon_sym_cimport] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_print] = ACTIONS(3431), + [anon_sym_assert] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_del] = ACTIONS(3431), + [anon_sym_raise] = ACTIONS(3431), + [anon_sym_pass] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_with] = ACTIONS(3431), + [anon_sym_def] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_nonlocal] = ACTIONS(3431), + [anon_sym_exec] = ACTIONS(3431), + [anon_sym_type] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_AT] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_not] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_lambda] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), + [anon_sym_None] = ACTIONS(3431), + [sym_integer] = ACTIONS(3431), + [sym_float] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3431), + [anon_sym_api] = ACTIONS(3431), + [sym_true] = ACTIONS(3431), + [sym_false] = ACTIONS(3431), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3431), + [anon_sym_include] = ACTIONS(3431), + [anon_sym_DEF] = ACTIONS(3431), + [anon_sym_IF] = ACTIONS(3431), + [anon_sym_cdef] = ACTIONS(3431), + [anon_sym_cpdef] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_ctypedef] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_packed] = ACTIONS(3431), + [anon_sym_inline] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_sizeof] = ACTIONS(3431), + [sym_string_start] = ACTIONS(3429), + }, + [1137] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3433), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1138] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1139] = { + [ts_builtin_sym_end] = ACTIONS(3409), + [sym_identifier] = ACTIONS(3407), + [anon_sym_import] = ACTIONS(3407), + [anon_sym_cimport] = ACTIONS(3407), + [anon_sym_from] = ACTIONS(3407), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_STAR] = ACTIONS(3409), + [anon_sym_print] = ACTIONS(3407), + [anon_sym_assert] = ACTIONS(3407), + [anon_sym_return] = ACTIONS(3407), + [anon_sym_del] = ACTIONS(3407), + [anon_sym_raise] = ACTIONS(3407), + [anon_sym_pass] = ACTIONS(3407), + [anon_sym_break] = ACTIONS(3407), + [anon_sym_continue] = ACTIONS(3407), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_elif] = ACTIONS(3407), + [anon_sym_else] = ACTIONS(3407), + [anon_sym_match] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_try] = ACTIONS(3407), + [anon_sym_with] = ACTIONS(3407), + [anon_sym_def] = ACTIONS(3407), + [anon_sym_global] = ACTIONS(3407), + [anon_sym_nonlocal] = ACTIONS(3407), + [anon_sym_exec] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_class] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_AT] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_not] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), + [anon_sym_LT] = ACTIONS(3409), + [anon_sym_lambda] = ACTIONS(3407), + [anon_sym_yield] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3409), + [anon_sym_None] = ACTIONS(3407), + [sym_integer] = ACTIONS(3407), + [sym_float] = ACTIONS(3409), + [anon_sym_await] = ACTIONS(3407), + [anon_sym_api] = ACTIONS(3407), + [sym_true] = ACTIONS(3407), + [sym_false] = ACTIONS(3407), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3407), + [anon_sym_include] = ACTIONS(3407), + [anon_sym_DEF] = ACTIONS(3407), + [anon_sym_IF] = ACTIONS(3407), + [anon_sym_cdef] = ACTIONS(3407), + [anon_sym_cpdef] = ACTIONS(3407), + [anon_sym_new] = ACTIONS(3407), + [anon_sym_ctypedef] = ACTIONS(3407), + [anon_sym_public] = ACTIONS(3407), + [anon_sym_packed] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_readonly] = ACTIONS(3407), + [anon_sym_sizeof] = ACTIONS(3407), + [sym_string_start] = ACTIONS(3409), + }, + [1140] = { + [sym_else_clause] = STATE(1503), + [sym_identifier] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_cimport] = ACTIONS(3437), + [anon_sym_from] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_STAR] = ACTIONS(3439), + [anon_sym_print] = ACTIONS(3437), + [anon_sym_assert] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_del] = ACTIONS(3437), + [anon_sym_raise] = ACTIONS(3437), + [anon_sym_pass] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3437), + [anon_sym_async] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_def] = ACTIONS(3437), + [anon_sym_global] = ACTIONS(3437), + [anon_sym_nonlocal] = ACTIONS(3437), + [anon_sym_exec] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_AT] = ACTIONS(3439), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_not] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(3439), + [anon_sym_LT] = ACTIONS(3439), + [anon_sym_lambda] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3439), + [anon_sym_None] = ACTIONS(3437), + [sym_integer] = ACTIONS(3437), + [sym_float] = ACTIONS(3439), + [anon_sym_await] = ACTIONS(3437), + [anon_sym_api] = ACTIONS(3437), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3437), + [anon_sym_include] = ACTIONS(3437), + [anon_sym_DEF] = ACTIONS(3437), + [anon_sym_IF] = ACTIONS(3437), + [anon_sym_cdef] = ACTIONS(3437), + [anon_sym_cpdef] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_ctypedef] = ACTIONS(3437), + [anon_sym_public] = ACTIONS(3437), + [anon_sym_packed] = ACTIONS(3437), + [anon_sym_inline] = ACTIONS(3437), + [anon_sym_readonly] = ACTIONS(3437), + [anon_sym_sizeof] = ACTIONS(3437), + [sym__dedent] = ACTIONS(3439), + [sym_string_start] = ACTIONS(3439), + }, + [1141] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1142] = { + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(3989), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_from] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_print] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1353), + [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(895), + [anon_sym_api] = ACTIONS(870), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(3247), + [sym_string_start] = ACTIONS(109), + }, + [1143] = { + [sym_named_expression] = STATE(3538), + [sym__named_expression_lhs] = STATE(5834), + [sym_expression_list] = STATE(5382), + [sym_list_splat_pattern] = STATE(2215), + [sym_as_pattern] = STATE(3538), + [sym_expression] = STATE(4033), + [sym_primary_expression] = STATE(2131), + [sym_not_operator] = STATE(3538), + [sym_boolean_operator] = STATE(3538), + [sym_binary_operator] = STATE(2230), + [sym_unary_operator] = STATE(2230), + [sym_comparison_operator] = STATE(3538), + [sym_lambda] = STATE(3538), + [sym_attribute] = STATE(2230), + [sym_subscript] = STATE(2230), + [sym_ellipsis] = STATE(2230), + [sym_call] = STATE(2230), + [sym_list] = STATE(2230), + [sym_set] = STATE(2230), + [sym_tuple] = STATE(2230), + [sym_dictionary] = STATE(2230), + [sym_list_comprehension] = STATE(2230), + [sym_dictionary_comprehension] = STATE(2230), + [sym_set_comprehension] = STATE(2230), + [sym_generator_expression] = STATE(2230), + [sym_parenthesized_expression] = STATE(2230), + [sym_conditional_expression] = STATE(3538), + [sym_concatenated_string] = STATE(2230), + [sym_string] = STATE(2140), + [sym_none] = STATE(2230), + [sym_await] = STATE(2230), + [sym_new_expression] = STATE(3538), + [sym_sizeof_expression] = STATE(2230), + [sym_cast_expression] = STATE(2230), + [sym_identifier] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_print] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_exec] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(1353), + [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(895), + [anon_sym_api] = ACTIONS(870), + [sym_true] = ACTIONS(81), + [sym_false] = ACTIONS(81), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(101), + [anon_sym_sizeof] = ACTIONS(107), + [sym__newline] = ACTIONS(3445), + [sym_string_start] = ACTIONS(109), + }, + [1144] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1145] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1146] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1147] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1148] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1149] = { + [sym_else_clause] = STATE(1524), + [sym_identifier] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3377), + [anon_sym_cimport] = ACTIONS(3377), + [anon_sym_from] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_STAR] = ACTIONS(3375), + [anon_sym_print] = ACTIONS(3377), + [anon_sym_assert] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3377), + [anon_sym_del] = ACTIONS(3377), + [anon_sym_raise] = ACTIONS(3377), + [anon_sym_pass] = ACTIONS(3377), + [anon_sym_break] = ACTIONS(3377), + [anon_sym_continue] = ACTIONS(3377), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_try] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3377), + [anon_sym_def] = ACTIONS(3377), + [anon_sym_global] = ACTIONS(3377), + [anon_sym_nonlocal] = ACTIONS(3377), + [anon_sym_exec] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_class] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_not] = ACTIONS(3377), + [anon_sym_AMP] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_lambda] = ACTIONS(3377), + [anon_sym_yield] = ACTIONS(3377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), + [anon_sym_None] = ACTIONS(3377), + [sym_integer] = ACTIONS(3377), + [sym_float] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3377), + [anon_sym_api] = ACTIONS(3377), + [sym_true] = ACTIONS(3377), + [sym_false] = ACTIONS(3377), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3377), + [anon_sym_include] = ACTIONS(3377), + [anon_sym_DEF] = ACTIONS(3377), + [anon_sym_IF] = ACTIONS(3377), + [anon_sym_cdef] = ACTIONS(3377), + [anon_sym_cpdef] = ACTIONS(3377), + [anon_sym_new] = ACTIONS(3377), + [anon_sym_ctypedef] = ACTIONS(3377), + [anon_sym_public] = ACTIONS(3377), + [anon_sym_packed] = ACTIONS(3377), + [anon_sym_inline] = ACTIONS(3377), + [anon_sym_readonly] = ACTIONS(3377), + [anon_sym_sizeof] = ACTIONS(3377), + [sym__dedent] = ACTIONS(3375), + [sym_string_start] = ACTIONS(3375), + }, + [1150] = { + [sym_else_clause] = STATE(1507), + [sym_identifier] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_cimport] = ACTIONS(3387), + [anon_sym_from] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3385), + [anon_sym_print] = ACTIONS(3387), + [anon_sym_assert] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_del] = ACTIONS(3387), + [anon_sym_raise] = ACTIONS(3387), + [anon_sym_pass] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_def] = ACTIONS(3387), + [anon_sym_global] = ACTIONS(3387), + [anon_sym_nonlocal] = ACTIONS(3387), + [anon_sym_exec] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_AT] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_not] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_lambda] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3385), + [anon_sym_None] = ACTIONS(3387), + [sym_integer] = ACTIONS(3387), + [sym_float] = ACTIONS(3385), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_api] = ACTIONS(3387), + [sym_true] = ACTIONS(3387), + [sym_false] = ACTIONS(3387), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3387), + [anon_sym_include] = ACTIONS(3387), + [anon_sym_DEF] = ACTIONS(3387), + [anon_sym_IF] = ACTIONS(3387), + [anon_sym_cdef] = ACTIONS(3387), + [anon_sym_cpdef] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_ctypedef] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_packed] = ACTIONS(3387), + [anon_sym_inline] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_sizeof] = ACTIONS(3387), + [sym__dedent] = ACTIONS(3385), + [sym_string_start] = ACTIONS(3385), + }, + [1151] = { + [sym_else_clause] = STATE(1512), + [sym_identifier] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_cimport] = ACTIONS(3293), + [anon_sym_from] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_STAR] = ACTIONS(3291), + [anon_sym_print] = ACTIONS(3293), + [anon_sym_assert] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_del] = ACTIONS(3293), + [anon_sym_raise] = ACTIONS(3293), + [anon_sym_pass] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_def] = ACTIONS(3293), + [anon_sym_global] = ACTIONS(3293), + [anon_sym_nonlocal] = ACTIONS(3293), + [anon_sym_exec] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_AT] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_not] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_lambda] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3291), + [anon_sym_None] = ACTIONS(3293), + [sym_integer] = ACTIONS(3293), + [sym_float] = ACTIONS(3291), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_api] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3293), + [anon_sym_include] = ACTIONS(3293), + [anon_sym_DEF] = ACTIONS(3293), + [anon_sym_IF] = ACTIONS(3293), + [anon_sym_cdef] = ACTIONS(3293), + [anon_sym_cpdef] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_ctypedef] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_packed] = ACTIONS(3293), + [anon_sym_inline] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_sizeof] = ACTIONS(3293), + [sym__dedent] = ACTIONS(3291), + [sym_string_start] = ACTIONS(3291), + }, + [1152] = { + [ts_builtin_sym_end] = ACTIONS(1595), + [sym_identifier] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_import] = ACTIONS(1593), + [anon_sym_cimport] = ACTIONS(1593), + [anon_sym_from] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_print] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_del] = ACTIONS(1593), + [anon_sym_raise] = ACTIONS(1593), + [anon_sym_pass] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_COLON] = ACTIONS(3457), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_async] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_with] = ACTIONS(1593), + [anon_sym_def] = ACTIONS(1593), + [anon_sym_global] = ACTIONS(1593), + [anon_sym_nonlocal] = ACTIONS(1593), + [anon_sym_exec] = ACTIONS(1593), + [anon_sym_type] = ACTIONS(1593), + [anon_sym_class] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_AT] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_not] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_LT] = ACTIONS(1595), + [anon_sym_lambda] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1595), + [anon_sym_None] = ACTIONS(1593), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1595), + [anon_sym_await] = ACTIONS(1593), + [anon_sym_api] = ACTIONS(1593), + [sym_true] = ACTIONS(1593), + [sym_false] = ACTIONS(1593), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1593), + [anon_sym_include] = ACTIONS(1593), + [anon_sym_DEF] = ACTIONS(1593), + [anon_sym_IF] = ACTIONS(1593), + [anon_sym_cdef] = ACTIONS(1593), + [anon_sym_cpdef] = ACTIONS(1593), + [anon_sym_new] = ACTIONS(1593), + [anon_sym_ctypedef] = ACTIONS(1593), + [anon_sym_public] = ACTIONS(1593), + [anon_sym_packed] = ACTIONS(1593), + [anon_sym_inline] = ACTIONS(1593), + [anon_sym_readonly] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1593), + [sym_string_start] = ACTIONS(1595), + }, + [1153] = { + [sym_else_clause] = STATE(1535), + [sym_identifier] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_cimport] = ACTIONS(3371), + [anon_sym_from] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_print] = ACTIONS(3371), + [anon_sym_assert] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_del] = ACTIONS(3371), + [anon_sym_raise] = ACTIONS(3371), + [anon_sym_pass] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_with] = ACTIONS(3371), + [anon_sym_def] = ACTIONS(3371), + [anon_sym_global] = ACTIONS(3371), + [anon_sym_nonlocal] = ACTIONS(3371), + [anon_sym_exec] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_AT] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_not] = ACTIONS(3371), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_lambda] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3369), + [anon_sym_None] = ACTIONS(3371), + [sym_integer] = ACTIONS(3371), + [sym_float] = ACTIONS(3369), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_api] = ACTIONS(3371), + [sym_true] = ACTIONS(3371), + [sym_false] = ACTIONS(3371), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3371), + [anon_sym_include] = ACTIONS(3371), + [anon_sym_DEF] = ACTIONS(3371), + [anon_sym_IF] = ACTIONS(3371), + [anon_sym_cdef] = ACTIONS(3371), + [anon_sym_cpdef] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_ctypedef] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_packed] = ACTIONS(3371), + [anon_sym_inline] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_sizeof] = ACTIONS(3371), + [sym__dedent] = ACTIONS(3369), + [sym_string_start] = ACTIONS(3369), + }, + [1154] = { + [sym_finally_clause] = STATE(1608), + [sym_identifier] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_cimport] = ACTIONS(3315), + [anon_sym_from] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3313), + [anon_sym_print] = ACTIONS(3315), + [anon_sym_assert] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_del] = ACTIONS(3315), + [anon_sym_raise] = ACTIONS(3315), + [anon_sym_pass] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_match] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_finally] = ACTIONS(2743), + [anon_sym_with] = ACTIONS(3315), + [anon_sym_def] = ACTIONS(3315), + [anon_sym_global] = ACTIONS(3315), + [anon_sym_nonlocal] = ACTIONS(3315), + [anon_sym_exec] = ACTIONS(3315), + [anon_sym_type] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3313), + [anon_sym_AT] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_PLUS] = ACTIONS(3313), + [anon_sym_not] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_LT] = ACTIONS(3313), + [anon_sym_lambda] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3313), + [anon_sym_None] = ACTIONS(3315), + [sym_integer] = ACTIONS(3315), + [sym_float] = ACTIONS(3313), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_api] = ACTIONS(3315), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3315), + [anon_sym_include] = ACTIONS(3315), + [anon_sym_DEF] = ACTIONS(3315), + [anon_sym_IF] = ACTIONS(3315), + [anon_sym_cdef] = ACTIONS(3315), + [anon_sym_cpdef] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_ctypedef] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_packed] = ACTIONS(3315), + [anon_sym_inline] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_sizeof] = ACTIONS(3315), + [sym__dedent] = ACTIONS(3313), + [sym_string_start] = ACTIONS(3313), + }, + [1155] = { + [sym_else_clause] = STATE(1594), + [ts_builtin_sym_end] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_cimport] = ACTIONS(3437), + [anon_sym_from] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_STAR] = ACTIONS(3439), + [anon_sym_print] = ACTIONS(3437), + [anon_sym_assert] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_del] = ACTIONS(3437), + [anon_sym_raise] = ACTIONS(3437), + [anon_sym_pass] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3437), + [anon_sym_async] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_def] = ACTIONS(3437), + [anon_sym_global] = ACTIONS(3437), + [anon_sym_nonlocal] = ACTIONS(3437), + [anon_sym_exec] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_AT] = ACTIONS(3439), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_not] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(3439), + [anon_sym_LT] = ACTIONS(3439), + [anon_sym_lambda] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3439), + [anon_sym_None] = ACTIONS(3437), + [sym_integer] = ACTIONS(3437), + [sym_float] = ACTIONS(3439), + [anon_sym_await] = ACTIONS(3437), + [anon_sym_api] = ACTIONS(3437), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3437), + [anon_sym_include] = ACTIONS(3437), + [anon_sym_DEF] = ACTIONS(3437), + [anon_sym_IF] = ACTIONS(3437), + [anon_sym_cdef] = ACTIONS(3437), + [anon_sym_cpdef] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_ctypedef] = ACTIONS(3437), + [anon_sym_public] = ACTIONS(3437), + [anon_sym_packed] = ACTIONS(3437), + [anon_sym_inline] = ACTIONS(3437), + [anon_sym_readonly] = ACTIONS(3437), + [anon_sym_sizeof] = ACTIONS(3437), + [sym_string_start] = ACTIONS(3439), + }, + [1156] = { + [sym_else_clause] = STATE(1603), + [ts_builtin_sym_end] = ACTIONS(3397), + [sym_identifier] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_cimport] = ACTIONS(3395), + [anon_sym_from] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_print] = ACTIONS(3395), + [anon_sym_assert] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_del] = ACTIONS(3395), + [anon_sym_raise] = ACTIONS(3395), + [anon_sym_pass] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_else] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_def] = ACTIONS(3395), + [anon_sym_global] = ACTIONS(3395), + [anon_sym_nonlocal] = ACTIONS(3395), + [anon_sym_exec] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_AT] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_PLUS] = ACTIONS(3397), + [anon_sym_not] = ACTIONS(3395), + [anon_sym_AMP] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_lambda] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3397), + [anon_sym_None] = ACTIONS(3395), + [sym_integer] = ACTIONS(3395), + [sym_float] = ACTIONS(3397), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_api] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3395), + [anon_sym_include] = ACTIONS(3395), + [anon_sym_DEF] = ACTIONS(3395), + [anon_sym_IF] = ACTIONS(3395), + [anon_sym_cdef] = ACTIONS(3395), + [anon_sym_cpdef] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_ctypedef] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_packed] = ACTIONS(3395), + [anon_sym_inline] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_sizeof] = ACTIONS(3395), + [sym_string_start] = ACTIONS(3397), + }, + [1157] = { + [ts_builtin_sym_end] = ACTIONS(1589), + [sym_identifier] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_import] = ACTIONS(1587), + [anon_sym_cimport] = ACTIONS(1587), + [anon_sym_from] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_print] = ACTIONS(1587), + [anon_sym_assert] = ACTIONS(1587), + [anon_sym_return] = ACTIONS(1587), + [anon_sym_del] = ACTIONS(1587), + [anon_sym_raise] = ACTIONS(1587), + [anon_sym_pass] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(3459), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_try] = ACTIONS(1587), + [anon_sym_with] = ACTIONS(1587), + [anon_sym_def] = ACTIONS(1587), + [anon_sym_global] = ACTIONS(1587), + [anon_sym_nonlocal] = ACTIONS(1587), + [anon_sym_exec] = ACTIONS(1587), + [anon_sym_type] = ACTIONS(1587), + [anon_sym_class] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_AT] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_not] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_LT] = ACTIONS(1589), + [anon_sym_lambda] = ACTIONS(1587), + [anon_sym_yield] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1589), + [anon_sym_None] = ACTIONS(1587), + [sym_integer] = ACTIONS(1587), + [sym_float] = ACTIONS(1589), + [anon_sym_await] = ACTIONS(1587), + [anon_sym_api] = ACTIONS(1587), + [sym_true] = ACTIONS(1587), + [sym_false] = ACTIONS(1587), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(1587), + [anon_sym_include] = ACTIONS(1587), + [anon_sym_DEF] = ACTIONS(1587), + [anon_sym_IF] = ACTIONS(1587), + [anon_sym_cdef] = ACTIONS(1587), + [anon_sym_cpdef] = ACTIONS(1587), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_ctypedef] = ACTIONS(1587), + [anon_sym_public] = ACTIONS(1587), + [anon_sym_packed] = ACTIONS(1587), + [anon_sym_inline] = ACTIONS(1587), + [anon_sym_readonly] = ACTIONS(1587), + [anon_sym_sizeof] = ACTIONS(1587), + [sym_string_start] = ACTIONS(1589), + }, + [1158] = { + [sym_else_clause] = STATE(1578), + [sym_identifier] = ACTIONS(3431), + [anon_sym_import] = ACTIONS(3431), + [anon_sym_cimport] = ACTIONS(3431), + [anon_sym_from] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3429), + [anon_sym_print] = ACTIONS(3431), + [anon_sym_assert] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_del] = ACTIONS(3431), + [anon_sym_raise] = ACTIONS(3431), + [anon_sym_pass] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_with] = ACTIONS(3431), + [anon_sym_def] = ACTIONS(3431), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_nonlocal] = ACTIONS(3431), + [anon_sym_exec] = ACTIONS(3431), + [anon_sym_type] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_AT] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_not] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_lambda] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), + [anon_sym_None] = ACTIONS(3431), + [sym_integer] = ACTIONS(3431), + [sym_float] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3431), + [anon_sym_api] = ACTIONS(3431), + [sym_true] = ACTIONS(3431), + [sym_false] = ACTIONS(3431), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3431), + [anon_sym_include] = ACTIONS(3431), + [anon_sym_DEF] = ACTIONS(3431), + [anon_sym_IF] = ACTIONS(3431), + [anon_sym_cdef] = ACTIONS(3431), + [anon_sym_cpdef] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_ctypedef] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_packed] = ACTIONS(3431), + [anon_sym_inline] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_sizeof] = ACTIONS(3431), + [sym__dedent] = ACTIONS(3429), + [sym_string_start] = ACTIONS(3429), + }, + [1159] = { + [sym_else_clause] = STATE(1434), + [sym_identifier] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3365), + [anon_sym_cimport] = ACTIONS(3365), + [anon_sym_from] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_print] = ACTIONS(3365), + [anon_sym_assert] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3365), + [anon_sym_del] = ACTIONS(3365), + [anon_sym_raise] = ACTIONS(3365), + [anon_sym_pass] = ACTIONS(3365), + [anon_sym_break] = ACTIONS(3365), + [anon_sym_continue] = ACTIONS(3365), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_try] = ACTIONS(3365), + [anon_sym_with] = ACTIONS(3365), + [anon_sym_def] = ACTIONS(3365), + [anon_sym_global] = ACTIONS(3365), + [anon_sym_nonlocal] = ACTIONS(3365), + [anon_sym_exec] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_class] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_not] = ACTIONS(3365), + [anon_sym_AMP] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_lambda] = ACTIONS(3365), + [anon_sym_yield] = ACTIONS(3365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3363), + [anon_sym_None] = ACTIONS(3365), + [sym_integer] = ACTIONS(3365), + [sym_float] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3365), + [anon_sym_api] = ACTIONS(3365), + [sym_true] = ACTIONS(3365), + [sym_false] = ACTIONS(3365), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3365), + [anon_sym_include] = ACTIONS(3365), + [anon_sym_DEF] = ACTIONS(3365), + [anon_sym_IF] = ACTIONS(3365), + [anon_sym_cdef] = ACTIONS(3365), + [anon_sym_cpdef] = ACTIONS(3365), + [anon_sym_new] = ACTIONS(3365), + [anon_sym_ctypedef] = ACTIONS(3365), + [anon_sym_public] = ACTIONS(3365), + [anon_sym_packed] = ACTIONS(3365), + [anon_sym_inline] = ACTIONS(3365), + [anon_sym_readonly] = ACTIONS(3365), + [anon_sym_sizeof] = ACTIONS(3365), + [sym__dedent] = ACTIONS(3363), + [sym_string_start] = ACTIONS(3363), + }, + [1160] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1161] = { + [sym_named_expression] = STATE(2686), + [sym__named_expression_lhs] = STATE(5744), + [sym_list_splat_pattern] = STATE(2736), + [sym_as_pattern] = STATE(2686), + [sym_expression] = STATE(4105), + [sym_primary_expression] = STATE(2195), + [sym_not_operator] = STATE(2686), + [sym_boolean_operator] = STATE(2686), + [sym_binary_operator] = STATE(2685), + [sym_unary_operator] = STATE(2685), + [sym_comparison_operator] = STATE(2686), + [sym_lambda] = STATE(2686), + [sym_attribute] = STATE(2685), + [sym_subscript] = STATE(2685), + [sym_slice] = STATE(5420), + [sym_ellipsis] = STATE(2685), + [sym_call] = STATE(2685), + [sym_list] = STATE(2685), + [sym_set] = STATE(2685), + [sym_tuple] = STATE(2685), + [sym_dictionary] = STATE(2685), + [sym_list_comprehension] = STATE(2685), + [sym_dictionary_comprehension] = STATE(2685), + [sym_set_comprehension] = STATE(2685), + [sym_generator_expression] = STATE(2685), + [sym_parenthesized_expression] = STATE(2685), + [sym_conditional_expression] = STATE(2686), + [sym_concatenated_string] = STATE(2685), + [sym_string] = STATE(2324), + [sym_none] = STATE(2685), + [sym_await] = STATE(2685), + [sym_new_expression] = STATE(2686), + [sym_sizeof_expression] = STATE(2685), + [sym_cast_expression] = STATE(2685), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_print] = ACTIONS(2719), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_exec] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_RBRACK] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_lambda] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2531), + [anon_sym_None] = ACTIONS(2533), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2535), + [anon_sym_await] = ACTIONS(2731), + [anon_sym_api] = ACTIONS(2719), + [sym_true] = ACTIONS(2515), + [sym_false] = ACTIONS(2515), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_string_start] = ACTIONS(2541), + }, + [1162] = { + [sym_else_clause] = STATE(1540), + [sym_identifier] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_cimport] = ACTIONS(3259), + [anon_sym_from] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_print] = ACTIONS(3259), + [anon_sym_assert] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_del] = ACTIONS(3259), + [anon_sym_raise] = ACTIONS(3259), + [anon_sym_pass] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_with] = ACTIONS(3259), + [anon_sym_def] = ACTIONS(3259), + [anon_sym_global] = ACTIONS(3259), + [anon_sym_nonlocal] = ACTIONS(3259), + [anon_sym_exec] = ACTIONS(3259), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_not] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_lambda] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3257), + [anon_sym_None] = ACTIONS(3259), + [sym_integer] = ACTIONS(3259), + [sym_float] = ACTIONS(3257), + [anon_sym_await] = ACTIONS(3259), + [anon_sym_api] = ACTIONS(3259), + [sym_true] = ACTIONS(3259), + [sym_false] = ACTIONS(3259), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [anon_sym_property] = ACTIONS(3259), + [anon_sym_include] = ACTIONS(3259), + [anon_sym_DEF] = ACTIONS(3259), + [anon_sym_IF] = ACTIONS(3259), + [anon_sym_cdef] = ACTIONS(3259), + [anon_sym_cpdef] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_ctypedef] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_packed] = ACTIONS(3259), + [anon_sym_inline] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_sizeof] = ACTIONS(3259), + [sym__dedent] = ACTIONS(3257), + [sym_string_start] = ACTIONS(3257), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 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(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(3964), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3277), 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(824), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3492), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_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] = 27, - ACTIONS(2511), 1, - anon_sym_LPAREN, + [0] = 28, ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(2679), 1, + ACTIONS(2725), 1, anon_sym_not, - ACTIONS(2681), 1, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2729), 1, anon_sym_lambda, - ACTIONS(2685), 1, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(2687), 1, + ACTIONS(2733), 1, anon_sym_new, - ACTIONS(3001), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2177), 1, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2324), 1, sym_string, - STATE(2642), 1, + STATE(2736), 1, sym_list_splat_pattern, - STATE(4350), 1, + STATE(4105), 1, sym_expression, - STATE(5721), 1, + STATE(5420), 1, + sym_slice, + STATE(5744), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2509), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -122768,7 +129958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -122789,199 +129979,147 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [238] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(4109), 1, - sym_expression, - STATE(5366), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, + [121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, + ACTIONS(1809), 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(2673), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1807), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_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] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2685), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2687), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3960), 1, - sym_expression, - STATE(5066), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, + ACTIONS(1813), 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(2673), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1811), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [480] = 4, - ACTIONS(3281), 1, - anon_sym_COLON, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [263] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1553), 15, + ACTIONS(1969), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -122997,7 +130135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1551), 46, + ACTIONS(1967), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123035,6 +130173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -123044,109 +130183,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [553] = 27, - ACTIONS(1360), 1, - anon_sym_LBRACE, - ACTIONS(1362), 1, - anon_sym_not, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, - anon_sym_None, - ACTIONS(1376), 1, - sym_float, - ACTIONS(1382), 1, - anon_sym_new, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(1394), 1, - sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, - anon_sym_STAR, - ACTIONS(3043), 1, - anon_sym_lambda, - STATE(2122), 1, - sym_primary_expression, - STATE(2202), 1, - sym_string, - STATE(2604), 1, - sym_list_splat_pattern, - STATE(3978), 1, - sym_expression, - STATE(5800), 1, - sym__named_expression_lhs, + [334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4433), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1374), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1358), 4, + ACTIONS(1973), 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(1502), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1971), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2579), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2556), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [672] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1544), 1, - sym_else_clause, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [405] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 14, + ACTIONS(1977), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -123159,7 +130271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3285), 46, + ACTIONS(1975), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123197,6 +130309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -123206,17 +130319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [747] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1549), 1, - sym_else_clause, + [476] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3287), 14, + ACTIONS(1981), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -123229,7 +130339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3289), 46, + ACTIONS(1979), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123267,6 +130377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -123276,69 +130387,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [822] = 27, - ACTIONS(2511), 1, + [547] = 27, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2679), 1, + ACTIONS(2599), 1, anon_sym_not, - ACTIONS(2681), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, + ACTIONS(2609), 1, anon_sym_new, - ACTIONS(3001), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2177), 1, + ACTIONS(3107), 1, + anon_sym_lambda, + STATE(2168), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2283), 1, sym_string, - STATE(2642), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(4226), 1, + STATE(4047), 1, sym_expression, - STATE(5721), 1, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2509), 3, + STATE(4345), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -123347,7 +130458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -123368,17 +130479,14 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [941] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1556), 1, - sym_else_clause, + [666] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3291), 14, + ACTIONS(1625), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -123391,7 +130499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3293), 46, + ACTIONS(1623), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123429,6 +130537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -123438,17 +130547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1016] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1557), 1, - sym_else_clause, + [737] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 14, + ACTIONS(1989), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -123461,7 +130567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3297), 46, + ACTIONS(1987), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123499,6 +130605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -123508,13 +130615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1091] = 3, + [808] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 14, - sym__dedent, + ACTIONS(1993), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -123527,7 +130635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3299), 48, + ACTIONS(1991), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123540,8 +130648,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, @@ -123567,6 +130673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -123576,17 +130683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1162] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1672), 1, - sym_else_clause, + [879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 14, - sym__dedent, + ACTIONS(1997), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -123599,7 +130703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3303), 46, + ACTIONS(1995), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123637,6 +130741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -123646,17 +130751,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1237] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1673), 1, - sym_else_clause, + [950] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3309), 14, - sym__dedent, + ACTIONS(2001), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -123669,7 +130771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3307), 46, + ACTIONS(1999), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123707,6 +130809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -123716,17 +130819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1312] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1677), 1, - sym_else_clause, + [1021] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3313), 14, - sym__dedent, + ACTIONS(2005), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -123739,7 +130839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3311), 46, + ACTIONS(2003), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -123777,6 +130877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -123786,382 +130887,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1387] = 27, - ACTIONS(1360), 1, + [1092] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2009), 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, - ACTIONS(1362), 1, - anon_sym_not, - ACTIONS(1364), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, - anon_sym_None, - ACTIONS(1376), 1, sym_float, - ACTIONS(1382), 1, + ACTIONS(2007), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1392), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1394), 1, - sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, - anon_sym_STAR, - ACTIONS(3043), 1, - anon_sym_lambda, - STATE(2122), 1, - sym_primary_expression, - STATE(2202), 1, - sym_string, - STATE(2604), 1, - sym_list_splat_pattern, - STATE(4018), 1, - sym_expression, - STATE(5800), 1, - sym__named_expression_lhs, + [1163] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4334), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1374), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1358), 4, + ACTIONS(1969), 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(1502), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1967), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2579), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2556), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [1506] = 28, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1275), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1277), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3315), 1, - anon_sym_LPAREN, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4233), 1, - sym_expression, - STATE(5028), 1, - sym_with_item, - STATE(5508), 1, - sym_with_clause, - STATE(5559), 1, - sym__named_expression_lhs, + [1234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, + ACTIONS(2013), 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(1249), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [1627] = 27, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(4328), 1, - sym_expression, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3317), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2011), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [1746] = 27, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_LBRACE, - ACTIONS(2453), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, - anon_sym_None, - ACTIONS(2457), 1, - sym_float, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, - sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2595), 1, - anon_sym_await, - ACTIONS(2597), 1, - anon_sym_new, - ACTIONS(3076), 1, - anon_sym_STAR, - ACTIONS(3078), 1, anon_sym_lambda, - STATE(2119), 1, - sym_primary_expression, - STATE(2193), 1, - sym_string, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(3956), 1, - sym_expression, - STATE(5491), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4273), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2437), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2447), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2581), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [1865] = 4, - ACTIONS(3319), 1, - anon_sym_COLON, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [1305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1547), 15, + ACTIONS(2017), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -124177,7 +131111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1545), 46, + ACTIONS(2015), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124215,6 +131149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -124224,105 +131159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [1938] = 27, - ACTIONS(1360), 1, - anon_sym_LBRACE, - ACTIONS(1362), 1, - anon_sym_not, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, - anon_sym_None, - ACTIONS(1376), 1, - sym_float, - ACTIONS(1382), 1, - anon_sym_new, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(1394), 1, - sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, - anon_sym_STAR, - ACTIONS(3043), 1, - anon_sym_lambda, - STATE(2122), 1, - sym_primary_expression, - STATE(2202), 1, - sym_string, - STATE(2604), 1, - sym_list_splat_pattern, - STATE(4018), 1, - sym_expression, - STATE(5800), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4256), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1374), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1358), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1502), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2579), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2556), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [2057] = 3, + [1376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3321), 14, + ACTIONS(1793), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -124335,7 +131179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3323), 48, + ACTIONS(1791), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124348,8 +131192,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, @@ -124375,6 +131217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -124384,17 +131227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2128] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1738), 1, - sym_else_clause, + [1447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3325), 14, + ACTIONS(2021), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -124407,7 +131247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3327), 46, + ACTIONS(2019), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124445,6 +131285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -124454,17 +131295,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2203] = 3, + [1518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 16, + ACTIONS(2025), 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, @@ -124475,7 +131315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1585), 46, + ACTIONS(2023), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124513,6 +131353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -124522,17 +131363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2274] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1579), 1, - sym_else_clause, + [1589] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3329), 14, + ACTIONS(1817), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -124545,7 +131383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3331), 46, + ACTIONS(1815), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124583,6 +131421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -124592,105 +131431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2349] = 27, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, - anon_sym_LBRACE, - ACTIONS(1420), 1, - anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, - anon_sym_lambda, - ACTIONS(1426), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, - anon_sym_None, - ACTIONS(1432), 1, - sym_float, - ACTIONS(1436), 1, - anon_sym_new, - ACTIONS(1438), 1, - anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4258), 1, - sym_expression, - STATE(5581), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3085), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1430), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1416), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1599), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [2468] = 4, - ACTIONS(3333), 1, - anon_sym_COLON, + [1660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 15, + ACTIONS(2029), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -124706,7 +131451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1563), 46, + ACTIONS(2027), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124744,6 +131489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -124753,105 +131499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2541] = 27, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_LBRACE, - ACTIONS(2453), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, - anon_sym_None, - ACTIONS(2457), 1, - sym_float, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, - sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, - anon_sym_not, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2595), 1, - anon_sym_await, - ACTIONS(2597), 1, - anon_sym_new, - ACTIONS(3076), 1, - anon_sym_STAR, - ACTIONS(3078), 1, - anon_sym_lambda, - STATE(2119), 1, - sym_primary_expression, - STATE(2193), 1, - sym_string, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(3956), 1, - sym_expression, - STATE(5491), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4331), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2437), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2447), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2581), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [2660] = 3, + [1731] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3337), 14, - sym__dedent, + ACTIONS(2205), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -124864,7 +131519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3335), 48, + ACTIONS(2203), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124877,8 +131532,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, @@ -124904,6 +131557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -124913,17 +131567,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2731] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1692), 1, - sym_else_clause, + [1802] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3341), 14, - sym__dedent, + ACTIONS(2209), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -124936,7 +131587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3339), 46, + ACTIONS(2207), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -124974,6 +131625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -124983,17 +131635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2806] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1694), 1, - sym_else_clause, + [1873] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3345), 14, - sym__dedent, + ACTIONS(2213), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -125006,7 +131655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3343), 46, + ACTIONS(2211), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125044,6 +131693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -125053,294 +131703,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [2881] = 27, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(2497), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, - anon_sym_None, - ACTIONS(2501), 1, - sym_float, - ACTIONS(2505), 1, - anon_sym_sizeof, - ACTIONS(2507), 1, - sym_string_start, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2841), 1, - sym_identifier, - ACTIONS(2849), 1, - anon_sym_await, - ACTIONS(3033), 1, - anon_sym_STAR, - ACTIONS(3039), 1, - anon_sym_lambda, - STATE(2127), 1, - sym_primary_expression, - STATE(2229), 1, - sym_string, - STATE(2546), 1, - sym_list_splat_pattern, - STATE(4015), 1, - sym_expression, - STATE(5737), 1, - sym__named_expression_lhs, + [1944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4224), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2481), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2491), 4, + ACTIONS(1821), 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(2845), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1819), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2536), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2512), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [3000] = 28, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1275), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1277), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3347), 1, - anon_sym_COLON, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4233), 1, - sym_expression, - STATE(5444), 1, - sym_with_item, - STATE(5559), 1, - sym__named_expression_lhs, + [2015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, + ACTIONS(1793), 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(1249), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1791), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [3121] = 27, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_LBRACE, - ACTIONS(2453), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, - anon_sym_None, - ACTIONS(2457), 1, - sym_float, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, - sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2595), 1, - anon_sym_await, - ACTIONS(2597), 1, - anon_sym_new, - ACTIONS(3076), 1, - anon_sym_STAR, - ACTIONS(3078), 1, anon_sym_lambda, - STATE(2119), 1, - sym_primary_expression, - STATE(2193), 1, - sym_string, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(3959), 1, - sym_expression, - STATE(5491), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4388), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2437), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2447), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2581), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [3240] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1583), 1, - sym_else_clause, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [2086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3349), 14, + ACTIONS(1825), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -125353,7 +131859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3351), 46, + ACTIONS(1823), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125391,6 +131897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -125400,105 +131907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3315] = 27, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_LBRACE, - ACTIONS(2453), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, - anon_sym_None, - ACTIONS(2457), 1, - sym_float, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, - sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, - anon_sym_not, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2595), 1, - anon_sym_await, - ACTIONS(2597), 1, - anon_sym_new, - ACTIONS(3076), 1, - anon_sym_STAR, - ACTIONS(3078), 1, - anon_sym_lambda, - STATE(2119), 1, - sym_primary_expression, - STATE(2193), 1, - sym_string, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(3985), 1, - sym_expression, - STATE(5491), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4443), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2437), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2447), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2581), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [3434] = 4, - ACTIONS(3353), 1, - anon_sym_COLON, + [2157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1577), 15, + ACTIONS(2033), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -125514,7 +131927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1575), 46, + ACTIONS(2031), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125552,6 +131965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -125561,17 +131975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3507] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1705), 1, - sym_else_clause, + [2228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3357), 14, - sym__dedent, + ACTIONS(2037), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -125584,7 +131995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3355), 46, + ACTIONS(2035), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125622,6 +132033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -125631,17 +132043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3582] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1586), 1, - sym_else_clause, + [2299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3359), 14, + ACTIONS(2041), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -125654,7 +132063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3361), 46, + ACTIONS(2039), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -125692,6 +132101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -125701,161 +132111,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [3657] = 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(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4079), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3363), 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(824), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3492), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [3776] = 27, - ACTIONS(2439), 1, + [2370] = 27, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, + ACTIONS(2599), 1, anon_sym_not, - ACTIONS(2589), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(2595), 1, - anon_sym_await, - ACTIONS(2597), 1, + ACTIONS(2609), 1, anon_sym_new, - ACTIONS(3076), 1, + ACTIONS(2913), 1, + sym_identifier, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3078), 1, + ACTIONS(3107), 1, anon_sym_lambda, - STATE(2119), 1, + STATE(2168), 1, sym_primary_expression, - STATE(2193), 1, + STATE(2283), 1, sym_string, - STATE(2449), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(3956), 1, + STATE(4059), 1, sym_expression, - STATE(5491), 1, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4389), 2, + STATE(4538), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(2437), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -125864,7 +132182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2328), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -125885,105 +132203,82 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [3895] = 27, - ACTIONS(1360), 1, - anon_sym_LBRACE, - ACTIONS(1362), 1, - anon_sym_not, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, - anon_sym_None, - ACTIONS(1376), 1, - sym_float, - ACTIONS(1382), 1, - anon_sym_new, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(1394), 1, - sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, - anon_sym_STAR, - ACTIONS(3043), 1, - anon_sym_lambda, - STATE(2122), 1, - sym_primary_expression, - STATE(2202), 1, - sym_string, - STATE(2604), 1, - sym_list_splat_pattern, - STATE(4017), 1, - sym_expression, - STATE(5800), 1, - sym__named_expression_lhs, + [2489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4514), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1374), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1358), 4, + ACTIONS(2217), 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(1502), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2215), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2579), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2556), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [4014] = 3, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [2560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 14, + ACTIONS(2045), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -125996,7 +132291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3299), 48, + ACTIONS(2043), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126009,8 +132304,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, @@ -126036,6 +132329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -126045,17 +132339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4085] = 5, - ACTIONS(2793), 1, - anon_sym_finally, - STATE(1656), 1, - sym_finally_clause, + [2631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3365), 14, + ACTIONS(2373), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -126068,7 +132359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3367), 46, + ACTIONS(2371), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126106,6 +132397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -126115,17 +132407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4160] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1664), 1, - sym_else_clause, + [2702] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 14, + ACTIONS(2221), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -126138,7 +132427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3303), 46, + ACTIONS(2219), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126176,6 +132465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -126185,17 +132475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4235] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1665), 1, - sym_else_clause, + [2773] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3309), 14, + ACTIONS(2377), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -126208,7 +132495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3307), 46, + ACTIONS(2375), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126246,6 +132533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -126255,110 +132543,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4310] = 28, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, - anon_sym_LBRACE, - ACTIONS(1420), 1, - anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, - anon_sym_lambda, - ACTIONS(1426), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, - anon_sym_None, - ACTIONS(1432), 1, - sym_float, - ACTIONS(1436), 1, - anon_sym_new, - ACTIONS(1438), 1, - anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3369), 1, - anon_sym_RPAREN, - STATE(2221), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4279), 1, - sym_expression, - STATE(5387), 1, - sym_with_item, - STATE(5581), 1, - sym__named_expression_lhs, + [2844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1416), 4, + ACTIONS(2225), 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(1599), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2223), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [4431] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1668), 1, - sym_else_clause, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [2915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3313), 14, + ACTIONS(2381), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -126371,7 +132631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3311), 46, + ACTIONS(2379), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -126409,6 +132669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -126418,565 +132679,354 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [4506] = 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(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4079), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, + [2986] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3371), 2, - sym__newline, + ACTIONS(2049), 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(824), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2047), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(3492), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [4625] = 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(809), 1, + sym_integer, sym_identifier, - ACTIONS(849), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4079), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [3057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3373), 2, - sym__newline, + ACTIONS(2053), 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(824), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2051), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(3492), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [4744] = 28, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1275), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1277), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3375), 1, - anon_sym_COLON, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4233), 1, - sym_expression, - STATE(5444), 1, - sym_with_item, - STATE(5559), 1, - sym__named_expression_lhs, + [3128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, + ACTIONS(2057), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2055), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [4865] = 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(809), 1, + sym_integer, sym_identifier, - ACTIONS(849), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4079), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [3199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3377), 2, - sym__newline, + ACTIONS(2061), 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(824), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2059), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(3492), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [4984] = 27, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2685), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2687), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(4300), 1, - sym_expression, - STATE(5721), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [3270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, + ACTIONS(2065), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2063), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [5103] = 22, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(1334), 1, - anon_sym_STAR, - ACTIONS(1342), 1, - anon_sym_LT, - ACTIONS(1344), 1, - anon_sym_await, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3290), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(813), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1269), 4, sym_integer, sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1340), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(847), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1336), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(811), 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(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [5212] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1752), 1, - sym_else_clause, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [3341] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3379), 14, + ACTIONS(2069), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -126989,7 +133039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3381), 46, + ACTIONS(2067), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127027,6 +133077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -127036,201 +133087,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [5287] = 27, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(2497), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, - anon_sym_None, - ACTIONS(2501), 1, - sym_float, - ACTIONS(2505), 1, - anon_sym_sizeof, - ACTIONS(2507), 1, - sym_string_start, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2841), 1, - sym_identifier, - ACTIONS(2849), 1, - anon_sym_await, - ACTIONS(3033), 1, - anon_sym_STAR, - ACTIONS(3039), 1, - anon_sym_lambda, - STATE(2127), 1, - sym_primary_expression, - STATE(2229), 1, - sym_string, - STATE(2546), 1, - sym_list_splat_pattern, - STATE(4015), 1, - sym_expression, - STATE(5737), 1, - sym__named_expression_lhs, + [3412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4263), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2481), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2491), 4, + ACTIONS(2397), 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(2845), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2395), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2536), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2512), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [5406] = 27, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(4300), 1, - sym_expression, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3085), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2509), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [5525] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1754), 1, - sym_else_clause, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [3483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3383), 14, + ACTIONS(2077), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -127243,7 +133175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3385), 46, + ACTIONS(2075), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127281,6 +133213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -127290,110 +133223,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [5600] = 28, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3143), 1, - anon_sym_COLON, - ACTIONS(3167), 1, - anon_sym_by, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4046), 1, - sym_expression, - STATE(5559), 1, - sym__named_expression_lhs, + [3554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, + ACTIONS(2081), 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(1249), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2079), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [5721] = 5, - ACTIONS(2793), 1, - anon_sym_finally, - STATE(1763), 1, - sym_finally_clause, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [3625] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 14, + ACTIONS(2085), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -127406,7 +133311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3389), 46, + ACTIONS(2083), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127444,6 +133349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -127453,465 +133359,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [5796] = 27, - ACTIONS(1414), 1, + [3696] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2089), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1418), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1420), 1, - anon_sym_not, - ACTIONS(1422), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1424), 1, - anon_sym_lambda, - ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, - anon_sym_None, - ACTIONS(1432), 1, sym_float, - ACTIONS(1436), 1, - anon_sym_new, - ACTIONS(1438), 1, - anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4258), 1, - sym_expression, - STATE(5581), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3143), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1430), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1416), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(2087), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [5915] = 23, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(1334), 1, - anon_sym_STAR, - ACTIONS(1342), 1, - anon_sym_LT, - ACTIONS(1344), 1, - anon_sym_await, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3290), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(813), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(3393), 2, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_or, - ACTIONS(3391), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1269), 4, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1340), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1336), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(811), 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(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [6026] = 23, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1277), 1, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + 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(1279), 1, - sym_string_start, - ACTIONS(1334), 1, - anon_sym_STAR, - ACTIONS(1342), 1, - anon_sym_LT, - ACTIONS(1344), 1, - anon_sym_await, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3290), 1, - sym_primary_expression, + [3767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1332), 2, - anon_sym_not, - anon_sym_or, - ACTIONS(1327), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1269), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1340), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1336), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - ACTIONS(811), 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(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [6137] = 22, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2093), 15, sym_string_start, - ACTIONS(1334), 1, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(1342), 1, - anon_sym_LT, - ACTIONS(1344), 1, - anon_sym_await, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3290), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1329), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1269), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1340), 4, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1327), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1336), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2091), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - ACTIONS(1530), 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(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [6246] = 28, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3085), 1, - anon_sym_COLON, - ACTIONS(3227), 1, - anon_sym_by, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4046), 1, - sym_expression, - STATE(5559), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1269), 3, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1249), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [6367] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1510), 1, - sym_else_clause, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [3838] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3397), 14, - sym__dedent, + ACTIONS(2229), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -127924,7 +133515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3395), 46, + ACTIONS(2227), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -127962,6 +133553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -127971,17 +133563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6442] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1512), 1, - sym_else_clause, + [3909] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3401), 14, - sym__dedent, + ACTIONS(2097), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -127994,7 +133583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3399), 46, + ACTIONS(2095), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128032,6 +133621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -128041,105 +133631,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6517] = 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(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(3964), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3403), 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(824), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3492), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [6636] = 4, - ACTIONS(3405), 1, - anon_sym_COLON, + [3980] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1535), 15, + ACTIONS(2101), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128155,7 +133651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1533), 46, + ACTIONS(2099), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128193,6 +133689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -128202,17 +133699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6709] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1756), 1, - sym_else_clause, + [4051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3357), 14, + ACTIONS(2105), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -128225,7 +133719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3355), 46, + ACTIONS(2103), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128263,6 +133757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -128272,13 +133767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6784] = 4, - ACTIONS(3407), 1, - anon_sym_COLON, + [4122] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 15, + ACTIONS(2109), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -128294,7 +133787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1557), 46, + ACTIONS(2107), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128332,6 +133825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -128341,17 +133835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6857] = 3, + [4193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 16, + ACTIONS(2233), 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, @@ -128362,7 +133855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1581), 46, + ACTIONS(2231), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128400,6 +133893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -128409,69 +133903,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [6928] = 27, - ACTIONS(2483), 1, + [4264] = 27, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2559), 1, + ACTIONS(2599), 1, anon_sym_not, - ACTIONS(2561), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(2569), 1, + ACTIONS(2609), 1, anon_sym_new, - ACTIONS(2841), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(2849), 1, + ACTIONS(2921), 1, anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3039), 1, + ACTIONS(3107), 1, anon_sym_lambda, - STATE(2127), 1, + STATE(2168), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2283), 1, sym_string, - STATE(2546), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(3935), 1, + STATE(4025), 1, sym_expression, - STATE(5737), 1, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4365), 2, + STATE(4469), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(2481), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -128480,7 +133974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -128501,13 +133995,14 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [7047] = 3, + [4383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3321), 14, - sym__dedent, + ACTIONS(2113), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -128520,7 +134015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3323), 48, + ACTIONS(2111), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128533,8 +134028,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, @@ -128560,6 +134053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -128569,17 +134063,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7118] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1534), 1, - sym_else_clause, + [4454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3329), 14, - sym__dedent, + ACTIONS(2385), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -128592,7 +134083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3331), 46, + ACTIONS(2383), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128630,6 +134121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -128639,17 +134131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7193] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1537), 1, - sym_else_clause, + [4525] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3349), 14, - sym__dedent, + ACTIONS(2237), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -128662,7 +134151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3351), 46, + ACTIONS(2235), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128700,6 +134189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -128709,17 +134199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7268] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1540), 1, - sym_else_clause, + [4596] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3359), 14, - sym__dedent, + ACTIONS(2389), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -128732,7 +134219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3361), 46, + ACTIONS(2387), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128770,6 +134257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -128779,17 +134267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7343] = 5, - ACTIONS(2735), 1, - anon_sym_finally, - STATE(1543), 1, - sym_finally_clause, + [4667] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3365), 14, - sym__dedent, + ACTIONS(2117), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -128802,7 +134287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3367), 46, + ACTIONS(2115), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -128840,6 +134325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -128849,201 +134335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7418] = 27, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(4230), 1, - sym_expression, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3409), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [7537] = 27, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(4293), 1, - sym_expression, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3411), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [7656] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1561), 1, - sym_else_clause, + [4738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3325), 14, - sym__dedent, + ACTIONS(2121), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -129056,7 +134355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3327), 46, + ACTIONS(2119), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129094,6 +134393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -129103,109 +134403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7731] = 27, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(2497), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, - anon_sym_None, - ACTIONS(2501), 1, - sym_float, - ACTIONS(2505), 1, - anon_sym_sizeof, - ACTIONS(2507), 1, - sym_string_start, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2841), 1, - sym_identifier, - ACTIONS(2849), 1, - anon_sym_await, - ACTIONS(3033), 1, - anon_sym_STAR, - ACTIONS(3039), 1, - anon_sym_lambda, - STATE(2127), 1, - sym_primary_expression, - STATE(2229), 1, - sym_string, - STATE(2546), 1, - sym_list_splat_pattern, - STATE(3943), 1, - sym_expression, - STATE(5737), 1, - sym__named_expression_lhs, + [4809] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4405), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2481), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2491), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2845), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2536), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2512), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [7850] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1566), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3379), 14, - sym__dedent, + ACTIONS(2125), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -129218,7 +134423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3381), 46, + ACTIONS(2123), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129256,6 +134461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -129265,13 +134471,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7925] = 4, - ACTIONS(3413), 1, - anon_sym_COLON, + [4880] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1571), 15, + ACTIONS(2129), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -129287,7 +134491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1569), 46, + ACTIONS(2127), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129325,6 +134529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -129334,17 +134539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [7998] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1567), 1, - sym_else_clause, + [4951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3383), 14, - sym__dedent, + ACTIONS(2133), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -129357,7 +134559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3385), 46, + ACTIONS(2131), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129395,6 +134597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -129404,17 +134607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8073] = 5, - ACTIONS(2735), 1, - anon_sym_finally, - STATE(1570), 1, - sym_finally_clause, + [5022] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 14, - sym__dedent, + ACTIONS(2137), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -129427,7 +134627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3389), 46, + ACTIONS(2135), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129465,6 +134665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -129474,198 +134675,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8148] = 28, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3315), 1, - anon_sym_LPAREN, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4233), 1, - sym_expression, - STATE(5028), 1, - sym_with_item, - STATE(5559), 1, - sym__named_expression_lhs, - STATE(5682), 1, - sym_with_clause, + [5093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, + ACTIONS(2141), 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(1249), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2139), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [8269] = 27, - ACTIONS(1360), 1, - anon_sym_LBRACE, - ACTIONS(1362), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, - anon_sym_None, - ACTIONS(1376), 1, - sym_float, - ACTIONS(1382), 1, - anon_sym_new, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(1394), 1, - sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, - anon_sym_STAR, - ACTIONS(3043), 1, anon_sym_lambda, - STATE(2122), 1, - sym_primary_expression, - STATE(2202), 1, - sym_string, - STATE(2604), 1, - sym_list_splat_pattern, - STATE(4018), 1, - sym_expression, - STATE(5800), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4493), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(1374), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1358), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1502), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2579), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2556), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [8388] = 3, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [5164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3337), 14, + ACTIONS(2145), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -129678,7 +134763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3335), 48, + ACTIONS(2143), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129691,8 +134776,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, @@ -129718,6 +134801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -129727,17 +134811,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8459] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1703), 1, - sym_else_clause, + [5235] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3341), 14, + ACTIONS(2241), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -129750,7 +134831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3339), 46, + ACTIONS(2239), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129788,6 +134869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -129797,110 +134879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8534] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3987), 1, - sym_expression, - STATE(5140), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [8655] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1747), 1, - sym_else_clause, + [5306] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3397), 14, + ACTIONS(2149), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -129913,7 +134899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3395), 46, + ACTIONS(2147), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -129951,6 +134937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -129960,17 +134947,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8730] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1706), 1, - sym_else_clause, + [5377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3345), 14, + ACTIONS(2393), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -129983,7 +134967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3343), 46, + ACTIONS(2391), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -130021,6 +135005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -130030,1132 +135015,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [8805] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3965), 1, - sym_expression, - STATE(5002), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, + [5448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [8926] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1629), 15, sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3966), 1, - sym_expression, - STATE(4826), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [9047] = 27, - ACTIONS(2483), 1, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(2497), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, - anon_sym_None, - ACTIONS(2501), 1, - sym_float, - ACTIONS(2505), 1, - anon_sym_sizeof, - ACTIONS(2507), 1, - sym_string_start, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2841), 1, - sym_identifier, - ACTIONS(2849), 1, - anon_sym_await, - ACTIONS(3033), 1, anon_sym_STAR, - ACTIONS(3039), 1, - anon_sym_lambda, - STATE(2127), 1, - sym_primary_expression, - STATE(2229), 1, - sym_string, - STATE(2546), 1, - sym_list_splat_pattern, - STATE(4015), 1, - sym_expression, - STATE(5737), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4366), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(2481), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2491), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2845), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2536), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2512), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [9166] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(4042), 1, - sym_expression, - STATE(4877), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, + anon_sym_AT, anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [9287] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3983), 1, - sym_expression, - STATE(4908), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [9408] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3944), 1, - sym_expression, - STATE(4933), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [9529] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3946), 1, - sym_expression, - STATE(4960), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(1627), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [9650] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3984), 1, - sym_expression, - STATE(4981), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2509), 3, + anon_sym_yield, + anon_sym_None, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [9771] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(4024), 1, - sym_expression, - STATE(4997), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [5519] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [9892] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2153), 15, sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(4037), 1, - sym_expression, - STATE(5012), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [10013] = 28, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3153), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3953), 1, - sym_expression, - STATE(5022), 1, - sym_slice, - STATE(5721), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2151), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [10134] = 28, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3315), 1, - anon_sym_LPAREN, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4233), 1, - sym_expression, - STATE(5028), 1, - sym_with_item, - STATE(5559), 1, - sym__named_expression_lhs, - STATE(5640), 1, - sym_with_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1269), 3, sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1249), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [10255] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1589), 1, - sym_else_clause, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [5590] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 14, - sym__dedent, + ACTIONS(2157), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -131168,7 +135171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3285), 46, + ACTIONS(2155), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131206,6 +135209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -131215,110 +135219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10330] = 28, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3315), 1, - anon_sym_LPAREN, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4233), 1, - sym_expression, - STATE(5028), 1, - sym_with_item, - STATE(5559), 1, - sym__named_expression_lhs, - STATE(5679), 1, - sym_with_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1249), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [10451] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1590), 1, - sym_else_clause, + [5661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3287), 14, - sym__dedent, + ACTIONS(2073), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -131331,7 +135239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3289), 46, + ACTIONS(2071), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131369,6 +135277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -131378,17 +135287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10526] = 5, - ACTIONS(2789), 1, - anon_sym_else, - STATE(1757), 1, - sym_else_clause, + [5732] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3401), 14, + ACTIONS(1761), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -131401,7 +135307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3399), 46, + ACTIONS(1759), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131439,6 +135345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -131448,17 +135355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10601] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1594), 1, - sym_else_clause, + [5803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3291), 14, - sym__dedent, + ACTIONS(1985), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -131471,7 +135375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3293), 46, + ACTIONS(1983), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131509,6 +135413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -131518,69 +135423,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10676] = 27, - ACTIONS(1975), 1, + [5874] = 27, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2599), 1, + anon_sym_not, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(2609), 1, + anon_sym_new, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2921), 1, anon_sym_await, - ACTIONS(2995), 1, - anon_sym_not, - ACTIONS(2997), 1, + ACTIONS(3105), 1, + anon_sym_STAR, + ACTIONS(3107), 1, anon_sym_lambda, - ACTIONS(2999), 1, - anon_sym_new, - STATE(2117), 1, + STATE(2168), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2283), 1, sym_string, - STATE(2421), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(4354), 1, + STATE(4047), 1, sym_expression, - STATE(5757), 1, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1973), 3, + STATE(4540), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -131589,7 +135494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -131610,109 +135515,14 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [10795] = 27, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, - anon_sym_LBRACE, - ACTIONS(1989), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, - anon_sym_None, - ACTIONS(1993), 1, - sym_float, - ACTIONS(1997), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, - sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, - anon_sym_await, - ACTIONS(2995), 1, - anon_sym_not, - ACTIONS(2997), 1, - anon_sym_lambda, - ACTIONS(2999), 1, - anon_sym_new, - STATE(2117), 1, - sym_primary_expression, - STATE(2153), 1, - sym_string, - STATE(2421), 1, - sym_list_splat_pattern, - STATE(4354), 1, - sym_expression, - STATE(5757), 1, - sym__named_expression_lhs, + [5993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3085), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1973), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1983), 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(3906), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2347), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [10914] = 5, - ACTIONS(2731), 1, - anon_sym_else, - STATE(1595), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3295), 14, - sym__dedent, + ACTIONS(1829), 15, sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -131725,7 +135535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3297), 46, + ACTIONS(1827), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131763,6 +135573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -131772,106 +135583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [10989] = 28, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, - anon_sym_LBRACE, - ACTIONS(1420), 1, - anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, - anon_sym_lambda, - ACTIONS(1426), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, - anon_sym_None, - ACTIONS(1432), 1, - sym_float, - ACTIONS(1436), 1, - anon_sym_new, - ACTIONS(1438), 1, - anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_RPAREN, - STATE(2221), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4279), 1, - sym_expression, - STATE(5387), 1, - sym_with_item, - STATE(5581), 1, - sym__named_expression_lhs, + [6064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1416), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1599), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [11110] = 4, - ACTIONS(3417), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1541), 15, + ACTIONS(1685), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131887,7 +135603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1539), 46, + ACTIONS(1683), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131925,6 +135641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -131934,11 +135651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11183] = 3, + [6135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 15, + ACTIONS(1689), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -131954,7 +135671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1685), 46, + ACTIONS(1687), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -131992,6 +135709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132001,11 +135719,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11253] = 3, + [6206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 15, + ACTIONS(1693), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132021,7 +135739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1809), 46, + ACTIONS(1691), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132059,6 +135777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132068,11 +135787,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11323] = 3, + [6277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 15, + ACTIONS(1833), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132088,7 +135807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1813), 46, + ACTIONS(1831), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132126,6 +135845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132135,11 +135855,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11393] = 3, + [6348] = 27, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4355), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1819), 15, + ACTIONS(3465), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2719), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6467] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1837), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132155,7 +135967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1817), 46, + ACTIONS(1835), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132193,6 +136005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132202,11 +136015,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11463] = 3, + [6538] = 28, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3247), 1, + anon_sym_COLON, + ACTIONS(3443), 1, + anon_sym_by, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4125), 1, + sym_expression, + STATE(5695), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1283), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2087), 15, + ACTIONS(1841), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132222,7 +136128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2085), 46, + ACTIONS(1839), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132260,6 +136166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132269,11 +136176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11533] = 3, + [6730] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1939), 15, + ACTIONS(1845), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132289,7 +136196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1937), 46, + ACTIONS(1843), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132327,6 +136234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132336,11 +136244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11603] = 3, + [6801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1823), 15, + ACTIONS(1697), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132356,7 +136264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1821), 46, + ACTIONS(1695), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132394,6 +136302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132403,11 +136312,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11673] = 3, + [6872] = 23, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(1368), 1, + anon_sym_STAR, + ACTIONS(1376), 1, + anon_sym_LT, + ACTIONS(1378), 1, + anon_sym_await, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(3299), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2091), 15, + ACTIONS(859), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(3469), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(3467), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1303), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1374), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1370), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(857), 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(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [6983] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1701), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132423,7 +136420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2089), 46, + ACTIONS(1699), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132461,6 +136458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132470,11 +136468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11743] = 3, + [7054] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2095), 15, + ACTIONS(1849), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132490,7 +136488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2093), 46, + ACTIONS(1847), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132528,6 +136526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132537,68 +136536,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [11813] = 27, - ACTIONS(1414), 1, + [7125] = 28, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1436), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(1601), 1, + ACTIONS(3161), 1, + anon_sym_COLON, + ACTIONS(3379), 1, + anon_sym_by, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4125), 1, + sym_expression, + STATE(5695), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1283), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7246] = 27, + ACTIONS(1394), 1, + anon_sym_LBRACE, + ACTIONS(1396), 1, + anon_sym_not, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1406), 1, + anon_sym_None, + ACTIONS(1410), 1, + sym_float, + ACTIONS(1416), 1, + anon_sym_new, + ACTIONS(1426), 1, + anon_sym_sizeof, + ACTIONS(1428), 1, + sym_string_start, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - ACTIONS(2537), 1, + ACTIONS(2503), 1, anon_sym_LPAREN, - ACTIONS(3065), 1, + ACTIONS(2827), 1, sym_identifier, - STATE(2221), 1, + ACTIONS(3067), 1, + anon_sym_STAR, + ACTIONS(3071), 1, + anon_sym_lambda, + STATE(2169), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2242), 1, sym_string, - STATE(2703), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(4279), 1, + STATE(4042), 1, sym_expression, - STATE(5387), 1, - sym_with_item, - STATE(5581), 1, + STATE(5608), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + STATE(4435), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -132607,7 +136700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -132628,11 +136721,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [11931] = 3, + [7365] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 15, + ACTIONS(2185), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132648,7 +136741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1637), 46, + ACTIONS(2183), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132686,6 +136779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132695,78 +136789,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12001] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2131), 15, + [7436] = 27, + ACTIONS(1394), 1, + anon_sym_LBRACE, + ACTIONS(1396), 1, + anon_sym_not, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1406), 1, + anon_sym_None, + ACTIONS(1410), 1, + sym_float, + ACTIONS(1416), 1, + anon_sym_new, + ACTIONS(1426), 1, + anon_sym_sizeof, + ACTIONS(1428), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, + anon_sym_await, + ACTIONS(2503), 1, anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3071), 1, + anon_sym_lambda, + STATE(2169), 1, + sym_primary_expression, + STATE(2242), 1, + sym_string, + STATE(2540), 1, + sym_list_splat_pattern, + STATE(3988), 1, + sym_expression, + STATE(5608), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4391), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1408), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1392), 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(2129), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1556), 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, - [12071] = 3, + STATE(2577), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2575), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7555] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2163), 15, + ACTIONS(1765), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132782,7 +136901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2161), 46, + ACTIONS(1763), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132820,6 +136939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132829,11 +136949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12141] = 3, + [7626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2099), 15, + ACTIONS(2189), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132849,7 +136969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2097), 46, + ACTIONS(2187), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132887,6 +137007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132896,11 +137017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12211] = 3, + [7697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3419), 14, + ACTIONS(3471), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -132915,7 +137036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3421), 47, + ACTIONS(3473), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -132954,6 +137075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -132963,11 +137085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12281] = 3, + [7768] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2135), 15, + ACTIONS(2169), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -132983,7 +137105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2133), 46, + ACTIONS(2167), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133021,6 +137143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -133030,11 +137153,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12351] = 3, + [7839] = 28, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3475), 1, + anon_sym_LPAREN, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4297), 1, + sym_expression, + STATE(4856), 1, + sym_with_item, + STATE(5695), 1, + sym__named_expression_lhs, + STATE(5783), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1283), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [7960] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2139), 15, + ACTIONS(1661), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133050,7 +137266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2137), 46, + ACTIONS(1659), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133088,6 +137304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -133097,11 +137314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12421] = 3, + [8031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2143), 15, + ACTIONS(1643), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133117,7 +137334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2141), 46, + ACTIONS(1641), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133155,6 +137372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -133164,13 +137382,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12491] = 3, + [8102] = 27, + ACTIONS(2477), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, + anon_sym_LBRACK, + ACTIONS(2487), 1, + anon_sym_LBRACE, + ACTIONS(2491), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2493), 1, + anon_sym_None, + ACTIONS(2495), 1, + sym_float, + ACTIONS(2499), 1, + anon_sym_sizeof, + ACTIONS(2501), 1, + sym_string_start, + ACTIONS(2615), 1, + sym_identifier, + ACTIONS(2629), 1, + anon_sym_not, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2637), 1, + anon_sym_await, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, + anon_sym_STAR, + ACTIONS(3095), 1, + anon_sym_lambda, + STATE(2161), 1, + sym_primary_expression, + STATE(2226), 1, + sym_string, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(4006), 1, + sym_expression, + STATE(5874), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4281), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2475), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2485), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2623), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2410), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2445), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3423), 14, + ACTIONS(2193), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -133183,7 +137494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3425), 47, + ACTIONS(2191), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133201,7 +137512,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, @@ -133222,6 +137532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -133231,11 +137542,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12561] = 3, + [8292] = 28, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3475), 1, + anon_sym_LPAREN, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4297), 1, + sym_expression, + STATE(4856), 1, + sym_with_item, + STATE(5695), 1, + sym__named_expression_lhs, + STATE(5747), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1283), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8413] = 27, + ACTIONS(1394), 1, + anon_sym_LBRACE, + ACTIONS(1396), 1, + anon_sym_not, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1406), 1, + anon_sym_None, + ACTIONS(1410), 1, + sym_float, + ACTIONS(1416), 1, + anon_sym_new, + ACTIONS(1426), 1, + anon_sym_sizeof, + ACTIONS(1428), 1, + sym_string_start, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, + anon_sym_await, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, + anon_sym_STAR, + ACTIONS(3071), 1, + anon_sym_lambda, + STATE(2169), 1, + sym_primary_expression, + STATE(2242), 1, + sym_string, + STATE(2540), 1, + sym_list_splat_pattern, + STATE(3994), 1, + sym_expression, + STATE(5608), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4509), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1408), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1392), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1556), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2577), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2575), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 15, + ACTIONS(2161), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133251,7 +137747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2101), 46, + ACTIONS(2159), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133289,6 +137785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -133298,15 +137795,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12631] = 4, - ACTIONS(3427), 1, - anon_sym_SEMI, + [8603] = 28, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4070), 1, + sym_expression, + STATE(4789), 1, + sym_slice, + STATE(5744), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2719), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8724] = 27, + ACTIONS(2477), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, + anon_sym_LBRACK, + ACTIONS(2487), 1, + anon_sym_LBRACE, + ACTIONS(2491), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2493), 1, + anon_sym_None, + ACTIONS(2495), 1, + sym_float, + ACTIONS(2499), 1, + anon_sym_sizeof, + ACTIONS(2501), 1, + sym_string_start, + ACTIONS(2615), 1, + sym_identifier, + ACTIONS(2629), 1, + anon_sym_not, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2637), 1, + anon_sym_await, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, + anon_sym_STAR, + ACTIONS(3095), 1, + anon_sym_lambda, + STATE(2161), 1, + sym_primary_expression, + STATE(2226), 1, + sym_string, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(4006), 1, + sym_expression, + STATE(5874), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4330), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2475), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2485), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2623), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2410), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2445), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [8843] = 28, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, + anon_sym_LBRACE, + ACTIONS(1454), 1, + anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, + anon_sym_lambda, + ACTIONS(1460), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 1, + anon_sym_None, + ACTIONS(1466), 1, + sym_float, + ACTIONS(1470), 1, + anon_sym_new, + ACTIONS(1472), 1, + anon_sym_sizeof, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3477), 1, + anon_sym_RPAREN, + STATE(2270), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(4325), 1, + sym_expression, + STATE(5328), 1, + sym_with_item, + STATE(5627), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2429), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_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] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 14, + ACTIONS(1853), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -133319,7 +138093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1619), 46, + ACTIONS(1851), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133357,6 +138131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -133366,11 +138141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12703] = 3, + [9035] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2107), 15, + ACTIONS(1857), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133386,7 +138161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2105), 46, + ACTIONS(1855), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133424,6 +138199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -133433,68 +138209,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12773] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [9106] = 27, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2615), 1, + sym_identifier, + ACTIONS(2629), 1, + anon_sym_not, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2637), 1, + anon_sym_await, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(3095), 1, + anon_sym_lambda, + STATE(2161), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2226), 1, sym_string, - STATE(2349), 1, + STATE(2500), 1, sym_list_splat_pattern, - STATE(4233), 1, + STATE(4075), 1, sym_expression, - STATE(5444), 1, - sym_with_item, - STATE(5559), 1, + STATE(5874), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + STATE(4493), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -133503,7 +138280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -133524,11 +138301,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [12891] = 3, + [9225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1947), 15, + ACTIONS(1861), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133544,7 +138321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1945), 46, + ACTIONS(1859), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133582,6 +138359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -133591,11 +138369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [12961] = 3, + [9296] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2147), 15, + ACTIONS(1865), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133611,7 +138389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2145), 46, + ACTIONS(1863), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133649,6 +138427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -133658,135 +138437,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13031] = 3, + [9367] = 27, + ACTIONS(2477), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, + anon_sym_LBRACK, + ACTIONS(2487), 1, + anon_sym_LBRACE, + ACTIONS(2491), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2493), 1, + anon_sym_None, + ACTIONS(2495), 1, + sym_float, + ACTIONS(2499), 1, + anon_sym_sizeof, + ACTIONS(2501), 1, + sym_string_start, + ACTIONS(2615), 1, + sym_identifier, + ACTIONS(2629), 1, + anon_sym_not, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2637), 1, + anon_sym_await, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, + anon_sym_STAR, + ACTIONS(3095), 1, + anon_sym_lambda, + STATE(2161), 1, + sym_primary_expression, + STATE(2226), 1, + sym_string, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(3998), 1, + sym_expression, + STATE(5874), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1963), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(4535), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2475), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2485), 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(1961), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2623), 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, - [13101] = 27, - ACTIONS(1243), 1, + STATE(2410), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2445), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [9486] = 28, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(3479), 1, + anon_sym_COLON, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4077), 1, + STATE(4297), 1, sym_expression, - STATE(5478), 1, - sym_expression_list, - STATE(5559), 1, + STATE(5488), 1, + sym_with_item, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -133795,7 +138601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -133816,11 +138622,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [13219] = 3, + [9607] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2151), 15, + ACTIONS(1769), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -133836,7 +138642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2149), 46, + ACTIONS(1767), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133874,6 +138680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -133883,14 +138690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13289] = 3, + [9678] = 4, + ACTIONS(3481), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2167), 15, + ACTIONS(1635), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -133903,7 +138711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2165), 46, + ACTIONS(1631), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -133941,6 +138749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -133950,78 +138759,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13359] = 3, + [9751] = 28, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3483), 1, + anon_sym_COLON, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4297), 1, + sym_expression, + STATE(5488), 1, + sym_with_item, + STATE(5695), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 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(1825), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1283), 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(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [9872] = 27, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2731), 1, anon_sym_await, - anon_sym_api, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4367), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3425), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2515), 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, - [13429] = 3, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2719), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [9991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 15, + ACTIONS(1653), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134037,7 +138964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1829), 46, + ACTIONS(1651), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134075,6 +139002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134084,11 +139012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13499] = 3, + [10062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2395), 15, + ACTIONS(1869), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134104,7 +139032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2393), 46, + ACTIONS(1867), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134142,6 +139070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134151,14 +139080,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13569] = 3, + [10133] = 27, + ACTIONS(2477), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, + anon_sym_LBRACK, + ACTIONS(2487), 1, + anon_sym_LBRACE, + ACTIONS(2491), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2493), 1, + anon_sym_None, + ACTIONS(2495), 1, + sym_float, + ACTIONS(2499), 1, + anon_sym_sizeof, + ACTIONS(2501), 1, + sym_string_start, + ACTIONS(2615), 1, + sym_identifier, + ACTIONS(2629), 1, + anon_sym_not, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2637), 1, + anon_sym_await, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, + anon_sym_STAR, + ACTIONS(3095), 1, + anon_sym_lambda, + STATE(2161), 1, + sym_primary_expression, + STATE(2226), 1, + sym_string, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(4006), 1, + sym_expression, + STATE(5874), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4495), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2475), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2485), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2623), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2410), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2445), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [10252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 15, + ACTIONS(3485), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -134171,7 +139191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2397), 46, + ACTIONS(3487), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134189,6 +139209,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, @@ -134209,6 +139230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134218,11 +139240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13639] = 3, + [10323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 15, + ACTIONS(2329), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134238,7 +139260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1641), 46, + ACTIONS(2327), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134276,6 +139298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134285,11 +139308,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13709] = 3, + [10394] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1835), 15, + ACTIONS(1705), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134305,7 +139328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1833), 46, + ACTIONS(1703), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134343,6 +139366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134352,11 +139376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13779] = 3, + [10465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 15, + ACTIONS(1657), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134372,7 +139396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1645), 46, + ACTIONS(1655), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134410,6 +139434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134419,11 +139444,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13849] = 3, + [10536] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 15, + ACTIONS(1639), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134439,7 +139464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1837), 46, + ACTIONS(1637), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134477,6 +139502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134486,14 +139512,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13919] = 3, + [10607] = 27, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, + anon_sym_LBRACE, + ACTIONS(1454), 1, + anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, + anon_sym_lambda, + ACTIONS(1460), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 1, + anon_sym_None, + ACTIONS(1466), 1, + sym_float, + ACTIONS(1470), 1, + anon_sym_new, + ACTIONS(1472), 1, + anon_sym_sizeof, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(4318), 1, + sym_expression, + STATE(5627), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3247), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2429), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [10726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2051), 15, + ACTIONS(3485), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -134506,7 +139623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2049), 46, + ACTIONS(3487), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134524,6 +139641,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, @@ -134544,6 +139662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134553,11 +139672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [13989] = 3, + [10797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2155), 15, + ACTIONS(2333), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134573,7 +139692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2153), 46, + ACTIONS(2331), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134611,6 +139730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134620,78 +139740,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14059] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2159), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, + [10868] = 27, + ACTIONS(1448), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1452), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, + ACTIONS(1454), 1, + anon_sym_not, + ACTIONS(1456), 1, anon_sym_LT, + ACTIONS(1458), 1, + anon_sym_lambda, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 1, + anon_sym_None, + ACTIONS(1466), 1, sym_float, - ACTIONS(2157), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1470), 1, + anon_sym_new, + ACTIONS(1472), 1, + anon_sym_sizeof, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(4318), 1, + sym_expression, + STATE(5627), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3161), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2429), 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, - [14129] = 3, + STATE(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [10987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2071), 15, + ACTIONS(1773), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134707,7 +139852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2069), 46, + ACTIONS(1771), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134745,6 +139890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134754,11 +139900,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14199] = 3, + [11058] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2171), 15, + ACTIONS(2337), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134774,7 +139920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2169), 46, + ACTIONS(2335), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134812,6 +139958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134821,11 +139968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14269] = 3, + [11129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1971), 15, + ACTIONS(1777), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134841,7 +139988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1969), 46, + ACTIONS(1775), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134879,6 +140026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134888,11 +140036,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14339] = 3, + [11200] = 27, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4354), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2003), 15, + ACTIONS(3247), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2719), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [11319] = 22, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(1368), 1, + anon_sym_STAR, + ACTIONS(1376), 1, + anon_sym_LT, + ACTIONS(1378), 1, + anon_sym_await, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(3299), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(859), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1303), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1374), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(893), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1370), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(857), 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(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [11428] = 27, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4354), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3161), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2719), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [11547] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1665), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134908,7 +140327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2001), 46, + ACTIONS(1663), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -134946,6 +140365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -134955,11 +140375,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14409] = 3, + [11618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2203), 15, + ACTIONS(2341), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -134975,7 +140395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2201), 46, + ACTIONS(2339), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135013,6 +140433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135022,11 +140443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14479] = 3, + [11689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1651), 15, + ACTIONS(2345), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135042,7 +140463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1649), 46, + ACTIONS(2343), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135080,6 +140501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135089,11 +140511,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14549] = 3, + [11760] = 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(101), 1, + anon_sym_new, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(3989), 1, + sym_expression, + STATE(5834), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 15, + ACTIONS(3489), 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(870), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [11879] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1781), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135109,7 +140623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1669), 46, + ACTIONS(1779), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135147,6 +140661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135156,68 +140671,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14619] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [11950] = 27, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3429), 1, - anon_sym_COLON, - STATE(2108), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2140), 1, sym_string, - STATE(2349), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4261), 1, + STATE(4100), 1, sym_expression, - STATE(5559), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(3491), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -135226,7 +140742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -135247,11 +140763,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [14737] = 3, + [12069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2403), 15, + ACTIONS(1785), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135267,7 +140783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2401), 46, + ACTIONS(1783), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135305,6 +140821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135314,11 +140831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14807] = 3, + [12140] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2111), 15, + ACTIONS(1709), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135334,7 +140851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2109), 46, + ACTIONS(1707), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135372,6 +140889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135381,11 +140899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14877] = 3, + [12211] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 15, + ACTIONS(2349), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135401,7 +140919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1625), 46, + ACTIONS(2347), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135439,6 +140957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135448,11 +140967,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [14947] = 3, + [12282] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2055), 15, + ACTIONS(2165), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135468,7 +140987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2053), 46, + ACTIONS(2163), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135506,6 +141025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135515,11 +141035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15017] = 3, + [12353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 15, + ACTIONS(1873), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135535,7 +141055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1741), 46, + ACTIONS(1871), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135573,6 +141093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135582,11 +141103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15087] = 3, + [12424] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 15, + ACTIONS(1713), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135602,7 +141123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1733), 46, + ACTIONS(1711), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135640,6 +141161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135649,11 +141171,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15157] = 3, + [12495] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 15, + ACTIONS(1877), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135669,7 +141191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1841), 46, + ACTIONS(1875), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135707,6 +141229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135716,11 +141239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15227] = 3, + [12566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2331), 15, + ACTIONS(1881), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135736,7 +141259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2329), 46, + ACTIONS(1879), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135774,6 +141297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135783,11 +141307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15297] = 3, + [12637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2335), 15, + ACTIONS(1717), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135803,7 +141327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2333), 46, + ACTIONS(1715), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135841,6 +141365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135850,11 +141375,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15367] = 3, + [12708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2023), 15, + ACTIONS(1721), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135870,7 +141395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2021), 46, + ACTIONS(1719), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135908,6 +141433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135917,11 +141443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15437] = 3, + [12779] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1955), 15, + ACTIONS(1885), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -135937,7 +141463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1953), 46, + ACTIONS(1883), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -135975,6 +141501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -135984,11 +141511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15507] = 3, + [12850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1943), 15, + ACTIONS(1789), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136004,7 +141531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1941), 46, + ACTIONS(1787), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136042,6 +141569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -136051,102 +141579,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15577] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3431), 1, - anon_sym_COLON, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4274), 1, - sym_expression, - STATE(5559), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1249), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [15695] = 3, + [12921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2339), 15, + ACTIONS(1889), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136162,7 +141599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2337), 46, + ACTIONS(1887), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136200,6 +141637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -136209,11 +141647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15765] = 3, + [12992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 15, + ACTIONS(1893), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136229,7 +141667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2005), 46, + ACTIONS(1891), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136267,6 +141705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -136276,11 +141715,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15835] = 3, + [13063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 15, + ACTIONS(2293), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136296,7 +141735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1725), 46, + ACTIONS(2291), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136334,6 +141773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -136343,11 +141783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15905] = 3, + [13134] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2031), 15, + ACTIONS(2297), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136363,7 +141803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2029), 46, + ACTIONS(2295), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136401,6 +141841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -136410,11 +141851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [15975] = 3, + [13205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 15, + ACTIONS(1725), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136430,7 +141871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1629), 46, + ACTIONS(1723), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136468,6 +141909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -136477,11 +141919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16045] = 3, + [13276] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 15, + ACTIONS(2301), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136497,7 +141939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1611), 46, + ACTIONS(2299), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136535,6 +141977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -136544,102 +141987,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16115] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4050), 1, - sym_expression, - STATE(5559), 1, - sym__named_expression_lhs, - STATE(5815), 1, - sym_expression_list, + [13347] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1249), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [16233] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2059), 15, + ACTIONS(1897), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136655,7 +142007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2057), 46, + ACTIONS(1895), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136693,6 +142045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -136702,11 +142055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16303] = 3, + [13418] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 15, + ACTIONS(1729), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136722,7 +142075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1745), 46, + ACTIONS(1727), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136760,6 +142113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -136769,11 +142123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16373] = 3, + [13489] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 15, + ACTIONS(1901), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136789,7 +142143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1749), 46, + ACTIONS(1899), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136827,6 +142181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -136836,11 +142191,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16443] = 3, + [13560] = 23, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(1368), 1, + anon_sym_STAR, + ACTIONS(1376), 1, + anon_sym_LT, + ACTIONS(1378), 1, + anon_sym_await, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(3299), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(859), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1366), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(1361), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1303), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1374), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1370), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(857), 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(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [13671] = 22, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(1368), 1, + anon_sym_STAR, + ACTIONS(1376), 1, + anon_sym_LT, + ACTIONS(1378), 1, + anon_sym_await, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(3299), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1363), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1303), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1374), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1361), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1370), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(1576), 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(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [13780] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2063), 15, + ACTIONS(1873), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -136856,7 +142386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2061), 46, + ACTIONS(1871), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -136894,6 +142424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -136903,102 +142434,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16513] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3433), 1, - anon_sym_COLON, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4274), 1, - sym_expression, - STATE(5559), 1, - sym__named_expression_lhs, + [13851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, + ACTIONS(1905), 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(1249), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1903), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [16631] = 3, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [13922] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 15, + ACTIONS(1909), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137014,7 +142522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1677), 46, + ACTIONS(1907), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137052,6 +142560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -137061,11 +142570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16701] = 3, + [13993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 15, + ACTIONS(1881), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137081,7 +142590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1653), 46, + ACTIONS(1879), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137119,6 +142628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -137128,11 +142638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16771] = 3, + [14064] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2343), 15, + ACTIONS(1913), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137148,7 +142658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2341), 46, + ACTIONS(1911), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137186,6 +142696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -137195,11 +142706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16841] = 3, + [14135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2347), 15, + ACTIONS(2197), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137215,7 +142726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2345), 46, + ACTIONS(2195), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137253,6 +142764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -137262,68 +142774,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [16911] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [14206] = 27, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2541), 1, sym_string_start, ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2324), 1, sym_string, - STATE(2349), 1, + STATE(2736), 1, sym_list_splat_pattern, - STATE(4022), 1, + STATE(4321), 1, sym_expression, - STATE(5433), 1, - sym_expression_list, - STATE(5559), 1, + STATE(5744), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(3493), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -137332,7 +142845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -137353,11 +142866,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [17029] = 3, + [14325] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2027), 15, + ACTIONS(2305), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137373,7 +142886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2025), 46, + ACTIONS(2303), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137411,6 +142924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -137420,11 +142934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17099] = 3, + [14396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1675), 15, + ACTIONS(2181), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137440,7 +142954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1673), 46, + ACTIONS(2179), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137478,6 +142992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -137487,11 +143002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17169] = 3, + [14467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1951), 15, + ACTIONS(1889), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137507,7 +143022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1949), 46, + ACTIONS(1887), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137545,6 +143060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -137554,68 +143070,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17239] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [14538] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1917), 15, + sym_string_start, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1251), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1255), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1257), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(1915), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1265), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [14609] = 28, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, + anon_sym_LBRACE, + ACTIONS(1454), 1, + anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, + anon_sym_lambda, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1470), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2427), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3495), 1, + anon_sym_RPAREN, + STATE(2270), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2403), 1, sym_string, - STATE(2349), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(4123), 1, + STATE(4325), 1, sym_expression, - STATE(5559), 1, + STATE(5328), 1, + sym_with_item, + STATE(5627), 1, sym__named_expression_lhs, - STATE(5659), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -137624,7 +143210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -137645,11 +143231,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [17357] = 3, + [14730] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2115), 15, + ACTIONS(1921), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137665,7 +143251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2113), 46, + ACTIONS(1919), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137703,6 +143289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -137712,102 +143299,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17427] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3941), 1, - sym_expression, - STATE(5398), 1, - sym_expression_list, - STATE(5559), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1249), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [17545] = 3, + [14801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2351), 15, + ACTIONS(1925), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137823,7 +143319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2349), 46, + ACTIONS(1923), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137861,6 +143357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -137870,11 +143367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17615] = 3, + [14872] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 15, + ACTIONS(2201), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -137890,7 +143387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1845), 46, + ACTIONS(2199), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -137928,6 +143425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -137937,78 +143435,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17685] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2067), 15, + [14943] = 27, + ACTIONS(1394), 1, + anon_sym_LBRACE, + ACTIONS(1396), 1, + anon_sym_not, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1406), 1, + anon_sym_None, + ACTIONS(1410), 1, + sym_float, + ACTIONS(1416), 1, + anon_sym_new, + ACTIONS(1426), 1, + anon_sym_sizeof, + ACTIONS(1428), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, + anon_sym_await, + ACTIONS(2503), 1, anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3071), 1, + anon_sym_lambda, + STATE(2169), 1, + sym_primary_expression, + STATE(2242), 1, + sym_string, + STATE(2540), 1, + sym_list_splat_pattern, + STATE(3988), 1, + sym_expression, + STATE(5608), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4342), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1408), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1392), 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(2065), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1556), 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, - [17755] = 3, + STATE(2577), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2575), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [15062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 15, + ACTIONS(1929), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138024,7 +143547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1753), 46, + ACTIONS(1927), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138062,6 +143585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138071,11 +143595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17825] = 3, + [15133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 15, + ACTIONS(1933), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138091,7 +143615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1757), 46, + ACTIONS(1931), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138129,6 +143653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138138,102 +143663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [17895] = 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(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(3951), 1, - sym_expression, - STATE(5465), 1, - sym_expression_list, - STATE(5657), 1, - sym__named_expression_lhs, + [15204] = 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(824), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3492), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [18013] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1591), 15, + ACTIONS(2245), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138249,7 +143683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1589), 46, + ACTIONS(2243), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138287,6 +143721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138296,11 +143731,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18083] = 3, + [15275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 15, + ACTIONS(2249), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138316,7 +143751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1681), 46, + ACTIONS(2247), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138354,6 +143789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138363,11 +143799,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18153] = 3, + [15346] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2379), 15, + ACTIONS(2253), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138383,7 +143819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2377), 46, + ACTIONS(2251), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138421,6 +143857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138430,11 +143867,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18223] = 3, + [15417] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2175), 15, + ACTIONS(1937), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138450,7 +143887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2173), 46, + ACTIONS(1935), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138488,6 +143925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138497,11 +143935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18293] = 3, + [15488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 15, + ACTIONS(2257), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138517,7 +143955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1849), 46, + ACTIONS(2255), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138555,6 +143993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138564,11 +144003,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18363] = 3, + [15559] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 15, + ACTIONS(2261), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138584,7 +144023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1853), 46, + ACTIONS(2259), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138622,6 +144061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138631,11 +144071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18433] = 3, + [15630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 15, + ACTIONS(2265), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138651,7 +144091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1689), 46, + ACTIONS(2263), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138689,6 +144129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138698,11 +144139,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18503] = 3, + [15701] = 27, + ACTIONS(1394), 1, + anon_sym_LBRACE, + ACTIONS(1396), 1, + anon_sym_not, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1406), 1, + anon_sym_None, + ACTIONS(1410), 1, + sym_float, + ACTIONS(1416), 1, + anon_sym_new, + ACTIONS(1426), 1, + anon_sym_sizeof, + ACTIONS(1428), 1, + sym_string_start, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, + anon_sym_await, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, + anon_sym_STAR, + ACTIONS(3071), 1, + anon_sym_lambda, + STATE(2169), 1, + sym_primary_expression, + STATE(2242), 1, + sym_string, + STATE(2540), 1, + sym_list_splat_pattern, + STATE(3988), 1, + sym_expression, + STATE(5608), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4511), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(1408), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1392), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1556), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2577), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2575), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [15820] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 15, + ACTIONS(2309), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138718,7 +144251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1761), 46, + ACTIONS(2307), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138756,6 +144289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138765,14 +144299,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18573] = 3, + [15891] = 4, + ACTIONS(3497), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 15, + ACTIONS(1649), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -138785,7 +144320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1693), 46, + ACTIONS(1645), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138823,6 +144358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138832,11 +144368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18643] = 3, + [15964] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 15, + ACTIONS(2313), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138852,7 +144388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1857), 46, + ACTIONS(2311), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138890,6 +144426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138899,11 +144436,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18713] = 3, + [16035] = 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(101), 1, + anon_sym_new, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(4100), 1, + sym_expression, + STATE(5834), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 15, + ACTIONS(3499), 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(870), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [16154] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1669), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138919,7 +144548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1861), 46, + ACTIONS(1667), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -138957,6 +144586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -138966,11 +144596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18783] = 3, + [16225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2295), 15, + ACTIONS(2317), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -138986,7 +144616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2293), 46, + ACTIONS(2315), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139024,6 +144654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139033,11 +144664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18853] = 3, + [16296] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 15, + ACTIONS(1673), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139053,7 +144684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1865), 46, + ACTIONS(1671), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139091,6 +144722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139100,14 +144732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18923] = 3, + [16367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 15, + ACTIONS(3471), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -139120,7 +144751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1869), 46, + ACTIONS(3473), 48, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139138,6 +144769,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, @@ -139158,6 +144790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139167,78 +144800,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [18993] = 3, + [16438] = 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(101), 1, + anon_sym_new, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(4100), 1, + sym_expression, + STATE(5834), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1875), 15, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(3501), 2, + sym__newline, anon_sym_SEMI, - 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(1873), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [16557] = 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, - anon_sym_yield, + ACTIONS(77), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(79), 1, anon_sym_None, - sym_integer, + ACTIONS(83), 1, + sym_float, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, sym_identifier, + ACTIONS(895), 1, anon_sym_await, - anon_sym_api, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(3989), 1, + sym_expression, + STATE(5834), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3503), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(81), 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, - [19063] = 3, + ACTIONS(65), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(870), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [16676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2011), 15, + ACTIONS(2321), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139254,7 +145004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2009), 46, + ACTIONS(2319), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139292,6 +145042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139301,11 +145052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19133] = 3, + [16747] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1943), 15, + ACTIONS(1677), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139321,7 +145072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1941), 46, + ACTIONS(1675), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139359,6 +145110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139368,11 +145120,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19203] = 3, + [16818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2299), 15, + ACTIONS(2325), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139388,7 +145140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2297), 46, + ACTIONS(2323), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139426,6 +145178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139435,11 +145188,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19273] = 3, + [16889] = 27, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, + anon_sym_LBRACK, + ACTIONS(2555), 1, + anon_sym_LBRACE, + ACTIONS(2559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2561), 1, + anon_sym_None, + ACTIONS(2563), 1, + sym_float, + ACTIONS(2567), 1, + anon_sym_sizeof, + ACTIONS(2569), 1, + sym_string_start, + ACTIONS(2599), 1, + anon_sym_not, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(2609), 1, + anon_sym_new, + ACTIONS(2913), 1, + sym_identifier, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, + anon_sym_STAR, + ACTIONS(3107), 1, + anon_sym_lambda, + STATE(2168), 1, + sym_primary_expression, + STATE(2283), 1, + sym_string, + STATE(2610), 1, + sym_list_splat_pattern, + STATE(4047), 1, + sym_expression, + STATE(5785), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2303), 15, + STATE(4359), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(2543), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2553), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2917), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2570), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2568), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [17008] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1941), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139455,7 +145300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2301), 46, + ACTIONS(1939), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139493,6 +145338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139502,11 +145348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19343] = 3, + [17079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 15, + ACTIONS(1945), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139522,7 +145368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1615), 46, + ACTIONS(1943), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139560,6 +145406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139569,11 +145416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19413] = 3, + [17150] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1967), 15, + ACTIONS(1793), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139589,7 +145436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1965), 46, + ACTIONS(1791), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139627,6 +145474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139636,11 +145484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19483] = 3, + [17221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2015), 15, + ACTIONS(1949), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139656,7 +145504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2013), 46, + ACTIONS(1947), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139694,6 +145542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139703,11 +145552,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19553] = 3, + [17292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1959), 15, + ACTIONS(1953), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139723,7 +145572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1957), 46, + ACTIONS(1951), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139761,6 +145610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139770,11 +145620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19623] = 3, + [17363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 15, + ACTIONS(1957), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139790,7 +145640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1845), 46, + ACTIONS(1955), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139828,6 +145678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139837,11 +145688,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19693] = 3, + [17434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1879), 15, + ACTIONS(1681), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139857,7 +145708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1877), 46, + ACTIONS(1679), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -139895,6 +145746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -139904,78 +145756,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19763] = 3, + [17505] = 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(101), 1, + anon_sym_new, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(4100), 1, + sym_expression, + STATE(5834), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1883), 15, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(3505), 2, + sym__newline, anon_sym_SEMI, - 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(1881), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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, - [19833] = 3, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [17624] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1699), 15, + ACTIONS(1961), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -139991,7 +145868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1697), 46, + ACTIONS(1959), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140029,6 +145906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -140038,11 +145916,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19903] = 3, + [17695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2179), 15, + ACTIONS(1797), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140058,7 +145936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2177), 46, + ACTIONS(1795), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140096,6 +145974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -140105,11 +145984,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [19973] = 3, + [17766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 15, + ACTIONS(2353), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140125,7 +146004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1853), 46, + ACTIONS(2351), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140163,6 +146042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -140172,11 +146052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20043] = 3, + [17837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1887), 15, + ACTIONS(2357), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140192,7 +146072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1885), 46, + ACTIONS(2355), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140230,6 +146110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -140239,11 +146120,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20113] = 3, + [17908] = 28, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(3981), 1, + sym_expression, + STATE(5017), 1, + sym_slice, + STATE(5744), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2719), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [18029] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2019), 15, + ACTIONS(2269), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140259,7 +146233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2017), 46, + ACTIONS(2267), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140297,6 +146271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -140306,11 +146281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20183] = 3, + [18100] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 15, + ACTIONS(2273), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140326,7 +146301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1861), 46, + ACTIONS(2271), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140364,6 +146339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -140373,11 +146349,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20253] = 3, + [18171] = 28, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4030), 1, + sym_expression, + STATE(5166), 1, + sym_slice, + STATE(5744), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2719), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [18292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 15, + ACTIONS(2277), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140393,7 +146462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1889), 46, + ACTIONS(2275), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140431,6 +146500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -140440,11 +146510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20323] = 3, + [18363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2183), 15, + ACTIONS(2361), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140460,7 +146530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2181), 46, + ACTIONS(2359), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140498,6 +146568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -140507,68 +146578,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20393] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [18434] = 28, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2541), 1, sym_string_start, ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2324), 1, sym_string, - STATE(2349), 1, + STATE(2736), 1, sym_list_splat_pattern, - STATE(4153), 1, + STATE(4073), 1, sym_expression, - STATE(5559), 1, + STATE(4871), 1, + sym_slice, + STATE(5744), 1, sym__named_expression_lhs, - STATE(5816), 1, - sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -140577,7 +146650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -140598,11 +146671,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [20511] = 3, + [18555] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2187), 15, + ACTIONS(2281), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140618,7 +146691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2185), 46, + ACTIONS(2279), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140656,6 +146729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -140665,78 +146739,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20581] = 3, + [18626] = 28, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(3991), 1, + sym_expression, + STATE(4927), 1, + sym_slice, + STATE(5744), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(1737), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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, - [20651] = 3, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [18747] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2247), 15, + ACTIONS(1801), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140752,7 +146852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2245), 46, + ACTIONS(1799), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140790,6 +146890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -140799,78 +146900,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20721] = 3, + [18818] = 28, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4035), 1, + sym_expression, + STATE(4962), 1, + sym_slice, + STATE(5744), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2251), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(2249), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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, - [20791] = 3, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [18939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2255), 15, + ACTIONS(2285), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -140886,7 +147013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2253), 46, + ACTIONS(2283), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -140924,6 +147051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -140933,78 +147061,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [20861] = 3, + [19010] = 28, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4038), 1, + sym_expression, + STATE(4995), 1, + sym_slice, + STATE(5744), 1, + sym__named_expression_lhs, 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, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(2257), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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, - [20931] = 3, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [19131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2263), 15, + ACTIONS(2289), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141020,7 +147174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2261), 46, + ACTIONS(2287), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141058,6 +147212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -141067,69 +147222,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21001] = 28, - ACTIONS(67), 1, + [19202] = 28, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 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(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3435), 1, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, anon_sym_STAR, - ACTIONS(3437), 1, - anon_sym_PLUS, - ACTIONS(3439), 1, - anon_sym_QMARK, - STATE(2091), 1, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2324), 1, sym_string, - STATE(2166), 1, + STATE(2736), 1, sym_list_splat_pattern, - STATE(4019), 1, + STATE(3985), 1, sym_expression, - STATE(5657), 1, + STATE(5021), 1, + sym_slice, + STATE(5744), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 3, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 4, anon_sym_DASH, + anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 3, + ACTIONS(2719), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [19323] = 28, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4028), 1, + sym_expression, + STATE(5039), 1, + sym_slice, + STATE(5744), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(824), 5, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -141138,7 +147387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -141159,145 +147408,290 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [21121] = 3, + [19444] = 28, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4054), 1, + sym_expression, + STATE(5055), 1, + sym_slice, + STATE(5744), 1, + sym__named_expression_lhs, 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(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(2719), 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(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [19565] = 28, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2731), 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(2733), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [21191] = 3, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4060), 1, + sym_expression, + STATE(5068), 1, + sym_slice, + STATE(5744), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1895), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(1893), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [19686] = 28, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2731), 1, anon_sym_await, - anon_sym_api, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3261), 1, + anon_sym_COLON, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4062), 1, + sym_expression, + STATE(5077), 1, + sym_slice, + STATE(5744), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2515), 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, - [21261] = 3, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2719), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [19807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2267), 15, + ACTIONS(2173), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141313,7 +147707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2265), 46, + ACTIONS(2171), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141351,6 +147745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -141360,11 +147755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21331] = 3, + [19878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2035), 15, + ACTIONS(2365), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141380,7 +147775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2033), 46, + ACTIONS(2363), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141418,6 +147813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -141427,11 +147823,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21401] = 3, + [19949] = 28, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3475), 1, + anon_sym_LPAREN, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4297), 1, + sym_expression, + STATE(4856), 1, + sym_with_item, + STATE(5682), 1, + sym_with_clause, + STATE(5695), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1283), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [20070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2039), 15, + ACTIONS(2369), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141447,7 +147936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2037), 46, + ACTIONS(2367), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141485,6 +147974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -141494,11 +147984,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21471] = 3, + [20141] = 28, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3475), 1, + anon_sym_LPAREN, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4297), 1, + sym_expression, + STATE(4856), 1, + sym_with_item, + STATE(5695), 1, + sym__named_expression_lhs, + STATE(5728), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1283), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [20262] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2075), 15, + ACTIONS(1733), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141514,7 +148097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2073), 46, + ACTIONS(1731), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141552,6 +148135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -141561,11 +148145,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21541] = 3, + [20333] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1899), 15, + ACTIONS(1737), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141581,7 +148165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1897), 46, + ACTIONS(1735), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141619,6 +148203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -141628,11 +148213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21611] = 3, + [20404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2079), 15, + ACTIONS(1741), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141648,7 +148233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2077), 46, + ACTIONS(1739), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141686,6 +148271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -141695,11 +148281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21681] = 3, + [20475] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2387), 15, + ACTIONS(1745), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141715,7 +148301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2385), 46, + ACTIONS(1743), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141753,6 +148339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -141762,11 +148349,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21751] = 3, + [20546] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 15, + ACTIONS(1749), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141782,7 +148369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2209), 46, + ACTIONS(1747), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141820,6 +148407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -141829,11 +148417,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21821] = 3, + [20617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2083), 15, + ACTIONS(1745), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141849,7 +148437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2081), 46, + ACTIONS(1743), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141887,6 +148475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -141896,11 +148485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21891] = 3, + [20688] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1903), 15, + ACTIONS(1745), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -141916,7 +148505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1901), 46, + ACTIONS(1743), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -141954,6 +148543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -141963,27 +148553,395 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [21961] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2307), 15, - sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, + [20759] = 27, + ACTIONS(2517), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2523), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2527), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4320), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3507), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, + ACTIONS(2719), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [20878] = 27, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4326), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3509), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2719), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [20997] = 27, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_LBRACE, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2453), 1, + anon_sym_None, + ACTIONS(2455), 1, sym_float, - ACTIONS(2305), 46, + ACTIONS(2459), 1, + anon_sym_sizeof, + ACTIONS(2461), 1, + sym_string_start, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2879), 1, + anon_sym_await, + ACTIONS(3079), 1, + anon_sym_not, + ACTIONS(3081), 1, + anon_sym_lambda, + ACTIONS(3083), 1, + anon_sym_new, + STATE(2159), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(4398), 1, + sym_expression, + STATE(5807), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3247), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2875), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3933), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [21116] = 27, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_LBRACE, + ACTIONS(2451), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2453), 1, + anon_sym_None, + ACTIONS(2455), 1, + sym_float, + ACTIONS(2459), 1, + anon_sym_sizeof, + ACTIONS(2461), 1, + sym_string_start, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2879), 1, + anon_sym_await, + ACTIONS(3079), 1, + anon_sym_not, + ACTIONS(3081), 1, + anon_sym_lambda, + ACTIONS(3083), 1, + anon_sym_new, + STATE(2159), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(4398), 1, + sym_expression, + STATE(5807), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3161), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2875), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3933), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [21235] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1965), 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(1963), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142021,6 +148979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142030,11 +148989,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22031] = 3, + [21306] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2043), 15, + ACTIONS(1753), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142050,7 +149009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2041), 46, + ACTIONS(1751), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142088,6 +149047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142097,11 +149057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22101] = 3, + [21377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2391), 15, + ACTIONS(1757), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142117,7 +149077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2389), 46, + ACTIONS(1755), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142155,6 +149115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142164,11 +149125,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22171] = 3, + [21448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 15, + ACTIONS(2177), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142184,7 +149145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2189), 46, + ACTIONS(2175), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142222,6 +149183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142231,15 +149193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22241] = 4, - ACTIONS(3441), 1, - anon_sym_SEMI, + [21519] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 14, + ACTIONS(1805), 15, sym_string_start, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -142252,7 +149213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1605), 46, + ACTIONS(1803), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142290,6 +149251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142299,11 +149261,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22313] = 3, + [21590] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2271), 15, + ACTIONS(1801), 15, sym_string_start, ts_builtin_sym_end, anon_sym_SEMI, @@ -142319,7 +149281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2269), 46, + ACTIONS(1799), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142357,6 +149319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142366,14 +149329,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22383] = 3, + [21661] = 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(101), 1, + anon_sym_new, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3511), 1, + anon_sym_STAR, + ACTIONS(3513), 1, + anon_sym_PLUS, + ACTIONS(3515), 1, + anon_sym_QMARK, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(4058), 1, + sym_expression, + STATE(5834), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2275), 15, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(81), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(870), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [21781] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3519), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -142386,7 +149440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2273), 46, + ACTIONS(3517), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142424,6 +149478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142433,14 +149488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22453] = 3, + [21851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1907), 15, + ACTIONS(2703), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -142453,7 +149507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1905), 46, + ACTIONS(2705), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142491,6 +149545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142500,14 +149555,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22523] = 3, + [21921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2215), 15, + ACTIONS(3523), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -142520,7 +149574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2213), 46, + ACTIONS(3521), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142558,6 +149612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142567,14 +149622,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22593] = 3, + [21991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2279), 15, + ACTIONS(1649), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -142587,7 +149641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2277), 46, + ACTIONS(1645), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142625,6 +149679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142634,14 +149689,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22663] = 3, + [22061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2195), 15, + ACTIONS(3525), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -142654,7 +149708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2193), 46, + ACTIONS(3527), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142692,6 +149746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142701,14 +149756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22733] = 3, + [22131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2283), 15, + ACTIONS(3531), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -142721,7 +149775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2281), 46, + ACTIONS(3529), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142759,6 +149813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142768,14 +149823,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22803] = 3, + [22201] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2311), 15, + ACTIONS(3535), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -142788,7 +149842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2309), 46, + ACTIONS(3533), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142826,6 +149880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142835,14 +149890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22873] = 3, + [22271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2287), 15, + ACTIONS(3537), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -142855,7 +149909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2285), 46, + ACTIONS(3539), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142893,6 +149947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142902,14 +149957,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [22943] = 3, + [22341] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2291), 15, + ACTIONS(3543), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -142922,7 +149976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2289), 46, + ACTIONS(3541), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -142960,6 +150014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -142969,101 +150024,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23013] = 23, - ACTIONS(1245), 1, + [22411] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3545), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1251), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1255), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1265), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, sym_float, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(1334), 1, - anon_sym_STAR, - ACTIONS(1342), 1, - anon_sym_LT, - ACTIONS(1344), 1, - anon_sym_await, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3290), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(813), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(3391), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3393), 2, + ACTIONS(3547), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_or, - ACTIONS(1269), 4, + anon_sym_lambda, + anon_sym_yield, + anon_sym_None, sym_integer, sym_identifier, + anon_sym_await, + anon_sym_api, sym_true, sym_false, - ACTIONS(1340), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [22481] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + 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(1336), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3549), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(811), 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(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [23123] = 3, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [22551] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1911), 15, + ACTIONS(3545), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143076,7 +150177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1909), 46, + ACTIONS(3547), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143114,6 +150215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143123,14 +150225,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23193] = 3, + [22621] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 15, + ACTIONS(2421), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143143,7 +150244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1705), 46, + ACTIONS(2419), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143181,6 +150282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143190,14 +150292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23263] = 3, + [22691] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 15, + ACTIONS(3555), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143210,7 +150311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1709), 46, + ACTIONS(3553), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143248,6 +150349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143257,14 +150359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23333] = 3, + [22761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1715), 15, + ACTIONS(3519), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143277,7 +150378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1713), 46, + ACTIONS(3517), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143315,6 +150416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143324,14 +150426,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23403] = 3, + [22831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 15, + ACTIONS(3559), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143344,7 +150445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1717), 46, + ACTIONS(3557), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143382,6 +150483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143391,14 +150493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23473] = 3, + [22901] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2315), 15, + ACTIONS(3561), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143411,7 +150512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2313), 46, + ACTIONS(3563), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143449,6 +150550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143458,14 +150560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23543] = 3, + [22971] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2319), 15, + ACTIONS(3313), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143478,7 +150579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2317), 46, + ACTIONS(3315), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143516,6 +150617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143525,14 +150627,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23613] = 3, + [23041] = 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(101), 1, + anon_sym_new, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(4085), 1, + sym_expression, + STATE(5431), 1, + sym_expression_list, + STATE(5834), 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(870), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [23159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 15, + ACTIONS(3559), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143545,7 +150737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1721), 46, + ACTIONS(3557), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143583,6 +150775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143592,14 +150785,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23683] = 3, + [23229] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2219), 15, + ACTIONS(3565), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143612,7 +150804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2217), 46, + ACTIONS(3567), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143650,6 +150842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143659,14 +150852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23753] = 3, + [23299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2223), 15, + ACTIONS(3571), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143679,7 +150871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2221), 46, + ACTIONS(3569), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143717,6 +150909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143726,14 +150919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23823] = 3, + [23369] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2227), 15, + ACTIONS(3573), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143746,7 +150938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2225), 46, + ACTIONS(3575), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143784,6 +150976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143793,14 +150986,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23893] = 3, + [23439] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3577), 1, + anon_sym_COLON, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4312), 1, + sym_expression, + STATE(5695), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2231), 15, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1283), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [23557] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3581), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143813,7 +151096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2229), 46, + ACTIONS(3579), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143851,6 +151134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143860,14 +151144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [23963] = 3, + [23627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 15, + ACTIONS(3585), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143880,7 +151163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1633), 46, + ACTIONS(3583), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143918,6 +151201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143927,14 +151211,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24033] = 3, + [23697] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 15, + ACTIONS(3589), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -143947,7 +151230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1717), 46, + ACTIONS(3587), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -143985,6 +151268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -143994,14 +151278,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24103] = 3, + [23767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2323), 15, + ACTIONS(3581), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144014,7 +151297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2321), 46, + ACTIONS(3579), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144052,6 +151335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -144061,102 +151345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24173] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3443), 1, - anon_sym_COLON, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4274), 1, - sym_expression, - STATE(5559), 1, - sym__named_expression_lhs, + [23837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1249), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [24291] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3419), 14, + ACTIONS(2703), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -144171,7 +151364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3421), 47, + ACTIONS(2705), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144189,7 +151382,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, @@ -144210,6 +151402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -144219,101 +151412,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24361] = 23, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(1334), 1, - anon_sym_STAR, - ACTIONS(1342), 1, - anon_sym_LT, - ACTIONS(1344), 1, - anon_sym_await, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3290), 1, - sym_primary_expression, + [23907] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1327), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1332), 2, - anon_sym_not, - anon_sym_or, - ACTIONS(1269), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(3523), 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(1336), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3521), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(811), 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(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [24471] = 3, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [23977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 15, + ACTIONS(3591), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144326,7 +151498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1717), 46, + ACTIONS(3593), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144364,6 +151536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -144373,105 +151546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24541] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3445), 1, - anon_sym_COLON, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4319), 1, - sym_expression, - STATE(5559), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1249), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [24659] = 3, + [24047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2235), 15, + ACTIONS(3595), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144484,7 +151565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2233), 46, + ACTIONS(3597), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144522,6 +151603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -144531,14 +151613,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24729] = 3, + [24117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2327), 15, + ACTIONS(2409), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144551,7 +151632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2325), 46, + ACTIONS(2407), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144589,6 +151670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -144598,14 +151680,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24799] = 3, + [24187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2047), 15, + ACTIONS(3599), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144618,7 +151699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2045), 46, + ACTIONS(3601), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144656,6 +151737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -144665,14 +151747,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24869] = 3, + [24257] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2239), 15, + ACTIONS(3603), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144685,7 +151766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2237), 46, + ACTIONS(3605), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144723,6 +151804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -144732,81 +151814,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [24939] = 3, + [24327] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4222), 1, + sym_expression, + STATE(5607), 1, + sym_expression_list, + STATE(5695), 1, + sym__named_expression_lhs, 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, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 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(1765), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1283), 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(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [24445] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, anon_sym_not, + ACTIONS(1297), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 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(1309), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1311), 1, anon_sym_sizeof, - [25009] = 3, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4074), 1, + sym_expression, + STATE(5418), 1, + sym_expression_list, + STATE(5695), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 15, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1283), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [24563] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3609), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144819,7 +152015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1769), 46, + ACTIONS(3607), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144857,6 +152053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -144866,14 +152063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25079] = 3, + [24633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 15, + ACTIONS(3613), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144886,7 +152082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1773), 46, + ACTIONS(3611), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144924,6 +152120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -144933,14 +152130,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25149] = 3, + [24703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 15, + ACTIONS(3531), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -144953,7 +152149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2373), 46, + ACTIONS(3529), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -144991,6 +152187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145000,14 +152197,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25219] = 3, + [24773] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4112), 1, + sym_expression, + STATE(5518), 1, + sym_expression_list, + STATE(5695), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1283), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [24891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 15, + ACTIONS(3615), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145020,7 +152307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1777), 46, + ACTIONS(3617), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145058,6 +152345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145067,14 +152355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25289] = 3, + [24961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1915), 15, + ACTIONS(3619), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145087,7 +152374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1913), 46, + ACTIONS(3621), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145125,6 +152412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145134,14 +152422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25359] = 3, + [25031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1783), 15, + ACTIONS(3623), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145154,7 +152441,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1781), 46, + ACTIONS(3625), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [25101] = 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(3627), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [25171] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3633), 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(3631), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145192,6 +152613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145201,14 +152623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25429] = 3, + [25241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1919), 15, + ACTIONS(3635), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145221,7 +152642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1917), 46, + ACTIONS(3637), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145259,6 +152680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145268,14 +152690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25499] = 3, + [25311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 15, + ACTIONS(3639), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145288,7 +152709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1785), 46, + ACTIONS(3641), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145326,6 +152747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145335,14 +152757,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25569] = 3, + [25381] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 15, + ACTIONS(3645), 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(3643), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [25451] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3647), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145355,7 +152843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1765), 46, + ACTIONS(3649), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145393,6 +152881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145402,14 +152891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25639] = 3, + [25521] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1791), 15, + ACTIONS(3651), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145422,7 +152910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1789), 46, + ACTIONS(3653), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145460,6 +152948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145469,14 +152958,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25709] = 3, + [25591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 15, + ACTIONS(3655), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145489,7 +152977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1773), 46, + ACTIONS(3657), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145527,6 +153015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145536,14 +153025,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25779] = 3, + [25661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1795), 15, + ACTIONS(3609), 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(3607), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [25731] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3659), 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(3661), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [25801] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3663), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145556,7 +153178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1793), 46, + ACTIONS(3665), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145594,6 +153216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145603,68 +153226,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [25849] = 27, - ACTIONS(1243), 1, + [25871] = 27, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3447), 1, - anon_sym_COLON, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4274), 1, + STATE(4297), 1, sym_expression, - STATE(5559), 1, + STATE(5488), 1, + sym_with_item, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -145673,7 +153296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -145694,11 +153317,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [25967] = 3, + [25989] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3423), 14, + ACTIONS(3603), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -145713,7 +153336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3425), 47, + ACTIONS(3605), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145731,7 +153354,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, @@ -145752,6 +153374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145761,14 +153384,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26037] = 3, + [26059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 15, + ACTIONS(2405), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145781,7 +153403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1765), 46, + ACTIONS(2403), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145819,6 +153441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145828,14 +153451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26107] = 3, + [26129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 15, + ACTIONS(3667), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145848,7 +153470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1729), 46, + ACTIONS(3669), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145886,6 +153508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145895,14 +153518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26177] = 3, + [26199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 15, + ACTIONS(3671), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -145915,7 +153537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1797), 46, + ACTIONS(3673), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -145953,6 +153575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -145962,159 +153585,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26247] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4186), 1, - sym_expression, - STATE(5559), 1, - sym__named_expression_lhs, - STATE(5729), 1, - sym_expression_list, + [26269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, + ACTIONS(2465), 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(1249), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2463), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [26365] = 27, - ACTIONS(1243), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [26339] = 27, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(3675), 1, + anon_sym_COLON, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3942), 1, + STATE(4279), 1, sym_expression, - STATE(5290), 1, - sym_expression_list, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146123,7 +153722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146144,14 +153743,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [26483] = 3, + [26457] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1923), 15, + ACTIONS(2401), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -146164,7 +153762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1921), 46, + ACTIONS(2399), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -146202,6 +153800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -146211,14 +153810,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26553] = 3, + [26527] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1927), 15, + ACTIONS(3677), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -146231,7 +153829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1925), 46, + ACTIONS(3679), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -146269,6 +153867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -146278,14 +153877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26623] = 3, + [26597] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1931), 15, + ACTIONS(3633), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -146298,7 +153896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1929), 46, + ACTIONS(3631), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -146336,6 +153934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -146345,159 +153944,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26693] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [26667] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3683), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1251), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1255), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1257), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3681), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1275), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1277), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4188), 1, - sym_expression, - STATE(5559), 1, - sym__named_expression_lhs, - STATE(5781), 1, - sym_expression_list, + [26737] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, + ACTIONS(3613), 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(1249), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3611), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [26811] = 27, - ACTIONS(1243), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [26807] = 27, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3954), 1, + STATE(4104), 1, sym_expression, - STATE(5297), 1, - sym_expression_list, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, + STATE(5846), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -146506,7 +154148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -146527,14 +154169,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [26929] = 3, + [26925] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2119), 15, + ACTIONS(3687), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -146547,7 +154188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2117), 46, + ACTIONS(3685), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -146585,6 +154226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -146594,14 +154236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [26999] = 3, + [26995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2243), 15, + ACTIONS(3555), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -146614,7 +154255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2241), 46, + ACTIONS(3553), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -146652,6 +154293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -146661,14 +154303,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27069] = 3, + [27065] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2199), 15, + ACTIONS(2469), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -146681,7 +154322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2197), 46, + ACTIONS(2467), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -146719,6 +154360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -146728,14 +154370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27139] = 3, + [27135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1935), 15, + ACTIONS(3691), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -146748,7 +154389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1933), 46, + ACTIONS(3689), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -146786,6 +154427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -146795,105 +154437,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27209] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4189), 1, - sym_expression, - STATE(5472), 1, - sym_expression_list, - STATE(5559), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1249), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [27327] = 3, + [27205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2383), 15, + ACTIONS(3695), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -146906,7 +154456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2381), 46, + ACTIONS(3693), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -146944,6 +154494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -146953,14 +154504,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27397] = 3, + [27275] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3697), 1, + anon_sym_COLON, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4312), 1, + sym_expression, + STATE(5695), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2355), 15, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1283), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [27393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3701), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -146973,7 +154614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2353), 46, + ACTIONS(3699), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147011,6 +154652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147020,105 +154662,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27467] = 27, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [27463] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3535), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1251), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1255), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1257), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3533), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1275), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1277), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4190), 1, - sym_expression, - STATE(5483), 1, - sym_expression_list, - STATE(5559), 1, - sym__named_expression_lhs, + [27533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, + ACTIONS(3615), 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(1249), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3617), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [27585] = 3, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [27603] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 15, + ACTIONS(3619), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -147131,7 +154815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2357), 46, + ACTIONS(3621), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147169,6 +154853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147178,14 +154863,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27655] = 3, + [27673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2123), 15, + ACTIONS(3671), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -147198,7 +154882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2121), 46, + ACTIONS(3673), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147236,6 +154920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147245,14 +154930,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27725] = 3, + [27743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2127), 15, + ACTIONS(3703), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -147265,7 +154949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2125), 46, + ACTIONS(3705), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147303,6 +154987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147312,14 +154997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27795] = 3, + [27813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 15, + ACTIONS(3707), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -147332,7 +155016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1801), 46, + ACTIONS(3709), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147370,6 +155054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147379,14 +155064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27865] = 3, + [27883] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1659), 15, + ACTIONS(3713), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -147399,7 +155083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1657), 46, + ACTIONS(3711), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147437,6 +155121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147446,14 +155131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [27935] = 3, + [27953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2363), 15, + ACTIONS(3717), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -147466,7 +155150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2361), 46, + ACTIONS(3715), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147504,6 +155188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147513,14 +155198,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28005] = 3, + [28023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 15, + ACTIONS(3721), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -147533,7 +155217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1661), 46, + ACTIONS(3719), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147571,6 +155255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147580,14 +155265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28075] = 3, + [28093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 15, + ACTIONS(3725), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -147600,7 +155284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2365), 46, + ACTIONS(3723), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147638,6 +155322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147647,14 +155332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28145] = 3, + [28163] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 15, + ACTIONS(3543), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -147667,7 +155351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2369), 46, + ACTIONS(3541), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147705,6 +155389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147714,14 +155399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28215] = 3, + [28233] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 15, + ACTIONS(3713), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -147734,7 +155418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1665), 46, + ACTIONS(3711), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147772,6 +155456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147781,14 +155466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28285] = 3, + [28303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 15, + ACTIONS(3727), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -147801,7 +155485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1805), 46, + ACTIONS(3729), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147839,6 +155523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147848,14 +155533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28355] = 3, + [28373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 15, + ACTIONS(3731), 14, sym_string_start, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -147868,7 +155552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(1701), 46, + ACTIONS(3733), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -147906,6 +155590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -147915,698 +155600,810 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [28425] = 26, - ACTIONS(67), 1, + [28443] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3735), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(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(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(2813), 1, + ACTIONS(3737), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2815), 1, anon_sym_lambda, - ACTIONS(2817), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(3481), 1, - sym_expression, - STATE(5822), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [28513] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3741), 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(824), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3739), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(3492), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [28540] = 26, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(2497), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2501), 1, - sym_float, - ACTIONS(2505), 1, - anon_sym_sizeof, - ACTIONS(2507), 1, - sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2841), 1, + sym_integer, sym_identifier, - ACTIONS(2849), 1, anon_sym_await, - ACTIONS(3033), 1, - anon_sym_STAR, - ACTIONS(3449), 1, - anon_sym_not, - ACTIONS(3451), 1, - anon_sym_lambda, - ACTIONS(3453), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(2120), 1, - sym_primary_expression, - STATE(2229), 1, - sym_string, - STATE(2546), 1, - sym_list_splat_pattern, - STATE(2600), 1, - sym_expression, - STATE(5512), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [28583] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2491), 4, + ACTIONS(3743), 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(2845), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3745), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2536), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2512), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [28655] = 26, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(2497), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, - anon_sym_None, - ACTIONS(2501), 1, - sym_float, - ACTIONS(2505), 1, - anon_sym_sizeof, - ACTIONS(2507), 1, - sym_string_start, - ACTIONS(2559), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2563), 1, anon_sym_lambda, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2841), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2849), 1, anon_sym_await, - ACTIONS(3033), 1, - anon_sym_STAR, - STATE(2127), 1, - sym_primary_expression, - STATE(2229), 1, - sym_string, - STATE(2546), 1, - sym_list_splat_pattern, - STATE(4028), 1, - sym_expression, - STATE(5737), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [28653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2491), 4, + ACTIONS(3749), 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(2845), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3747), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2536), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2512), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [28770] = 26, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(2497), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2501), 1, - sym_float, - ACTIONS(2505), 1, - anon_sym_sizeof, - ACTIONS(2507), 1, - sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2841), 1, + sym_integer, sym_identifier, - ACTIONS(2849), 1, anon_sym_await, - ACTIONS(3033), 1, - anon_sym_STAR, - ACTIONS(3449), 1, - anon_sym_not, - ACTIONS(3451), 1, - anon_sym_lambda, - ACTIONS(3453), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(2120), 1, - sym_primary_expression, - STATE(2229), 1, - sym_string, - STATE(2546), 1, - sym_list_splat_pattern, - STATE(2575), 1, - sym_expression, - STATE(5512), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [28723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2491), 4, + ACTIONS(3753), 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(2845), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3751), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2536), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2512), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [28885] = 26, - ACTIONS(2483), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [28793] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3727), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2489), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2493), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2497), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, - anon_sym_None, - ACTIONS(2501), 1, sym_float, - ACTIONS(2505), 1, - anon_sym_sizeof, - ACTIONS(2507), 1, - sym_string_start, - ACTIONS(2559), 1, + ACTIONS(3729), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2563), 1, anon_sym_lambda, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2841), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2849), 1, anon_sym_await, - ACTIONS(3033), 1, - anon_sym_STAR, - STATE(2127), 1, - sym_primary_expression, - STATE(2229), 1, - sym_string, - STATE(2546), 1, - sym_list_splat_pattern, - STATE(4001), 1, - sym_expression, - STATE(5737), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [28863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2491), 4, + ACTIONS(3735), 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(2845), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3737), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2536), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2512), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [29000] = 26, - ACTIONS(2439), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [28933] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3755), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2445), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2449), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2453), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, - anon_sym_None, - ACTIONS(2457), 1, sym_float, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, - sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, + ACTIONS(3757), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2591), 1, anon_sym_lambda, - ACTIONS(2595), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2597), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3076), 1, - anon_sym_STAR, - STATE(2119), 1, - sym_primary_expression, - STATE(2193), 1, - sym_string, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(3916), 1, - sym_expression, - STATE(5491), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [29003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2447), 4, + ACTIONS(3585), 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(2581), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3583), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [29115] = 26, - ACTIONS(2439), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [29073] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3589), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2445), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2449), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2453), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, - anon_sym_None, - ACTIONS(2457), 1, sym_float, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, - sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, + ACTIONS(3587), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2591), 1, anon_sym_lambda, - ACTIONS(2595), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2597), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3076), 1, - anon_sym_STAR, - STATE(2119), 1, - sym_primary_expression, - STATE(2193), 1, - sym_string, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(3870), 1, - sym_expression, - STATE(5491), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [29143] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2447), 4, + ACTIONS(3571), 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(2581), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3569), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [29230] = 26, - ACTIONS(2439), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [29213] = 23, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, - anon_sym_not, - ACTIONS(2589), 1, + ACTIONS(1368), 1, + anon_sym_STAR, + ACTIONS(1376), 1, anon_sym_LT, - ACTIONS(2591), 1, - anon_sym_lambda, - ACTIONS(2595), 1, + ACTIONS(1378), 1, anon_sym_await, - ACTIONS(2597), 1, - anon_sym_new, - ACTIONS(3076), 1, - anon_sym_STAR, - STATE(2119), 1, - sym_primary_expression, - STATE(2193), 1, + STATE(2209), 1, sym_string, - STATE(2449), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3898), 1, - sym_expression, - STATE(5491), 1, - sym__named_expression_lhs, + STATE(3299), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, + ACTIONS(859), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3469), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(1303), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, + ACTIONS(857), 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(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -148627,636 +156424,549 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [29345] = 26, - ACTIONS(2439), 1, + [29323] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3333), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2445), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2449), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2453), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, - anon_sym_None, - ACTIONS(2457), 1, sym_float, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, - sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, - anon_sym_not, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2591), 1, + ACTIONS(3331), 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_with, + 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(2595), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2597), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3076), 1, - anon_sym_STAR, - STATE(2119), 1, - sym_primary_expression, - STATE(2193), 1, - sym_string, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(2466), 1, - sym_expression, - STATE(5491), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [29393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2447), 4, + 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, - ACTIONS(2581), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3527), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [29460] = 26, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_LBRACE, - ACTIONS(2453), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, - anon_sym_None, - ACTIONS(2457), 1, - sym_float, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, - sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2591), 1, anon_sym_lambda, - ACTIONS(2595), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2597), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3076), 1, - anon_sym_STAR, - STATE(2119), 1, - sym_primary_expression, - STATE(2193), 1, - sym_string, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(3899), 1, - sym_expression, - STATE(5491), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [29463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2447), 4, + ACTIONS(3537), 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(2581), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3539), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [29575] = 26, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_LBRACE, - ACTIONS(2453), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2457), 1, - sym_float, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, - sym_string_start, - ACTIONS(2573), 1, + sym_integer, sym_identifier, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2595), 1, anon_sym_await, - ACTIONS(3076), 1, - anon_sym_STAR, - ACTIONS(3455), 1, - anon_sym_not, - ACTIONS(3457), 1, - anon_sym_lambda, - ACTIONS(3459), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(2114), 1, - sym_primary_expression, - STATE(2193), 1, - sym_string, - STATE(2321), 1, - sym_expression, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(5547), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [29533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2447), 4, + ACTIONS(3761), 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(2581), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3759), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [29690] = 26, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_LBRACE, - ACTIONS(2453), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, - anon_sym_None, - ACTIONS(2457), 1, - sym_float, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, - sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2591), 1, anon_sym_lambda, - ACTIONS(2595), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2597), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3076), 1, - anon_sym_STAR, - STATE(2119), 1, - sym_primary_expression, - STATE(2193), 1, - sym_string, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(3886), 1, - sym_expression, - STATE(5491), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [29603] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2447), 4, + ACTIONS(3765), 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(2581), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3763), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [29805] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1263), 1, anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1273), 1, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1275), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1277), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4046), 1, - sym_expression, - STATE(5559), 1, - sym__named_expression_lhs, + [29673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, + ACTIONS(3769), 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(1249), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3767), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [29920] = 26, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_LBRACE, - ACTIONS(2453), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, anon_sym_None, - ACTIONS(2457), 1, - sym_float, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, - sym_string_start, - ACTIONS(2573), 1, + sym_integer, sym_identifier, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2595), 1, anon_sym_await, - ACTIONS(3076), 1, - anon_sym_STAR, - ACTIONS(3455), 1, - anon_sym_not, - ACTIONS(3457), 1, - anon_sym_lambda, - ACTIONS(3459), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(2114), 1, - sym_primary_expression, - STATE(2193), 1, - sym_string, - STATE(2378), 1, - sym_expression, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(5547), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [29743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2447), 4, + ACTIONS(3721), 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(2581), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3719), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [30035] = 26, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_LBRACE, - ACTIONS(2453), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, - anon_sym_None, - ACTIONS(2457), 1, - sym_float, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, - sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2591), 1, anon_sym_lambda, - ACTIONS(2595), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2597), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3076), 1, - anon_sym_STAR, - STATE(2119), 1, - sym_primary_expression, - STATE(2193), 1, - sym_string, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(3904), 1, - sym_expression, - STATE(5491), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [29813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2447), 4, + ACTIONS(3771), 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(2581), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3773), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2468), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [30150] = 3, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [29883] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2419), 14, + ACTIONS(2737), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -149269,7 +156979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2417), 46, + ACTIONS(2735), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -149307,6 +157017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -149316,11 +157027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [30219] = 3, + [29953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2423), 14, + ACTIONS(3769), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -149335,7 +157046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2421), 46, + ACTIONS(3767), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -149373,6 +157084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -149382,155 +157094,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [30288] = 26, - ACTIONS(1975), 1, + [30023] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3561), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1981), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1985), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1989), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, - anon_sym_None, - ACTIONS(1993), 1, sym_float, - ACTIONS(1997), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, - sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2703), 1, + ACTIONS(3563), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2707), 1, anon_sym_lambda, - ACTIONS(2713), 1, - anon_sym_new, - ACTIONS(2955), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2963), 1, anon_sym_await, - STATE(2117), 1, - sym_primary_expression, - STATE(2153), 1, - sym_string, - STATE(2421), 1, - sym_list_splat_pattern, - STATE(3903), 1, - sym_expression, - STATE(5700), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [30093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1983), 4, + ACTIONS(3573), 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(3575), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3906), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2347), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [30403] = 26, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [30163] = 27, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1454), 1, + anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, + anon_sym_lambda, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1470), 1, + anon_sym_new, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2427), 1, anon_sym_STAR, - ACTIONS(2703), 1, - anon_sym_not, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2707), 1, - anon_sym_lambda, - ACTIONS(2713), 1, - anon_sym_new, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2431), 1, anon_sym_await, - STATE(2117), 1, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2403), 1, sym_string, - STATE(2421), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(3860), 1, + STATE(4325), 1, sym_expression, - STATE(5700), 1, + STATE(5328), 1, + sym_with_item, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -149539,7 +157298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -149560,511 +157319,872 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [30518] = 26, - ACTIONS(1975), 1, + [30281] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3623), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1981), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1985), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1989), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, - anon_sym_None, - ACTIONS(1993), 1, sym_float, - ACTIONS(1997), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, - sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2703), 1, + ACTIONS(3625), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2707), 1, anon_sym_lambda, - ACTIONS(2713), 1, - anon_sym_new, - ACTIONS(2955), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2963), 1, anon_sym_await, - STATE(2117), 1, - sym_primary_expression, - STATE(2153), 1, - sym_string, - STATE(2421), 1, - sym_list_splat_pattern, - STATE(3866), 1, - sym_expression, - STATE(5700), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [30351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1983), 4, + ACTIONS(3749), 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(3747), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3906), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2347), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [30633] = 26, - ACTIONS(1975), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [30421] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3717), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1981), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1985), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1989), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, - anon_sym_None, - ACTIONS(1993), 1, sym_float, - ACTIONS(1997), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, - sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2703), 1, + ACTIONS(3715), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2707), 1, anon_sym_lambda, - ACTIONS(2713), 1, - anon_sym_new, - ACTIONS(2955), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2963), 1, anon_sym_await, - STATE(2117), 1, - sym_primary_expression, - STATE(2153), 1, - sym_string, - STATE(2421), 1, - sym_list_splat_pattern, - STATE(3867), 1, - sym_expression, - STATE(5700), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [30491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1983), 4, + ACTIONS(2737), 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(2735), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3906), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2347), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [30748] = 26, - ACTIONS(1975), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [30561] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3635), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1981), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1985), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1989), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, - anon_sym_None, - ACTIONS(1993), 1, sym_float, - ACTIONS(1997), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, - sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2703), 1, + ACTIONS(3637), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2707), 1, anon_sym_lambda, - ACTIONS(2713), 1, - anon_sym_new, - ACTIONS(2955), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2963), 1, anon_sym_await, - STATE(2117), 1, - sym_primary_expression, - STATE(2153), 1, - sym_string, - STATE(2421), 1, - sym_list_splat_pattern, - STATE(3887), 1, - sym_expression, - STATE(5700), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [30631] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1983), 4, + ACTIONS(3639), 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(3641), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3906), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2347), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [30863] = 26, - ACTIONS(1975), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [30701] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3647), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1981), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1985), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1989), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, - anon_sym_None, - ACTIONS(1993), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(3649), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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_IF, + anon_sym_cdef, + 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(1999), 1, + [30771] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3775), 14, sym_string_start, - ACTIONS(2697), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(2705), 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(2955), 1, - sym_identifier, - ACTIONS(2963), 1, - anon_sym_await, - ACTIONS(3461), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3777), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3463), 1, anon_sym_lambda, - ACTIONS(3465), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(2116), 1, - sym_primary_expression, - STATE(2153), 1, - sym_string, - STATE(2387), 1, - sym_expression, - STATE(2421), 1, - sym_list_splat_pattern, - STATE(5560), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [30841] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1983), 4, + ACTIONS(3667), 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(3669), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2331), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2347), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [30978] = 26, - ACTIONS(1975), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [30911] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2413), 14, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1981), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1985), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1989), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, - anon_sym_None, - ACTIONS(1993), 1, sym_float, - ACTIONS(1997), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, - sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2703), 1, + ACTIONS(2411), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2707), 1, anon_sym_lambda, - ACTIONS(2713), 1, - anon_sym_new, - ACTIONS(2955), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, sym_identifier, - ACTIONS(2963), 1, anon_sym_await, - STATE(2117), 1, - sym_primary_expression, - STATE(2153), 1, - sym_string, - STATE(2421), 1, - sym_list_splat_pattern, - STATE(3901), 1, - sym_expression, - STATE(5700), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [30981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(2417), 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(2415), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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(1983), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [31051] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3645), 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(3643), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3906), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2347), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [31093] = 26, - ACTIONS(1360), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [31121] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3467), 1, - anon_sym_not, - ACTIONS(3469), 1, - anon_sym_lambda, - ACTIONS(3471), 1, - anon_sym_new, - STATE(2128), 1, + ACTIONS(3779), 1, + anon_sym_COLON, + STATE(2156), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2209), 1, sym_string, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2610), 1, + STATE(4312), 1, sym_expression, - STATE(5689), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150073,7 +158193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150094,155 +158214,269 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31208] = 26, - ACTIONS(1975), 1, + [31239] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3651), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1981), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1985), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1989), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, - anon_sym_None, - ACTIONS(1993), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(3653), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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_IF, + anon_sym_cdef, + 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(1999), 1, + [31309] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3741), 14, sym_string_start, - ACTIONS(2697), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(2705), 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(2955), 1, - sym_identifier, - ACTIONS(2963), 1, - anon_sym_await, - ACTIONS(3461), 1, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3739), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3463), 1, anon_sym_lambda, - ACTIONS(3465), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(2116), 1, - sym_primary_expression, - STATE(2153), 1, - sym_string, - STATE(2402), 1, - sym_expression, - STATE(2421), 1, - sym_list_splat_pattern, - STATE(5560), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [31379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1983), 4, + ACTIONS(3783), 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(3781), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2331), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2347), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [31323] = 26, - ACTIONS(1975), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [31449] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2703), 1, - anon_sym_not, - ACTIONS(2705), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2707), 1, - anon_sym_lambda, - ACTIONS(2713), 1, - anon_sym_new, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, - anon_sym_await, - STATE(2117), 1, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3785), 1, + anon_sym_COLON, + STATE(2156), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2209), 1, sym_string, - STATE(2421), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3889), 1, + STATE(4295), 1, sym_expression, - STATE(5700), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -150251,7 +158485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -150272,956 +158506,1006 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [31438] = 26, - ACTIONS(1414), 1, + [31567] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3771), 14, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1418), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1420), 1, - anon_sym_not, - ACTIONS(1422), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1424), 1, - anon_sym_lambda, - ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, - anon_sym_None, - ACTIONS(1432), 1, sym_float, - ACTIONS(1436), 1, + ACTIONS(3773), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1438), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3473), 1, - anon_sym_STAR, - STATE(2221), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4292), 1, - sym_expression, - STATE(5581), 1, - sym__named_expression_lhs, + [31637] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1416), 4, + ACTIONS(3659), 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(1599), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3661), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [31553] = 26, - ACTIONS(1360), 1, - anon_sym_LBRACE, - ACTIONS(1362), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1366), 1, anon_sym_lambda, - ACTIONS(1370), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1376), 1, - sym_float, - ACTIONS(1382), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1392), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1394), 1, - sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, - anon_sym_STAR, - STATE(2122), 1, - sym_primary_expression, - STATE(2202), 1, - sym_string, - STATE(2604), 1, - sym_list_splat_pattern, - STATE(3952), 1, - sym_expression, - STATE(5800), 1, - sym__named_expression_lhs, + [31707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1358), 4, + ACTIONS(3663), 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(1502), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3665), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2579), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2556), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [31668] = 26, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, - anon_sym_LBRACE, - ACTIONS(1420), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1426), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1432), 1, - sym_float, - ACTIONS(1436), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1438), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4318), 1, - sym_expression, - STATE(5581), 1, - sym__named_expression_lhs, + [31777] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1416), 4, + ACTIONS(3787), 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(1599), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3789), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [31783] = 26, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, - anon_sym_LBRACE, - ACTIONS(1420), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1426), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1432), 1, - sym_float, - ACTIONS(1436), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1438), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4323), 1, - sym_expression, - STATE(5581), 1, - sym__named_expression_lhs, + [31847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1416), 4, + ACTIONS(3313), 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(1599), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3315), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [31898] = 26, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, - anon_sym_LBRACE, - ACTIONS(1420), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1426), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1432), 1, - sym_float, - ACTIONS(1436), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1438), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4324), 1, - sym_expression, - STATE(5581), 1, - sym__named_expression_lhs, + [31917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1416), 4, + 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, - ACTIONS(1599), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3331), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [32013] = 26, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, - anon_sym_LBRACE, - ACTIONS(1420), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1426), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1432), 1, - sym_float, - ACTIONS(1436), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1438), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(2757), 1, - sym_expression, - STATE(5581), 1, - sym__named_expression_lhs, + [31987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1416), 4, + ACTIONS(3783), 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(1599), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3781), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [32128] = 26, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, - anon_sym_LBRACE, - ACTIONS(1420), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1426), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1432), 1, - sym_float, - ACTIONS(1436), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1438), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4325), 1, - sym_expression, - STATE(5581), 1, - sym__named_expression_lhs, + [32057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1416), 4, + ACTIONS(3761), 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(1599), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3759), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [32243] = 26, - ACTIONS(1414), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [32127] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3791), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1418), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1422), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, - anon_sym_None, - ACTIONS(1432), 1, sym_float, - ACTIONS(1438), 1, - anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3475), 1, + ACTIONS(3793), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3477), 1, anon_sym_lambda, - ACTIONS(3479), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(2197), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(2711), 1, - sym_expression, - STATE(5575), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [32197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1416), 4, + ACTIONS(3765), 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(1599), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3763), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [32358] = 26, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, - anon_sym_LBRACE, - ACTIONS(1420), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, anon_sym_lambda, - ACTIONS(1426), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + anon_sym_yield, anon_sym_None, - ACTIONS(1432), 1, - sym_float, - ACTIONS(1436), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(1438), 1, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4341), 1, - sym_expression, - STATE(5581), 1, - sym__named_expression_lhs, + [32267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1416), 4, + ACTIONS(3591), 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(1599), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3593), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [32473] = 26, - ACTIONS(1414), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [32337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3683), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1418), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(1422), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(1426), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, - anon_sym_None, - ACTIONS(1432), 1, sym_float, - ACTIONS(1438), 1, - anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3475), 1, + ACTIONS(3681), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3477), 1, anon_sym_lambda, - ACTIONS(3479), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(2197), 1, - sym_primary_expression, - STATE(2410), 1, - sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(2717), 1, - sym_expression, - STATE(5575), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [32407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(3795), 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(3797), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_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(1416), 4, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [32477] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3687), 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(1599), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3685), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2712), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [32588] = 26, - ACTIONS(1414), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [32547] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1436), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2209), 1, sym_string, - STATE(2703), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4222), 1, + STATE(4160), 1, sym_expression, - STATE(5581), 1, + STATE(5695), 1, sym__named_expression_lhs, + STATE(5768), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151230,7 +159514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151251,511 +159535,537 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [32703] = 26, - ACTIONS(2511), 1, + [32665] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3775), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2517), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2521), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2525), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, + ACTIONS(3777), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2685), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2687), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3909), 1, - sym_expression, - STATE(5721), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [32735] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, + ACTIONS(3801), 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(2673), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3799), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [32818] = 26, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2685), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2687), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3912), 1, - sym_expression, - STATE(5721), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [32805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, + ACTIONS(3565), 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(2673), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3567), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [32933] = 26, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2685), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2687), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3913), 1, - sym_expression, - STATE(5721), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [32875] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, + ACTIONS(3677), 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(2673), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3679), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [33048] = 26, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2685), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2687), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(2693), 1, - sym_expression, - STATE(5721), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [32945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, + ACTIONS(3551), 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(2673), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3549), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [33163] = 26, - ACTIONS(2511), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [33015] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3731), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2517), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2521), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(2525), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_LT, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, + ACTIONS(3733), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, anon_sym_lambda, - ACTIONS(2685), 1, + anon_sym_yield, + anon_sym_None, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(2687), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(3918), 1, - sym_expression, - STATE(5721), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [33085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, + ACTIONS(3743), 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(2673), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3745), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [33278] = 26, - ACTIONS(2511), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [33155] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3481), 1, - anon_sym_not, - ACTIONS(3483), 1, - anon_sym_lambda, - ACTIONS(3485), 1, - anon_sym_new, - STATE(2195), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2209), 1, sym_string, - STATE(2642), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2677), 1, + STATE(4214), 1, sym_expression, - STATE(5588), 1, + STATE(5695), 1, sym__named_expression_lhs, + STATE(5770), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151764,7 +160074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151785,66 +160095,68 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33393] = 26, - ACTIONS(2511), 1, + [33273] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2177), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2209), 1, sym_string, - STATE(2642), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3895), 1, + STATE(4013), 1, sym_expression, - STATE(5721), 1, + STATE(5342), 1, + sym_expression_list, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -151853,7 +160165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -151874,155 +160186,135 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33508] = 26, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - ACTIONS(3481), 1, - anon_sym_not, - ACTIONS(3483), 1, - anon_sym_lambda, - ACTIONS(3485), 1, - anon_sym_new, - STATE(2195), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(2679), 1, - sym_expression, - STATE(5588), 1, - sym__named_expression_lhs, + [33391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, + ACTIONS(3805), 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(2673), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3803), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [33623] = 26, - ACTIONS(2511), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [33461] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2177), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2209), 1, sym_string, - STATE(2642), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3921), 1, + STATE(4077), 1, sym_expression, - STATE(5721), 1, + STATE(5484), 1, + sym_expression_list, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152031,7 +160323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152052,155 +160344,135 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33738] = 26, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, - sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(4168), 1, - sym_expression, - STATE(5721), 1, - sym__named_expression_lhs, + [33579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(2519), 4, + ACTIONS(3795), 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(2673), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3797), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2648), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2647), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [33853] = 26, - ACTIONS(1360), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [33649] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1362), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1366), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1370), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1382), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1392), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2122), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2209), 1, sym_string, - STATE(2543), 1, - sym_expression, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(5800), 1, + STATE(4216), 1, + sym_expression, + STATE(5695), 1, sym__named_expression_lhs, + STATE(5826), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152209,7 +160481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152230,69 +160502,68 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [33968] = 27, - ACTIONS(2511), 1, + [33767] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3141), 1, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3487), 1, - sym_identifier, - ACTIONS(3491), 1, - anon_sym_await, - STATE(2209), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2209), 1, sym_string, - STATE(2642), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4308), 1, + STATE(4044), 1, sym_expression, - STATE(5721), 1, + STATE(5350), 1, + sym_expression_list, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2602), 2, - sym_attribute, - sym_subscript, - ACTIONS(2509), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3489), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152301,9 +160572,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 18, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -152320,11 +160593,11 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34085] = 3, + [33885] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3493), 14, + ACTIONS(3801), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -152339,7 +160612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3495), 46, + ACTIONS(3799), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -152377,6 +160650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -152386,11 +160660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [34154] = 3, + [33955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3497), 14, + ACTIONS(3691), 14, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -152405,7 +160679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3499), 46, + ACTIONS(3689), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -152443,6 +160717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -152452,13 +160727,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [34223] = 3, + [34025] = 23, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(1368), 1, + anon_sym_STAR, + ACTIONS(1376), 1, + anon_sym_LT, + ACTIONS(1378), 1, + anon_sym_await, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(3299), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3503), 14, - sym__dedent, + ACTIONS(859), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1361), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1366), 2, + anon_sym_not, + anon_sym_or, + ACTIONS(1303), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1374), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1370), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + ACTIONS(857), 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(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [34135] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3695), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -152471,7 +160833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3501), 46, + ACTIONS(3693), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -152509,6 +160871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -152518,66 +160881,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [34292] = 26, - ACTIONS(1414), 1, + [34205] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1436), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2209), 1, sym_string, - STATE(2703), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4320), 1, + STATE(4220), 1, sym_expression, - STATE(5581), 1, + STATE(5519), 1, + sym_expression_list, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152586,7 +160951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152607,13 +160972,13 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34407] = 3, + [34323] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3507), 14, - sym__dedent, + ACTIONS(3701), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -152626,7 +160991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3505), 46, + ACTIONS(3699), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -152664,6 +161029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -152673,155 +161039,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [34476] = 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(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - ACTIONS(3509), 1, - anon_sym_not, - ACTIONS(3511), 1, - anon_sym_lambda, - ACTIONS(3513), 1, - anon_sym_new, - STATE(2093), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(2168), 1, - sym_expression, - STATE(5614), 1, - sym__named_expression_lhs, + [34393] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3725), 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(824), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3723), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(2196), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [34591] = 26, - ACTIONS(1243), 1, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [34463] = 27, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4297), 1, + STATE(4223), 1, sym_expression, - STATE(5559), 1, + STATE(5531), 1, + sym_expression_list, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -152830,7 +161176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -152851,155 +161197,202 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34706] = 26, - ACTIONS(67), 1, + [34581] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3629), 14, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, anon_sym_LT, - ACTIONS(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(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - ACTIONS(3509), 1, + ACTIONS(3627), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3511), 1, anon_sym_lambda, - ACTIONS(3513), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(2093), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(2170), 1, - sym_expression, - STATE(5614), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [34651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3755), 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(824), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3757), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2196), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [34821] = 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(809), 1, + sym_integer, sym_identifier, - ACTIONS(849), 1, anon_sym_await, - ACTIONS(1313), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [34721] = 27, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - ACTIONS(3509), 1, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(3511), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(3513), 1, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - STATE(2093), 1, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3807), 1, + anon_sym_COLON, + STATE(2156), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2209), 1, sym_string, - STATE(2166), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2171), 1, + STATE(4312), 1, sym_expression, - STATE(5614), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2196), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153008,7 +161401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -153029,280 +161422,348 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [34936] = 26, - ACTIONS(67), 1, + [34839] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3595), 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, - anon_sym_None, - ACTIONS(83), 1, sym_float, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - ACTIONS(3509), 1, + ACTIONS(3597), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3511), 1, anon_sym_lambda, - ACTIONS(3513), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(2093), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(2172), 1, - sym_expression, - STATE(5614), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [34909] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3599), 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(824), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3601), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2196), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [35051] = 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(809), 1, + sym_integer, sym_identifier, - ACTIONS(849), 1, anon_sym_await, - ACTIONS(1313), 1, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [34979] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3655), 14, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, anon_sym_STAR, - ACTIONS(3509), 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(3657), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(3511), 1, anon_sym_lambda, - ACTIONS(3513), 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_IF, + anon_sym_cdef, + anon_sym_cpdef, anon_sym_new, - STATE(2093), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(2173), 1, - sym_expression, - STATE(5614), 1, - sym__named_expression_lhs, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [35049] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(3753), 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(824), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(3751), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - anon_sym_api, - STATE(2196), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [35166] = 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(809), 1, + sym_integer, sym_identifier, - ACTIONS(849), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4301), 1, - sym_expression, - STATE(5657), 1, - sym__named_expression_lhs, + anon_sym_api, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [35119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(65), 4, + ACTIONS(2473), 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(824), 5, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + sym_float, + ACTIONS(2471), 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_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, + anon_sym_type, + anon_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(3492), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [35281] = 3, + sym_true, + sym_false, + anon_sym_property, + anon_sym_include, + anon_sym_DEF, + anon_sym_IF, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_new, + anon_sym_ctypedef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + anon_sym_sizeof, + [35189] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2729), 14, - sym__dedent, + ACTIONS(3805), 14, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -153315,7 +161776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(2727), 46, + ACTIONS(3803), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -153353,6 +161814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -153362,13 +161824,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [35350] = 3, + [35259] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3515), 14, + ACTIONS(3703), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -153381,7 +161843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3517), 46, + ACTIONS(3705), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -153419,6 +161881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -153428,13 +161891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [35419] = 3, + [35329] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3519), 14, + ACTIONS(3707), 14, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -153447,7 +161910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3521), 46, + ACTIONS(3709), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -153485,6 +161948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -153494,11 +161958,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [35488] = 3, + [35399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3525), 14, + ACTIONS(3787), 14, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -153513,7 +161977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - ACTIONS(3523), 46, + ACTIONS(3789), 47, anon_sym_import, anon_sym_cimport, anon_sym_from, @@ -153551,6 +162015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_include, anon_sym_DEF, + anon_sym_IF, anon_sym_cdef, anon_sym_cpdef, anon_sym_new, @@ -153560,66 +162025,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_readonly, anon_sym_sizeof, - [35557] = 26, - ACTIONS(1975), 1, + [35469] = 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(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2819), 1, + anon_sym_not, + ACTIONS(2821), 1, + anon_sym_lambda, + ACTIONS(2823), 1, + anon_sym_new, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(3529), 1, + sym_expression, + STATE(5872), 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(870), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [35584] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, - anon_sym_await, - ACTIONS(2995), 1, - anon_sym_not, - ACTIONS(2997), 1, - anon_sym_lambda, - ACTIONS(2999), 1, - anon_sym_new, - STATE(2117), 1, + ACTIONS(3113), 1, + anon_sym_STAR, + STATE(2156), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2209), 1, sym_string, - STATE(2421), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4307), 1, + STATE(4588), 1, sym_expression, - STATE(5757), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153628,7 +162182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -153649,66 +162203,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35672] = 26, - ACTIONS(1414), 1, + [35699] = 27, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, + ACTIONS(1454), 1, anon_sym_not, - ACTIONS(1422), 1, + ACTIONS(1456), 1, anon_sym_LT, - ACTIONS(1424), 1, + ACTIONS(1458), 1, anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1436), 1, + ACTIONS(1470), 1, anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2427), 1, anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, + ACTIONS(2571), 1, anon_sym_LPAREN, - ACTIONS(3065), 1, + ACTIONS(3809), 1, sym_identifier, - STATE(2221), 1, + ACTIONS(3813), 1, + anon_sym_await, + STATE(2259), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2403), 1, sym_string, - STATE(2703), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(4235), 1, + STATE(4273), 1, sym_expression, - STATE(5581), 1, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + STATE(2583), 2, + sym_attribute, + sym_subscript, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(3811), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153717,11 +162274,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2805), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -153738,66 +162293,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35787] = 26, - ACTIONS(67), 1, + [35816] = 26, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, + anon_sym_LBRACK, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - ACTIONS(3509), 1, + ACTIONS(2599), 1, anon_sym_not, - ACTIONS(3511), 1, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(2603), 1, anon_sym_lambda, - ACTIONS(3513), 1, + ACTIONS(2609), 1, anon_sym_new, - STATE(2093), 1, + ACTIONS(2913), 1, + sym_identifier, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, + anon_sym_STAR, + STATE(2168), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2283), 1, sym_string, - STATE(2166), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(2174), 1, + STATE(3995), 1, sym_expression, - STATE(5614), 1, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2196), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153806,7 +162361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -153827,132 +162382,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [35902] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3527), 14, - sym_string_start, - ts_builtin_sym_end, + [35931] = 26, + ACTIONS(2545), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2551), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2555), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2559), 1, 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(2561), 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(2563), 1, + sym_float, + ACTIONS(2567), 1, anon_sym_sizeof, - [35971] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2569), 1, + sym_string_start, + ACTIONS(2599), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2603), 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(2609), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(809), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2921), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2168), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2283), 1, sym_string, - STATE(2166), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(4177), 1, + STATE(4016), 1, sym_expression, - STATE(5657), 1, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -153961,7 +162450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -153982,66 +162471,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36086] = 26, - ACTIONS(2483), 1, + [36046] = 26, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2559), 1, + ACTIONS(2599), 1, anon_sym_not, - ACTIONS(2561), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(2603), 1, anon_sym_lambda, - ACTIONS(2569), 1, + ACTIONS(2609), 1, anon_sym_new, - ACTIONS(2841), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(2849), 1, + ACTIONS(2921), 1, anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2127), 1, + STATE(2168), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2283), 1, sym_string, - STATE(2546), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(4093), 1, + STATE(4022), 1, sym_expression, - STATE(5737), 1, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154050,7 +162539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154071,66 +162560,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36201] = 26, - ACTIONS(1360), 1, + [36161] = 26, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, + anon_sym_LBRACK, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, - anon_sym_STAR, - ACTIONS(3467), 1, + ACTIONS(2599), 1, anon_sym_not, - ACTIONS(3469), 1, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(2603), 1, anon_sym_lambda, - ACTIONS(3471), 1, + ACTIONS(2609), 1, anon_sym_new, - STATE(2128), 1, + ACTIONS(2913), 1, + sym_identifier, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, + anon_sym_STAR, + STATE(2168), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2283), 1, sym_string, - STATE(2586), 1, - sym_expression, - STATE(2604), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(5689), 1, + STATE(2637), 1, + sym_expression, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154139,7 +162628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154160,132 +162649,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36316] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3533), 14, - sym__dedent, - sym_string_start, + [36276] = 26, + ACTIONS(2545), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2551), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2555), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3531), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2561), 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(2563), 1, + sym_float, + ACTIONS(2567), 1, anon_sym_sizeof, - [36385] = 26, - ACTIONS(1360), 1, - anon_sym_LBRACE, - ACTIONS(1362), 1, + ACTIONS(2569), 1, + sym_string_start, + ACTIONS(2599), 1, anon_sym_not, - ACTIONS(1364), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(1366), 1, + ACTIONS(2603), 1, anon_sym_lambda, - ACTIONS(1370), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, - anon_sym_None, - ACTIONS(1376), 1, - sym_float, - ACTIONS(1382), 1, + ACTIONS(2609), 1, anon_sym_new, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(1394), 1, - sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(3041), 1, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2122), 1, + STATE(2168), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2283), 1, sym_string, - STATE(2604), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(3993), 1, + STATE(4032), 1, sym_expression, - STATE(5800), 1, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154294,7 +162717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154315,66 +162738,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36500] = 26, - ACTIONS(1414), 1, + [36391] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, + ACTIONS(1454), 1, anon_sym_not, - ACTIONS(1422), 1, + ACTIONS(1456), 1, anon_sym_LT, - ACTIONS(1424), 1, + ACTIONS(1458), 1, anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1436), 1, + ACTIONS(1470), 1, anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2427), 1, anon_sym_STAR, - ACTIONS(1601), 1, + ACTIONS(2431), 1, anon_sym_await, - ACTIONS(2537), 1, + ACTIONS(2571), 1, anon_sym_LPAREN, - ACTIONS(3065), 1, + ACTIONS(3132), 1, sym_identifier, - STATE(2221), 1, + STATE(2270), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2403), 1, sym_string, - STATE(2703), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(4321), 1, + STATE(4318), 1, sym_expression, - STATE(5581), 1, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154383,7 +162806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154404,66 +162827,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36615] = 26, - ACTIONS(67), 1, + [36506] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1398), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(2503), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3815), 1, + anon_sym_not, + ACTIONS(3817), 1, + anon_sym_lambda, + ACTIONS(3819), 1, + anon_sym_new, + STATE(2171), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2242), 1, sym_string, - STATE(2166), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(4181), 1, + STATE(2643), 1, sym_expression, - STATE(5657), 1, + STATE(5561), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154472,7 +162895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154493,66 +162916,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36730] = 26, - ACTIONS(67), 1, + [36621] = 26, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, + anon_sym_LBRACK, + ACTIONS(2555), 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(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2921), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3821), 1, + anon_sym_not, + ACTIONS(3823), 1, + anon_sym_lambda, + ACTIONS(3825), 1, + anon_sym_new, + STATE(2164), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2283), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4185), 1, + STATE(2572), 1, sym_expression, - STATE(5657), 1, + STATE(2610), 1, + sym_list_splat_pattern, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154561,7 +162984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154582,132 +163005,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [36845] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3537), 14, - sym__dedent, - sym_string_start, + [36736] = 26, + ACTIONS(2545), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2551), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2555), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3535), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2561), 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(2563), 1, + sym_float, + ACTIONS(2567), 1, anon_sym_sizeof, - [36914] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2569), 1, + sym_string_start, + ACTIONS(2599), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2603), 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(2609), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(809), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2921), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2168), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2283), 1, sym_string, - STATE(2166), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(3547), 1, + STATE(4020), 1, sym_expression, - STATE(5657), 1, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154716,7 +163073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154737,66 +163094,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37029] = 26, - ACTIONS(67), 1, + [36851] = 26, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, + anon_sym_LBRACK, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2921), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3509), 1, + ACTIONS(3821), 1, anon_sym_not, - ACTIONS(3511), 1, + ACTIONS(3823), 1, anon_sym_lambda, - ACTIONS(3513), 1, + ACTIONS(3825), 1, anon_sym_new, - STATE(2093), 1, + STATE(2164), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2283), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(2175), 1, + STATE(2584), 1, sym_expression, - STATE(5614), 1, + STATE(2610), 1, + sym_list_splat_pattern, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2196), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -154805,7 +163162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -154826,264 +163183,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37144] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3541), 14, - sym__dedent, - sym_string_start, + [36966] = 26, + ACTIONS(2545), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2551), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2555), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3539), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2561), 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, - anon_sym_sizeof, - [37213] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3545), 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, + ACTIONS(2563), 1, sym_float, - ACTIONS(3543), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, + ACTIONS(2567), 1, anon_sym_sizeof, - [37282] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3549), 14, - sym__dedent, + ACTIONS(2569), 1, sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3547), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(2599), 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, - [37351] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2603), 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(2609), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(809), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2921), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2168), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2283), 1, sym_string, - STATE(2166), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(4187), 1, + STATE(4049), 1, sym_expression, - STATE(5657), 1, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155092,7 +163251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -155113,198 +163272,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37466] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3553), 14, - sym__dedent, - sym_string_start, + [37081] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2483), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2487), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3551), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2493), 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(2495), 1, + sym_float, + ACTIONS(2499), 1, anon_sym_sizeof, - [37535] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3557), 14, - sym__dedent, + ACTIONS(2501), 1, sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_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, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_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(2615), 1, sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [37604] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2629), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2633), 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(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2637), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2161), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2226), 1, sym_string, - STATE(2166), 1, + STATE(2500), 1, sym_list_splat_pattern, - STATE(4202), 1, + STATE(3973), 1, sym_expression, - STATE(5657), 1, + STATE(5874), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155313,7 +163340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -155334,264 +163361,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [37719] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3561), 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(3559), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [37788] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3365), 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(3367), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [37857] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2785), 14, - sym__dedent, - sym_string_start, + [37196] = 26, + ACTIONS(2477), 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(2787), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [37926] = 26, - ACTIONS(1360), 1, + ACTIONS(2483), 1, + anon_sym_LBRACK, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1362), 1, - anon_sym_not, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1366), 1, - anon_sym_lambda, - ACTIONS(1370), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1382), 1, - anon_sym_new, - ACTIONS(1392), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(3041), 1, + ACTIONS(2629), 1, + anon_sym_not, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2633), 1, + anon_sym_lambda, + ACTIONS(2637), 1, + anon_sym_await, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2122), 1, + STATE(2161), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2226), 1, sym_string, - STATE(2604), 1, + STATE(2500), 1, sym_list_splat_pattern, - STATE(4111), 1, + STATE(3915), 1, sym_expression, - STATE(5800), 1, + STATE(5874), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155600,7 +163429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -155621,66 +163450,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [38041] = 26, - ACTIONS(67), 1, + [37311] = 26, + ACTIONS(2477), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, + anon_sym_LBRACK, + ACTIONS(2487), 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(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2629), 1, + anon_sym_not, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2633), 1, + anon_sym_lambda, + ACTIONS(2637), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2161), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2226), 1, sym_string, - STATE(2166), 1, + STATE(2500), 1, sym_list_splat_pattern, - STATE(3981), 1, + STATE(3968), 1, sym_expression, - STATE(5657), 1, + STATE(5874), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155689,7 +163518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -155710,264 +163539,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [38156] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3565), 14, - sym__dedent, - sym_string_start, + [37426] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2483), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2487), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3563), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2493), 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, - anon_sym_sizeof, - [38225] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3569), 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, + ACTIONS(2495), 1, sym_float, - ACTIONS(3567), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, + ACTIONS(2499), 1, anon_sym_sizeof, - [38294] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2467), 14, + ACTIONS(2501), 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(2465), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(2615), 1, sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [38363] = 26, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, - anon_sym_LBRACE, - ACTIONS(1420), 1, + ACTIONS(2629), 1, anon_sym_not, - ACTIONS(1422), 1, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(1424), 1, + ACTIONS(2633), 1, anon_sym_lambda, - ACTIONS(1426), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, - anon_sym_None, - ACTIONS(1432), 1, - sym_float, - ACTIONS(1436), 1, - anon_sym_new, - ACTIONS(1438), 1, - anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1601), 1, + ACTIONS(2637), 1, anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3571), 1, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2221), 1, + STATE(2161), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2226), 1, sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4312), 1, + STATE(2442), 1, sym_expression, - STATE(5581), 1, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(5874), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -155976,7 +163607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -155997,66 +163628,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [38478] = 26, - ACTIONS(67), 1, + [37541] = 26, + ACTIONS(2477), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, + anon_sym_LBRACK, + ACTIONS(2487), 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(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2629), 1, + anon_sym_not, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2633), 1, + anon_sym_lambda, + ACTIONS(2637), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2161), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2226), 1, sym_string, - STATE(2166), 1, + STATE(2500), 1, sym_list_splat_pattern, - STATE(4313), 1, + STATE(3908), 1, sym_expression, - STATE(5657), 1, + STATE(5874), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156065,7 +163696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -156086,66 +163717,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [38593] = 26, - ACTIONS(1414), 1, + [37656] = 26, + ACTIONS(2477), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, - anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, - anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1436), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, + ACTIONS(2615), 1, sym_identifier, - STATE(2221), 1, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2637), 1, + anon_sym_await, + ACTIONS(3093), 1, + anon_sym_STAR, + ACTIONS(3827), 1, + anon_sym_not, + ACTIONS(3829), 1, + anon_sym_lambda, + ACTIONS(3831), 1, + anon_sym_new, + STATE(2149), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2226), 1, sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4242), 1, + STATE(2470), 1, sym_expression, - STATE(5581), 1, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(5578), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156154,7 +163785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -156175,264 +163806,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [38708] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3515), 14, - sym__dedent, - sym_string_start, + [37771] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2483), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2487), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2491), 1, 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, + ACTIONS(2493), 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, - anon_sym_sizeof, - [38777] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3519), 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, + ACTIONS(2495), 1, 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, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - 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(2499), 1, anon_sym_sizeof, - [38846] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3527), 14, - sym__dedent, + ACTIONS(2501), 1, sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - 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_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(2615), 1, sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [38915] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(2629), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(2633), 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(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2637), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2161), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2226), 1, sym_string, - STATE(2166), 1, + STATE(2500), 1, sym_list_splat_pattern, - STATE(3554), 1, + STATE(3946), 1, sym_expression, - STATE(5657), 1, + STATE(5874), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156441,7 +163874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -156462,264 +163895,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [39030] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3503), 14, - sym_string_start, - ts_builtin_sym_end, + [37886] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2483), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2487), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3501), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2493), 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(2495), 1, + sym_float, + ACTIONS(2499), 1, anon_sym_sizeof, - [39099] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3507), 14, + ACTIONS(2501), 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(2615), 1, + sym_identifier, + ACTIONS(2631), 1, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3505), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(2637), 1, + anon_sym_await, + ACTIONS(3093), 1, + anon_sym_STAR, + ACTIONS(3827), 1, anon_sym_not, + ACTIONS(3829), 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(3831), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [39168] = 3, + STATE(2149), 1, + sym_primary_expression, + STATE(2226), 1, + sym_string, + STATE(2377), 1, + sym_expression, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(5578), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2475), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2485), 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(3573), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2623), 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, - [39237] = 26, - ACTIONS(67), 1, + STATE(2410), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2445), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [38001] = 26, + ACTIONS(2477), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, + anon_sym_LBRACK, + ACTIONS(2487), 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(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2629), 1, + anon_sym_not, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2633), 1, + anon_sym_lambda, + ACTIONS(2637), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2161), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2226), 1, sym_string, - STATE(2166), 1, + STATE(2500), 1, sym_list_splat_pattern, - STATE(3945), 1, + STATE(3925), 1, sym_expression, - STATE(5657), 1, + STATE(5874), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -156728,7 +164052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -156749,528 +164073,333 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [39352] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3579), 14, - sym__dedent, - sym_string_start, + [38116] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2443), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2447), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3577), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2453), 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(2455), 1, + sym_float, + ACTIONS(2459), 1, anon_sym_sizeof, - [39421] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3583), 14, - sym__dedent, + ACTIONS(2461), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(2757), 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(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, + ACTIONS(2763), 1, anon_sym_not, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2767), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(2773), 1, + anon_sym_new, + ACTIONS(2871), 1, sym_identifier, + ACTIONS(2879), 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, - [39490] = 3, + STATE(2159), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(3917), 1, + sym_expression, + STATE(5687), 1, + sym__named_expression_lhs, 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, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 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(2875), 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, - [39559] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3591), 14, - sym__dedent, - sym_string_start, + STATE(3933), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [38231] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2443), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2447), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2453), 1, + anon_sym_None, + ACTIONS(2455), 1, 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, + ACTIONS(2459), 1, + anon_sym_sizeof, + ACTIONS(2461), 1, + sym_string_start, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2763), 1, anon_sym_not, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2767), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(2773), 1, + anon_sym_new, + ACTIONS(2871), 1, sym_identifier, + ACTIONS(2879), 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, - [39628] = 3, + STATE(2159), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(3947), 1, + sym_expression, + STATE(5687), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3595), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 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(3593), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2875), 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, - [39697] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3599), 14, - sym__dedent, - sym_string_start, + STATE(3933), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [38346] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2443), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2447), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2453), 1, + anon_sym_None, + ACTIONS(2455), 1, 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, + ACTIONS(2459), 1, + anon_sym_sizeof, + ACTIONS(2461), 1, + sym_string_start, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2763), 1, anon_sym_not, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2767), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(2773), 1, + anon_sym_new, + ACTIONS(2871), 1, sym_identifier, + ACTIONS(2879), 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, - [39766] = 3, + STATE(2159), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(3901), 1, + sym_expression, + STATE(5687), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 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(3601), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2875), 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, - [39835] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + STATE(3933), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [38461] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2757), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(2763), 1, + anon_sym_not, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2767), 1, + anon_sym_lambda, + ACTIONS(2773), 1, + anon_sym_new, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2879), 1, + anon_sym_await, + STATE(2159), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2231), 1, sym_string, - STATE(2349), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(4418), 1, + STATE(3929), 1, sym_expression, - STATE(5559), 1, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157279,7 +164408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -157300,66 +164429,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [39950] = 26, - ACTIONS(67), 1, + [38576] = 26, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 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(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2763), 1, + anon_sym_not, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2767), 1, + anon_sym_lambda, + ACTIONS(2773), 1, + anon_sym_new, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, + STATE(2159), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2231), 1, sym_string, - STATE(2166), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(3481), 1, + STATE(3959), 1, sym_expression, - STATE(5657), 1, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157368,7 +164497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -157389,132 +164518,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40065] = 3, + [38691] = 26, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_LBRACE, + ACTIONS(2451), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2453), 1, + anon_sym_None, + ACTIONS(2455), 1, + sym_float, + ACTIONS(2459), 1, + anon_sym_sizeof, + ACTIONS(2461), 1, + sym_string_start, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2879), 1, + anon_sym_await, + ACTIONS(3833), 1, + anon_sym_not, + ACTIONS(3835), 1, + anon_sym_lambda, + ACTIONS(3837), 1, + anon_sym_new, + STATE(2162), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(2535), 1, + sym_expression, + STATE(5588), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 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(3605), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2875), 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, - [40134] = 26, - ACTIONS(67), 1, + STATE(2503), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [38806] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1396), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1398), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1400), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1416), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(2503), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2169), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2242), 1, sym_string, - STATE(2166), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(4191), 1, + STATE(4003), 1, sym_expression, - STATE(5657), 1, + STATE(5608), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -157523,7 +164675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -157544,462 +164696,511 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40249] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3611), 14, - sym__dedent, - sym_string_start, + [38921] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2443), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2447), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2453), 1, + anon_sym_None, + ACTIONS(2455), 1, sym_float, - ACTIONS(3609), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(2459), 1, + anon_sym_sizeof, + ACTIONS(2461), 1, + sym_string_start, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2763), 1, anon_sym_not, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2767), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(2773), 1, + anon_sym_new, + ACTIONS(2871), 1, sym_identifier, + ACTIONS(2879), 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, - [40318] = 3, + STATE(2159), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(3976), 1, + sym_expression, + STATE(5687), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3615), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 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(3613), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2875), 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(3933), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [39036] = 26, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_LBRACE, + ACTIONS(2451), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2453), 1, anon_sym_None, - sym_integer, + ACTIONS(2455), 1, + sym_float, + ACTIONS(2459), 1, + anon_sym_sizeof, + ACTIONS(2461), 1, + sym_string_start, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, + ACTIONS(2879), 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(3833), 1, + anon_sym_not, + ACTIONS(3835), 1, + anon_sym_lambda, + ACTIONS(3837), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [40387] = 3, + STATE(2162), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2456), 1, + sym_expression, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(5588), 1, + sym__named_expression_lhs, 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, - anon_sym_AT, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 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(3619), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2875), 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(2503), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [39151] = 26, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_LBRACE, + ACTIONS(2451), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2453), 1, + anon_sym_None, + ACTIONS(2455), 1, + sym_float, + ACTIONS(2459), 1, + anon_sym_sizeof, + ACTIONS(2461), 1, + sym_string_start, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2763), 1, anon_sym_not, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2767), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(2773), 1, + anon_sym_new, + ACTIONS(2871), 1, sym_identifier, + ACTIONS(2879), 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, - [40456] = 3, + STATE(2159), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(3906), 1, + sym_expression, + STATE(5687), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 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(3389), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2875), 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(3933), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [39266] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, + anon_sym_LBRACE, + ACTIONS(1454), 1, anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1460), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 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(1466), 1, + sym_float, + ACTIONS(1470), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1472), 1, anon_sym_sizeof, - [40525] = 3, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(4298), 1, + sym_expression, + STATE(5627), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3623), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 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(3621), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2429), 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(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [39381] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, + anon_sym_LBRACE, + ACTIONS(1454), 1, anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1460), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 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(1466), 1, + sym_float, + ACTIONS(1470), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1472), 1, anon_sym_sizeof, - [40594] = 3, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(4311), 1, + sym_expression, + STATE(5627), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3627), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 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(3625), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2429), 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, - [40663] = 26, - ACTIONS(67), 1, + STATE(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [39496] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1454), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1456), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1458), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1470), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(2571), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2403), 1, sym_string, - STATE(2166), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(3556), 1, + STATE(4343), 1, sym_expression, - STATE(5657), 1, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158008,7 +165209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158029,132 +165230,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40778] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3629), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, + [39611] = 26, + ACTIONS(1448), 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(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, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [40847] = 26, - ACTIONS(67), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1454), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1456), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1458), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1470), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(2571), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2403), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4193), 1, + STATE(2753), 1, sym_expression, - STATE(5657), 1, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158163,7 +165298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158184,66 +165319,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [40962] = 26, - ACTIONS(67), 1, + [39726] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1454), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1456), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1458), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1470), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(2571), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2403), 1, sym_string, - STATE(2166), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(4529), 1, + STATE(4351), 1, sym_expression, - STATE(5657), 1, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -158252,7 +165387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -158273,726 +165408,689 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41077] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3633), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, + [39841] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1452), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, + ACTIONS(1456), 1, anon_sym_LT, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 1, + anon_sym_None, + ACTIONS(1466), 1, sym_float, - ACTIONS(3635), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(1472), 1, + anon_sym_sizeof, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3839), 1, anon_sym_not, + ACTIONS(3841), 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(3843), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [41146] = 3, + STATE(2258), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(2780), 1, + sym_expression, + STATE(5605), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3637), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 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(3639), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2429), 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(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [39956] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, + anon_sym_LBRACE, + ACTIONS(1454), 1, anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1460), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 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(1466), 1, + sym_float, + ACTIONS(1470), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1472), 1, anon_sym_sizeof, - [41215] = 3, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(4282), 1, + sym_expression, + STATE(5627), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3643), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 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(3641), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2429), 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, - [41284] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3647), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, + STATE(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [40071] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1452), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, + ACTIONS(1456), 1, anon_sym_LT, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 1, + anon_sym_None, + ACTIONS(1466), 1, 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(1472), 1, + anon_sym_sizeof, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3839), 1, anon_sym_not, + ACTIONS(3841), 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(3843), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [41353] = 3, + STATE(2258), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(2793), 1, + sym_expression, + STATE(5605), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3649), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 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(3651), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2429), 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(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [40186] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, + anon_sym_LBRACE, + ACTIONS(1454), 1, anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1460), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 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(1466), 1, + sym_float, + ACTIONS(1470), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1472), 1, anon_sym_sizeof, - [41422] = 3, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(4307), 1, + sym_expression, + STATE(5627), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3653), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 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(3655), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2429), 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, - [41491] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3657), 14, - sym_string_start, - ts_builtin_sym_end, + STATE(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [40301] = 26, + ACTIONS(2517), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2523), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2527), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, sym_float, - ACTIONS(3659), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2731), 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(2733), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [41560] = 3, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(3962), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3661), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(3663), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [40416] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2731), 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(2733), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [41629] = 3, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(3965), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3667), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(2719), 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(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [40531] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2731), 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(2733), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [41698] = 3, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(3974), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3671), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(3669), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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, - [41767] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [40646] = 26, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2541), 1, sym_string_start, ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2324), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4446), 1, + STATE(2709), 1, sym_expression, - STATE(5559), 1, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(5744), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159001,7 +166099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -159022,795 +166120,957 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [41882] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2729), 14, - sym_string_start, - ts_builtin_sym_end, + [40761] = 26, + ACTIONS(2517), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2523), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2527), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, sym_float, - ACTIONS(2727), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2731), 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(2733), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [41951] = 3, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(3975), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3675), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(3673), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [40876] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2731), 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(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3845), 1, + anon_sym_not, + ACTIONS(3847), 1, + anon_sym_lambda, + ACTIONS(3849), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [42020] = 3, + STATE(2174), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2680), 1, + sym_expression, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(5618), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3679), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(2719), 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(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [40991] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2731), 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(2733), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [42089] = 3, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(3902), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, 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, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(3681), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [41106] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2731), 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(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3845), 1, + anon_sym_not, + ACTIONS(3847), 1, + anon_sym_lambda, + ACTIONS(3849), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [42158] = 3, + STATE(2174), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2682), 1, + sym_expression, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(5618), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3687), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(3685), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [41221] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2731), 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(2733), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [42227] = 3, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(3919), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3525), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(3523), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [41336] = 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, - sym_integer, + ACTIONS(83), 1, + sym_float, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, sym_identifier, + ACTIONS(895), 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(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + ACTIONS(3851), 1, + anon_sym_not, + ACTIONS(3853), 1, + anon_sym_lambda, + ACTIONS(3855), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [42296] = 3, + STATE(2130), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2199), 1, + sym_expression, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(5658), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3691), 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(3689), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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(2183), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [41451] = 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(101), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(107), 1, anon_sym_sizeof, - [42365] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3695), 14, - sym__dedent, + ACTIONS(109), 1, sym_string_start, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1353), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(3533), 1, + sym_expression, + STATE(5834), 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(3693), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [41566] = 26, + ACTIONS(1394), 1, + anon_sym_LBRACE, + ACTIONS(1396), 1, anon_sym_not, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1400), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1406), 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(1410), 1, + sym_float, + ACTIONS(1416), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1426), 1, anon_sym_sizeof, - [42434] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3699), 14, - sym__dedent, + ACTIONS(1428), 1, sym_string_start, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, + anon_sym_await, + ACTIONS(2503), 1, anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(2169), 1, + sym_primary_expression, + STATE(2242), 1, + sym_string, + STATE(2540), 1, + sym_list_splat_pattern, + STATE(2588), 1, + sym_expression, + STATE(5608), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1408), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1392), 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(3697), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1556), 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(2577), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2575), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [41681] = 27, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3857), 1, sym_identifier, + ACTIONS(3861), 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, - [42503] = 3, + STATE(2277), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(4376), 1, + sym_expression, + STATE(5744), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(2539), 2, + sym_attribute, + sym_subscript, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(3701), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(3859), 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(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 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, + [41798] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, anon_sym_not, + ACTIONS(1297), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 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(1309), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1311), 1, anon_sym_sizeof, - [42572] = 3, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4379), 1, + sym_expression, + STATE(5695), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3575), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 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(3573), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1283), 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, - [42641] = 27, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [41913] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1422), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1424), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1436), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3705), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(3709), 1, + ACTIONS(895), 1, anon_sym_await, - STATE(2208), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2140), 1, sym_string, - STATE(2703), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4267), 1, + STATE(3989), 1, sym_expression, - STATE(5581), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2499), 2, - sym_attribute, - sym_subscript, - ACTIONS(1430), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3707), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -159819,9 +167079,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 18, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -159838,640 +167100,847 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [42758] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3579), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, + [42028] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1452), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3577), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(1454), 1, anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1460), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 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(1466), 1, + sym_float, + ACTIONS(1470), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1472), 1, anon_sym_sizeof, - [42827] = 3, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(4348), 1, + sym_expression, + STATE(5627), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3497), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 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(3499), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2429), 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(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [42143] = 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(101), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(107), 1, anon_sym_sizeof, - [42896] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3583), 14, + ACTIONS(109), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1353), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(4374), 1, + sym_expression, + STATE(5834), 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(3581), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [42258] = 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, - sym_integer, + ACTIONS(83), 1, + sym_float, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, sym_identifier, + ACTIONS(895), 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(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + ACTIONS(3851), 1, + anon_sym_not, + ACTIONS(3853), 1, + anon_sym_lambda, + ACTIONS(3855), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [42965] = 3, + STATE(2130), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(2235), 1, + sym_expression, + STATE(5658), 1, + sym__named_expression_lhs, 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, + 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(870), 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(2183), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [42373] = 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, - sym_integer, + ACTIONS(83), 1, + sym_float, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, sym_identifier, + ACTIONS(895), 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(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + ACTIONS(3851), 1, + anon_sym_not, + ACTIONS(3853), 1, + anon_sym_lambda, + ACTIONS(3855), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [43034] = 3, + STATE(2130), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2194), 1, + sym_expression, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(5658), 1, + sym__named_expression_lhs, 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, + 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(3589), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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(2183), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [42488] = 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, - sym_integer, + ACTIONS(83), 1, + sym_float, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, sym_identifier, + ACTIONS(895), 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(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + ACTIONS(3851), 1, + anon_sym_not, + ACTIONS(3853), 1, + anon_sym_lambda, + ACTIONS(3855), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [43103] = 3, + STATE(2130), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2205), 1, + sym_expression, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(5658), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3711), 14, - sym_string_start, - ts_builtin_sym_end, - 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(3713), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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(2183), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [42603] = 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, - sym_integer, + ACTIONS(83), 1, + sym_float, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, sym_identifier, + ACTIONS(895), 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(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + ACTIONS(3851), 1, + anon_sym_not, + ACTIONS(3853), 1, + anon_sym_lambda, + ACTIONS(3855), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [43172] = 3, + STATE(2130), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2186), 1, + sym_expression, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(5658), 1, + sym__named_expression_lhs, 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, + 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(3593), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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(2183), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [42718] = 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, - sym_integer, + ACTIONS(83), 1, + sym_float, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, sym_identifier, + ACTIONS(895), 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(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + ACTIONS(3851), 1, + anon_sym_not, + ACTIONS(3853), 1, + anon_sym_lambda, + ACTIONS(3855), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [43241] = 3, + STATE(2130), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2214), 1, + sym_expression, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(5658), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3599), 14, - sym_string_start, - ts_builtin_sym_end, - 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(3597), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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(2183), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [42833] = 26, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_LBRACE, + ACTIONS(2451), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2453), 1, anon_sym_None, - sym_integer, + ACTIONS(2455), 1, + sym_float, + ACTIONS(2459), 1, + anon_sym_sizeof, + ACTIONS(2461), 1, + sym_string_start, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, + ACTIONS(2879), 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(3079), 1, + anon_sym_not, + ACTIONS(3081), 1, + anon_sym_lambda, + ACTIONS(3083), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [43310] = 3, + STATE(2159), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(4293), 1, + sym_expression, + STATE(5807), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3603), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 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(3601), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2875), 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(3933), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [42948] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, + anon_sym_LBRACE, + ACTIONS(1454), 1, anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1460), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 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(1466), 1, + sym_float, + ACTIONS(1470), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1472), 1, anon_sym_sizeof, - [43379] = 26, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(4316), 1, + sym_expression, + STATE(5627), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2429), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [43063] = 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, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3851), 1, + anon_sym_not, + ACTIONS(3853), 1, + anon_sym_lambda, + ACTIONS(3855), 1, + anon_sym_new, + STATE(2130), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4076), 1, + STATE(2210), 1, sym_expression, - STATE(5657), 1, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(5658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -160485,13 +167954,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2183), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160500,7 +167969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160521,66 +167990,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43494] = 26, - ACTIONS(67), 1, + [43178] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2209), 1, sym_string, - STATE(2166), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4080), 1, + STATE(4482), 1, sym_expression, - STATE(5657), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160589,7 +168058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160610,132 +168079,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43609] = 3, + [43293] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4266), 1, + sym_expression, + STATE(5695), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 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(3605), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1283), 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, - [43678] = 26, - ACTIONS(67), 1, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [43408] = 26, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, + anon_sym_LBRACK, + ACTIONS(2555), 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(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2599), 1, + anon_sym_not, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(2603), 1, + anon_sym_lambda, + ACTIONS(2609), 1, + anon_sym_new, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2921), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2168), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2283), 1, sym_string, - STATE(2166), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(4088), 1, + STATE(4095), 1, sym_expression, - STATE(5657), 1, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160744,7 +168236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160765,7 +168257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43793] = 26, + [43523] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -160780,31 +168272,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4095), 1, + STATE(4237), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -160818,13 +168310,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -160833,7 +168325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -160854,198 +168346,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [43908] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3617), 14, - sym__dedent, - sym_string_start, + [43638] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1285), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1289), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3619), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(1291), 1, anon_sym_not, + ACTIONS(1297), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 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(1309), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1311), 1, anon_sym_sizeof, - [43977] = 3, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4506), 1, + sym_expression, + STATE(5695), 1, + sym__named_expression_lhs, 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, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 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(3631), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1283), 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, - [44046] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [43753] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1454), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1470), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2427), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2403), 1, sym_string, - STATE(2349), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(4402), 1, + STATE(4304), 1, sym_expression, - STATE(5559), 1, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161054,7 +168503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161075,330 +168524,244 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44161] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3633), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [43868] = 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(3635), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - 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(83), 1, + sym_float, + ACTIONS(107), 1, anon_sym_sizeof, - [44230] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3637), 14, - sym__dedent, + ACTIONS(109), 1, sym_string_start, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1353), 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(3639), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(3175), 1, + anon_sym_STAR, + ACTIONS(3851), 1, anon_sym_not, + ACTIONS(3853), 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(3855), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [44299] = 3, + STATE(2130), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(2227), 1, + sym_expression, + STATE(5658), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3649), 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(3651), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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(2183), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [43983] = 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(101), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(107), 1, anon_sym_sizeof, - [44368] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3653), 14, - sym__dedent, + ACTIONS(109), 1, sym_string_start, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1353), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(4373), 1, + sym_expression, + STATE(5834), 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(3655), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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, - [44437] = 26, - ACTIONS(1243), 1, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [44098] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4255), 1, + STATE(4442), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161407,7 +168770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161428,66 +168791,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44552] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [44213] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2140), 1, sym_string, - STATE(2349), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4398), 1, + STATE(4037), 1, sym_expression, - STATE(5559), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161496,7 +168859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161517,132 +168880,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44667] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3657), 14, - sym__dedent, + [44328] = 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(101), 1, + anon_sym_new, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1353), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(4254), 1, + sym_expression, + STATE(5834), 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(3659), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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, - [44736] = 26, - ACTIONS(1360), 1, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [44443] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(2405), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3467), 1, - anon_sym_not, - ACTIONS(3469), 1, - anon_sym_lambda, - ACTIONS(3471), 1, - anon_sym_new, - STATE(2128), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2140), 1, sym_string, - STATE(2493), 1, - sym_expression, - STATE(2604), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(5689), 1, + STATE(4094), 1, + sym_expression, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161651,7 +169037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161672,66 +169058,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44851] = 26, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, + [44558] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2525), 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(2527), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2177), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2140), 1, sym_string, - STATE(2642), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4348), 1, + STATE(4166), 1, sym_expression, - STATE(5721), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161740,7 +169126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161761,66 +169147,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [44966] = 26, - ACTIONS(1360), 1, + [44673] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, + ACTIONS(1454), 1, + anon_sym_not, + ACTIONS(1456), 1, anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(1458), 1, + anon_sym_lambda, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(1470), 1, + anon_sym_new, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, anon_sym_await, - ACTIONS(2405), 1, + ACTIONS(2571), 1, anon_sym_LPAREN, - ACTIONS(2823), 1, + ACTIONS(3132), 1, sym_identifier, - ACTIONS(3041), 1, - anon_sym_STAR, - ACTIONS(3467), 1, - anon_sym_not, - ACTIONS(3469), 1, - anon_sym_lambda, - ACTIONS(3471), 1, - anon_sym_new, - STATE(2128), 1, + STATE(2270), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2403), 1, sym_string, - STATE(2595), 1, - sym_expression, - STATE(2604), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(5689), 1, + STATE(4347), 1, + sym_expression, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161829,7 +169215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161850,66 +169236,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45081] = 26, - ACTIONS(1360), 1, + [44788] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3467), 1, - anon_sym_not, - ACTIONS(3469), 1, - anon_sym_lambda, - ACTIONS(3471), 1, - anon_sym_new, - STATE(2128), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2209), 1, sym_string, - STATE(2576), 1, - sym_expression, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(5689), 1, + STATE(4528), 1, + sym_expression, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -161918,7 +169304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -161939,66 +169325,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45196] = 26, - ACTIONS(1360), 1, + [44903] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(2405), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3467), 1, - anon_sym_not, - ACTIONS(3469), 1, - anon_sym_lambda, - ACTIONS(3471), 1, - anon_sym_new, - STATE(2128), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2140), 1, sym_string, - STATE(2513), 1, - sym_expression, - STATE(2604), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(5689), 1, + STATE(4173), 1, + sym_expression, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162007,7 +169393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162028,66 +169414,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45311] = 26, - ACTIONS(1360), 1, + [45018] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(2405), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3467), 1, - anon_sym_not, - ACTIONS(3469), 1, - anon_sym_lambda, - ACTIONS(3471), 1, - anon_sym_new, - STATE(2128), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2140), 1, sym_string, - STATE(2549), 1, - sym_expression, - STATE(2604), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(5689), 1, + STATE(3577), 1, + sym_expression, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162096,7 +169482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162117,66 +169503,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45426] = 26, - ACTIONS(1360), 1, + [45133] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(2405), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3467), 1, - anon_sym_not, - ACTIONS(3469), 1, - anon_sym_lambda, - ACTIONS(3471), 1, - anon_sym_new, - STATE(2128), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2140), 1, sym_string, - STATE(2509), 1, - sym_expression, - STATE(2604), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(5689), 1, + STATE(4175), 1, + sym_expression, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162185,7 +169571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162206,66 +169592,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45541] = 26, - ACTIONS(1360), 1, + [45248] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(73), 1, + anon_sym_lambda, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(2405), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3467), 1, - anon_sym_not, - ACTIONS(3469), 1, - anon_sym_lambda, - ACTIONS(3471), 1, - anon_sym_new, - STATE(2128), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2140), 1, sym_string, - STATE(2560), 1, - sym_expression, - STATE(2604), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(5689), 1, + STATE(4176), 1, + sym_expression, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162274,7 +169660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162295,132 +169681,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45656] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3661), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, + [45363] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1452), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3663), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(1454), 1, anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 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, - [45725] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1470), 1, + anon_sym_new, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2427), 1, anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_not, - ACTIONS(3717), 1, - anon_sym_lambda, - ACTIONS(3719), 1, - anon_sym_new, - STATE(2143), 1, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, + sym_primary_expression, + STATE(2403), 1, sym_string, - STATE(2349), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(2413), 1, - sym_primary_expression, - STATE(3216), 1, + STATE(4395), 1, sym_expression, - STATE(5593), 1, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162429,7 +169749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162450,66 +169770,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45840] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, + [45478] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1454), 1, + anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, + anon_sym_lambda, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1470), 1, + anon_sym_new, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2427), 1, anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_not, - ACTIONS(3717), 1, - anon_sym_lambda, - ACTIONS(3719), 1, - anon_sym_new, - STATE(2143), 1, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, + sym_primary_expression, + STATE(2403), 1, sym_string, - STATE(2349), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(2413), 1, - sym_primary_expression, - STATE(3190), 1, + STATE(4302), 1, sym_expression, - STATE(5593), 1, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162518,7 +169838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162539,66 +169859,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [45955] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [45593] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2879), 1, + anon_sym_await, + ACTIONS(3079), 1, anon_sym_not, - ACTIONS(3717), 1, + ACTIONS(3081), 1, anon_sym_lambda, - ACTIONS(3719), 1, + ACTIONS(3083), 1, anon_sym_new, - STATE(2143), 1, + STATE(2159), 1, + sym_primary_expression, + STATE(2231), 1, sym_string, - STATE(2349), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(2413), 1, - sym_primary_expression, - STATE(3191), 1, + STATE(4272), 1, sym_expression, - STATE(5593), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162607,7 +169927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162628,66 +169948,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46070] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [45708] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(2615), 1, + sym_identifier, + ACTIONS(2629), 1, anon_sym_not, - ACTIONS(3717), 1, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2633), 1, anon_sym_lambda, - ACTIONS(3719), 1, + ACTIONS(2637), 1, + anon_sym_await, + ACTIONS(2639), 1, anon_sym_new, - STATE(2143), 1, + ACTIONS(3093), 1, + anon_sym_STAR, + STATE(2161), 1, + sym_primary_expression, + STATE(2226), 1, sym_string, - STATE(2349), 1, + STATE(2500), 1, sym_list_splat_pattern, - STATE(2413), 1, - sym_primary_expression, - STATE(3143), 1, + STATE(4027), 1, sym_expression, - STATE(5593), 1, + STATE(5874), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162696,7 +170016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162717,66 +170037,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46185] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [45823] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3851), 1, anon_sym_not, - ACTIONS(3717), 1, + ACTIONS(3853), 1, anon_sym_lambda, - ACTIONS(3719), 1, + ACTIONS(3855), 1, anon_sym_new, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(2413), 1, + STATE(2130), 1, sym_primary_expression, - STATE(3192), 1, + STATE(2140), 1, + sym_string, + STATE(2198), 1, sym_expression, - STATE(5593), 1, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(5658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2183), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162785,7 +170105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162806,66 +170126,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46300] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [45938] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1265), 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(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3721), 1, - anon_sym_not, - ACTIONS(3723), 1, - anon_sym_lambda, - ACTIONS(3725), 1, - anon_sym_new, - STATE(2111), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2140), 1, sym_string, - STATE(2327), 1, - sym_expression, - STATE(2349), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(5771), 1, + STATE(4100), 1, + sym_expression, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2422), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162874,7 +170194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162895,66 +170215,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46415] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [46053] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1265), 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(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_not, - ACTIONS(3717), 1, - anon_sym_lambda, - ACTIONS(3719), 1, - anon_sym_new, - STATE(2143), 1, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, sym_string, - STATE(2349), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(2413), 1, - sym_primary_expression, - STATE(3193), 1, + STATE(4274), 1, sym_expression, - STATE(5593), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -162963,7 +170283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -162984,66 +170304,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46530] = 26, - ACTIONS(1243), 1, + [46168] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3721), 1, - anon_sym_not, - ACTIONS(3723), 1, - anon_sym_lambda, - ACTIONS(3725), 1, - anon_sym_new, - STATE(2111), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2338), 1, - sym_expression, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(5771), 1, + STATE(4523), 1, + sym_expression, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2422), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163052,7 +170372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163073,66 +170393,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46645] = 26, - ACTIONS(1243), 1, + [46283] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_not, - ACTIONS(3717), 1, - anon_sym_lambda, - ACTIONS(3719), 1, - anon_sym_new, - STATE(2143), 1, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2413), 1, - sym_primary_expression, - STATE(3194), 1, + STATE(4350), 1, sym_expression, - STATE(5593), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163141,7 +170461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163162,66 +170482,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46760] = 26, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, + [46398] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2497), 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(2499), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2841), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3449), 1, - anon_sym_not, - ACTIONS(3451), 1, - anon_sym_lambda, - ACTIONS(3453), 1, - anon_sym_new, - STATE(2120), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2140), 1, sym_string, - STATE(2540), 1, - sym_expression, - STATE(2546), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(5512), 1, + STATE(3566), 1, + sym_expression, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163230,7 +170550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163251,66 +170571,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46875] = 26, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, + [46513] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2497), 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(2499), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2841), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3449), 1, - anon_sym_not, - ACTIONS(3451), 1, - anon_sym_lambda, - ACTIONS(3453), 1, - anon_sym_new, - STATE(2120), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2140), 1, sym_string, - STATE(2546), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(2561), 1, + STATE(3592), 1, sym_expression, - STATE(5512), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163319,7 +170639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163340,66 +170660,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [46990] = 26, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, + [46628] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2497), 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(2499), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2841), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3449), 1, - anon_sym_not, - ACTIONS(3451), 1, - anon_sym_lambda, - ACTIONS(3453), 1, - anon_sym_new, - STATE(2120), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2140), 1, sym_string, - STATE(2546), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(2571), 1, + STATE(4276), 1, sym_expression, - STATE(5512), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163408,7 +170728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163429,66 +170749,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47105] = 26, - ACTIONS(2483), 1, + [46743] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2561), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2841), 1, - sym_identifier, - ACTIONS(2849), 1, - anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3449), 1, - anon_sym_not, - ACTIONS(3451), 1, - anon_sym_lambda, - ACTIONS(3453), 1, - anon_sym_new, - STATE(2120), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2209), 1, sym_string, - STATE(2546), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2627), 1, + STATE(4312), 1, sym_expression, - STATE(5512), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163497,7 +170817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163518,66 +170838,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47220] = 26, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, + [46858] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2497), 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(2499), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2841), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3449), 1, - anon_sym_not, - ACTIONS(3451), 1, - anon_sym_lambda, - ACTIONS(3453), 1, - anon_sym_new, - STATE(2120), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2140), 1, sym_string, - STATE(2546), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(2581), 1, + STATE(4204), 1, sym_expression, - STATE(5512), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163586,7 +170906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163607,66 +170927,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47335] = 26, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, + [46973] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2525), 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(2527), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2177), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2140), 1, sym_string, - STATE(2642), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4300), 1, + STATE(4456), 1, sym_expression, - STATE(5721), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163675,7 +170995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163696,66 +171016,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47450] = 26, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, + [47088] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2497), 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(2499), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2841), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3449), 1, - anon_sym_not, - ACTIONS(3451), 1, - anon_sym_lambda, - ACTIONS(3453), 1, - anon_sym_new, - STATE(2120), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2140), 1, sym_string, - STATE(2546), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(2583), 1, + STATE(4267), 1, sym_expression, - STATE(5512), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163764,7 +171084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163785,66 +171105,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47565] = 26, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, + [47203] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2497), 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(2499), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2841), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3449), 1, - anon_sym_not, - ACTIONS(3451), 1, - anon_sym_lambda, - ACTIONS(3453), 1, - anon_sym_new, - STATE(2120), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2140), 1, sym_string, - STATE(2498), 1, - sym_expression, - STATE(2546), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(5512), 1, + STATE(4215), 1, + sym_expression, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163853,7 +171173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163874,66 +171194,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47680] = 26, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + [47318] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2453), 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(2455), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2573), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2595), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(3076), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3455), 1, - anon_sym_not, - ACTIONS(3457), 1, - anon_sym_lambda, - ACTIONS(3459), 1, - anon_sym_new, - STATE(2114), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2193), 1, + STATE(2140), 1, sym_string, - STATE(2337), 1, - sym_expression, - STATE(2449), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(5547), 1, + STATE(4217), 1, + sym_expression, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -163942,7 +171262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2328), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -163963,66 +171283,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47795] = 26, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + [47433] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2453), 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(2455), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2573), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2595), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(3076), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3455), 1, - anon_sym_not, - ACTIONS(3457), 1, - anon_sym_lambda, - ACTIONS(3459), 1, - anon_sym_new, - STATE(2114), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2193), 1, + STATE(2140), 1, sym_string, - STATE(2350), 1, - sym_expression, - STATE(2449), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(5547), 1, + STATE(4253), 1, + sym_expression, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164031,7 +171351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2328), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164052,66 +171372,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [47910] = 26, - ACTIONS(2439), 1, + [47548] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2589), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2595), 1, - anon_sym_await, - ACTIONS(3076), 1, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3455), 1, - anon_sym_not, - ACTIONS(3457), 1, - anon_sym_lambda, - ACTIONS(3459), 1, - anon_sym_new, - STATE(2114), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2193), 1, + STATE(2209), 1, sym_string, - STATE(2351), 1, - sym_expression, - STATE(2449), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(5547), 1, + STATE(4562), 1, + sym_expression, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164120,7 +171440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2328), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164141,66 +171461,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48025] = 26, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + [47663] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2453), 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(2455), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2573), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2595), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(3076), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3455), 1, - anon_sym_not, - ACTIONS(3457), 1, - anon_sym_lambda, - ACTIONS(3459), 1, - anon_sym_new, - STATE(2114), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2193), 1, + STATE(2140), 1, sym_string, - STATE(2449), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(2466), 1, + STATE(4189), 1, sym_expression, - STATE(5547), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164209,7 +171529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2328), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164230,66 +171550,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48140] = 26, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + [47778] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2595), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - ACTIONS(3076), 1, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - ACTIONS(3455), 1, + ACTIONS(3815), 1, anon_sym_not, - ACTIONS(3457), 1, + ACTIONS(3817), 1, anon_sym_lambda, - ACTIONS(3459), 1, + ACTIONS(3819), 1, anon_sym_new, - STATE(2114), 1, + STATE(2171), 1, sym_primary_expression, - STATE(2193), 1, + STATE(2242), 1, sym_string, - STATE(2352), 1, - sym_expression, - STATE(2449), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(5547), 1, + STATE(2542), 1, + sym_expression, + STATE(5561), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164298,7 +171618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2328), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164319,66 +171639,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48255] = 26, - ACTIONS(2439), 1, + [47893] = 26, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2595), 1, - anon_sym_await, - ACTIONS(3076), 1, - anon_sym_STAR, - ACTIONS(3455), 1, + ACTIONS(2725), 1, anon_sym_not, - ACTIONS(3457), 1, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - ACTIONS(3459), 1, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, anon_sym_new, - STATE(2114), 1, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, sym_primary_expression, - STATE(2193), 1, + STATE(2324), 1, sym_string, - STATE(2353), 1, - sym_expression, - STATE(2449), 1, + STATE(2736), 1, sym_list_splat_pattern, - STATE(5547), 1, + STATE(4357), 1, + sym_expression, + STATE(5744), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164387,7 +171707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2328), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164408,66 +171728,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48370] = 26, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + [48008] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2595), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - ACTIONS(3076), 1, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - ACTIONS(3455), 1, + ACTIONS(3815), 1, anon_sym_not, - ACTIONS(3457), 1, + ACTIONS(3817), 1, anon_sym_lambda, - ACTIONS(3459), 1, + ACTIONS(3819), 1, anon_sym_new, - STATE(2114), 1, + STATE(2171), 1, sym_primary_expression, - STATE(2193), 1, + STATE(2242), 1, sym_string, - STATE(2365), 1, - sym_expression, - STATE(2449), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(5547), 1, + STATE(2543), 1, + sym_expression, + STATE(5561), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164476,7 +171796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2328), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164497,66 +171817,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48485] = 26, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + [48123] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - ACTIONS(3461), 1, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, + anon_sym_STAR, + ACTIONS(3815), 1, anon_sym_not, - ACTIONS(3463), 1, + ACTIONS(3817), 1, anon_sym_lambda, - ACTIONS(3465), 1, + ACTIONS(3819), 1, anon_sym_new, - STATE(2116), 1, + STATE(2171), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2242), 1, sym_string, - STATE(2356), 1, - sym_expression, - STATE(2421), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(5560), 1, + STATE(2544), 1, + sym_expression, + STATE(5561), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2331), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164565,7 +171885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164586,66 +171906,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48600] = 26, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + [48238] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - ACTIONS(3461), 1, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, + anon_sym_STAR, + ACTIONS(3815), 1, anon_sym_not, - ACTIONS(3463), 1, + ACTIONS(3817), 1, anon_sym_lambda, - ACTIONS(3465), 1, + ACTIONS(3819), 1, anon_sym_new, - STATE(2116), 1, + STATE(2171), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2242), 1, sym_string, - STATE(2360), 1, + STATE(2536), 1, sym_expression, - STATE(2421), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(5560), 1, + STATE(5561), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2331), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164654,7 +171974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164675,66 +171995,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48715] = 26, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + [48353] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - ACTIONS(3461), 1, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, + anon_sym_STAR, + ACTIONS(3815), 1, anon_sym_not, - ACTIONS(3463), 1, + ACTIONS(3817), 1, anon_sym_lambda, - ACTIONS(3465), 1, + ACTIONS(3819), 1, anon_sym_new, - STATE(2116), 1, + STATE(2171), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2242), 1, sym_string, - STATE(2362), 1, - sym_expression, - STATE(2421), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(5560), 1, + STATE(2545), 1, + sym_expression, + STATE(5561), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2331), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164743,7 +172063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164764,66 +172084,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48830] = 26, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + [48468] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - ACTIONS(3461), 1, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, + anon_sym_STAR, + ACTIONS(3815), 1, anon_sym_not, - ACTIONS(3463), 1, + ACTIONS(3817), 1, anon_sym_lambda, - ACTIONS(3465), 1, + ACTIONS(3819), 1, anon_sym_new, - STATE(2116), 1, + STATE(2171), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2242), 1, sym_string, - STATE(2363), 1, - sym_expression, - STATE(2421), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(5560), 1, + STATE(2546), 1, + sym_expression, + STATE(5561), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2331), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164832,7 +172152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164853,66 +172173,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [48945] = 26, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + [48583] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - ACTIONS(3461), 1, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, + anon_sym_STAR, + ACTIONS(3815), 1, anon_sym_not, - ACTIONS(3463), 1, + ACTIONS(3817), 1, anon_sym_lambda, - ACTIONS(3465), 1, + ACTIONS(3819), 1, anon_sym_new, - STATE(2116), 1, + STATE(2171), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2242), 1, sym_string, - STATE(2364), 1, - sym_expression, - STATE(2421), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(5560), 1, + STATE(2547), 1, + sym_expression, + STATE(5561), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2331), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -164921,7 +172241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -164942,66 +172262,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49060] = 26, - ACTIONS(1975), 1, + [48698] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, - anon_sym_await, - ACTIONS(3461), 1, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3863), 1, anon_sym_not, - ACTIONS(3463), 1, + ACTIONS(3865), 1, anon_sym_lambda, - ACTIONS(3465), 1, + ACTIONS(3867), 1, anon_sym_new, - STATE(2116), 1, - sym_primary_expression, - STATE(2153), 1, + STATE(2209), 1, sym_string, - STATE(2385), 1, - sym_expression, - STATE(2421), 1, + STATE(2414), 1, + sym_primary_expression, + STATE(2435), 1, sym_list_splat_pattern, - STATE(5560), 1, + STATE(3244), 1, + sym_expression, + STATE(5583), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2331), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165010,7 +172330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165031,66 +172351,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49175] = 26, - ACTIONS(1975), 1, + [48813] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, - anon_sym_await, - ACTIONS(3461), 1, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3863), 1, anon_sym_not, - ACTIONS(3463), 1, + ACTIONS(3865), 1, anon_sym_lambda, - ACTIONS(3465), 1, + ACTIONS(3867), 1, anon_sym_new, - STATE(2116), 1, - sym_primary_expression, - STATE(2153), 1, + STATE(2209), 1, sym_string, - STATE(2398), 1, - sym_expression, - STATE(2421), 1, + STATE(2414), 1, + sym_primary_expression, + STATE(2435), 1, sym_list_splat_pattern, - STATE(5560), 1, + STATE(3257), 1, + sym_expression, + STATE(5583), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2331), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165099,7 +172419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165120,66 +172440,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49290] = 26, - ACTIONS(1414), 1, + [48928] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3475), 1, + ACTIONS(3863), 1, anon_sym_not, - ACTIONS(3477), 1, + ACTIONS(3865), 1, anon_sym_lambda, - ACTIONS(3479), 1, + ACTIONS(3867), 1, anon_sym_new, - STATE(2197), 1, - sym_primary_expression, - STATE(2410), 1, + STATE(2209), 1, sym_string, - STATE(2703), 1, + STATE(2414), 1, + sym_primary_expression, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2751), 1, + STATE(3183), 1, sym_expression, - STATE(5575), 1, + STATE(5583), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165188,7 +172508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165209,66 +172529,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49405] = 26, - ACTIONS(1414), 1, + [49043] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3475), 1, + ACTIONS(3863), 1, anon_sym_not, - ACTIONS(3477), 1, + ACTIONS(3865), 1, anon_sym_lambda, - ACTIONS(3479), 1, + ACTIONS(3867), 1, anon_sym_new, - STATE(2197), 1, - sym_primary_expression, - STATE(2410), 1, + STATE(2209), 1, sym_string, - STATE(2703), 1, + STATE(2414), 1, + sym_primary_expression, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2752), 1, + STATE(3240), 1, sym_expression, - STATE(5575), 1, + STATE(5583), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165277,7 +172597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165298,66 +172618,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49520] = 26, - ACTIONS(1414), 1, + [49158] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3475), 1, + ACTIONS(3869), 1, anon_sym_not, - ACTIONS(3477), 1, + ACTIONS(3871), 1, anon_sym_lambda, - ACTIONS(3479), 1, + ACTIONS(3873), 1, anon_sym_new, - STATE(2197), 1, + STATE(2160), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2209), 1, sym_string, - STATE(2703), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2753), 1, + STATE(2507), 1, sym_expression, - STATE(5575), 1, + STATE(5766), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(2434), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165366,7 +172686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165387,66 +172707,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49635] = 26, - ACTIONS(1414), 1, + [49273] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3475), 1, + ACTIONS(3863), 1, anon_sym_not, - ACTIONS(3477), 1, + ACTIONS(3865), 1, anon_sym_lambda, - ACTIONS(3479), 1, + ACTIONS(3867), 1, anon_sym_new, - STATE(2197), 1, - sym_primary_expression, - STATE(2410), 1, + STATE(2209), 1, sym_string, - STATE(2703), 1, + STATE(2414), 1, + sym_primary_expression, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2757), 1, + STATE(3238), 1, sym_expression, - STATE(5575), 1, + STATE(5583), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165455,7 +172775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165476,66 +172796,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49750] = 26, - ACTIONS(1414), 1, + [49388] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3475), 1, + ACTIONS(3869), 1, anon_sym_not, - ACTIONS(3477), 1, + ACTIONS(3871), 1, anon_sym_lambda, - ACTIONS(3479), 1, + ACTIONS(3873), 1, anon_sym_new, - STATE(2197), 1, + STATE(2160), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2209), 1, sym_string, - STATE(2703), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2754), 1, + STATE(2512), 1, sym_expression, - STATE(5575), 1, + STATE(5766), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(2434), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165544,7 +172864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165565,66 +172885,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49865] = 26, - ACTIONS(1414), 1, + [49503] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3475), 1, + ACTIONS(3863), 1, anon_sym_not, - ACTIONS(3477), 1, + ACTIONS(3865), 1, anon_sym_lambda, - ACTIONS(3479), 1, + ACTIONS(3867), 1, anon_sym_new, - STATE(2197), 1, - sym_primary_expression, - STATE(2410), 1, + STATE(2209), 1, sym_string, - STATE(2703), 1, + STATE(2414), 1, + sym_primary_expression, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2755), 1, + STATE(3250), 1, sym_expression, - STATE(5575), 1, + STATE(5583), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165633,7 +172953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165654,66 +172974,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [49980] = 26, - ACTIONS(1414), 1, + [49618] = 26, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(3475), 1, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, + anon_sym_STAR, + ACTIONS(3821), 1, anon_sym_not, - ACTIONS(3477), 1, + ACTIONS(3823), 1, anon_sym_lambda, - ACTIONS(3479), 1, + ACTIONS(3825), 1, anon_sym_new, - STATE(2197), 1, + STATE(2164), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2283), 1, sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(2756), 1, + STATE(2548), 1, sym_expression, - STATE(5575), 1, + STATE(2610), 1, + sym_list_splat_pattern, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165722,7 +173042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165743,66 +173063,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50095] = 26, - ACTIONS(2511), 1, + [49733] = 26, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(3001), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3481), 1, + ACTIONS(3821), 1, anon_sym_not, - ACTIONS(3483), 1, + ACTIONS(3823), 1, anon_sym_lambda, - ACTIONS(3485), 1, + ACTIONS(3825), 1, anon_sym_new, - STATE(2195), 1, + STATE(2164), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2283), 1, sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(2687), 1, + STATE(2549), 1, sym_expression, - STATE(5588), 1, + STATE(2610), 1, + sym_list_splat_pattern, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165811,7 +173131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165832,66 +173152,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50210] = 26, - ACTIONS(2511), 1, + [49848] = 26, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(3001), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3481), 1, + ACTIONS(3821), 1, anon_sym_not, - ACTIONS(3483), 1, + ACTIONS(3823), 1, anon_sym_lambda, - ACTIONS(3485), 1, + ACTIONS(3825), 1, anon_sym_new, - STATE(2195), 1, + STATE(2164), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2283), 1, sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(2688), 1, + STATE(2550), 1, sym_expression, - STATE(5588), 1, + STATE(2610), 1, + sym_list_splat_pattern, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165900,7 +173220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -165921,66 +173241,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50325] = 26, - ACTIONS(2511), 1, + [49963] = 26, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(3001), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3481), 1, + ACTIONS(3821), 1, anon_sym_not, - ACTIONS(3483), 1, + ACTIONS(3823), 1, anon_sym_lambda, - ACTIONS(3485), 1, + ACTIONS(3825), 1, anon_sym_new, - STATE(2195), 1, + STATE(2164), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2283), 1, sym_string, - STATE(2642), 1, + STATE(2610), 1, sym_list_splat_pattern, - STATE(2689), 1, + STATE(2637), 1, sym_expression, - STATE(5588), 1, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -165989,7 +173309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166010,66 +173330,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50440] = 26, - ACTIONS(2511), 1, + [50078] = 26, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(3001), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3481), 1, + ACTIONS(3821), 1, anon_sym_not, - ACTIONS(3483), 1, + ACTIONS(3823), 1, anon_sym_lambda, - ACTIONS(3485), 1, + ACTIONS(3825), 1, anon_sym_new, - STATE(2195), 1, + STATE(2164), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2283), 1, sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(2693), 1, + STATE(2551), 1, sym_expression, - STATE(5588), 1, + STATE(2610), 1, + sym_list_splat_pattern, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166078,7 +173398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166099,66 +173419,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50555] = 26, - ACTIONS(2511), 1, - anon_sym_LPAREN, + [50193] = 26, ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(2685), 1, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(3001), 1, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(3233), 1, anon_sym_STAR, - ACTIONS(3481), 1, - anon_sym_not, - ACTIONS(3483), 1, - anon_sym_lambda, - ACTIONS(3485), 1, - anon_sym_new, STATE(2195), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2324), 1, sym_string, - STATE(2642), 1, + STATE(2736), 1, sym_list_splat_pattern, - STATE(2690), 1, + STATE(4354), 1, sym_expression, - STATE(5588), 1, + STATE(5744), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166167,7 +173487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166188,66 +173508,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50670] = 26, - ACTIONS(2511), 1, + [50308] = 26, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(3001), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3481), 1, + ACTIONS(3821), 1, anon_sym_not, - ACTIONS(3483), 1, + ACTIONS(3823), 1, anon_sym_lambda, - ACTIONS(3485), 1, + ACTIONS(3825), 1, anon_sym_new, - STATE(2195), 1, + STATE(2164), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2283), 1, sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(2691), 1, + STATE(2552), 1, sym_expression, - STATE(5588), 1, + STATE(2610), 1, + sym_list_splat_pattern, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166256,7 +173576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166277,66 +173597,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50785] = 26, - ACTIONS(2511), 1, + [50423] = 26, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(3001), 1, + ACTIONS(2913), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3481), 1, + ACTIONS(3821), 1, anon_sym_not, - ACTIONS(3483), 1, + ACTIONS(3823), 1, anon_sym_lambda, - ACTIONS(3485), 1, + ACTIONS(3825), 1, anon_sym_new, - STATE(2195), 1, + STATE(2164), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2283), 1, sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(2692), 1, + STATE(2553), 1, sym_expression, - STATE(5588), 1, + STATE(2610), 1, + sym_list_splat_pattern, + STATE(5556), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166345,7 +173665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166366,132 +173686,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [50900] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3611), 14, - sym_string_start, - ts_builtin_sym_end, + [50538] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2483), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2487), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3609), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [50969] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2615), 1, + sym_identifier, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2637), 1, + anon_sym_await, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(3827), 1, + anon_sym_not, + ACTIONS(3829), 1, + anon_sym_lambda, + ACTIONS(3831), 1, + anon_sym_new, + STATE(2149), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2226), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3139), 1, + STATE(2352), 1, sym_expression, - STATE(5559), 1, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(5578), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166500,7 +173754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166521,69 +173775,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51084] = 27, - ACTIONS(1975), 1, + [50653] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2615), 1, + sym_identifier, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(2995), 1, + ACTIONS(2637), 1, + anon_sym_await, + ACTIONS(3093), 1, + anon_sym_STAR, + ACTIONS(3827), 1, anon_sym_not, - ACTIONS(2997), 1, + ACTIONS(3829), 1, anon_sym_lambda, - ACTIONS(2999), 1, + ACTIONS(3831), 1, anon_sym_new, - ACTIONS(3727), 1, - sym_identifier, - ACTIONS(3731), 1, - anon_sym_await, - STATE(2153), 1, - sym_string, - STATE(2220), 1, + STATE(2149), 1, sym_primary_expression, - STATE(2421), 1, - sym_list_splat_pattern, - STATE(4335), 1, + STATE(2226), 1, + sym_string, + STATE(2356), 1, sym_expression, - STATE(5757), 1, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(5578), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2381), 2, - sym_attribute, - sym_subscript, - ACTIONS(1973), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3729), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166592,9 +173843,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 18, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -166611,198 +173864,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51201] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3615), 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(3613), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [51270] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3387), 14, - sym_string_start, - ts_builtin_sym_end, + [50768] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2483), 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(3389), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [51339] = 26, - ACTIONS(67), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2637), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3093), 1, anon_sym_STAR, - ACTIONS(3509), 1, + ACTIONS(3827), 1, anon_sym_not, - ACTIONS(3511), 1, + ACTIONS(3829), 1, anon_sym_lambda, - ACTIONS(3513), 1, + ACTIONS(3831), 1, anon_sym_new, - STATE(2093), 1, + STATE(2149), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2226), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(2187), 1, + STATE(2358), 1, sym_expression, - STATE(5614), 1, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(5578), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2196), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -166811,7 +173932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -166829,201 +173950,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [51454] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3623), 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(3621), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [51523] = 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, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3625), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [51592] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [50883] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2615), 1, + sym_identifier, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2637), 1, + anon_sym_await, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(3827), 1, + anon_sym_not, + ACTIONS(3829), 1, + anon_sym_lambda, + ACTIONS(3831), 1, + anon_sym_new, + STATE(2149), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2226), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4309), 1, + STATE(2442), 1, sym_expression, - STATE(5559), 1, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(5578), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167032,7 +174021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167053,132 +174042,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51707] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3533), 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(3531), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [51776] = 26, - ACTIONS(2439), 1, + [50998] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(2573), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2587), 1, - anon_sym_not, - ACTIONS(2589), 1, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(2591), 1, - anon_sym_lambda, - ACTIONS(2595), 1, + ACTIONS(2637), 1, anon_sym_await, - ACTIONS(2597), 1, - anon_sym_new, - ACTIONS(3076), 1, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2119), 1, + ACTIONS(3827), 1, + anon_sym_not, + ACTIONS(3829), 1, + anon_sym_lambda, + ACTIONS(3831), 1, + anon_sym_new, + STATE(2149), 1, sym_primary_expression, - STATE(2193), 1, + STATE(2226), 1, sym_string, - STATE(2449), 1, - sym_list_splat_pattern, - STATE(4159), 1, + STATE(2359), 1, sym_expression, - STATE(5491), 1, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(5578), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167187,7 +174110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2328), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167208,396 +174131,244 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [51891] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3733), 14, - sym_string_start, - ts_builtin_sym_end, + [51113] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2483), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2487), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3735), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2493), 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(2495), 1, + sym_float, + ACTIONS(2499), 1, anon_sym_sizeof, - [51960] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3737), 14, + ACTIONS(2501), 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(2615), 1, + sym_identifier, + ACTIONS(2631), 1, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3739), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(2637), 1, + anon_sym_await, + ACTIONS(3093), 1, + anon_sym_STAR, + ACTIONS(3827), 1, anon_sym_not, + ACTIONS(3829), 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(3831), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [52029] = 3, + STATE(2149), 1, + sym_primary_expression, + STATE(2226), 1, + sym_string, + STATE(2368), 1, + sym_expression, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(5578), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3741), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2475), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2485), 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(3743), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2623), 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, - [52098] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3745), 14, - sym_string_start, - ts_builtin_sym_end, + STATE(2410), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2445), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [51228] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2483), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2487), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3747), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2493), 1, anon_sym_None, - sym_integer, + ACTIONS(2495), 1, + sym_float, + ACTIONS(2499), 1, + anon_sym_sizeof, + ACTIONS(2501), 1, + sym_string_start, + ACTIONS(2615), 1, sym_identifier, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2637), 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(3093), 1, + anon_sym_STAR, + ACTIONS(3827), 1, + anon_sym_not, + ACTIONS(3829), 1, + anon_sym_lambda, + ACTIONS(3831), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [52167] = 3, + STATE(2149), 1, + sym_primary_expression, + STATE(2226), 1, + sym_string, + STATE(2373), 1, + sym_expression, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(5578), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3749), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2475), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2485), 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(3751), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2623), 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, - [52236] = 26, - ACTIONS(67), 1, + STATE(2410), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2445), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [51343] = 26, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 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(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3833), 1, + anon_sym_not, + ACTIONS(3835), 1, + anon_sym_lambda, + ACTIONS(3837), 1, + anon_sym_new, + STATE(2162), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2231), 1, sym_string, - STATE(2166), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(3964), 1, + STATE(2515), 1, sym_expression, - STATE(5657), 1, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2503), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167606,7 +174377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167627,66 +174398,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52351] = 26, - ACTIONS(67), 1, + [51458] = 26, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 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(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3833), 1, + anon_sym_not, + ACTIONS(3835), 1, + anon_sym_lambda, + ACTIONS(3837), 1, + anon_sym_new, + STATE(2162), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2231), 1, sym_string, - STATE(2166), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(3485), 1, + STATE(2517), 1, sym_expression, - STATE(5657), 1, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2503), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167695,7 +174466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167716,66 +174487,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52466] = 26, - ACTIONS(67), 1, + [51573] = 26, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 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(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3833), 1, + anon_sym_not, + ACTIONS(3835), 1, + anon_sym_lambda, + ACTIONS(3837), 1, + anon_sym_new, + STATE(2162), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2231), 1, sym_string, - STATE(2166), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(4236), 1, + STATE(2518), 1, sym_expression, - STATE(5657), 1, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2503), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -167784,7 +174555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -167805,462 +174576,244 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [52581] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3733), 14, - sym__dedent, - sym_string_start, + [51688] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2443), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2447), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3735), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2453), 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(2455), 1, + sym_float, + ACTIONS(2459), 1, anon_sym_sizeof, - [52650] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3737), 14, - sym__dedent, + ACTIONS(2461), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(2757), 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, + ACTIONS(2765), 1, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3739), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_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(2871), 1, sym_identifier, + ACTIONS(2879), 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(3833), 1, + anon_sym_not, + ACTIONS(3835), 1, + anon_sym_lambda, + ACTIONS(3837), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [52719] = 3, + STATE(2162), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(2519), 1, + sym_expression, + STATE(5588), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3753), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 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(3755), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2875), 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, - [52788] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3741), 14, - sym__dedent, - sym_string_start, + STATE(2503), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [51803] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2443), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2447), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3743), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2453), 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(2455), 1, + sym_float, + ACTIONS(2459), 1, anon_sym_sizeof, - [52857] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3745), 14, - sym__dedent, + ACTIONS(2461), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(2757), 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, + ACTIONS(2765), 1, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3747), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_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(2871), 1, sym_identifier, + ACTIONS(2879), 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(3833), 1, + anon_sym_not, + ACTIONS(3835), 1, + anon_sym_lambda, + ACTIONS(3837), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [52926] = 3, + STATE(2162), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(2527), 1, + sym_expression, + STATE(5588), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3749), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 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(3751), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2875), 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, - [52995] = 26, - ACTIONS(67), 1, + STATE(2503), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [51918] = 26, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 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(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3833), 1, + anon_sym_not, + ACTIONS(3835), 1, + anon_sym_lambda, + ACTIONS(3837), 1, + anon_sym_new, + STATE(2162), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2231), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4105), 1, + STATE(2407), 1, sym_expression, - STATE(5657), 1, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2503), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168269,7 +174822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168290,330 +174843,333 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53110] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3753), 14, - sym__dedent, - sym_string_start, + [52033] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2443), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2447), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3755), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2453), 1, anon_sym_None, - sym_integer, + ACTIONS(2455), 1, + sym_float, + ACTIONS(2459), 1, + anon_sym_sizeof, + ACTIONS(2461), 1, + sym_string_start, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, + ACTIONS(2879), 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(3833), 1, + anon_sym_not, + ACTIONS(3835), 1, + anon_sym_lambda, + ACTIONS(3837), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [53179] = 3, + STATE(2162), 1, + sym_primary_expression, + STATE(2231), 1, + sym_string, + STATE(2376), 1, + sym_expression, + STATE(2465), 1, + sym_list_splat_pattern, + STATE(5588), 1, + sym__named_expression_lhs, 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, + ACTIONS(2435), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2445), 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(3641), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2875), 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(2503), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2405), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [52148] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, + anon_sym_LBRACE, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1460), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1466), 1, + sym_float, + ACTIONS(1472), 1, + anon_sym_sizeof, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 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(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3839), 1, + anon_sym_not, + ACTIONS(3841), 1, + anon_sym_lambda, + ACTIONS(3843), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [53248] = 3, + STATE(2258), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2745), 1, + sym_expression, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(5605), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3647), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 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(3645), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2429), 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(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [52263] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, + anon_sym_LBRACE, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1460), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1466), 1, + sym_float, + ACTIONS(1472), 1, + anon_sym_sizeof, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 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(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3839), 1, + anon_sym_not, + ACTIONS(3841), 1, + anon_sym_lambda, + ACTIONS(3843), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [53317] = 3, + STATE(2258), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2746), 1, + sym_expression, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(5605), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2479), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 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(2477), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2429), 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, - [53386] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, + STATE(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [52378] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2427), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3839), 1, + anon_sym_not, + ACTIONS(3841), 1, + anon_sym_lambda, + ACTIONS(3843), 1, + anon_sym_new, + STATE(2258), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2403), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4483), 1, + STATE(2747), 1, sym_expression, - STATE(5559), 1, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(5605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168622,7 +175178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168643,66 +175199,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53501] = 26, - ACTIONS(67), 1, + [52493] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1456), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(2571), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3839), 1, + anon_sym_not, + ACTIONS(3841), 1, + anon_sym_lambda, + ACTIONS(3843), 1, + anon_sym_new, + STATE(2258), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2403), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4232), 1, + STATE(2753), 1, sym_expression, - STATE(5657), 1, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(5605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168711,7 +175267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168732,66 +175288,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53616] = 26, - ACTIONS(67), 1, + [52608] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1456), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(2571), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3839), 1, + anon_sym_not, + ACTIONS(3841), 1, + anon_sym_lambda, + ACTIONS(3843), 1, + anon_sym_new, + STATE(2258), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2403), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4097), 1, + STATE(2748), 1, sym_expression, - STATE(5657), 1, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(5605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168800,7 +175356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168821,66 +175377,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53731] = 26, - ACTIONS(67), 1, + [52723] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1456), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(2571), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3839), 1, + anon_sym_not, + ACTIONS(3841), 1, + anon_sym_lambda, + ACTIONS(3843), 1, + anon_sym_new, + STATE(2258), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2403), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4098), 1, + STATE(2749), 1, sym_expression, - STATE(5657), 1, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(5605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -168889,7 +175445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -168910,198 +175466,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [53846] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2431), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, + [52838] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1452), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, + ACTIONS(1456), 1, anon_sym_LT, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 1, + anon_sym_None, + ACTIONS(1466), 1, sym_float, - ACTIONS(2429), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(1472), 1, + anon_sym_sizeof, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3839), 1, anon_sym_not, + ACTIONS(3841), 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(3843), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [53915] = 3, + STATE(2258), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2751), 1, + sym_expression, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(5605), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2435), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1464), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1450), 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(2433), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2429), 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, - [53984] = 26, - ACTIONS(67), 1, + STATE(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [52953] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 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(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3845), 1, + anon_sym_not, + ACTIONS(3847), 1, + anon_sym_lambda, + ACTIONS(3849), 1, + anon_sym_new, + STATE(2174), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2324), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4259), 1, + STATE(2712), 1, sym_expression, - STATE(5657), 1, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(5618), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169110,7 +175623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169131,66 +175644,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54099] = 26, - ACTIONS(67), 1, + [53068] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 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(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3845), 1, + anon_sym_not, + ACTIONS(3847), 1, + anon_sym_lambda, + ACTIONS(3849), 1, + anon_sym_new, + STATE(2174), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2324), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4003), 1, + STATE(2715), 1, sym_expression, - STATE(5657), 1, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(5618), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169199,7 +175712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169220,66 +175733,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54214] = 26, - ACTIONS(67), 1, + [53183] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 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(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3845), 1, + anon_sym_not, + ACTIONS(3847), 1, + anon_sym_lambda, + ACTIONS(3849), 1, + anon_sym_new, + STATE(2174), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2324), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(3515), 1, + STATE(2716), 1, sym_expression, - STATE(5657), 1, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(5618), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169288,7 +175801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169309,264 +175822,244 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54329] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3759), 14, - sym__dedent, - sym_string_start, + [53298] = 26, + ACTIONS(2517), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2523), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2527), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, sym_float, - ACTIONS(3757), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3845), 1, anon_sym_not, + ACTIONS(3847), 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(3849), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [54398] = 3, + STATE(2174), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2709), 1, + sym_expression, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(5618), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3763), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(3761), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [53413] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2731), 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(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3845), 1, + anon_sym_not, + ACTIONS(3847), 1, + anon_sym_lambda, + ACTIONS(3849), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [54467] = 3, + STATE(2174), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2719), 1, + sym_expression, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(5618), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3767), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2515), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2525), 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(3765), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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, - [54536] = 26, - ACTIONS(1414), 1, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [53528] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, - anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, - anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(1436), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, + ACTIONS(3097), 1, sym_identifier, - STATE(2221), 1, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3845), 1, + anon_sym_not, + ACTIONS(3847), 1, + anon_sym_lambda, + ACTIONS(3849), 1, + anon_sym_new, + STATE(2174), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2324), 1, sym_string, - STATE(2703), 1, - sym_list_splat_pattern, - STATE(4349), 1, + STATE(2720), 1, sym_expression, - STATE(5581), 1, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(5618), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169575,7 +176068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169596,66 +176089,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54651] = 26, - ACTIONS(67), 1, + [53643] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 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(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3845), 1, + anon_sym_not, + ACTIONS(3847), 1, + anon_sym_lambda, + ACTIONS(3849), 1, + anon_sym_new, + STATE(2174), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2324), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4113), 1, + STATE(2721), 1, sym_expression, - STATE(5657), 1, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(5618), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169664,7 +176157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169685,66 +176178,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54766] = 26, - ACTIONS(1414), 1, + [53758] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1436), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2209), 1, sym_string, - STATE(2703), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4351), 1, + STATE(3181), 1, sym_expression, - STATE(5581), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169753,7 +176246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169774,66 +176267,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54881] = 26, - ACTIONS(67), 1, + [53873] = 27, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 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(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(3079), 1, + anon_sym_not, + ACTIONS(3081), 1, + anon_sym_lambda, + ACTIONS(3083), 1, + anon_sym_new, + ACTIONS(3875), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(3879), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, + STATE(2231), 1, sym_string, - STATE(2166), 1, + STATE(2269), 1, + sym_primary_expression, + STATE(2465), 1, sym_list_splat_pattern, - STATE(4299), 1, + STATE(4341), 1, sym_expression, - STATE(5657), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + STATE(2416), 2, + sym_attribute, + sym_subscript, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(3877), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169842,11 +176338,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2405), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -169863,7 +176357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [54996] = 26, + [53990] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -169878,31 +176372,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4173), 1, + STATE(3579), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -169916,13 +176410,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -169931,7 +176425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -169952,66 +176446,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55111] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [54105] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2615), 1, + sym_identifier, + ACTIONS(2629), 1, + anon_sym_not, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2633), 1, + anon_sym_lambda, + ACTIONS(2637), 1, + anon_sym_await, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2161), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2226), 1, sym_string, - STATE(2349), 1, + STATE(2500), 1, sym_list_splat_pattern, - STATE(4421), 1, + STATE(4098), 1, sym_expression, - STATE(5559), 1, + STATE(5874), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170020,7 +176514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170041,66 +176535,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55226] = 26, - ACTIONS(67), 1, + [54220] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 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(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2324), 1, sym_string, - STATE(2166), 1, + STATE(2736), 1, sym_list_splat_pattern, - STATE(4045), 1, + STATE(4242), 1, sym_expression, - STATE(5657), 1, + STATE(5744), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170109,7 +176603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170130,66 +176624,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55341] = 26, - ACTIONS(67), 1, + [54335] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2209), 1, sym_string, - STATE(2166), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4192), 1, + STATE(4353), 1, sym_expression, - STATE(5657), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170198,7 +176692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170219,330 +176713,244 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55456] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3759), 14, - sym_string_start, - ts_builtin_sym_end, + [54450] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1285), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1289), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3757), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(1291), 1, anon_sym_not, + ACTIONS(1297), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 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(1309), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1311), 1, anon_sym_sizeof, - [55525] = 3, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(4542), 1, + sym_expression, + STATE(5695), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3763), 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(3761), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - 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(1303), 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, - [55594] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3771), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1293), 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(3769), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1283), 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(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [54565] = 26, + ACTIONS(1394), 1, + anon_sym_LBRACE, + ACTIONS(1396), 1, anon_sym_not, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1400), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1406), 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(1410), 1, + sym_float, + ACTIONS(1416), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1426), 1, anon_sym_sizeof, - [55663] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3767), 14, + ACTIONS(1428), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, + anon_sym_await, + ACTIONS(2503), 1, anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + STATE(2169), 1, + sym_primary_expression, + STATE(2242), 1, + sym_string, + STATE(2540), 1, + sym_list_splat_pattern, + STATE(4152), 1, + sym_expression, + STATE(5608), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1408), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1392), 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(3765), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1556), 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, - [55732] = 26, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + STATE(2577), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2575), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [54680] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1989), 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(1991), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(2995), 1, - anon_sym_not, - ACTIONS(2997), 1, - anon_sym_lambda, - ACTIONS(2999), 1, - anon_sym_new, - STATE(2117), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2140), 1, sym_string, - STATE(2421), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4306), 1, + STATE(4023), 1, sym_expression, - STATE(5757), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170551,7 +176959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170572,132 +176980,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [55847] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2427), 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(2425), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [55916] = 26, - ACTIONS(2439), 1, + [54795] = 26, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, + ACTIONS(2725), 1, anon_sym_not, - ACTIONS(2589), 1, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(2591), 1, + ACTIONS(2729), 1, anon_sym_lambda, - ACTIONS(2595), 1, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(2597), 1, + ACTIONS(2733), 1, anon_sym_new, - ACTIONS(3076), 1, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2119), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2193), 1, + STATE(2324), 1, sym_string, - STATE(2449), 1, + STATE(2736), 1, sym_list_splat_pattern, - STATE(3967), 1, + STATE(4300), 1, sym_expression, - STATE(5491), 1, + STATE(5744), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170706,7 +177048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2328), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170727,7 +177069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56031] = 26, + [54910] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -170742,31 +177084,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4079), 1, + STATE(3599), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -170780,13 +177122,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170795,7 +177137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170816,66 +177158,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56146] = 26, - ACTIONS(1243), 1, + [55025] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4417), 1, + STATE(4581), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170884,7 +177226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170905,46 +177247,46 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56261] = 26, + [55140] = 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(105), 1, - anon_sym_sizeof, + ACTIONS(101), 1, + anon_sym_new, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3509), 1, - anon_sym_not, - ACTIONS(3511), 1, - anon_sym_lambda, - ACTIONS(3513), 1, - anon_sym_new, - STATE(2093), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2146), 1, - sym_expression, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(5614), 1, + STATE(3529), 1, + sym_expression, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -170958,13 +177300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2196), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -170973,7 +177315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -170994,330 +177336,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56376] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3537), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [55255] = 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(3535), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(101), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(107), 1, anon_sym_sizeof, - [56445] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3541), 14, + ACTIONS(109), 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(3539), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_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(855), 1, sym_identifier, + ACTIONS(895), 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, - [56514] = 3, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(3582), 1, + sym_expression, + STATE(5834), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3545), 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(3543), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - 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, - [56583] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3549), 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(3547), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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, - [56652] = 26, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [55370] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1989), 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(1991), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(2995), 1, - anon_sym_not, - ACTIONS(2997), 1, - anon_sym_lambda, - ACTIONS(2999), 1, - anon_sym_new, - STATE(2117), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2140), 1, sym_string, - STATE(2421), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4252), 1, + STATE(4559), 1, sym_expression, - STATE(5757), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171326,7 +177493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171347,66 +177514,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56767] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, + [55485] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1454), 1, + anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, + anon_sym_lambda, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1470), 1, + anon_sym_new, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3881), 1, anon_sym_STAR, - ACTIONS(3721), 1, - anon_sym_not, - ACTIONS(3723), 1, - anon_sym_lambda, - ACTIONS(3725), 1, - anon_sym_new, - STATE(2111), 1, + STATE(2270), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2403), 1, sym_string, - STATE(2349), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(2427), 1, + STATE(4328), 1, sym_expression, - STATE(5771), 1, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2422), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171415,7 +177582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171436,66 +177603,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56882] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, + [55600] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1454), 1, + anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, + anon_sym_lambda, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1470), 1, + anon_sym_new, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3721), 1, - anon_sym_not, - ACTIONS(3723), 1, - anon_sym_lambda, - ACTIONS(3725), 1, - anon_sym_new, - STATE(2111), 1, + STATE(2270), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2403), 1, sym_string, - STATE(2349), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(2429), 1, + STATE(4265), 1, sym_expression, - STATE(5771), 1, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2422), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171504,7 +177671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171525,66 +177692,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [56997] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [55715] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1265), 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(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3721), 1, - anon_sym_not, - ACTIONS(3723), 1, - anon_sym_lambda, - ACTIONS(3725), 1, - anon_sym_new, - STATE(2111), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2140), 1, sym_string, - STATE(2349), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(2430), 1, + STATE(4335), 1, sym_expression, - STATE(5771), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2422), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171593,7 +177760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171614,75 +177781,72 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57112] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [55830] = 23, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(1361), 1, + anon_sym_COMMA, + ACTIONS(1368), 1, anon_sym_STAR, - ACTIONS(3721), 1, - anon_sym_not, - ACTIONS(3723), 1, - anon_sym_lambda, - ACTIONS(3725), 1, - anon_sym_new, - STATE(2111), 1, - sym_primary_expression, - STATE(2143), 1, + ACTIONS(1376), 1, + anon_sym_LT, + ACTIONS(1378), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2431), 1, - sym_expression, - STATE(5771), 1, - sym__named_expression_lhs, + STATE(3299), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1363), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1366), 2, + anon_sym_from, + anon_sym_in, + ACTIONS(1303), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2422), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, + ACTIONS(1576), 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(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171703,66 +177867,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57227] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [55939] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1396), 1, + anon_sym_not, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1400), 1, + anon_sym_lambda, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1416), 1, + anon_sym_new, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, + anon_sym_await, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - ACTIONS(3721), 1, - anon_sym_not, - ACTIONS(3723), 1, - anon_sym_lambda, - ACTIONS(3725), 1, - anon_sym_new, - STATE(2111), 1, + STATE(2169), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2242), 1, sym_string, - STATE(2349), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(2432), 1, + STATE(4008), 1, sym_expression, - STATE(5771), 1, + STATE(5608), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2422), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171771,7 +177935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171792,66 +177956,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57342] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, + [56054] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1454), 1, + anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, + anon_sym_lambda, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1470), 1, + anon_sym_new, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2427), 1, anon_sym_STAR, - ACTIONS(3721), 1, - anon_sym_not, - ACTIONS(3723), 1, - anon_sym_lambda, - ACTIONS(3725), 1, - anon_sym_new, - STATE(2111), 1, + ACTIONS(2431), 1, + anon_sym_await, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + sym_identifier, + STATE(2270), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2403), 1, sym_string, - STATE(2349), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(2433), 1, + STATE(4283), 1, sym_expression, - STATE(5771), 1, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2422), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171860,7 +178024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171881,66 +178045,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57457] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [56169] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1265), 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(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3721), 1, - anon_sym_not, - ACTIONS(3723), 1, - anon_sym_lambda, - ACTIONS(3725), 1, - anon_sym_new, - STATE(2111), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2140), 1, sym_string, - STATE(2349), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(2434), 1, + STATE(4275), 1, sym_expression, - STATE(5771), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2422), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -171949,7 +178113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -171970,66 +178134,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57572] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [56284] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2757), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2879), 1, + anon_sym_await, + ACTIONS(3079), 1, + anon_sym_not, + ACTIONS(3081), 1, + anon_sym_lambda, + ACTIONS(3083), 1, + anon_sym_new, + STATE(2159), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2231), 1, sym_string, - STATE(2349), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(3840), 1, + STATE(4308), 1, sym_expression, - STATE(5559), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172038,7 +178202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172059,66 +178223,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57687] = 26, - ACTIONS(1243), 1, + [56399] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(3869), 1, + anon_sym_not, + ACTIONS(3871), 1, + anon_sym_lambda, + ACTIONS(3873), 1, + anon_sym_new, + STATE(2160), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4274), 1, + STATE(2502), 1, sym_expression, - STATE(5559), 1, + STATE(5766), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2434), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172127,7 +178291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172148,66 +178312,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57802] = 26, - ACTIONS(2483), 1, + [56514] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2563), 1, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3869), 1, + anon_sym_not, + ACTIONS(3871), 1, anon_sym_lambda, - ACTIONS(2569), 1, + ACTIONS(3873), 1, anon_sym_new, - ACTIONS(2841), 1, - sym_identifier, - ACTIONS(2849), 1, - anon_sym_await, - ACTIONS(3033), 1, - anon_sym_STAR, - STATE(2127), 1, + STATE(2160), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2209), 1, sym_string, - STATE(2546), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2632), 1, + STATE(2513), 1, sym_expression, - STATE(5737), 1, + STATE(5766), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(2434), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172216,7 +178380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172237,69 +178401,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [57917] = 27, - ACTIONS(1414), 1, + [56629] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, - anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, - anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1436), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_await, - ACTIONS(3773), 1, - sym_identifier, - STATE(2221), 1, + ACTIONS(3869), 1, + anon_sym_not, + ACTIONS(3871), 1, + anon_sym_lambda, + ACTIONS(3873), 1, + anon_sym_new, + STATE(2160), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2209), 1, sym_string, - STATE(2703), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4267), 1, + STATE(2521), 1, sym_expression, - STATE(5581), 1, + STATE(5766), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2746), 2, - sym_attribute, - sym_subscript, - ACTIONS(1430), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3775), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(2434), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172308,9 +178469,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 18, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -172327,132 +178490,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58034] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3667), 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(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, - [58103] = 26, - ACTIONS(1243), 1, + [56744] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(3869), 1, + anon_sym_not, + ACTIONS(3871), 1, + anon_sym_lambda, + ACTIONS(3873), 1, + anon_sym_new, + STATE(2160), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3845), 1, + STATE(2450), 1, sym_expression, - STATE(5559), 1, + STATE(5766), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2434), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172461,7 +178558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172482,66 +178579,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58218] = 26, - ACTIONS(1243), 1, + [56859] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(3869), 1, + anon_sym_not, + ACTIONS(3871), 1, + anon_sym_lambda, + ACTIONS(3873), 1, + anon_sym_new, + STATE(2160), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3848), 1, + STATE(2452), 1, sym_expression, - STATE(5559), 1, + STATE(5766), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2434), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172550,7 +178647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172571,66 +178668,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58333] = 26, - ACTIONS(1243), 1, + [56974] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(3869), 1, + anon_sym_not, + ACTIONS(3871), 1, + anon_sym_lambda, + ACTIONS(3873), 1, + anon_sym_new, + STATE(2160), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3143), 1, + STATE(2440), 1, sym_expression, - STATE(5559), 1, + STATE(5766), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2434), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172639,7 +178736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172660,66 +178757,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58448] = 26, - ACTIONS(1243), 1, + [57089] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + ACTIONS(3869), 1, + anon_sym_not, + ACTIONS(3871), 1, + anon_sym_lambda, + ACTIONS(3873), 1, + anon_sym_new, + STATE(2160), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3854), 1, + STATE(2511), 1, sym_expression, - STATE(5559), 1, + STATE(5766), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2434), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172728,7 +178825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172749,66 +178846,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58563] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [57204] = 26, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2599), 1, + anon_sym_not, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2603), 1, + anon_sym_lambda, + ACTIONS(2609), 1, + anon_sym_new, + ACTIONS(2913), 1, + sym_identifier, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2168), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2283), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4444), 1, + STATE(2608), 1, sym_expression, - STATE(5559), 1, + STATE(2610), 1, + sym_list_splat_pattern, + STATE(5785), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(2543), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2917), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2570), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172817,7 +178914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -172838,66 +178935,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58678] = 26, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, + [57319] = 27, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(1454), 1, + anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, + anon_sym_lambda, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(1470), 1, + anon_sym_new, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2587), 1, - anon_sym_not, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(2591), 1, - anon_sym_lambda, - ACTIONS(2595), 1, - anon_sym_await, - ACTIONS(2597), 1, - anon_sym_new, - ACTIONS(3076), 1, + ACTIONS(2427), 1, anon_sym_STAR, - STATE(2119), 1, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(3813), 1, + anon_sym_await, + ACTIONS(3885), 1, + sym_identifier, + STATE(2270), 1, sym_primary_expression, - STATE(2193), 1, + STATE(2403), 1, sym_string, - STATE(2449), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(2487), 1, + STATE(4273), 1, sym_expression, - STATE(5491), 1, + STATE(5627), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, + STATE(2761), 2, + sym_attribute, + sym_subscript, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(3887), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172906,11 +179006,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2328), 20, + STATE(2805), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -172927,69 +179025,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58793] = 27, - ACTIONS(2511), 1, + [57436] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3141), 1, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3491), 1, - anon_sym_await, - ACTIONS(3777), 1, - sym_identifier, - STATE(2177), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2209), 1, sym_string, - STATE(2642), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4308), 1, + STATE(4539), 1, sym_expression, - STATE(5721), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2747), 2, - sym_attribute, - sym_subscript, - ACTIONS(2509), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3779), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -172998,9 +179093,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 18, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -173017,66 +179114,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [58910] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [57551] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1396), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1400), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1416), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, + anon_sym_await, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2169), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2242), 1, sym_string, - STATE(2349), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(4283), 1, + STATE(3980), 1, sym_expression, - STATE(5559), 1, + STATE(5608), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173085,7 +179182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173106,132 +179203,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59025] = 3, + [57666] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + STATE(2156), 1, + sym_primary_expression, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(3886), 1, + sym_expression, + STATE(5695), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3671), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1293), 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(3669), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1283), 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, - [59094] = 26, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + STATE(3185), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [57781] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1396), 1, + anon_sym_not, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1400), 1, + anon_sym_lambda, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1416), 1, + anon_sym_new, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2703), 1, - anon_sym_not, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2707), 1, - anon_sym_lambda, - ACTIONS(2713), 1, - anon_sym_new, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - STATE(2117), 1, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, + anon_sym_STAR, + STATE(2169), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2242), 1, sym_string, - STATE(2421), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(3924), 1, + STATE(4029), 1, sym_expression, - STATE(5700), 1, + STATE(5608), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173240,7 +179360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173261,132 +179381,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59209] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3553), 14, - sym_string_start, - ts_builtin_sym_end, + [57896] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2483), 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(3551), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [59278] = 26, - ACTIONS(67), 1, + ACTIONS(2487), 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(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(2629), 1, + anon_sym_not, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2633), 1, + anon_sym_lambda, + ACTIONS(2637), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(2639), 1, + anon_sym_new, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2161), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2226), 1, sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(3537), 1, + STATE(2491), 1, sym_expression, - STATE(5657), 1, + STATE(2500), 1, + sym_list_splat_pattern, + STATE(5874), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173395,7 +179449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173416,132 +179470,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59393] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3781), 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(3783), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [59462] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [58011] = 27, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2541), 1, sym_string_start, ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - ACTIONS(3715), 1, anon_sym_not, - ACTIONS(3717), 1, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - ACTIONS(3719), 1, + ACTIONS(2733), 1, anon_sym_new, - STATE(2143), 1, + ACTIONS(3233), 1, + anon_sym_STAR, + ACTIONS(3861), 1, + anon_sym_await, + ACTIONS(3889), 1, + sym_identifier, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, sym_string, - STATE(2349), 1, + STATE(2736), 1, sym_list_splat_pattern, - STATE(2413), 1, - sym_primary_expression, - STATE(3207), 1, + STATE(4376), 1, sym_expression, - STATE(5593), 1, + STATE(5744), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + STATE(2767), 2, + sym_attribute, + sym_subscript, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(3891), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173550,11 +179541,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2685), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -173571,72 +179560,75 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59577] = 23, - ACTIONS(847), 1, - anon_sym_COMMA, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [58128] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1396), 1, + anon_sym_not, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1400), 1, + anon_sym_lambda, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1416), 1, + anon_sym_new, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(1334), 1, - anon_sym_STAR, - ACTIONS(1342), 1, - anon_sym_LT, - ACTIONS(1344), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, + anon_sym_STAR, + STATE(2169), 1, + sym_primary_expression, + STATE(2242), 1, sym_string, - STATE(2349), 1, + STATE(2536), 1, + sym_expression, + STATE(2540), 1, sym_list_splat_pattern, - STATE(3290), 1, - sym_primary_expression, + STATE(5608), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(833), 2, - anon_sym_from, - anon_sym_in, - ACTIONS(1269), 4, + ACTIONS(1408), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(811), 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(2443), 20, + STATE(2577), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173657,66 +179649,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59686] = 26, - ACTIONS(1243), 1, + [58243] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3835), 1, + STATE(3889), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -173725,7 +179717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -173746,264 +179738,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [59801] = 3, - 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, - 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(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, + [58358] = 26, + ACTIONS(1277), 1, sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [59870] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3557), 14, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1279), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(1285), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1289), 1, 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, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(1291), 1, anon_sym_not, + ACTIONS(1297), 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, - [59939] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3679), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3677), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(1301), 1, anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1307), 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(1309), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [60008] = 26, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, - anon_sym_LBRACE, - ACTIONS(1989), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, - anon_sym_None, - ACTIONS(1993), 1, - sym_float, - ACTIONS(1997), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2703), 1, - anon_sym_not, - ACTIONS(2705), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2707), 1, - anon_sym_lambda, - ACTIONS(2713), 1, - anon_sym_new, - ACTIONS(2955), 1, - sym_identifier, - ACTIONS(2963), 1, - anon_sym_await, - STATE(2117), 1, + ACTIONS(3113), 1, + anon_sym_STAR, + STATE(2156), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2209), 1, sym_string, - STATE(2421), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3926), 1, + STATE(3890), 1, sym_expression, - STATE(5700), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174012,7 +179806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174033,69 +179827,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60123] = 27, - ACTIONS(1975), 1, + [58473] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2995), 1, - anon_sym_not, - ACTIONS(2997), 1, - anon_sym_lambda, - ACTIONS(2999), 1, - anon_sym_new, - ACTIONS(3731), 1, - anon_sym_await, - ACTIONS(3785), 1, - sym_identifier, - STATE(2117), 1, + ACTIONS(3113), 1, + anon_sym_STAR, + STATE(2156), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2209), 1, sym_string, - STATE(2421), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4335), 1, + STATE(3183), 1, sym_expression, - STATE(5757), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2748), 2, - sym_attribute, - sym_subscript, - ACTIONS(1973), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3787), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174104,9 +179895,11 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 18, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -174123,66 +179916,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60240] = 26, - ACTIONS(67), 1, + [58588] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2209), 1, sym_string, - STATE(2166), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4375), 1, + STATE(3891), 1, sym_expression, - STATE(5657), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174191,7 +179984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174212,132 +180005,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60355] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3683), 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(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, - sym_integer, - sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [60424] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [58703] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(2763), 1, anon_sym_not, - ACTIONS(3717), 1, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2767), 1, anon_sym_lambda, - ACTIONS(3719), 1, + ACTIONS(2773), 1, anon_sym_new, - STATE(2143), 1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2879), 1, + anon_sym_await, + STATE(2159), 1, + sym_primary_expression, + STATE(2231), 1, sym_string, - STATE(2349), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(2413), 1, - sym_primary_expression, - STATE(3204), 1, + STATE(3924), 1, sym_expression, - STATE(5593), 1, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174346,7 +180073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174367,132 +180094,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60539] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3687), 14, - sym_string_start, - ts_builtin_sym_end, + [58818] = 27, + ACTIONS(2437), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2443), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2447), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3685), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - 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(2453), 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(2455), 1, + sym_float, + ACTIONS(2459), 1, anon_sym_sizeof, - [60608] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(2461), 1, + sym_string_start, + ACTIONS(2757), 1, + anon_sym_STAR, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(3079), 1, + anon_sym_not, + ACTIONS(3081), 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(3083), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(3879), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3893), 1, + sym_identifier, + STATE(2159), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2231), 1, sym_string, - STATE(2166), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(3543), 1, + STATE(4341), 1, sym_expression, - STATE(5657), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + STATE(2768), 2, + sym_attribute, + sym_subscript, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(3895), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174501,11 +180165,9 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2405), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -174522,198 +180184,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60723] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3771), 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(3769), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [60792] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3561), 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(3559), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [60861] = 26, - ACTIONS(67), 1, + [58935] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1396), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1398), 1, anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1400), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1416), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(2503), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2169), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2242), 1, sym_string, - STATE(2166), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(4225), 1, + STATE(4031), 1, sym_expression, - STATE(5657), 1, + STATE(5608), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174722,7 +180252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174743,66 +180273,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [60976] = 26, - ACTIONS(1414), 1, + [59050] = 26, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, - anon_sym_not, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1424), 1, - anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1436), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, + ACTIONS(2763), 1, + anon_sym_not, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2767), 1, + anon_sym_lambda, + ACTIONS(2773), 1, + anon_sym_new, + ACTIONS(2871), 1, sym_identifier, - STATE(2221), 1, + ACTIONS(2879), 1, + anon_sym_await, + STATE(2159), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2231), 1, sym_string, - STATE(2703), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(2727), 1, + STATE(3970), 1, sym_expression, - STATE(5581), 1, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174811,7 +180341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174832,66 +180362,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61091] = 26, - ACTIONS(67), 1, + [59165] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 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(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(1307), 1, anon_sym_await, + ACTIONS(1311), 1, + anon_sym_sizeof, ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, + ACTIONS(3863), 1, + anon_sym_not, + ACTIONS(3865), 1, + anon_sym_lambda, + ACTIONS(3867), 1, + anon_sym_new, + STATE(2209), 1, sym_string, - STATE(2166), 1, + STATE(2414), 1, + sym_primary_expression, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4049), 1, + STATE(3234), 1, sym_expression, - STATE(5657), 1, + STATE(5583), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -174900,7 +180430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -174921,132 +180451,152 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61206] = 3, + [59280] = 23, + ACTIONS(893), 1, + anon_sym_COMMA, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(1368), 1, + anon_sym_STAR, + ACTIONS(1376), 1, + anon_sym_LT, + ACTIONS(1378), 1, + anon_sym_await, + STATE(2209), 1, + sym_string, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(3299), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3691), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(859), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(879), 2, + anon_sym_from, + anon_sym_in, + ACTIONS(1303), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1374), 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(3689), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(1370), 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, - [61275] = 26, - ACTIONS(1243), 1, + ACTIONS(857), 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(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [59389] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3806), 1, + STATE(3834), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175055,7 +180605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175076,594 +180626,244 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [61390] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3695), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, + [59504] = 26, + ACTIONS(1448), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(1452), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - ACTIONS(3693), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(1454), 1, anon_sym_not, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1458), 1, anon_sym_lambda, - anon_sym_yield, + ACTIONS(1460), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 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(1466), 1, + sym_float, + ACTIONS(1470), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(1472), 1, anon_sym_sizeof, - [61459] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3365), 14, + ACTIONS(1474), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(2427), 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(3367), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_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(2431), 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, - [61528] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3699), 14, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(2571), 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(3697), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_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(3132), 1, sym_identifier, - anon_sym_await, - anon_sym_api, - sym_true, - sym_false, - anon_sym_property, - anon_sym_include, - anon_sym_DEF, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [61597] = 3, + STATE(2270), 1, + sym_primary_expression, + STATE(2403), 1, + sym_string, + STATE(2760), 1, + sym_list_splat_pattern, + STATE(2821), 1, + sym_expression, + STATE(5627), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 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(1619), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - 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(1464), 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, - [61666] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3703), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1450), 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(3701), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2429), 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, - [61735] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2471), 14, - sym_string_start, - ts_builtin_sym_end, + STATE(2806), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2805), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [59619] = 26, + ACTIONS(2517), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(2523), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2527), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, sym_float, - ACTIONS(2469), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(2725), 1, anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, anon_sym_lambda, - anon_sym_yield, - anon_sym_None, - sym_integer, - sym_identifier, + ACTIONS(2731), 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(2733), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - anon_sym_sizeof, - [61804] = 3, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2195), 1, + sym_primary_expression, + STATE(2324), 1, + sym_string, + STATE(2695), 1, + sym_expression, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(5744), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2785), 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(2787), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - 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(2515), 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, - [61873] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3789), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2525), 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(3791), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2719), 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, - [61942] = 26, - ACTIONS(2511), 1, + STATE(2686), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [59734] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(3863), 1, + anon_sym_not, + ACTIONS(3865), 1, anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, + ACTIONS(3867), 1, anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, - anon_sym_STAR, - STATE(2177), 1, - sym_primary_expression, - STATE(2292), 1, + STATE(2209), 1, sym_string, - STATE(2642), 1, + STATE(2414), 1, + sym_primary_expression, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2652), 1, + STATE(3239), 1, sym_expression, - STATE(5721), 1, + STATE(5583), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175672,7 +180872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175693,205 +180893,96 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62057] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2475), 14, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [59849] = 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(2473), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - 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(101), 1, anon_sym_new, - anon_sym_ctypedef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, + ACTIONS(107), 1, anon_sym_sizeof, - [62126] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3565), 14, + ACTIONS(109), 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(3563), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_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(855), 1, sym_identifier, + ACTIONS(895), 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, - [62195] = 3, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(4012), 1, + sym_expression, + STATE(5834), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3569), 14, - sym_string_start, - ts_builtin_sym_end, - 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(3567), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(870), 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, - [62264] = 26, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [59964] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -175902,35 +180993,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3509), 1, + ACTIONS(3851), 1, anon_sym_not, - ACTIONS(3511), 1, + ACTIONS(3853), 1, anon_sym_lambda, - ACTIONS(3513), 1, + ACTIONS(3855), 1, anon_sym_new, - STATE(2093), 1, + STATE(2130), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(2167), 1, + STATE(2221), 1, sym_expression, - STATE(5614), 1, + STATE(5658), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -175944,13 +181035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2196), 8, + STATE(2183), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -175959,7 +181050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -175980,66 +181071,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62379] = 26, - ACTIONS(1360), 1, + [60079] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3467), 1, - anon_sym_not, - ACTIONS(3469), 1, - anon_sym_lambda, - ACTIONS(3471), 1, - anon_sym_new, - STATE(2128), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2209), 1, sym_string, - STATE(2543), 1, - sym_expression, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(5689), 1, + STATE(3868), 1, + sym_expression, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176048,7 +181139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176069,72 +181160,75 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62494] = 23, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [60194] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(1327), 1, - anon_sym_COMMA, - ACTIONS(1334), 1, - anon_sym_STAR, - ACTIONS(1342), 1, - anon_sym_LT, - ACTIONS(1344), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, + anon_sym_STAR, + ACTIONS(3815), 1, + anon_sym_not, + ACTIONS(3817), 1, + anon_sym_lambda, + ACTIONS(3819), 1, + anon_sym_new, + STATE(2171), 1, + sym_primary_expression, + STATE(2242), 1, sym_string, - STATE(2349), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(3290), 1, - sym_primary_expression, + STATE(2588), 1, + sym_expression, + STATE(5561), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(1332), 2, - anon_sym_from, - anon_sym_in, - ACTIONS(1269), 4, + ACTIONS(1408), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(1530), 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(2443), 20, + STATE(2577), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176155,66 +181249,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62603] = 26, - ACTIONS(1243), 1, + [60309] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3863), 1, anon_sym_not, - ACTIONS(3717), 1, + ACTIONS(3865), 1, anon_sym_lambda, - ACTIONS(3719), 1, + ACTIONS(3867), 1, anon_sym_new, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(2413), 1, + STATE(2414), 1, sym_primary_expression, - STATE(3139), 1, + STATE(2435), 1, + sym_list_splat_pattern, + STATE(3181), 1, sym_expression, - STATE(5593), 1, + STATE(5583), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176223,7 +181317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176244,66 +181338,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62718] = 26, - ACTIONS(2511), 1, + [60424] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3141), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2177), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2209), 1, sym_string, - STATE(2642), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4287), 1, + STATE(4125), 1, sym_expression, - STATE(5721), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176312,7 +181406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176333,66 +181427,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62833] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [60539] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1265), 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(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3721), 1, - anon_sym_not, - ACTIONS(3723), 1, - anon_sym_lambda, - ACTIONS(3725), 1, - anon_sym_new, - STATE(2111), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2140), 1, sym_string, - STATE(2349), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(2426), 1, + STATE(4124), 1, sym_expression, - STATE(5771), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2422), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176401,7 +181495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176422,66 +181516,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [62948] = 26, - ACTIONS(1360), 1, + [60654] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1362), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1366), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1370), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1382), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1392), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2122), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2209), 1, sym_string, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4009), 1, + STATE(4522), 1, sym_expression, - STATE(5800), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176490,7 +181584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176511,66 +181605,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63063] = 26, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, + [60769] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1422), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1424), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1436), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(2537), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2140), 1, sym_string, - STATE(2703), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4336), 1, + STATE(4225), 1, sym_expression, - STATE(5581), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176579,7 +181673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176600,66 +181694,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63178] = 26, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, + [60884] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2497), 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(2499), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2841), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3449), 1, - anon_sym_not, - ACTIONS(3451), 1, - anon_sym_lambda, - ACTIONS(3453), 1, - anon_sym_new, - STATE(2120), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2140), 1, sym_string, - STATE(2546), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(2632), 1, + STATE(4126), 1, sym_expression, - STATE(5512), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176668,7 +181762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176689,66 +181783,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63293] = 26, - ACTIONS(2439), 1, + [60999] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2461), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2573), 1, - sym_identifier, - ACTIONS(2589), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2595), 1, - anon_sym_await, - ACTIONS(3076), 1, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(3455), 1, + ACTIONS(3869), 1, anon_sym_not, - ACTIONS(3457), 1, + ACTIONS(3871), 1, anon_sym_lambda, - ACTIONS(3459), 1, + ACTIONS(3873), 1, anon_sym_new, - STATE(2114), 1, + STATE(2160), 1, sym_primary_expression, - STATE(2193), 1, + STATE(2209), 1, sym_string, - STATE(2449), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(2487), 1, + STATE(2493), 1, sym_expression, - STATE(5547), 1, + STATE(5766), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2581), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2468), 8, + STATE(2434), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176757,7 +181851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2328), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176778,132 +181872,155 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63408] = 3, + [61114] = 26, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, + anon_sym_LBRACK, + ACTIONS(2555), 1, + anon_sym_LBRACE, + ACTIONS(2559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2561), 1, + anon_sym_None, + ACTIONS(2563), 1, + sym_float, + ACTIONS(2567), 1, + anon_sym_sizeof, + ACTIONS(2569), 1, + sym_string_start, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(2913), 1, + sym_identifier, + ACTIONS(2921), 1, + anon_sym_await, + ACTIONS(3105), 1, + anon_sym_STAR, + ACTIONS(3821), 1, + anon_sym_not, + ACTIONS(3823), 1, + anon_sym_lambda, + ACTIONS(3825), 1, + anon_sym_new, + STATE(2164), 1, + sym_primary_expression, + STATE(2283), 1, + sym_string, + STATE(2608), 1, + sym_expression, + STATE(2610), 1, + sym_list_splat_pattern, + STATE(5556), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3789), 14, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2543), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(2553), 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(3791), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, + ACTIONS(2917), 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, - [63477] = 26, - ACTIONS(1975), 1, + STATE(2570), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2568), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [61229] = 26, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(2615), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(2637), 1, anon_sym_await, - ACTIONS(3461), 1, + ACTIONS(3093), 1, + anon_sym_STAR, + ACTIONS(3827), 1, anon_sym_not, - ACTIONS(3463), 1, + ACTIONS(3829), 1, anon_sym_lambda, - ACTIONS(3465), 1, + ACTIONS(3831), 1, anon_sym_new, - STATE(2116), 1, + STATE(2149), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2226), 1, sym_string, - STATE(2339), 1, + STATE(2491), 1, sym_expression, - STATE(2421), 1, + STATE(2500), 1, sym_list_splat_pattern, - STATE(5560), 1, + STATE(5578), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(2475), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2623), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2331), 8, + STATE(2410), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -176912,7 +182029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -176933,66 +182050,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63592] = 26, - ACTIONS(1414), 1, + [61344] = 26, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(1601), 1, - anon_sym_await, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(3065), 1, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(3475), 1, + ACTIONS(2879), 1, + anon_sym_await, + ACTIONS(3833), 1, anon_sym_not, - ACTIONS(3477), 1, + ACTIONS(3835), 1, anon_sym_lambda, - ACTIONS(3479), 1, + ACTIONS(3837), 1, anon_sym_new, - STATE(2197), 1, + STATE(2162), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2231), 1, sym_string, - STATE(2703), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(2727), 1, + STATE(2506), 1, sym_expression, - STATE(5575), 1, + STATE(5588), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(2503), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177001,7 +182118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177022,66 +182139,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63707] = 26, - ACTIONS(1360), 1, + [61459] = 26, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1362), 1, - anon_sym_not, - ACTIONS(1364), 1, + ACTIONS(1456), 1, anon_sym_LT, - ACTIONS(1366), 1, - anon_sym_lambda, - ACTIONS(1370), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1382), 1, - anon_sym_new, - ACTIONS(1392), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2431), 1, anon_sym_await, - ACTIONS(2405), 1, + ACTIONS(2571), 1, anon_sym_LPAREN, - ACTIONS(2823), 1, + ACTIONS(3132), 1, sym_identifier, - ACTIONS(3041), 1, - anon_sym_STAR, - STATE(2122), 1, + ACTIONS(3839), 1, + anon_sym_not, + ACTIONS(3841), 1, + anon_sym_lambda, + ACTIONS(3843), 1, + anon_sym_new, + STATE(2258), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2403), 1, sym_string, - STATE(2604), 1, + STATE(2760), 1, sym_list_splat_pattern, - STATE(3938), 1, + STATE(2821), 1, sym_expression, - STATE(5800), 1, + STATE(5605), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(1464), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(2429), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(2806), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177090,7 +182207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177111,66 +182228,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63822] = 26, - ACTIONS(2511), 1, - anon_sym_LPAREN, + [61574] = 26, ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(2685), 1, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(3001), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(3233), 1, anon_sym_STAR, - ACTIONS(3481), 1, + ACTIONS(3845), 1, anon_sym_not, - ACTIONS(3483), 1, + ACTIONS(3847), 1, anon_sym_lambda, - ACTIONS(3485), 1, + ACTIONS(3849), 1, anon_sym_new, - STATE(2195), 1, + STATE(2174), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2324), 1, sym_string, - STATE(2642), 1, - sym_list_splat_pattern, - STATE(2652), 1, + STATE(2695), 1, sym_expression, - STATE(5588), 1, + STATE(2736), 1, + sym_list_splat_pattern, + STATE(5618), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177179,7 +182296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177200,66 +182317,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [63937] = 26, - ACTIONS(1360), 1, + [61689] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1362), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1366), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1370), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1382), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1392), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_await, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2122), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2209), 1, sym_string, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3955), 1, + STATE(4426), 1, sym_expression, - STATE(5800), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177268,7 +182385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177289,66 +182406,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64052] = 26, - ACTIONS(1360), 1, + [61804] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1362), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1364), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1366), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1370), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1382), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(1392), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(2405), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2122), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2140), 1, sym_string, - STATE(2513), 1, - sym_expression, - STATE(2604), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(5800), 1, + STATE(4433), 1, + sym_expression, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177357,7 +182474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177378,66 +182495,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64167] = 26, - ACTIONS(1360), 1, + [61919] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1362), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1364), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1366), 1, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1370), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1382), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(1392), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(2405), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(3041), 1, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2122), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2202), 1, + STATE(2140), 1, sym_string, - STATE(2604), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(3957), 1, + STATE(4114), 1, sym_expression, - STATE(5800), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1374), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1358), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1502), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2579), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177446,7 +182563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2556), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177467,66 +182584,244 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64282] = 26, - ACTIONS(1243), 1, + [62034] = 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(101), 1, + anon_sym_new, + ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(4168), 1, + sym_expression, + STATE(5834), 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(870), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [62149] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, + sym_string_start, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, + sym_primary_expression, + STATE(2140), 1, + sym_string, + STATE(2215), 1, + sym_list_splat_pattern, + STATE(4169), 1, + sym_expression, + STATE(5834), 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(870), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(3538), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_new_expression, + STATE(2230), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [62264] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2535), 1, + sym_float, + ACTIONS(2539), 1, + anon_sym_sizeof, + ACTIONS(2541), 1, sym_string_start, ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, + anon_sym_await, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2324), 1, sym_string, - STATE(2349), 1, + STATE(2736), 1, sym_list_splat_pattern, - STATE(4486), 1, + STATE(4185), 1, sym_expression, - STATE(5559), 1, + STATE(5744), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177535,7 +182830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177556,7 +182851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64397] = 26, + [62379] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -177571,31 +182866,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4513), 1, + STATE(4190), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177609,13 +182904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177624,7 +182919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177645,7 +182940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64512] = 26, + [62494] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -177660,31 +182955,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4214), 1, + STATE(4191), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177698,13 +182993,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177713,7 +183008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177734,7 +183029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64627] = 26, + [62609] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -177749,31 +183044,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4051), 1, + STATE(4205), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177787,13 +183082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177802,7 +183097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177823,7 +183118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64742] = 26, + [62724] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -177838,31 +183133,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4052), 1, + STATE(4206), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -177876,13 +183171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177891,7 +183186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -177912,66 +183207,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64857] = 26, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, + [62839] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2525), 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(2527), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2177), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2140), 1, sym_string, - STATE(2642), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4058), 1, + STATE(4208), 1, sym_expression, - STATE(5721), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -177980,7 +183275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178001,7 +183296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [64972] = 26, + [62954] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -178016,31 +183311,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4059), 1, + STATE(4227), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178054,13 +183349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178069,7 +183364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178090,7 +183385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65087] = 26, + [63069] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -178105,31 +183400,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4060), 1, + STATE(4228), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178143,13 +183438,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178158,7 +183453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178179,7 +183474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65202] = 26, + [63184] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -178194,31 +183489,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4069), 1, + STATE(4229), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178232,13 +183527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178247,7 +183542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178268,7 +183563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65317] = 26, + [63299] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -178283,31 +183578,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4070), 1, + STATE(4230), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178321,13 +183616,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178336,7 +183631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178357,7 +183652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65432] = 26, + [63414] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -178372,31 +183667,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4071), 1, + STATE(4231), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178410,13 +183705,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178425,7 +183720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178446,7 +183741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65547] = 26, + [63529] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -178461,31 +183756,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4082), 1, + STATE(4238), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178499,13 +183794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178514,7 +183809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178535,7 +183830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65662] = 26, + [63644] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -178550,31 +183845,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4083), 1, + STATE(4239), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178588,13 +183883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178603,7 +183898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178624,7 +183919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65777] = 26, + [63759] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -178639,31 +183934,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4084), 1, + STATE(4240), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178677,13 +183972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178692,7 +183987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178713,7 +184008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [65892] = 26, + [63874] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -178728,31 +184023,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4085), 1, + STATE(4241), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178766,13 +184061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178781,7 +184076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178802,7 +184097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66007] = 26, + [63989] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -178817,31 +184112,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4086), 1, + STATE(4243), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -178855,13 +184150,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178870,7 +184165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178891,66 +184186,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66122] = 26, - ACTIONS(67), 1, + [64104] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2209), 1, sym_string, - STATE(2166), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4089), 1, + STATE(4571), 1, sym_expression, - STATE(5657), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -178959,7 +184254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -178980,66 +184275,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66237] = 26, - ACTIONS(67), 1, + [64219] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1398), 1, anon_sym_LT, - ACTIONS(73), 1, - anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(2503), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - STATE(2091), 1, + ACTIONS(3815), 1, + anon_sym_not, + ACTIONS(3817), 1, + anon_sym_lambda, + ACTIONS(3819), 1, + anon_sym_new, + STATE(2171), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2242), 1, sym_string, - STATE(2166), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(4090), 1, + STATE(2676), 1, sym_expression, - STATE(5657), 1, + STATE(5561), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179048,7 +184343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179069,7 +184364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66352] = 26, + [64334] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -179084,31 +184379,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4091), 1, + STATE(4130), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -179122,13 +184417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179137,7 +184432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179158,7 +184453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66467] = 26, + [64449] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -179173,31 +184468,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4092), 1, + STATE(4101), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -179211,13 +184506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179226,7 +184521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179247,7 +184542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66582] = 26, + [64564] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -179262,31 +184557,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4096), 1, + STATE(4108), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -179300,13 +184595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179315,7 +184610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179336,66 +184631,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66697] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [64679] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(73), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2140), 1, sym_string, - STATE(2349), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4519), 1, + STATE(4089), 1, sym_expression, - STATE(5559), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179404,7 +184699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179425,66 +184720,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66812] = 26, - ACTIONS(67), 1, + [64794] = 26, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 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(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(99), 1, - anon_sym_new, - ACTIONS(105), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, + ACTIONS(2725), 1, + anon_sym_not, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(2729), 1, + anon_sym_lambda, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(2733), 1, + anon_sym_new, + ACTIONS(3097), 1, + sym_identifier, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2324), 1, sym_string, - STATE(2166), 1, + STATE(2736), 1, sym_list_splat_pattern, - STATE(4115), 1, + STATE(4113), 1, sym_expression, - STATE(5657), 1, + STATE(5744), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179493,7 +184788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179514,7 +184809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [66927] = 26, + [64909] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -179529,31 +184824,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4118), 1, + STATE(4115), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -179567,13 +184862,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179582,7 +184877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179603,7 +184898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67042] = 26, + [65024] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -179618,31 +184913,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4119), 1, + STATE(4116), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -179656,13 +184951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179671,7 +184966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179692,66 +184987,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67157] = 26, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, + [65139] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2525), 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(2527), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2533), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2679), 1, - anon_sym_not, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(2683), 1, - anon_sym_lambda, - ACTIONS(2685), 1, - anon_sym_await, - ACTIONS(2687), 1, - anon_sym_new, - ACTIONS(3001), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(895), 1, + anon_sym_await, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2177), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2140), 1, sym_string, - STATE(2642), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4125), 1, + STATE(4131), 1, sym_expression, - STATE(5721), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179760,7 +185055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179781,7 +185076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67272] = 26, + [65254] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -179796,31 +185091,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4126), 1, + STATE(4132), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -179834,13 +185129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179849,7 +185144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179870,7 +185165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67387] = 26, + [65369] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -179885,31 +185180,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4127), 1, + STATE(4133), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -179923,13 +185218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -179938,7 +185233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -179959,7 +185254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67502] = 26, + [65484] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -179974,31 +185269,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4133), 1, + STATE(4142), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180012,13 +185307,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180027,7 +185322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180048,7 +185343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67617] = 26, + [65599] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -180063,31 +185358,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4134), 1, + STATE(4143), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180101,13 +185396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180116,7 +185411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180137,7 +185432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67732] = 26, + [65714] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -180152,31 +185447,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4135), 1, + STATE(4144), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180190,13 +185485,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180205,7 +185500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180226,7 +185521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67847] = 26, + [65829] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -180241,31 +185536,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4141), 1, + STATE(4145), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180279,13 +185574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180294,7 +185589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180315,7 +185610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [67962] = 26, + [65944] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -180330,31 +185625,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4142), 1, + STATE(4146), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180368,13 +185663,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180383,7 +185678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180404,7 +185699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68077] = 26, + [66059] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -180419,31 +185714,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4143), 1, + STATE(4148), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180457,13 +185752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180472,7 +185767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180493,7 +185788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68192] = 26, + [66174] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -180508,31 +185803,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4144), 1, + STATE(4149), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180546,13 +185841,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180561,7 +185856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180582,7 +185877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68307] = 26, + [66289] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -180597,31 +185892,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4145), 1, + STATE(4150), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180635,13 +185930,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180650,7 +185945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180671,7 +185966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68422] = 26, + [66404] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -180686,31 +185981,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4147), 1, + STATE(4151), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180724,13 +186019,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180739,7 +186034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180760,7 +186055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68537] = 26, + [66519] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -180775,31 +186070,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4148), 1, + STATE(4153), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -180813,13 +186108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -180828,7 +186123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -180849,155 +186144,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68652] = 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(809), 1, + [66634] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(849), 1, - anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(4149), 1, - sym_expression, - STATE(5657), 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(824), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3492), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [68767] = 26, - ACTIONS(67), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(73), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(77), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(105), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(3110), 1, + sym_string_start, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2209), 1, sym_string, - STATE(2166), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4150), 1, + STATE(4491), 1, sym_expression, - STATE(5657), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(81), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -181006,7 +186212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181027,7 +186233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68882] = 26, + [66749] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -181042,31 +186248,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_new, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4151), 1, + STATE(4235), 1, sym_expression, - STATE(5657), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -181080,13 +186286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -181095,7 +186301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181116,155 +186322,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [68997] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, + [66864] = 26, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2541), 1, sym_string_start, ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, - anon_sym_STAR, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(4518), 1, - sym_expression, - STATE(5559), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1249), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3138), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [69112] = 26, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2525), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2529), 1, - sym_float, - ACTIONS(2533), 1, - anon_sym_sizeof, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(2679), 1, anon_sym_not, - ACTIONS(2681), 1, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(2683), 1, + ACTIONS(2729), 1, anon_sym_lambda, - ACTIONS(2685), 1, + ACTIONS(2731), 1, anon_sym_await, - ACTIONS(2687), 1, + ACTIONS(2733), 1, anon_sym_new, - ACTIONS(3001), 1, + ACTIONS(3097), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2177), 1, + STATE(2195), 1, sym_primary_expression, - STATE(2292), 1, + STATE(2324), 1, sym_string, - STATE(2642), 1, + STATE(2736), 1, sym_list_splat_pattern, - STATE(4157), 1, + STATE(4159), 1, sym_expression, - STATE(5721), 1, + STATE(5744), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 3, + ACTIONS(2515), 3, sym_integer, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2673), 5, + ACTIONS(2719), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2648), 8, + STATE(2686), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -181273,7 +186390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2647), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181294,66 +186411,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69227] = 26, - ACTIONS(1243), 1, + [66979] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4368), 1, + STATE(4525), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -181362,7 +186479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181383,66 +186500,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69342] = 26, - ACTIONS(1243), 1, + [67094] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4379), 1, + STATE(4550), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -181451,7 +186568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181472,66 +186589,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69457] = 26, - ACTIONS(1243), 1, - sym_identifier, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [67209] = 26, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1396), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1400), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1273), 1, - anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1416), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(1560), 1, + anon_sym_await, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2827), 1, + sym_identifier, + ACTIONS(3067), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2169), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2242), 1, sym_string, - STATE(2349), 1, + STATE(2540), 1, sym_list_splat_pattern, - STATE(4395), 1, + STATE(4021), 1, sym_expression, - STATE(5559), 1, + STATE(5608), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1408), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1556), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(2577), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -181540,7 +186657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181561,66 +186678,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69572] = 26, - ACTIONS(1243), 1, + [67324] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4407), 1, + STATE(4403), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -181629,7 +186746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181650,66 +186767,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69687] = 26, - ACTIONS(1243), 1, + [67439] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, STATE(4415), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -181718,7 +186835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181739,66 +186856,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69802] = 26, - ACTIONS(1243), 1, + [67554] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4424), 1, + STATE(4423), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -181807,7 +186924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181828,66 +186945,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [69917] = 26, - ACTIONS(1243), 1, + [67669] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4427), 1, + STATE(4430), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -181896,7 +187013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -181917,66 +187034,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70032] = 26, - ACTIONS(1243), 1, + [67784] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4430), 1, + STATE(4434), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -181985,7 +187102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182006,66 +187123,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70147] = 26, - ACTIONS(1243), 1, + [67899] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4432), 1, + STATE(4438), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -182074,7 +187191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182095,66 +187212,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70262] = 26, - ACTIONS(1243), 1, + [68014] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4434), 1, + STATE(4443), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -182163,7 +187280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182184,66 +187301,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70377] = 26, - ACTIONS(1243), 1, + [68129] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4437), 1, + STATE(4448), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -182252,7 +187369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182273,66 +187390,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70492] = 26, - ACTIONS(1243), 1, + [68244] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4438), 1, + STATE(4451), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -182341,7 +187458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182362,66 +187479,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70607] = 26, - ACTIONS(1243), 1, + [68359] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4442), 1, + STATE(4453), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -182430,7 +187547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182451,66 +187568,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70722] = 26, - ACTIONS(1243), 1, + [68474] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4445), 1, + STATE(4459), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -182519,7 +187636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182540,66 +187657,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70837] = 26, - ACTIONS(1243), 1, + [68589] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4451), 1, + STATE(4461), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -182608,7 +187725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182629,66 +187746,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [70952] = 26, - ACTIONS(2483), 1, + [68704] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2563), 1, - anon_sym_lambda, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2841), 1, - sym_identifier, - ACTIONS(2849), 1, - anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2127), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2209), 1, sym_string, - STATE(2546), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3962), 1, + STATE(4466), 1, sym_expression, - STATE(5737), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -182697,7 +187814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182718,66 +187835,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71067] = 26, - ACTIONS(2483), 1, + [68819] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2563), 1, - anon_sym_lambda, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2841), 1, - sym_identifier, - ACTIONS(2849), 1, - anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2127), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2209), 1, sym_string, - STATE(2546), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3969), 1, + STATE(4478), 1, sym_expression, - STATE(5737), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -182786,7 +187903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182807,66 +187924,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71182] = 26, - ACTIONS(2483), 1, + [68934] = 26, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(1291), 1, + anon_sym_not, + ACTIONS(1297), 1, + anon_sym_lambda, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(1307), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_new, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2563), 1, - anon_sym_lambda, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2841), 1, - sym_identifier, - ACTIONS(2849), 1, - anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2127), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2209), 1, sym_string, - STATE(2546), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3970), 1, + STATE(4483), 1, sym_expression, - STATE(5737), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -182875,7 +187992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182896,66 +188013,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71297] = 26, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, + [69049] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2497), 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(2499), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2563), 1, - anon_sym_lambda, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2841), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2127), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2140), 1, sym_string, - STATE(2546), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(2627), 1, + STATE(4138), 1, sym_expression, - STATE(5737), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -182964,7 +188081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -182985,66 +188102,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71412] = 26, - ACTIONS(1243), 1, + [69164] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4457), 1, + STATE(4485), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -183053,7 +188170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -183074,66 +188191,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71527] = 26, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, + [69279] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2497), 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(2499), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2505), 1, + ACTIONS(101), 1, + anon_sym_new, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2559), 1, - anon_sym_not, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(2563), 1, - anon_sym_lambda, - ACTIONS(2569), 1, - anon_sym_new, - ACTIONS(2841), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(2849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(3033), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2127), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2229), 1, + STATE(2140), 1, sym_string, - STATE(2546), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(3976), 1, + STATE(4139), 1, sym_expression, - STATE(5737), 1, + STATE(5834), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2845), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2536), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -183142,7 +188259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2512), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -183163,66 +188280,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71642] = 26, - ACTIONS(1243), 1, + [69394] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4461), 1, + STATE(4486), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -183231,7 +188348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -183252,66 +188369,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71757] = 26, - ACTIONS(1243), 1, + [69509] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4464), 1, + STATE(4488), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -183320,7 +188437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -183341,66 +188458,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71872] = 26, - ACTIONS(1243), 1, + [69624] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_lambda, - ACTIONS(2759), 1, + ACTIONS(2835), 1, anon_sym_new, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3996), 1, + STATE(4063), 1, sym_expression, - STATE(5751), 1, + STATE(5801), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -183409,7 +188526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -183430,66 +188547,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [71987] = 26, - ACTIONS(1243), 1, + [69739] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_lambda, - ACTIONS(2759), 1, + ACTIONS(2835), 1, anon_sym_new, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3998), 1, + STATE(4064), 1, sym_expression, - STATE(5751), 1, + STATE(5801), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -183498,7 +188615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -183519,66 +188636,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72102] = 26, - ACTIONS(1243), 1, + [69854] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_lambda, - ACTIONS(2759), 1, + ACTIONS(2835), 1, anon_sym_new, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3999), 1, + STATE(4065), 1, sym_expression, - STATE(5751), 1, + STATE(5801), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -183587,7 +188704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -183608,66 +188725,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72217] = 26, - ACTIONS(1243), 1, + [69969] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_lambda, - ACTIONS(2759), 1, + ACTIONS(2835), 1, anon_sym_new, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3143), 1, + STATE(3183), 1, sym_expression, - STATE(5751), 1, + STATE(5801), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -183676,7 +188793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -183697,66 +188814,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72332] = 26, - ACTIONS(1243), 1, + [70084] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_lambda, - ACTIONS(2759), 1, + ACTIONS(2835), 1, anon_sym_new, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4000), 1, + STATE(4066), 1, sym_expression, - STATE(5751), 1, + STATE(5801), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -183765,7 +188882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -183786,66 +188903,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72447] = 26, - ACTIONS(1975), 1, + [70199] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(2995), 1, + ACTIONS(3079), 1, anon_sym_not, - ACTIONS(2997), 1, + ACTIONS(3081), 1, anon_sym_lambda, - ACTIONS(2999), 1, + ACTIONS(3083), 1, anon_sym_new, - STATE(2117), 1, + STATE(2159), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(4354), 1, + STATE(4398), 1, sym_expression, - STATE(5757), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -183854,7 +188971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -183875,66 +188992,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72562] = 26, - ACTIONS(1243), 1, + [70314] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_lambda, - ACTIONS(2759), 1, + ACTIONS(2835), 1, anon_sym_new, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4002), 1, + STATE(4067), 1, sym_expression, - STATE(5751), 1, + STATE(5801), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -183943,7 +189060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -183964,66 +189081,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72677] = 26, - ACTIONS(1243), 1, + [70429] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_lambda, - ACTIONS(2759), 1, + ACTIONS(2835), 1, anon_sym_new, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4004), 1, + STATE(4068), 1, sym_expression, - STATE(5751), 1, + STATE(5801), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -184032,7 +189149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184053,66 +189170,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72792] = 26, - ACTIONS(1975), 1, + [70544] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(2995), 1, + ACTIONS(3079), 1, anon_sym_not, - ACTIONS(2997), 1, + ACTIONS(3081), 1, anon_sym_lambda, - ACTIONS(2999), 1, + ACTIONS(3083), 1, anon_sym_new, - STATE(2117), 1, + STATE(2159), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(4342), 1, + STATE(4386), 1, sym_expression, - STATE(5757), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -184121,7 +189238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184142,66 +189259,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [72907] = 26, - ACTIONS(1975), 1, + [70659] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(2995), 1, + ACTIONS(3079), 1, anon_sym_not, - ACTIONS(2997), 1, + ACTIONS(3081), 1, anon_sym_lambda, - ACTIONS(2999), 1, + ACTIONS(3083), 1, anon_sym_new, - STATE(2117), 1, + STATE(2159), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(4343), 1, + STATE(4387), 1, sym_expression, - STATE(5757), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -184210,7 +189327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184231,66 +189348,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73022] = 26, - ACTIONS(1975), 1, + [70774] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(2995), 1, + ACTIONS(3079), 1, anon_sym_not, - ACTIONS(2997), 1, + ACTIONS(3081), 1, anon_sym_lambda, - ACTIONS(2999), 1, + ACTIONS(3083), 1, anon_sym_new, - STATE(2117), 1, + STATE(2159), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(4344), 1, + STATE(4388), 1, sym_expression, - STATE(5757), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -184299,7 +189416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184320,66 +189437,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73137] = 26, - ACTIONS(1975), 1, + [70889] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(2995), 1, + ACTIONS(3079), 1, anon_sym_not, - ACTIONS(2997), 1, + ACTIONS(3081), 1, anon_sym_lambda, - ACTIONS(2999), 1, + ACTIONS(3083), 1, anon_sym_new, - STATE(2117), 1, + STATE(2159), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(3867), 1, + STATE(3929), 1, sym_expression, - STATE(5757), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -184388,7 +189505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184409,66 +189526,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73252] = 26, - ACTIONS(1975), 1, + [71004] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(2995), 1, + ACTIONS(3079), 1, anon_sym_not, - ACTIONS(2997), 1, + ACTIONS(3081), 1, anon_sym_lambda, - ACTIONS(2999), 1, + ACTIONS(3083), 1, anon_sym_new, - STATE(2117), 1, + STATE(2159), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(4345), 1, + STATE(4389), 1, sym_expression, - STATE(5757), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -184477,7 +189594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184498,66 +189615,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73367] = 26, - ACTIONS(1975), 1, + [71119] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(2995), 1, + ACTIONS(3079), 1, anon_sym_not, - ACTIONS(2997), 1, + ACTIONS(3081), 1, anon_sym_lambda, - ACTIONS(2999), 1, + ACTIONS(3083), 1, anon_sym_new, - STATE(2117), 1, + STATE(2159), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(4346), 1, + STATE(4390), 1, sym_expression, - STATE(5757), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -184566,7 +189683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184587,66 +189704,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73482] = 26, - ACTIONS(1975), 1, + [71234] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(2995), 1, + ACTIONS(3079), 1, anon_sym_not, - ACTIONS(2997), 1, + ACTIONS(3081), 1, anon_sym_lambda, - ACTIONS(2999), 1, + ACTIONS(3083), 1, anon_sym_new, - STATE(2117), 1, + STATE(2159), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(4347), 1, + STATE(4392), 1, sym_expression, - STATE(5757), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -184655,7 +189772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184676,66 +189793,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73597] = 26, - ACTIONS(1243), 1, + [71349] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2755), 1, + ACTIONS(2831), 1, anon_sym_not, - ACTIONS(2757), 1, + ACTIONS(2833), 1, anon_sym_lambda, - ACTIONS(2759), 1, + ACTIONS(2835), 1, anon_sym_new, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3139), 1, + STATE(3181), 1, sym_expression, - STATE(5751), 1, + STATE(5801), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -184744,7 +189861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184765,66 +189882,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73712] = 26, - ACTIONS(1975), 1, + [71464] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2703), 1, + ACTIONS(2763), 1, anon_sym_not, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2707), 1, + ACTIONS(2767), 1, anon_sym_lambda, - ACTIONS(2713), 1, + ACTIONS(2773), 1, anon_sym_new, - ACTIONS(2955), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2879), 1, anon_sym_await, - STATE(2117), 1, + STATE(2159), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(4041), 1, + STATE(4086), 1, sym_expression, - STATE(5700), 1, + STATE(5687), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -184833,7 +189950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184854,66 +189971,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73827] = 26, - ACTIONS(1975), 1, + [71579] = 26, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2955), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2963), 1, + ACTIONS(2879), 1, anon_sym_await, - ACTIONS(2995), 1, + ACTIONS(3079), 1, anon_sym_not, - ACTIONS(2997), 1, + ACTIONS(3081), 1, anon_sym_lambda, - ACTIONS(2999), 1, + ACTIONS(3083), 1, anon_sym_new, - STATE(2117), 1, + STATE(2159), 1, sym_primary_expression, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, - STATE(3926), 1, + STATE(3924), 1, sym_expression, - STATE(5757), 1, + STATE(5807), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 3, + ACTIONS(2435), 3, sym_integer, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2959), 5, + ACTIONS(2875), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3906), 8, + STATE(3933), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -184922,7 +190039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -184943,66 +190060,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [73942] = 26, - ACTIONS(1243), 1, + [71694] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4523), 1, + STATE(4572), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -185011,7 +190128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185032,66 +190149,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74057] = 26, - ACTIONS(1243), 1, + [71809] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, + ACTIONS(1291), 1, anon_sym_not, - ACTIONS(1263), 1, + ACTIONS(1297), 1, anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, + ACTIONS(1309), 1, anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, + STATE(2156), 1, sym_primary_expression, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4525), 1, + STATE(4573), 1, sym_expression, - STATE(5559), 1, + STATE(5695), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -185100,7 +190217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185121,66 +190238,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74172] = 26, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, + [71924] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, - anon_sym_not, - ACTIONS(1422), 1, + ACTIONS(71), 1, anon_sym_LT, - ACTIONS(1424), 1, - anon_sym_lambda, - ACTIONS(1426), 1, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1436), 1, - anon_sym_new, - ACTIONS(1438), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(1601), 1, + ACTIONS(855), 1, + sym_identifier, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(2537), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(3065), 1, - sym_identifier, - STATE(2221), 1, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(2819), 1, + anon_sym_not, + ACTIONS(2821), 1, + anon_sym_lambda, + ACTIONS(2823), 1, + anon_sym_new, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2131), 1, sym_primary_expression, - STATE(2410), 1, + STATE(2140), 1, sym_string, - STATE(2703), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(4258), 1, + STATE(3895), 1, sym_expression, - STATE(5581), 1, + STATE(5872), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1430), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1416), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1599), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2712), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -185189,7 +190306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2710), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185210,73 +190327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74287] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3711), 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(3713), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [74356] = 26, + [72039] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -185287,35 +190338,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(2813), 1, + ACTIONS(2819), 1, anon_sym_not, - ACTIONS(2815), 1, + ACTIONS(2821), 1, anon_sym_lambda, - ACTIONS(2817), 1, + ACTIONS(2823), 1, anon_sym_new, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(3847), 1, + STATE(3896), 1, sym_expression, - STATE(5822), 1, + STATE(5872), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -185329,13 +190380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -185344,7 +190395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185365,7 +190416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74471] = 26, + [72154] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -185376,124 +190427,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, - sym_string_start, - ACTIONS(809), 1, - sym_identifier, - ACTIONS(849), 1, - anon_sym_await, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(2813), 1, - anon_sym_not, - ACTIONS(2815), 1, - anon_sym_lambda, - ACTIONS(2817), 1, - anon_sym_new, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2091), 1, - sym_primary_expression, - STATE(2100), 1, - sym_string, - STATE(2166), 1, - sym_list_splat_pattern, - STATE(3849), 1, - sym_expression, - STATE(5822), 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(824), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(3492), 8, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - sym_new_expression, - STATE(2194), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [74586] = 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, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(2813), 1, + ACTIONS(2819), 1, anon_sym_not, - ACTIONS(2815), 1, + ACTIONS(2821), 1, anon_sym_lambda, - ACTIONS(2817), 1, + ACTIONS(2823), 1, anon_sym_new, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(3850), 1, + STATE(3897), 1, sym_expression, - STATE(5822), 1, + STATE(5872), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -185507,13 +190469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -185522,7 +190484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185543,7 +190505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74701] = 26, + [72269] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -185554,35 +190516,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(2813), 1, + ACTIONS(2819), 1, anon_sym_not, - ACTIONS(2815), 1, + ACTIONS(2821), 1, anon_sym_lambda, - ACTIONS(2817), 1, + ACTIONS(2823), 1, anon_sym_new, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(3851), 1, + STATE(3898), 1, sym_expression, - STATE(5822), 1, + STATE(5872), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -185596,13 +190558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -185611,7 +190573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185632,7 +190594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74816] = 26, + [72384] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -185643,35 +190605,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(2813), 1, + ACTIONS(2819), 1, anon_sym_not, - ACTIONS(2815), 1, + ACTIONS(2821), 1, anon_sym_lambda, - ACTIONS(2817), 1, + ACTIONS(2823), 1, anon_sym_new, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(3773), 1, + STATE(3899), 1, sym_expression, - STATE(5822), 1, + STATE(5872), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -185685,13 +190647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -185700,7 +190662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185721,7 +190683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [74931] = 26, + [72499] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -185732,35 +190694,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(2813), 1, + ACTIONS(2819), 1, anon_sym_not, - ACTIONS(2815), 1, + ACTIONS(2821), 1, anon_sym_lambda, - ACTIONS(2817), 1, + ACTIONS(2823), 1, anon_sym_new, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(3853), 1, + STATE(3861), 1, sym_expression, - STATE(5822), 1, + STATE(5872), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -185774,13 +190736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -185789,7 +190751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185810,7 +190772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75046] = 26, + [72614] = 26, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(71), 1, @@ -185821,35 +190783,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_None, ACTIONS(83), 1, sym_float, - ACTIONS(105), 1, - anon_sym_sizeof, ACTIONS(107), 1, + anon_sym_sizeof, + ACTIONS(109), 1, sym_string_start, - ACTIONS(809), 1, + ACTIONS(855), 1, sym_identifier, - ACTIONS(849), 1, + ACTIONS(895), 1, anon_sym_await, - ACTIONS(1313), 1, + ACTIONS(1347), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1353), 1, anon_sym_LBRACK, - ACTIONS(2813), 1, + ACTIONS(2819), 1, anon_sym_not, - ACTIONS(2815), 1, + ACTIONS(2821), 1, anon_sym_lambda, - ACTIONS(2817), 1, + ACTIONS(2823), 1, anon_sym_new, - ACTIONS(3110), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2091), 1, + STATE(2131), 1, sym_primary_expression, - STATE(2100), 1, + STATE(2140), 1, sym_string, - STATE(2166), 1, + STATE(2215), 1, sym_list_splat_pattern, - STATE(3485), 1, + STATE(3533), 1, sym_expression, - STATE(5822), 1, + STATE(5872), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -185863,13 +190825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(824), 5, + ACTIONS(870), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3492), 8, + STATE(3538), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -185878,7 +190840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2194), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185899,66 +190861,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75161] = 26, - ACTIONS(1243), 1, + [72729] = 26, + ACTIONS(1277), 1, sym_identifier, - ACTIONS(1245), 1, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1257), 1, - anon_sym_not, - ACTIONS(1263), 1, - anon_sym_lambda, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1273), 1, + ACTIONS(1307), 1, anon_sym_await, - ACTIONS(1275), 1, - anon_sym_new, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2108), 1, - sym_primary_expression, - STATE(2143), 1, + ACTIONS(3863), 1, + anon_sym_not, + ACTIONS(3865), 1, + anon_sym_lambda, + ACTIONS(3867), 1, + anon_sym_new, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2414), 1, + sym_primary_expression, + STATE(2435), 1, sym_list_splat_pattern, - STATE(4541), 1, + STATE(3260), 1, sym_expression, - STATE(5559), 1, + STATE(5583), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1249), 5, + ACTIONS(1283), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(3138), 8, + STATE(3185), 8, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -185967,7 +190929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda, sym_conditional_expression, sym_new_expression, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -185988,127 +190950,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75276] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3493), 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(3495), 46, - anon_sym_import, - anon_sym_cimport, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_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, - [75345] = 22, - ACTIONS(1245), 1, + [72844] = 22, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1334), 1, + ACTIONS(1368), 1, anon_sym_STAR, - ACTIONS(1342), 1, + ACTIONS(1376), 1, anon_sym_LT, - ACTIONS(1344), 1, + ACTIONS(1378), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3290), 1, + STATE(3299), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(847), 2, + ACTIONS(1361), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1269), 4, + ACTIONS(1363), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(811), 8, + ACTIONS(1576), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -186117,7 +191013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186138,61 +191034,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75451] = 22, - ACTIONS(1245), 1, + [72950] = 22, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1334), 1, + ACTIONS(1368), 1, anon_sym_STAR, - ACTIONS(1342), 1, + ACTIONS(1376), 1, anon_sym_LT, - ACTIONS(1344), 1, + ACTIONS(1378), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3290), 1, + STATE(3299), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1327), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1329), 2, + ACTIONS(859), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(1269), 4, + ACTIONS(893), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(1530), 8, + ACTIONS(857), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -186201,7 +191097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186222,61 +191118,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75557] = 22, - ACTIONS(1245), 1, + [73056] = 22, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1334), 1, + ACTIONS(1368), 1, anon_sym_STAR, - ACTIONS(1342), 1, + ACTIONS(1376), 1, anon_sym_LT, - ACTIONS(1344), 1, + ACTIONS(1378), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3290), 1, + STATE(3299), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 2, + ACTIONS(859), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(847), 2, - anon_sym_RPAREN, + ACTIONS(893), 2, anon_sym_COMMA, - ACTIONS(1269), 4, + anon_sym_RBRACK, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(811), 8, + ACTIONS(857), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -186285,7 +191181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186306,61 +191202,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75663] = 22, - ACTIONS(1245), 1, + [73162] = 22, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1334), 1, + ACTIONS(1368), 1, anon_sym_STAR, - ACTIONS(1342), 1, + ACTIONS(1376), 1, anon_sym_LT, - ACTIONS(1344), 1, + ACTIONS(1378), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3290), 1, + STATE(3299), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1327), 2, + ACTIONS(1361), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1329), 2, + ACTIONS(1363), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(1269), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(1530), 8, + ACTIONS(1576), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -186369,7 +191265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186390,58 +191286,58 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75769] = 21, - ACTIONS(1245), 1, + [73268] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1334), 1, + ACTIONS(1368), 1, anon_sym_STAR, - ACTIONS(1342), 1, + ACTIONS(1376), 1, anon_sym_LT, - ACTIONS(1344), 1, + ACTIONS(1378), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3290), 1, + STATE(3299), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 2, + ACTIONS(859), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(1269), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - ACTIONS(811), 8, + ACTIONS(857), 8, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -186450,7 +191346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_CARET, anon_sym_LT_LT, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -186471,18 +191367,18 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [75871] = 8, - ACTIONS(818), 1, + [73370] = 8, + ACTIONS(864), 1, anon_sym_COMMA, - ACTIONS(828), 1, + ACTIONS(874), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(833), 2, + ACTIONS(879), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3793), 7, + ACTIONS(3897), 7, anon_sym_class, anon_sym_api, anon_sym_ctypedef, @@ -186490,7 +191386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - ACTIONS(847), 13, + ACTIONS(893), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186504,7 +191400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(811), 16, + ACTIONS(857), 16, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -186521,7 +191417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(813), 16, + ACTIONS(859), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_in, @@ -186538,41 +191434,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - [75946] = 17, - ACTIONS(3797), 1, + [73445] = 17, + ACTIONS(3901), 1, anon_sym_DOT, - ACTIONS(3801), 1, + ACTIONS(3905), 1, anon_sym_COMMA, - ACTIONS(3808), 1, + ACTIONS(3912), 1, anon_sym_COLON_EQ, - ACTIONS(3810), 1, + ACTIONS(3914), 1, anon_sym_COLON, - ACTIONS(3812), 1, + ACTIONS(3916), 1, anon_sym_EQ, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(3818), 1, + ACTIONS(3922), 1, anon_sym_complex, - ACTIONS(3820), 1, + ACTIONS(3924), 1, anon_sym___stdcall, - STATE(3483), 1, + STATE(3521), 1, aux_sym_class_definition_repeat2, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3799), 2, + ACTIONS(3903), 2, sym__newline, anon_sym_LPAREN, - STATE(3744), 2, + STATE(3729), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3804), 3, + ACTIONS(3908), 3, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(3806), 12, + ACTIONS(3910), 12, anon_sym_GT_GT, anon_sym_AT, anon_sym_DASH, @@ -186585,7 +191481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 13, + ACTIONS(3899), 13, anon_sym_SEMI, anon_sym_as, anon_sym_if, @@ -186599,7 +191495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(3816), 13, + ACTIONS(3920), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186613,16 +191509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [76038] = 5, - ACTIONS(3828), 1, + [73537] = 5, + ACTIONS(3932), 1, anon_sym_DQUOTE_DQUOTE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3826), 2, + ACTIONS(3930), 2, anon_sym_new, anon_sym_delete, - ACTIONS(3824), 20, + ACTIONS(3928), 20, anon_sym_STAR, anon_sym_GT_GT, anon_sym_DASH_GT, @@ -186643,7 +191539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_BANG, anon_sym_xor, - ACTIONS(3822), 31, + ACTIONS(3926), 31, anon_sym_COMMA, anon_sym_TILDE, anon_sym_EQ_EQ, @@ -186675,69 +191571,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_not_eq, - [76105] = 24, - ACTIONS(1255), 1, + [73604] = 5, + ACTIONS(3940), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3938), 2, + anon_sym_new, + anon_sym_delete, + ACTIONS(3936), 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(3934), 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, + [73671] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3830), 1, + ACTIONS(3942), 1, sym_identifier, - ACTIONS(3832), 1, + ACTIONS(3944), 1, anon_sym_LPAREN, - ACTIONS(3834), 1, + ACTIONS(3946), 1, anon_sym_STAR, - ACTIONS(3838), 1, + ACTIONS(3950), 1, anon_sym_LBRACK, - ACTIONS(3840), 1, + ACTIONS(3952), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3170), 1, + STATE(3213), 1, sym_list_splat_pattern, - STATE(3294), 1, + STATE(3336), 1, sym_primary_expression, - STATE(4393), 1, + STATE(4496), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3174), 2, + STATE(3222), 2, sym_attribute, sym_subscript, - STATE(4410), 2, + STATE(4432), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2821), 4, + ACTIONS(2799), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(3836), 5, + ACTIONS(3948), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -186756,69 +191714,69 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76210] = 24, - ACTIONS(1255), 1, + [73776] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3830), 1, + ACTIONS(3942), 1, sym_identifier, - ACTIONS(3832), 1, + ACTIONS(3944), 1, anon_sym_LPAREN, - ACTIONS(3834), 1, + ACTIONS(3946), 1, anon_sym_STAR, - ACTIONS(3838), 1, + ACTIONS(3950), 1, anon_sym_LBRACK, - ACTIONS(3840), 1, + ACTIONS(3952), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3170), 1, + STATE(3213), 1, sym_list_splat_pattern, - STATE(3294), 1, + STATE(3336), 1, sym_primary_expression, - STATE(4393), 1, + STATE(4496), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3174), 2, + STATE(3222), 2, sym_attribute, sym_subscript, - STATE(4410), 2, + STATE(4432), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2773), 4, + ACTIONS(2811), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(3836), 5, + ACTIONS(3948), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -186837,86 +191795,89 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76315] = 5, - ACTIONS(3848), 1, - anon_sym_DQUOTE_DQUOTE, + [73881] = 10, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(874), 1, + anon_sym_COLON_EQ, + ACTIONS(3954), 1, + sym_identifier, + ACTIONS(3956), 1, + sym_string_start, + STATE(4960), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3846), 2, - anon_sym_new, - anon_sym_delete, - ACTIONS(3844), 20, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_DASH_GT, + ACTIONS(879), 2, + anon_sym_COLON, 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, + ACTIONS(857), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_BANG, - anon_sym_xor, - ACTIONS(3842), 31, - anon_sym_COMMA, - anon_sym_TILDE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(893), 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, - 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, - [76382] = 10, - ACTIONS(818), 1, + ACTIONS(859), 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, + [73956] = 10, + ACTIONS(864), 1, anon_sym_COMMA, - ACTIONS(828), 1, + ACTIONS(874), 1, anon_sym_COLON_EQ, - ACTIONS(3850), 1, + ACTIONS(3958), 1, anon_sym_for, - ACTIONS(3852), 1, + ACTIONS(3960), 1, anon_sym_with, - ACTIONS(3854), 1, + ACTIONS(3962), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(833), 2, + ACTIONS(879), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(847), 13, + ACTIONS(893), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186930,7 +191891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(813), 15, + ACTIONS(859), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -186946,7 +191907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 17, + ACTIONS(857), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -186964,24 +191925,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76457] = 10, - ACTIONS(818), 1, + [74031] = 10, + ACTIONS(864), 1, anon_sym_COMMA, - ACTIONS(828), 1, + ACTIONS(874), 1, anon_sym_COLON_EQ, - ACTIONS(3856), 1, + ACTIONS(3964), 1, anon_sym_for, - ACTIONS(3858), 1, + ACTIONS(3966), 1, anon_sym_with, - ACTIONS(3860), 1, + ACTIONS(3968), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(833), 2, + ACTIONS(879), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(847), 13, + ACTIONS(893), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186995,7 +191956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(813), 15, + ACTIONS(859), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -187011,7 +191972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 17, + ACTIONS(857), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -187029,103 +191990,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76532] = 24, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3862), 1, - sym_identifier, - ACTIONS(3866), 1, - anon_sym_LPAREN, - ACTIONS(3868), 1, - anon_sym_STAR, - ACTIONS(3872), 1, - anon_sym_LBRACK, - ACTIONS(3874), 1, - anon_sym_await, - STATE(2143), 1, - sym_string, - STATE(3225), 1, - sym_list_splat_pattern, - STATE(3248), 1, - sym_primary_expression, - STATE(3278), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3864), 2, - anon_sym_from, - anon_sym_in, - STATE(3227), 2, - sym_attribute, - sym_subscript, - STATE(3274), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1340), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(3870), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2443), 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, - [76635] = 10, - ACTIONS(818), 1, + [74106] = 11, + ACTIONS(864), 1, anon_sym_COMMA, - ACTIONS(828), 1, + ACTIONS(874), 1, anon_sym_COLON_EQ, - ACTIONS(3876), 1, + ACTIONS(876), 1, + anon_sym_COLON, + ACTIONS(879), 1, + anon_sym_EQ, + ACTIONS(3954), 1, sym_identifier, - ACTIONS(3878), 1, + ACTIONS(3956), 1, sym_string_start, - STATE(5191), 1, + STATE(4960), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(833), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(811), 10, + ACTIONS(857), 10, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -187136,7 +192019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(847), 13, + ACTIONS(893), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -187150,7 +192033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(813), 22, + ACTIONS(859), 22, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -187173,133 +192056,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_LT, anon_sym_GT, - [76710] = 11, - ACTIONS(818), 1, - anon_sym_COMMA, - ACTIONS(828), 1, - anon_sym_COLON_EQ, - ACTIONS(830), 1, - anon_sym_COLON, - ACTIONS(833), 1, - anon_sym_EQ, - ACTIONS(3876), 1, - sym_identifier, - ACTIONS(3878), 1, + [74183] = 24, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, sym_string_start, - STATE(5191), 1, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3970), 1, + sym_identifier, + ACTIONS(3974), 1, + anon_sym_LPAREN, + ACTIONS(3976), 1, + anon_sym_STAR, + ACTIONS(3980), 1, + anon_sym_LBRACK, + ACTIONS(3982), 1, + anon_sym_await, + STATE(2209), 1, sym_string, + STATE(3273), 1, + sym_list_splat_pattern, + STATE(3294), 1, + sym_pattern, + STATE(3322), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 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(847), 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(813), 22, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, + ACTIONS(3972), 2, + anon_sym_from, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, + STATE(3274), 2, + sym_attribute, + sym_subscript, + STATE(3321), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1374), 4, 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, - [76787] = 24, - ACTIONS(1255), 1, + anon_sym_TILDE, + ACTIONS(3978), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2508), 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, + [74286] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3862), 1, + ACTIONS(3970), 1, sym_identifier, - ACTIONS(3866), 1, + ACTIONS(3974), 1, anon_sym_LPAREN, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3872), 1, + ACTIONS(3980), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(3982), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3225), 1, + STATE(3273), 1, sym_list_splat_pattern, - STATE(3248), 1, - sym_primary_expression, - STATE(3278), 1, + STATE(3294), 1, sym_pattern, + STATE(3322), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3880), 2, + ACTIONS(3984), 2, anon_sym_from, anon_sym_in, - STATE(3227), 2, + STATE(3274), 2, sym_attribute, sym_subscript, - STATE(3274), 2, + STATE(3321), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3870), 5, + ACTIONS(3978), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -187318,66 +192214,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76890] = 24, - ACTIONS(1255), 1, + [74389] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2803), 1, - anon_sym_STAR, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(2811), 1, - anon_sym_await, - ACTIONS(3882), 1, + ACTIONS(3970), 1, sym_identifier, - ACTIONS(3884), 1, + ACTIONS(3974), 1, anon_sym_LPAREN, - ACTIONS(3886), 1, - anon_sym_RPAREN, - STATE(2143), 1, + ACTIONS(3976), 1, + anon_sym_STAR, + ACTIONS(3980), 1, + anon_sym_LBRACK, + ACTIONS(3982), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(3257), 1, + STATE(3273), 1, sym_list_splat_pattern, - STATE(3286), 1, + STATE(3322), 1, sym_primary_expression, - STATE(5318), 1, + STATE(4831), 1, sym_pattern, + STATE(5597), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3259), 2, + STATE(3274), 2, sym_attribute, sym_subscript, - STATE(5233), 2, + STATE(3321), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2805), 5, + ACTIONS(3978), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -187396,66 +192292,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [76992] = 24, - ACTIONS(1255), 1, + [74491] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3862), 1, + ACTIONS(3970), 1, sym_identifier, - ACTIONS(3866), 1, + ACTIONS(3974), 1, anon_sym_LPAREN, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3872), 1, + ACTIONS(3980), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(3982), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3225), 1, + STATE(3273), 1, sym_list_splat_pattern, - STATE(3248), 1, + STATE(3322), 1, sym_primary_expression, - STATE(4813), 1, + STATE(5156), 1, sym_pattern, - STATE(5784), 1, + STATE(5601), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3227), 2, + STATE(3274), 2, sym_attribute, sym_subscript, - STATE(3274), 2, + STATE(3321), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3870), 5, + ACTIONS(3978), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -187474,66 +192370,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77094] = 24, - ACTIONS(1255), 1, + [74593] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3862), 1, - sym_identifier, - ACTIONS(3866), 1, - anon_sym_LPAREN, - ACTIONS(3868), 1, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(3872), 1, + ACTIONS(2847), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(2851), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(3986), 1, + sym_identifier, + ACTIONS(3988), 1, + anon_sym_LPAREN, + ACTIONS(3990), 1, + anon_sym_RPAREN, + STATE(2209), 1, sym_string, - STATE(3225), 1, + STATE(3293), 1, sym_list_splat_pattern, - STATE(3248), 1, + STATE(3328), 1, sym_primary_expression, - STATE(4955), 1, + STATE(5335), 1, sym_pattern, - STATE(5786), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3227), 2, + STATE(3295), 2, sym_attribute, sym_subscript, - STATE(3274), 2, + STATE(5343), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3870), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -187552,66 +192448,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77196] = 24, - ACTIONS(1255), 1, + [74695] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2803), 1, + ACTIONS(2843), 1, anon_sym_STAR, - ACTIONS(2807), 1, + ACTIONS(2847), 1, anon_sym_LBRACK, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(2811), 1, + ACTIONS(2851), 1, anon_sym_await, - ACTIONS(3882), 1, + ACTIONS(3986), 1, sym_identifier, - ACTIONS(3884), 1, + ACTIONS(3988), 1, anon_sym_LPAREN, - ACTIONS(3888), 1, + ACTIONS(3992), 1, anon_sym_RPAREN, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3257), 1, + STATE(3293), 1, sym_list_splat_pattern, - STATE(3286), 1, + STATE(3328), 1, sym_primary_expression, - STATE(5318), 1, + STATE(5335), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3259), 2, + STATE(3295), 2, sym_attribute, sym_subscript, - STATE(5233), 2, + STATE(5343), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2805), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -187630,66 +192526,65 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77298] = 24, - ACTIONS(1255), 1, + [74797] = 23, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3862), 1, - sym_identifier, - ACTIONS(3866), 1, - anon_sym_LPAREN, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3872), 1, - anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(3994), 1, + sym_identifier, + ACTIONS(4002), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3225), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3248), 1, + STATE(3326), 1, sym_primary_expression, - STATE(5062), 1, - sym_pattern, - STATE(5773), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3227), 2, + ACTIONS(3998), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(4000), 2, + anon_sym_with, + anon_sym_nogil, + STATE(2232), 2, sym_attribute, sym_subscript, - STATE(3274), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3870), 5, + ACTIONS(3996), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -187708,67 +192603,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77400] = 23, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [74897] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_await, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(3890), 1, + ACTIONS(4004), 1, sym_identifier, - ACTIONS(3898), 1, - anon_sym_await, - STATE(2143), 1, + STATE(2140), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3284), 1, + STATE(2154), 1, sym_primary_expression, + STATE(2215), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3894), 2, + ACTIONS(3998), 2, sym__newline, anon_sym_COLON, - ACTIONS(3896), 2, + ACTIONS(4000), 2, anon_sym_with, anon_sym_nogil, - STATE(2183), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, + ACTIONS(81), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3892), 5, + ACTIONS(1351), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -187785,66 +192679,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77500] = 24, - ACTIONS(1255), 1, + [74995] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3888), 1, + ACTIONS(3990), 1, anon_sym_RBRACK, - ACTIONS(3900), 1, + ACTIONS(4006), 1, sym_identifier, - ACTIONS(3902), 1, + ACTIONS(4008), 1, anon_sym_LPAREN, - ACTIONS(3904), 1, + ACTIONS(4010), 1, anon_sym_STAR, - ACTIONS(3908), 1, + ACTIONS(4014), 1, anon_sym_LBRACK, - ACTIONS(3910), 1, + ACTIONS(4016), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3279), 1, + STATE(3300), 1, sym_list_splat_pattern, - STATE(3292), 1, + STATE(3334), 1, sym_primary_expression, - STATE(5451), 1, + STATE(5282), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3280), 2, + STATE(3301), 2, sym_attribute, sym_subscript, - STATE(5319), 2, + STATE(5297), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3906), 5, + ACTIONS(4012), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -187863,66 +192757,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77602] = 24, - ACTIONS(1255), 1, + [75097] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3862), 1, + ACTIONS(3970), 1, sym_identifier, - ACTIONS(3866), 1, + ACTIONS(3974), 1, anon_sym_LPAREN, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3872), 1, + ACTIONS(3980), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(3982), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3225), 1, + STATE(3273), 1, sym_list_splat_pattern, - STATE(3248), 1, + STATE(3322), 1, sym_primary_expression, - STATE(5056), 1, + STATE(5116), 1, sym_pattern, - STATE(5722), 1, + STATE(5822), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3227), 2, + STATE(3274), 2, sym_attribute, sym_subscript, - STATE(3274), 2, + STATE(3321), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3870), 5, + ACTIONS(3978), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -187941,66 +192835,68 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77704] = 22, - ACTIONS(67), 1, + [75199] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3970), 1, + sym_identifier, + ACTIONS(3974), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(3976), 1, + anon_sym_STAR, + ACTIONS(3980), 1, anon_sym_LBRACK, - ACTIONS(1325), 1, + ACTIONS(3982), 1, anon_sym_await, - ACTIONS(3110), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - sym_identifier, - STATE(2100), 1, + STATE(2209), 1, sym_string, - STATE(2110), 1, - sym_primary_expression, - STATE(2166), 1, + STATE(3273), 1, sym_list_splat_pattern, + STATE(3322), 1, + sym_primary_expression, + STATE(4779), 1, + sym_pattern, + STATE(5522), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3894), 2, - sym__newline, - anon_sym_COLON, - ACTIONS(3896), 2, - anon_sym_with, - anon_sym_nogil, - ACTIONS(81), 3, + STATE(3274), 2, + sym_attribute, + sym_subscript, + STATE(3321), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(65), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1317), 5, + ACTIONS(3978), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2194), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -188017,66 +192913,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77802] = 24, - ACTIONS(1255), 1, + [75301] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3886), 1, + ACTIONS(3992), 1, anon_sym_RBRACK, - ACTIONS(3900), 1, + ACTIONS(4006), 1, sym_identifier, - ACTIONS(3902), 1, + ACTIONS(4008), 1, anon_sym_LPAREN, - ACTIONS(3904), 1, + ACTIONS(4010), 1, anon_sym_STAR, - ACTIONS(3908), 1, + ACTIONS(4014), 1, anon_sym_LBRACK, - ACTIONS(3910), 1, + ACTIONS(4016), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3279), 1, + STATE(3300), 1, sym_list_splat_pattern, - STATE(3292), 1, + STATE(3334), 1, sym_primary_expression, - STATE(5451), 1, + STATE(5282), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3280), 2, + STATE(3301), 2, sym_attribute, sym_subscript, - STATE(5319), 2, + STATE(5297), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3906), 5, + ACTIONS(4012), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188095,66 +192991,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [77904] = 24, - ACTIONS(1255), 1, + [75403] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3862), 1, + ACTIONS(3970), 1, sym_identifier, - ACTIONS(3866), 1, + ACTIONS(3974), 1, anon_sym_LPAREN, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3872), 1, + ACTIONS(3980), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(3982), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3225), 1, + STATE(3273), 1, sym_list_splat_pattern, - STATE(3248), 1, + STATE(3322), 1, sym_primary_expression, - STATE(5099), 1, + STATE(5110), 1, sym_pattern, - STATE(5541), 1, + STATE(5764), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3227), 2, + STATE(3274), 2, sym_attribute, sym_subscript, - STATE(3274), 2, + STATE(3321), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3870), 5, + ACTIONS(3978), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188173,66 +193069,66 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78006] = 24, - ACTIONS(1255), 1, + [75505] = 24, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3862), 1, + ACTIONS(3970), 1, sym_identifier, - ACTIONS(3866), 1, + ACTIONS(3974), 1, anon_sym_LPAREN, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3872), 1, + ACTIONS(3980), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(3982), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3225), 1, + STATE(3273), 1, sym_list_splat_pattern, - STATE(3248), 1, + STATE(3322), 1, sym_primary_expression, - STATE(5103), 1, + STATE(5150), 1, sym_pattern, - STATE(5553), 1, + STATE(5589), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3227), 2, + STATE(3274), 2, sym_attribute, sym_subscript, - STATE(3274), 2, + STATE(3321), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3870), 5, + ACTIONS(3978), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188251,64 +193147,127 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78108] = 23, - ACTIONS(1255), 1, + [75607] = 10, + ACTIONS(3905), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(3916), 1, + anon_sym_EQ, + ACTIONS(4018), 1, + anon_sym_COLON, + ACTIONS(4021), 1, + anon_sym_LBRACK, + STATE(4638), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3920), 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(3910), 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(3899), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [75680] = 23, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2843), 1, + anon_sym_STAR, + ACTIONS(2847), 1, + anon_sym_LBRACK, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3049), 1, + ACTIONS(2851), 1, + anon_sym_await, + ACTIONS(3986), 1, sym_identifier, - ACTIONS(3051), 1, + ACTIONS(3988), 1, anon_sym_LPAREN, - ACTIONS(3057), 1, - anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_await, - ACTIONS(3914), 1, - anon_sym_STAR, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2713), 1, + STATE(3293), 1, sym_list_splat_pattern, - STATE(3278), 1, - sym_pattern, - STATE(3287), 1, + STATE(3328), 1, sym_primary_expression, + STATE(5335), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2714), 2, + STATE(3295), 2, sym_attribute, sym_subscript, - STATE(3274), 2, + STATE(5343), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3055), 5, + ACTIONS(2845), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188327,64 +193286,64 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78207] = 23, - ACTIONS(1255), 1, + [75779] = 23, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3900), 1, + ACTIONS(4006), 1, sym_identifier, - ACTIONS(3902), 1, + ACTIONS(4008), 1, anon_sym_LPAREN, - ACTIONS(3904), 1, + ACTIONS(4010), 1, anon_sym_STAR, - ACTIONS(3908), 1, + ACTIONS(4014), 1, anon_sym_LBRACK, - ACTIONS(3910), 1, + ACTIONS(4016), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3279), 1, + STATE(3300), 1, sym_list_splat_pattern, - STATE(3292), 1, + STATE(3334), 1, sym_primary_expression, - STATE(5451), 1, + STATE(5282), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3280), 2, + STATE(3301), 2, sym_attribute, sym_subscript, - STATE(5319), 2, + STATE(5297), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3906), 5, + ACTIONS(4012), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188403,64 +193362,64 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78306] = 23, - ACTIONS(1255), 1, + [75878] = 23, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3862), 1, + ACTIONS(3970), 1, sym_identifier, - ACTIONS(3866), 1, + ACTIONS(3974), 1, anon_sym_LPAREN, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3872), 1, + ACTIONS(3980), 1, anon_sym_LBRACK, - ACTIONS(3874), 1, + ACTIONS(3982), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(3225), 1, + STATE(3273), 1, sym_list_splat_pattern, - STATE(3248), 1, - sym_primary_expression, - STATE(3278), 1, + STATE(3294), 1, sym_pattern, + STATE(3322), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3227), 2, + STATE(3274), 2, sym_attribute, sym_subscript, - STATE(3274), 2, + STATE(3321), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3870), 5, + ACTIONS(3978), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188479,64 +193438,64 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78405] = 23, - ACTIONS(1255), 1, + [75977] = 23, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3830), 1, + ACTIONS(3146), 1, sym_identifier, - ACTIONS(3832), 1, + ACTIONS(3148), 1, anon_sym_LPAREN, - ACTIONS(3834), 1, - anon_sym_STAR, - ACTIONS(3838), 1, + ACTIONS(3154), 1, anon_sym_LBRACK, - ACTIONS(3840), 1, + ACTIONS(3156), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(4023), 1, + anon_sym_STAR, + STATE(2209), 1, sym_string, - STATE(3170), 1, + STATE(2809), 1, sym_list_splat_pattern, STATE(3294), 1, - sym_primary_expression, - STATE(4393), 1, sym_pattern, + STATE(3330), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3174), 2, + STATE(2811), 2, sym_attribute, sym_subscript, - STATE(4410), 2, + STATE(3321), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3836), 5, + ACTIONS(3152), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188555,64 +193514,64 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78504] = 23, - ACTIONS(1255), 1, + [76076] = 23, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2771), 1, + ACTIONS(2797), 1, sym_identifier, - ACTIONS(2775), 1, + ACTIONS(2801), 1, anon_sym_LPAREN, - ACTIONS(2781), 1, + ACTIONS(2807), 1, anon_sym_LBRACK, - ACTIONS(2783), 1, - anon_sym_await, ACTIONS(2809), 1, + anon_sym_await, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3916), 1, + ACTIONS(4025), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2601), 1, + STATE(2604), 1, sym_list_splat_pattern, - STATE(3255), 1, + STATE(3312), 1, sym_pattern, - STATE(3268), 1, + STATE(3337), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2618), 2, + STATE(2605), 2, sym_attribute, sym_subscript, - STATE(3249), 2, + STATE(3329), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2779), 5, + ACTIONS(2805), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188631,64 +193590,64 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78603] = 23, - ACTIONS(1255), 1, + [76175] = 23, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2803), 1, - anon_sym_STAR, - ACTIONS(2807), 1, - anon_sym_LBRACK, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(2811), 1, - anon_sym_await, - ACTIONS(3882), 1, + ACTIONS(3942), 1, sym_identifier, - ACTIONS(3884), 1, + ACTIONS(3944), 1, anon_sym_LPAREN, - STATE(2143), 1, + ACTIONS(3946), 1, + anon_sym_STAR, + ACTIONS(3950), 1, + anon_sym_LBRACK, + ACTIONS(3952), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(3257), 1, + STATE(3213), 1, sym_list_splat_pattern, - STATE(3286), 1, + STATE(3336), 1, sym_primary_expression, - STATE(5318), 1, + STATE(4496), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3259), 2, + STATE(3222), 2, sym_attribute, sym_subscript, - STATE(5233), 2, + STATE(4432), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2805), 5, + ACTIONS(3948), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188707,184 +193666,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78702] = 10, - ACTIONS(3801), 1, - anon_sym_COMMA, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, - ACTIONS(3812), 1, - anon_sym_EQ, - ACTIONS(3918), 1, - anon_sym_COLON, - ACTIONS(3921), 1, - anon_sym_LBRACK, - STATE(4705), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3816), 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(3806), 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(3795), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [78775] = 7, - ACTIONS(3801), 1, - anon_sym_COMMA, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3812), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3816), 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(3806), 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(3795), 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, - [78841] = 22, - ACTIONS(1245), 1, + [76274] = 22, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3923), 1, + ACTIONS(4027), 1, sym_identifier, - ACTIONS(3929), 1, + ACTIONS(4033), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3289), 1, + STATE(3322), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3925), 2, - anon_sym_RPAREN, + ACTIONS(4029), 2, anon_sym_COMMA, - STATE(2726), 2, + anon_sym_COLON, + STATE(3237), 2, sym_attribute, sym_subscript, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3927), 5, + ACTIONS(4031), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188903,62 +193740,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [78937] = 22, - ACTIONS(1245), 1, + [76370] = 22, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3923), 1, + ACTIONS(4035), 1, sym_identifier, - ACTIONS(3929), 1, + ACTIONS(4041), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3289), 1, + STATE(3332), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3931), 2, + ACTIONS(4037), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2726), 2, + STATE(2818), 2, sym_attribute, sym_subscript, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3927), 5, + ACTIONS(4039), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -188977,19 +193814,19 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79033] = 8, - ACTIONS(818), 1, + [76466] = 8, + ACTIONS(864), 1, anon_sym_COMMA, - ACTIONS(828), 1, + ACTIONS(874), 1, anon_sym_COLON_EQ, - ACTIONS(830), 1, + ACTIONS(876), 1, anon_sym_COLON, - ACTIONS(833), 1, + ACTIONS(879), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(847), 13, + ACTIONS(893), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189003,7 +193840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(813), 15, + ACTIONS(859), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -189019,7 +193856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 17, + ACTIONS(857), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -189037,62 +193874,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79101] = 22, - ACTIONS(1245), 1, + [76534] = 22, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3933), 1, + ACTIONS(4043), 1, sym_identifier, - ACTIONS(3939), 1, + ACTIONS(4047), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3248), 1, + STATE(3328), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3935), 2, + ACTIONS(4029), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - STATE(3200), 2, + STATE(3219), 2, sym_attribute, sym_subscript, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3937), 5, + ACTIONS(4045), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -189111,62 +193948,62 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79197] = 22, - ACTIONS(1245), 1, + [76630] = 22, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3941), 1, + ACTIONS(4035), 1, sym_identifier, - ACTIONS(3945), 1, + ACTIONS(4041), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3286), 1, + STATE(3332), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3935), 2, + ACTIONS(4049), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3176), 2, + STATE(2818), 2, sym_attribute, sym_subscript, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3943), 5, + ACTIONS(4039), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -189185,18 +194022,18 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [79293] = 7, - ACTIONS(818), 1, + [76726] = 7, + ACTIONS(3905), 1, anon_sym_COMMA, - ACTIONS(828), 1, + ACTIONS(3912), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(833), 2, + ACTIONS(3916), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(847), 13, + ACTIONS(3920), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189210,7 +194047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(813), 15, + ACTIONS(3910), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -189226,7 +194063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 17, + ACTIONS(3899), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -189244,51 +194081,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79359] = 7, - ACTIONS(3959), 1, - anon_sym_PIPE, + [76792] = 7, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(874), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3949), 2, - anon_sym_DOT, + ACTIONS(879), 2, anon_sym_COLON, - ACTIONS(3951), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3957), 3, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3954), 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(3947), 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, + ACTIONS(893), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189302,15 +194106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [79424] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3963), 16, + ACTIONS(859), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -189323,15 +194122,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 32, + ACTIONS(857), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -189343,6 +194140,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, + [76858] = 6, + ACTIONS(4053), 1, + anon_sym_COMMA, + ACTIONS(4060), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4058), 14, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189356,15 +194163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [79481] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3967), 16, + ACTIONS(4056), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -189377,15 +194179,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3965), 32, + ACTIONS(4051), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -189397,32 +194197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [79538] = 5, + [76921] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1332), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1530), 3, + ACTIONS(4064), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1329), 13, + ACTIONS(4070), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4067), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -189436,7 +194223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1327), 29, + ACTIONS(4062), 29, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -189466,16 +194253,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [79599] = 6, - ACTIONS(3812), 1, + [76982] = 20, + ACTIONS(2477), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, + anon_sym_LBRACK, + ACTIONS(2487), 1, + anon_sym_LBRACE, + ACTIONS(2491), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2493), 1, + anon_sym_None, + ACTIONS(2495), 1, + sym_float, + ACTIONS(2497), 1, + anon_sym_await, + ACTIONS(2499), 1, + anon_sym_sizeof, + ACTIONS(2501), 1, + sym_string_start, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(3093), 1, + anon_sym_STAR, + ACTIONS(4072), 1, + anon_sym_not, + STATE(2226), 1, + sym_string, + STATE(2253), 1, + sym_primary_expression, + STATE(2500), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2475), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2485), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2481), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2445), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [77073] = 6, + ACTIONS(4060), 1, anon_sym_EQ, - ACTIONS(3971), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3816), 14, + ACTIONS(4053), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(4058), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189489,7 +194347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3974), 15, + ACTIONS(4056), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -189505,7 +194363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 17, + ACTIONS(4051), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -189523,11 +194381,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79662] = 3, + [77136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3978), 16, + ACTIONS(4076), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -189544,7 +194402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 32, + ACTIONS(4074), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -189577,47 +194435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [79719] = 3, + [77193] = 6, + ACTIONS(3905), 1, + anon_sym_COMMA, + ACTIONS(3916), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 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(3980), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3920), 14, 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, @@ -189631,15 +194458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [79776] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3982), 16, + ACTIONS(3910), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -189652,15 +194474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 32, + ACTIONS(3899), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -189672,85 +194492,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [79833] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3951), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3957), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3954), 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(3947), 29, - sym__newline, - anon_sym_SEMI, + [77256] = 6, + ACTIONS(4080), 1, 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, - [79894] = 6, - ACTIONS(3812), 1, + ACTIONS(4087), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 2, - anon_sym_COMMA, + ACTIONS(4085), 14, anon_sym_COLON, - ACTIONS(3816), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189764,7 +194515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3974), 15, + ACTIONS(4083), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -189780,7 +194531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 17, + ACTIONS(4078), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -189798,33 +194549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79957] = 6, - ACTIONS(3812), 1, - anon_sym_EQ, + [77319] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3801), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3816), 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(3806), 15, + ACTIONS(4076), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -189837,13 +194570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 17, + ACTIONS(4074), 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, @@ -189855,16 +194590,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80020] = 6, - ACTIONS(3991), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3986), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3993), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189878,45 +194603,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3989), 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(3984), 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, - [80083] = 3, + [77376] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 16, + ACTIONS(4091), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -189933,7 +194624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 32, + ACTIONS(4089), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -189966,16 +194657,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [80140] = 6, - ACTIONS(4002), 1, + [77433] = 20, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, + anon_sym_LBRACE, + ACTIONS(1299), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1305), 1, + sym_float, + ACTIONS(1311), 1, + anon_sym_sizeof, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, + anon_sym_STAR, + ACTIONS(4072), 1, + anon_sym_not, + STATE(2209), 1, + sym_string, + STATE(2255), 1, + sym_primary_expression, + STATE(2435), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1293), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1303), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1370), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2508), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [77524] = 6, + ACTIONS(4087), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3997), 2, + ACTIONS(4080), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4004), 13, + ACTIONS(4085), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189989,7 +194751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(4000), 15, + ACTIONS(4083), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -190005,7 +194767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3995), 17, + ACTIONS(4078), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -190023,57 +194785,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80203] = 20, - ACTIONS(1360), 1, + [77587] = 20, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, + ACTIONS(1398), 1, anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(1504), 1, + ACTIONS(1558), 1, anon_sym_LBRACK, - ACTIONS(2405), 1, + ACTIONS(2503), 1, anon_sym_LPAREN, - ACTIONS(2415), 1, + ACTIONS(2513), 1, anon_sym_await, - ACTIONS(3041), 1, + ACTIONS(3067), 1, anon_sym_STAR, - ACTIONS(4006), 1, + ACTIONS(4072), 1, anon_sym_not, - STATE(2202), 1, + STATE(2242), 1, sym_string, - STATE(2263), 1, + STATE(2339), 1, sym_primary_expression, - STATE(2604), 1, + STATE(2540), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1374), 4, + ACTIONS(1408), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2409), 5, + ACTIONS(2507), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2556), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190094,128 +194856,111 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80294] = 20, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, - anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, - anon_sym_None, - ACTIONS(1432), 1, - sym_float, - ACTIONS(1438), 1, - anon_sym_sizeof, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(2545), 1, - anon_sym_await, - ACTIONS(4006), 1, - anon_sym_not, - STATE(2410), 1, - sym_string, - STATE(2527), 1, - sym_primary_expression, - STATE(2703), 1, - sym_list_splat_pattern, + [77678] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 4, + ACTIONS(4091), 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(1430), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2541), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2710), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [80385] = 20, - ACTIONS(2511), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4089), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2517), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(2521), 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, + [77735] = 20, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2531), 1, - anon_sym_await, - ACTIONS(2533), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(3141), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_await, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(4006), 1, + ACTIONS(4072), 1, anon_sym_not, - STATE(2292), 1, + STATE(2140), 1, sym_string, - STATE(2490), 1, + STATE(2153), 1, sym_primary_expression, - STATE(2642), 1, + STATE(2215), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2519), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2515), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1351), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2647), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190236,57 +194981,57 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80476] = 20, - ACTIONS(67), 1, + [77826] = 20, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1456), 1, anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(1313), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2571), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1325), 1, + ACTIONS(2579), 1, anon_sym_await, - ACTIONS(3110), 1, - anon_sym_STAR, - ACTIONS(4006), 1, + ACTIONS(4072), 1, anon_sym_not, - STATE(2100), 1, + STATE(2403), 1, sym_string, - STATE(2101), 1, + STATE(2538), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2760), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1464), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1317), 5, + ACTIONS(2575), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2194), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190307,73 +195052,16 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80567] = 6, - ACTIONS(3801), 1, - anon_sym_COMMA, - ACTIONS(3812), 1, + [77917] = 6, + ACTIONS(3916), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3816), 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(3806), 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(3795), 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, - [80630] = 6, - ACTIONS(3986), 1, + ACTIONS(3905), 2, anon_sym_COMMA, - ACTIONS(3991), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3993), 14, anon_sym_COLON, + ACTIONS(3920), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190387,7 +195075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3989), 15, + ACTIONS(3910), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -190403,7 +195091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 17, + ACTIONS(3899), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -190421,57 +195109,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80693] = 20, - ACTIONS(2483), 1, + [77980] = 20, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2503), 1, + ACTIONS(2565), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2561), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(3033), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(4006), 1, + ACTIONS(4072), 1, anon_sym_not, - STATE(2229), 1, + STATE(2283), 1, sym_string, - STATE(2249), 1, + STATE(2320), 1, sym_primary_expression, - STATE(2546), 1, + STATE(2610), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, + ACTIONS(2543), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2487), 5, + ACTIONS(2549), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190492,57 +195180,57 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80784] = 20, - ACTIONS(1245), 1, + [78071] = 20, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2537), 1, + anon_sym_await, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(1603), 1, - anon_sym_await, - ACTIONS(2725), 1, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3233), 1, anon_sym_STAR, - ACTIONS(4006), 1, + ACTIONS(4072), 1, anon_sym_not, - STATE(2143), 1, + STATE(2324), 1, sym_string, - STATE(2230), 1, + STATE(2498), 1, sym_primary_expression, - STATE(2349), 1, + STATE(2736), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1269), 4, + ACTIONS(2515), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1336), 5, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2521), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190563,128 +195251,167 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [80875] = 20, - ACTIONS(1975), 1, + [78162] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1366), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1576), 3, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(1981), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, - anon_sym_LBRACE, - ACTIONS(1989), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, - anon_sym_None, - ACTIONS(1993), 1, - sym_float, - ACTIONS(1995), 1, - anon_sym_await, - ACTIONS(1997), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, - sym_string_start, - ACTIONS(2697), 1, + ACTIONS(1363), 13, anon_sym_STAR, - ACTIONS(2705), 1, - anon_sym_LT, - ACTIONS(4006), 1, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1361), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_not, - STATE(2153), 1, - sym_string, - STATE(2216), 1, - sym_primary_expression, - STATE(2421), 1, - sym_list_splat_pattern, + 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, + [78223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1983), 4, + ACTIONS(4095), 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(1979), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2347), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [80966] = 20, - ACTIONS(2439), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4093), 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, + [78280] = 20, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(2457), 1, anon_sym_await, - ACTIONS(2461), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(3076), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(4006), 1, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(4072), 1, anon_sym_not, - STATE(2193), 1, + STATE(2231), 1, sym_string, - STATE(2240), 1, + STATE(2245), 1, sym_primary_expression, - STATE(2449), 1, + STATE(2465), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 4, + ACTIONS(2435), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2443), 5, + ACTIONS(2441), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2328), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190705,15 +195432,130 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81057] = 6, - ACTIONS(3997), 1, + [78371] = 7, + ACTIONS(4099), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4064), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4097), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(4070), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4067), 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(4062), 28, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(4002), 1, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [78436] = 6, + ACTIONS(3916), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4103), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3920), 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(4106), 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(4101), 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, + [78499] = 6, + ACTIONS(3916), 1, anon_sym_EQ, + ACTIONS(4103), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4004), 14, + ACTIONS(3920), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -190728,10 +195570,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(4000), 15, + ACTIONS(4106), 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(4101), 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, + [78562] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -190744,13 +195625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(3995), 17, + ACTIONS(4108), 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, @@ -190762,11 +195645,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81120] = 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, + [78619] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 16, + ACTIONS(4114), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -190783,7 +195679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(4008), 32, + ACTIONS(4112), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -190816,59 +195712,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [81177] = 19, - ACTIONS(1245), 1, + [78676] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1603), 1, - anon_sym_await, - ACTIONS(2725), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2143), 1, + ACTIONS(4116), 1, + sym_identifier, + ACTIONS(4120), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2201), 1, - sym_primary_expression, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3322), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, + STATE(2300), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1269), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1336), 5, + ACTIONS(4118), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -190885,55 +195783,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81265] = 19, - ACTIONS(67), 1, + [78768] = 19, + ACTIONS(2517), 1, + anon_sym_LPAREN, + ACTIONS(2523), 1, + anon_sym_LBRACK, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2537), 1, + anon_sym_await, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1325), 1, - anon_sym_await, - ACTIONS(3110), 1, + ACTIONS(2727), 1, + anon_sym_LT, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2100), 1, + STATE(2324), 1, sym_string, - STATE(2102), 1, + STATE(2533), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2736), 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(2515), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1317), 5, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2521), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2194), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -190954,59 +195852,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81353] = 21, - ACTIONS(1245), 1, + [78856] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(4012), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4016), 1, + ACTIONS(4126), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3248), 1, + STATE(3322), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2255), 2, + STATE(3264), 2, sym_attribute, sym_subscript, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4014), 5, + ACTIONS(4124), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -191025,55 +195923,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81445] = 19, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, + [78948] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2503), 1, - anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(3033), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_await, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2229), 1, + STATE(2140), 1, sym_string, - STATE(2281), 1, + STATE(2154), 1, sym_primary_expression, - STATE(2546), 1, + STATE(2215), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2491), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2487), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1351), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191094,55 +195992,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81533] = 19, - ACTIONS(67), 1, + [79036] = 19, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, + anon_sym_LBRACK, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2565), 1, + anon_sym_await, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1325), 1, - anon_sym_await, - ACTIONS(3110), 1, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2100), 1, + STATE(2283), 1, sym_string, - STATE(2113), 1, + STATE(2318), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2610), 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(2543), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1317), 5, + ACTIONS(2553), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2549), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2194), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191163,55 +196061,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81621] = 19, - ACTIONS(2483), 1, + [79124] = 19, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2503), 1, + ACTIONS(2565), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2561), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(3033), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2229), 1, + STATE(2283), 1, sym_string, - STATE(2247), 1, + STATE(2319), 1, sym_primary_expression, - STATE(2546), 1, + STATE(2610), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, + ACTIONS(2543), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2487), 5, + ACTIONS(2549), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191232,55 +196130,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81709] = 19, - ACTIONS(67), 1, + [79212] = 19, + ACTIONS(2477), 1, + anon_sym_LPAREN, + ACTIONS(2483), 1, + anon_sym_LBRACK, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2497), 1, + anon_sym_await, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1325), 1, - anon_sym_await, - ACTIONS(3110), 1, + ACTIONS(2631), 1, + anon_sym_LT, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2100), 1, + STATE(2226), 1, sym_string, - STATE(2106), 1, + STATE(2253), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2500), 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(2475), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1317), 5, + ACTIONS(2485), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2481), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2194), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191301,55 +196199,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81797] = 19, - ACTIONS(67), 1, + [79300] = 19, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, + anon_sym_LBRACK, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2565), 1, + anon_sym_await, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1325), 1, - anon_sym_await, - ACTIONS(3110), 1, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2100), 1, + STATE(2283), 1, sym_string, - STATE(2112), 1, + STATE(2329), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2610), 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(2543), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1317), 5, + ACTIONS(2553), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2549), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2194), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191370,55 +196268,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81885] = 19, - ACTIONS(67), 1, + [79388] = 19, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, + anon_sym_LBRACK, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(2565), 1, + anon_sym_await, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1325), 1, - anon_sym_await, - ACTIONS(3110), 1, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2100), 1, + STATE(2283), 1, sym_string, - STATE(2110), 1, + STATE(2331), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2610), 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(2543), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1317), 5, + ACTIONS(2553), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2549), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2194), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191439,55 +196337,132 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [81973] = 19, - ACTIONS(1414), 1, + [79476] = 27, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4128), 1, + sym_identifier, + ACTIONS(4132), 1, + anon_sym_COLON, + ACTIONS(4134), 1, + anon_sym_api, + ACTIONS(4136), 1, + anon_sym_extern, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4144), 1, + anon_sym_enum, + ACTIONS(4146), 1, + anon_sym_cppclass, + ACTIONS(4148), 1, + anon_sym_fused, + STATE(3253), 1, + sym__signedness, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, + sym__longness, + STATE(3718), 1, + sym_operator_name, + STATE(3969), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(379), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4140), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4142), 2, + anon_sym_struct, + anon_sym_union, + STATE(2541), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(1486), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + STATE(1491), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1472), 4, + sym_cdef_definition_block, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + ACTIONS(4130), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [79580] = 19, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(2565), 1, + anon_sym_await, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(2545), 1, - anon_sym_await, - STATE(2410), 1, + STATE(2283), 1, sym_string, - STATE(2606), 1, + STATE(2332), 1, sym_primary_expression, - STATE(2703), 1, + STATE(2610), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1430), 4, + ACTIONS(2543), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2541), 5, + ACTIONS(2553), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2549), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2710), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191508,55 +196483,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82061] = 19, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, + [79668] = 19, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, + ACTIONS(1398), 1, anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(2537), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, anon_sym_LPAREN, - ACTIONS(2545), 1, + ACTIONS(2513), 1, anon_sym_await, - STATE(2410), 1, + ACTIONS(3067), 1, + anon_sym_STAR, + STATE(2242), 1, sym_string, - STATE(2611), 1, + STATE(2314), 1, sym_primary_expression, - STATE(2703), 1, + STATE(2540), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1430), 4, + ACTIONS(1408), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2541), 5, + ACTIONS(2507), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2710), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191577,55 +196552,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82149] = 19, - ACTIONS(2511), 1, + [79756] = 19, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2531), 1, + ACTIONS(2565), 1, anon_sym_await, - ACTIONS(2533), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(3141), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2292), 1, + STATE(2283), 1, sym_string, - STATE(2490), 1, + STATE(2334), 1, sym_primary_expression, - STATE(2642), 1, + STATE(2610), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, + ACTIONS(2543), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2515), 5, + ACTIONS(2549), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2647), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191646,55 +196621,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82237] = 19, - ACTIONS(1414), 1, + [79844] = 19, + ACTIONS(2545), 1, + anon_sym_LPAREN, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(2565), 1, + anon_sym_await, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2601), 1, + anon_sym_LT, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(2545), 1, - anon_sym_await, - STATE(2410), 1, + STATE(2283), 1, sym_string, - STATE(2587), 1, + STATE(2335), 1, sym_primary_expression, - STATE(2703), 1, + STATE(2610), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1430), 4, + ACTIONS(2543), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2541), 5, + ACTIONS(2553), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2549), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2710), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191715,59 +196690,138 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82325] = 19, - ACTIONS(1414), 1, + [79932] = 27, + ACTIONS(127), 1, + anon_sym_class, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4134), 1, + anon_sym_api, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4150), 1, + sym_identifier, + ACTIONS(4154), 1, + anon_sym_COLON, + ACTIONS(4156), 1, + anon_sym_extern, + ACTIONS(4160), 1, + anon_sym_enum, + ACTIONS(4162), 1, + anon_sym_cppclass, + ACTIONS(4164), 1, + anon_sym_fused, + STATE(3253), 1, + sym__signedness, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, + sym__longness, + STATE(3718), 1, + sym_operator_name, + STATE(3956), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(379), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4140), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4158), 2, + anon_sym_struct, + anon_sym_union, + STATE(2650), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(733), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(734), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(105), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1543), 4, + sym_cdef_definition_block, + sym_cvar_def, + sym_cdef_type_declaration, + sym_extern_block, + ACTIONS(4152), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [80036] = 21, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(2545), 1, + ACTIONS(3994), 1, + sym_identifier, + ACTIONS(4002), 1, anon_sym_await, - STATE(2410), 1, + STATE(2209), 1, sym_string, - STATE(2589), 1, - sym_primary_expression, - STATE(2703), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3326), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 4, + STATE(2232), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1430), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2541), 5, + ACTIONS(3996), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2710), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -191784,55 +196838,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82413] = 19, - ACTIONS(1414), 1, + [80128] = 19, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(2545), 1, + ACTIONS(1378), 1, anon_sym_await, - STATE(2410), 1, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3976), 1, + anon_sym_STAR, + STATE(2209), 1, sym_string, - STATE(2591), 1, - sym_primary_expression, - STATE(2703), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3298), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1430), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2541), 5, + ACTIONS(1374), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2710), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -191853,59 +196907,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82501] = 19, - ACTIONS(1414), 1, + [80216] = 21, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(2545), 1, + ACTIONS(4166), 1, + sym_identifier, + ACTIONS(4170), 1, anon_sym_await, - STATE(2410), 1, + STATE(2209), 1, sym_string, - STATE(2596), 1, - sym_primary_expression, - STATE(2703), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3333), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 4, + STATE(2703), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1430), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2541), 5, + ACTIONS(4168), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2710), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -191922,59 +196978,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82589] = 19, - ACTIONS(1414), 1, + [80308] = 21, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(2545), 1, + ACTIONS(4002), 1, anon_sym_await, - STATE(2410), 1, + ACTIONS(4172), 1, + sym_identifier, + STATE(2209), 1, sym_string, - STATE(2506), 1, - sym_primary_expression, - STATE(2703), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3326), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 4, + STATE(2232), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1430), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2541), 5, + ACTIONS(3996), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2710), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -191991,59 +197049,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82677] = 19, - ACTIONS(2483), 1, + [80400] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2503), 1, - anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2561), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3033), 1, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2229), 1, + ACTIONS(4174), 1, + sym_identifier, + ACTIONS(4178), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2277), 1, - sym_primary_expression, - STATE(2546), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3328), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, + STATE(3229), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2487), 5, + ACTIONS(4176), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -192060,61 +197120,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82765] = 21, - ACTIONS(1245), 1, + [80492] = 19, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2497), 1, + anon_sym_await, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3093), 1, anon_sym_STAR, - ACTIONS(4016), 1, - anon_sym_await, - ACTIONS(4018), 1, - sym_identifier, - STATE(2143), 1, + STATE(2226), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3248), 1, + STATE(2243), 1, sym_primary_expression, + STATE(2500), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2255), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, + ACTIONS(2475), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4014), 5, + ACTIONS(2481), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -192131,55 +197189,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82857] = 19, - ACTIONS(1245), 1, + [80580] = 19, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2497), 1, + anon_sym_await, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(1603), 1, - anon_sym_await, - ACTIONS(2725), 1, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2226), 1, sym_string, - STATE(2203), 1, + STATE(2244), 1, sym_primary_expression, - STATE(2349), 1, + STATE(2500), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1269), 4, + ACTIONS(2475), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1336), 5, + ACTIONS(2485), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2481), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192200,132 +197258,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [82945] = 27, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4020), 1, - sym_identifier, - ACTIONS(4024), 1, - anon_sym_COLON, - ACTIONS(4026), 1, - anon_sym_api, - ACTIONS(4028), 1, - anon_sym_extern, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4036), 1, - anon_sym_enum, - ACTIONS(4038), 1, - anon_sym_cppclass, - ACTIONS(4040), 1, - anon_sym_fused, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3929), 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(4032), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4034), 2, - anon_sym_struct, - anon_sym_union, - STATE(2514), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(365), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(1768), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(1772), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(103), 4, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1770), 4, - sym_cdef_definition_block, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - ACTIONS(4022), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [83049] = 19, - ACTIONS(2483), 1, + [80668] = 19, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(2503), 1, + ACTIONS(2457), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(3033), 1, + ACTIONS(2757), 1, anon_sym_STAR, - STATE(2229), 1, + ACTIONS(2765), 1, + anon_sym_LT, + STATE(2231), 1, sym_string, - STATE(2303), 1, + STATE(2245), 1, sym_primary_expression, - STATE(2546), 1, + STATE(2465), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, + ACTIONS(2435), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2487), 5, + ACTIONS(2441), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192346,55 +197327,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83137] = 19, - ACTIONS(1245), 1, + [80756] = 19, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2497), 1, + anon_sym_await, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(1344), 1, - anon_sym_await, - ACTIONS(2809), 1, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2226), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3271), 1, + STATE(2246), 1, sym_primary_expression, + STATE(2500), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 4, + ACTIONS(2475), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(2481), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192415,55 +197396,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83225] = 19, - ACTIONS(1245), 1, + [80844] = 19, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2497), 1, + anon_sym_await, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(1344), 1, - anon_sym_await, - ACTIONS(2809), 1, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2226), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3283), 1, + STATE(2247), 1, sym_primary_expression, + STATE(2500), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 4, + ACTIONS(2475), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(2481), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192484,55 +197465,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83313] = 19, - ACTIONS(1245), 1, + [80932] = 19, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2497), 1, + anon_sym_await, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(1603), 1, - anon_sym_await, - ACTIONS(2725), 1, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2226), 1, sym_string, - STATE(2230), 1, + STATE(2248), 1, sym_primary_expression, - STATE(2349), 1, + STATE(2500), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1269), 4, + ACTIONS(2475), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1336), 5, + ACTIONS(2485), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2481), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192553,55 +197534,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83401] = 19, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [81020] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(1344), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, anon_sym_await, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2140), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3269), 1, + STATE(2150), 1, sym_primary_expression, + STATE(2215), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1351), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192622,55 +197603,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83489] = 19, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + [81108] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2459), 1, - anon_sym_await, - ACTIONS(2461), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(3076), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_await, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2193), 1, + STATE(2140), 1, sym_string, - STATE(2213), 1, + STATE(2152), 1, sym_primary_expression, - STATE(2449), 1, + STATE(2215), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2447), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2443), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1351), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2328), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192691,124 +197672,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83577] = 19, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [81196] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(1344), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, anon_sym_await, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2140), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3261), 1, + STATE(2153), 1, sym_primary_expression, + STATE(2215), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_api, - STATE(2443), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [83665] = 19, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_LBRACE, - ACTIONS(1265), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1271), 1, - sym_float, - ACTIONS(1277), 1, - anon_sym_sizeof, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(1344), 1, - anon_sym_await, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, - anon_sym_STAR, - STATE(2143), 1, - sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3266), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1269), 4, + ACTIONS(81), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(1351), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192829,55 +197741,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83753] = 19, - ACTIONS(1245), 1, + [81284] = 19, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2497), 1, + anon_sym_await, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(1344), 1, - anon_sym_await, - ACTIONS(2809), 1, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2226), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3267), 1, + STATE(2249), 1, sym_primary_expression, + STATE(2500), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 4, + ACTIONS(2475), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(2481), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192898,55 +197810,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83841] = 19, - ACTIONS(1245), 1, + [81372] = 19, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2497), 1, + anon_sym_await, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(1344), 1, - anon_sym_await, - ACTIONS(2809), 1, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2226), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3295), 1, + STATE(2250), 1, sym_primary_expression, + STATE(2500), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 4, + ACTIONS(2475), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(2481), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -192967,55 +197879,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [83929] = 19, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + [81460] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2459), 1, - anon_sym_await, - ACTIONS(2461), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(3076), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_await, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2193), 1, + STATE(2140), 1, sym_string, - STATE(2214), 1, + STATE(2145), 1, sym_primary_expression, - STATE(2449), 1, + STATE(2215), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2447), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2443), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1351), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2328), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -193036,59 +197948,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84017] = 21, - ACTIONS(1245), 1, + [81548] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(4042), 1, + ACTIONS(4180), 1, sym_identifier, - ACTIONS(4046), 1, + ACTIONS(4184), 1, anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3288), 1, + STATE(3313), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2414), 2, + STATE(1978), 2, sym_attribute, sym_subscript, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4044), 5, + ACTIONS(4182), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -193107,55 +198019,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84109] = 19, - ACTIONS(2483), 1, - anon_sym_LPAREN, - ACTIONS(2489), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, + [81640] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2503), 1, - anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2561), 1, - anon_sym_LT, - ACTIONS(3033), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_await, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2229), 1, + STATE(2140), 1, sym_string, - STATE(2284), 1, + STATE(2147), 1, sym_primary_expression, - STATE(2546), 1, + STATE(2215), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2491), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2487), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1351), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -193176,55 +198088,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84197] = 19, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, - anon_sym_LBRACK, - ACTIONS(1985), 1, + [81728] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1995), 1, - anon_sym_await, - ACTIONS(1997), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_await, + ACTIONS(3175), 1, anon_sym_STAR, - ACTIONS(2705), 1, - anon_sym_LT, - STATE(2153), 1, + STATE(2140), 1, sym_string, - STATE(2216), 1, + STATE(2155), 1, sym_primary_expression, - STATE(2421), 1, + STATE(2215), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1983), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1979), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1351), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2347), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -193245,55 +198157,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84285] = 19, - ACTIONS(2439), 1, - anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, + [81816] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(2459), 1, - anon_sym_await, - ACTIONS(2461), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(3076), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, + anon_sym_await, + ACTIONS(3175), 1, anon_sym_STAR, - STATE(2193), 1, + STATE(2140), 1, sym_string, - STATE(2244), 1, + STATE(2157), 1, sym_primary_expression, - STATE(2449), 1, + STATE(2215), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2447), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2443), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1351), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2328), 20, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -193314,59 +198226,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84373] = 21, - ACTIONS(1245), 1, + [81904] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3923), 1, - sym_identifier, - ACTIONS(3929), 1, + ACTIONS(4184), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(4186), 1, + sym_identifier, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3289), 1, + STATE(3313), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2726), 2, + STATE(1978), 2, sym_attribute, sym_subscript, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3927), 5, + ACTIONS(4182), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -193385,128 +198297,138 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84465] = 19, - ACTIONS(2439), 1, + [81996] = 27, + ACTIONS(127), 1, + anon_sym_class, + ACTIONS(137), 1, + anon_sym_ctypedef, + ACTIONS(4160), 1, + anon_sym_enum, + ACTIONS(4162), 1, + anon_sym_cppclass, + ACTIONS(4164), 1, + anon_sym_fused, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_LBRACE, - ACTIONS(2453), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, - anon_sym_None, - ACTIONS(2457), 1, - sym_float, - ACTIONS(2459), 1, - anon_sym_await, - ACTIONS(2461), 1, - anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(4192), 1, + anon_sym_pass, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(4206), 1, sym_string_start, - ACTIONS(2589), 1, - anon_sym_LT, - ACTIONS(3076), 1, - anon_sym_STAR, - STATE(2193), 1, - sym_string, - STATE(2243), 1, - sym_primary_expression, - STATE(2449), 1, - sym_list_splat_pattern, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3610), 1, + sym_c_type, + STATE(5634), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2447), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(2443), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(4158), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4194), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2903), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(733), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(734), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(105), 5, anon_sym_api, - STATE(2328), 20, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_ellipsis, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_none, - sym_await, - sym_sizeof_expression, - sym_cast_expression, - [84553] = 19, - ACTIONS(2439), 1, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2113), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [82100] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2459), 1, - anon_sym_await, - ACTIONS(2461), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2589), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3076), 1, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2193), 1, + ACTIONS(4116), 1, + sym_identifier, + ACTIONS(4208), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2231), 1, - sym_primary_expression, - STATE(2449), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3322), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 4, + STATE(2300), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2443), 5, + ACTIONS(4118), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2328), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -193523,55 +198445,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84641] = 19, - ACTIONS(67), 1, + [82192] = 19, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1325), 1, + sym_string_start, + ACTIONS(2433), 1, anon_sym_await, - ACTIONS(3110), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2100), 1, + STATE(2209), 1, sym_string, - STATE(2118), 1, + STATE(2251), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2435), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1317), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2194), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -193592,59 +198514,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84729] = 19, - ACTIONS(2511), 1, + [82280] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2531), 1, - anon_sym_await, - ACTIONS(2533), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3141), 1, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2292), 1, + ACTIONS(4210), 1, + sym_identifier, + ACTIONS(4214), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2306), 1, - sym_primary_expression, - STATE(2642), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3331), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, + STATE(2464), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2515), 5, + ACTIONS(4212), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2647), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -193661,55 +198585,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84817] = 19, - ACTIONS(2511), 1, + [82372] = 19, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(2531), 1, + ACTIONS(2565), 1, anon_sym_await, - ACTIONS(2533), 1, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(3141), 1, + ACTIONS(3105), 1, anon_sym_STAR, - STATE(2292), 1, + STATE(2283), 1, sym_string, - STATE(2366), 1, + STATE(2330), 1, sym_primary_expression, - STATE(2642), 1, + STATE(2610), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, + ACTIONS(2543), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2515), 5, + ACTIONS(2549), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2647), 20, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -193730,55 +198654,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84905] = 19, - ACTIONS(2511), 1, + [82460] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2531), 1, - anon_sym_await, - ACTIONS(2533), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3141), 1, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2292), 1, + STATE(2209), 1, sym_string, - STATE(2368), 1, - sym_primary_expression, - STATE(2642), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3303), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2515), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2647), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -193799,55 +198723,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [84993] = 19, - ACTIONS(2511), 1, + [82548] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2531), 1, - anon_sym_await, - ACTIONS(2533), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3141), 1, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2292), 1, + STATE(2209), 1, sym_string, - STATE(2370), 1, - sym_primary_expression, - STATE(2642), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3304), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2515), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2647), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -193868,61 +198792,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85081] = 21, - ACTIONS(1245), 1, + [82636] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(4048), 1, - sym_identifier, - ACTIONS(4052), 1, - anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3248), 1, + STATE(2255), 1, sym_primary_expression, + STATE(2435), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3214), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4050), 5, + ACTIONS(1303), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -193939,55 +198861,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85173] = 19, - ACTIONS(2511), 1, + [82724] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2531), 1, - anon_sym_await, - ACTIONS(2533), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3141), 1, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2292), 1, + STATE(2209), 1, sym_string, - STATE(2371), 1, - sym_primary_expression, - STATE(2642), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3305), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2515), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2647), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -194008,61 +198930,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85261] = 21, - ACTIONS(1245), 1, + [82812] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3929), 1, - anon_sym_await, - ACTIONS(4054), 1, - sym_identifier, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3286), 1, + STATE(3306), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2537), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, + ACTIONS(1303), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4056), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -194079,55 +198999,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85353] = 19, - ACTIONS(2511), 1, + [82900] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2531), 1, - anon_sym_await, - ACTIONS(2533), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3141), 1, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2292), 1, + STATE(2209), 1, sym_string, - STATE(2373), 1, - sym_primary_expression, - STATE(2642), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3307), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2515), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2647), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -194148,55 +199068,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85441] = 19, - ACTIONS(1975), 1, + [82988] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1995), 1, - anon_sym_await, - ACTIONS(1997), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2849), 1, anon_sym_LT, - STATE(2153), 1, + ACTIONS(3976), 1, + anon_sym_STAR, + STATE(2209), 1, sym_string, - STATE(2207), 1, - sym_primary_expression, - STATE(2421), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3292), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1979), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2347), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -194217,55 +199137,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85529] = 19, - ACTIONS(2511), 1, + [83076] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2517), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2531), 1, - anon_sym_await, - ACTIONS(2533), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2681), 1, + ACTIONS(1378), 1, + anon_sym_await, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3141), 1, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2292), 1, + STATE(2209), 1, sym_string, - STATE(2374), 1, - sym_primary_expression, - STATE(2642), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3309), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2519), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2515), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2647), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -194286,59 +199206,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85617] = 19, - ACTIONS(2439), 1, + [83164] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2459), 1, - anon_sym_await, - ACTIONS(2461), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2589), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3076), 1, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2193), 1, + ACTIONS(4035), 1, + sym_identifier, + ACTIONS(4041), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2232), 1, - sym_primary_expression, - STATE(2449), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3332), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 4, + STATE(2818), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2443), 5, + ACTIONS(4039), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2328), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -194355,55 +199277,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85705] = 19, - ACTIONS(2439), 1, + [83256] = 19, + ACTIONS(2477), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(2483), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2491), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(2493), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(2495), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(2497), 1, anon_sym_await, - ACTIONS(2461), 1, + ACTIONS(2499), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(2501), 1, sym_string_start, - ACTIONS(2589), 1, + ACTIONS(2631), 1, anon_sym_LT, - ACTIONS(3076), 1, + ACTIONS(3093), 1, anon_sym_STAR, - STATE(2193), 1, + STATE(2226), 1, sym_string, - STATE(2199), 1, + STATE(2284), 1, sym_primary_expression, - STATE(2449), 1, + STATE(2500), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 4, + ACTIONS(2475), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(2485), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2443), 5, + ACTIONS(2481), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2328), 20, + STATE(2445), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -194424,61 +199346,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85793] = 21, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [83344] = 19, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, - anon_sym_STAR, - ACTIONS(4058), 1, - sym_identifier, - ACTIONS(4062), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(3067), 1, + anon_sym_STAR, + STATE(2242), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3291), 1, + STATE(2348), 1, sym_primary_expression, + STATE(2540), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2685), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4060), 5, + ACTIONS(1408), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2507), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -194495,55 +199415,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85885] = 19, - ACTIONS(1414), 1, - anon_sym_LBRACK, - ACTIONS(1418), 1, + [83432] = 19, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, + ACTIONS(1398), 1, anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(1597), 1, - anon_sym_STAR, - ACTIONS(2537), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, anon_sym_LPAREN, - ACTIONS(2545), 1, + ACTIONS(2513), 1, anon_sym_await, - STATE(2410), 1, + ACTIONS(3067), 1, + anon_sym_STAR, + STATE(2242), 1, sym_string, - STATE(2502), 1, + STATE(2349), 1, sym_primary_expression, - STATE(2703), 1, + STATE(2540), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1430), 4, + ACTIONS(1408), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2541), 5, + ACTIONS(2507), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2710), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -194564,55 +199484,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [85973] = 19, - ACTIONS(2439), 1, + [83520] = 19, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(2537), 1, anon_sym_await, - ACTIONS(2461), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(2589), 1, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(3076), 1, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2193), 1, + STATE(2324), 1, sym_string, - STATE(2240), 1, + STATE(2534), 1, sym_primary_expression, - STATE(2449), 1, + STATE(2736), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 4, + ACTIONS(2515), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2443), 5, + ACTIONS(2521), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2328), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -194633,55 +199553,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86061] = 19, - ACTIONS(67), 1, + [83608] = 19, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1398), 1, anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, + ACTIONS(1558), 1, anon_sym_LBRACK, - ACTIONS(1325), 1, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, anon_sym_await, - ACTIONS(3110), 1, + ACTIONS(3067), 1, anon_sym_STAR, - STATE(2100), 1, + STATE(2242), 1, sym_string, - STATE(2105), 1, + STATE(2344), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2540), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1408), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1317), 5, + ACTIONS(2507), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2194), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -194702,59 +199622,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86149] = 19, - ACTIONS(67), 1, + [83696] = 21, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(107), 1, - sym_string_start, ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1325), 1, - anon_sym_await, - ACTIONS(3110), 1, + sym_string_start, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2100), 1, + ACTIONS(4041), 1, + anon_sym_await, + ACTIONS(4216), 1, + sym_identifier, + STATE(2209), 1, sym_string, - STATE(2101), 1, - sym_primary_expression, - STATE(2166), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3328), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + STATE(2590), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1374), 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(1317), 5, + ACTIONS(4218), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2194), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -194771,61 +199693,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86237] = 21, - ACTIONS(1245), 1, + [83788] = 19, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2457), 1, + anon_sym_await, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(4062), 1, - anon_sym_await, - ACTIONS(4064), 1, - sym_identifier, - STATE(2143), 1, + ACTIONS(2765), 1, + anon_sym_LT, + STATE(2231), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3292), 1, + STATE(2263), 1, sym_primary_expression, + STATE(2465), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2511), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, + ACTIONS(2435), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4066), 5, + ACTIONS(2441), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -194842,55 +199762,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86329] = 19, - ACTIONS(2511), 1, - anon_sym_LPAREN, - ACTIONS(2517), 1, - anon_sym_LBRACK, - ACTIONS(2521), 1, + [83876] = 19, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(2525), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2527), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(2529), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(2531), 1, - anon_sym_await, - ACTIONS(2533), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(2535), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2681), 1, - anon_sym_LT, - ACTIONS(3141), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + anon_sym_await, + ACTIONS(3067), 1, anon_sym_STAR, - STATE(2292), 1, + STATE(2242), 1, sym_string, - STATE(2423), 1, + STATE(2341), 1, sym_primary_expression, - STATE(2642), 1, + STATE(2540), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2509), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2519), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2515), 5, + ACTIONS(1408), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2507), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2647), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -194911,61 +199831,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86417] = 21, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [83964] = 19, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, - anon_sym_STAR, - ACTIONS(4046), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, anon_sym_await, - ACTIONS(4068), 1, - sym_identifier, - STATE(2143), 1, + ACTIONS(3067), 1, + anon_sym_STAR, + STATE(2242), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3293), 1, + STATE(2298), 1, sym_primary_expression, + STATE(2540), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2445), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4070), 5, + ACTIONS(1408), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2507), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -194982,61 +199900,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86509] = 21, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [84052] = 19, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, - anon_sym_STAR, - ACTIONS(3923), 1, - sym_identifier, - ACTIONS(4072), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(3067), 1, + anon_sym_STAR, + STATE(2242), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3286), 1, + STATE(2299), 1, sym_primary_expression, + STATE(2540), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2726), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3927), 5, + ACTIONS(1408), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2507), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -195053,61 +199969,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86601] = 21, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [84140] = 19, + ACTIONS(1394), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1406), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1410), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1426), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1428), 1, sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, - anon_sym_STAR, - ACTIONS(4074), 1, - sym_identifier, - ACTIONS(4078), 1, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(3067), 1, + anon_sym_STAR, + STATE(2242), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3272), 1, + STATE(2289), 1, sym_primary_expression, + STATE(2540), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1941), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4076), 5, + ACTIONS(1408), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2507), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -195124,59 +200038,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86693] = 21, - ACTIONS(1245), 1, + [84228] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3939), 1, + ACTIONS(4208), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(4220), 1, + sym_identifier, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3248), 1, + STATE(3322), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3200), 2, + STATE(2300), 2, sym_attribute, sym_subscript, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3937), 5, + ACTIONS(4118), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -195195,59 +200109,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86785] = 21, - ACTIONS(1245), 1, + [84320] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(3890), 1, - sym_identifier, - ACTIONS(3898), 1, + ACTIONS(4170), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(4222), 1, + sym_identifier, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3284), 1, + STATE(3333), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2183), 2, + STATE(2703), 2, sym_attribute, sym_subscript, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3892), 5, + ACTIONS(4168), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -195266,61 +200180,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86877] = 21, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, + [84412] = 19, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(2427), 1, anon_sym_STAR, - ACTIONS(4080), 1, - sym_identifier, - ACTIONS(4084), 1, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, anon_sym_await, - STATE(2143), 1, + STATE(2403), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3287), 1, + STATE(2667), 1, sym_primary_expression, + STATE(2760), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2745), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4082), 5, + ACTIONS(1464), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2575), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -195337,61 +200249,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [86969] = 21, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, + [84500] = 19, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(71), 1, + anon_sym_LT, + ACTIONS(77), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(79), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(83), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(107), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(109), 1, sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, - anon_sym_STAR, - ACTIONS(4058), 1, - sym_identifier, - ACTIONS(4086), 1, + ACTIONS(1347), 1, + anon_sym_LPAREN, + ACTIONS(1353), 1, + anon_sym_LBRACK, + ACTIONS(1359), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(3175), 1, + anon_sym_STAR, + STATE(2140), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3292), 1, + STATE(2158), 1, sym_primary_expression, + STATE(2215), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2685), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(65), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4060), 5, + ACTIONS(81), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1351), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2230), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -195408,59 +200318,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87061] = 21, - ACTIONS(1245), 1, + [84588] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(4088), 1, - sym_identifier, - ACTIONS(4092), 1, + ACTIONS(4170), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(4224), 1, + sym_identifier, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3294), 1, + STATE(3334), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3180), 2, + STATE(2614), 2, sym_attribute, sym_subscript, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4090), 5, + ACTIONS(4226), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -195479,61 +200389,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87153] = 21, - ACTIONS(1245), 1, + [84680] = 19, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2537), 1, + anon_sym_await, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3233), 1, anon_sym_STAR, - ACTIONS(3941), 1, - sym_identifier, - ACTIONS(3945), 1, - anon_sym_await, - STATE(2143), 1, + STATE(2324), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3286), 1, + STATE(2469), 1, sym_primary_expression, + STATE(2736), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3176), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, + ACTIONS(2515), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3943), 5, + ACTIONS(2521), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -195550,59 +200458,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87245] = 21, - ACTIONS(1245), 1, + [84768] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - ACTIONS(4094), 1, - sym_identifier, - ACTIONS(4098), 1, + ACTIONS(4214), 1, anon_sym_await, - STATE(2143), 1, + ACTIONS(4228), 1, + sym_identifier, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3268), 1, + STATE(3335), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2558), 2, + STATE(2488), 2, sym_attribute, sym_subscript, - ACTIONS(1269), 3, + ACTIONS(1303), 3, sym_integer, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4096), 5, + ACTIONS(4230), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, sym_ellipsis, @@ -195621,59 +200529,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87337] = 19, - ACTIONS(1245), 1, + [84860] = 21, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1344), 1, - anon_sym_await, - ACTIONS(2809), 1, + ACTIONS(2849), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2143), 1, + ACTIONS(4035), 1, + sym_identifier, + ACTIONS(4232), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, - STATE(3285), 1, + STATE(3328), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1269), 4, + STATE(2818), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, sym_integer, - sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1336), 5, + ACTIONS(4039), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -195690,59 +200600,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87425] = 19, - ACTIONS(1360), 1, + [84952] = 21, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2415), 1, - anon_sym_await, - ACTIONS(3041), 1, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2202), 1, + ACTIONS(4027), 1, + sym_identifier, + ACTIONS(4033), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2274), 1, - sym_primary_expression, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3322), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 4, + STATE(3237), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1374), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2409), 5, + ACTIONS(4031), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2556), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -195759,59 +200671,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87513] = 19, - ACTIONS(1360), 1, + [85044] = 21, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2415), 1, - anon_sym_await, - ACTIONS(3041), 1, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2202), 1, + ACTIONS(4234), 1, + sym_identifier, + ACTIONS(4238), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2258), 1, - sym_primary_expression, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3330), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 4, + STATE(2757), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1374), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2409), 5, + ACTIONS(4236), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2556), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -195828,59 +200742,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87601] = 19, - ACTIONS(1360), 1, + [85136] = 21, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2415), 1, - anon_sym_await, - ACTIONS(3041), 1, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2202), 1, + ACTIONS(4222), 1, + sym_identifier, + ACTIONS(4240), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2263), 1, - sym_primary_expression, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3334), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 4, + STATE(2703), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1374), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2409), 5, + ACTIONS(4168), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2556), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -195897,59 +200813,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87689] = 19, - ACTIONS(1360), 1, + [85228] = 21, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2415), 1, - anon_sym_await, - ACTIONS(3041), 1, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2202), 1, + ACTIONS(4242), 1, + sym_identifier, + ACTIONS(4246), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2267), 1, - sym_primary_expression, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3336), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 4, + STATE(3215), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1374), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2409), 5, + ACTIONS(4244), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2556), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -195966,59 +200884,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87777] = 19, - ACTIONS(1360), 1, + [85320] = 21, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2415), 1, - anon_sym_await, - ACTIONS(3041), 1, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2202), 1, + ACTIONS(4043), 1, + sym_identifier, + ACTIONS(4047), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2268), 1, - sym_primary_expression, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3328), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 4, + STATE(3219), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1374), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2409), 5, + ACTIONS(4045), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2556), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -196035,59 +200955,61 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87865] = 19, - ACTIONS(1360), 1, + [85412] = 21, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2415), 1, - anon_sym_await, - ACTIONS(3041), 1, + ACTIONS(2849), 1, + anon_sym_LT, + ACTIONS(3976), 1, anon_sym_STAR, - STATE(2202), 1, + ACTIONS(4248), 1, + sym_identifier, + ACTIONS(4252), 1, + anon_sym_await, + STATE(2209), 1, sym_string, - STATE(2264), 1, - sym_primary_expression, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, + STATE(3337), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 4, + STATE(2627), 2, + sym_attribute, + sym_subscript, + ACTIONS(1303), 3, + sym_integer, + sym_true, + sym_false, + ACTIONS(1374), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1374), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2409), 5, + ACTIONS(4250), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2556), 20, + STATE(2508), 18, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -196104,138 +201026,136 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [87953] = 27, - ACTIONS(125), 1, + [85504] = 27, + ACTIONS(127), 1, anon_sym_class, - ACTIONS(133), 1, + ACTIONS(137), 1, anon_sym_ctypedef, - ACTIONS(4100), 1, + ACTIONS(4160), 1, + anon_sym_enum, + ACTIONS(4162), 1, + anon_sym_cppclass, + ACTIONS(4164), 1, + anon_sym_fused, + ACTIONS(4188), 1, sym_identifier, - ACTIONS(4102), 1, + ACTIONS(4190), 1, anon_sym_LPAREN, - ACTIONS(4104), 1, + ACTIONS(4192), 1, anon_sym_pass, - ACTIONS(4114), 1, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4120), 1, - anon_sym_enum, - ACTIONS(4122), 1, - anon_sym_cppclass, - ACTIONS(4124), 1, - anon_sym_fused, - ACTIONS(4126), 1, + ACTIONS(4206), 1, sym_string_start, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(3568), 1, + STATE(3610), 1, sym_c_type, - STATE(5626), 1, + STATE(5670), 1, sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 2, + ACTIONS(4158), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4194), 2, anon_sym_cdef, anon_sym_cpdef, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + ACTIONS(4204), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, - anon_sym_struct, - anon_sym_union, - STATE(2851), 2, + STATE(2903), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3698), 2, + STATE(3791), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(746), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(747), 3, + STATE(733), 3, sym_struct, sym_enum, sym_cppclass, - ACTIONS(103), 5, + STATE(734), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2070), 5, + STATE(2114), 5, sym_string, sym_cdef_type_declaration, sym_cvar_decl, sym_ctypedef_statement, aux_sym_extern_suite_repeat1, - [88057] = 21, - ACTIONS(1245), 1, + [85608] = 19, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2457), 1, + anon_sym_await, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(4062), 1, - anon_sym_await, - ACTIONS(4128), 1, - sym_identifier, - STATE(2143), 1, + ACTIONS(2765), 1, + anon_sym_LT, + STATE(2231), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3291), 1, + STATE(2265), 1, sym_primary_expression, + STATE(2465), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2685), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, + ACTIONS(2435), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4060), 5, + ACTIONS(2441), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -196252,55 +201172,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88149] = 19, - ACTIONS(1975), 1, + [85696] = 19, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1995), 1, + ACTIONS(2457), 1, anon_sym_await, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2217), 1, + STATE(2266), 1, sym_primary_expression, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 4, + ACTIONS(2435), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1979), 5, + ACTIONS(2441), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -196321,55 +201241,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88237] = 19, - ACTIONS(1975), 1, - anon_sym_LPAREN, - ACTIONS(1981), 1, + [85784] = 19, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1995), 1, - anon_sym_await, - ACTIONS(1997), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2427), 1, anon_sym_STAR, - ACTIONS(2705), 1, - anon_sym_LT, - STATE(2153), 1, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, + anon_sym_await, + STATE(2403), 1, sym_string, - STATE(2218), 1, + STATE(2538), 1, sym_primary_expression, - STATE(2421), 1, + STATE(2760), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1983), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1979), 5, + ACTIONS(1464), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2575), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2347), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -196390,55 +201310,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88325] = 19, - ACTIONS(1414), 1, + [85872] = 19, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1418), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1422), 1, - anon_sym_LT, - ACTIONS(1426), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1428), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1432), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1438), 1, + ACTIONS(2457), 1, + anon_sym_await, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1440), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(1597), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2537), 1, - anon_sym_LPAREN, - ACTIONS(2545), 1, - anon_sym_await, - STATE(2410), 1, + ACTIONS(2765), 1, + anon_sym_LT, + STATE(2231), 1, sym_string, - STATE(2527), 1, + STATE(2267), 1, sym_primary_expression, - STATE(2703), 1, + STATE(2465), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1416), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1430), 4, + ACTIONS(2435), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2541), 5, + ACTIONS(2445), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2441), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2710), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -196459,132 +201379,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88413] = 27, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(133), 1, - anon_sym_ctypedef, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4104), 1, - anon_sym_pass, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4120), 1, - anon_sym_enum, - ACTIONS(4122), 1, - anon_sym_cppclass, - ACTIONS(4124), 1, - anon_sym_fused, - ACTIONS(4126), 1, - sym_string_start, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3568), 1, - sym_c_type, - STATE(5592), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4106), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4116), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4118), 2, - anon_sym_struct, - anon_sym_union, - STATE(2851), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(746), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(747), 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(2068), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [88517] = 19, - ACTIONS(1975), 1, + [85960] = 19, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1995), 1, + ACTIONS(2457), 1, anon_sym_await, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2228), 1, + STATE(2268), 1, sym_primary_expression, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 4, + ACTIONS(2435), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1979), 5, + ACTIONS(2441), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -196605,55 +201448,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88605] = 19, - ACTIONS(1360), 1, + [86048] = 19, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(2457), 1, + anon_sym_await, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2415), 1, - anon_sym_await, - ACTIONS(3041), 1, + ACTIONS(2757), 1, anon_sym_STAR, - STATE(2202), 1, + ACTIONS(2765), 1, + anon_sym_LT, + STATE(2231), 1, sym_string, - STATE(2250), 1, + STATE(2271), 1, sym_primary_expression, - STATE(2604), 1, + STATE(2465), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1374), 4, + ACTIONS(2435), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2409), 5, + ACTIONS(2445), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2441), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2556), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -196674,55 +201517,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88693] = 19, - ACTIONS(1360), 1, + [86136] = 19, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(2457), 1, + anon_sym_await, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2415), 1, - anon_sym_await, - ACTIONS(3041), 1, + ACTIONS(2757), 1, anon_sym_STAR, - STATE(2202), 1, + ACTIONS(2765), 1, + anon_sym_LT, + STATE(2231), 1, sym_string, - STATE(2261), 1, + STATE(2272), 1, sym_primary_expression, - STATE(2604), 1, + STATE(2465), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 4, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - ACTIONS(1374), 4, + ACTIONS(2435), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2409), 5, + ACTIONS(2445), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2441), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2556), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -196743,55 +201586,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88781] = 19, - ACTIONS(1975), 1, + [86224] = 19, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2447), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2455), 1, sym_float, - ACTIONS(1995), 1, + ACTIONS(2457), 1, anon_sym_await, - ACTIONS(1997), 1, + ACTIONS(2459), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(2697), 1, + ACTIONS(2757), 1, anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2765), 1, anon_sym_LT, - STATE(2153), 1, + STATE(2231), 1, sym_string, - STATE(2234), 1, + STATE(2273), 1, sym_primary_expression, - STATE(2421), 1, + STATE(2465), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 4, + ACTIONS(2435), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2445), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1979), 5, + ACTIONS(2441), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2347), 20, + STATE(2405), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -196812,61 +201655,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88869] = 21, - ACTIONS(1245), 1, + [86312] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3113), 1, anon_sym_STAR, - ACTIONS(4018), 1, - sym_identifier, - ACTIONS(4130), 1, - anon_sym_await, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3248), 1, + STATE(2264), 1, sym_primary_expression, + STATE(2435), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2255), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4014), 5, + ACTIONS(1303), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -196883,55 +201724,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [88961] = 19, - ACTIONS(1360), 1, + [86400] = 19, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1285), 1, + anon_sym_LBRACK, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1364), 1, - anon_sym_LT, - ACTIONS(1370), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1372), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1376), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1392), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1394), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1504), 1, - anon_sym_LBRACK, - ACTIONS(2405), 1, - anon_sym_LPAREN, - ACTIONS(2415), 1, + ACTIONS(2433), 1, anon_sym_await, - ACTIONS(3041), 1, + ACTIONS(2783), 1, + anon_sym_LT, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2202), 1, + STATE(2209), 1, sym_string, - STATE(2259), 1, + STATE(2274), 1, sym_primary_expression, - STATE(2604), 1, + STATE(2435), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1358), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1374), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2409), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2556), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -196952,61 +201793,136 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89049] = 21, - ACTIONS(1245), 1, + [86488] = 27, + ACTIONS(127), 1, + anon_sym_class, + ACTIONS(137), 1, + anon_sym_ctypedef, + ACTIONS(4160), 1, + anon_sym_enum, + ACTIONS(4162), 1, + anon_sym_cppclass, + ACTIONS(4164), 1, + anon_sym_fused, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4192), 1, + anon_sym_pass, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(4206), 1, + sym_string_start, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3610), 1, + sym_c_type, + STATE(5724), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4158), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4194), 2, + anon_sym_cdef, + anon_sym_cpdef, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2903), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(733), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(734), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(2112), 5, + sym_string, + sym_cdef_type_declaration, + sym_cvar_decl, + sym_ctypedef_statement, + aux_sym_extern_suite_repeat1, + [86592] = 19, + ACTIONS(2545), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2551), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2555), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2561), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2563), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2565), 1, + anon_sym_await, + ACTIONS(2567), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2569), 1, sym_string_start, - ACTIONS(2809), 1, + ACTIONS(2601), 1, anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(4078), 1, - anon_sym_await, - ACTIONS(4132), 1, - sym_identifier, - STATE(2143), 1, + STATE(2283), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3272), 1, + STATE(2320), 1, sym_primary_expression, + STATE(2610), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1941), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, + ACTIONS(2543), 4, sym_integer, + sym_identifier, sym_true, sym_false, - ACTIONS(1340), 4, + ACTIONS(2553), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4076), 5, + ACTIONS(2549), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2568), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -197023,55 +201939,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89141] = 19, - ACTIONS(1975), 1, + [86680] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1995), 1, - anon_sym_await, - ACTIONS(1997), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2783), 1, anon_sym_LT, - STATE(2153), 1, + ACTIONS(3113), 1, + anon_sym_STAR, + STATE(2209), 1, sym_string, - STATE(2235), 1, + STATE(2276), 1, sym_primary_expression, - STATE(2421), 1, + STATE(2435), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(1983), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1979), 5, + ACTIONS(1303), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2347), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -197092,132 +202008,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89229] = 27, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4026), 1, - anon_sym_api, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4120), 1, - anon_sym_enum, - ACTIONS(4122), 1, - anon_sym_cppclass, - ACTIONS(4124), 1, - anon_sym_fused, - ACTIONS(4134), 1, - sym_identifier, - ACTIONS(4138), 1, - anon_sym_COLON, - ACTIONS(4140), 1, - anon_sym_extern, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3873), 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(4032), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4118), 2, - anon_sym_struct, - anon_sym_union, - STATE(2588), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(365), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(746), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(747), 3, - sym_struct, - sym_enum, - sym_cppclass, - ACTIONS(103), 4, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - STATE(1785), 4, - sym_cdef_definition_block, - sym_cvar_def, - sym_cdef_type_declaration, - sym_extern_block, - ACTIONS(4136), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [89333] = 19, - ACTIONS(2483), 1, + [86768] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2503), 1, - anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2561), 1, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(3033), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2229), 1, + STATE(2209), 1, sym_string, - STATE(2294), 1, + STATE(2279), 1, sym_primary_expression, - STATE(2546), 1, + STATE(2435), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2491), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2487), 5, + ACTIONS(1303), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -197238,55 +202077,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89421] = 19, - ACTIONS(1245), 1, + [86856] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1603), 1, + ACTIONS(2433), 1, anon_sym_await, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2226), 1, + STATE(2280), 1, sym_primary_expression, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1269), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1336), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -197307,55 +202146,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89509] = 19, - ACTIONS(1245), 1, + [86944] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(1603), 1, + ACTIONS(2433), 1, anon_sym_await, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2209), 1, sym_string, - STATE(2233), 1, + STATE(2281), 1, sym_primary_expression, - STATE(2349), 1, + STATE(2435), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1269), 4, + ACTIONS(1303), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1336), 5, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -197376,55 +202215,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89597] = 19, - ACTIONS(2483), 1, + [87032] = 19, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(1285), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(1289), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(1299), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(1305), 1, sym_float, - ACTIONS(2503), 1, - anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(1311), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(2561), 1, + ACTIONS(2433), 1, + anon_sym_await, + ACTIONS(2783), 1, anon_sym_LT, - ACTIONS(3033), 1, + ACTIONS(3113), 1, anon_sym_STAR, - STATE(2229), 1, + STATE(2209), 1, sym_string, - STATE(2249), 1, + STATE(2282), 1, sym_primary_expression, - STATE(2546), 1, + STATE(2435), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, - sym_integer, - sym_identifier, - sym_true, - sym_false, - ACTIONS(2491), 4, + ACTIONS(1293), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2487), 5, + ACTIONS(1303), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(1370), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 20, + STATE(2508), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -197445,55 +202284,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89685] = 19, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, + [87120] = 19, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(1603), 1, - anon_sym_await, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2427), 1, anon_sym_STAR, - STATE(2143), 1, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, + anon_sym_await, + STATE(2403), 1, sym_string, - STATE(2241), 1, + STATE(2556), 1, sym_primary_expression, - STATE(2349), 1, + STATE(2760), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1269), 4, + ACTIONS(1464), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1336), 5, + ACTIONS(2575), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -197514,132 +202353,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89773] = 27, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(133), 1, - anon_sym_ctypedef, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4104), 1, - anon_sym_pass, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4120), 1, - anon_sym_enum, - ACTIONS(4122), 1, - anon_sym_cppclass, - ACTIONS(4124), 1, - anon_sym_fused, - ACTIONS(4126), 1, - sym_string_start, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3568), 1, - sym_c_type, - STATE(5660), 1, - sym_pass_statement, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4106), 2, - anon_sym_cdef, - anon_sym_cpdef, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4116), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4118), 2, - anon_sym_struct, - anon_sym_union, - STATE(2851), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(746), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(747), 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(2067), 5, - sym_string, - sym_cdef_type_declaration, - sym_cvar_decl, - sym_ctypedef_statement, - aux_sym_extern_suite_repeat1, - [89877] = 19, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, + [87208] = 19, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(1603), 1, - anon_sym_await, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2427), 1, anon_sym_STAR, - STATE(2143), 1, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, + anon_sym_await, + STATE(2403), 1, sym_string, - STATE(2204), 1, + STATE(2557), 1, sym_primary_expression, - STATE(2349), 1, + STATE(2760), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1269), 4, + ACTIONS(1464), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1336), 5, + ACTIONS(2575), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -197660,55 +202422,124 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [89965] = 19, - ACTIONS(1245), 1, + [87296] = 19, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(1251), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(2537), 1, + anon_sym_await, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(1603), 1, - anon_sym_await, - ACTIONS(2725), 1, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2143), 1, + STATE(2324), 1, sym_string, - STATE(2205), 1, + STATE(2498), 1, sym_primary_expression, - STATE(2349), 1, + STATE(2736), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2515), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2521), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [87384] = 19, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, + anon_sym_LBRACE, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1460), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1462), 1, + anon_sym_None, + ACTIONS(1466), 1, + sym_float, + ACTIONS(1472), 1, + anon_sym_sizeof, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, + anon_sym_await, + STATE(2403), 1, + sym_string, + STATE(2558), 1, + sym_primary_expression, + STATE(2760), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1269), 4, + ACTIONS(1464), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1336), 5, + ACTIONS(2575), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -197729,55 +202560,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [90053] = 19, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, + [87472] = 19, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(1603), 1, - anon_sym_await, - ACTIONS(2725), 1, - anon_sym_LT, - ACTIONS(2977), 1, + ACTIONS(2427), 1, anon_sym_STAR, - STATE(2143), 1, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, + anon_sym_await, + STATE(2403), 1, sym_string, - STATE(2210), 1, + STATE(2559), 1, sym_primary_expression, - STATE(2349), 1, + STATE(2760), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1259), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1269), 4, + ACTIONS(1464), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1336), 5, + ACTIONS(2575), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -197798,61 +202629,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [90141] = 21, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, + [87560] = 19, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(2427), 1, anon_sym_STAR, - ACTIONS(3898), 1, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, anon_sym_await, - ACTIONS(4142), 1, - sym_identifier, - STATE(2143), 1, + STATE(2403), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3284), 1, + STATE(2560), 1, sym_primary_expression, + STATE(2760), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2183), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(3892), 5, + ACTIONS(1464), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2575), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -197869,61 +202698,59 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [90233] = 21, - ACTIONS(1245), 1, - anon_sym_LPAREN, - ACTIONS(1251), 1, + [87648] = 19, + ACTIONS(1448), 1, anon_sym_LBRACK, - ACTIONS(1255), 1, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(1265), 1, + ACTIONS(1456), 1, + anon_sym_LT, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1267), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1271), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(1277), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(1279), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(2809), 1, - anon_sym_LT, - ACTIONS(3868), 1, + ACTIONS(2427), 1, anon_sym_STAR, - ACTIONS(4144), 1, - sym_identifier, - ACTIONS(4148), 1, + ACTIONS(2571), 1, + anon_sym_LPAREN, + ACTIONS(2579), 1, anon_sym_await, - STATE(2143), 1, + STATE(2403), 1, sym_string, - STATE(2349), 1, - sym_list_splat_pattern, - STATE(3286), 1, + STATE(2561), 1, sym_primary_expression, + STATE(2760), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3186), 2, - sym_attribute, - sym_subscript, - ACTIONS(1269), 3, - sym_integer, - sym_true, - sym_false, - ACTIONS(1340), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(4146), 5, + ACTIONS(1464), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2575), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2443), 18, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_ellipsis, sym_call, sym_list, @@ -197940,55 +202767,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [90325] = 19, - ACTIONS(67), 1, + [87736] = 19, + ACTIONS(1448), 1, + anon_sym_LBRACK, + ACTIONS(1452), 1, anon_sym_LBRACE, - ACTIONS(71), 1, + ACTIONS(1456), 1, anon_sym_LT, - ACTIONS(77), 1, + ACTIONS(1460), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(79), 1, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(83), 1, + ACTIONS(1466), 1, sym_float, - ACTIONS(105), 1, + ACTIONS(1472), 1, anon_sym_sizeof, - ACTIONS(107), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(1313), 1, + ACTIONS(2427), 1, + anon_sym_STAR, + ACTIONS(2571), 1, anon_sym_LPAREN, - ACTIONS(1319), 1, - anon_sym_LBRACK, - ACTIONS(1325), 1, + ACTIONS(2579), 1, anon_sym_await, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(2100), 1, + STATE(2403), 1, sym_string, - STATE(2104), 1, + STATE(2562), 1, sym_primary_expression, - STATE(2166), 1, + STATE(2760), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(65), 4, + ACTIONS(1450), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(81), 4, + ACTIONS(1464), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1317), 5, + ACTIONS(2575), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2194), 20, + STATE(2805), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -198009,55 +202836,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [90413] = 19, - ACTIONS(1975), 1, + [87824] = 19, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(1995), 1, + ACTIONS(2537), 1, anon_sym_await, - ACTIONS(1997), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2727), 1, anon_sym_LT, - STATE(2153), 1, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2324), 1, sym_string, - STATE(2237), 1, + STATE(2528), 1, sym_primary_expression, - STATE(2421), 1, + STATE(2736), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 4, + ACTIONS(2515), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1979), 5, + ACTIONS(2521), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2347), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -198078,55 +202905,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [90501] = 19, - ACTIONS(1975), 1, + [87912] = 19, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(1981), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(1985), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1991), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1993), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(1995), 1, + ACTIONS(2537), 1, anon_sym_await, - ACTIONS(1997), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(2697), 1, - anon_sym_STAR, - ACTIONS(2705), 1, + ACTIONS(2727), 1, anon_sym_LT, - STATE(2153), 1, + ACTIONS(3233), 1, + anon_sym_STAR, + STATE(2324), 1, sym_string, - STATE(2238), 1, + STATE(2529), 1, sym_primary_expression, - STATE(2421), 1, + STATE(2736), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1973), 4, + ACTIONS(2515), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(1983), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(1979), 5, + ACTIONS(2521), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2347), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -198147,55 +202974,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [90589] = 19, - ACTIONS(2483), 1, + [88000] = 19, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(2503), 1, + ACTIONS(2537), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(2561), 1, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(3033), 1, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2229), 1, + STATE(2324), 1, sym_string, - STATE(2290), 1, + STATE(2530), 1, sym_primary_expression, - STATE(2546), 1, + STATE(2736), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, + ACTIONS(2515), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2487), 5, + ACTIONS(2521), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -198216,55 +203043,55 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [90677] = 19, - ACTIONS(2483), 1, + [88088] = 19, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(2489), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2493), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2499), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2501), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(2503), 1, + ACTIONS(2537), 1, anon_sym_await, - ACTIONS(2505), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(2507), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(2561), 1, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(3033), 1, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2229), 1, + STATE(2324), 1, sym_string, - STATE(2295), 1, + STATE(2531), 1, sym_primary_expression, - STATE(2546), 1, + STATE(2736), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2481), 4, + ACTIONS(2515), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2491), 4, + ACTIONS(2525), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2487), 5, + ACTIONS(2521), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2512), 20, + STATE(2685), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -198285,55 +203112,124 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [90765] = 19, - ACTIONS(2439), 1, + [88176] = 19, + ACTIONS(2517), 1, anon_sym_LPAREN, - ACTIONS(2445), 1, + ACTIONS(2523), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2527), 1, anon_sym_LBRACE, - ACTIONS(2453), 1, + ACTIONS(2531), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2455), 1, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2457), 1, + ACTIONS(2535), 1, sym_float, - ACTIONS(2459), 1, + ACTIONS(2537), 1, anon_sym_await, - ACTIONS(2461), 1, + ACTIONS(2539), 1, anon_sym_sizeof, - ACTIONS(2463), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(2589), 1, + ACTIONS(2727), 1, anon_sym_LT, - ACTIONS(3076), 1, + ACTIONS(3233), 1, anon_sym_STAR, - STATE(2193), 1, + STATE(2324), 1, sym_string, - STATE(2200), 1, + STATE(2532), 1, sym_primary_expression, - STATE(2449), 1, + STATE(2736), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2437), 4, + ACTIONS(2515), 4, sym_integer, sym_identifier, sym_true, sym_false, - ACTIONS(2447), 4, + ACTIONS(2525), 4, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_TILDE, + ACTIONS(2521), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_api, + STATE(2685), 20, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_ellipsis, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_none, + sym_await, + sym_sizeof_expression, + sym_cast_expression, + [88264] = 19, + ACTIONS(1394), 1, + anon_sym_LBRACE, + ACTIONS(1398), 1, + anon_sym_LT, + ACTIONS(1404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1406), 1, + anon_sym_None, + ACTIONS(1410), 1, + sym_float, + ACTIONS(1426), 1, + anon_sym_sizeof, + ACTIONS(1428), 1, + sym_string_start, + ACTIONS(1558), 1, + anon_sym_LBRACK, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + anon_sym_await, + ACTIONS(3067), 1, + anon_sym_STAR, + STATE(2242), 1, + sym_string, + STATE(2339), 1, + sym_primary_expression, + STATE(2540), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1392), 4, anon_sym_DASH, anon_sym_PLUS, anon_sym_AMP, anon_sym_TILDE, - ACTIONS(2443), 5, + ACTIONS(1408), 4, + sym_integer, + sym_identifier, + sym_true, + sym_false, + ACTIONS(2507), 5, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, anon_sym_api, - STATE(2328), 20, + STATE(2575), 20, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -198354,1987 +203250,1987 @@ static const uint16_t ts_small_parse_table[] = { sym_await, sym_sizeof_expression, sym_cast_expression, - [90853] = 26, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(133), 1, - anon_sym_ctypedef, - ACTIONS(4100), 1, + [88352] = 26, + ACTIONS(4254), 1, sym_identifier, - ACTIONS(4102), 1, + ACTIONS(4257), 1, anon_sym_LPAREN, - ACTIONS(4114), 1, + ACTIONS(4260), 1, + anon_sym_class, + ACTIONS(4278), 1, anon_sym_long, - ACTIONS(4120), 1, + ACTIONS(4284), 1, + anon_sym_ctypedef, + ACTIONS(4290), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4293), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4296), 1, anon_sym_fused, - ACTIONS(4126), 1, - sym_string_start, - ACTIONS(4150), 1, + ACTIONS(4299), 1, sym__dedent, - STATE(3273), 1, + ACTIONS(4301), 1, + sym_string_start, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(3568), 1, + STATE(3610), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 2, + ACTIONS(4266), 2, anon_sym_cdef, anon_sym_cpdef, - ACTIONS(4110), 2, + ACTIONS(4272), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4275), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + ACTIONS(4281), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, + ACTIONS(4287), 2, anon_sym_struct, anon_sym_union, - STATE(2851), 2, + STATE(2903), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3698), 2, + STATE(3791), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4269), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(746), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(747), 3, + STATE(733), 3, sym_struct, sym_enum, sym_cppclass, - ACTIONS(103), 5, + STATE(734), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(4263), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2069), 5, + STATE(2111), 5, sym_string, sym_cdef_type_declaration, sym_cvar_decl, sym_ctypedef_statement, aux_sym_extern_suite_repeat1, - [90954] = 26, - ACTIONS(125), 1, + [88453] = 26, + ACTIONS(127), 1, anon_sym_class, - ACTIONS(133), 1, + ACTIONS(137), 1, anon_sym_ctypedef, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4120), 1, + ACTIONS(4160), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4162), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4164), 1, anon_sym_fused, - ACTIONS(4126), 1, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(4206), 1, sym_string_start, - ACTIONS(4152), 1, + ACTIONS(4304), 1, sym__dedent, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(3568), 1, + STATE(3610), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 2, + ACTIONS(4158), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4194), 2, anon_sym_cdef, anon_sym_cpdef, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + ACTIONS(4204), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, - anon_sym_struct, - anon_sym_union, - STATE(2851), 2, + STATE(2903), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3698), 2, + STATE(3791), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(746), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(747), 3, + STATE(733), 3, sym_struct, sym_enum, sym_cppclass, - ACTIONS(103), 5, + STATE(734), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2069), 5, + STATE(2111), 5, sym_string, sym_cdef_type_declaration, sym_cvar_decl, sym_ctypedef_statement, aux_sym_extern_suite_repeat1, - [91055] = 26, - ACTIONS(4154), 1, - sym_identifier, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4160), 1, + [88554] = 26, + ACTIONS(127), 1, anon_sym_class, - ACTIONS(4178), 1, - anon_sym_long, - ACTIONS(4184), 1, + ACTIONS(137), 1, anon_sym_ctypedef, - ACTIONS(4190), 1, + ACTIONS(4160), 1, anon_sym_enum, - ACTIONS(4193), 1, + ACTIONS(4162), 1, anon_sym_cppclass, - ACTIONS(4196), 1, + ACTIONS(4164), 1, anon_sym_fused, - ACTIONS(4199), 1, - sym__dedent, - ACTIONS(4201), 1, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(4206), 1, sym_string_start, - STATE(3273), 1, + ACTIONS(4306), 1, + sym__dedent, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(3568), 1, + STATE(3610), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4166), 2, + ACTIONS(4158), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4194), 2, anon_sym_cdef, anon_sym_cpdef, - ACTIONS(4172), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4175), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4181), 2, + ACTIONS(4204), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4187), 2, - anon_sym_struct, - anon_sym_union, - STATE(2851), 2, + STATE(2903), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3698), 2, + STATE(3791), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4169), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(746), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(747), 3, + STATE(733), 3, sym_struct, sym_enum, sym_cppclass, - ACTIONS(4163), 5, + STATE(734), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2069), 5, + STATE(2111), 5, sym_string, sym_cdef_type_declaration, sym_cvar_decl, sym_ctypedef_statement, aux_sym_extern_suite_repeat1, - [91156] = 26, - ACTIONS(125), 1, + [88655] = 26, + ACTIONS(127), 1, anon_sym_class, - ACTIONS(133), 1, + ACTIONS(137), 1, anon_sym_ctypedef, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4120), 1, + ACTIONS(4160), 1, anon_sym_enum, - ACTIONS(4122), 1, + ACTIONS(4162), 1, anon_sym_cppclass, - ACTIONS(4124), 1, + ACTIONS(4164), 1, anon_sym_fused, - ACTIONS(4126), 1, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(4206), 1, sym_string_start, - ACTIONS(4204), 1, + ACTIONS(4308), 1, sym__dedent, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(3568), 1, + STATE(3610), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 2, + ACTIONS(4158), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4194), 2, anon_sym_cdef, anon_sym_cpdef, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + ACTIONS(4204), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4118), 2, - anon_sym_struct, - anon_sym_union, - STATE(2851), 2, + STATE(2903), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3698), 2, + STATE(3791), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(746), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(747), 3, + STATE(733), 3, sym_struct, sym_enum, sym_cppclass, - ACTIONS(103), 5, + STATE(734), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2069), 5, + STATE(2111), 5, sym_string, sym_cdef_type_declaration, sym_cvar_decl, sym_ctypedef_statement, aux_sym_extern_suite_repeat1, - [91257] = 26, - ACTIONS(371), 1, + [88756] = 26, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - ACTIONS(4222), 1, + ACTIONS(4326), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2078), 5, + STATE(2120), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [91356] = 26, - ACTIONS(371), 1, + [88855] = 26, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - ACTIONS(4224), 1, + ACTIONS(4328), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2078), 5, + STATE(2120), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [91455] = 26, - ACTIONS(371), 1, + [88954] = 26, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - ACTIONS(4226), 1, + ACTIONS(4330), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2078), 5, + STATE(2120), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [91554] = 26, - ACTIONS(371), 1, + [89053] = 26, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - ACTIONS(4228), 1, + ACTIONS(4332), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2078), 5, + STATE(2120), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [91653] = 26, - ACTIONS(371), 1, + [89152] = 26, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - ACTIONS(4230), 1, + ACTIONS(4334), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2078), 5, + STATE(2120), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [91752] = 26, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, + [89251] = 26, + ACTIONS(4336), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4339), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4345), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4351), 1, + anon_sym_operator, + ACTIONS(4360), 1, + anon_sym_long, + ACTIONS(4366), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4372), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4375), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4378), 1, anon_sym_fused, - ACTIONS(4232), 1, + ACTIONS(4381), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(4354), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(4357), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4363), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4369), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(4348), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(4342), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2078), 5, + STATE(2120), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [91851] = 26, - ACTIONS(371), 1, + [89350] = 26, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - ACTIONS(4234), 1, + ACTIONS(4383), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2078), 5, + STATE(2120), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [91950] = 26, - ACTIONS(4236), 1, + [89449] = 26, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4239), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4245), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4251), 1, - anon_sym_operator, - ACTIONS(4260), 1, - anon_sym_long, - ACTIONS(4266), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4272), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4275), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4278), 1, + ACTIONS(4324), 1, anon_sym_fused, - ACTIONS(4281), 1, + ACTIONS(4385), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4254), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4257), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4263), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4269), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(4248), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(4242), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2078), 5, + STATE(2120), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [92049] = 26, - ACTIONS(371), 1, + [89548] = 26, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - ACTIONS(4283), 1, + ACTIONS(4387), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2078), 5, + STATE(2120), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [92148] = 26, - ACTIONS(371), 1, + [89647] = 26, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - ACTIONS(4285), 1, + ACTIONS(4389), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2078), 5, + STATE(2120), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [92247] = 26, - ACTIONS(371), 1, + [89746] = 26, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - ACTIONS(4287), 1, + ACTIONS(4391), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2078), 5, + STATE(2120), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [92346] = 25, - ACTIONS(371), 1, + [89845] = 25, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2080), 5, + STATE(2123), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [92442] = 25, - ACTIONS(371), 1, + [89941] = 25, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2074), 5, + STATE(2122), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [92538] = 25, - ACTIONS(371), 1, + [90037] = 25, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2071), 5, + STATE(2125), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [92634] = 25, - ACTIONS(371), 1, + [90133] = 25, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2073), 5, + STATE(2119), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [92730] = 25, - ACTIONS(371), 1, + [90229] = 21, + ACTIONS(4395), 1, + anon_sym_DOT, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4405), 1, + anon_sym_STAR_STAR, + ACTIONS(4407), 1, + anon_sym_EQ, + ACTIONS(4409), 1, + anon_sym_LBRACK, + ACTIONS(4415), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4419), 1, + anon_sym_AMP, + ACTIONS(4421), 1, + anon_sym_CARET, + ACTIONS(4423), 1, + anon_sym_is, + STATE(2139), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4399), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4401), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4413), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4425), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2031), 2, + sym__not_in, + sym__is_not, + STATE(2203), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4411), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4403), 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(4393), 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, + [90317] = 21, + ACTIONS(4395), 1, + anon_sym_DOT, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4405), 1, + anon_sym_STAR_STAR, + ACTIONS(4407), 1, + anon_sym_EQ, + ACTIONS(4409), 1, + anon_sym_LBRACK, + ACTIONS(4415), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4419), 1, + anon_sym_AMP, + ACTIONS(4421), 1, + anon_sym_CARET, + ACTIONS(4423), 1, + anon_sym_is, + STATE(3056), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4399), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4401), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4413), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4425), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2031), 2, + sym__not_in, + sym__is_not, + STATE(2203), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4411), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4403), 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(4393), 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, + [90405] = 25, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2075), 5, + STATE(2115), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [92826] = 25, - ACTIONS(371), 1, + [90501] = 25, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2081), 5, + STATE(2116), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [92922] = 25, - ACTIONS(371), 1, + [90597] = 25, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2076), 5, + STATE(2117), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [93018] = 25, - ACTIONS(371), 1, + [90693] = 25, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2077), 5, + STATE(2118), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [93114] = 25, - ACTIONS(371), 1, + [90789] = 25, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2079), 5, + STATE(2124), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [93210] = 21, - ACTIONS(4291), 1, - anon_sym_DOT, - ACTIONS(4293), 1, - anon_sym_LPAREN, - ACTIONS(4301), 1, - anon_sym_STAR_STAR, - ACTIONS(4303), 1, - anon_sym_EQ, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_PIPE, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4315), 1, - anon_sym_AMP, - ACTIONS(4317), 1, - anon_sym_CARET, - ACTIONS(4319), 1, - anon_sym_is, - STATE(3027), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4295), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4297), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4321), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2015), 2, - sym__not_in, - sym__is_not, - STATE(2164), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4307), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4299), 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(4289), 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, - [93298] = 25, - ACTIONS(371), 1, + [90885] = 25, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4314), 1, anon_sym_extern, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4216), 1, + ACTIONS(4320), 1, anon_sym_enum, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(4220), 1, + ACTIONS(4324), 1, anon_sym_fused, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, + ACTIONS(4318), 2, anon_sym_struct, anon_sym_union, - STATE(2854), 2, + STATE(2899), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(3122), 3, - sym_struct, - sym_enum, - sym_cppclass, - STATE(3123), 3, + STATE(3172), 3, sym_class_definition, sym_ctype_declaration, sym_fused, - ACTIONS(103), 5, + STATE(3176), 3, + sym_struct, + sym_enum, + sym_cppclass, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2072), 5, + STATE(2121), 5, sym_cvar_def, sym_cdef_type_declaration, sym_extern_block, sym_ctypedef_statement, aux_sym_cdef_definition_block_repeat1, - [93394] = 21, - ACTIONS(4291), 1, - anon_sym_DOT, - ACTIONS(4293), 1, - anon_sym_LPAREN, - ACTIONS(4301), 1, - anon_sym_STAR_STAR, - ACTIONS(4303), 1, - anon_sym_EQ, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_PIPE, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4315), 1, - anon_sym_AMP, - ACTIONS(4317), 1, - anon_sym_CARET, - ACTIONS(4319), 1, - anon_sym_is, - STATE(2097), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4295), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4297), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4321), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2015), 2, - sym__not_in, - sym__is_not, - STATE(2164), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4307), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4299), 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(4289), 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, - [93482] = 13, - ACTIONS(3808), 1, + [90981] = 13, + ACTIONS(3912), 1, anon_sym_COLON_EQ, - ACTIONS(4323), 1, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4325), 1, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4331), 1, + ACTIONS(4435), 1, anon_sym_complex, - STATE(3441), 1, + STATE(3490), 1, aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3799), 2, + ACTIONS(3903), 2, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(3597), 2, + STATE(3687), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3806), 4, + ACTIONS(3910), 4, anon_sym_as, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 23, + ACTIONS(3899), 23, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -200358,80 +205254,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [93552] = 14, - ACTIONS(3801), 1, - anon_sym_COMMA, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4325), 1, - anon_sym_STAR, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4331), 1, - anon_sym_complex, - STATE(3441), 1, - aux_sym_class_definition_repeat2, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3799), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3597), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4327), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3806), 4, - anon_sym_as, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3795), 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, - [93624] = 5, - ACTIONS(4337), 1, - sym_string_start, + [91051] = 5, + STATE(2142), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2096), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4335), 5, + STATE(2031), 2, + sym__not_in, + sym__is_not, + ACTIONS(4439), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4333), 33, + ACTIONS(4437), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -200465,22 +205303,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93678] = 5, - STATE(2099), 1, - aux_sym_comparison_operator_repeat1, + [91105] = 5, + ACTIONS(109), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2015), 2, - sym__not_in, - sym__is_not, - ACTIONS(4342), 5, + STATE(2141), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3910), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 33, + ACTIONS(3899), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -200514,22 +205352,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93732] = 5, - ACTIONS(107), 1, + [91159] = 5, + ACTIONS(109), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2096), 2, + STATE(2143), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4346), 5, + ACTIONS(4443), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 33, + ACTIONS(4441), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -200563,34 +205401,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93786] = 9, - ACTIONS(4355), 1, + [91213] = 9, + ACTIONS(4452), 1, anon_sym_not, - ACTIONS(4358), 1, + ACTIONS(4455), 1, anon_sym_is, - STATE(2099), 1, + STATE(2142), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4361), 2, + ACTIONS(4458), 2, anon_sym_LT, anon_sym_GT, - STATE(2015), 2, + STATE(2031), 2, sym__not_in, sym__is_not, - ACTIONS(4350), 3, + ACTIONS(4447), 3, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4352), 6, + ACTIONS(4449), 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(4348), 25, + ACTIONS(4445), 25, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -200616,22 +205454,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_nogil, - [93848] = 5, - ACTIONS(107), 1, + [91275] = 5, + ACTIONS(4465), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2098), 2, + STATE(2143), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3806), 5, + ACTIONS(4463), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 33, + ACTIONS(4461), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -200665,57 +205503,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93902] = 15, - ACTIONS(4291), 1, + [91329] = 14, + ACTIONS(3905), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4293), 1, - anon_sym_LPAREN, - ACTIONS(4301), 1, - anon_sym_STAR_STAR, - ACTIONS(4305), 1, + ACTIONS(4429), 1, + anon_sym_STAR, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4311), 1, - anon_sym_PIPE, - ACTIONS(4315), 1, - anon_sym_AMP, - ACTIONS(4317), 1, - anon_sym_CARET, + ACTIONS(4435), 1, + anon_sym_complex, + STATE(3490), 1, + aux_sym_class_definition_repeat2, + STATE(3536), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4295), 2, - anon_sym_STAR, + ACTIONS(3903), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(3687), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4431), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3910), 4, + anon_sym_as, anon_sym_SLASH, - ACTIONS(4297), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3899), 22, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4309), 2, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(2164), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4307), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4366), 3, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91401] = 8, + ACTIONS(4395), 1, + anon_sym_DOT, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4405), 1, + anon_sym_STAR_STAR, + ACTIONS(4409), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2203), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4364), 19, + ACTIONS(4468), 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, @@ -200723,33 +205612,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [93975] = 10, - ACTIONS(4291), 1, + [91460] = 14, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4293), 1, + ACTIONS(4429), 1, + anon_sym_STAR, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(4435), 1, + anon_sym_complex, + ACTIONS(4472), 1, + anon_sym_EQ, + STATE(3490), 1, + aux_sym_class_definition_repeat2, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3903), 2, anon_sym_LPAREN, - ACTIONS(4301), 1, + anon_sym_RPAREN, + STATE(3687), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3910), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4431), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3899), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [91531] = 10, + ACTIONS(4395), 1, + anon_sym_DOT, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4405), 1, anon_sym_STAR_STAR, - ACTIONS(4305), 1, + ACTIONS(4409), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4295), 2, + ACTIONS(4399), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2164), 2, + STATE(2203), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4307), 3, + ACTIONS(4411), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4370), 3, + ACTIONS(4470), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 26, + ACTIONS(4468), 26, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -200776,28 +205722,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94038] = 8, - ACTIONS(4291), 1, + [91594] = 14, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4293), 1, + ACTIONS(4429), 1, + anon_sym_STAR, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(4435), 1, + anon_sym_complex, + ACTIONS(4472), 1, + anon_sym_EQ, + STATE(3490), 1, + aux_sym_class_definition_repeat2, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3687), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3903), 3, anon_sym_LPAREN, - ACTIONS(4301), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3910), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4431), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3899), 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, + [91665] = 21, + ACTIONS(4407), 1, + anon_sym_as, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4474), 1, + anon_sym_DOT, + ACTIONS(4476), 1, + anon_sym_LPAREN, + ACTIONS(4484), 1, + anon_sym_STAR_STAR, + ACTIONS(4486), 1, + anon_sym_LBRACK, + ACTIONS(4492), 1, + anon_sym_PIPE, + ACTIONS(4494), 1, + anon_sym_AMP, + ACTIONS(4496), 1, + anon_sym_CARET, + ACTIONS(4498), 1, + anon_sym_is, + STATE(2213), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4478), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4480), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4500), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2009), 2, + sym__not_in, + sym__is_not, + STATE(2485), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4488), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4482), 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(4393), 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, + [91750] = 8, + ACTIONS(4395), 1, + anon_sym_DOT, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4405), 1, anon_sym_STAR_STAR, - ACTIONS(4305), 1, + ACTIONS(4409), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2164), 2, + STATE(2203), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4374), 5, + ACTIONS(4470), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 29, + ACTIONS(4468), 29, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -200827,28 +205894,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94097] = 8, - ACTIONS(4291), 1, + [91809] = 8, + ACTIONS(4395), 1, anon_sym_DOT, - ACTIONS(4293), 1, + ACTIONS(4397), 1, anon_sym_LPAREN, - ACTIONS(4301), 1, + ACTIONS(4405), 1, anon_sym_STAR_STAR, - ACTIONS(4305), 1, + ACTIONS(4409), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2164), 2, + STATE(2203), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 5, + ACTIONS(4504), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 29, + ACTIONS(4502), 29, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -200878,36 +205945,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94156] = 11, - ACTIONS(4291), 1, + [91868] = 11, + ACTIONS(4395), 1, anon_sym_DOT, - ACTIONS(4293), 1, + ACTIONS(4397), 1, anon_sym_LPAREN, - ACTIONS(4301), 1, + ACTIONS(4405), 1, anon_sym_STAR_STAR, - ACTIONS(4305), 1, + ACTIONS(4409), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4295), 2, + ACTIONS(4399), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4309), 2, + ACTIONS(4413), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2164), 2, + STATE(2203), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4307), 3, + ACTIONS(4411), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4370), 3, + ACTIONS(4470), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 24, + ACTIONS(4468), 24, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -200932,41 +205999,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94221] = 13, - ACTIONS(4291), 1, + [91933] = 15, + ACTIONS(4395), 1, anon_sym_DOT, - ACTIONS(4293), 1, + ACTIONS(4397), 1, anon_sym_LPAREN, - ACTIONS(4301), 1, + ACTIONS(4405), 1, anon_sym_STAR_STAR, - ACTIONS(4305), 1, + ACTIONS(4409), 1, anon_sym_LBRACK, - ACTIONS(4317), 1, + ACTIONS(4415), 1, + anon_sym_PIPE, + ACTIONS(4419), 1, + anon_sym_AMP, + ACTIONS(4421), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4295), 2, + ACTIONS(4399), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4297), 2, + ACTIONS(4401), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4309), 2, + ACTIONS(4413), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2164), 2, + STATE(2203), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4307), 3, + ACTIONS(4411), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4370), 3, + ACTIONS(4508), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 21, + ACTIONS(4506), 19, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -200976,11 +206047,9 @@ static const uint16_t ts_small_parse_table[] = { 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -200988,46 +206057,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94290] = 14, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, - ACTIONS(4323), 1, + [92006] = 8, + ACTIONS(4395), 1, anon_sym_DOT, - ACTIONS(4325), 1, - anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4405), 1, + anon_sym_STAR_STAR, + ACTIONS(4409), 1, anon_sym_LBRACK, - ACTIONS(4331), 1, - anon_sym_complex, - ACTIONS(4376), 1, - anon_sym_EQ, - STATE(3441), 1, - aux_sym_class_definition_repeat2, - STATE(3493), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3799), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3597), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3806), 3, + STATE(2203), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4512), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4327), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3795), 22, + ACTIONS(4510), 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, @@ -201037,70 +206098,129 @@ 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [92065] = 14, + ACTIONS(4395), 1, + anon_sym_DOT, + ACTIONS(4397), 1, + anon_sym_LPAREN, + ACTIONS(4405), 1, + anon_sym_STAR_STAR, + ACTIONS(4409), 1, + anon_sym_LBRACK, + ACTIONS(4419), 1, + anon_sym_AMP, + ACTIONS(4421), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4399), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4401), 2, + anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(4413), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2203), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4411), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4470), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4468), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [94361] = 21, - ACTIONS(4303), 1, + anon_sym_nogil, + [92136] = 21, + ACTIONS(4407), 1, anon_sym_EQ, - ACTIONS(4313), 1, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4378), 1, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4388), 1, + ACTIONS(4524), 1, anon_sym_STAR_STAR, - ACTIONS(4390), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4532), 1, anon_sym_PIPE, - ACTIONS(4398), 1, + ACTIONS(4534), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4536), 1, anon_sym_CARET, - ACTIONS(4402), 1, + ACTIONS(4538), 1, anon_sym_is, - STATE(3148), 1, + STATE(3191), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4382), 2, + ACTIONS(4518), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4384), 2, + ACTIONS(4520), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4394), 2, + ACTIONS(4530), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4404), 2, + ACTIONS(4540), 2, anon_sym_LT, anon_sym_GT, - STATE(1983), 2, + STATE(2047), 2, sym__not_in, sym__is_not, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4392), 3, + ACTIONS(4528), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4386), 6, + ACTIONS(4522), 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(4289), 8, + ACTIONS(4393), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -201109,48 +206229,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_and, anon_sym_or, - [94446] = 6, - ACTIONS(4411), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4416), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4408), 4, + [92221] = 13, + ACTIONS(4395), 1, + anon_sym_DOT, + ACTIONS(4397), 1, anon_sym_LPAREN, + ACTIONS(4405), 1, anon_sym_STAR_STAR, + ACTIONS(4409), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4414), 4, - anon_sym_EQ, + ACTIONS(4421), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4399), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4401), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4413), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2203), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4411), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4470), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4406), 29, + ACTIONS(4468), 21, sym__newline, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, anon_sym_with, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, + anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -201158,50 +206285,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94501] = 8, - ACTIONS(4291), 1, + [92290] = 12, + ACTIONS(4395), 1, anon_sym_DOT, - ACTIONS(4293), 1, + ACTIONS(4397), 1, anon_sym_LPAREN, - ACTIONS(4301), 1, + ACTIONS(4405), 1, anon_sym_STAR_STAR, - ACTIONS(4305), 1, + ACTIONS(4409), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2164), 2, + ACTIONS(4399), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4401), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4413), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2203), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4420), 5, - anon_sym_STAR, + ACTIONS(4411), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4470), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4418), 29, + ACTIONS(4468), 22, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_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, @@ -201209,286 +206340,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [94560] = 21, - ACTIONS(4303), 1, + [92357] = 21, + ACTIONS(4407), 1, anon_sym_EQ, - ACTIONS(4313), 1, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4378), 1, + ACTIONS(4542), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4544), 1, anon_sym_LPAREN, - ACTIONS(4388), 1, + ACTIONS(4552), 1, anon_sym_STAR_STAR, - ACTIONS(4390), 1, + ACTIONS(4554), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4560), 1, anon_sym_PIPE, - ACTIONS(4398), 1, + ACTIONS(4562), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4564), 1, anon_sym_CARET, - ACTIONS(4402), 1, + ACTIONS(4566), 1, anon_sym_is, - STATE(2178), 1, + STATE(3198), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4382), 2, + ACTIONS(4546), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4384), 2, + ACTIONS(4548), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4394), 2, + ACTIONS(4558), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4404), 2, + ACTIONS(4568), 2, anon_sym_LT, anon_sym_GT, - STATE(1983), 2, + STATE(2025), 2, sym__not_in, sym__is_not, - STATE(2312), 2, + STATE(2451), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4392), 3, + ACTIONS(4556), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4386), 6, + ACTIONS(4550), 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(4289), 8, + ACTIONS(4393), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_by, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [94645] = 12, - ACTIONS(4291), 1, + sym_type_conversion, + [92442] = 21, + ACTIONS(4407), 1, + anon_sym_EQ, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4293), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4301), 1, + ACTIONS(4524), 1, anon_sym_STAR_STAR, - ACTIONS(4305), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, + ACTIONS(4532), 1, + anon_sym_PIPE, + ACTIONS(4534), 1, + anon_sym_AMP, + ACTIONS(4536), 1, + anon_sym_CARET, + ACTIONS(4538), 1, + anon_sym_is, + STATE(2240), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4295), 2, + ACTIONS(4518), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4297), 2, + ACTIONS(4520), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4309), 2, + ACTIONS(4530), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2164), 2, + ACTIONS(4540), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2047), 2, + sym__not_in, + sym__is_not, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4307), 3, + ACTIONS(4528), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4370), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4368), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(4522), 6, 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, - [94712] = 14, - ACTIONS(4291), 1, + ACTIONS(4393), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_and, + anon_sym_or, + [92527] = 21, + ACTIONS(4407), 1, + anon_sym_as, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4474), 1, anon_sym_DOT, - ACTIONS(4293), 1, + ACTIONS(4476), 1, anon_sym_LPAREN, - ACTIONS(4301), 1, + ACTIONS(4484), 1, anon_sym_STAR_STAR, - ACTIONS(4305), 1, + ACTIONS(4486), 1, anon_sym_LBRACK, - ACTIONS(4315), 1, + ACTIONS(4492), 1, + anon_sym_PIPE, + ACTIONS(4494), 1, anon_sym_AMP, - ACTIONS(4317), 1, + ACTIONS(4496), 1, anon_sym_CARET, + ACTIONS(4498), 1, + anon_sym_is, + STATE(3204), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4295), 2, + ACTIONS(4478), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4297), 2, + ACTIONS(4480), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4309), 2, + ACTIONS(4490), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2164), 2, + ACTIONS(4500), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2009), 2, + sym__not_in, + sym__is_not, + STATE(2485), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4307), 3, + ACTIONS(4488), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4370), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4368), 20, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(4482), 6, anon_sym_in, - anon_sym_with, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [94783] = 21, - ACTIONS(4303), 1, - anon_sym_as, - ACTIONS(4313), 1, + ACTIONS(4393), 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, + [92612] = 21, + ACTIONS(4407), 1, + anon_sym_EQ, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4422), 1, + ACTIONS(4542), 1, anon_sym_DOT, - ACTIONS(4424), 1, + ACTIONS(4544), 1, anon_sym_LPAREN, - ACTIONS(4432), 1, + ACTIONS(4552), 1, anon_sym_STAR_STAR, - ACTIONS(4434), 1, + ACTIONS(4554), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4560), 1, anon_sym_PIPE, - ACTIONS(4442), 1, + ACTIONS(4562), 1, anon_sym_AMP, - ACTIONS(4444), 1, + ACTIONS(4564), 1, anon_sym_CARET, - ACTIONS(4446), 1, + ACTIONS(4566), 1, anon_sym_is, - STATE(2180), 1, + STATE(2190), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4426), 2, + ACTIONS(4546), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4428), 2, + ACTIONS(4548), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4438), 2, + ACTIONS(4558), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4448), 2, + ACTIONS(4568), 2, anon_sym_LT, anon_sym_GT, - STATE(2013), 2, + STATE(2025), 2, sym__not_in, sym__is_not, - STATE(2310), 2, + STATE(2451), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4436), 3, + ACTIONS(4556), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4430), 6, + ACTIONS(4550), 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(4289), 8, + ACTIONS(4393), 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, - [94868] = 14, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4325), 1, + sym_type_conversion, + [92697] = 6, + ACTIONS(4575), 1, anon_sym_STAR, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4331), 1, - anon_sym_complex, - ACTIONS(4376), 1, - anon_sym_EQ, - STATE(3441), 1, - aux_sym_class_definition_repeat2, - STATE(3493), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3597), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3799), 3, + ACTIONS(4580), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4572), 4, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3806), 3, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4578), 4, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4327), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3795), 21, + ACTIONS(4570), 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, @@ -201506,166 +206644,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [94939] = 21, - ACTIONS(4303), 1, - anon_sym_EQ, - ACTIONS(4313), 1, + anon_sym_nogil, + [92752] = 21, + ACTIONS(4407), 1, + anon_sym_as, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4450), 1, + ACTIONS(4582), 1, anon_sym_DOT, - ACTIONS(4452), 1, + ACTIONS(4584), 1, anon_sym_LPAREN, - ACTIONS(4460), 1, + ACTIONS(4592), 1, anon_sym_STAR_STAR, - ACTIONS(4462), 1, + ACTIONS(4594), 1, anon_sym_LBRACK, - ACTIONS(4468), 1, + ACTIONS(4600), 1, anon_sym_PIPE, - ACTIONS(4470), 1, + ACTIONS(4602), 1, anon_sym_AMP, - ACTIONS(4472), 1, + ACTIONS(4604), 1, anon_sym_CARET, - ACTIONS(4474), 1, + ACTIONS(4606), 1, anon_sym_is, - STATE(2182), 1, + STATE(2241), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4454), 2, + ACTIONS(4586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4456), 2, + ACTIONS(4588), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4466), 2, + ACTIONS(4598), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4476), 2, + ACTIONS(4608), 2, anon_sym_LT, anon_sym_GT, - STATE(1993), 2, + STATE(2091), 2, sym__not_in, sym__is_not, - STATE(2471), 2, + STATE(2622), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4464), 3, + ACTIONS(4596), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4458), 6, + ACTIONS(4590), 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(4289), 8, + ACTIONS(4393), 7, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - sym_type_conversion, - [95024] = 21, - ACTIONS(4303), 1, + [92836] = 4, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3910), 6, + anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4450), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3899), 32, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4452), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(4460), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_with, anon_sym_STAR_STAR, - ACTIONS(4462), 1, anon_sym_LBRACK, - ACTIONS(4468), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4470), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4472), 1, anon_sym_CARET, - ACTIONS(4474), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(3159), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [92886] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4454), 2, + ACTIONS(4612), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4456), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4466), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4476), 2, anon_sym_LT, anon_sym_GT, - STATE(1993), 2, - sym__not_in, - sym__is_not, - STATE(2471), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4464), 3, + ACTIONS(4610), 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(4458), 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(4289), 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, - [95109] = 8, - ACTIONS(4291), 1, - anon_sym_DOT, - ACTIONS(4293), 1, - anon_sym_LPAREN, - ACTIONS(4301), 1, - anon_sym_STAR_STAR, - ACTIONS(4305), 1, - anon_sym_LBRACK, + anon_sym_nogil, + [92934] = 4, + ACTIONS(874), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2164), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 5, + ACTIONS(859), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 29, + ACTIONS(857), 32, sym__newline, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -201685,187 +206845,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95168] = 21, - ACTIONS(4303), 1, + [92984] = 21, + ACTIONS(4407), 1, anon_sym_as, - ACTIONS(4313), 1, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4422), 1, + ACTIONS(4582), 1, anon_sym_DOT, - ACTIONS(4424), 1, + ACTIONS(4584), 1, anon_sym_LPAREN, - ACTIONS(4432), 1, + ACTIONS(4592), 1, anon_sym_STAR_STAR, - ACTIONS(4434), 1, + ACTIONS(4594), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4600), 1, anon_sym_PIPE, - ACTIONS(4442), 1, + ACTIONS(4602), 1, anon_sym_AMP, - ACTIONS(4444), 1, + ACTIONS(4604), 1, anon_sym_CARET, - ACTIONS(4446), 1, + ACTIONS(4606), 1, anon_sym_is, - STATE(3155), 1, + STATE(3228), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4426), 2, + ACTIONS(4586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4428), 2, + ACTIONS(4588), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4438), 2, + ACTIONS(4598), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4448), 2, + ACTIONS(4608), 2, anon_sym_LT, anon_sym_GT, - STATE(2013), 2, + STATE(2091), 2, sym__not_in, sym__is_not, - STATE(2310), 2, + STATE(2622), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4436), 3, + ACTIONS(4596), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4430), 6, + ACTIONS(4590), 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(4289), 8, + ACTIONS(4393), 7, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [95253] = 21, - ACTIONS(4303), 1, + [93068] = 21, + ACTIONS(4407), 1, anon_sym_as, - ACTIONS(4313), 1, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4478), 1, + ACTIONS(4614), 1, anon_sym_DOT, - ACTIONS(4480), 1, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(4488), 1, + ACTIONS(4624), 1, anon_sym_STAR_STAR, - ACTIONS(4490), 1, + ACTIONS(4626), 1, anon_sym_LBRACK, - ACTIONS(4496), 1, + ACTIONS(4632), 1, anon_sym_PIPE, - ACTIONS(4498), 1, + ACTIONS(4634), 1, anon_sym_AMP, - ACTIONS(4500), 1, + ACTIONS(4636), 1, anon_sym_CARET, - ACTIONS(4502), 1, + ACTIONS(4638), 1, anon_sym_is, - STATE(2223), 1, + STATE(3212), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4482), 2, + ACTIONS(4618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4484), 2, + ACTIONS(4620), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4494), 2, + ACTIONS(4630), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4504), 2, + ACTIONS(4640), 2, anon_sym_LT, anon_sym_GT, - STATE(2053), 2, + STATE(2110), 2, sym__not_in, sym__is_not, - STATE(2599), 2, + STATE(2628), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4492), 3, + ACTIONS(4628), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4486), 6, + ACTIONS(4622), 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(4289), 7, + ACTIONS(4393), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [95337] = 20, - ACTIONS(4293), 1, + [93152] = 20, + ACTIONS(4397), 1, anon_sym_LPAREN, - ACTIONS(4301), 1, + ACTIONS(4405), 1, anon_sym_STAR_STAR, - ACTIONS(4311), 1, + ACTIONS(4415), 1, anon_sym_PIPE, - ACTIONS(4313), 1, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4315), 1, + ACTIONS(4419), 1, anon_sym_AMP, - ACTIONS(4317), 1, + ACTIONS(4421), 1, anon_sym_CARET, - ACTIONS(4319), 1, + ACTIONS(4423), 1, anon_sym_is, - ACTIONS(4506), 1, + ACTIONS(4642), 1, anon_sym_DOT, - ACTIONS(4508), 1, + ACTIONS(4644), 1, anon_sym_LBRACK, - STATE(3027), 1, + STATE(3056), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4295), 2, + ACTIONS(4399), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4297), 2, + ACTIONS(4401), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4309), 2, + ACTIONS(4413), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4321), 2, + ACTIONS(4425), 2, anon_sym_LT, anon_sym_GT, - STATE(2015), 2, + STATE(2031), 2, sym__not_in, sym__is_not, - STATE(2164), 2, + STATE(2203), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4307), 3, + ACTIONS(4411), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4299), 6, + ACTIONS(4403), 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(4289), 8, + ACTIONS(4393), 8, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -201874,62 +207033,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [95419] = 21, - ACTIONS(4303), 1, + [93234] = 21, + ACTIONS(4407), 1, anon_sym_as, - ACTIONS(4313), 1, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4510), 1, + ACTIONS(4614), 1, anon_sym_DOT, - ACTIONS(4512), 1, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(4520), 1, + ACTIONS(4624), 1, anon_sym_STAR_STAR, - ACTIONS(4522), 1, + ACTIONS(4626), 1, anon_sym_LBRACK, - ACTIONS(4528), 1, + ACTIONS(4632), 1, anon_sym_PIPE, - ACTIONS(4530), 1, + ACTIONS(4634), 1, anon_sym_AMP, - ACTIONS(4532), 1, + ACTIONS(4636), 1, anon_sym_CARET, - ACTIONS(4534), 1, + ACTIONS(4638), 1, anon_sym_is, - STATE(3175), 1, + STATE(2262), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(4618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4516), 2, + ACTIONS(4620), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4526), 2, + ACTIONS(4630), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4536), 2, + ACTIONS(4640), 2, anon_sym_LT, anon_sym_GT, - STATE(2031), 2, + STATE(2110), 2, sym__not_in, sym__is_not, - STATE(2564), 2, + STATE(2628), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4524), 3, + ACTIONS(4628), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4518), 6, + ACTIONS(4622), 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(4289), 7, + ACTIONS(4393), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -201937,17 +207096,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [95503] = 3, + [93318] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4540), 5, + ACTIONS(4648), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4538), 34, + ACTIONS(4646), 34, sym__newline, sym_string_start, anon_sym_SEMI, @@ -201982,20 +207141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95551] = 4, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, + [93366] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 6, + ACTIONS(4652), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 32, + ACTIONS(4650), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202005,6 +207161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, @@ -202028,20 +207185,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95601] = 4, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + [93413] = 20, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4666), 1, + anon_sym_LBRACK, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP, + ACTIONS(4676), 1, + anon_sym_CARET, + ACTIONS(4678), 1, + anon_sym_is, + STATE(2345), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 6, + ACTIONS(4658), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4660), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4670), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4680), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2099), 2, + sym__not_in, + sym__is_not, + STATE(2699), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4668), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + 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, + ACTIONS(4393), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [93494] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4076), 5, + anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 32, + ACTIONS(4074), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202051,6 +207266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_with, anon_sym_STAR_STAR, @@ -202074,22 +207290,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95651] = 3, + [93541] = 5, + ACTIONS(4682), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4544), 5, + STATE(2176), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4463), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4542), 34, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(4461), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -202097,12 +207314,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, @@ -202118,144 +207335,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [95699] = 21, - ACTIONS(4303), 1, - anon_sym_as, - ACTIONS(4313), 1, + sym_type_conversion, + [93592] = 9, + ACTIONS(4452), 1, anon_sym_not, - ACTIONS(4478), 1, + ACTIONS(4688), 1, + anon_sym_is, + STATE(2177), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4691), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2025), 2, + sym__not_in, + sym__is_not, + ACTIONS(4447), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(4685), 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(4445), 22, anon_sym_DOT, - ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4488), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_STAR_STAR, - ACTIONS(4490), 1, anon_sym_LBRACK, - ACTIONS(4496), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4498), 1, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4500), 1, anon_sym_CARET, - ACTIONS(4502), 1, + anon_sym_LT_LT, + sym_type_conversion, + [93651] = 9, + ACTIONS(4452), 1, + anon_sym_not, + ACTIONS(4697), 1, anon_sym_is, - STATE(3173), 1, + STATE(2178), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4482), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4484), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4494), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4504), 2, + ACTIONS(4700), 2, anon_sym_LT, anon_sym_GT, - STATE(2053), 2, + STATE(2047), 2, sym__not_in, sym__is_not, - STATE(2599), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4492), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4486), 6, + ACTIONS(4447), 3, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + ACTIONS(4694), 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(4289), 7, + ACTIONS(4445), 22, + 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_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + 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, - [95783] = 21, - ACTIONS(4303), 1, - anon_sym_as, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4510), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [93710] = 5, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2182), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4443), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4441), 30, anon_sym_DOT, - ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4520), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, - ACTIONS(4522), 1, anon_sym_LBRACK, - ACTIONS(4528), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4530), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4532), 1, anon_sym_CARET, - ACTIONS(4534), 1, + anon_sym_LT_LT, anon_sym_is, - STATE(2206), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(4705), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4516), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4703), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4526), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - ACTIONS(4536), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [93808] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4110), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(2031), 2, - sym__not_in, - sym__is_not, - STATE(2564), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4524), 3, + ACTIONS(4108), 33, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_with, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4518), 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(4289), 7, - anon_sym_RPAREN, + anon_sym_nogil, + [93855] = 5, + ACTIONS(4707), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2182), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4463), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4461), 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_else, + anon_sym_in, + anon_sym_by, + 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, - [95867] = 3, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [93906] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 5, + ACTIONS(4407), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 33, + ACTIONS(4393), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202289,17 +207660,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95914] = 3, + [93953] = 22, + ACTIONS(127), 1, + anon_sym_class, + ACTIONS(4160), 1, + anon_sym_enum, + ACTIONS(4162), 1, + anon_sym_cppclass, + ACTIONS(4164), 1, + anon_sym_fused, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3610), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, + ACTIONS(4158), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2970), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3009), 2, + sym_cdef_type_declaration, + sym_cvar_decl, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(733), 3, + sym_struct, + sym_enum, + sym_cppclass, + STATE(734), 3, + sym_class_definition, + sym_ctype_declaration, + sym_fused, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [94038] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4712), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 33, + ACTIONS(4710), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202333,37 +207767,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [95961] = 5, - ACTIONS(4550), 1, - sym_string_start, + [94085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2131), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4335), 5, - anon_sym_as, + ACTIONS(4716), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4333), 30, + ACTIONS(4714), 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, @@ -202379,17 +207810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96012] = 3, + anon_sym_nogil, + [94132] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4555), 5, + ACTIONS(4720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4553), 33, + ACTIONS(4718), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202423,34 +207855,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96059] = 3, + [94179] = 5, + ACTIONS(4722), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4559), 5, + STATE(2188), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4463), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4557), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4461), 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, @@ -202466,18 +207901,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96106] = 3, + [94230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4563), 5, + ACTIONS(4727), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4561), 33, + ACTIONS(4725), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202511,21 +207945,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96153] = 3, + [94277] = 5, + STATE(2177), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 5, + STATE(2025), 2, + sym__not_in, + sym__is_not, + ACTIONS(4439), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4437), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -202533,12 +207969,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, @@ -202554,18 +207990,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [96200] = 3, + sym_type_conversion, + [94328] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 5, + ACTIONS(4731), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 33, + ACTIONS(4729), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202599,17 +208035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96247] = 3, + [94375] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + ACTIONS(4735), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 33, + ACTIONS(4733), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202643,17 +208079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96294] = 3, + [94422] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, + ACTIONS(4739), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 33, + ACTIONS(4737), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202687,24 +208123,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96341] = 3, + [94469] = 6, + ACTIONS(4743), 1, + anon_sym_as, + ACTIONS(4748), 1, + anon_sym_and, + ACTIONS(4750), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(4746), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 33, + ACTIONS(4741), 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, @@ -202717,8 +208158,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, @@ -202731,17 +208170,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96388] = 3, + [94522] = 20, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4666), 1, + anon_sym_LBRACK, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP, + ACTIONS(4676), 1, + anon_sym_CARET, + ACTIONS(4678), 1, + anon_sym_is, + STATE(3201), 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(4670), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4680), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2099), 2, + sym__not_in, + sym__is_not, + STATE(2699), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4668), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + 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, + ACTIONS(4393), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [94603] = 9, + ACTIONS(4452), 1, + anon_sym_not, + ACTIONS(4755), 1, + anon_sym_is, + STATE(2196), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(4758), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2009), 2, + sym__not_in, + sym__is_not, + ACTIONS(4447), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4752), 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(4445), 22, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_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, + [94662] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4763), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 33, + ACTIONS(4761), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202775,17 +208325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96435] = 3, + [94709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 5, + ACTIONS(4767), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 33, + ACTIONS(4765), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202819,17 +208369,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96482] = 3, + [94756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 5, + ACTIONS(4771), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 33, + ACTIONS(4769), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202863,32 +208413,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96529] = 5, - ACTIONS(1279), 1, - sym_string_start, + [94803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3806), 5, + ACTIONS(4775), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 30, + ACTIONS(4773), 33, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_by, + anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -202909,63 +208456,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [96580] = 5, + anon_sym_nogil, + [94850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 2, + ACTIONS(4779), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1332), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 14, + ACTIONS(4777), 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(1327), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_nogil, + [94897] = 13, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_STAR, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(4435), 1, + anon_sym_complex, + STATE(3490), 1, + aux_sym_class_definition_repeat2, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3903), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(3687), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3910), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4431), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3899), 21, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, - anon_sym_with, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + 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, - anon_sym_nogil, - [96631] = 3, + [94964] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 5, + ACTIONS(4783), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 33, + ACTIONS(4781), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -202999,17 +208599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96678] = 3, + [95011] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 5, + ACTIONS(4787), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 33, + ACTIONS(4785), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -203043,17 +208643,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96725] = 3, + [95058] = 5, + ACTIONS(4748), 1, + anon_sym_and, + ACTIONS(4750), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 5, + ACTIONS(4791), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 33, + ACTIONS(4789), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -203073,8 +208677,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, @@ -203087,17 +208689,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96772] = 3, + [95109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 5, + ACTIONS(859), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 33, + ACTIONS(857), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -203131,109 +208733,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96819] = 5, - ACTIONS(2463), 1, - sym_string_start, + [95156] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2131), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4346), 5, - anon_sym_as, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1366), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 30, + ACTIONS(1576), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [96870] = 5, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2152), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4346), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4344), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1361), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_by, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_with, anon_sym_not, anon_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, - [96921] = 3, + anon_sym_nogil, + [95207] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3978), 5, + ACTIONS(4114), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 33, + ACTIONS(4112), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -203267,22 +208823,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [96968] = 5, - ACTIONS(4609), 1, + [95254] = 5, + ACTIONS(1313), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2152), 2, + STATE(2179), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4335), 5, + ACTIONS(3910), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4333), 30, + ACTIONS(3899), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -203313,72 +208869,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [97019] = 5, - ACTIONS(1999), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2191), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3806), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3795), 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, + [95305] = 7, + ACTIONS(4748), 1, anon_sym_and, + ACTIONS(4750), 1, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [97070] = 3, + ACTIONS(4795), 1, + anon_sym_as, + ACTIONS(4799), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 5, + ACTIONS(4797), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4008), 33, + ACTIONS(4793), 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, @@ -203389,8 +208905,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, @@ -203403,17 +208917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97117] = 3, + [95360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4614), 5, + ACTIONS(4578), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4612), 33, + ACTIONS(4570), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -203447,17 +208961,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97164] = 3, + [95407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 5, + ACTIONS(4056), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 33, + ACTIONS(4051), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -203491,88 +209005,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97211] = 13, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4325), 1, - anon_sym_STAR, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4331), 1, - anon_sym_complex, - STATE(3441), 1, - aux_sym_class_definition_repeat2, - STATE(3493), 1, - sym_type_index, + [95454] = 5, + STATE(2196), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3799), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3597), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3806), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4327), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3795), 21, + STATE(2009), 2, + sym__not_in, + sym__is_not, + ACTIONS(4439), 5, 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, - [97278] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3967), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3965), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4437), 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, @@ -203588,18 +209051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [97325] = 3, + [95505] = 4, + ACTIONS(4748), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 5, + ACTIONS(4716), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 33, + ACTIONS(4714), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -203619,7 +209083,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, @@ -203633,17 +209096,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97372] = 3, + [95554] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 5, + ACTIONS(4106), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 33, + ACTIONS(4101), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -203677,17 +209140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97419] = 3, + [95601] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4414), 5, + ACTIONS(4803), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4406), 33, + ACTIONS(4801), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -203721,63 +209184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97466] = 5, - ACTIONS(4616), 1, - sym_string_start, + [95648] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2162), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4335), 5, + ACTIONS(4083), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4333), 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, - [97517] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3982), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3980), 33, + ACTIONS(4078), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -203811,17 +209228,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97564] = 3, + [95695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4621), 5, + ACTIONS(4807), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4619), 33, + ACTIONS(4805), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -203855,80 +209272,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97611] = 22, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4120), 1, - anon_sym_enum, - ACTIONS(4122), 1, - anon_sym_cppclass, - ACTIONS(4124), 1, - anon_sym_fused, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3568), 1, - sym_c_type, + [95742] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4116), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4118), 2, - anon_sym_struct, - anon_sym_union, - STATE(2863), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(2969), 2, - sym_cdef_type_declaration, - sym_cvar_decl, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(746), 3, - sym_class_definition, - sym_ctype_declaration, - sym_fused, - STATE(747), 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, - [97696] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3974), 5, + ACTIONS(4091), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 33, + ACTIONS(4089), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -203962,17 +209316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97743] = 3, + [95789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 5, + ACTIONS(4091), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4623), 33, + ACTIONS(4089), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -204006,32 +209360,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97790] = 7, - ACTIONS(4629), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_if, - ACTIONS(4635), 1, - anon_sym_and, - ACTIONS(4637), 1, - anon_sym_or, + [95836] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 5, + ACTIONS(4811), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4627), 29, + ACTIONS(4809), 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, @@ -204042,6 +209390,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, @@ -204054,17 +209404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97845] = 3, + [95883] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 5, + ACTIONS(4815), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4639), 33, + ACTIONS(4813), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -204098,29 +209448,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97892] = 6, - ACTIONS(4635), 1, - anon_sym_and, - ACTIONS(4637), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_as, + [95930] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 5, + ACTIONS(4819), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4643), 30, + ACTIONS(4817), 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, @@ -204133,6 +209478,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, @@ -204145,21 +209492,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97945] = 5, - ACTIONS(4635), 1, - anon_sym_and, - ACTIONS(4637), 1, - anon_sym_or, + [95977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 5, + ACTIONS(4823), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4650), 31, + ACTIONS(4821), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -204179,6 +209522,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, @@ -204191,17 +209536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [97996] = 3, + [96024] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 5, + ACTIONS(4827), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 33, + ACTIONS(4825), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -204235,38 +209580,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [98043] = 4, - ACTIONS(4635), 1, - anon_sym_and, + [96071] = 5, + ACTIONS(2501), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 5, + STATE(2228), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3910), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 32, - sym__newline, - anon_sym_SEMI, + ACTIONS(3899), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, + anon_sym_and, anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, @@ -204279,26 +209626,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [98092] = 7, - ACTIONS(4629), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_if, - ACTIONS(4635), 1, + [96122] = 7, + ACTIONS(4748), 1, anon_sym_and, - ACTIONS(4637), 1, + ACTIONS(4750), 1, anon_sym_or, + ACTIONS(4795), 1, + anon_sym_as, + ACTIONS(4799), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4660), 5, + ACTIONS(4831), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4658), 29, + ACTIONS(4829), 29, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -204328,97 +209674,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [98147] = 7, - ACTIONS(4629), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_if, - ACTIONS(4635), 1, - anon_sym_and, - ACTIONS(4637), 1, - anon_sym_or, + [96177] = 5, + ACTIONS(2501), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4664), 5, + STATE(2188), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4443), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4662), 29, - sym__newline, - anon_sym_SEMI, + ACTIONS(4441), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_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_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, - [98202] = 9, - ACTIONS(4355), 1, - anon_sym_not, - ACTIONS(4669), 1, - anon_sym_is, - STATE(2176), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4672), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1983), 2, - sym__not_in, - sym__is_not, - ACTIONS(4350), 3, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - ACTIONS(4666), 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(4348), 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_else, - anon_sym_by, - 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, @@ -204426,83 +209714,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98261] = 20, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_STAR_STAR, - ACTIONS(4687), 1, - anon_sym_LBRACK, - ACTIONS(4693), 1, - anon_sym_PIPE, - ACTIONS(4695), 1, - anon_sym_AMP, - ACTIONS(4697), 1, - anon_sym_CARET, - ACTIONS(4699), 1, anon_sym_is, - STATE(3156), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4679), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4691), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4701), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1970), 2, - sym__not_in, - sym__is_not, - STATE(2653), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4689), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4683), 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(4289), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [98342] = 5, - STATE(2176), 1, - aux_sym_comparison_operator_repeat1, + [96228] = 5, + ACTIONS(2461), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1983), 2, - sym__not_in, - sym__is_not, - ACTIONS(4342), 5, + STATE(2176), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4443), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 30, + ACTIONS(4441), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -204510,14 +209743,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_by, 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, @@ -204533,87 +209765,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98393] = 9, - ACTIONS(4355), 1, - anon_sym_not, - ACTIONS(4706), 1, - anon_sym_is, - STATE(2179), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4709), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2013), 2, - sym__not_in, - sym__is_not, - ACTIONS(4350), 3, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4703), 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(4348), 22, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_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, - [98452] = 5, - STATE(2179), 1, - aux_sym_comparison_operator_repeat1, + sym_type_conversion, + [96279] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2013), 2, - sym__not_in, - sym__is_not, - ACTIONS(4342), 5, - anon_sym_as, + ACTIONS(3910), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 30, + ACTIONS(3899), 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, @@ -204629,72 +209809,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [98503] = 9, - ACTIONS(4355), 1, - anon_sym_not, - ACTIONS(4715), 1, - anon_sym_is, - STATE(2181), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4718), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1993), 2, - sym__not_in, - sym__is_not, - ACTIONS(4350), 3, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - ACTIONS(4712), 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(4348), 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, - [98562] = 5, - STATE(2181), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_nogil, + [96326] = 5, + ACTIONS(2461), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1993), 2, - sym__not_in, - sym__is_not, - ACTIONS(4342), 5, + STATE(2229), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3910), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 30, + ACTIONS(3899), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -204725,18 +209856,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [98613] = 5, + [96377] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 2, + ACTIONS(4067), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3957), 3, + ACTIONS(4070), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 14, + ACTIONS(4064), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -204751,7 +209882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3947), 19, + ACTIONS(4062), 19, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -204771,17 +209902,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [98664] = 3, + [96428] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4723), 5, + ACTIONS(4095), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4721), 33, + ACTIONS(4093), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -204815,17 +209946,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [98711] = 3, + [96475] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 5, + ACTIONS(4835), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3995), 33, + ACTIONS(4833), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -204859,26 +209990,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [98758] = 3, + [96522] = 7, + ACTIONS(4748), 1, + anon_sym_and, + ACTIONS(4750), 1, + anon_sym_or, + ACTIONS(4795), 1, + anon_sym_as, + ACTIONS(4799), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 5, + ACTIONS(4839), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4725), 33, + ACTIONS(4837), 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, @@ -204889,8 +210026,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, @@ -204903,17 +210038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [98805] = 3, + [96577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 5, + ACTIONS(4076), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4729), 33, + ACTIONS(4074), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -204947,17 +210082,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [98852] = 3, + [96624] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 33, + ACTIONS(4841), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -204991,17 +210126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [98899] = 3, + [96671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 5, + ACTIONS(4847), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4737), 33, + ACTIONS(4845), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -205035,17 +210170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [98946] = 3, + [96718] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4743), 5, + ACTIONS(4851), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 33, + ACTIONS(4849), 33, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -205079,22 +210214,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_nogil, - [98993] = 5, - ACTIONS(1999), 1, - sym_string_start, + [96765] = 5, + STATE(2178), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2162), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4346), 5, + STATE(2047), 2, + sym__not_in, + sym__is_not, + ACTIONS(4439), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 30, + ACTIONS(4437), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -205102,13 +210237,14 @@ 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_by, 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, @@ -205124,32 +210260,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [99044] = 3, + [96816] = 5, + STATE(2278), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4747), 5, + STATE(2091), 2, + sym__not_in, + sym__is_not, + ACTIONS(4439), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4745), 33, - sym__newline, - anon_sym_SEMI, + ACTIONS(4437), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -205168,29 +210305,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [99091] = 5, - ACTIONS(2463), 1, + [96866] = 5, + ACTIONS(1428), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2149), 2, + STATE(2256), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3806), 5, + ACTIONS(3910), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 30, + ACTIONS(3899), 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, @@ -205199,7 +210335,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, @@ -205215,34 +210350,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99142] = 3, + [96916] = 8, + ACTIONS(4474), 1, + anon_sym_DOT, + ACTIONS(4476), 1, + anon_sym_LPAREN, + ACTIONS(4484), 1, + anon_sym_STAR_STAR, + ACTIONS(4486), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 5, + STATE(2485), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4468), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -205258,102 +210398,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [99189] = 20, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4675), 1, + [96972] = 11, + ACTIONS(4474), 1, anon_sym_DOT, - ACTIONS(4677), 1, + ACTIONS(4476), 1, anon_sym_LPAREN, - ACTIONS(4685), 1, + ACTIONS(4484), 1, anon_sym_STAR_STAR, - ACTIONS(4687), 1, + ACTIONS(4486), 1, anon_sym_LBRACK, - ACTIONS(4693), 1, - anon_sym_PIPE, - ACTIONS(4695), 1, - anon_sym_AMP, - ACTIONS(4697), 1, - anon_sym_CARET, - ACTIONS(4699), 1, - anon_sym_is, - STATE(2278), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4679), 2, + ACTIONS(4478), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4691), 2, + ACTIONS(4490), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4701), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1970), 2, - sym__not_in, - sym__is_not, - STATE(2653), 2, + STATE(2485), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4689), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4683), 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(4289), 7, - anon_sym_COMMA, + ACTIONS(4470), 3, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [99270] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4303), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4289), 33, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4488), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 21, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_with, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -205363,89 +210449,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_nogil, - [99317] = 20, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4749), 1, + [97034] = 15, + ACTIONS(4542), 1, anon_sym_DOT, - ACTIONS(4751), 1, + ACTIONS(4544), 1, anon_sym_LPAREN, - ACTIONS(4759), 1, + ACTIONS(4552), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, + ACTIONS(4554), 1, anon_sym_LBRACK, - ACTIONS(4767), 1, + ACTIONS(4560), 1, anon_sym_PIPE, - ACTIONS(4769), 1, + ACTIONS(4562), 1, anon_sym_AMP, - ACTIONS(4771), 1, + ACTIONS(4564), 1, anon_sym_CARET, - ACTIONS(4773), 1, - anon_sym_is, - STATE(2453), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4753), 2, + ACTIONS(4546), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4755), 2, + ACTIONS(4548), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4765), 2, + ACTIONS(4558), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4775), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2039), 2, - sym__not_in, - sym__is_not, - STATE(2729), 2, + STATE(2451), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4763), 3, + ACTIONS(4508), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4556), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4289), 6, - anon_sym_RPAREN, + ACTIONS(4506), 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, - ACTIONS(4757), 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, - [99397] = 8, - ACTIONS(4422), 1, + sym_type_conversion, + [97104] = 8, + ACTIONS(4474), 1, anon_sym_DOT, - ACTIONS(4424), 1, + ACTIONS(4476), 1, anon_sym_LPAREN, - ACTIONS(4432), 1, + ACTIONS(4484), 1, anon_sym_STAR_STAR, - ACTIONS(4434), 1, + ACTIONS(4486), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2310), 2, + STATE(2485), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4374), 5, + ACTIONS(4470), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 26, + ACTIONS(4468), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -205472,41 +210552,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99453] = 13, - ACTIONS(4422), 1, + [97160] = 10, + ACTIONS(4474), 1, + anon_sym_DOT, + ACTIONS(4476), 1, + anon_sym_LPAREN, + ACTIONS(4484), 1, + anon_sym_STAR_STAR, + ACTIONS(4486), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4478), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2485), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4488), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 23, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_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, + [97220] = 14, + ACTIONS(4474), 1, anon_sym_DOT, - ACTIONS(4424), 1, + ACTIONS(4476), 1, anon_sym_LPAREN, - ACTIONS(4432), 1, + ACTIONS(4484), 1, anon_sym_STAR_STAR, - ACTIONS(4434), 1, + ACTIONS(4486), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, + ACTIONS(4494), 1, + anon_sym_AMP, + ACTIONS(4496), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4426), 2, + ACTIONS(4478), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4428), 2, + ACTIONS(4480), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4438), 2, + ACTIONS(4490), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2310), 2, + STATE(2485), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, + ACTIONS(4470), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4436), 3, + ACTIONS(4488), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 18, + ACTIONS(4468), 17, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -205518,46 +210650,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99519] = 12, - ACTIONS(4422), 1, + [97288] = 13, + ACTIONS(4474), 1, anon_sym_DOT, - ACTIONS(4424), 1, + ACTIONS(4476), 1, anon_sym_LPAREN, - ACTIONS(4432), 1, + ACTIONS(4484), 1, anon_sym_STAR_STAR, - ACTIONS(4434), 1, + ACTIONS(4486), 1, anon_sym_LBRACK, + ACTIONS(4496), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4426), 2, + ACTIONS(4478), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4428), 2, + ACTIONS(4480), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4438), 2, + ACTIONS(4490), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2310), 2, + STATE(2485), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, + ACTIONS(4470), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4436), 3, + ACTIONS(4488), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 19, + ACTIONS(4468), 18, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -205570,90 +210703,94 @@ static const uint16_t ts_small_parse_table[] = { 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, - [99583] = 10, - ACTIONS(4378), 1, + [97354] = 12, + ACTIONS(4474), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4476), 1, anon_sym_LPAREN, - ACTIONS(4388), 1, + ACTIONS(4484), 1, anon_sym_STAR_STAR, - ACTIONS(4390), 1, + ACTIONS(4486), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4382), 2, + ACTIONS(4478), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2312), 2, + ACTIONS(4480), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4490), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2485), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_EQ, + ACTIONS(4470), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4392), 3, + ACTIONS(4488), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 23, + ACTIONS(4468), 19, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_by, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + 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, - [99643] = 5, - ACTIONS(1394), 1, - sym_string_start, + [97418] = 8, + ACTIONS(4514), 1, + anon_sym_DOT, + ACTIONS(4516), 1, + anon_sym_LPAREN, + ACTIONS(4524), 1, + anon_sym_STAR_STAR, + ACTIONS(4526), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2236), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3806), 5, - anon_sym_as, + STATE(2446), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4512), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4510), 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_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_by, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -205672,28 +210809,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99693] = 8, - ACTIONS(4378), 1, + [97474] = 8, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4388), 1, + ACTIONS(4524), 1, anon_sym_STAR_STAR, - ACTIONS(4390), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4420), 5, + ACTIONS(4504), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4418), 26, + ACTIONS(4502), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -205720,95 +210857,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99749] = 14, - ACTIONS(4378), 1, + [97530] = 15, + ACTIONS(4474), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4476), 1, anon_sym_LPAREN, - ACTIONS(4388), 1, + ACTIONS(4484), 1, anon_sym_STAR_STAR, - ACTIONS(4390), 1, + ACTIONS(4486), 1, anon_sym_LBRACK, - ACTIONS(4398), 1, + ACTIONS(4492), 1, + anon_sym_PIPE, + ACTIONS(4494), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4496), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4382), 2, + ACTIONS(4478), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4384), 2, + ACTIONS(4480), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4394), 2, + ACTIONS(4490), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2485), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4392), 3, + ACTIONS(4488), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 17, + ACTIONS(4508), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4506), 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, + [97600] = 6, + ACTIONS(4575), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4580), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4572), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4578), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4570), 26, + 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_by, + 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, - [99817] = 13, - ACTIONS(4378), 1, + [97652] = 15, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4388), 1, + ACTIONS(4524), 1, anon_sym_STAR_STAR, - ACTIONS(4390), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(4400), 1, + ACTIONS(4532), 1, + anon_sym_PIPE, + ACTIONS(4534), 1, + anon_sym_AMP, + ACTIONS(4536), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4382), 2, + ACTIONS(4518), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4384), 2, + ACTIONS(4520), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4394), 2, + ACTIONS(4530), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, + ACTIONS(4508), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4392), 3, + ACTIONS(4528), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 18, + ACTIONS(4506), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -205816,33 +211004,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_by, - 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, - [99883] = 5, - STATE(2211), 1, - aux_sym_comparison_operator_repeat1, + [97722] = 5, + ACTIONS(1428), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2031), 2, - sym__not_in, - sym__is_not, - ACTIONS(4342), 5, + STATE(2288), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4443), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 29, + ACTIONS(4441), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -205872,40 +211058,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [99933] = 8, - ACTIONS(4450), 1, - anon_sym_DOT, + [97772] = 9, ACTIONS(4452), 1, - anon_sym_LPAREN, - ACTIONS(4460), 1, - anon_sym_STAR_STAR, - ACTIONS(4462), 1, - anon_sym_LBRACK, + anon_sym_not, + ACTIONS(4856), 1, + anon_sym_is, + STATE(2257), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2471), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4420), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4859), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4418), 26, - anon_sym_COMMA, + STATE(2110), 2, + sym__not_in, + sym__is_not, + ACTIONS(4447), 3, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4853), 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(4445), 21, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, + anon_sym_async, + anon_sym_for, + 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, @@ -205913,213 +211107,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [99989] = 20, - ACTIONS(4313), 1, + [97830] = 20, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4510), 1, + ACTIONS(4862), 1, anon_sym_DOT, - ACTIONS(4522), 1, - anon_sym_LBRACK, - ACTIONS(4751), 1, + ACTIONS(4864), 1, anon_sym_LPAREN, - ACTIONS(4759), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4767), 1, + ACTIONS(4874), 1, + anon_sym_LBRACK, + ACTIONS(4880), 1, anon_sym_PIPE, - ACTIONS(4769), 1, + ACTIONS(4882), 1, anon_sym_AMP, - ACTIONS(4771), 1, + ACTIONS(4884), 1, anon_sym_CARET, - ACTIONS(4773), 1, + ACTIONS(4886), 1, anon_sym_is, - STATE(3246), 1, + STATE(2422), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4753), 2, + ACTIONS(4866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4755), 2, + ACTIONS(4868), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4765), 2, + ACTIONS(4878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4775), 2, + ACTIONS(4888), 2, anon_sym_LT, anon_sym_GT, - STATE(2039), 2, + STATE(2082), 2, sym__not_in, sym__is_not, - STATE(2729), 2, + STATE(2825), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4763), 3, + ACTIONS(4876), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4289), 6, + ACTIONS(4393), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(4757), 6, + ACTIONS(4870), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100069] = 20, - ACTIONS(4313), 1, + [97910] = 20, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4478), 1, + ACTIONS(4614), 1, anon_sym_DOT, - ACTIONS(4490), 1, + ACTIONS(4626), 1, anon_sym_LBRACK, - ACTIONS(4677), 1, + ACTIONS(4864), 1, anon_sym_LPAREN, - ACTIONS(4685), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4693), 1, + ACTIONS(4880), 1, anon_sym_PIPE, - ACTIONS(4695), 1, + ACTIONS(4882), 1, anon_sym_AMP, - ACTIONS(4697), 1, + ACTIONS(4884), 1, anon_sym_CARET, - ACTIONS(4699), 1, + ACTIONS(4886), 1, anon_sym_is, - STATE(3156), 1, + STATE(3271), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4679), 2, + ACTIONS(4866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4681), 2, + ACTIONS(4868), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4691), 2, + ACTIONS(4878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4701), 2, + ACTIONS(4888), 2, anon_sym_LT, anon_sym_GT, - STATE(1970), 2, + STATE(2082), 2, sym__not_in, sym__is_not, - STATE(2653), 2, + STATE(2825), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4689), 3, + ACTIONS(4876), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4289), 6, + ACTIONS(4393), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_RBRACK, anon_sym_and, anon_sym_or, - ACTIONS(4683), 6, + ACTIONS(4870), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100149] = 12, - ACTIONS(4378), 1, - anon_sym_DOT, - ACTIONS(4380), 1, - anon_sym_LPAREN, - ACTIONS(4388), 1, - anon_sym_STAR_STAR, - ACTIONS(4390), 1, - anon_sym_LBRACK, + [97990] = 6, + ACTIONS(4575), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4382), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4384), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4394), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2312), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 3, + ACTIONS(4580), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4572), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4578), 4, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4392), 3, + ACTIONS(4570), 26, + anon_sym_DOT, + 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, - ACTIONS(4368), 19, + anon_sym_CARET, + anon_sym_LT_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, + [98042] = 6, + ACTIONS(4575), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4580), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4572), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4578), 4, + anon_sym_as, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4570), 26, + anon_sym_DOT, 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_by, + 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_AMP, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100213] = 9, - ACTIONS(4355), 1, - anon_sym_not, - ACTIONS(4780), 1, - anon_sym_is, - STATE(2211), 1, + [98094] = 5, + STATE(2257), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4783), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2031), 2, + STATE(2110), 2, sym__not_in, sym__is_not, - ACTIONS(4350), 3, + ACTIONS(4439), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4777), 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(4348), 21, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4437), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -206128,12 +211343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -206141,28 +211358,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [100271] = 8, - ACTIONS(4450), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [98144] = 8, + ACTIONS(4542), 1, anon_sym_DOT, - ACTIONS(4452), 1, + ACTIONS(4544), 1, anon_sym_LPAREN, - ACTIONS(4460), 1, + ACTIONS(4552), 1, anon_sym_STAR_STAR, - ACTIONS(4462), 1, + ACTIONS(4554), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2471), 2, + STATE(2451), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4374), 5, + ACTIONS(4512), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 26, + ACTIONS(4510), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -206189,39 +211412,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [100327] = 8, - ACTIONS(4422), 1, + [98200] = 8, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4424), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4432), 1, + ACTIONS(4524), 1, anon_sym_STAR_STAR, - ACTIONS(4434), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2310), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 5, - anon_sym_as, + ACTIONS(4470), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 26, + ACTIONS(4468), 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_else, anon_sym_in, + anon_sym_by, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -206237,87 +211460,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100383] = 11, - ACTIONS(4422), 1, + [98256] = 8, + ACTIONS(4542), 1, anon_sym_DOT, - ACTIONS(4424), 1, + ACTIONS(4544), 1, anon_sym_LPAREN, - ACTIONS(4432), 1, + ACTIONS(4552), 1, anon_sym_STAR_STAR, - ACTIONS(4434), 1, + ACTIONS(4554), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4426), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4438), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2310), 2, + STATE(2451), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4436), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 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, - [100445] = 5, - ACTIONS(4786), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2215), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4335), 5, - anon_sym_as, + ACTIONS(4470), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4333), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4468), 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, @@ -206333,54 +211507,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100495] = 15, - ACTIONS(4450), 1, + sym_type_conversion, + [98312] = 11, + ACTIONS(4542), 1, anon_sym_DOT, - ACTIONS(4452), 1, + ACTIONS(4544), 1, anon_sym_LPAREN, - ACTIONS(4460), 1, + ACTIONS(4552), 1, anon_sym_STAR_STAR, - ACTIONS(4462), 1, + ACTIONS(4554), 1, anon_sym_LBRACK, - ACTIONS(4468), 1, - anon_sym_PIPE, - ACTIONS(4470), 1, - anon_sym_AMP, - ACTIONS(4472), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4454), 2, + ACTIONS(4546), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4456), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4466), 2, + ACTIONS(4558), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2471), 2, + STATE(2451), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4366), 3, + ACTIONS(4470), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4464), 3, + ACTIONS(4556), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4364), 16, + ACTIONS(4468), 21, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -206388,28 +211559,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [100565] = 8, - ACTIONS(4450), 1, + [98374] = 8, + ACTIONS(4542), 1, anon_sym_DOT, - ACTIONS(4452), 1, + ACTIONS(4544), 1, anon_sym_LPAREN, - ACTIONS(4460), 1, + ACTIONS(4552), 1, anon_sym_STAR_STAR, - ACTIONS(4462), 1, + ACTIONS(4554), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2471), 2, + STATE(2451), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 5, + ACTIONS(4470), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 26, + ACTIONS(4468), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -206436,44 +211607,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [100621] = 11, - ACTIONS(4450), 1, + [98430] = 10, + ACTIONS(4542), 1, anon_sym_DOT, - ACTIONS(4452), 1, + ACTIONS(4544), 1, anon_sym_LPAREN, - ACTIONS(4460), 1, + ACTIONS(4552), 1, anon_sym_STAR_STAR, - ACTIONS(4462), 1, + ACTIONS(4554), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4454), 2, + ACTIONS(4546), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4466), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2471), 2, + STATE(2451), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, + ACTIONS(4470), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4464), 3, + ACTIONS(4556), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 21, + ACTIONS(4468), 23, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -206487,379 +211657,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [100683] = 6, - ACTIONS(4411), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4416), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4408), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4414), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4406), 26, - 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_by, - 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, - [100735] = 20, - ACTIONS(4313), 1, + [98490] = 20, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4422), 1, + ACTIONS(4474), 1, anon_sym_DOT, - ACTIONS(4434), 1, + ACTIONS(4486), 1, anon_sym_LBRACK, - ACTIONS(4452), 1, + ACTIONS(4544), 1, anon_sym_LPAREN, - ACTIONS(4460), 1, + ACTIONS(4552), 1, anon_sym_STAR_STAR, - ACTIONS(4468), 1, + ACTIONS(4560), 1, anon_sym_PIPE, - ACTIONS(4470), 1, + ACTIONS(4562), 1, anon_sym_AMP, - ACTIONS(4472), 1, + ACTIONS(4564), 1, anon_sym_CARET, - ACTIONS(4474), 1, + ACTIONS(4566), 1, anon_sym_is, - STATE(3159), 1, + STATE(3198), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4454), 2, + ACTIONS(4546), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4456), 2, + ACTIONS(4548), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4466), 2, + ACTIONS(4558), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4476), 2, + ACTIONS(4568), 2, anon_sym_LT, anon_sym_GT, - STATE(1993), 2, + STATE(2025), 2, sym__not_in, sym__is_not, - STATE(2471), 2, + STATE(2451), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4464), 3, + ACTIONS(4556), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4289), 6, + ACTIONS(4393), 6, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - ACTIONS(4458), 6, + ACTIONS(4550), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [100815] = 20, - ACTIONS(4313), 1, + [98570] = 20, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4749), 1, + ACTIONS(4862), 1, anon_sym_DOT, - ACTIONS(4751), 1, + ACTIONS(4864), 1, anon_sym_LPAREN, - ACTIONS(4759), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, + ACTIONS(4874), 1, anon_sym_LBRACK, - ACTIONS(4767), 1, + ACTIONS(4880), 1, anon_sym_PIPE, - ACTIONS(4769), 1, + ACTIONS(4882), 1, anon_sym_AMP, - ACTIONS(4771), 1, + ACTIONS(4884), 1, anon_sym_CARET, - ACTIONS(4773), 1, + ACTIONS(4886), 1, anon_sym_is, - STATE(3246), 1, + STATE(3271), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4753), 2, + ACTIONS(4866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4755), 2, + ACTIONS(4868), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4765), 2, + ACTIONS(4878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4775), 2, + ACTIONS(4888), 2, anon_sym_LT, anon_sym_GT, - STATE(2039), 2, + STATE(2082), 2, sym__not_in, sym__is_not, - STATE(2729), 2, + STATE(2825), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4763), 3, + ACTIONS(4876), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4289), 6, + ACTIONS(4393), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_and, anon_sym_or, - ACTIONS(4757), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [100895] = 9, - ACTIONS(4355), 1, - anon_sym_not, - ACTIONS(4792), 1, - anon_sym_is, - STATE(2222), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4795), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2053), 2, - sym__not_in, - sym__is_not, - ACTIONS(4350), 3, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4789), 6, + ACTIONS(4870), 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(4348), 21, + [98650] = 14, + ACTIONS(4542), 1, anon_sym_DOT, + ACTIONS(4544), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(4552), 1, anon_sym_STAR_STAR, + ACTIONS(4554), 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, + ACTIONS(4562), 1, anon_sym_AMP, + ACTIONS(4564), 1, anon_sym_CARET, - anon_sym_LT_LT, - [100953] = 5, - STATE(2222), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2053), 2, - sym__not_in, - sym__is_not, - ACTIONS(4342), 5, - anon_sym_as, + ACTIONS(4546), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4548), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4558), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2451), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4556), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 17, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101003] = 6, - ACTIONS(4411), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4416), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4408), 4, + sym_type_conversion, + [98718] = 13, + ACTIONS(4542), 1, + anon_sym_DOT, + ACTIONS(4544), 1, anon_sym_LPAREN, + ACTIONS(4552), 1, anon_sym_STAR_STAR, + ACTIONS(4554), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4414), 4, - anon_sym_as, + ACTIONS(4564), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4546), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4548), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4558), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2451), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4406), 26, - anon_sym_DOT, + ACTIONS(4556), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 18, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_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_CARET, - anon_sym_LT_LT, + 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, - [101055] = 5, - ACTIONS(4798), 1, - sym_string_start, + sym_type_conversion, + [98784] = 12, + ACTIONS(4542), 1, + anon_sym_DOT, + ACTIONS(4544), 1, + anon_sym_LPAREN, + ACTIONS(4552), 1, + anon_sym_STAR_STAR, + ACTIONS(4554), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4335), 5, - anon_sym_as, + ACTIONS(4546), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4548), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4558), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2451), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4333), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4556), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 19, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101105] = 8, - ACTIONS(4378), 1, + sym_type_conversion, + [98848] = 11, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4388), 1, + ACTIONS(4524), 1, anon_sym_STAR_STAR, - ACTIONS(4390), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2312), 2, + ACTIONS(4518), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4530), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 5, - anon_sym_STAR, + ACTIONS(4470), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 26, + ACTIONS(4528), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 21, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -206868,15 +211974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_by, - 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, @@ -206886,27 +211987,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101161] = 6, - ACTIONS(4411), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4416), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4408), 4, + [98910] = 8, + ACTIONS(4542), 1, + anon_sym_DOT, + ACTIONS(4544), 1, anon_sym_LPAREN, + ACTIONS(4552), 1, anon_sym_STAR_STAR, + ACTIONS(4554), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4414), 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2451), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4504), 5, + anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4406), 26, - anon_sym_DOT, + ACTIONS(4502), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -206923,6 +212025,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, @@ -206932,38 +212035,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [101213] = 8, - ACTIONS(4450), 1, + [98966] = 8, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4452), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4460), 1, + ACTIONS(4524), 1, anon_sym_STAR_STAR, - ACTIONS(4462), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2471), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 5, + ACTIONS(4470), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 26, + ACTIONS(4468), 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_by, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -206979,23 +212083,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [101269] = 5, - ACTIONS(2507), 1, - sym_string_start, + [99022] = 20, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4582), 1, + anon_sym_DOT, + ACTIONS(4594), 1, + anon_sym_LBRACK, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP, + ACTIONS(4676), 1, + anon_sym_CARET, + ACTIONS(4678), 1, + anon_sym_is, + STATE(3201), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2242), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3806), 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(4670), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4680), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2099), 2, + sym__not_in, + sym__is_not, + STATE(2699), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4668), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4393), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACK, + 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, + [99102] = 9, + ACTIONS(4452), 1, + anon_sym_not, + ACTIONS(4893), 1, + anon_sym_is, + STATE(2278), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4896), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 29, + STATE(2091), 2, + sym__not_in, + sym__is_not, + ACTIONS(4447), 3, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4890), 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(4445), 21, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -207003,7 +212178,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_RBRACK, @@ -207011,7 +212185,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, @@ -207019,204 +212192,198 @@ 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, - [101319] = 15, - ACTIONS(4378), 1, + [99160] = 10, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4388), 1, + ACTIONS(4524), 1, anon_sym_STAR_STAR, - ACTIONS(4390), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, - anon_sym_PIPE, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4382), 2, + ACTIONS(4518), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4384), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4394), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4366), 3, + ACTIONS(4470), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4392), 3, + ACTIONS(4528), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4364), 16, + ACTIONS(4468), 23, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_in, anon_sym_by, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101389] = 10, - ACTIONS(4422), 1, + [99220] = 14, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4424), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4432), 1, + ACTIONS(4524), 1, anon_sym_STAR_STAR, - ACTIONS(4434), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, + ACTIONS(4534), 1, + anon_sym_AMP, + ACTIONS(4536), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4426), 2, + ACTIONS(4518), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2310), 2, + ACTIONS(4520), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4530), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_as, + ACTIONS(4470), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4436), 3, + ACTIONS(4528), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 23, + ACTIONS(4468), 17, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, - anon_sym_DASH, + anon_sym_by, 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, - [101449] = 14, - ACTIONS(4422), 1, + [99288] = 13, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4424), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4432), 1, + ACTIONS(4524), 1, anon_sym_STAR_STAR, - ACTIONS(4434), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(4442), 1, - anon_sym_AMP, - ACTIONS(4444), 1, + ACTIONS(4536), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4426), 2, + ACTIONS(4518), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4428), 2, + ACTIONS(4520), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4438), 2, + ACTIONS(4530), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2310), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_as, + ACTIONS(4470), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4436), 3, + ACTIONS(4528), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 17, + ACTIONS(4468), 18, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, + anon_sym_by, 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, - [101517] = 11, - ACTIONS(4378), 1, + [99354] = 12, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4388), 1, + ACTIONS(4524), 1, anon_sym_STAR_STAR, - ACTIONS(4390), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4382), 2, + ACTIONS(4518), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4394), 2, + ACTIONS(4520), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4530), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, + ACTIONS(4470), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4392), 3, + ACTIONS(4528), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 21, + ACTIONS(4468), 19, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_else, @@ -207228,53 +212395,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101579] = 10, - ACTIONS(4450), 1, - anon_sym_DOT, - ACTIONS(4452), 1, - anon_sym_LPAREN, - ACTIONS(4460), 1, - anon_sym_STAR_STAR, - ACTIONS(4462), 1, - anon_sym_LBRACK, + [99418] = 5, + ACTIONS(2569), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4454), 2, + STATE(2285), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3910), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(2471), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4464), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 23, + ACTIONS(3899), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -207284,80 +212446,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [101639] = 14, - ACTIONS(4450), 1, + [99468] = 8, + ACTIONS(4474), 1, anon_sym_DOT, - ACTIONS(4452), 1, + ACTIONS(4476), 1, anon_sym_LPAREN, - ACTIONS(4460), 1, + ACTIONS(4484), 1, anon_sym_STAR_STAR, - ACTIONS(4462), 1, + ACTIONS(4486), 1, anon_sym_LBRACK, - ACTIONS(4470), 1, - anon_sym_AMP, - ACTIONS(4472), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4454), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4456), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4466), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2471), 2, + STATE(2485), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_EQ, + ACTIONS(4512), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4464), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 17, + ACTIONS(4510), 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, - sym_type_conversion, - [101707] = 5, - ACTIONS(1394), 1, + [99524] = 5, + ACTIONS(2569), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2225), 2, + STATE(2287), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(4346), 5, + ACTIONS(4443), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 29, + ACTIONS(4441), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -207366,6 +212520,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, @@ -207384,141 +212539,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101757] = 13, - ACTIONS(4450), 1, + [99574] = 8, + ACTIONS(4474), 1, anon_sym_DOT, - ACTIONS(4452), 1, + ACTIONS(4476), 1, anon_sym_LPAREN, - ACTIONS(4460), 1, + ACTIONS(4484), 1, anon_sym_STAR_STAR, - ACTIONS(4462), 1, + ACTIONS(4486), 1, anon_sym_LBRACK, - ACTIONS(4472), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4454), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4456), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4466), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2471), 2, + STATE(2485), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_EQ, + ACTIONS(4504), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4464), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 18, + ACTIONS(4502), 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, - sym_type_conversion, - [101823] = 12, - ACTIONS(4450), 1, - anon_sym_DOT, - ACTIONS(4452), 1, - anon_sym_LPAREN, - ACTIONS(4460), 1, - anon_sym_STAR_STAR, - ACTIONS(4462), 1, - anon_sym_LBRACK, + [99630] = 5, + ACTIONS(4899), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4454), 2, + STATE(2287), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4463), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4456), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4466), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2471), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4464), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 19, + ACTIONS(4461), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, 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, - [101887] = 8, - ACTIONS(4378), 1, - anon_sym_DOT, - ACTIONS(4380), 1, - anon_sym_LPAREN, - ACTIONS(4388), 1, - anon_sym_STAR_STAR, - ACTIONS(4390), 1, - anon_sym_LBRACK, + [99680] = 5, + ACTIONS(4902), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2312), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4374), 5, + STATE(2288), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4463), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 26, + ACTIONS(4461), 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_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207537,83 +212677,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [101943] = 15, - ACTIONS(4422), 1, + [99730] = 12, + ACTIONS(4614), 1, anon_sym_DOT, - ACTIONS(4424), 1, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(4432), 1, + ACTIONS(4624), 1, anon_sym_STAR_STAR, - ACTIONS(4434), 1, + ACTIONS(4626), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PIPE, - ACTIONS(4442), 1, - anon_sym_AMP, - ACTIONS(4444), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4426), 2, + ACTIONS(4618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4428), 2, + ACTIONS(4620), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4438), 2, + ACTIONS(4630), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2310), 2, + STATE(2628), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4366), 3, + ACTIONS(4470), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4436), 3, + ACTIONS(4628), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4364), 16, + ACTIONS(4468), 18, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + 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, - [102013] = 8, - ACTIONS(4378), 1, + [99793] = 5, + ACTIONS(3905), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3910), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3899), 28, anon_sym_DOT, - ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4388), 1, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4390), 1, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + sym_type_conversion, + [99842] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2312), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 5, + ACTIONS(4091), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 26, + ACTIONS(4089), 31, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -207622,6 +212794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207640,33 +212814,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102069] = 5, - ACTIONS(2507), 1, - sym_string_start, + [99887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2215), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4346), 5, - anon_sym_as, + ACTIONS(4612), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 29, + ACTIONS(4610), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207685,35 +212856,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102119] = 8, - ACTIONS(4422), 1, + [99932] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1366), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1576), 14, anon_sym_DOT, - ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4432), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4434), 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, + ACTIONS(1361), 17, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_by, + 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, + [99981] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2310), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4420), 5, - anon_sym_as, + ACTIONS(4612), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4418), 26, + ACTIONS(4610), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -207733,39 +212941,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102175] = 8, - ACTIONS(4422), 1, + sym_type_conversion, + [100026] = 20, + ACTIONS(127), 1, + anon_sym_class, + ACTIONS(4156), 1, + anon_sym_extern, + ACTIONS(4160), 1, + anon_sym_enum, + ACTIONS(4164), 1, + anon_sym_fused, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3610), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4158), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2970), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(532), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [100105] = 8, + ACTIONS(4582), 1, anon_sym_DOT, - ACTIONS(4424), 1, + ACTIONS(4584), 1, anon_sym_LPAREN, - ACTIONS(4432), 1, + ACTIONS(4592), 1, anon_sym_STAR_STAR, - ACTIONS(4434), 1, + ACTIONS(4594), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2310), 2, + STATE(2622), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 5, + ACTIONS(4504), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 26, + ACTIONS(4502), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -207781,33 +213048,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102231] = 3, + [100160] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 5, + ACTIONS(4612), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 31, + ACTIONS(4610), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_by, 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, @@ -207823,125 +213090,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102276] = 3, + [100205] = 14, + ACTIONS(4614), 1, + anon_sym_DOT, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_LBRACK, + ACTIONS(4634), 1, + anon_sym_AMP, + ACTIONS(4636), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3967), 5, + ACTIONS(4618), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4620), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4630), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2628), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3965), 31, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4628), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 16, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_by, - 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, - [102321] = 10, - ACTIONS(4478), 1, + [100272] = 13, + ACTIONS(4614), 1, anon_sym_DOT, - ACTIONS(4480), 1, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(4488), 1, + ACTIONS(4624), 1, anon_sym_STAR_STAR, - ACTIONS(4490), 1, + ACTIONS(4626), 1, anon_sym_LBRACK, + ACTIONS(4636), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4482), 2, + ACTIONS(4618), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2599), 2, + ACTIONS(4620), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4630), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2628), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, + ACTIONS(4470), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4492), 3, + ACTIONS(4628), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 22, + ACTIONS(4468), 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_RBRACK, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, 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, + [100337] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4067), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4070), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4064), 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(4062), 17, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_by, + 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, - [102380] = 4, - ACTIONS(828), 1, + [100386] = 4, + ACTIONS(874), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 6, + ACTIONS(859), 6, + anon_sym_as, anon_sym_STAR, anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 29, + ACTIONS(857), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_by, 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, @@ -207957,132 +213282,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102427] = 15, - ACTIONS(4478), 1, - anon_sym_DOT, - ACTIONS(4480), 1, + [100433] = 6, + ACTIONS(4575), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4580), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4572), 4, anon_sym_LPAREN, - ACTIONS(4488), 1, anon_sym_STAR_STAR, - ACTIONS(4490), 1, anon_sym_LBRACK, - ACTIONS(4496), 1, - anon_sym_PIPE, - ACTIONS(4498), 1, anon_sym_AMP, - ACTIONS(4500), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4482), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4484), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4494), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2599), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4366), 3, + ACTIONS(4578), 4, anon_sym_as, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4492), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4364), 15, + ACTIONS(4570), 25, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_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, - [102496] = 13, - ACTIONS(4510), 1, + [100484] = 4, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3910), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3899), 29, anon_sym_DOT, - ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4520), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4522), 1, anon_sym_LBRACK, - ACTIONS(4532), 1, + 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, + [100531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(4110), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4516), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4526), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2564), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4524), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 17, - anon_sym_RPAREN, + ACTIONS(4108), 31, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, + 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, - [102561] = 4, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, + [100576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 6, + ACTIONS(4076), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 29, + ACTIONS(4074), 31, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_else, anon_sym_in, anon_sym_by, @@ -208106,25 +213454,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102608] = 3, + [100621] = 20, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(4312), 1, + anon_sym_class, + ACTIONS(4314), 1, + anon_sym_extern, + ACTIONS(4320), 1, + anon_sym_enum, + ACTIONS(4324), 1, + anon_sym_fused, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3595), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4318), 2, + anon_sym_struct, + anon_sym_union, + STATE(2985), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(3152), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [100700] = 4, + ACTIONS(874), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3978), 5, + ACTIONS(859), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 31, + ACTIONS(857), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_else, anon_sym_in, anon_sym_by, @@ -208148,29 +213556,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102653] = 6, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, - ACTIONS(3957), 1, - anon_sym_COLON, + [100747] = 20, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(4312), 1, + anon_sym_class, + ACTIONS(4314), 1, + anon_sym_extern, + ACTIONS(4320), 1, + anon_sym_enum, + ACTIONS(4324), 1, + anon_sym_fused, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3595), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3947), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3954), 5, - anon_sym_as, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4318), 2, + anon_sym_struct, + anon_sym_union, + STATE(2985), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(3104), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [100826] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4648), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 27, + ACTIONS(4646), 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, @@ -208193,30 +213656,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102704] = 5, - ACTIONS(3808), 1, + sym_type_conversion, + [100871] = 4, + ACTIONS(3912), 1, anon_sym_COLON_EQ, - ACTIONS(4376), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 5, - anon_sym_as, + ACTIONS(3910), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 29, + ACTIONS(3899), 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_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -208237,68 +213700,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102753] = 5, + [100918] = 20, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(4136), 1, + anon_sym_extern, + ACTIONS(4144), 1, + anon_sym_enum, + ACTIONS(4148), 1, + anon_sym_fused, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3578), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 2, + ACTIONS(4142), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2908), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + STATE(1285), 6, + sym_class_definition, + sym_extern_block, + sym_cvar_decl, + sym_struct, + sym_enum, + sym_fused, + [100997] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4091), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3957), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 14, + ACTIONS(4089), 31, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_by, 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(3947), 17, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, - 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, - [102802] = 6, - ACTIONS(3808), 1, + [101042] = 6, + ACTIONS(3912), 1, anon_sym_COLON_EQ, - ACTIONS(4801), 1, + ACTIONS(4905), 1, anon_sym_LBRACK, - STATE(4315), 1, + STATE(4313), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 6, + ACTIONS(3910), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 27, + ACTIONS(3899), 27, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -208326,32 +213846,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102853] = 5, - ACTIONS(4803), 1, - sym_string_start, + [101093] = 8, + ACTIONS(4614), 1, + anon_sym_DOT, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2257), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4335), 4, + STATE(2628), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4512), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4333), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4510), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -208370,88 +213893,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102902] = 11, - ACTIONS(4510), 1, - anon_sym_DOT, - ACTIONS(4512), 1, - anon_sym_LPAREN, - ACTIONS(4520), 1, - anon_sym_STAR_STAR, - ACTIONS(4522), 1, - anon_sym_LBRACK, + [101148] = 9, + ACTIONS(4452), 1, + anon_sym_not, + ACTIONS(4910), 1, + anon_sym_is, + STATE(2315), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(4447), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4526), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2564), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_as, + ACTIONS(4913), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4524), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, + STATE(2099), 2, + sym__not_in, + sym__is_not, + ACTIONS(4907), 6, anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [102963] = 8, - ACTIONS(4510), 1, + ACTIONS(4445), 21, anon_sym_DOT, - ACTIONS(4512), 1, anon_sym_LPAREN, - ACTIONS(4520), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_STAR_STAR, - ACTIONS(4522), 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, + [101205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2564), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4420), 5, + ACTIONS(4648), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4418), 25, - anon_sym_RPAREN, + ACTIONS(4646), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -208467,34 +213983,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103018] = 6, - ACTIONS(4411), 1, - anon_sym_STAR, + [101250] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4408), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4414), 4, - anon_sym_as, + ACTIONS(4076), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4406), 25, + ACTIONS(4074), 31, anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -208504,6 +214016,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, @@ -208512,85 +214025,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103069] = 12, - ACTIONS(4510), 1, + [101295] = 8, + ACTIONS(4582), 1, anon_sym_DOT, - ACTIONS(4512), 1, + ACTIONS(4584), 1, anon_sym_LPAREN, - ACTIONS(4520), 1, + ACTIONS(4592), 1, anon_sym_STAR_STAR, - ACTIONS(4522), 1, + ACTIONS(4594), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4516), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4526), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2564), 2, + STATE(2622), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4524), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_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, - [103132] = 4, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3806), 6, + ACTIONS(4470), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4468), 25, 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_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -208606,104 +214072,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103179] = 15, - ACTIONS(4510), 1, + [101350] = 11, + ACTIONS(4582), 1, anon_sym_DOT, - ACTIONS(4512), 1, + ACTIONS(4584), 1, anon_sym_LPAREN, - ACTIONS(4520), 1, + ACTIONS(4592), 1, anon_sym_STAR_STAR, - ACTIONS(4522), 1, + ACTIONS(4594), 1, anon_sym_LBRACK, - ACTIONS(4528), 1, - anon_sym_PIPE, - ACTIONS(4530), 1, - anon_sym_AMP, - ACTIONS(4532), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(4586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4516), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4526), 2, + ACTIONS(4598), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2564), 2, + STATE(2622), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4366), 3, + ACTIONS(4470), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4524), 3, + ACTIONS(4596), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4364), 15, - anon_sym_RPAREN, + ACTIONS(4468), 20, anon_sym_COMMA, + anon_sym_GT_GT, 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_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103248] = 14, - ACTIONS(4510), 1, + [101411] = 15, + ACTIONS(4582), 1, anon_sym_DOT, - ACTIONS(4512), 1, + ACTIONS(4584), 1, anon_sym_LPAREN, - ACTIONS(4520), 1, + ACTIONS(4592), 1, anon_sym_STAR_STAR, - ACTIONS(4522), 1, + ACTIONS(4594), 1, anon_sym_LBRACK, - ACTIONS(4530), 1, + ACTIONS(4600), 1, + anon_sym_PIPE, + ACTIONS(4602), 1, anon_sym_AMP, - ACTIONS(4532), 1, + ACTIONS(4604), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(4586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4516), 2, + ACTIONS(4588), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4526), 2, + ACTIONS(4598), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2564), 2, + STATE(2622), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, + ACTIONS(4508), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4524), 3, + ACTIONS(4596), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 16, - anon_sym_RPAREN, + ACTIONS(4506), 15, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -208713,21 +214176,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103315] = 5, - ACTIONS(2535), 1, - sym_string_start, + [101480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2257), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4346), 4, + ACTIONS(4648), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 29, + ACTIONS(4646), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208735,52 +214195,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_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, - [103364] = 5, - ACTIONS(828), 1, - anon_sym_COLON_EQ, - ACTIONS(2411), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(813), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(811), 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -208801,28 +214218,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103413] = 8, - ACTIONS(4510), 1, + [101525] = 8, + ACTIONS(4614), 1, anon_sym_DOT, - ACTIONS(4512), 1, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(4520), 1, + ACTIONS(4624), 1, anon_sym_STAR_STAR, - ACTIONS(4522), 1, + ACTIONS(4626), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2564), 2, + STATE(2628), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 5, + ACTIONS(4504), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 25, + ACTIONS(4502), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -208848,46 +214265,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103468] = 10, - ACTIONS(4510), 1, - anon_sym_DOT, - ACTIONS(4512), 1, - anon_sym_LPAREN, - ACTIONS(4520), 1, - anon_sym_STAR_STAR, - ACTIONS(4522), 1, - anon_sym_LBRACK, + [101580] = 6, + ACTIONS(874), 1, + anon_sym_COLON_EQ, + ACTIONS(1366), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4514), 2, + ACTIONS(1361), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1363), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(2564), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4524), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 22, - anon_sym_RPAREN, + ACTIONS(1576), 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_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, @@ -208897,35 +214310,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103527] = 8, - ACTIONS(4510), 1, - anon_sym_DOT, - ACTIONS(4512), 1, - anon_sym_LPAREN, - ACTIONS(4520), 1, - anon_sym_STAR_STAR, - ACTIONS(4522), 1, - anon_sym_LBRACK, + [101631] = 5, + ACTIONS(2541), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2564), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4374), 5, - anon_sym_as, + STATE(2337), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3910), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 25, - anon_sym_RPAREN, + ACTIONS(3899), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -208944,20 +214354,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103582] = 4, - ACTIONS(828), 1, + [101680] = 4, + ACTIONS(874), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 6, + ACTIONS(859), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 29, + ACTIONS(857), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -208987,33 +214397,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [103629] = 3, + [101727] = 4, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 5, + ACTIONS(3910), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 31, + ACTIONS(3899), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_by, 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, @@ -209029,33 +214439,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103674] = 3, + sym_type_conversion, + [101774] = 6, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(4070), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4544), 5, + ACTIONS(4062), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4067), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4542), 31, - sym_string_start, + ACTIONS(4064), 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_by, 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, @@ -209071,79 +214485,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103719] = 5, + [101825] = 6, + ACTIONS(4575), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 2, - anon_sym_STAR, + ACTIONS(4580), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4572), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4578), 4, + anon_sym_as, anon_sym_SLASH, - ACTIONS(1332), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 14, + ACTIONS(4570), 25, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + 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, - ACTIONS(1327), 17, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, - 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, - [103768] = 8, - ACTIONS(4510), 1, + [101876] = 8, + ACTIONS(4582), 1, anon_sym_DOT, - ACTIONS(4512), 1, + ACTIONS(4584), 1, anon_sym_LPAREN, - ACTIONS(4520), 1, + ACTIONS(4592), 1, anon_sym_STAR_STAR, - ACTIONS(4522), 1, + ACTIONS(4594), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2564), 2, + STATE(2622), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 5, + ACTIONS(4470), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 25, - anon_sym_RPAREN, + ACTIONS(4468), 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, @@ -209162,30 +214577,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103823] = 3, + [101931] = 8, + ACTIONS(4582), 1, + anon_sym_DOT, + ACTIONS(4584), 1, + anon_sym_LPAREN, + ACTIONS(4592), 1, + anon_sym_STAR_STAR, + ACTIONS(4594), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 5, + STATE(2622), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4512), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 31, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4510), 25, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_by, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -209204,318 +214624,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [103868] = 9, - ACTIONS(4355), 1, - anon_sym_not, - ACTIONS(4809), 1, - anon_sym_is, - STATE(2276), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4350), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1970), 2, - sym__not_in, - sym__is_not, - ACTIONS(4806), 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(4348), 21, - 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_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, - [103925] = 14, - ACTIONS(4478), 1, + [101986] = 10, + ACTIONS(4582), 1, anon_sym_DOT, - ACTIONS(4480), 1, + ACTIONS(4584), 1, anon_sym_LPAREN, - ACTIONS(4488), 1, + ACTIONS(4592), 1, anon_sym_STAR_STAR, - ACTIONS(4490), 1, + ACTIONS(4594), 1, anon_sym_LBRACK, - ACTIONS(4498), 1, - anon_sym_AMP, - ACTIONS(4500), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4482), 2, + ACTIONS(4586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4484), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4494), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2599), 2, + STATE(2622), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 3, + ACTIONS(4470), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4492), 3, + ACTIONS(4596), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 16, + ACTIONS(4468), 22, 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, 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, - [103992] = 5, - STATE(2276), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1970), 2, - sym__not_in, - sym__is_not, - ACTIONS(4342), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4340), 29, + [102045] = 14, + ACTIONS(4582), 1, anon_sym_DOT, + ACTIONS(4584), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(4592), 1, anon_sym_STAR_STAR, + ACTIONS(4594), 1, 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, + ACTIONS(4602), 1, anon_sym_AMP, + ACTIONS(4604), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [104041] = 5, - ACTIONS(3801), 1, - anon_sym_COMMA, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 6, + ACTIONS(4586), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4588), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4598), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2622), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_GT_GT, + ACTIONS(4596), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 16, + anon_sym_COMMA, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [104090] = 20, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4208), 1, + [102112] = 20, + ACTIONS(127), 1, anon_sym_class, - ACTIONS(4210), 1, + ACTIONS(4156), 1, anon_sym_extern, - ACTIONS(4216), 1, + ACTIONS(4160), 1, anon_sym_enum, - ACTIONS(4220), 1, + ACTIONS(4164), 1, anon_sym_fused, - STATE(3273), 1, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(3517), 1, + STATE(3610), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4158), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + ACTIONS(4204), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, - anon_sym_struct, - anon_sym_union, - STATE(2979), 2, + STATE(2970), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3698), 2, + STATE(3791), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(2991), 6, + STATE(535), 6, sym_class_definition, sym_extern_block, sym_cvar_decl, sym_struct, sym_enum, sym_fused, - [104169] = 8, - ACTIONS(4478), 1, + [102191] = 13, + ACTIONS(4582), 1, anon_sym_DOT, - ACTIONS(4480), 1, + ACTIONS(4584), 1, anon_sym_LPAREN, - ACTIONS(4488), 1, + ACTIONS(4592), 1, anon_sym_STAR_STAR, - ACTIONS(4490), 1, + ACTIONS(4594), 1, anon_sym_LBRACK, + ACTIONS(4604), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2599), 2, + ACTIONS(4586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4588), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4598), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2622), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 5, + ACTIONS(4470), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 25, + ACTIONS(4596), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 17, 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_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [102256] = 12, + ACTIONS(4582), 1, + anon_sym_DOT, + ACTIONS(4584), 1, + anon_sym_LPAREN, + ACTIONS(4592), 1, + anon_sym_STAR_STAR, + ACTIONS(4594), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4588), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4598), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2622), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4596), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(4468), 18, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104224] = 4, - ACTIONS(3808), 1, + [102319] = 5, + ACTIONS(864), 1, + anon_sym_COMMA, + ACTIONS(874), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 6, + ACTIONS(859), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 29, + ACTIONS(857), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -209542,30 +214932,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [104271] = 3, + [102368] = 5, + ACTIONS(2541), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 5, + STATE(2340), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4443), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4008), 31, + ACTIONS(4441), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -209584,35 +214976,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104316] = 8, - ACTIONS(4478), 1, - anon_sym_DOT, - ACTIONS(4480), 1, - anon_sym_LPAREN, - ACTIONS(4488), 1, - anon_sym_STAR_STAR, - ACTIONS(4490), 1, - anon_sym_LBRACK, + [102417] = 5, + ACTIONS(874), 1, + anon_sym_COLON_EQ, + ACTIONS(2509), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2599), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4420), 5, + ACTIONS(859), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4418), 25, + ACTIONS(857), 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -209631,76 +215020,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104371] = 3, + [102466] = 15, + ACTIONS(4614), 1, + anon_sym_DOT, + ACTIONS(4616), 1, + anon_sym_LPAREN, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_LBRACK, + ACTIONS(4632), 1, + anon_sym_PIPE, + ACTIONS(4634), 1, + anon_sym_AMP, + ACTIONS(4636), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 5, + ACTIONS(4618), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(4620), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4630), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2628), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4508), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 31, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(4628), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4506), 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_by, - 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, - [104416] = 4, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + [102535] = 5, + ACTIONS(4916), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 6, - anon_sym_as, + STATE(2340), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4463), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 29, + ACTIONS(4461), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -209716,44 +215118,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104463] = 8, - ACTIONS(4478), 1, + [102584] = 10, + ACTIONS(4614), 1, anon_sym_DOT, - ACTIONS(4480), 1, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(4488), 1, + ACTIONS(4624), 1, anon_sym_STAR_STAR, - ACTIONS(4490), 1, + ACTIONS(4626), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2599), 2, + ACTIONS(4618), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2628), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4374), 5, + ACTIONS(4470), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 25, + ACTIONS(4628), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 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_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, @@ -209763,32 +215167,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104518] = 3, + [102643] = 5, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(4472), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4544), 5, + ACTIONS(3910), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4542), 31, - sym_string_start, + ACTIONS(3899), 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, @@ -209804,247 +215211,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [104563] = 20, - ACTIONS(125), 1, + [102692] = 20, + ACTIONS(59), 1, anon_sym_class, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4120), 1, + ACTIONS(4136), 1, + anon_sym_extern, + ACTIONS(4144), 1, anon_sym_enum, - ACTIONS(4124), 1, + ACTIONS(4148), 1, anon_sym_fused, - ACTIONS(4140), 1, - anon_sym_extern, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3568), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4116), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4118), 2, - anon_sym_struct, - anon_sym_union, - STATE(2863), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 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(523), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [104642] = 12, - ACTIONS(4478), 1, - anon_sym_DOT, - ACTIONS(4480), 1, - anon_sym_LPAREN, - ACTIONS(4488), 1, - anon_sym_STAR_STAR, - ACTIONS(4490), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4482), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4484), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4494), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2599), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4492), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 18, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [104705] = 20, - ACTIONS(4100), 1, + ACTIONS(4188), 1, sym_identifier, - ACTIONS(4102), 1, + ACTIONS(4190), 1, anon_sym_LPAREN, - ACTIONS(4114), 1, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4208), 1, - anon_sym_class, - ACTIONS(4210), 1, - anon_sym_extern, - ACTIONS(4216), 1, - anon_sym_enum, - ACTIONS(4220), 1, - anon_sym_fused, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(3517), 1, + STATE(3578), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4142), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + ACTIONS(4204), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4214), 2, - anon_sym_struct, - anon_sym_union, - STATE(2979), 2, + STATE(2908), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3698), 2, + STATE(3791), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - STATE(3107), 6, + STATE(1362), 6, sym_class_definition, sym_extern_block, sym_cvar_decl, sym_struct, sym_enum, sym_fused, - [104784] = 5, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2265), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3806), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3795), 29, + [102771] = 8, + ACTIONS(4614), 1, anon_sym_DOT, + ACTIONS(4616), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(4624), 1, anon_sym_STAR_STAR, + ACTIONS(4626), 1, 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, - [104833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4544), 5, + STATE(2628), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4542), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4468), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_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, @@ -210060,135 +215317,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [104878] = 13, - ACTIONS(4478), 1, - anon_sym_DOT, - ACTIONS(4480), 1, - anon_sym_LPAREN, - ACTIONS(4488), 1, - anon_sym_STAR_STAR, - ACTIONS(4490), 1, - anon_sym_LBRACK, - ACTIONS(4500), 1, - anon_sym_CARET, + [102826] = 5, + STATE(2315), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4482), 2, + STATE(2099), 2, + sym__not_in, + sym__is_not, + ACTIONS(4439), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4484), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4494), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2599), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4492), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 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, - [104943] = 11, - ACTIONS(4478), 1, + ACTIONS(4437), 29, anon_sym_DOT, - ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4488), 1, - anon_sym_STAR_STAR, - ACTIONS(4490), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4482), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4494), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2599), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4492), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 20, anon_sym_COMMA, - anon_sym_GT_GT, - 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_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [105004] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4540), 5, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4538), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -210204,19 +215361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105049] = 3, + [102875] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4540), 5, + ACTIONS(4114), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4538), 31, - sym_string_start, + ACTIONS(4112), 31, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -210246,34 +215403,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105094] = 6, - ACTIONS(4411), 1, - anon_sym_STAR, + [102920] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4408), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4414), 4, - anon_sym_as, + ACTIONS(4095), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4406), 25, + ACTIONS(4093), 31, anon_sym_DOT, - anon_sym_RPAREN, + 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_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -210283,6 +215436,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, @@ -210291,95 +215445,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105145] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(4028), 1, - anon_sym_extern, - ACTIONS(4036), 1, - anon_sym_enum, - ACTIONS(4040), 1, - anon_sym_fused, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, + [102965] = 8, + ACTIONS(4614), 1, + anon_sym_DOT, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3567), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4034), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4116), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2949), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 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(1343), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [105224] = 6, - ACTIONS(828), 1, - anon_sym_COLON_EQ, - ACTIONS(1332), 1, - anon_sym_COLON, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1327), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1329), 5, + STATE(2628), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4468), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -210395,162 +215492,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105275] = 20, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4120), 1, - anon_sym_enum, - ACTIONS(4124), 1, - anon_sym_fused, - ACTIONS(4140), 1, - anon_sym_extern, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3568), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4116), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4118), 2, - anon_sym_struct, - anon_sym_union, - STATE(2863), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 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(526), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [105354] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(4028), 1, - anon_sym_extern, - ACTIONS(4036), 1, - anon_sym_enum, - ACTIONS(4040), 1, - anon_sym_fused, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3567), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4034), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4116), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2949), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 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(1214), 6, - sym_class_definition, - sym_extern_block, - sym_cvar_decl, - sym_struct, - sym_enum, - sym_fused, - [105433] = 8, - ACTIONS(4478), 1, + [103020] = 11, + ACTIONS(4614), 1, anon_sym_DOT, - ACTIONS(4480), 1, + ACTIONS(4616), 1, anon_sym_LPAREN, - ACTIONS(4488), 1, + ACTIONS(4624), 1, anon_sym_STAR_STAR, - ACTIONS(4490), 1, + ACTIONS(4626), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2599), 2, + ACTIONS(4618), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4630), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2628), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4370), 5, + ACTIONS(4470), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 25, + ACTIONS(4628), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 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, @@ -210560,18 +215542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105488] = 3, + [103081] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4540), 5, + ACTIONS(4731), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4538), 31, - sym_string_start, + ACTIONS(4729), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -210579,13 +215560,14 @@ 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_by, 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, @@ -210601,28 +215583,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105533] = 5, - ACTIONS(818), 1, - anon_sym_COMMA, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + [103125] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 6, + ACTIONS(4735), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 28, + ACTIONS(4733), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + 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, @@ -210645,42 +215624,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [105582] = 8, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_STAR_STAR, - ACTIONS(4687), 1, - anon_sym_LBRACK, + [103169] = 7, + ACTIONS(4919), 1, + anon_sym_as, + ACTIONS(4921), 1, + anon_sym_if, + ACTIONS(4923), 1, + anon_sym_and, + ACTIONS(4925), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2653), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 4, + ACTIONS(4839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 25, + ACTIONS(4837), 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_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, @@ -210692,31 +215669,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105636] = 5, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + [103221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1327), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1329), 5, - anon_sym_as, + ACTIONS(4578), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 27, + ACTIONS(4570), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -210735,32 +215710,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105684] = 3, + [103265] = 6, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(3920), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, - anon_sym_as, + ACTIONS(3905), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3910), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 30, + ACTIONS(3899), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_by, 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, @@ -210776,17 +215754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105728] = 3, + [103315] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, + ACTIONS(4819), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 30, + ACTIONS(4817), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -210817,17 +215795,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105772] = 3, + [103359] = 6, + ACTIONS(4923), 1, + anon_sym_and, + ACTIONS(4925), 1, + anon_sym_or, + ACTIONS(4927), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4621), 5, - anon_sym_as, + ACTIONS(4746), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4619), 30, + ACTIONS(4741), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -210845,8 +215828,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, @@ -210858,29 +215839,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105816] = 3, + [103409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4540), 5, - anon_sym_as, + ACTIONS(4835), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4538), 30, - sym_string_start, + ACTIONS(4833), 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_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -210899,36 +215880,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105860] = 3, + [103453] = 5, + ACTIONS(4923), 1, + anon_sym_and, + ACTIONS(4925), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4621), 5, + ACTIONS(4791), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4619), 30, + ACTIONS(4789), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_by, 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, @@ -210940,20 +215923,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105904] = 3, + [103501] = 4, + ACTIONS(4923), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3967), 5, + ACTIONS(4716), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3965), 30, + ACTIONS(4714), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -210966,9 +215950,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, @@ -210981,32 +215965,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105948] = 3, + [103547] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 5, - anon_sym_as, + ACTIONS(4843), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 30, + ACTIONS(4841), 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, @@ -211022,27 +216005,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [105992] = 3, + sym_type_conversion, + [103591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 5, - anon_sym_as, + ACTIONS(4787), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 30, + ACTIONS(4785), 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_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -211063,32 +216047,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106036] = 3, + [103635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3978), 5, - anon_sym_as, + ACTIONS(4827), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 30, + ACTIONS(4825), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -211104,17 +216088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106080] = 3, + [103679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 5, + ACTIONS(4735), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 30, + ACTIONS(4733), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -211145,32 +216129,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106124] = 3, + [103723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 5, - anon_sym_as, + ACTIONS(4819), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 30, + ACTIONS(4817), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -211186,17 +216170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106168] = 3, + [103767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 5, + ACTIONS(4114), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3995), 30, + ACTIONS(4112), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -211227,38 +216211,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106212] = 3, + [103811] = 6, + ACTIONS(4575), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4559), 5, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(4580), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4578), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4557), 30, - anon_sym_DOT, + ACTIONS(4572), 4, anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4570), 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, @@ -211267,26 +216255,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106256] = 3, + [103861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 5, - anon_sym_as, + ACTIONS(4705), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 30, + ACTIONS(4703), 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, @@ -211309,22 +216295,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106300] = 3, + sym_type_conversion, + [103905] = 7, + ACTIONS(4919), 1, + anon_sym_as, + ACTIONS(4921), 1, + anon_sym_if, + ACTIONS(4923), 1, + anon_sym_and, + ACTIONS(4925), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4743), 5, - anon_sym_as, + ACTIONS(4797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 30, + ACTIONS(4793), 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, @@ -211337,8 +216330,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, @@ -211350,24 +216341,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106344] = 3, + [103957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 5, + ACTIONS(4648), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 30, + ACTIONS(4646), 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, @@ -211391,29 +216382,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106388] = 3, + [104001] = 5, + ACTIONS(874), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(1361), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1363), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 30, + ACTIONS(1576), 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -211432,29 +216425,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106432] = 3, + [104049] = 5, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(4062), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4067), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 30, + ACTIONS(4064), 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -211473,27 +216468,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106476] = 3, + [104097] = 5, + ACTIONS(874), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 5, + ACTIONS(1361), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1363), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 30, + ACTIONS(1576), 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -211514,63 +216511,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106520] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4599), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4597), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + [104145] = 7, + ACTIONS(4919), 1, anon_sym_as, - anon_sym_GT_GT, + ACTIONS(4921), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, + ACTIONS(4923), 1, anon_sym_and, + ACTIONS(4925), 1, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [106564] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 5, - anon_sym_as, + ACTIONS(4831), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 30, + ACTIONS(4829), 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, @@ -211583,8 +216545,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, @@ -211596,31 +216556,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106608] = 3, + [104197] = 6, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(4930), 1, + anon_sym_LBRACK, + STATE(4519), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, + ACTIONS(3910), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 30, + ACTIONS(3899), 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, @@ -211636,21 +216600,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106652] = 3, + [104247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 5, + ACTIONS(4807), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 30, + ACTIONS(4805), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -211663,6 +216625,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, @@ -211678,23 +216641,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106696] = 3, + [104291] = 7, + ACTIONS(4932), 1, + anon_sym_as, + ACTIONS(4934), 1, + anon_sym_if, + ACTIONS(4936), 1, + anon_sym_and, + ACTIONS(4938), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4303), 5, + ACTIONS(4831), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4289), 30, + ACTIONS(4829), 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, @@ -211705,8 +216674,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, @@ -211719,17 +216686,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [106740] = 3, + [104343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4723), 5, + ACTIONS(4771), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4721), 30, + ACTIONS(4769), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -211760,17 +216727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106784] = 3, + [104387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4414), 5, + ACTIONS(4807), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4406), 30, + ACTIONS(4805), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -211778,13 +216745,14 @@ 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_by, 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, @@ -211800,26 +216768,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [106828] = 3, + [104431] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 5, - anon_sym_as, + ACTIONS(4815), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 30, + ACTIONS(4813), 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, @@ -211842,29 +216808,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106872] = 5, - ACTIONS(1440), 1, - sym_string_start, + sym_type_conversion, + [104475] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2382), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4346), 4, + ACTIONS(4652), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4344), 28, + ACTIONS(4650), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -211885,17 +216850,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106920] = 3, + [104519] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4414), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4406), 30, + ACTIONS(4841), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -211926,28 +216891,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [106964] = 7, - ACTIONS(4815), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_if, - ACTIONS(4819), 1, - anon_sym_and, - ACTIONS(4821), 1, - anon_sym_or, + [104563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 4, + ACTIONS(4652), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4627), 27, + ACTIONS(4650), 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, @@ -211960,45 +216919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, 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, - [107016] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4731), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4729), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_by, - 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, @@ -212012,24 +216932,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107060] = 3, + [104607] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 5, + ACTIONS(4843), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4623), 30, + ACTIONS(4841), 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, @@ -212052,18 +216973,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107104] = 3, + [104651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4614), 5, + ACTIONS(4731), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4612), 30, + ACTIONS(4729), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212071,14 +216991,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_by, 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, @@ -212094,17 +217013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107148] = 3, + sym_type_conversion, + [104695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 5, + ACTIONS(4705), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4725), 30, + ACTIONS(4703), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212135,32 +217055,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107192] = 3, + [104739] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 5, + ACTIONS(4705), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 30, + ACTIONS(4703), 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_by, 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, @@ -212176,32 +217096,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107236] = 3, + [104783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4747), 5, + ACTIONS(4815), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4745), 30, + ACTIONS(4813), 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_by, 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, @@ -212217,32 +217137,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107280] = 3, + [104827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4559), 5, + ACTIONS(4731), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4557), 30, + ACTIONS(4729), 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_by, 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, @@ -212258,24 +217178,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107324] = 3, + [104871] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 5, + ACTIONS(4095), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4737), 30, + ACTIONS(4093), 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, @@ -212298,25 +217219,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107368] = 3, + [104915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4743), 5, + ACTIONS(4076), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 30, + ACTIONS(4074), 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, @@ -212339,25 +217260,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107412] = 3, + [104959] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 5, + ACTIONS(4076), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 30, + ACTIONS(4074), 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, @@ -212380,18 +217301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107456] = 3, + [105003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3978), 5, + ACTIONS(4720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 30, + ACTIONS(4718), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212422,17 +217342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [107500] = 3, + [105047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3974), 5, + ACTIONS(4727), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 30, + ACTIONS(4725), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212440,14 +217360,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_by, 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, @@ -212463,39 +217382,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107544] = 6, - ACTIONS(4819), 1, - anon_sym_and, - ACTIONS(4821), 1, - anon_sym_or, - ACTIONS(4823), 1, - anon_sym_as, + sym_type_conversion, + [105091] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 4, + ACTIONS(859), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4643), 28, + ACTIONS(857), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -212507,21 +217424,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107594] = 5, - ACTIONS(4819), 1, - anon_sym_and, - ACTIONS(4821), 1, - anon_sym_or, + [105135] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 5, + ACTIONS(4091), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4650), 28, + ACTIONS(4089), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212539,6 +217452,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, @@ -212550,19 +217465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107642] = 4, - ACTIONS(4819), 1, - anon_sym_and, + [105179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 5, + ACTIONS(4720), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 29, + ACTIONS(4718), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212580,6 +217493,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, @@ -212592,28 +217506,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107688] = 7, - ACTIONS(4815), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_if, - ACTIONS(4819), 1, - anon_sym_and, - ACTIONS(4821), 1, - anon_sym_or, + [105223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4660), 4, + ACTIONS(4091), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4658), 27, + ACTIONS(4089), 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, @@ -212626,6 +217534,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, @@ -212637,17 +217547,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107740] = 3, + [105267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4563), 5, + ACTIONS(4815), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4561), 30, + ACTIONS(4813), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212655,13 +217565,14 @@ 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_by, 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, @@ -212677,33 +217588,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107784] = 3, + [105311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, + ACTIONS(4727), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 30, + ACTIONS(4725), 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_by, 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, @@ -212719,39 +217629,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107828] = 7, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_if, - ACTIONS(4830), 1, - anon_sym_and, - ACTIONS(4832), 1, - anon_sym_or, + [105355] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 5, + ACTIONS(4648), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4627), 26, + ACTIONS(4646), 30, + sym_string_start, 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, @@ -212763,32 +217670,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107880] = 3, + [105399] = 5, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 5, + ACTIONS(3905), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3910), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4639), 30, + ACTIONS(3899), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -212804,18 +217713,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [107924] = 3, + [105447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4563), 5, + ACTIONS(4739), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4561), 30, + ACTIONS(4737), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212823,14 +217731,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_by, 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, @@ -212846,27 +217753,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [107968] = 3, + sym_type_conversion, + [105491] = 5, + ACTIONS(1474), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 5, + STATE(2432), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3910), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 30, + ACTIONS(3899), 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_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -212887,26 +217797,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108012] = 6, - ACTIONS(4830), 1, - anon_sym_and, - ACTIONS(4832), 1, - anon_sym_or, - ACTIONS(4834), 1, - anon_sym_as, + [105539] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 5, + ACTIONS(4712), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4643), 27, + ACTIONS(4710), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -212919,6 +217824,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, @@ -212931,17 +217838,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [108062] = 3, + [105583] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4555), 5, + ACTIONS(3910), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4553), 30, + ACTIONS(3899), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212949,14 +217856,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_by, 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, @@ -212972,21 +217878,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108106] = 5, - ACTIONS(4830), 1, - anon_sym_and, - ACTIONS(4832), 1, - anon_sym_or, + sym_type_conversion, + [105627] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 5, + ACTIONS(4823), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4650), 28, + ACTIONS(4821), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -212994,15 +217897,18 @@ 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_by, 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, @@ -213014,24 +217920,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108154] = 3, + [105671] = 7, + ACTIONS(4932), 1, + anon_sym_as, + ACTIONS(4934), 1, + anon_sym_if, + ACTIONS(4936), 1, + anon_sym_and, + ACTIONS(4938), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 5, + ACTIONS(4797), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 30, + ACTIONS(4793), 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, @@ -213042,8 +217953,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, @@ -213056,19 +217965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [108198] = 4, - ACTIONS(4830), 1, - anon_sym_and, + [105723] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 5, + ACTIONS(4779), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 29, + ACTIONS(4777), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213085,6 +217992,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, @@ -213098,28 +218006,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [108244] = 7, - ACTIONS(4815), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_if, - ACTIONS(4819), 1, - anon_sym_and, - ACTIONS(4821), 1, - anon_sym_or, + [105767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4664), 4, + ACTIONS(4763), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4662), 27, + ACTIONS(4761), 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, @@ -213132,6 +218034,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, @@ -213143,73 +218047,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108296] = 11, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_STAR_STAR, - ACTIONS(4687), 1, - anon_sym_LBRACK, + [105811] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4679), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4691), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2653), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4689), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 20, - anon_sym_COMMA, + ACTIONS(4407), 5, anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [108356] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4567), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 30, + ACTIONS(4393), 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, @@ -213232,38 +218088,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108400] = 8, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_STAR_STAR, - ACTIONS(4687), 1, - anon_sym_LBRACK, + [105855] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2653), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 4, + ACTIONS(4779), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 25, + ACTIONS(4777), 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, @@ -213279,32 +218129,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108454] = 3, + [105899] = 6, + ACTIONS(874), 1, + anon_sym_COLON_EQ, + ACTIONS(893), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, - anon_sym_as, + ACTIONS(864), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(859), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 30, + ACTIONS(857), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, + anon_sym_by, 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, @@ -213320,45 +218173,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108498] = 10, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_STAR_STAR, - ACTIONS(4687), 1, - anon_sym_LBRACK, + [105949] = 4, + ACTIONS(4103), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4679), 2, + ACTIONS(4106), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(2653), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4689), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 22, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4101), 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_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, @@ -213368,77 +218214,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108556] = 14, - ACTIONS(4675), 1, + sym_type_conversion, + [105995] = 20, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4677), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4685), 1, + ACTIONS(4524), 1, anon_sym_STAR_STAR, - ACTIONS(4687), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(4695), 1, + ACTIONS(4532), 1, + anon_sym_PIPE, + ACTIONS(4534), 1, anon_sym_AMP, - ACTIONS(4697), 1, + ACTIONS(4536), 1, anon_sym_CARET, + ACTIONS(4538), 1, + anon_sym_is, + STATE(2706), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4679), 2, + ACTIONS(4518), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4681), 2, + ACTIONS(4520), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4691), 2, + ACTIONS(4530), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2653), 2, + ACTIONS(4540), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2047), 2, + sym__not_in, + sym__is_not, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4689), 3, + ACTIONS(4528), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 16, - anon_sym_COMMA, + ACTIONS(4393), 4, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_is, + ACTIONS(4522), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108622] = 3, + [106073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 5, - anon_sym_as, + ACTIONS(4847), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4008), 30, + ACTIONS(4845), 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, @@ -213461,118 +218313,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108666] = 13, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_STAR_STAR, - ACTIONS(4687), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_CARET, + sym_type_conversion, + [106117] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4679), 2, + ACTIONS(4062), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(4067), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4064), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4691), 2, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - STATE(2653), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4689), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 17, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [106163] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4851), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4849), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108730] = 12, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_STAR_STAR, - ACTIONS(4687), 1, - anon_sym_LBRACK, + sym_type_conversion, + [106207] = 4, + ACTIONS(874), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4679), 2, + ACTIONS(859), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(857), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4691), 2, + 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, - STATE(2653), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4689), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 18, - anon_sym_COMMA, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [106253] = 4, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3910), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3899), 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_PLUS, anon_sym_not, anon_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, - [108792] = 3, + [106299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 5, + ACTIONS(4775), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 30, + ACTIONS(4773), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213580,14 +218499,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_by, 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, @@ -213603,17 +218521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108836] = 3, + sym_type_conversion, + [106343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 5, + ACTIONS(859), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 30, + ACTIONS(857), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213621,14 +218540,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_by, 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, @@ -213644,31 +218562,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108880] = 3, + sym_type_conversion, + [106387] = 5, + STATE(2462), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4555), 5, + STATE(2082), 2, + sym__not_in, + sym__is_not, + ACTIONS(4439), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4553), 30, + ACTIONS(4437), 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -213684,18 +218606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [108924] = 3, + [106435] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 5, + ACTIONS(4847), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4729), 30, + ACTIONS(4845), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213726,17 +218647,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [108968] = 3, + [106479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 5, + ACTIONS(4835), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 30, + ACTIONS(4833), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213767,17 +218688,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [109012] = 3, + [106523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 5, + ACTIONS(4787), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 30, + ACTIONS(4785), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213808,26 +218729,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [109056] = 4, + [106567] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3947), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(3954), 5, - anon_sym_as, + ACTIONS(4823), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 27, + ACTIONS(4821), 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, @@ -213850,34 +218769,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109102] = 5, - ACTIONS(4837), 1, - sym_string_start, + sym_type_conversion, + [106611] = 4, + ACTIONS(3905), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2382), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(4335), 4, + ACTIONS(3910), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4333), 28, + ACTIONS(3899), 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, @@ -213893,33 +218811,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109150] = 4, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [106657] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 5, - anon_sym_as, + ACTIONS(4827), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 29, + ACTIONS(4825), 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, @@ -213935,19 +218852,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109196] = 4, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [106701] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 5, + ACTIONS(4612), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 29, + ACTIONS(4610), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -213977,29 +218894,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109242] = 7, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_if, - ACTIONS(4830), 1, - anon_sym_and, - ACTIONS(4832), 1, - anon_sym_or, + [106745] = 4, + ACTIONS(4053), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4660), 5, + ACTIONS(4056), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4658), 26, + ACTIONS(4051), 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, @@ -214010,6 +218922,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, @@ -214022,24 +218936,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [109294] = 5, - ACTIONS(3808), 1, + [106791] = 4, + ACTIONS(874), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3801), 2, + ACTIONS(859), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(857), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [106837] = 5, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2447), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4443), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4441), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3806), 5, + 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, + [106885] = 4, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3910), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 27, + ACTIONS(3899), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -214065,17 +219063,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109342] = 3, + [106931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 5, + ACTIONS(4407), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 30, + ACTIONS(4393), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214083,55 +219081,14 @@ 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_by, 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, - [109386] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3967), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3965), 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, @@ -214147,17 +219104,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109430] = 3, + [106975] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + ACTIONS(4106), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 30, + ACTIONS(4101), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214188,17 +219145,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109474] = 3, + [107019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, + ACTIONS(4110), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 30, + ACTIONS(4108), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214206,14 +219163,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_by, 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, @@ -214229,17 +219185,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109518] = 3, + sym_type_conversion, + [107063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 5, + ACTIONS(4851), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 30, + ACTIONS(4849), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214270,17 +219227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109562] = 3, + [107107] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4614), 5, + ACTIONS(4775), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4612), 30, + ACTIONS(4773), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214311,17 +219268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109606] = 3, + [107151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 5, + ACTIONS(4712), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 30, + ACTIONS(4710), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214352,35 +219309,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109650] = 3, + [107195] = 7, + ACTIONS(4940), 1, + anon_sym_as, + ACTIONS(4942), 1, + anon_sym_if, + ACTIONS(4944), 1, + anon_sym_and, + ACTIONS(4946), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + ACTIONS(4797), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 30, + ACTIONS(4793), 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_by, 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, @@ -214392,25 +219354,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109694] = 3, + [107247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4544), 5, + ACTIONS(4803), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4542), 30, - sym_string_start, + ACTIONS(4801), 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, @@ -214419,6 +219379,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, @@ -214434,68 +219395,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109738] = 6, - ACTIONS(828), 1, - anon_sym_COLON_EQ, - ACTIONS(847), 1, - anon_sym_from, + [107291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(818), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(813), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(811), 26, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4716), 5, anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_by, - 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, - [109788] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4575), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 30, + ACTIONS(4714), 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, @@ -214518,40 +219436,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109832] = 7, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_if, - ACTIONS(4830), 1, - anon_sym_and, - ACTIONS(4832), 1, - anon_sym_or, + [107335] = 5, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4664), 5, + ACTIONS(3905), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3910), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4662), 26, + ACTIONS(3899), 27, 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_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, @@ -214563,18 +219479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [109884] = 3, + [107383] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 5, + ACTIONS(4578), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 30, + ACTIONS(4570), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214605,17 +219520,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109928] = 3, + [107427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 5, + ACTIONS(3910), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 30, + ACTIONS(3899), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214646,17 +219561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [109972] = 3, + [107471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 5, + ACTIONS(4783), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4008), 30, + ACTIONS(4781), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214664,13 +219579,14 @@ 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_by, 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, @@ -214686,32 +219602,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110016] = 3, + [107515] = 5, + ACTIONS(4948), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 5, + STATE(2447), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(4463), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4729), 30, + ACTIONS(4461), 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_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -214727,68 +219645,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110060] = 5, + [107563] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1332), 3, + ACTIONS(4110), 5, anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1530), 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(1327), 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, - [110108] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3967), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3965), 30, + ACTIONS(4108), 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, @@ -214811,32 +219686,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110152] = 3, + [107607] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 5, + ACTIONS(4612), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 30, + ACTIONS(4610), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -214852,18 +219727,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110196] = 3, + [107651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 5, + ACTIONS(4716), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 30, + ACTIONS(4714), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214871,13 +219745,14 @@ 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_by, 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, @@ -214893,18 +219768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110240] = 3, + [107695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 5, + ACTIONS(4783), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 30, + ACTIONS(4781), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214935,17 +219809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [110284] = 3, + [107739] = 4, + ACTIONS(4944), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 5, + ACTIONS(4716), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 30, + ACTIONS(4714), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -214953,16 +219829,16 @@ 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_by, 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, @@ -214975,78 +219851,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [110328] = 5, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + [107785] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(818), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(813), 5, - anon_sym_as, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1366), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 27, + ACTIONS(1576), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1361), 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, - [110376] = 5, - ACTIONS(1440), 1, - sym_string_start, + sym_type_conversion, + [107833] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2335), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3806), 4, + ACTIONS(4114), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 28, + ACTIONS(4112), 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, @@ -215062,66 +219934,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110424] = 3, + sym_type_conversion, + [107877] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 5, + ACTIONS(1363), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1366), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 30, + ACTIONS(1576), 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(1361), 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, - [110468] = 3, + [107925] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 5, - anon_sym_as, + ACTIONS(4771), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4725), 30, + ACTIONS(4769), 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, @@ -215144,100 +220018,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110512] = 20, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4378), 1, - anon_sym_DOT, - ACTIONS(4380), 1, - anon_sym_LPAREN, - ACTIONS(4388), 1, - anon_sym_STAR_STAR, - ACTIONS(4390), 1, - anon_sym_LBRACK, - ACTIONS(4396), 1, - anon_sym_PIPE, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_CARET, - ACTIONS(4402), 1, - anon_sym_is, - STATE(2686), 1, - aux_sym_comparison_operator_repeat1, + sym_type_conversion, + [107969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4382), 2, + ACTIONS(4095), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4384), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4404), 2, anon_sym_LT, anon_sym_GT, - STATE(1983), 2, - sym__not_in, - sym__is_not, - STATE(2312), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4392), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4289), 4, + ACTIONS(4093), 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, - ACTIONS(4386), 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, - [110590] = 5, + sym_type_conversion, + [108013] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 2, + ACTIONS(4076), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3957), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 14, + ACTIONS(4074), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3947), 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, @@ -215245,17 +220101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [110638] = 3, + [108057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 5, + ACTIONS(4076), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 30, + ACTIONS(4074), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215286,25 +220142,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [110682] = 3, + [108101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 5, - anon_sym_as, + ACTIONS(4091), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 30, + ACTIONS(4089), 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, @@ -215327,25 +220182,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110726] = 3, + sym_type_conversion, + [108145] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4747), 5, - anon_sym_as, + ACTIONS(4091), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4745), 30, + ACTIONS(4089), 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, @@ -215368,25 +220223,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110770] = 3, + sym_type_conversion, + [108189] = 9, + ACTIONS(4452), 1, + anon_sym_not, + ACTIONS(4954), 1, + anon_sym_is, + STATE(2462), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4414), 5, + ACTIONS(4447), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4957), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2082), 2, + sym__not_in, + sym__is_not, + ACTIONS(4951), 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(4445), 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_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, + [108245] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4735), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4406), 30, + ACTIONS(4733), 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, @@ -215409,32 +220311,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110814] = 3, + sym_type_conversion, + [108289] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3978), 5, + ACTIONS(4067), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4070), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4064), 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(4062), 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, + [108337] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4106), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 30, + ACTIONS(4101), 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, @@ -215450,25 +220395,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110858] = 3, + sym_type_conversion, + [108381] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4559), 5, - anon_sym_as, + ACTIONS(4819), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4557), 30, + ACTIONS(4817), 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, @@ -215491,17 +220436,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110902] = 3, + sym_type_conversion, + [108425] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3974), 5, + ACTIONS(4578), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 30, + ACTIONS(4570), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215532,17 +220478,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [110946] = 3, + [108469] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4303), 5, + ACTIONS(4056), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4289), 30, + ACTIONS(4051), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215573,27 +220519,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [110990] = 8, - ACTIONS(4675), 1, + [108513] = 8, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4677), 1, + ACTIONS(4656), 1, anon_sym_LPAREN, - ACTIONS(4685), 1, + ACTIONS(4664), 1, anon_sym_STAR_STAR, - ACTIONS(4687), 1, + ACTIONS(4666), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2653), 2, + STATE(2699), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4420), 4, + ACTIONS(4512), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4418), 25, + ACTIONS(4510), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -215619,24 +220565,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111044] = 3, + [108567] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4614), 5, + ACTIONS(4767), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4612), 30, + ACTIONS(4765), 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, @@ -215659,35 +220606,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [111088] = 8, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_STAR_STAR, - ACTIONS(4687), 1, - anon_sym_LBRACK, + [108611] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2653), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4374), 4, + ACTIONS(4091), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 25, + ACTIONS(4089), 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -215706,29 +220647,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111142] = 3, + [108655] = 8, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4666), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 5, + STATE(2699), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4504), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4623), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4502), 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_by, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -215747,40 +220693,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111186] = 7, - ACTIONS(4840), 1, - anon_sym_as, - ACTIONS(4842), 1, - anon_sym_if, - ACTIONS(4844), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_or, + [108709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 5, + ACTIONS(4763), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4627), 26, + ACTIONS(4761), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_by, 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, @@ -215792,17 +220733,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111238] = 3, + sym_type_conversion, + [108753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 5, + ACTIONS(4763), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4639), 30, + ACTIONS(4761), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215833,32 +220775,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111282] = 6, - ACTIONS(4844), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_or, - ACTIONS(4848), 1, - anon_sym_as, + [108797] = 5, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 5, + ACTIONS(4062), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4067), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4643), 27, + ACTIONS(4064), 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_else, anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -215866,6 +220805,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, @@ -215877,31 +220818,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111332] = 5, - ACTIONS(4844), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_or, + [108845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 5, + ACTIONS(4091), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4650), 28, + ACTIONS(4089), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -215909,6 +220846,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, @@ -215920,17 +220859,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111380] = 3, + [108889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 5, + ACTIONS(4779), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 30, + ACTIONS(4777), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -215961,36 +220900,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111424] = 4, - ACTIONS(4844), 1, - anon_sym_and, + [108933] = 4, + ACTIONS(4080), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 5, + ACTIONS(4083), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 29, + ACTIONS(4078), 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_by, 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, @@ -216003,40 +220941,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111470] = 7, - ACTIONS(4840), 1, - anon_sym_as, - ACTIONS(4842), 1, - anon_sym_if, - ACTIONS(4844), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_or, + sym_type_conversion, + [108979] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4660), 5, + ACTIONS(4056), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4658), 26, + ACTIONS(4051), 30, 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_by, 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, @@ -216048,40 +220983,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111522] = 7, - ACTIONS(4840), 1, - anon_sym_as, - ACTIONS(4842), 1, - anon_sym_if, - ACTIONS(4844), 1, - anon_sym_and, - ACTIONS(4846), 1, - anon_sym_or, + [109023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4664), 5, + ACTIONS(4083), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4662), 26, + ACTIONS(4078), 30, 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_by, 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, @@ -216093,34 +221024,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111574] = 5, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + [109067] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1327), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1329), 5, + ACTIONS(859), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 27, + ACTIONS(857), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -216136,28 +221065,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111622] = 5, - ACTIONS(3808), 1, + [109111] = 5, + ACTIONS(874), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3947), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3954), 5, + ACTIONS(864), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(859), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 27, + ACTIONS(857), 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, @@ -216179,17 +221108,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111670] = 3, + [109159] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(4739), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 30, + ACTIONS(4737), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -216220,7 +221149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111714] = 3, + [109203] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -216261,26 +221190,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111758] = 5, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, + [109247] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3801), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3806), 5, + ACTIONS(4783), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 27, + ACTIONS(4781), 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, @@ -216289,6 +221215,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, @@ -216304,34 +221231,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111806] = 5, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, + [109291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3947), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3954), 5, + ACTIONS(4823), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 27, + ACTIONS(4821), 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, @@ -216347,32 +221272,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111854] = 3, + [109335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 5, - anon_sym_as, + ACTIONS(4847), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 30, + ACTIONS(4845), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -216388,17 +221313,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111898] = 3, + [109379] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4067), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4070), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4064), 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(4062), 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, + [109427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4743), 5, + ACTIONS(4720), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 30, + ACTIONS(4718), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -216429,17 +221397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111942] = 3, + [109471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 5, + ACTIONS(4727), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 30, + ACTIONS(4725), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -216470,35 +221438,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [111986] = 6, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, - ACTIONS(3816), 1, - anon_sym_from, + [109515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3801), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3806), 5, + ACTIONS(4811), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 26, + ACTIONS(4809), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_by, + 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, @@ -216514,70 +221479,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112036] = 5, + [109559] = 5, + ACTIONS(874), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 2, + ACTIONS(864), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(859), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3957), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 14, + ACTIONS(857), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3947), 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, - [112084] = 3, + [109607] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 5, - anon_sym_as, + ACTIONS(4811), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4008), 30, + ACTIONS(4809), 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_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -216598,17 +221563,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112128] = 3, + [109651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 5, + ACTIONS(4056), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4725), 30, + ACTIONS(4051), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -216639,34 +221604,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [112172] = 5, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + [109695] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(818), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(813), 5, - anon_sym_as, + ACTIONS(4083), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 27, + ACTIONS(4078), 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, @@ -216682,32 +221644,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112220] = 3, + sym_type_conversion, + [109739] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3974), 5, - anon_sym_as, + ACTIONS(4851), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 30, + ACTIONS(4849), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -216723,46 +221686,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112264] = 9, - ACTIONS(4355), 1, - anon_sym_not, - ACTIONS(4854), 1, - anon_sym_is, - STATE(2450), 1, - aux_sym_comparison_operator_repeat1, + [109783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4350), 2, + ACTIONS(4775), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(4857), 2, anon_sym_LT, anon_sym_GT, - STATE(2039), 2, - sym__not_in, - sym__is_not, - ACTIONS(4851), 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(4348), 20, + ACTIONS(4773), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_by, 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, @@ -216770,17 +221721,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [112320] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [109827] = 15, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4666), 1, + anon_sym_LBRACK, + ACTIONS(4672), 1, + anon_sym_PIPE, + ACTIONS(4674), 1, + anon_sym_AMP, + ACTIONS(4676), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 5, + ACTIONS(4508), 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(4670), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2699), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4668), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4506), 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, + [109895] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4807), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 30, + ACTIONS(4805), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -216788,14 +221798,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_by, 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, @@ -216811,24 +221820,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112364] = 3, + sym_type_conversion, + [109939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 5, + ACTIONS(4106), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 30, + ACTIONS(4101), 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, @@ -216851,29 +221862,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [112408] = 5, - STATE(2450), 1, - aux_sym_comparison_operator_repeat1, + [109983] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2039), 2, - sym__not_in, - sym__is_not, - ACTIONS(4342), 4, + ACTIONS(4114), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4340), 28, + ACTIONS(4112), 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, @@ -216895,33 +221903,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112456] = 4, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + [110027] = 7, + ACTIONS(4940), 1, + anon_sym_as, + ACTIONS(4942), 1, + anon_sym_if, + ACTIONS(4944), 1, + anon_sym_and, + ACTIONS(4946), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 5, - anon_sym_as, + ACTIONS(4839), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 29, + ACTIONS(4837), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_by, + 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, + [110079] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4407), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4393), 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, @@ -216937,32 +221988,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112502] = 6, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, - ACTIONS(4860), 1, - anon_sym_LBRACK, - STATE(4507), 1, - sym_type_parameter, + sym_type_conversion, + [110123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 5, + ACTIONS(4712), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 27, + ACTIONS(4710), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -216981,28 +222030,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112552] = 4, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, + [110167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 5, - anon_sym_as, + ACTIONS(4083), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 29, + ACTIONS(4078), 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_else, anon_sym_in, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -217023,33 +222071,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112598] = 6, - ACTIONS(4411), 1, - anon_sym_STAR, + [110211] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4414), 3, + ACTIONS(4811), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4408), 4, + ACTIONS(4809), 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, - ACTIONS(4406), 25, + anon_sym_CARET, + anon_sym_LT_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, + [110255] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4767), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4765), 30, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_by, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -217059,6 +222144,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, @@ -217067,17 +222153,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112648] = 3, + [110299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 5, + ACTIONS(3910), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 30, + ACTIONS(3899), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217108,25 +222194,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112692] = 3, + [110343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, - anon_sym_as, + ACTIONS(4652), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 30, + ACTIONS(4650), 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, @@ -217149,17 +222234,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112736] = 3, + sym_type_conversion, + [110387] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 5, + ACTIONS(4803), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 30, + ACTIONS(4801), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217190,32 +222276,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112780] = 3, + [110431] = 7, + ACTIONS(4940), 1, + anon_sym_as, + ACTIONS(4942), 1, + anon_sym_if, + ACTIONS(4944), 1, + anon_sym_and, + ACTIONS(4946), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4563), 5, - anon_sym_as, + ACTIONS(4831), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4829), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_by, + 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, + [110483] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4771), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4561), 30, + ACTIONS(4769), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -217231,36 +222362,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112824] = 3, + [110527] = 6, + ACTIONS(4944), 1, + anon_sym_and, + ACTIONS(4946), 1, + anon_sym_or, + ACTIONS(4960), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 5, - anon_sym_as, + ACTIONS(4746), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 30, + ACTIONS(4741), 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_else, anon_sym_in, + anon_sym_by, 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, @@ -217272,17 +222406,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112868] = 3, + [110577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 5, + ACTIONS(4835), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4639), 30, + ACTIONS(4833), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217313,17 +222447,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112912] = 3, + [110621] = 7, + ACTIONS(4932), 1, + anon_sym_as, + ACTIONS(4934), 1, + anon_sym_if, + ACTIONS(4936), 1, + anon_sym_and, + ACTIONS(4938), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4839), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4837), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + 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_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, + [110673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 5, + ACTIONS(4803), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3995), 30, + ACTIONS(4801), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -217331,14 +222510,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_by, 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, @@ -217354,25 +222532,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [112956] = 3, + sym_type_conversion, + [110717] = 6, + ACTIONS(4936), 1, + anon_sym_and, + ACTIONS(4938), 1, + anon_sym_or, + ACTIONS(4963), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4555), 5, - anon_sym_as, + ACTIONS(4746), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4553), 30, + ACTIONS(4741), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -217382,8 +222565,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, @@ -217395,25 +222576,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113000] = 3, + sym_type_conversion, + [110767] = 5, + ACTIONS(4936), 1, + anon_sym_and, + ACTIONS(4938), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 5, - anon_sym_as, + ACTIONS(4791), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 30, + ACTIONS(4789), 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -217423,8 +222608,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, @@ -217436,25 +222619,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113044] = 3, + sym_type_conversion, + [110815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 5, - anon_sym_as, + ACTIONS(4716), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 30, + ACTIONS(4714), 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, @@ -217477,19 +222660,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113088] = 3, + sym_type_conversion, + [110859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4303), 5, + ACTIONS(4095), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4289), 30, + ACTIONS(4093), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -217502,7 +222687,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, @@ -217518,36 +222702,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113132] = 4, - ACTIONS(3971), 1, - anon_sym_COMMA, + [110903] = 5, + ACTIONS(4944), 1, + anon_sym_and, + ACTIONS(4946), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3974), 5, + ACTIONS(4791), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 29, + ACTIONS(4789), 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_by, 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, @@ -217559,20 +222745,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [113178] = 3, + [110951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 5, + ACTIONS(4076), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 30, + ACTIONS(4074), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -217585,7 +222771,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, @@ -217601,31 +222786,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113222] = 3, + [110995] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4621), 5, + ACTIONS(4076), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4619), 30, + ACTIONS(4074), 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, @@ -217641,25 +222827,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [113266] = 3, + [111039] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 5, + ACTIONS(4787), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 30, + ACTIONS(4785), 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, @@ -217682,32 +222868,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [113310] = 3, + [111083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 5, + ACTIONS(4110), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3995), 30, + ACTIONS(4108), 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, @@ -217723,26 +222909,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [113354] = 4, - ACTIONS(3801), 1, - anon_sym_COMMA, + [111127] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 5, + ACTIONS(4827), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 29, + ACTIONS(4825), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + 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, @@ -217765,26 +222950,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [113400] = 3, + [111171] = 4, + ACTIONS(4936), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 5, - anon_sym_as, + ACTIONS(4716), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4737), 30, + ACTIONS(4714), 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, @@ -217794,7 +222979,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, @@ -217807,28 +222991,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113444] = 3, + sym_type_conversion, + [111217] = 8, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4666), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4544), 5, - anon_sym_as, + STATE(2699), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4542), 30, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4468), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -217848,38 +223038,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113488] = 4, - ACTIONS(3986), 1, - anon_sym_COMMA, + [111271] = 11, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4666), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4470), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4658), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4670), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2699), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4668), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 20, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -217889,32 +223087,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [113534] = 3, + [111331] = 8, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4666), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4723), 5, + STATE(2699), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4721), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4468), 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, @@ -217930,38 +223133,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [113578] = 3, + [111385] = 10, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4666), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4470), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4658), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2699), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4668), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -217971,40 +223181,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [113622] = 5, + [111443] = 14, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4666), 1, + anon_sym_LBRACK, + ACTIONS(4674), 1, + anon_sym_AMP, + ACTIONS(4676), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1332), 3, - anon_sym_EQ, + ACTIONS(4470), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4658), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4660), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(4670), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(2699), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4668), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1327), 16, + ACTIONS(4468), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -218014,63 +223233,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [113670] = 3, + [111509] = 13, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, + anon_sym_STAR_STAR, + ACTIONS(4666), 1, + anon_sym_LBRACK, + ACTIONS(4676), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4747), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4470), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4745), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4658), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4660), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4670), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2699), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4668), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 17, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [111573] = 12, + ACTIONS(4654), 1, + anon_sym_DOT, + ACTIONS(4656), 1, + anon_sym_LPAREN, + ACTIONS(4664), 1, anon_sym_STAR_STAR, + ACTIONS(4666), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4470), 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(4670), 2, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, + STATE(2699), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4668), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_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, - [113714] = 4, - ACTIONS(3997), 1, - anon_sym_COMMA, + [111635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 5, + ACTIONS(4767), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3995), 29, + ACTIONS(4765), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -218098,23 +223375,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [113760] = 3, + [111679] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 5, + ACTIONS(4716), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 30, + ACTIONS(4714), 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, @@ -218123,7 +223400,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, @@ -218139,32 +223415,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113804] = 3, + [111722] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 5, - anon_sym_as, + ACTIONS(3910), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 30, + ACTIONS(4966), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + ACTIONS(3899), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -218180,72 +223456,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113848] = 3, + [111767] = 15, + ACTIONS(4862), 1, + anon_sym_DOT, + ACTIONS(4864), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LBRACK, + ACTIONS(4880), 1, + anon_sym_PIPE, + ACTIONS(4882), 1, + anon_sym_AMP, + ACTIONS(4884), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(4508), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4866), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4868), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4878), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2825), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4876), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4506), 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_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, - [113892] = 3, + [111834] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, + ACTIONS(4062), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4067), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 30, + ACTIONS(4064), 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, @@ -218261,24 +223549,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [113936] = 3, + [111879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 5, + ACTIONS(4106), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4623), 30, + ACTIONS(4101), 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, @@ -218287,7 +223574,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, @@ -218303,24 +223589,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [113980] = 3, + [111922] = 21, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4968), 1, + sym_identifier, + ACTIONS(4972), 1, + anon_sym_COLON, + ACTIONS(4974), 1, + anon_sym_class, + ACTIONS(4976), 1, + anon_sym_api, + ACTIONS(4980), 1, + anon_sym_enum, + STATE(3253), 1, + sym__signedness, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, + sym__longness, + STATE(3718), 1, + sym_operator_name, + STATE(3928), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4540), 5, + ACTIONS(377), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(379), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4140), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(4978), 2, + anon_sym_struct, + anon_sym_union, + STATE(2832), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(4970), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [112001] = 7, + ACTIONS(4982), 1, anon_sym_as, + ACTIONS(4984), 1, + anon_sym_if, + ACTIONS(4986), 1, + anon_sym_and, + ACTIONS(4988), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4538), 30, - sym_string_start, + ACTIONS(4837), 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, @@ -218331,8 +223680,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, @@ -218344,35 +223691,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114024] = 3, + [112052] = 6, + ACTIONS(4986), 1, + anon_sym_and, + ACTIONS(4988), 1, + anon_sym_or, + ACTIONS(4990), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 5, + ACTIONS(4746), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 30, + ACTIONS(4741), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -218384,81 +223734,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [114068] = 15, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_STAR_STAR, - ACTIONS(4687), 1, - anon_sym_LBRACK, - ACTIONS(4693), 1, - anon_sym_PIPE, - ACTIONS(4695), 1, - anon_sym_AMP, - ACTIONS(4697), 1, - anon_sym_CARET, + [112101] = 5, + ACTIONS(4986), 1, + anon_sym_and, + ACTIONS(4988), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4366), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4679), 2, + ACTIONS(4791), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4789), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4691), 2, + 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, - STATE(2653), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4689), 3, - anon_sym_AT, + anon_sym_not, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4364), 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_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114136] = 3, + [112148] = 4, + ACTIONS(4986), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4723), 5, + ACTIONS(4716), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4721), 30, + ACTIONS(4714), 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_async, + anon_sym_for, anon_sym_in, - anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -218466,7 +223805,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, @@ -218479,35 +223817,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114180] = 3, + [112193] = 7, + ACTIONS(4982), 1, + anon_sym_as, + ACTIONS(4984), 1, + anon_sym_if, + ACTIONS(4986), 1, + anon_sym_and, + ACTIONS(4988), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 5, - anon_sym_as, + ACTIONS(4797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 29, + ACTIONS(4793), 26, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -218519,24 +223861,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114223] = 7, - ACTIONS(4862), 1, + [112244] = 7, + ACTIONS(4982), 1, anon_sym_as, - ACTIONS(4864), 1, + ACTIONS(4984), 1, anon_sym_if, - ACTIONS(4866), 1, + ACTIONS(4986), 1, anon_sym_and, - ACTIONS(4868), 1, + ACTIONS(4988), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 4, + ACTIONS(4831), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4627), 26, + ACTIONS(4829), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -218563,22 +223905,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114274] = 3, + [112295] = 7, + ACTIONS(4993), 1, + anon_sym_as, + ACTIONS(4995), 1, + anon_sym_if, + ACTIONS(4997), 1, + anon_sym_and, + ACTIONS(4999), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4414), 5, - anon_sym_as, + ACTIONS(4839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4406), 29, + ACTIONS(4837), 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, @@ -218590,8 +223938,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, @@ -218603,24 +223949,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114317] = 3, + [112346] = 6, + ACTIONS(4997), 1, + anon_sym_and, + ACTIONS(4999), 1, + anon_sym_or, + ACTIONS(5001), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4540), 4, + ACTIONS(4746), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4538), 30, - sym_string_start, + ACTIONS(4741), 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, @@ -218630,8 +223981,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, @@ -218643,22 +223992,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114360] = 4, + [112395] = 5, + ACTIONS(4997), 1, + anon_sym_and, + ACTIONS(4999), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3986), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3989), 5, + ACTIONS(4791), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 27, + ACTIONS(4789), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -218666,13 +224017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -218684,20 +224034,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114405] = 3, + [112442] = 4, + ACTIONS(4997), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + ACTIONS(4716), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 29, + ACTIONS(4714), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -218706,12 +224057,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, @@ -218724,24 +224075,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114448] = 7, - ACTIONS(4870), 1, + [112487] = 7, + ACTIONS(4993), 1, anon_sym_as, - ACTIONS(4872), 1, + ACTIONS(4995), 1, anon_sym_if, - ACTIONS(4874), 1, + ACTIONS(4997), 1, anon_sym_and, - ACTIONS(4876), 1, + ACTIONS(4999), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4664), 4, + ACTIONS(4797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4662), 26, + ACTIONS(4793), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -218768,36 +224119,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114499] = 4, + [112538] = 7, + ACTIONS(4993), 1, + anon_sym_as, + ACTIONS(4995), 1, + anon_sym_if, + ACTIONS(4997), 1, + anon_sym_and, + ACTIONS(4999), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3947), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3954), 5, - anon_sym_as, + ACTIONS(4831), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 27, + ACTIONS(4829), 26, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -218809,27 +224163,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114544] = 5, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, - ACTIONS(4376), 1, - anon_sym_EQ, + [112589] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 4, + ACTIONS(4056), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 28, + ACTIONS(4051), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -218851,17 +224203,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114591] = 3, + [112632] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 5, + ACTIONS(4083), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 29, + ACTIONS(4078), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -218891,27 +224243,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114634] = 8, - ACTIONS(4749), 1, + [112675] = 8, + ACTIONS(4862), 1, anon_sym_DOT, - ACTIONS(4751), 1, + ACTIONS(4864), 1, anon_sym_LPAREN, - ACTIONS(4759), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, + ACTIONS(4874), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2729), 2, + STATE(2825), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4420), 4, + ACTIONS(4470), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4418), 24, + ACTIONS(4468), 24, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -218936,37 +224288,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114687] = 3, + [112728] = 11, + ACTIONS(4862), 1, + anon_sym_DOT, + ACTIONS(4864), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4470), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4866), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4878), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2825), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4876), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 19, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -218976,29 +224336,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114730] = 4, + [112787] = 8, + ACTIONS(4862), 1, + anon_sym_DOT, + ACTIONS(4864), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 4, + STATE(2825), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4470), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4878), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - ACTIONS(3795), 26, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4468), 24, + 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, @@ -219017,37 +224381,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114775] = 3, + [112840] = 10, + ACTIONS(4862), 1, + anon_sym_DOT, + ACTIONS(4864), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4470), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4866), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2825), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4876), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 21, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -219057,38 +224428,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114818] = 12, - ACTIONS(4749), 1, + [112897] = 14, + ACTIONS(4862), 1, anon_sym_DOT, - ACTIONS(4751), 1, + ACTIONS(4864), 1, anon_sym_LPAREN, - ACTIONS(4759), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4761), 1, + ACTIONS(4874), 1, anon_sym_LBRACK, + ACTIONS(4882), 1, + anon_sym_AMP, + ACTIONS(4884), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, + ACTIONS(4470), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4753), 2, + ACTIONS(4866), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4755), 2, + ACTIONS(4868), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(4765), 2, + ACTIONS(4878), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2729), 2, + STATE(2825), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4763), 3, + ACTIONS(4876), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 17, + ACTIONS(4468), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -219098,127 +224473,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114879] = 3, + [112962] = 13, + ACTIONS(4862), 1, + anon_sym_DOT, + ACTIONS(4864), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LBRACK, + ACTIONS(4884), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4470), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4639), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4866), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4868), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4878), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2825), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4876), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [114922] = 3, + [113025] = 12, + ACTIONS(4862), 1, + anon_sym_DOT, + ACTIONS(4864), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4559), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(4470), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4557), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(4866), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4868), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(4878), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2825), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4876), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(4468), 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, - [114965] = 7, - ACTIONS(4862), 1, - anon_sym_as, - ACTIONS(4864), 1, - anon_sym_if, - ACTIONS(4866), 1, - anon_sym_and, - ACTIONS(4868), 1, - anon_sym_or, + [113086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4660), 4, + ACTIONS(4110), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4658), 26, + ACTIONS(4108), 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, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -219230,24 +224618,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115016] = 3, + [113129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4743), 5, - anon_sym_as, + ACTIONS(4612), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 29, + ACTIONS(4610), 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, @@ -219270,18 +224658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115059] = 5, + [113172] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3957), 3, + ACTIONS(1366), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 14, + ACTIONS(1576), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -219296,7 +224684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3947), 15, + ACTIONS(1361), 15, anon_sym_COMMA, anon_sym_if, anon_sym_async, @@ -219312,17 +224700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115106] = 3, + [113219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 5, + ACTIONS(4739), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 29, + ACTIONS(4737), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219352,20 +224740,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115149] = 3, + [113262] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 5, + ACTIONS(4712), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 29, + ACTIONS(4710), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -219374,6 +224761,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, @@ -219392,75 +224780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115192] = 21, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4880), 1, - sym_identifier, - ACTIONS(4884), 1, - anon_sym_COLON, - ACTIONS(4886), 1, - anon_sym_class, - ACTIONS(4888), 1, - anon_sym_api, - ACTIONS(4892), 1, - anon_sym_enum, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3900), 1, - sym_maybe_typed_name, + [113305] = 3, 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(4032), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4890), 2, - anon_sym_struct, - anon_sym_union, - STATE(2789), 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(4882), 5, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_await, - [115271] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4727), 5, + ACTIONS(3910), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4725), 29, + ACTIONS(3899), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -219490,28 +224820,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115314] = 3, + [113348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, - anon_sym_as, + ACTIONS(4648), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 29, + ACTIONS(4646), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -219530,22 +224860,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115357] = 4, + [113391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3997), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4000), 5, + ACTIONS(4407), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3995), 27, + ACTIONS(4393), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -219553,6 +224881,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, @@ -219571,61 +224900,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115402] = 3, + [113434] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3978), 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(3976), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4103), 2, 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, - [115445] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(813), 5, + anon_sym_RBRACK, + ACTIONS(4106), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 29, + ACTIONS(4101), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -219651,20 +224941,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115488] = 3, + [113479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, + ACTIONS(4767), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 29, + ACTIONS(4765), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -219673,6 +224962,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, @@ -219691,311 +224981,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115531] = 3, + [113522] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 13, + ACTIONS(4739), 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(4008), 21, - sym__newline, - anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4737), 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, - [115574] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3967), 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(3965), 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, - [115617] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3963), 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_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(3961), 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, - [115660] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [113565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 13, + ACTIONS(4712), 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(3961), 21, - sym__newline, - anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4710), 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, - [115703] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3982), 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(3980), 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, - [115746] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3982), 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_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(3980), 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, - [115789] = 15, - ACTIONS(4749), 1, - anon_sym_DOT, - ACTIONS(4751), 1, - anon_sym_LPAREN, - ACTIONS(4759), 1, - anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_LBRACK, - ACTIONS(4767), 1, - anon_sym_PIPE, - ACTIONS(4769), 1, - anon_sym_AMP, - ACTIONS(4771), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4366), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4753), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4755), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4765), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2729), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4763), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4364), 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, - [115856] = 3, + [113608] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 5, + ACTIONS(3910), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 29, + ACTIONS(3899), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -220004,7 +225083,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, @@ -220023,28 +225101,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115899] = 5, - ACTIONS(3816), 1, - anon_sym_from, + [113651] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 2, + ACTIONS(3905), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(3974), 4, + anon_sym_RBRACK, + ACTIONS(3910), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 27, + ACTIONS(3899), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_by, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -220065,19 +225142,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115946] = 3, + [113696] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 5, + ACTIONS(4407), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 29, + ACTIONS(4393), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -220086,7 +225164,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, @@ -220105,28 +225182,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [115989] = 5, - ACTIONS(3816), 1, - anon_sym_from, + [113739] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3801), 2, + ACTIONS(4103), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - ACTIONS(3806), 4, + ACTIONS(4106), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 27, + ACTIONS(4101), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_by, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -220147,74 +225223,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116036] = 4, + [113784] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1530), 3, + ACTIONS(3905), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3910), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3899), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1329), 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(1327), 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, - [116081] = 8, - ACTIONS(4749), 1, - anon_sym_DOT, - ACTIONS(4751), 1, - anon_sym_LPAREN, - ACTIONS(4759), 1, - anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_LBRACK, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [113829] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2729), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4374), 4, + ACTIONS(4053), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4056), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4372), 24, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(4051), 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, @@ -220233,21 +225305,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116134] = 3, + [113874] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 5, + ACTIONS(4053), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4056), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 29, + ACTIONS(4051), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -220273,30 +225346,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116177] = 5, - ACTIONS(3993), 1, - anon_sym_from, + [113919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3986), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(3989), 4, + ACTIONS(4114), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 27, + ACTIONS(4112), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_by, + 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, @@ -220315,28 +225386,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116224] = 3, + [113962] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4303), 5, + ACTIONS(4062), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(4067), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4289), 29, + ACTIONS(4064), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -220355,62 +225427,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116267] = 5, + [114007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 2, + ACTIONS(4771), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3957), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 14, + ACTIONS(4769), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3947), 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, - [116314] = 4, + [114050] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 2, + ACTIONS(4080), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3974), 5, + ACTIONS(4083), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 27, + ACTIONS(4078), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -220438,19 +225508,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116359] = 3, + [114095] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4563), 5, + ACTIONS(859), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4561), 29, + ACTIONS(857), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -220459,7 +225530,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, @@ -220478,39 +225548,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116402] = 7, - ACTIONS(4870), 1, - anon_sym_as, - ACTIONS(4872), 1, - anon_sym_if, - ACTIONS(4874), 1, - anon_sym_and, - ACTIONS(4876), 1, - anon_sym_or, + [114138] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 4, + ACTIONS(4823), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4627), 26, + ACTIONS(4821), 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, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -220522,22 +225588,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116453] = 4, + [114181] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3801), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3806), 5, + ACTIONS(4811), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 27, + ACTIONS(4809), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -220563,19 +225628,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116498] = 3, + [114224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 5, + ACTIONS(4787), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 29, + ACTIONS(4785), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -220584,7 +225650,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, @@ -220603,67 +225668,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116541] = 3, + [114267] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 5, - anon_sym_as, + ACTIONS(4067), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4070), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4623), 29, + ACTIONS(4064), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(4062), 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, - [116584] = 4, + [114314] = 5, + ACTIONS(3920), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3986), 2, + ACTIONS(4103), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3989), 5, - anon_sym_as, + anon_sym_in, + ACTIONS(4106), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 27, + ACTIONS(4101), 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_COLON, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -220684,24 +225752,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116629] = 3, + [114361] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4544), 4, + ACTIONS(4095), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4542), 30, - sym_string_start, + ACTIONS(4093), 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, @@ -220724,17 +225792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116672] = 3, + [114404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3974), 5, + ACTIONS(4076), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 29, + ACTIONS(4074), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220764,17 +225832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116715] = 3, + [114447] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 5, + ACTIONS(4076), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 29, + ACTIONS(4074), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -220804,32 +225872,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116758] = 6, - ACTIONS(4411), 1, - anon_sym_STAR, + [114490] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 2, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4414), 3, + ACTIONS(4091), 5, + anon_sym_as, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4408), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(4406), 24, + ACTIONS(4089), 29, anon_sym_DOT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -220839,6 +225903,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, @@ -220847,22 +225912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116807] = 4, - ACTIONS(4866), 1, - anon_sym_and, + [114533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 5, + ACTIONS(4091), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 28, + ACTIONS(4089), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -220871,11 +225933,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, @@ -220888,17 +225952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116852] = 3, + [114576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 5, + ACTIONS(4827), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4737), 29, + ACTIONS(4825), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -220928,31 +225992,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116895] = 6, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, - ACTIONS(3921), 1, - anon_sym_LBRACK, - STATE(4705), 1, - sym_type_parameter, + [114619] = 5, + ACTIONS(3920), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 6, + ACTIONS(3905), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(3910), 4, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 25, + ACTIONS(3899), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, + anon_sym_COLON, + anon_sym_by, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -220971,21 +226034,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116944] = 3, + [114666] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4743), 5, + ACTIONS(4080), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4083), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 29, + ACTIONS(4078), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -221011,20 +226075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [116987] = 3, + [114711] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4563), 5, + ACTIONS(859), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4561), 29, + ACTIONS(857), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -221033,6 +226096,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, @@ -221051,19 +226115,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117030] = 3, + [114754] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3978), 5, + ACTIONS(4735), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 29, + ACTIONS(4733), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -221072,7 +226137,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, @@ -221091,21 +226155,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117073] = 5, - ACTIONS(4004), 1, + [114797] = 5, + ACTIONS(4058), 1, anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3997), 2, + ACTIONS(4053), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(4000), 4, + ACTIONS(4056), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3995), 27, + ACTIONS(4051), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_as, @@ -221133,20 +226197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117120] = 3, + [114844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 5, + ACTIONS(4823), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 29, + ACTIONS(4821), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -221155,6 +226218,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, @@ -221173,56 +226237,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117163] = 4, + [114887] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3997), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4000), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3995), 27, + ACTIONS(4101), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4106), 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, - [117208] = 4, + ACTIONS(3920), 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, + [114932] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3951), 3, + ACTIONS(3899), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3954), 13, + ACTIONS(3910), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -221236,7 +226300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3947), 18, + ACTIONS(3920), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -221255,72 +226319,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [117253] = 3, + [114977] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4585), 29, + ACTIONS(4051), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4056), 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_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, - [117296] = 7, - ACTIONS(4862), 1, - anon_sym_as, - ACTIONS(4864), 1, - anon_sym_if, - ACTIONS(4866), 1, - anon_sym_and, - ACTIONS(4868), 1, - anon_sym_or, + ACTIONS(4058), 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, + [115022] = 5, + ACTIONS(4085), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4664), 4, + ACTIONS(4080), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4083), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4662), 26, + ACTIONS(4078), 27, 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_in, + anon_sym_if, + anon_sym_COLON, + anon_sym_by, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -221328,6 +226389,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, @@ -221339,22 +226402,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117347] = 6, - ACTIONS(4874), 1, - anon_sym_and, - ACTIONS(4876), 1, - anon_sym_or, - ACTIONS(4894), 1, - anon_sym_as, + [115069] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 4, + ACTIONS(4811), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4643), 27, + ACTIONS(4809), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221371,6 +226429,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, @@ -221382,57 +226442,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117396] = 3, + [115112] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4555), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4553), 29, + ACTIONS(4078), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4083), 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_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, - [117439] = 3, + ACTIONS(4085), 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, + [115157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 5, + ACTIONS(4106), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 29, + ACTIONS(4101), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -221462,17 +226523,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117482] = 3, + [115200] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4621), 5, + ACTIONS(4819), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4619), 29, + ACTIONS(4817), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -221502,61 +226563,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117525] = 5, + [115243] = 5, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(4472), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 2, + ACTIONS(3910), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1332), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 14, + ACTIONS(3899), 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(1327), 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, - [117572] = 3, + [115290] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 5, + ACTIONS(4807), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 29, + ACTIONS(4805), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -221565,7 +226627,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, @@ -221584,55 +226645,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [117615] = 3, + [115333] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 5, - anon_sym_as, + ACTIONS(4067), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4070), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 29, + ACTIONS(4064), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(4062), 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, - [117658] = 4, + [115380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3995), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(4000), 13, + ACTIONS(4110), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -221646,12 +226705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4004), 18, + ACTIONS(4108), 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, @@ -221665,356 +226727,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [117703] = 3, + [115423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 5, - anon_sym_as, + ACTIONS(4114), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4008), 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_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, - [117746] = 5, + ACTIONS(4112), 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, + [115466] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 2, + ACTIONS(4095), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1332), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1530), 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_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1327), 15, + ACTIONS(4093), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, 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, - [117793] = 5, - ACTIONS(4874), 1, - anon_sym_and, - ACTIONS(4876), 1, - anon_sym_or, + 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, + [115509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 5, - anon_sym_as, + ACTIONS(4076), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4650), 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_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, - [117840] = 4, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + ACTIONS(4074), 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, + [115552] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 5, + ACTIONS(4076), 13, anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(811), 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_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, - [117885] = 7, - ACTIONS(3959), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3954), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3957), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3949), 5, + ACTIONS(4074), 21, sym__newline, anon_sym_SEMI, anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3947), 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(3951), 12, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, 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, - [117936] = 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, + [115595] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 5, - anon_sym_as, + ACTIONS(4091), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4605), 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, - [117979] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4731), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4729), 29, + ACTIONS(4089), 21, + sym__newline, + anon_sym_SEMI, 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_COLON, + anon_sym_EQ, 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, - [118022] = 5, - ACTIONS(4866), 1, - anon_sym_and, - ACTIONS(4868), 1, - anon_sym_or, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [115638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 5, - anon_sym_as, + ACTIONS(4091), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4650), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118069] = 4, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, + ACTIONS(4089), 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, + [115681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 5, + ACTIONS(4783), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 28, + ACTIONS(4781), 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, @@ -222037,60 +227007,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118114] = 3, + [115724] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4614), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4612), 29, + ACTIONS(1576), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1363), 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, - [118157] = 3, + ACTIONS(1361), 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, + [115769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4303), 5, + ACTIONS(4763), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4289), 29, + ACTIONS(4761), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -222099,6 +227069,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, @@ -222117,17 +227088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118200] = 3, + [115812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4747), 5, + ACTIONS(4779), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4745), 29, + ACTIONS(4777), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -222157,39 +227128,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118243] = 4, - ACTIONS(4874), 1, - anon_sym_and, + [115855] = 6, + ACTIONS(4575), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 5, - anon_sym_as, - anon_sym_STAR, + ACTIONS(4580), 2, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4578), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 28, - anon_sym_DOT, + ACTIONS(4572), 4, anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(4570), 24, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_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, @@ -222198,80 +227171,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118288] = 4, + [115904] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3971), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3974), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3969), 27, + ACTIONS(4064), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(4067), 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, - [118333] = 7, - ACTIONS(4870), 1, - anon_sym_as, - ACTIONS(4872), 1, - anon_sym_if, - ACTIONS(4874), 1, - anon_sym_and, - ACTIONS(4876), 1, - anon_sym_or, + ACTIONS(4062), 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, + [115949] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4660), 4, + ACTIONS(4783), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4658), 26, + ACTIONS(4781), 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, anon_sym_SLASH_SLASH, anon_sym_AMP, @@ -222283,20 +227252,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118384] = 3, + [115992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 5, + ACTIONS(4056), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 29, + ACTIONS(4051), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -222305,6 +227273,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, @@ -222323,20 +227292,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118427] = 3, + [116035] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4555), 5, + ACTIONS(4083), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4553), 29, + ACTIONS(4078), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -222345,6 +227313,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, @@ -222363,20 +227332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118470] = 3, + [116078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 5, + ACTIONS(4847), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4729), 29, + ACTIONS(4845), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -222385,6 +227353,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, @@ -222403,147 +227372,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118513] = 8, - ACTIONS(4749), 1, - anon_sym_DOT, - ACTIONS(4751), 1, - anon_sym_LPAREN, - ACTIONS(4759), 1, - anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_LBRACK, + [116121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2729), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 4, + ACTIONS(4851), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4368), 24, - anon_sym_RPAREN, + ACTIONS(4849), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_in, - anon_sym_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, - [118566] = 21, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4888), 1, - anon_sym_api, - ACTIONS(4897), 1, - sym_identifier, - ACTIONS(4901), 1, - anon_sym_COLON, - ACTIONS(4903), 1, - anon_sym_class, - ACTIONS(4907), 1, - anon_sym_enum, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3931), 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(4032), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(4905), 2, - anon_sym_struct, - anon_sym_union, - STATE(2789), 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(4899), 5, - anon_sym_print, - anon_sym_match, anon_sym_async, - anon_sym_exec, - anon_sym_await, - [118645] = 10, - ACTIONS(4749), 1, - anon_sym_DOT, - ACTIONS(4751), 1, - anon_sym_LPAREN, - ACTIONS(4759), 1, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(4761), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4370), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4753), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2729), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4763), 3, + anon_sym_RBRACK, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 21, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -222553,20 +227412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118702] = 3, + [116164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 5, + ACTIONS(4775), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 29, + ACTIONS(4773), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -222575,6 +227433,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, @@ -222593,66 +227452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118745] = 14, - ACTIONS(4749), 1, - anon_sym_DOT, - ACTIONS(4751), 1, - anon_sym_LPAREN, - ACTIONS(4759), 1, - anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_LBRACK, - ACTIONS(4769), 1, - anon_sym_AMP, - ACTIONS(4771), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4370), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4753), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4755), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4765), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2729), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4763), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [118810] = 4, + [116207] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 3, + ACTIONS(857), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(813), 13, + ACTIONS(859), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -222666,7 +227474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(847), 18, + ACTIONS(893), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -222685,17 +227493,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [118855] = 3, + [116252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 5, + ACTIONS(4652), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 29, + ACTIONS(4650), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -222725,20 +227533,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118898] = 3, + [116295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, + ACTIONS(4803), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 29, + ACTIONS(4801), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -222747,6 +227554,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, @@ -222765,25 +227573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118941] = 6, - ACTIONS(4866), 1, - anon_sym_and, - ACTIONS(4868), 1, - anon_sym_or, - ACTIONS(4909), 1, - anon_sym_as, + [116338] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 4, + ACTIONS(4716), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4643), 27, + ACTIONS(4714), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -222792,11 +227594,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, @@ -222808,67 +227613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [118990] = 13, - ACTIONS(4749), 1, - anon_sym_DOT, - ACTIONS(4751), 1, - anon_sym_LPAREN, - ACTIONS(4759), 1, - anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_LBRACK, - ACTIONS(4771), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4370), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4753), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4755), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(4765), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2729), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4763), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 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, - [119053] = 3, + [116381] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3967), 5, + ACTIONS(4578), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3965), 29, + ACTIONS(4570), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -222898,19 +227653,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119096] = 3, + [116424] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 5, + ACTIONS(4763), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 29, + ACTIONS(4761), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -222919,7 +227675,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, @@ -222938,19 +227693,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119139] = 3, + [116467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4621), 5, + ACTIONS(4779), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4619), 29, + ACTIONS(4777), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -222959,7 +227715,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, @@ -222978,19 +227733,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119182] = 3, + [116510] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 5, + ACTIONS(4705), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 29, + ACTIONS(4703), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -222999,7 +227755,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, @@ -223018,101 +227773,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119225] = 4, + [116553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3969), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3974), 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(3816), 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, - [119270] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3947), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(3954), 5, + ACTIONS(4843), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [119315] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4000), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3995), 29, + ACTIONS(4841), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -223121,7 +227795,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, @@ -223140,17 +227813,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119358] = 3, + [116596] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3974), 5, + ACTIONS(4771), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 29, + ACTIONS(4769), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -223180,144 +227853,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119401] = 3, + [116639] = 7, + ACTIONS(4099), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4723), 5, - anon_sym_as, + ACTIONS(4067), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4070), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4721), 29, + ACTIONS(4097), 5, + sym__newline, + anon_sym_SEMI, 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_COLON, anon_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, - [119444] = 8, - ACTIONS(4749), 1, - anon_sym_DOT, - ACTIONS(4751), 1, - anon_sym_LPAREN, - ACTIONS(4759), 1, - anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2729), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4370), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4368), 24, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4062), 12, 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, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119497] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4414), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4406), 29, - anon_sym_DOT, + ACTIONS(4064), 12, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [119540] = 3, + [116690] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 5, + ACTIONS(4847), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4737), 29, + ACTIONS(4845), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -223326,7 +227919,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, @@ -223345,17 +227937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119583] = 3, + [116733] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 5, + ACTIONS(4835), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 29, + ACTIONS(4833), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -223385,17 +227977,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119626] = 3, + [116776] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 5, + ACTIONS(4851), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 29, + ACTIONS(4849), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -223425,68 +228017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119669] = 11, - ACTIONS(4749), 1, - anon_sym_DOT, - ACTIONS(4751), 1, - anon_sym_LPAREN, - ACTIONS(4759), 1, - anon_sym_STAR_STAR, - ACTIONS(4761), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4370), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4753), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4765), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2729), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4763), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 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, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [119728] = 3, + [116819] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 5, + ACTIONS(4835), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 29, + ACTIONS(4833), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -223495,6 +228038,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, @@ -223513,17 +228057,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119771] = 3, + [116862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 5, + ACTIONS(4787), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 29, + ACTIONS(4785), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -223553,27 +228097,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119814] = 5, - ACTIONS(828), 1, - anon_sym_COLON_EQ, - ACTIONS(2411), 1, - anon_sym_EQ, + [116905] = 21, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4976), 1, + anon_sym_api, + ACTIONS(5004), 1, + sym_identifier, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5010), 1, + anon_sym_class, + ACTIONS(5014), 1, + anon_sym_enum, + STATE(3253), 1, + sym__signedness, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, + sym__longness, + STATE(3718), 1, + sym_operator_name, + STATE(3904), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(379), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4140), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(5012), 2, + anon_sym_struct, + anon_sym_union, + STATE(2832), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 4, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + ACTIONS(5006), 5, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + [116984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 4, + ACTIONS(4775), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 28, + ACTIONS(4773), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -223595,17 +228195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119861] = 3, + [117027] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4723), 5, + ACTIONS(4827), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4721), 29, + ACTIONS(4825), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -223635,17 +228235,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119904] = 3, + [117070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4614), 5, + ACTIONS(4735), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4612), 29, + ACTIONS(4733), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -223675,17 +228275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119947] = 3, + [117113] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 5, + ACTIONS(4819), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 29, + ACTIONS(4817), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -223715,102 +228315,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [119990] = 4, + [117156] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3795), 3, + ACTIONS(4815), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4813), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3806), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3816), 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, - [120035] = 4, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [117199] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3984), 3, + ACTIONS(4731), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4729), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3989), 13, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3993), 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, - [120080] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [117242] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 5, + ACTIONS(4807), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4639), 29, + ACTIONS(4805), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -223819,6 +228416,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, @@ -223837,17 +228435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120123] = 3, + [117285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 5, + ACTIONS(4652), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 29, + ACTIONS(4650), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -223877,20 +228475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120166] = 3, + [117328] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 5, + ACTIONS(4843), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3995), 29, + ACTIONS(4841), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -223899,6 +228496,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, @@ -223917,22 +228515,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120209] = 4, + [117371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3801), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3806), 5, + ACTIONS(4705), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 27, + ACTIONS(4703), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -223940,6 +228536,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, @@ -223958,28 +228555,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120254] = 3, + [117414] = 6, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, + ACTIONS(4021), 1, + anon_sym_LBRACK, + STATE(4638), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 5, - anon_sym_as, + ACTIONS(3910), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 29, + ACTIONS(3899), 25, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -223998,20 +228598,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120297] = 3, + [117463] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 5, + ACTIONS(4815), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4725), 29, + ACTIONS(4813), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -224020,6 +228619,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, @@ -224038,20 +228638,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120340] = 3, + [117506] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 5, + ACTIONS(4731), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 29, + ACTIONS(4729), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -224060,6 +228659,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, @@ -224078,25 +228678,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120383] = 3, + [117549] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 5, - anon_sym_as, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1366), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 29, + ACTIONS(1576), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1361), 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, + [117596] = 4, + ACTIONS(874), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(859), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(857), 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, @@ -224118,24 +228761,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120426] = 3, + [117641] = 4, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 5, - anon_sym_as, + ACTIONS(3910), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 29, + ACTIONS(3899), 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, @@ -224158,28 +228802,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120469] = 3, + [117686] = 8, + ACTIONS(4862), 1, + anon_sym_DOT, + ACTIONS(4864), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 5, - anon_sym_as, + STATE(2825), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4512), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4510), 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_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, + [117739] = 8, + ACTIONS(4862), 1, + anon_sym_DOT, + ACTIONS(4864), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, anon_sym_STAR_STAR, + ACTIONS(4874), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2825), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4504), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4502), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -224198,20 +228892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120512] = 3, + [117792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4747), 5, + ACTIONS(4720), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4745), 29, + ACTIONS(4718), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -224220,6 +228913,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, @@ -224238,17 +228932,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120555] = 3, + [117835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4559), 5, + ACTIONS(4803), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4557), 29, + ACTIONS(4801), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -224278,17 +228972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120598] = 3, + [117878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 5, + ACTIONS(4727), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4623), 29, + ACTIONS(4725), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -224318,27 +229012,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120641] = 3, + [117921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 4, + ACTIONS(4720), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 29, + ACTIONS(4718), 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, @@ -224357,25 +229052,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120683] = 4, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + [117964] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 4, + ACTIONS(4727), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 28, + ACTIONS(4725), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -224397,25 +229092,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120727] = 4, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, + [118007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 4, + ACTIONS(4578), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 28, + ACTIONS(4570), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -224437,18 +229132,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120771] = 4, - ACTIONS(828), 1, + [118050] = 5, + ACTIONS(874), 1, anon_sym_COLON_EQ, + ACTIONS(2509), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 4, + ACTIONS(859), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 28, + ACTIONS(857), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -224477,25 +229174,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120815] = 4, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, + [118097] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 4, + ACTIONS(4767), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 28, + ACTIONS(4765), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -224517,24 +229214,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120859] = 4, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + [118140] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 4, + ACTIONS(4083), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 28, + ACTIONS(4078), 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, @@ -224557,24 +229253,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120903] = 4, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, + [118182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 4, + ACTIONS(4110), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 28, + ACTIONS(4108), 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, @@ -224597,31 +229292,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120947] = 4, - ACTIONS(828), 1, - anon_sym_COLON_EQ, + [118224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 4, + ACTIONS(4739), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 28, + ACTIONS(4737), 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, @@ -224637,31 +229331,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [120991] = 4, - ACTIONS(3808), 1, - anon_sym_COLON_EQ, + [118266] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 4, + ACTIONS(4767), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 28, + ACTIONS(4765), 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, @@ -224677,16 +229370,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121035] = 3, + [118308] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3974), 4, + ACTIONS(4114), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 29, + ACTIONS(4112), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -224716,16 +229409,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121077] = 3, + [118350] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 4, + ACTIONS(4771), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 29, + ACTIONS(4769), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -224755,16 +229448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121119] = 3, + [118392] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 4, + ACTIONS(4712), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3995), 29, + ACTIONS(4710), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -224794,16 +229487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121161] = 3, + [118434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 4, + ACTIONS(4095), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4737), 29, + ACTIONS(4093), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -224833,16 +229526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121203] = 3, + [118476] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4743), 4, + ACTIONS(3910), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 29, + ACTIONS(3899), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -224872,16 +229565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121245] = 3, + [118518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 4, + ACTIONS(4407), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 29, + ACTIONS(4393), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -224911,16 +229604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121287] = 3, + [118560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4303), 4, + ACTIONS(4076), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4289), 29, + ACTIONS(4074), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -224950,27 +229643,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121329] = 3, + [118602] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4544), 4, + ACTIONS(4076), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4542), 29, - sym_string_start, + ACTIONS(4074), 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, @@ -224989,96 +229682,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121371] = 5, + [118644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 2, + ACTIONS(4612), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1332), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1530), 14, + ACTIONS(4610), 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_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(1327), 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, - [121417] = 3, + [118686] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 4, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1366), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 29, + ACTIONS(1576), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1361), 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, - [121459] = 3, + [118732] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 4, + ACTIONS(4091), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4623), 29, + ACTIONS(4089), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225108,16 +229801,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121501] = 3, + [118774] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4621), 4, + ACTIONS(4091), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4619), 29, + ACTIONS(4089), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225147,27 +229840,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121543] = 3, + [118816] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4540), 4, + ACTIONS(859), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4538), 29, - sym_string_start, + ACTIONS(857), 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, @@ -225186,16 +229879,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121585] = 3, + [118858] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4723), 4, + ACTIONS(4823), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4721), 29, + ACTIONS(4821), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225225,16 +229918,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121627] = 3, + [118900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 4, + ACTIONS(4811), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 29, + ACTIONS(4809), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225264,23 +229957,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121669] = 3, + [118942] = 4, + ACTIONS(874), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 4, + ACTIONS(1363), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4577), 29, + ACTIONS(1576), 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, @@ -225303,23 +229997,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121711] = 3, + [118986] = 4, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 4, + ACTIONS(4067), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 29, + ACTIONS(4064), 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, @@ -225342,27 +230037,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121753] = 3, + [119030] = 4, + ACTIONS(874), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 4, + ACTIONS(859), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 29, + ACTIONS(857), 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, @@ -225381,16 +230077,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121795] = 3, + [119074] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 4, + ACTIONS(4783), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4639), 29, + ACTIONS(4781), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225420,69 +230116,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121837] = 6, + [119116] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3957), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3949), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(3947), 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(3951), 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, - [121885] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4414), 4, + ACTIONS(4648), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4406), 29, + ACTIONS(4646), 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, @@ -225501,16 +230155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121927] = 3, + [119158] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4614), 4, + ACTIONS(4763), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4612), 29, + ACTIONS(4761), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225540,16 +230194,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [121969] = 3, + [119200] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 4, + ACTIONS(4779), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4725), 29, + ACTIONS(4777), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225579,55 +230233,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122011] = 3, + [119242] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 4, + ACTIONS(4067), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4070), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 29, + ACTIONS(4064), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(4062), 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, - [122053] = 3, + [119288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4747), 4, + ACTIONS(4847), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4745), 29, + ACTIONS(4845), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225657,16 +230313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122095] = 3, + [119330] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4559), 4, + ACTIONS(4056), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4557), 29, + ACTIONS(4051), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225696,32 +230352,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122137] = 3, + [119372] = 9, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4538), 1, + anon_sym_is, + STATE(2178), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 4, + ACTIONS(4439), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 29, + STATE(2047), 2, + sym__not_in, + sym__is_not, + ACTIONS(4522), 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(4437), 18, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_PERCENT, @@ -225729,22 +230397,16 @@ 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, - [122179] = 3, + [119426] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4563), 4, + ACTIONS(4775), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4561), 29, + ACTIONS(4773), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225774,16 +230436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122221] = 3, + [119468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 4, + ACTIONS(4803), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 29, + ACTIONS(4801), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225813,16 +230475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122263] = 3, + [119510] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4555), 4, + ACTIONS(4716), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4553), 29, + ACTIONS(4714), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225852,16 +230514,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122305] = 3, + [119552] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 4, + ACTIONS(4578), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 29, + ACTIONS(4570), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -225891,61 +230553,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122347] = 3, + [119594] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 4, + ACTIONS(4067), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4070), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 29, + ACTIONS(4097), 5, anon_sym_DOT, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(4062), 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(4064), 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_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, - [122389] = 3, + [119642] = 7, + ACTIONS(5016), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_if, + ACTIONS(5020), 1, + anon_sym_and, + ACTIONS(5022), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 4, + ACTIONS(4839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 29, + ACTIONS(4837), 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, @@ -225956,8 +230627,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, @@ -225969,27 +230638,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122431] = 3, + [119692] = 4, + ACTIONS(874), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 4, + ACTIONS(1363), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4573), 29, + ACTIONS(1576), 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, @@ -226008,27 +230678,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122473] = 3, + [119736] = 4, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3978), 4, + ACTIONS(4067), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 29, + ACTIONS(4064), 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, @@ -226047,20 +230718,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122515] = 3, + [119780] = 6, + ACTIONS(5020), 1, + anon_sym_and, + ACTIONS(5022), 1, + anon_sym_or, + ACTIONS(5024), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 4, + ACTIONS(4746), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 29, + ACTIONS(4741), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -226073,8 +230749,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, @@ -226086,16 +230760,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122557] = 3, + [119828] = 5, + ACTIONS(5020), 1, + anon_sym_and, + ACTIONS(5022), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 4, + ACTIONS(4791), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4008), 29, + ACTIONS(4789), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -226112,8 +230790,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, @@ -226125,30 +230801,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122599] = 3, + [119874] = 4, + ACTIONS(874), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 4, + ACTIONS(1363), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4729), 29, + ACTIONS(1576), 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, @@ -226164,30 +230841,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122641] = 3, + [119918] = 4, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3967), 4, + ACTIONS(4067), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3965), 29, + ACTIONS(4064), 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, @@ -226203,16 +230881,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122683] = 3, + [119962] = 4, + ACTIONS(5020), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 4, + ACTIONS(4716), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 29, + ACTIONS(4714), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -226229,7 +230909,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, @@ -226242,22 +230921,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122725] = 3, + [120006] = 7, + ACTIONS(5016), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_if, + ACTIONS(5020), 1, + anon_sym_and, + ACTIONS(5022), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 4, + ACTIONS(4797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 29, + ACTIONS(4793), 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, @@ -226268,8 +230953,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, @@ -226281,22 +230964,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122767] = 3, + [120056] = 7, + ACTIONS(5016), 1, + anon_sym_as, + ACTIONS(5018), 1, + anon_sym_if, + ACTIONS(5020), 1, + anon_sym_and, + ACTIONS(5022), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 4, + ACTIONS(4831), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 29, + ACTIONS(4829), 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, @@ -226307,8 +230996,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, @@ -226320,27 +231007,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122809] = 3, + [120106] = 4, + ACTIONS(3912), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 4, + ACTIONS(3910), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 29, + ACTIONS(3899), 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, @@ -226359,85 +231047,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [122851] = 5, + [120150] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 2, + ACTIONS(4835), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3957), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 14, + ACTIONS(4833), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3947), 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, - [122897] = 9, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4402), 1, - anon_sym_is, - STATE(2176), 1, - aux_sym_comparison_operator_repeat1, + [120192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4342), 2, + ACTIONS(4787), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4404), 2, anon_sym_LT, anon_sym_GT, - STATE(1983), 2, - sym__not_in, - sym__is_not, - ACTIONS(4386), 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(4340), 18, + ACTIONS(4785), 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, @@ -226445,28 +231119,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [122951] = 7, - ACTIONS(4912), 1, - anon_sym_as, - ACTIONS(4914), 1, - anon_sym_if, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4918), 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, + [120234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 4, + ACTIONS(4827), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4627), 25, + ACTIONS(4825), 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, @@ -226477,6 +231151,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, @@ -226488,25 +231164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123001] = 6, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4918), 1, - anon_sym_or, - ACTIONS(4920), 1, - anon_sym_as, + [120276] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 4, + ACTIONS(4735), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4643), 26, + ACTIONS(4733), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, @@ -226519,6 +231190,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, @@ -226530,20 +231203,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123049] = 5, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4918), 1, - anon_sym_or, + [120318] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 4, + ACTIONS(4819), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4650), 27, + ACTIONS(4817), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -226560,6 +231229,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, @@ -226571,18 +231242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123095] = 4, - ACTIONS(4916), 1, - anon_sym_and, + [120360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 4, + ACTIONS(4807), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 28, + ACTIONS(4805), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -226599,6 +231268,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, @@ -226611,28 +231281,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123139] = 7, - ACTIONS(4912), 1, - anon_sym_as, - ACTIONS(4914), 1, - anon_sym_if, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4918), 1, - anon_sym_or, + [120402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4660), 4, + ACTIONS(4652), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4658), 25, + ACTIONS(4650), 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, @@ -226643,6 +231307,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, @@ -226654,28 +231320,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123189] = 7, - ACTIONS(4912), 1, - anon_sym_as, - ACTIONS(4914), 1, - anon_sym_if, - ACTIONS(4916), 1, - anon_sym_and, - ACTIONS(4918), 1, - anon_sym_or, + [120444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4664), 4, + ACTIONS(4843), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4662), 25, + ACTIONS(4841), 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, @@ -226686,6 +231346,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, @@ -226697,16 +231359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123239] = 3, + [120486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 4, + ACTIONS(4705), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 29, + ACTIONS(4703), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -226736,64 +231398,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123281] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4010), 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(4008), 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, - [123322] = 3, + [120528] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4563), 4, + ACTIONS(4815), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4561), 28, + ACTIONS(4813), 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, @@ -226812,26 +231437,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123363] = 3, + [120570] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4567), 4, + ACTIONS(4731), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4565), 28, + ACTIONS(4729), 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, @@ -226850,26 +231476,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123404] = 3, + [120612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4555), 4, + ACTIONS(4720), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4553), 28, + ACTIONS(4718), 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, @@ -226888,26 +231515,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123445] = 3, + [120654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 4, + ACTIONS(4727), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 28, + ACTIONS(4725), 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, @@ -226926,26 +231554,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123486] = 3, + [120696] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4607), 4, + ACTIONS(4106), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4605), 28, + ACTIONS(4101), 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, @@ -226964,26 +231593,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123527] = 3, + [120738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 4, + ACTIONS(4851), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4569), 28, + ACTIONS(4849), 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, @@ -227002,110 +231632,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123568] = 3, + [120780] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4575), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4573), 28, + ACTIONS(4078), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(4083), 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, - [123609] = 21, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4923), 1, + ACTIONS(4085), 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, + [120823] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, sym_identifier, - ACTIONS(4925), 1, + ACTIONS(5029), 1, anon_sym_LPAREN, - ACTIONS(4927), 1, + ACTIONS(5031), 1, anon_sym_STAR, - ACTIONS(4929), 1, - anon_sym_if, - ACTIONS(4931), 1, + ACTIONS(5033), 1, anon_sym_COLON, - ACTIONS(4933), 1, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4636), 1, - sym_case_pattern, - STATE(5750), 1, - sym_if_clause, + ACTIONS(5037), 1, + anon_sym_SLASH, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5873), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4651), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4939), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4270), 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, - [123686] = 3, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [120902] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3974), 4, + ACTIONS(4815), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3969), 28, + ACTIONS(4813), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227134,16 +231766,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123727] = 3, + [120943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 4, + ACTIONS(4731), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3984), 28, + ACTIONS(4729), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227172,17 +231804,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123768] = 5, + [120984] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 2, + ACTIONS(1576), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1363), 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, - ACTIONS(1332), 2, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1361), 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, + [121027] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1363), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1366), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1327), 14, + ACTIONS(1361), 14, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -227197,7 +231868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1530), 14, + ACTIONS(1576), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -227212,23 +231883,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [123813] = 3, + [121072] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5041), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5537), 1, + sym_lambda_parameters, + STATE(5539), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3978), 4, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [121151] = 7, + ACTIONS(5043), 1, + anon_sym_as, + ACTIONS(5045), 1, + anon_sym_if, + ACTIONS(5047), 1, + anon_sym_and, + ACTIONS(5049), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4839), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3976), 28, + ACTIONS(4837), 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, @@ -227237,8 +231971,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, @@ -227250,21 +231982,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123854] = 3, + [121200] = 6, + ACTIONS(5047), 1, + anon_sym_and, + ACTIONS(5049), 1, + anon_sym_or, + ACTIONS(5051), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 4, + ACTIONS(4746), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3995), 28, + ACTIONS(4741), 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, @@ -227275,8 +232012,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, @@ -227288,16 +232023,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123895] = 3, + [121247] = 5, + ACTIONS(5047), 1, + anon_sym_and, + ACTIONS(5049), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4739), 4, + ACTIONS(4791), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4737), 28, + ACTIONS(4789), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227313,8 +232052,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, @@ -227326,16 +232063,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123936] = 3, + [121292] = 4, + ACTIONS(5047), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4743), 4, + ACTIONS(4716), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4741), 28, + ACTIONS(4714), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227351,7 +232090,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, @@ -227364,23 +232102,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [123977] = 3, + [121335] = 7, + ACTIONS(5043), 1, + anon_sym_as, + ACTIONS(5045), 1, + anon_sym_if, + ACTIONS(5047), 1, + anon_sym_and, + ACTIONS(5049), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 4, + ACTIONS(4797), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3795), 28, + ACTIONS(4793), 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, @@ -227389,8 +232133,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, @@ -227402,23 +232144,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124018] = 3, + [121384] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5054), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5796), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4599), 4, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [121463] = 7, + ACTIONS(5043), 1, + anon_sym_as, + ACTIONS(5045), 1, + anon_sym_if, + ACTIONS(5047), 1, + anon_sym_and, + ACTIONS(5049), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4831), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4597), 28, + ACTIONS(4829), 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, @@ -227427,8 +232232,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, @@ -227440,16 +232243,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124059] = 3, + [121512] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4303), 4, + ACTIONS(4803), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4289), 28, + ACTIONS(4801), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227478,94 +232281,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124100] = 4, + [121553] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3969), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3974), 13, + ACTIONS(4716), 4, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3816), 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, - [124143] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3795), 3, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4714), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3806), 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(3816), 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, - [124186] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [121594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 4, + ACTIONS(4110), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4008), 28, + ACTIONS(4108), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227594,55 +232357,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124227] = 4, + [121635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3984), 3, + ACTIONS(4578), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4570), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3989), 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(3993), 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, - [124270] = 3, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [121676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 4, + ACTIONS(4787), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4729), 28, + ACTIONS(4785), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227671,15 +232433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124311] = 4, + [121717] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3995), 3, + ACTIONS(4064), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4000), 13, + ACTIONS(4067), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -227693,7 +232455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(4004), 16, + ACTIONS(4062), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -227710,54 +232472,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [124354] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3967), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3965), 28, - anon_sym_DOT, + [121760] = 21, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5056), 1, + sym_identifier, + ACTIONS(5058), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, + ACTIONS(5060), 1, + anon_sym_STAR, + ACTIONS(5062), 1, anon_sym_if, - anon_sym_in, + ACTIONS(5064), 1, + anon_sym_COLON, + ACTIONS(5066), 1, anon_sym_STAR_STAR, + ACTIONS(5068), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(5070), 1, 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, - [124395] = 3, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4640), 1, + sym_case_pattern, + STATE(5564), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4628), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5072), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4349), 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, + [121837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 4, + ACTIONS(4827), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 28, + ACTIONS(4825), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227786,16 +232566,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124436] = 3, + [121878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 4, + ACTIONS(4106), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3961), 28, + ACTIONS(4101), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227824,16 +232604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124477] = 3, + [121919] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 4, + ACTIONS(4067), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(811), 28, + ACTIONS(4064), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227862,16 +232642,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124518] = 3, + [121960] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5080), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5649), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 4, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [122039] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4056), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4589), 28, + ACTIONS(4051), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227900,16 +232737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124559] = 3, + [122080] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 4, + ACTIONS(4851), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 28, + ACTIONS(4849), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227938,16 +232775,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124600] = 3, + [122121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 4, + ACTIONS(4083), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3980), 28, + ACTIONS(4078), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -227976,56 +232813,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124641] = 5, + [122162] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 2, + ACTIONS(4775), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3957), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3947), 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(3951), 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, - [124686] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4625), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4623), 28, + ACTIONS(4773), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -228054,61 +232851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124727] = 7, - ACTIONS(3959), 1, - anon_sym_EQ, + [122203] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 2, + ACTIONS(4067), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3957), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3949), 3, + ACTIONS(4064), 28, anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3947), 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(3951), 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, - [124776] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4621), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4619), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -228116,6 +232870,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, @@ -228134,19 +232889,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124817] = 3, + [122244] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4723), 4, + ACTIONS(4067), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4721), 28, + ACTIONS(4064), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -228157,6 +232911,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, @@ -228172,16 +232927,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124858] = 3, + [122285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4595), 4, + ACTIONS(4720), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4593), 28, + ACTIONS(4718), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -228210,54 +232965,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124899] = 3, + [122326] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5082), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5769), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4577), 28, - anon_sym_DOT, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [122405] = 25, + ACTIONS(1422), 1, + anon_sym_long, + ACTIONS(5084), 1, + sym_identifier, + ACTIONS(5086), 1, anon_sym_LPAREN, + ACTIONS(5088), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, + ACTIONS(5094), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(5096), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5098), 1, + anon_sym_operator, + STATE(3243), 1, + sym_int_type, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3596), 1, + sym_function_pointer_type, + STATE(3722), 1, + sym_operator_name, + STATE(4614), 1, + sym_maybe_typed_name, + STATE(4749), 1, + sym_c_type, + STATE(5105), 1, + sym_type_index, + STATE(5532), 1, + sym_type_qualifier, + STATE(5745), 1, + sym__typedargslist, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [124940] = 3, + ACTIONS(5100), 2, + anon_sym_const, + anon_sym_volatile, + STATE(5005), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [122490] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4583), 4, + ACTIONS(4735), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4581), 28, + ACTIONS(4733), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -228286,16 +233120,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [124981] = 3, + [122531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4587), 4, + ACTIONS(4819), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4585), 28, + ACTIONS(4817), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -228324,258 +233158,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125022] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3978), 13, + [122572] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(5037), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3976), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5102), 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, - [125063] = 22, - ACTIONS(4114), 1, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5622), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [122651] = 22, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4947), 1, + ACTIONS(5027), 1, sym_identifier, - ACTIONS(4949), 1, + ACTIONS(5029), 1, anon_sym_LPAREN, - ACTIONS(4951), 1, + ACTIONS(5031), 1, anon_sym_STAR, - ACTIONS(4953), 1, - anon_sym_COLON, - ACTIONS(4955), 1, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + ACTIONS(5037), 1, anon_sym_SLASH, - STATE(3273), 1, + ACTIONS(5104), 1, + anon_sym_COLON, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4311), 1, + STATE(4287), 1, sym_c_type, - STATE(5005), 1, + STATE(5075), 1, sym_parameter, - STATE(5007), 1, + STATE(5076), 1, sym_tuple_pattern, - STATE(5733), 1, + STATE(5539), 1, sym__parameters, - STATE(5823), 1, + STATE(5816), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4959), 2, + ACTIONS(5039), 2, anon_sym_const, anon_sym_volatile, - STATE(3743), 2, + STATE(3761), 2, sym_int_type, sym_function_pointer_type, - STATE(5257), 2, + STATE(5332), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5250), 5, + STATE(5306), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [125142] = 3, + [122730] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3967), 13, + ACTIONS(4727), 4, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3965), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4725), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [125183] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3963), 13, - anon_sym_STAR, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3961), 19, - anon_sym_DOT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [122771] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 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, - [125224] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3963), 13, + ACTIONS(5031), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(5037), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3961), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5106), 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, - [125265] = 3, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5585), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 13, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [122850] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, anon_sym_STAR, - anon_sym_GT_GT, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(5037), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(3980), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5108), 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, - [125306] = 3, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5594), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [122929] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 13, + ACTIONS(4110), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -228589,7 +233442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3980), 19, + ACTIONS(4108), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -228609,16 +233462,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [125347] = 3, + [122970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4548), 4, + ACTIONS(4767), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 28, + ACTIONS(4765), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -228647,110 +233500,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125388] = 3, + [123011] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5110), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5780), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4639), 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, - [125429] = 22, - ACTIONS(4114), 1, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [123090] = 22, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4947), 1, + ACTIONS(5027), 1, sym_identifier, - ACTIONS(4949), 1, + ACTIONS(5029), 1, anon_sym_LPAREN, - ACTIONS(4951), 1, + ACTIONS(5031), 1, anon_sym_STAR, - ACTIONS(4955), 1, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + ACTIONS(5037), 1, anon_sym_SLASH, - ACTIONS(4961), 1, + ACTIONS(5112), 1, anon_sym_COLON, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4311), 1, + STATE(4287), 1, sym_c_type, - STATE(5005), 1, + STATE(5075), 1, sym_parameter, - STATE(5007), 1, + STATE(5076), 1, sym_tuple_pattern, - STATE(5520), 1, - sym_lambda_parameters, - STATE(5733), 1, + STATE(5539), 1, sym__parameters, + STATE(5602), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4959), 2, + ACTIONS(5039), 2, anon_sym_const, anon_sym_volatile, - STATE(3743), 2, + STATE(3761), 2, sym_int_type, sym_function_pointer_type, - STATE(5257), 2, + STATE(5332), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5250), 5, + STATE(5306), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [125508] = 4, + [123169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3951), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(3954), 13, + ACTIONS(4114), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -228764,10 +233632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(3947), 16, + ACTIONS(4112), 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, @@ -228781,16 +233652,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [125551] = 3, + [123210] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 4, + ACTIONS(4835), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 28, + ACTIONS(4833), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -228819,56 +233690,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125592] = 3, + [123251] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5114), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5557), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 4, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [123330] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(5037), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3951), 28, - anon_sym_DOT, + ACTIONS(5116), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5579), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [123409] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + ACTIONS(5031), 1, + anon_sym_STAR, + ACTIONS(5035), 1, 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, - [125633] = 3, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5118), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5590), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [123488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 4, + ACTIONS(4652), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(3951), 28, + ACTIONS(4650), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -228879,7 +233884,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, @@ -228895,72 +233899,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125674] = 22, - ACTIONS(4114), 1, + [123529] = 22, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4947), 1, + ACTIONS(5027), 1, sym_identifier, - ACTIONS(4949), 1, + ACTIONS(5029), 1, anon_sym_LPAREN, - ACTIONS(4951), 1, + ACTIONS(5031), 1, anon_sym_STAR, - ACTIONS(4955), 1, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + ACTIONS(5037), 1, anon_sym_SLASH, - ACTIONS(4963), 1, + ACTIONS(5120), 1, anon_sym_COLON, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4311), 1, + STATE(4287), 1, sym_c_type, - STATE(5005), 1, + STATE(5075), 1, sym_parameter, - STATE(5007), 1, + STATE(5076), 1, sym_tuple_pattern, - STATE(5642), 1, - sym_lambda_parameters, - STATE(5733), 1, + STATE(5539), 1, sym__parameters, + STATE(5606), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4959), 2, + ACTIONS(5039), 2, anon_sym_const, anon_sym_volatile, - STATE(3743), 2, + STATE(3761), 2, sym_int_type, sym_function_pointer_type, - STATE(5257), 2, + STATE(5332), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5250), 5, + STATE(5306), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [125753] = 4, + [123608] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5122), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5623), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(811), 3, - anon_sym_DOT, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [123687] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(813), 13, + ACTIONS(5031), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5124), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5693), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [123766] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4095), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -228974,10 +234088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(847), 16, + ACTIONS(4093), 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, @@ -228991,29 +234108,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [125796] = 7, - ACTIONS(4965), 1, - anon_sym_as, - ACTIONS(4967), 1, - anon_sym_if, - ACTIONS(4969), 1, - anon_sym_and, - ACTIONS(4971), 1, - anon_sym_or, + [123807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 4, + ACTIONS(4771), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4627), 24, + ACTIONS(4769), 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, @@ -229022,6 +234133,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, @@ -229033,99 +234146,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125845] = 6, - ACTIONS(4969), 1, - anon_sym_and, - ACTIONS(4971), 1, - anon_sym_or, - ACTIONS(4973), 1, - anon_sym_as, + [123848] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 4, + ACTIONS(4076), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4643), 25, - 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_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, - [125892] = 5, - ACTIONS(4969), 1, - anon_sym_and, - ACTIONS(4971), 1, - anon_sym_or, + ACTIONS(4074), 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, + [123889] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 4, + ACTIONS(4076), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4650), 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, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [125937] = 4, - ACTIONS(4969), 1, - anon_sym_and, + ACTIONS(4074), 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, + [123930] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5126), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5550), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [124009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 4, + ACTIONS(4095), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4654), 27, + ACTIONS(4093), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -229141,6 +234304,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, @@ -229153,29 +234317,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [125980] = 7, - ACTIONS(4965), 1, - anon_sym_as, - ACTIONS(4967), 1, - anon_sym_if, - ACTIONS(4969), 1, - anon_sym_and, - ACTIONS(4971), 1, - anon_sym_or, + [124050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4660), 4, + ACTIONS(4076), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4658), 24, + ACTIONS(4074), 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, @@ -229184,6 +234342,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, @@ -229195,29 +234355,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [126029] = 7, - ACTIONS(4965), 1, - anon_sym_as, - ACTIONS(4967), 1, - anon_sym_if, - ACTIONS(4969), 1, - anon_sym_and, - ACTIONS(4971), 1, - anon_sym_or, + [124091] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5128), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5530), 1, + sym_lambda_parameters, + STATE(5539), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [124170] = 22, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5027), 1, + sym_identifier, + ACTIONS(5029), 1, + anon_sym_LPAREN, + ACTIONS(5031), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5130), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5075), 1, + sym_parameter, + STATE(5076), 1, + sym_tuple_pattern, + STATE(5539), 1, + sym__parameters, + STATE(5862), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [124249] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4664), 4, + ACTIONS(4076), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4662), 24, + ACTIONS(4074), 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, @@ -229226,6 +234494,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, @@ -229237,54 +234507,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [126078] = 3, + [124290] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 4, + ACTIONS(4091), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4654), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [126119] = 3, + ACTIONS(4089), 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, + [124331] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4414), 4, + ACTIONS(4739), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4406), 28, + ACTIONS(4737), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -229313,16 +234583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [126160] = 3, + [124372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4614), 4, + ACTIONS(4712), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4612), 28, + ACTIONS(4710), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -229351,16 +234621,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [126201] = 3, + [124413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4727), 4, + ACTIONS(3910), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4725), 28, + ACTIONS(3899), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -229389,16 +234659,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [126242] = 3, + [124454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4735), 4, + ACTIONS(4407), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4733), 28, + ACTIONS(4393), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -229427,1140 +234697,615 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [126283] = 3, + [124495] = 7, + ACTIONS(4099), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4747), 4, + ACTIONS(4067), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(4070), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4745), 28, + ACTIONS(4097), 3, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4062), 12, 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, - [126324] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_LPAREN, - ACTIONS(4951), 1, - anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, - anon_sym_SLASH, - ACTIONS(4976), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5551), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [126403] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_LPAREN, - ACTIONS(4951), 1, - anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, - anon_sym_SLASH, - ACTIONS(4978), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5687), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [126482] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, + ACTIONS(4064), 12, anon_sym_LPAREN, - ACTIONS(4951), 1, - anon_sym_STAR, - ACTIONS(4955), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4957), 1, - anon_sym_SLASH, - ACTIONS(4980), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5647), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [126561] = 25, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4982), 1, - sym_identifier, - ACTIONS(4984), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_RPAREN, - ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(4994), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4996), 1, - anon_sym_operator, - STATE(3206), 1, - sym_int_type, - STATE(3209), 1, - sym__signedness, - STATE(3417), 1, - sym__longness, - STATE(3530), 1, - sym_function_pointer_type, - STATE(3583), 1, - sym_operator_name, - STATE(4665), 1, - sym_c_type, - STATE(4681), 1, - sym_maybe_typed_name, - STATE(5050), 1, - sym_type_index, - STATE(5645), 1, - sym_type_qualifier, - STATE(5670), 1, - sym__typedargslist, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1384), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1386), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(4998), 2, - anon_sym_const, - anon_sym_volatile, - STATE(5186), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [126646] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_LPAREN, - ACTIONS(4951), 1, - anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, - anon_sym_SLASH, - ACTIONS(5000), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5696), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [126725] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_LPAREN, - ACTIONS(4951), 1, - anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, - anon_sym_SLASH, - ACTIONS(5002), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5733), 1, - sym__parameters, - STATE(5813), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [126804] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_LPAREN, - ACTIONS(4951), 1, - anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, - anon_sym_SLASH, - ACTIONS(5004), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5607), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, + anon_sym_CARET, + anon_sym_LT_LT, + [124544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [126883] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_LPAREN, - ACTIONS(4951), 1, + ACTIONS(4091), 13, anon_sym_STAR, - ACTIONS(4955), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5006), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5733), 1, - sym__parameters, - STATE(5742), 1, - sym_lambda_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [126962] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(4089), 19, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4951), 1, - anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, - anon_sym_SLASH, - ACTIONS(5008), 1, + anon_sym_COMMA, anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5493), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [124585] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127041] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, + ACTIONS(4101), 3, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4951), 1, + anon_sym_LBRACK, + ACTIONS(4106), 13, anon_sym_STAR, - ACTIONS(4955), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5010), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3920), 16, + anon_sym_COMMA, anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5609), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, + 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, + [124628] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127120] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_LPAREN, - ACTIONS(4951), 1, + ACTIONS(4091), 4, anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, anon_sym_SLASH, - ACTIONS(5012), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5733), 1, - sym__parameters, - STATE(5793), 1, - sym_lambda_parameters, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4089), 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, + [124669] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127199] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, + ACTIONS(3899), 3, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4951), 1, + anon_sym_LBRACK, + ACTIONS(3910), 13, anon_sym_STAR, - ACTIONS(4955), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5014), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(3920), 16, + anon_sym_COMMA, anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5513), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, + 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, + [124712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127278] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_LPAREN, - ACTIONS(4951), 1, + ACTIONS(4091), 4, anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, anon_sym_SLASH, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5549), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4089), 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, + [124753] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127357] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, + ACTIONS(4051), 3, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4951), 1, + anon_sym_LBRACK, + ACTIONS(4056), 13, anon_sym_STAR, - ACTIONS(4955), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5018), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(4058), 16, + anon_sym_COMMA, anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5561), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127436] = 22, - ACTIONS(4114), 1, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [124796] = 22, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4947), 1, + ACTIONS(5027), 1, sym_identifier, - ACTIONS(4949), 1, + ACTIONS(5029), 1, anon_sym_LPAREN, - ACTIONS(4951), 1, + ACTIONS(5031), 1, anon_sym_STAR, - ACTIONS(4955), 1, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + ACTIONS(5037), 1, anon_sym_SLASH, - ACTIONS(5020), 1, + ACTIONS(5132), 1, anon_sym_COLON, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4311), 1, + STATE(4287), 1, sym_c_type, - STATE(5005), 1, + STATE(5075), 1, sym_parameter, - STATE(5007), 1, + STATE(5076), 1, sym_tuple_pattern, - STATE(5576), 1, - sym_lambda_parameters, - STATE(5733), 1, + STATE(5539), 1, sym__parameters, + STATE(5620), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4959), 2, + ACTIONS(5039), 2, anon_sym_const, anon_sym_volatile, - STATE(3743), 2, + STATE(3761), 2, sym_int_type, sym_function_pointer_type, - STATE(5257), 2, + STATE(5332), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5250), 5, + STATE(5306), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [127515] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_LPAREN, - ACTIONS(4951), 1, + [124875] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4843), 4, anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, anon_sym_SLASH, - ACTIONS(5022), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5589), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 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, + [124916] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127594] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, + ACTIONS(4807), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4805), 28, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4951), 1, + 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, + [124957] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(859), 4, anon_sym_STAR, - ACTIONS(4955), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(857), 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, - ACTIONS(4957), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [124998] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4067), 2, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5024), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5649), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, + ACTIONS(4070), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4062), 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(4064), 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, + [125043] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127673] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, + ACTIONS(857), 3, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(4951), 1, + anon_sym_LBRACK, + ACTIONS(859), 13, anon_sym_STAR, - ACTIONS(4955), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5026), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(893), 16, + anon_sym_COMMA, anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5482), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, + 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, + [125086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127752] = 22, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4947), 1, - sym_identifier, - ACTIONS(4949), 1, - anon_sym_LPAREN, - ACTIONS(4951), 1, + ACTIONS(4823), 4, anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, anon_sym_SLASH, - ACTIONS(5028), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5005), 1, - sym_parameter, - STATE(5007), 1, - sym_tuple_pattern, - STATE(5572), 1, - sym_lambda_parameters, - STATE(5733), 1, - sym__parameters, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4821), 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, + [125127] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [127831] = 3, + ACTIONS(4811), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4809), 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, + [125168] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4559), 4, + ACTIONS(4847), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4557), 28, + ACTIONS(4845), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -230589,166 +235334,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [127872] = 22, - ACTIONS(4114), 1, + [125209] = 22, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4947), 1, + ACTIONS(5027), 1, sym_identifier, - ACTIONS(4949), 1, + ACTIONS(5029), 1, anon_sym_LPAREN, - ACTIONS(4951), 1, + ACTIONS(5031), 1, anon_sym_STAR, - ACTIONS(4955), 1, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + ACTIONS(5037), 1, anon_sym_SLASH, - ACTIONS(5030), 1, + ACTIONS(5134), 1, anon_sym_COLON, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4311), 1, + STATE(4287), 1, sym_c_type, - STATE(5005), 1, + STATE(5075), 1, sym_parameter, - STATE(5007), 1, + STATE(5076), 1, sym_tuple_pattern, - STATE(5733), 1, + STATE(5539), 1, sym__parameters, - STATE(5752), 1, + STATE(5802), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4959), 2, + ACTIONS(5039), 2, anon_sym_const, anon_sym_volatile, - STATE(3743), 2, + STATE(3761), 2, sym_int_type, sym_function_pointer_type, - STATE(5257), 2, + STATE(5332), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5250), 5, + STATE(5306), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [127951] = 22, - ACTIONS(4114), 1, + [125288] = 22, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4947), 1, + ACTIONS(5027), 1, sym_identifier, - ACTIONS(4949), 1, + ACTIONS(5029), 1, anon_sym_LPAREN, - ACTIONS(4951), 1, + ACTIONS(5031), 1, anon_sym_STAR, - ACTIONS(4955), 1, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + ACTIONS(5037), 1, anon_sym_SLASH, - ACTIONS(5032), 1, + ACTIONS(5136), 1, anon_sym_COLON, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4311), 1, + STATE(4287), 1, sym_c_type, - STATE(5005), 1, + STATE(5075), 1, sym_parameter, - STATE(5007), 1, + STATE(5076), 1, sym_tuple_pattern, - STATE(5733), 1, + STATE(5539), 1, sym__parameters, - STATE(5758), 1, + STATE(5808), 1, sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4959), 2, + ACTIONS(5039), 2, anon_sym_const, anon_sym_volatile, - STATE(3743), 2, + STATE(3761), 2, sym_int_type, sym_function_pointer_type, - STATE(5257), 2, + STATE(5332), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5250), 5, + STATE(5306), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [128030] = 21, - ACTIONS(1267), 1, + [125367] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4783), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4781), 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, + [125408] = 21, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(4923), 1, + ACTIONS(5056), 1, sym_identifier, - ACTIONS(4925), 1, + ACTIONS(5058), 1, anon_sym_LPAREN, - ACTIONS(4927), 1, + ACTIONS(5060), 1, anon_sym_STAR, - ACTIONS(4929), 1, + ACTIONS(5062), 1, anon_sym_if, - ACTIONS(4933), 1, + ACTIONS(5066), 1, anon_sym_STAR_STAR, - ACTIONS(4935), 1, + ACTIONS(5068), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5070), 1, anon_sym_DASH, - ACTIONS(4941), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(4943), 1, + ACTIONS(5076), 1, sym_integer, - ACTIONS(4945), 1, + ACTIONS(5078), 1, sym_float, - ACTIONS(5034), 1, + ACTIONS(5138), 1, anon_sym_COLON, - STATE(3940), 1, + STATE(4046), 1, sym_string, - STATE(4265), 1, + STATE(4290), 1, sym_dotted_name, - STATE(4636), 1, + STATE(4640), 1, sym_case_pattern, - STATE(5568), 1, + STATE(5845), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4651), 2, + STATE(4628), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4939), 3, + ACTIONS(5072), 3, anon_sym__, sym_true, sym_false, - STATE(4270), 10, + STATE(4349), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -230759,168 +235542,228 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128107] = 4, + [125485] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1530), 3, + ACTIONS(4763), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4761), 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, - ACTIONS(1329), 13, + 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, + [125526] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4779), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4777), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1327), 16, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [125567] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4705), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4703), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, 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, - [128150] = 19, - ACTIONS(5036), 1, - sym_identifier, - ACTIONS(5045), 1, - anon_sym_operator, - ACTIONS(5054), 1, - anon_sym_long, - ACTIONS(5060), 1, - anon_sym_ctypedef, - ACTIONS(5063), 1, - anon_sym_cppclass, - ACTIONS(5066), 1, - sym__dedent, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3905), 1, - sym_maybe_typed_name, + 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, + [125608] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5048), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5051), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5057), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3134), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5042), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(2787), 4, - sym_cvar_def, - sym_ctypedef_statement, - sym_cppclass, - aux_sym__cppclass_suite_repeat1, - ACTIONS(5039), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [128222] = 19, - ACTIONS(371), 1, + ACTIONS(4114), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4112), 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, + [125649] = 19, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(5068), 1, + ACTIONS(5140), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(3134), 2, + STATE(3186), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2787), 4, + STATE(2834), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, aux_sym__cppclass_suite_repeat1, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [128294] = 5, + [125721] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5072), 2, + ACTIONS(5144), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(2789), 2, + STATE(2832), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(5074), 5, + ACTIONS(5146), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - ACTIONS(5070), 22, + ACTIONS(5142), 22, anon_sym_print, anon_sym_match, anon_sym_async, @@ -230943,368 +235786,421 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, anon_sym_enum, - [128338] = 19, - ACTIONS(371), 1, + [125765] = 21, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(5149), 1, + sym_identifier, + ACTIONS(5151), 1, + anon_sym_LPAREN, + ACTIONS(5153), 1, + anon_sym_RPAREN, + ACTIONS(5155), 1, + anon_sym_STAR, + ACTIONS(5157), 1, + anon_sym_STAR_STAR, + ACTIONS(5159), 1, + anon_sym_SLASH, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4382), 1, + sym_c_type, + STATE(4765), 1, + sym_tuple_pattern, + STATE(5210), 1, + sym_parameter, + STATE(5855), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5222), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5455), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [125841] = 19, + ACTIONS(5161), 1, sym_identifier, - ACTIONS(4212), 1, + ACTIONS(5170), 1, + anon_sym_operator, + ACTIONS(5179), 1, + anon_sym_long, + ACTIONS(5185), 1, anon_sym_ctypedef, - ACTIONS(4218), 1, + ACTIONS(5188), 1, anon_sym_cppclass, - ACTIONS(5077), 1, + ACTIONS(5191), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(5173), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(5176), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(5182), 2, anon_sym_const, anon_sym_volatile, - STATE(3134), 2, + STATE(3186), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(5167), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2791), 4, + STATE(2834), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, aux_sym__cppclass_suite_repeat1, - ACTIONS(103), 5, + ACTIONS(5164), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [128410] = 19, - ACTIONS(371), 1, + [125913] = 19, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(5079), 1, + ACTIONS(5193), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(3134), 2, + STATE(3186), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2787), 4, + STATE(2834), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, aux_sym__cppclass_suite_repeat1, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [128482] = 21, - ACTIONS(4114), 1, + [125985] = 19, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(5081), 1, - sym_identifier, - ACTIONS(5083), 1, - anon_sym_LPAREN, - ACTIONS(5085), 1, - anon_sym_RPAREN, - ACTIONS(5087), 1, - anon_sym_STAR, - ACTIONS(5089), 1, - anon_sym_STAR_STAR, - ACTIONS(5091), 1, - anon_sym_SLASH, - STATE(3273), 1, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_ctypedef, + ACTIONS(4322), 1, + anon_sym_cppclass, + ACTIONS(5195), 1, + sym__dedent, + STATE(3253), 1, sym__signedness, - STATE(3482), 1, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, sym__longness, - STATE(4316), 1, - sym_c_type, - STATE(4894), 1, - sym_parameter, - STATE(4934), 1, - sym_tuple_pattern, - STATE(5597), 1, - sym__parameters, + STATE(3718), 1, + sym_operator_name, + STATE(3927), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4959), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(4907), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, + STATE(3186), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5327), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [128558] = 19, - ACTIONS(371), 1, + STATE(2838), 4, + sym_cvar_def, + sym_ctypedef_statement, + sym_cppclass, + aux_sym__cppclass_suite_repeat1, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [126057] = 19, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(5093), 1, + ACTIONS(5197), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(3134), 2, + STATE(3186), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2787), 4, + STATE(2835), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, aux_sym__cppclass_suite_repeat1, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [128630] = 19, - ACTIONS(371), 1, + [126129] = 19, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(5095), 1, + ACTIONS(5199), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(3134), 2, + STATE(3186), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2788), 4, + STATE(2834), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, aux_sym__cppclass_suite_repeat1, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [128702] = 19, - ACTIONS(371), 1, + [126201] = 19, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4212), 1, + ACTIONS(4316), 1, anon_sym_ctypedef, - ACTIONS(4218), 1, + ACTIONS(4322), 1, anon_sym_cppclass, - ACTIONS(5097), 1, + ACTIONS(5201), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(3134), 2, + STATE(3186), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(2793), 4, + STATE(2831), 4, sym_cvar_def, sym_ctypedef_statement, sym_cppclass, aux_sym__cppclass_suite_repeat1, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [128774] = 19, - ACTIONS(2527), 1, + [126273] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5099), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5207), 1, + anon_sym_RPAREN, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5109), 1, - anon_sym_RBRACK, - ACTIONS(5111), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5223), 1, sym_float, - STATE(4156), 1, + STATE(4259), 1, sym_string, - STATE(4504), 1, + STATE(4554), 1, sym_dotted_name, - STATE(5120), 1, + STATE(4654), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5113), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4526), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -231315,48 +236211,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128845] = 19, - ACTIONS(1428), 1, + [126344] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5125), 1, - anon_sym_RPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - STATE(4107), 1, + ACTIONS(5225), 1, + anon_sym_RPAREN, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4695), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -231367,48 +236263,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128916] = 19, - ACTIONS(1428), 1, + [126415] = 19, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5237), 1, + anon_sym_RBRACK, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5143), 1, - anon_sym_RPAREN, - STATE(4107), 1, + STATE(4123), 1, sym_string, - STATE(4538), 1, + STATE(4498), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4890), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5260), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5241), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4504), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -231419,48 +236315,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [128987] = 19, - ACTIONS(2527), 1, + [126486] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5099), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5145), 1, - anon_sym_RBRACK, - STATE(4156), 1, + ACTIONS(5249), 1, + anon_sym_RPAREN, + STATE(4259), 1, sym_string, - STATE(4504), 1, + STATE(4554), 1, sym_dotted_name, - STATE(5120), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5113), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4526), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -231471,48 +236367,101 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129058] = 19, - ACTIONS(2527), 1, + [126557] = 20, + ACTIONS(127), 1, + anon_sym_class, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(5251), 1, + anon_sym_COLON, + ACTIONS(5253), 1, + anon_sym_namespace, + ACTIONS(5255), 1, + anon_sym_nogil, + STATE(3253), 1, + sym__signedness, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, + sym__longness, + STATE(3718), 1, + sym_operator_name, + STATE(3956), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(379), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4140), 2, + anon_sym_const, + anon_sym_volatile, + STATE(683), 2, + sym_class_definition, + sym_cvar_def, + STATE(3182), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [126630] = 19, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5099), 1, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5147), 1, + ACTIONS(5257), 1, anon_sym_RBRACK, - STATE(4156), 1, + STATE(4123), 1, sym_string, - STATE(4504), 1, + STATE(4498), 1, sym_dotted_name, - STATE(5120), 1, + STATE(4890), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, + STATE(5260), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5113), 3, + ACTIONS(5241), 3, anon_sym__, sym_true, sym_false, - STATE(4526), 10, + STATE(4504), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -231523,48 +236472,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129129] = 19, - ACTIONS(1428), 1, + [126701] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5149), 1, + ACTIONS(5259), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -231575,101 +236524,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129200] = 20, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4949), 1, - anon_sym_LPAREN, - ACTIONS(4951), 1, - anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, - anon_sym_SLASH, - ACTIONS(5151), 1, - sym_identifier, - ACTIONS(5153), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5204), 1, - sym_tuple_pattern, - STATE(5230), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [129273] = 19, - ACTIONS(1428), 1, + [126772] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5155), 1, + ACTIONS(5261), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -231680,48 +236576,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129344] = 19, - ACTIONS(2527), 1, + [126843] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5099), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5157), 1, - anon_sym_RBRACK, - STATE(4156), 1, + ACTIONS(5263), 1, + anon_sym_RPAREN, + STATE(4259), 1, sym_string, - STATE(4504), 1, + STATE(4554), 1, sym_dotted_name, - STATE(5120), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5113), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4526), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -231732,101 +236628,101 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129415] = 20, - ACTIONS(125), 1, + [126914] = 20, + ACTIONS(59), 1, anon_sym_class, - ACTIONS(371), 1, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(5159), 1, + ACTIONS(5265), 1, anon_sym_COLON, - ACTIONS(5161), 1, + ACTIONS(5267), 1, anon_sym_namespace, - ACTIONS(5163), 1, + ACTIONS(5269), 1, anon_sym_nogil, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3873), 1, + STATE(3969), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(675), 2, + STATE(1186), 2, sym_class_definition, sym_cvar_def, - STATE(3140), 2, + STATE(3184), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [129488] = 19, - ACTIONS(1428), 1, + [126987] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5165), 1, + ACTIONS(5271), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4752), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -231837,48 +236733,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129559] = 19, - ACTIONS(1428), 1, + [127058] = 19, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5167), 1, - anon_sym_RPAREN, - STATE(4107), 1, + ACTIONS(5273), 1, + anon_sym_RBRACK, + STATE(4123), 1, sym_string, - STATE(4538), 1, + STATE(4498), 1, sym_dotted_name, - STATE(4546), 1, + STATE(4890), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5260), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5241), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4504), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -231889,48 +236785,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129630] = 19, - ACTIONS(2527), 1, + [127129] = 19, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5099), 1, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5169), 1, + ACTIONS(5275), 1, anon_sym_RBRACK, - STATE(4156), 1, + STATE(4123), 1, sym_string, - STATE(4504), 1, + STATE(4498), 1, sym_dotted_name, - STATE(4548), 1, + STATE(4597), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, + STATE(5260), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5113), 3, + ACTIONS(5241), 3, anon_sym__, sym_true, sym_false, - STATE(4526), 10, + STATE(4504), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -231941,101 +236837,100 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129701] = 20, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5081), 1, + [127200] = 19, + ACTIONS(1462), 1, + anon_sym_None, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5083), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5087), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5089), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5091), 1, - anon_sym_SLASH, - ACTIONS(5153), 1, + ACTIONS(5213), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_DASH, + ACTIONS(5219), 1, + anon_sym_LBRACE, + ACTIONS(5221), 1, + sym_integer, + ACTIONS(5223), 1, + sym_float, + ACTIONS(5277), 1, anon_sym_RPAREN, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4316), 1, - sym_c_type, - STATE(4934), 1, - sym_tuple_pattern, - STATE(5357), 1, - sym_parameter, + STATE(4259), 1, + sym_string, + STATE(4554), 1, + sym_dotted_name, + STATE(4734), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(4907), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5327), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [129774] = 19, - ACTIONS(1428), 1, + STATE(5241), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5217), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4557), 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, + [127271] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5171), 1, + ACTIONS(5279), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4600), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232046,48 +236941,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129845] = 19, - ACTIONS(1428), 1, + [127342] = 19, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5173), 1, - anon_sym_RPAREN, - STATE(4107), 1, + ACTIONS(5281), 1, + anon_sym_RBRACK, + STATE(4123), 1, sym_string, - STATE(4538), 1, + STATE(4498), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4890), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5260), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5241), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4504), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232098,48 +236993,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129916] = 19, - ACTIONS(1428), 1, + [127413] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5175), 1, + ACTIONS(5283), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4671), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232150,48 +237045,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [129987] = 19, - ACTIONS(1428), 1, + [127484] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5177), 1, + ACTIONS(5285), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232202,48 +237097,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130058] = 19, - ACTIONS(2527), 1, + [127555] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5099), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5179), 1, - anon_sym_RBRACK, - STATE(4156), 1, + ACTIONS(5287), 1, + anon_sym_RPAREN, + STATE(4259), 1, sym_string, - STATE(4504), 1, + STATE(4554), 1, sym_dotted_name, - STATE(5120), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5113), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4526), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232254,48 +237149,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130129] = 19, - ACTIONS(2527), 1, + [127626] = 19, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5099), 1, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5181), 1, + ACTIONS(5289), 1, anon_sym_RBRACK, - STATE(4156), 1, + STATE(4123), 1, sym_string, - STATE(4504), 1, + STATE(4498), 1, sym_dotted_name, - STATE(4674), 1, + STATE(4747), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, + STATE(5260), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5113), 3, + ACTIONS(5241), 3, anon_sym__, sym_true, sym_false, - STATE(4526), 10, + STATE(4504), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232306,48 +237201,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130200] = 19, - ACTIONS(1428), 1, + [127697] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5183), 1, + ACTIONS(5291), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232358,48 +237253,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130271] = 19, - ACTIONS(2527), 1, + [127768] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5099), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5185), 1, - anon_sym_RBRACK, - STATE(4156), 1, + ACTIONS(5293), 1, + anon_sym_RPAREN, + STATE(4259), 1, sym_string, - STATE(4504), 1, + STATE(4554), 1, sym_dotted_name, - STATE(5120), 1, + STATE(4693), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5113), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4526), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232410,48 +237305,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130342] = 19, - ACTIONS(1428), 1, + [127839] = 19, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5187), 1, - anon_sym_RPAREN, - STATE(4107), 1, + ACTIONS(5295), 1, + anon_sym_RBRACK, + STATE(4123), 1, sym_string, - STATE(4538), 1, + STATE(4498), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4698), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5260), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5241), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4504), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232462,48 +237357,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130413] = 19, - ACTIONS(1428), 1, + [127910] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5189), 1, + ACTIONS(5297), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4674), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232514,48 +237409,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130484] = 19, - ACTIONS(1428), 1, + [127981] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5191), 1, + ACTIONS(5299), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232566,48 +237461,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130555] = 19, - ACTIONS(1428), 1, + [128052] = 19, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5193), 1, - anon_sym_RPAREN, - STATE(4107), 1, + ACTIONS(5301), 1, + anon_sym_RBRACK, + STATE(4123), 1, sym_string, - STATE(4538), 1, + STATE(4498), 1, sym_dotted_name, - STATE(4573), 1, + STATE(4677), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5260), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5241), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4504), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232618,48 +237513,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130626] = 19, - ACTIONS(2527), 1, + [128123] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5099), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5195), 1, - anon_sym_RBRACK, - STATE(4156), 1, + ACTIONS(5303), 1, + anon_sym_RPAREN, + STATE(4259), 1, sym_string, - STATE(4504), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4574), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5113), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4526), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232670,48 +237565,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130697] = 19, - ACTIONS(1428), 1, + [128194] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5197), 1, + ACTIONS(5305), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4580), 1, + STATE(4639), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232722,48 +237617,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130768] = 19, - ACTIONS(1428), 1, + [128265] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5199), 1, + ACTIONS(5307), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232774,48 +237669,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130839] = 19, - ACTIONS(2527), 1, + [128336] = 19, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5099), 1, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5201), 1, + ACTIONS(5309), 1, anon_sym_RBRACK, - STATE(4156), 1, + STATE(4123), 1, sym_string, - STATE(4504), 1, + STATE(4498), 1, sym_dotted_name, - STATE(5120), 1, + STATE(4890), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, + STATE(5260), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5113), 3, + ACTIONS(5241), 3, anon_sym__, sym_true, sym_false, - STATE(4526), 10, + STATE(4504), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232826,48 +237721,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130910] = 19, - ACTIONS(1428), 1, + [128407] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5203), 1, + ACTIONS(5311), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232878,48 +237773,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [130981] = 19, - ACTIONS(2527), 1, + [128478] = 19, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5099), 1, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5205), 1, + ACTIONS(5313), 1, anon_sym_RBRACK, - STATE(4156), 1, + STATE(4123), 1, sym_string, - STATE(4504), 1, + STATE(4498), 1, sym_dotted_name, - STATE(5120), 1, + STATE(4890), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, + STATE(5260), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5113), 3, + ACTIONS(5241), 3, anon_sym__, sym_true, sym_false, - STATE(4526), 10, + STATE(4504), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232930,48 +237825,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [131052] = 19, - ACTIONS(1428), 1, + [128549] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5207), 1, + ACTIONS(5315), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4619), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -232982,48 +237877,48 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [131123] = 19, - ACTIONS(1428), 1, + [128620] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5209), 1, + ACTIONS(5317), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -233034,101 +237929,152 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [131194] = 20, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, + [128691] = 19, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(5227), 1, + sym_identifier, + ACTIONS(5229), 1, + anon_sym_LPAREN, + ACTIONS(5231), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_STAR_STAR, + ACTIONS(5235), 1, + anon_sym_LBRACK, + ACTIONS(5239), 1, + anon_sym_DASH, + ACTIONS(5243), 1, + anon_sym_LBRACE, + ACTIONS(5245), 1, + sym_integer, + ACTIONS(5247), 1, + sym_float, + ACTIONS(5319), 1, + anon_sym_RBRACK, + STATE(4123), 1, + sym_string, + STATE(4498), 1, + sym_dotted_name, + STATE(4890), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5260), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5241), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4504), 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, + [128762] = 19, + ACTIONS(1462), 1, + anon_sym_None, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(5203), 1, sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5209), 1, + anon_sym_STAR, ACTIONS(5211), 1, - anon_sym_COLON, + anon_sym_STAR_STAR, ACTIONS(5213), 1, - anon_sym_namespace, + anon_sym_LBRACK, ACTIONS(5215), 1, - anon_sym_nogil, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3929), 1, - sym_maybe_typed_name, + anon_sym_DASH, + ACTIONS(5219), 1, + anon_sym_LBRACE, + ACTIONS(5221), 1, + sym_integer, + ACTIONS(5223), 1, + sym_float, + ACTIONS(5321), 1, + anon_sym_RPAREN, + STATE(4259), 1, + sym_string, + STATE(4554), 1, + sym_dotted_name, + STATE(4682), 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(4032), 2, - anon_sym_const, - anon_sym_volatile, - STATE(1327), 2, - sym_class_definition, - sym_cvar_def, - STATE(3142), 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, - [131267] = 19, - ACTIONS(1428), 1, + STATE(5241), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5217), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4557), 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, + [128833] = 19, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5217), 1, - anon_sym_RPAREN, - STATE(4107), 1, + ACTIONS(5323), 1, + anon_sym_RBRACK, + STATE(4123), 1, sym_string, - STATE(4538), 1, + STATE(4498), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4890), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5260), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5241), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4504), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -233139,207 +238085,154 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [131338] = 20, - ACTIONS(4114), 1, + [128904] = 20, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5081), 1, - sym_identifier, - ACTIONS(5083), 1, + ACTIONS(5029), 1, anon_sym_LPAREN, - ACTIONS(5087), 1, + ACTIONS(5031), 1, anon_sym_STAR, - ACTIONS(5089), 1, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - ACTIONS(5091), 1, + ACTIONS(5037), 1, anon_sym_SLASH, - ACTIONS(5219), 1, - anon_sym_RPAREN, - STATE(3273), 1, + ACTIONS(5325), 1, + sym_identifier, + ACTIONS(5327), 1, + anon_sym_COLON, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4316), 1, + STATE(4287), 1, sym_c_type, - STATE(4934), 1, + STATE(5136), 1, sym_tuple_pattern, - STATE(5357), 1, + STATE(5504), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4959), 2, + ACTIONS(5039), 2, anon_sym_const, anon_sym_volatile, - STATE(3743), 2, + STATE(3761), 2, sym_int_type, sym_function_pointer_type, - STATE(4907), 2, + STATE(5332), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5327), 5, + STATE(5306), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [131411] = 20, - ACTIONS(371), 1, + [128977] = 20, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4312), 1, anon_sym_class, - ACTIONS(5221), 1, + ACTIONS(5329), 1, anon_sym_COLON, - ACTIONS(5223), 1, + ACTIONS(5331), 1, anon_sym_namespace, - ACTIONS(5225), 1, + ACTIONS(5333), 1, anon_sym_nogil, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(3005), 2, + STATE(3060), 2, sym_class_definition, sym_cvar_def, - STATE(3135), 2, + STATE(3187), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131484] = 20, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4949), 1, - anon_sym_LPAREN, - ACTIONS(4951), 1, - anon_sym_STAR, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(4957), 1, - anon_sym_SLASH, - ACTIONS(5151), 1, - sym_identifier, - ACTIONS(5219), 1, - anon_sym_COLON, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4311), 1, - sym_c_type, - STATE(5204), 1, - sym_tuple_pattern, - STATE(5230), 1, - sym_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4959), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3743), 2, - sym_int_type, - sym_function_pointer_type, - STATE(5257), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - STATE(5250), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [131557] = 19, - ACTIONS(1428), 1, + [129050] = 19, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5203), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5227), 1, + ACTIONS(5335), 1, anon_sym_RPAREN, - STATE(4107), 1, + STATE(4259), 1, sym_string, - STATE(4538), 1, + STATE(4554), 1, sym_dotted_name, - STATE(4708), 1, + STATE(4830), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(5241), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5217), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4557), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -233350,257 +238243,225 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [131628] = 19, - ACTIONS(2527), 1, - anon_sym_None, - ACTIONS(2535), 1, - sym_string_start, - ACTIONS(5099), 1, - sym_identifier, - ACTIONS(5101), 1, + [129121] = 20, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5029), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5031), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, - anon_sym_LBRACK, - ACTIONS(5111), 1, - anon_sym_DASH, - ACTIONS(5115), 1, - anon_sym_LBRACE, - ACTIONS(5117), 1, - sym_integer, - ACTIONS(5119), 1, - sym_float, - ACTIONS(5229), 1, - anon_sym_RBRACK, - STATE(4156), 1, - sym_string, - STATE(4504), 1, - sym_dotted_name, - STATE(4710), 1, - sym_case_pattern, + ACTIONS(5037), 1, + anon_sym_SLASH, + ACTIONS(5325), 1, + sym_identifier, + ACTIONS(5337), 1, + anon_sym_COLON, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4287), 1, + sym_c_type, + STATE(5136), 1, + sym_tuple_pattern, + STATE(5504), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5113), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4526), 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, - [131699] = 19, - ACTIONS(1428), 1, - anon_sym_None, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(5121), 1, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5332), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5306), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [129194] = 20, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5149), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5151), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5155), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5157), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACK, - ACTIONS(5133), 1, - anon_sym_DASH, - ACTIONS(5137), 1, - anon_sym_LBRACE, - ACTIONS(5139), 1, - sym_integer, - ACTIONS(5141), 1, - sym_float, - ACTIONS(5231), 1, + ACTIONS(5159), 1, + anon_sym_SLASH, + ACTIONS(5327), 1, anon_sym_RPAREN, - STATE(4107), 1, - sym_string, - STATE(4538), 1, - sym_dotted_name, - STATE(4572), 1, - sym_case_pattern, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4382), 1, + sym_c_type, + STATE(4765), 1, + sym_tuple_pattern, + STATE(5278), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5135), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4381), 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, - [131770] = 19, - ACTIONS(1428), 1, - anon_sym_None, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(5121), 1, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5039), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5222), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5455), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [129267] = 20, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5149), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5151), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5155), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5157), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACK, - ACTIONS(5133), 1, - anon_sym_DASH, - ACTIONS(5137), 1, - anon_sym_LBRACE, - ACTIONS(5139), 1, - sym_integer, - ACTIONS(5141), 1, - sym_float, - ACTIONS(5233), 1, + ACTIONS(5159), 1, + anon_sym_SLASH, + ACTIONS(5337), 1, anon_sym_RPAREN, - STATE(4107), 1, - sym_string, - STATE(4538), 1, - sym_dotted_name, - STATE(4889), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4892), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5135), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4381), 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, - [131841] = 3, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4382), 1, + sym_c_type, + STATE(4765), 1, + sym_tuple_pattern, + STATE(5278), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1516), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1514), 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, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(5039), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [131879] = 19, - ACTIONS(125), 1, + STATE(3761), 2, + sym_int_type, + sym_function_pointer_type, + STATE(5222), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + STATE(5455), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [129340] = 19, + ACTIONS(59), 1, anon_sym_class, - ACTIONS(371), 1, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(5235), 1, - anon_sym_from, - ACTIONS(5237), 1, + ACTIONS(5339), 1, anon_sym_COLON, - STATE(3210), 1, + ACTIONS(5341), 1, + anon_sym_nogil, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3873), 1, + STATE(3969), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(664), 2, + STATE(1326), 2, sym_class_definition, sym_cvar_def, - STATE(3140), 2, + STATE(3184), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131949] = 3, + [129410] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1528), 3, + ACTIONS(1482), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1526), 26, + ACTIONS(1480), 26, anon_sym_case, anon_sym_class, sym_identifier, @@ -233627,97 +238488,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [131987] = 19, - ACTIONS(4114), 1, + [129448] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3897), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(5343), 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_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, + [129486] = 19, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4949), 1, + ACTIONS(5029), 1, anon_sym_LPAREN, - ACTIONS(4951), 1, + ACTIONS(5031), 1, anon_sym_STAR, - ACTIONS(4955), 1, + ACTIONS(5035), 1, anon_sym_STAR_STAR, - ACTIONS(4957), 1, + ACTIONS(5037), 1, anon_sym_SLASH, - ACTIONS(5151), 1, + ACTIONS(5325), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4311), 1, + STATE(4287), 1, sym_c_type, - STATE(5204), 1, + STATE(5136), 1, sym_tuple_pattern, - STATE(5230), 1, + STATE(5504), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4959), 2, + ACTIONS(5039), 2, anon_sym_const, anon_sym_volatile, - STATE(3743), 2, + STATE(3761), 2, sym_int_type, sym_function_pointer_type, - STATE(5257), 2, + STATE(5332), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5250), 5, + STATE(5306), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [132057] = 18, - ACTIONS(1428), 1, + [129556] = 19, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_class, + ACTIONS(5345), 1, + anon_sym_COLON, + ACTIONS(5347), 1, + anon_sym_nogil, + STATE(3253), 1, + sym__signedness, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, + sym__longness, + STATE(3718), 1, + sym_operator_name, + STATE(3927), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(379), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4140), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3135), 2, + sym_class_definition, + sym_cvar_def, + STATE(3187), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [129626] = 18, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(5121), 1, + ACTIONS(5056), 1, sym_identifier, - ACTIONS(5123), 1, + ACTIONS(5058), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5060), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5066), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5068), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5070), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5076), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5078), 1, sym_float, - STATE(4107), 1, + STATE(4046), 1, sym_string, - STATE(4538), 1, + STATE(4290), 1, sym_dotted_name, - STATE(4889), 1, + STATE(4322), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4892), 2, + STATE(4628), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(5135), 3, + ACTIONS(5072), 3, anon_sym__, sym_true, sym_false, - STATE(4381), 10, + STATE(4349), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -233728,66 +238675,150 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [132125] = 19, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, + [129694] = 18, + ACTIONS(4188), 1, sym_identifier, - ACTIONS(5239), 1, - anon_sym_COLON, - ACTIONS(5241), 1, - anon_sym_nogil, - STATE(3210), 1, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4192), 1, + anon_sym_pass, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5349), 1, + sym__dedent, + STATE(3319), 1, sym__signedness, - STATE(3228), 1, + STATE(3544), 1, + sym__longness, + STATE(3595), 1, + sym_c_type, + STATE(5811), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3099), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3192), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, sym_int_type, - STATE(3416), 1, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [129762] = 18, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4192), 1, + anon_sym_pass, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5351), 1, + sym__dedent, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3929), 1, - sym_maybe_typed_name, + STATE(3595), 1, + sym_c_type, + STATE(5824), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4204), 2, anon_sym_const, anon_sym_volatile, - STATE(1295), 2, - sym_class_definition, - sym_cvar_def, - STATE(3142), 2, + STATE(3136), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3192), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132195] = 3, + [129830] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1548), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1546), 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, + [129868] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1520), 3, + ACTIONS(1502), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1518), 26, + ACTIONS(1500), 26, anon_sym_case, anon_sym_class, sym_identifier, @@ -233814,66 +238845,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132233] = 19, - ACTIONS(371), 1, + [129906] = 19, + ACTIONS(127), 1, + anon_sym_class, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4208), 1, - anon_sym_class, - ACTIONS(5243), 1, + ACTIONS(5353), 1, anon_sym_from, - ACTIONS(5245), 1, + ACTIONS(5355), 1, anon_sym_COLON, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3905), 1, + STATE(3956), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(3080), 2, + STATE(672), 2, sym_class_definition, sym_cvar_def, - STATE(3135), 2, + STATE(3182), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132303] = 3, + [129976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1512), 3, + ACTIONS(1478), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1510), 26, + ACTIONS(1476), 26, anon_sym_case, anon_sym_class, sym_identifier, @@ -233900,46 +238931,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132341] = 18, - ACTIONS(1267), 1, + [130014] = 18, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1279), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(4923), 1, + ACTIONS(5357), 1, sym_identifier, - ACTIONS(4925), 1, + ACTIONS(5359), 1, anon_sym_LPAREN, - ACTIONS(4927), 1, + ACTIONS(5361), 1, anon_sym_STAR, - ACTIONS(4933), 1, + ACTIONS(5363), 1, anon_sym_STAR_STAR, - ACTIONS(4935), 1, + ACTIONS(5365), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5367), 1, anon_sym_DASH, - ACTIONS(4941), 1, + ACTIONS(5371), 1, anon_sym_LBRACE, - ACTIONS(4943), 1, + ACTIONS(5373), 1, sym_integer, - ACTIONS(4945), 1, + ACTIONS(5375), 1, sym_float, - STATE(3940), 1, + STATE(4257), 1, sym_string, - STATE(4265), 1, + STATE(4552), 1, sym_dotted_name, - STATE(4636), 1, + STATE(4845), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4651), 2, + STATE(5228), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(4939), 3, + ACTIONS(5369), 3, anon_sym__, sym_true, sym_false, - STATE(4270), 10, + STATE(4400), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -233950,739 +238981,970 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [132409] = 18, - ACTIONS(4100), 1, + [130082] = 19, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5149), 1, sym_identifier, - ACTIONS(4102), 1, + ACTIONS(5151), 1, anon_sym_LPAREN, - ACTIONS(4104), 1, - anon_sym_pass, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5247), 1, - sym__dedent, - STATE(3273), 1, + ACTIONS(5155), 1, + anon_sym_STAR, + ACTIONS(5157), 1, + anon_sym_STAR_STAR, + ACTIONS(5159), 1, + anon_sym_SLASH, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(3517), 1, + STATE(4382), 1, sym_c_type, - STATE(5732), 1, - sym_pass_statement, + STATE(4765), 1, + sym_tuple_pattern, + STATE(5278), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + ACTIONS(5039), 2, anon_sym_const, anon_sym_volatile, - STATE(3034), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3151), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, + STATE(3761), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + STATE(5222), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + ACTIONS(4196), 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, - [132477] = 3, + STATE(5455), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [130152] = 19, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_class, + ACTIONS(5377), 1, + anon_sym_from, + ACTIONS(5379), 1, + anon_sym_COLON, + STATE(3253), 1, + sym__signedness, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, + sym__longness, + STATE(3718), 1, + sym_operator_name, + STATE(3927), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1522), 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, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4140), 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(3106), 2, + sym_class_definition, + sym_cvar_def, + STATE(3187), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132515] = 18, - ACTIONS(4100), 1, + [130222] = 18, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5056), 1, sym_identifier, - ACTIONS(4102), 1, + ACTIONS(5058), 1, anon_sym_LPAREN, - ACTIONS(4114), 1, + ACTIONS(5060), 1, + anon_sym_STAR, + ACTIONS(5066), 1, + anon_sym_STAR_STAR, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4640), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4628), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5072), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4349), 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, + [130290] = 19, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4903), 1, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(5381), 1, anon_sym_class, - ACTIONS(4907), 1, - anon_sym_enum, - ACTIONS(5249), 1, + ACTIONS(5383), 1, anon_sym_ctypedef, - STATE(3273), 1, + ACTIONS(5387), 1, + anon_sym_enum, + STATE(3253), 1, sym__signedness, - STATE(3482), 1, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, sym__longness, - STATE(3516), 1, - sym_c_type, + STATE(3718), 1, + sym_operator_name, + STATE(3938), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4905), 2, + ACTIONS(5385), 2, anon_sym_struct, anon_sym_union, - STATE(2789), 2, + STATE(2832), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132583] = 18, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4104), 1, - anon_sym_pass, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5251), 1, - sym__dedent, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3517), 1, - sym_c_type, - STATE(5527), 1, - sym_pass_statement, + [130360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(1498), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1496), 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(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3082), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3151), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 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, - [132651] = 18, - ACTIONS(4100), 1, + [130398] = 18, + ACTIONS(2533), 1, + anon_sym_None, + ACTIONS(2541), 1, + sym_string_start, + ACTIONS(5227), 1, sym_identifier, - ACTIONS(4102), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(4104), 1, - anon_sym_pass, - ACTIONS(4114), 1, + ACTIONS(5231), 1, + anon_sym_STAR, + ACTIONS(5233), 1, + anon_sym_STAR_STAR, + ACTIONS(5235), 1, + anon_sym_LBRACK, + ACTIONS(5239), 1, + anon_sym_DASH, + ACTIONS(5243), 1, + anon_sym_LBRACE, + ACTIONS(5245), 1, + sym_integer, + ACTIONS(5247), 1, + sym_float, + STATE(4123), 1, + sym_string, + STATE(4498), 1, + sym_dotted_name, + STATE(4890), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5260), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5241), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4504), 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, + [130466] = 18, + ACTIONS(1462), 1, + anon_sym_None, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(5203), 1, + sym_identifier, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5209), 1, + anon_sym_STAR, + ACTIONS(5211), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_DASH, + ACTIONS(5219), 1, + anon_sym_LBRACE, + ACTIONS(5221), 1, + sym_integer, + ACTIONS(5223), 1, + sym_float, + STATE(4259), 1, + sym_string, + STATE(4554), 1, + sym_dotted_name, + STATE(4830), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5241), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(5217), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4557), 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, + [130534] = 18, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5253), 1, - sym__dedent, - STATE(3273), 1, + ACTIONS(5010), 1, + anon_sym_class, + ACTIONS(5014), 1, + anon_sym_enum, + ACTIONS(5389), 1, + anon_sym_ctypedef, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(3517), 1, + STATE(3563), 1, sym_c_type, - STATE(5714), 1, - sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + ACTIONS(4204), 2, anon_sym_const, anon_sym_volatile, - STATE(3112), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3151), 2, + ACTIONS(5012), 2, + anon_sym_struct, + anon_sym_union, + STATE(2832), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3698), 2, + STATE(3791), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132719] = 19, - ACTIONS(371), 1, + [130602] = 19, + ACTIONS(127), 1, + anon_sym_class, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(5255), 1, - anon_sym_class, - ACTIONS(5257), 1, - anon_sym_ctypedef, - ACTIONS(5261), 1, - anon_sym_enum, - STATE(3210), 1, + ACTIONS(5391), 1, + anon_sym_COLON, + ACTIONS(5393), 1, + anon_sym_nogil, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3868), 1, + STATE(3956), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(5259), 2, - anon_sym_struct, - anon_sym_union, - STATE(2789), 2, + STATE(705), 2, + sym_class_definition, + sym_cvar_def, + STATE(3182), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132789] = 19, + [130672] = 19, ACTIONS(59), 1, anon_sym_class, - ACTIONS(371), 1, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(5263), 1, + ACTIONS(5395), 1, anon_sym_from, - ACTIONS(5265), 1, + ACTIONS(5397), 1, anon_sym_COLON, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3929), 1, + STATE(3969), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(1206), 2, + STATE(1273), 2, sym_class_definition, sym_cvar_def, - STATE(3142), 2, + STATE(3184), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [132859] = 19, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5081), 1, + [130742] = 18, + ACTIONS(4188), 1, sym_identifier, - ACTIONS(5083), 1, + ACTIONS(4190), 1, anon_sym_LPAREN, - ACTIONS(5087), 1, - anon_sym_STAR, - ACTIONS(5089), 1, - anon_sym_STAR_STAR, - ACTIONS(5091), 1, - anon_sym_SLASH, - STATE(3273), 1, + ACTIONS(4192), 1, + anon_sym_pass, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5399), 1, + sym__dedent, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4316), 1, + STATE(3595), 1, sym_c_type, - STATE(4934), 1, - sym_tuple_pattern, - STATE(5357), 1, - sym_parameter, + STATE(5659), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4959), 2, + ACTIONS(4204), 2, anon_sym_const, anon_sym_volatile, - STATE(3743), 2, + STATE(3142), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3192), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, sym_int_type, sym_function_pointer_type, - STATE(4907), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - STATE(5327), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [132929] = 18, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4923), 1, - sym_identifier, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4927), 1, - anon_sym_STAR, - ACTIONS(4933), 1, - anon_sym_STAR_STAR, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4266), 1, - sym_case_pattern, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [130810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4651), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(4939), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4270), 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, - [132997] = 19, - ACTIONS(125), 1, + ACTIONS(2053), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(2051), 25, anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, sym_identifier, - ACTIONS(5267), 1, - anon_sym_COLON, - ACTIONS(5269), 1, - anon_sym_nogil, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3873), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(367), 2, + 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(4032), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(697), 2, - sym_class_definition, - sym_cvar_def, - STATE(3140), 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, - [133067] = 19, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, + [130847] = 17, + ACTIONS(4188), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(4974), 1, anon_sym_class, - ACTIONS(5271), 1, - anon_sym_COLON, - ACTIONS(5273), 1, - anon_sym_nogil, - STATE(3210), 1, + ACTIONS(4980), 1, + anon_sym_enum, + STATE(3319), 1, sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, + STATE(3544), 1, sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3905), 1, - sym_maybe_typed_name, + STATE(3570), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4204), 2, anon_sym_const, anon_sym_volatile, - STATE(3051), 2, - sym_class_definition, - sym_cvar_def, - STATE(3135), 2, + ACTIONS(4978), 2, + anon_sym_struct, + anon_sym_union, + STATE(2832), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133137] = 18, - ACTIONS(1991), 1, + [130912] = 19, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1999), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(5275), 1, - sym_identifier, - ACTIONS(5277), 1, + ACTIONS(5058), 1, anon_sym_LPAREN, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5283), 1, + ACTIONS(5068), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5070), 1, anon_sym_DASH, - ACTIONS(5289), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5076), 1, sym_integer, - ACTIONS(5293), 1, + ACTIONS(5078), 1, sym_float, - STATE(4124), 1, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5405), 1, + anon_sym_RBRACE, + STATE(4046), 1, sym_string, - STATE(4500), 1, + STATE(4290), 1, sym_dotted_name, - STATE(5216), 1, - sym_case_pattern, + STATE(4499), 1, + sym_splat_pattern, + STATE(4893), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5141), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5287), 3, + ACTIONS(5403), 3, anon_sym__, sym_true, sym_false, - STATE(4501), 10, + STATE(4949), 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, - [133205] = 3, + [130981] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5407), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3793), 2, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [131050] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(5295), 27, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - anon_sym_class, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 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_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [133243] = 18, - ACTIONS(2527), 1, + ACTIONS(5409), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [131119] = 19, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(5099), 1, - sym_identifier, - ACTIONS(5101), 1, + ACTIONS(5058), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5363), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5411), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [131188] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5070), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5076), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5078), 1, sym_float, - STATE(4156), 1, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5413), 1, + anon_sym_RBRACE, + STATE(4046), 1, sym_string, - STATE(4504), 1, + STATE(4290), 1, sym_dotted_name, - STATE(5120), 1, - sym_case_pattern, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4841), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(5113), 3, + ACTIONS(5403), 3, anon_sym__, sym_true, sym_false, - STATE(4526), 10, + STATE(4949), 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, - [133311] = 17, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4903), 1, + [131257] = 18, + ACTIONS(127), 1, anon_sym_class, - ACTIONS(4907), 1, - anon_sym_enum, - STATE(3273), 1, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(5415), 1, + anon_sym_COLON, + STATE(3253), 1, sym__signedness, - STATE(3482), 1, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, sym__longness, - STATE(3516), 1, - sym_c_type, + STATE(3718), 1, + sym_operator_name, + STATE(3956), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(4905), 2, - anon_sym_struct, - anon_sym_union, - STATE(2789), 2, + STATE(693), 2, + sym_class_definition, + sym_cvar_def, + STATE(3182), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133376] = 4, - ACTIONS(5297), 1, - anon_sym_COLON, + [131324] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4646), 3, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + ACTIONS(4648), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [131361] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 2, + ACTIONS(1809), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1563), 25, + anon_sym_LPAREN, + ACTIONS(1807), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234708,15 +239970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133415] = 3, + [131398] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 3, + ACTIONS(2201), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1765), 25, + ACTIONS(2199), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234742,15 +240004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133452] = 3, + [131435] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 3, + ACTIONS(1813), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1769), 25, + ACTIONS(1811), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234776,15 +240038,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133489] = 3, + [131472] = 18, + ACTIONS(59), 1, + anon_sym_class, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(5417), 1, + anon_sym_COLON, + STATE(3253), 1, + sym__signedness, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, + sym__longness, + STATE(3718), 1, + sym_operator_name, + STATE(3969), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(379), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4140), 2, + anon_sym_const, + anon_sym_volatile, + STATE(1353), 2, + sym_class_definition, + sym_cvar_def, + STATE(3184), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [131539] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 3, + ACTIONS(1873), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1773), 25, + ACTIONS(1871), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234810,15 +240121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133526] = 3, + [131576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 3, + ACTIONS(1877), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1777), 25, + ACTIONS(1875), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234844,15 +240155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133563] = 3, + [131613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1783), 3, + ACTIONS(1881), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1781), 25, + ACTIONS(1879), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234878,15 +240189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133600] = 3, + [131650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1787), 3, + ACTIONS(1885), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1785), 25, + ACTIONS(1883), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234912,15 +240223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133637] = 3, + [131687] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 3, + ACTIONS(1889), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1765), 25, + ACTIONS(1887), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234946,15 +240257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133674] = 3, + [131724] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1791), 3, + ACTIONS(2153), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1789), 25, + ACTIONS(2151), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -234980,15 +240291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133711] = 3, + [131761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1775), 3, + ACTIONS(1893), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1773), 25, + ACTIONS(1891), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235014,15 +240325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133748] = 3, + [131798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1795), 3, + ACTIONS(1897), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1793), 25, + ACTIONS(1895), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235048,15 +240359,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133785] = 3, + [131835] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 3, + ACTIONS(1901), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1765), 25, + ACTIONS(1899), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235082,50 +240393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133822] = 4, - ACTIONS(5299), 1, - anon_sym_COLON, + [131872] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1577), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1575), 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, - [133861] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1847), 3, + ACTIONS(1873), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1845), 25, + ACTIONS(1871), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235151,15 +240427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133898] = 3, + [131909] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1851), 3, + ACTIONS(1905), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1849), 25, + ACTIONS(1903), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235185,15 +240461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133935] = 3, + [131946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 3, + ACTIONS(2117), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1853), 25, + ACTIONS(2115), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235219,15 +240495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [133972] = 3, + [131983] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1859), 3, + ACTIONS(1793), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1857), 25, + ACTIONS(1791), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235253,15 +240529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134009] = 3, + [132020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1863), 3, + ACTIONS(1909), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1861), 25, + ACTIONS(1907), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235287,15 +240563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134046] = 3, + [132057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1867), 3, + ACTIONS(1881), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1865), 25, + ACTIONS(1879), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235321,15 +240597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134083] = 3, + [132094] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1871), 3, + ACTIONS(2365), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1869), 25, + ACTIONS(2363), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235355,15 +240631,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134120] = 3, + [132131] = 4, + ACTIONS(5419), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1875), 3, + ACTIONS(1595), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1873), 25, + ACTIONS(1593), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235389,15 +240666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134157] = 3, + [132170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1847), 3, + ACTIONS(1913), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1845), 25, + ACTIONS(1911), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235423,15 +240700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134194] = 3, + [132207] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1879), 3, + ACTIONS(2121), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1877), 25, + ACTIONS(2119), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235457,83 +240734,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134231] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1883), 3, - sym__dedent, - anon_sym_SEMI, + [132244] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, anon_sym_LPAREN, - ACTIONS(1881), 25, - anon_sym_class, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 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, - [134268] = 3, + ACTIONS(5421), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4556), 1, + sym_splat_pattern, + STATE(4764), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1855), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1853), 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, - [134305] = 3, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [132313] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1887), 3, + ACTIONS(2369), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1885), 25, + ACTIONS(2367), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235559,186 +240818,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134342] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1863), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1861), 25, + [132350] = 18, + ACTIONS(59), 1, anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_char, - anon_sym_short, + ACTIONS(381), 1, 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, - [134379] = 4, - ACTIONS(5301), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1571), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1569), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, - anon_sym_int, - anon_sym_double, - anon_sym_complex, + ACTIONS(4138), 1, 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, - [134418] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1939), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1937), 25, - anon_sym_class, + ACTIONS(4310), 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, - [134455] = 3, + ACTIONS(5423), 1, + anon_sym_COLON, + STATE(3253), 1, + sym__signedness, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, + sym__longness, + STATE(3718), 1, + sym_operator_name, + STATE(3969), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1943), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1941), 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(377), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - anon_sym_ctypedef, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_cppclass, - anon_sym_fused, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [134492] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1947), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1945), 25, - anon_sym_class, - sym_identifier, - anon_sym_api, - anon_sym_extern, + STATE(1292), 2, + sym_class_definition, + sym_cvar_def, + STATE(3184), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, 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, + ACTIONS(105), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134529] = 3, + [132417] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1951), 3, + ACTIONS(2125), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1949), 25, + ACTIONS(2123), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235764,15 +240901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134566] = 3, + [132454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1955), 3, + ACTIONS(1643), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1953), 25, + ACTIONS(1641), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235798,15 +240935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134603] = 3, + [132491] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1959), 3, + ACTIONS(1797), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1957), 25, + ACTIONS(1795), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235832,15 +240969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134640] = 3, + [132528] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1963), 3, + ACTIONS(1889), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1961), 25, + ACTIONS(1887), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235866,15 +241003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134677] = 3, + [132565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1967), 3, + ACTIONS(2129), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1965), 25, + ACTIONS(2127), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235900,15 +241037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134714] = 3, + [132602] = 4, + ACTIONS(5425), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1971), 3, + ACTIONS(1601), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1969), 25, + ACTIONS(1599), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235934,15 +241072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134751] = 3, + [132641] = 4, + ACTIONS(5427), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2003), 3, + ACTIONS(1572), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2001), 25, + ACTIONS(1570), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -235968,15 +241107,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134788] = 3, + [132680] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2007), 3, + ACTIONS(2133), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2005), 25, + ACTIONS(2131), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236002,49 +241141,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134825] = 3, + [132717] = 18, + ACTIONS(127), 1, + anon_sym_class, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(5429), 1, + anon_sym_COLON, + STATE(3253), 1, + sym__signedness, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, + sym__longness, + STATE(3718), 1, + sym_operator_name, + STATE(3956), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2011), 3, - sym__dedent, - anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2009), 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(377), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4140), 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(714), 2, + sym_class_definition, + sym_cvar_def, + STATE(3182), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134862] = 3, + [132784] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1943), 3, + ACTIONS(1661), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1941), 25, + ACTIONS(1659), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236070,23 +241224,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134899] = 3, + [132821] = 4, + ACTIONS(5431), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4542), 3, + ACTIONS(1589), 2, sym__dedent, - sym_string_start, - anon_sym_LPAREN, - ACTIONS(4544), 25, + anon_sym_SEMI, + ACTIONS(1587), 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, @@ -236104,15 +241259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134936] = 3, + [132860] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2051), 3, + ACTIONS(1793), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2049), 25, + ACTIONS(1791), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236138,15 +241293,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [134973] = 3, + [132897] = 4, + ACTIONS(5433), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2055), 3, + ACTIONS(1607), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2053), 25, + ACTIONS(1605), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236172,23 +241328,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135010] = 3, + [132936] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4538), 3, + ACTIONS(2381), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4540), 25, + ACTIONS(2379), 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, @@ -236206,15 +241362,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135047] = 3, + [132973] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5435), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [133042] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5437), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2059), 3, + ACTIONS(2049), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2057), 25, + ACTIONS(2047), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236240,15 +241496,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135084] = 3, + [133148] = 18, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(4312), 1, + anon_sym_class, + ACTIONS(5439), 1, + anon_sym_COLON, + STATE(3253), 1, + sym__signedness, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, + sym__longness, + STATE(3718), 1, + sym_operator_name, + STATE(3927), 1, + sym_maybe_typed_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(379), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4140), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3083), 2, + sym_class_definition, + sym_cvar_def, + STATE(3187), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [133215] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2063), 3, + ACTIONS(1685), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2061), 25, + ACTIONS(1683), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236274,15 +241579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135121] = 3, + [133252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2067), 3, + ACTIONS(1689), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2065), 25, + ACTIONS(1687), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236308,15 +241613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135158] = 3, + [133289] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 3, + ACTIONS(1693), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1589), 25, + ACTIONS(1691), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236342,15 +241647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135195] = 3, + [133326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2075), 3, + ACTIONS(1817), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2073), 25, + ACTIONS(1815), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236376,23 +241681,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135232] = 3, + [133363] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5441), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [133432] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5443), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [133501] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5445), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [133570] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2079), 3, + ACTIONS(4610), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(2077), 25, + ACTIONS(4612), 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, @@ -236410,15 +241865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135269] = 3, + [133607] = 4, + ACTIONS(5447), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2083), 3, + ACTIONS(1613), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2081), 25, + ACTIONS(1611), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236444,15 +241900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135306] = 3, + [133646] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2087), 3, + ACTIONS(2057), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2085), 25, + ACTIONS(2055), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236478,113 +241934,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135343] = 18, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, + [133683] = 17, + ACTIONS(4188), 1, sym_identifier, - ACTIONS(5303), 1, - anon_sym_COLON, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3929), 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(4032), 2, - anon_sym_const, - anon_sym_volatile, - STATE(1321), 2, - sym_class_definition, - sym_cvar_def, - STATE(3142), 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, - [135410] = 18, - ACTIONS(371), 1, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, + ACTIONS(5010), 1, anon_sym_class, - ACTIONS(5305), 1, - anon_sym_COLON, - STATE(3210), 1, + ACTIONS(5014), 1, + anon_sym_enum, + STATE(3319), 1, sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, + STATE(3544), 1, sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3905), 1, - sym_maybe_typed_name, + STATE(3563), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4204), 2, anon_sym_const, anon_sym_volatile, - STATE(3025), 2, - sym_class_definition, - sym_cvar_def, - STATE(3135), 2, + ACTIONS(5012), 2, + anon_sym_struct, + anon_sym_union, + STATE(2832), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135477] = 3, + [133748] = 4, + ACTIONS(5449), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2119), 3, + ACTIONS(1619), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(2117), 25, + ACTIONS(1617), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236610,15 +242017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135514] = 3, + [133787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2123), 3, + ACTIONS(2237), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2121), 25, + ACTIONS(2235), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236644,15 +242051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135551] = 3, + [133824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2127), 3, + ACTIONS(2241), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2125), 25, + ACTIONS(2239), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236678,65 +242085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135588] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5311), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4414), 1, - sym_splat_pattern, - STATE(4801), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [135657] = 3, + [133861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 3, + ACTIONS(1801), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1615), 25, + ACTIONS(1799), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236762,15 +242119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135694] = 3, + [133898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2135), 3, + ACTIONS(1821), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2133), 25, + ACTIONS(1819), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236796,96 +242153,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135731] = 18, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_class, - ACTIONS(5313), 1, - anon_sym_COLON, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3905), 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(4032), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3072), 2, - sym_class_definition, - sym_cvar_def, - STATE(3135), 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, - [135798] = 19, - ACTIONS(1267), 1, + [133935] = 19, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(4925), 1, + ACTIONS(5058), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5068), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5070), 1, anon_sym_DASH, - ACTIONS(4941), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(4943), 1, + ACTIONS(5076), 1, sym_integer, - ACTIONS(4945), 1, + ACTIONS(5078), 1, sym_float, - ACTIONS(5279), 1, + ACTIONS(5361), 1, anon_sym_STAR, - ACTIONS(5281), 1, + ACTIONS(5363), 1, anon_sym_STAR_STAR, - ACTIONS(5307), 1, + ACTIONS(5401), 1, sym_identifier, - ACTIONS(5315), 1, + ACTIONS(5451), 1, anon_sym_RBRACE, - STATE(3940), 1, + STATE(4046), 1, sym_string, - STATE(4265), 1, + STATE(4290), 1, sym_dotted_name, - STATE(4709), 1, + STATE(4617), 1, sym_splat_pattern, - STATE(5459), 1, + STATE(5442), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5309), 3, + ACTIONS(5403), 3, anon_sym__, sym_true, sym_false, - STATE(5198), 9, + STATE(4949), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -236895,47 +242203,47 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [135867] = 19, - ACTIONS(1267), 1, + [134004] = 19, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(4925), 1, + ACTIONS(5058), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5068), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5070), 1, anon_sym_DASH, - ACTIONS(4941), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(4943), 1, + ACTIONS(5076), 1, sym_integer, - ACTIONS(4945), 1, + ACTIONS(5078), 1, sym_float, - ACTIONS(5279), 1, + ACTIONS(5361), 1, anon_sym_STAR, - ACTIONS(5281), 1, + ACTIONS(5363), 1, anon_sym_STAR_STAR, - ACTIONS(5307), 1, + ACTIONS(5401), 1, sym_identifier, - ACTIONS(5317), 1, + ACTIONS(5453), 1, anon_sym_RBRACE, - STATE(3940), 1, + STATE(4046), 1, sym_string, - STATE(4265), 1, + STATE(4290), 1, sym_dotted_name, - STATE(4709), 1, + STATE(4617), 1, sym_splat_pattern, - STATE(5459), 1, + STATE(5442), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5309), 3, + ACTIONS(5403), 3, anon_sym__, sym_true, sym_false, - STATE(5198), 9, + STATE(4949), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -236945,15 +242253,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [135936] = 3, + [134073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2203), 3, + ACTIONS(1793), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2201), 25, + ACTIONS(1791), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -236979,15 +242287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [135973] = 3, + [134110] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2155), 3, + ACTIONS(2061), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2153), 25, + ACTIONS(2059), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237013,115 +242321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136010] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5319), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [136079] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5321), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [136148] = 3, + [134147] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2239), 3, + ACTIONS(1965), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2237), 25, + ACTIONS(1963), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237147,15 +242355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136185] = 3, + [134184] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2243), 3, + ACTIONS(1969), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2241), 25, + ACTIONS(1967), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237181,16 +242389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136222] = 4, - ACTIONS(5323), 1, - anon_sym_COLON, + [134221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1541), 2, + ACTIONS(1973), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1539), 25, + anon_sym_LPAREN, + ACTIONS(1971), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237216,15 +242423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136261] = 3, + [134258] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 3, + ACTIONS(2341), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1633), 25, + ACTIONS(2339), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237250,16 +242457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136298] = 4, - ACTIONS(5325), 1, - anon_sym_COLON, + [134295] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1547), 2, + ACTIONS(2065), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1545), 25, + anon_sym_LPAREN, + ACTIONS(2063), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237285,115 +242491,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136337] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, + [134332] = 17, + ACTIONS(4188), 1, sym_identifier, - ACTIONS(5327), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5381), 1, + anon_sym_class, + ACTIONS(5387), 1, + anon_sym_enum, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3603), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [136406] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5329), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(5385), 2, + anon_sym_struct, + anon_sym_union, + STATE(2832), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [134397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [136475] = 3, + ACTIONS(1977), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(1975), 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, + [134434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 3, + ACTIONS(2345), 3, sym__dedent, anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1581), 25, + anon_sym_LPAREN, + ACTIONS(2343), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237419,64 +242607,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136512] = 18, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(371), 1, + [134471] = 18, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(5331), 1, + ACTIONS(4312), 1, + anon_sym_class, + ACTIONS(5455), 1, anon_sym_COLON, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3873), 1, + STATE(3927), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(685), 2, + STATE(3107), 2, sym_class_definition, sym_cvar_def, - STATE(3140), 2, + STATE(3187), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136579] = 3, + [134538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1587), 3, + ACTIONS(2069), 3, sym__dedent, anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(1585), 25, + anon_sym_LPAREN, + ACTIONS(2067), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237502,65 +242690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136616] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5333), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4409), 1, - sym_splat_pattern, - STATE(4718), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [136685] = 3, + [134575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1659), 3, + ACTIONS(1801), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1657), 25, + ACTIONS(1799), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237586,15 +242724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136722] = 3, + [134612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1663), 3, + ACTIONS(1805), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1661), 25, + ACTIONS(1803), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237620,15 +242758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136759] = 3, + [134649] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2279), 3, + ACTIONS(1981), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2277), 25, + ACTIONS(1979), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237654,15 +242792,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136796] = 3, + [134686] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5457), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [134755] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2283), 3, + ACTIONS(1625), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2281), 25, + ACTIONS(1623), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237688,64 +242876,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136833] = 18, - ACTIONS(125), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(5335), 1, - anon_sym_COLON, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3873), 1, - sym_maybe_typed_name, + [134792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(1581), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(1579), 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(4032), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(706), 2, - sym_class_definition, - sym_cvar_def, - STATE(3140), 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, - [136900] = 3, + [134829] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1667), 3, + ACTIONS(2317), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1665), 25, + ACTIONS(2315), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -237771,214 +242944,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [136937] = 17, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(4886), 1, - anon_sym_class, - ACTIONS(4892), 1, - anon_sym_enum, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3546), 1, - sym_c_type, + [134866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(2321), 3, + sym__dedent, + anon_sym_SEMI, + anon_sym_LPAREN, + ACTIONS(2319), 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(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - ACTIONS(4890), 2, + anon_sym_ctypedef, anon_sym_struct, anon_sym_union, - STATE(2789), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(103), 5, - anon_sym_api, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137002] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5337), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [137071] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5339), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [137140] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5341), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4527), 1, - sym_splat_pattern, - STATE(5200), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [137209] = 4, - ACTIONS(5343), 1, - anon_sym_COLON, + [134903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1553), 2, + ACTIONS(1733), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1551), 25, + anon_sym_LPAREN, + ACTIONS(1731), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238004,97 +243012,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137248] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5345), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [137317] = 19, - ACTIONS(1267), 1, + [134940] = 19, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1279), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(4925), 1, + ACTIONS(5058), 1, anon_sym_LPAREN, - ACTIONS(4935), 1, + ACTIONS(5068), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5070), 1, anon_sym_DASH, - ACTIONS(4941), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(4943), 1, + ACTIONS(5076), 1, sym_integer, - ACTIONS(4945), 1, + ACTIONS(5078), 1, sym_float, - ACTIONS(5279), 1, + ACTIONS(5361), 1, anon_sym_STAR, - ACTIONS(5281), 1, + ACTIONS(5363), 1, anon_sym_STAR_STAR, - ACTIONS(5307), 1, + ACTIONS(5401), 1, sym_identifier, - ACTIONS(5347), 1, + ACTIONS(5459), 1, anon_sym_RBRACE, - STATE(3940), 1, + STATE(4046), 1, sym_string, - STATE(4265), 1, + STATE(4290), 1, sym_dotted_name, - STATE(4709), 1, + STATE(4454), 1, sym_splat_pattern, - STATE(5459), 1, + STATE(4794), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5309), 3, + ACTIONS(5403), 3, anon_sym__, sym_true, sym_false, - STATE(5198), 9, + STATE(4949), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -238104,15 +243062,15 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [137386] = 3, + [135009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2319), 3, + ACTIONS(1737), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2317), 25, + ACTIONS(1735), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238138,15 +243096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137423] = 3, + [135046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2323), 3, + ACTIONS(1741), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2321), 25, + ACTIONS(1739), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238172,16 +243130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137460] = 4, - ACTIONS(5349), 1, - anon_sym_COLON, + [135083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1559), 2, + ACTIONS(1745), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1557), 25, + anon_sym_LPAREN, + ACTIONS(1743), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238207,365 +243164,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [137499] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5351), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4540), 1, - sym_splat_pattern, - STATE(4845), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [137568] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5353), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [137637] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5355), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [137706] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5357), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [137775] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5359), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [137844] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5361), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [137913] = 19, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(5363), 1, - anon_sym_RBRACE, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [137982] = 3, + [135120] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2343), 3, + ACTIONS(1749), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2341), 25, + ACTIONS(1747), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238591,15 +243198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138019] = 3, + [135157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2347), 3, + ACTIONS(1745), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2345), 25, + ACTIONS(1743), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238625,15 +243232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138056] = 3, + [135194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1707), 3, + ACTIONS(1745), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1705), 25, + ACTIONS(1743), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238659,23 +243266,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138093] = 3, + [135231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4199), 3, + ACTIONS(2277), 3, sym__dedent, - sym_string_start, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(5365), 25, + ACTIONS(2275), 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, @@ -238693,15 +243300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138130] = 3, + [135268] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2367), 3, + ACTIONS(2281), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2365), 25, + ACTIONS(2279), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238727,15 +243334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138167] = 3, + [135305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2371), 3, + ACTIONS(2397), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2369), 25, + ACTIONS(2395), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238761,23 +243368,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138204] = 3, + [135342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1711), 3, + ACTIONS(4299), 3, sym__dedent, - anon_sym_SEMI, + sym_string_start, anon_sym_LPAREN, - ACTIONS(1709), 25, + ACTIONS(5461), 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, @@ -238795,15 +243402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138241] = 3, + [135379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1715), 3, + ACTIONS(1989), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1713), 25, + ACTIONS(1987), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238829,15 +243436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138278] = 3, + [135416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 3, + ACTIONS(1993), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1717), 25, + ACTIONS(1991), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238863,15 +243470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138315] = 3, + [135453] = 4, + ACTIONS(5463), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1723), 3, + ACTIONS(1566), 2, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1721), 25, + ACTIONS(1564), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238897,15 +243505,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138352] = 3, + [135492] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5465), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4536), 1, + sym_splat_pattern, + STATE(4978), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [135561] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 3, + ACTIONS(1585), 3, sym__dedent, anon_sym_SEMI, - anon_sym_LPAREN, - ACTIONS(1717), 25, + anon_sym_COLON, + ACTIONS(1583), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238931,15 +243589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138389] = 3, + [135598] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1719), 3, + ACTIONS(1997), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(1717), 25, + ACTIONS(1995), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238965,15 +243623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138426] = 3, + [135635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2383), 3, + ACTIONS(2001), 3, sym__dedent, anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2381), 25, + ACTIONS(1999), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -238999,113 +243657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138463] = 17, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5255), 1, - anon_sym_class, - ACTIONS(5261), 1, - anon_sym_enum, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3520), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4116), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(5259), 2, - anon_sym_struct, - anon_sym_union, - STATE(2789), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 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, - [138528] = 18, - ACTIONS(59), 1, - anon_sym_class, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(5367), 1, - anon_sym_COLON, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3929), 1, - sym_maybe_typed_name, + [135672] = 3, 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(4032), 2, - anon_sym_const, - anon_sym_volatile, - STATE(1249), 2, - sym_class_definition, - sym_cvar_def, - STATE(3142), 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, - [138595] = 4, - ACTIONS(5369), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1535), 2, + ACTIONS(2005), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1533), 25, + anon_sym_LPAREN, + ACTIONS(2003), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239131,81 +243691,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138634] = 3, + [135709] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5467), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2131), 3, - sym__dedent, - anon_sym_SEMI, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [135778] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, anon_sym_LPAREN, - ACTIONS(2129), 25, - anon_sym_class, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 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, - [138671] = 3, + ACTIONS(5469), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1613), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1611), 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, - [138707] = 3, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [135847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1935), 2, + ACTIONS(2077), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1933), 25, + anon_sym_LPAREN, + ACTIONS(2075), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239231,14 +243825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138743] = 3, + [135884] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2139), 2, + ACTIONS(2081), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(2137), 25, + anon_sym_LPAREN, + ACTIONS(2079), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239264,14 +243859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138779] = 3, + [135921] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 2, + ACTIONS(2009), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(1837), 25, + anon_sym_LPAREN, + ACTIONS(2007), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239297,14 +243893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138815] = 3, + [135958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2143), 2, + ACTIONS(2085), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(2141), 25, + anon_sym_LPAREN, + ACTIONS(2083), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239330,14 +243927,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138851] = 3, + [135995] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5471), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2147), 2, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [136064] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1969), 3, sym__dedent, anon_sym_SEMI, - ACTIONS(2145), 25, + anon_sym_LPAREN, + ACTIONS(1967), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239363,14 +244011,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138887] = 3, + [136101] = 19, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(5473), 1, + anon_sym_RBRACE, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2151), 2, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [136170] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1721), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2149), 25, + ACTIONS(1719), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239396,14 +244094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138923] = 3, + [136206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1843), 2, + ACTIONS(2021), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1841), 25, + ACTIONS(2019), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239429,15 +244127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138959] = 4, - ACTIONS(1623), 1, - sym__dedent, - ACTIONS(5371), 1, - anon_sym_SEMI, + [136242] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 25, + ACTIONS(1833), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1831), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239463,14 +244160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [138997] = 3, + [136278] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2175), 2, + ACTIONS(2017), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2173), 25, + ACTIONS(2015), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239496,14 +244193,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139033] = 3, + [136314] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2179), 2, + ACTIONS(1941), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2177), 25, + ACTIONS(1939), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239529,14 +244226,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139069] = 3, + [136350] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2183), 2, + ACTIONS(1665), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2181), 25, + ACTIONS(1663), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239562,14 +244259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139105] = 3, + [136386] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2187), 2, + ACTIONS(2157), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2185), 25, + ACTIONS(2155), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239595,14 +244292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139141] = 3, + [136422] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 2, + ACTIONS(1945), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2189), 25, + ACTIONS(1943), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239628,14 +244325,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139177] = 3, + [136458] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2195), 2, + ACTIONS(2301), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2193), 25, + ACTIONS(2299), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239661,14 +244358,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139213] = 3, + [136494] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2199), 2, + ACTIONS(1669), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2197), 25, + ACTIONS(1667), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239694,14 +244391,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139249] = 3, + [136530] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 2, + ACTIONS(1673), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1757), 25, + ACTIONS(1671), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239727,14 +244424,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139285] = 3, + [136566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2159), 2, + ACTIONS(1677), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2157), 25, + ACTIONS(1675), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239760,14 +244457,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139321] = 3, + [136602] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1763), 2, + ACTIONS(1681), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1761), 25, + ACTIONS(1679), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239793,60 +244490,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139357] = 16, - ACTIONS(5373), 1, - sym_identifier, - ACTIONS(5376), 1, - anon_sym_LPAREN, - ACTIONS(5391), 1, - anon_sym_long, - ACTIONS(5397), 1, - sym__dedent, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3517), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5385), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5388), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5394), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3002), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3151), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5382), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - ACTIONS(5379), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [139419] = 3, + [136638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1627), 2, + ACTIONS(1949), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1625), 25, + ACTIONS(1947), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239872,14 +244523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139455] = 3, + [136674] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, + ACTIONS(2373), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1629), 25, + ACTIONS(2371), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239905,14 +244556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139491] = 3, + [136710] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2207), 2, + ACTIONS(2377), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2205), 25, + ACTIONS(2375), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239938,14 +244589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139527] = 3, + [136746] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2211), 2, + ACTIONS(2029), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2209), 25, + ACTIONS(2027), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -239971,14 +244622,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139563] = 3, + [136782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2215), 2, + ACTIONS(1829), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2213), 25, + ACTIONS(1827), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240004,14 +244655,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139599] = 3, + [136818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2219), 2, + ACTIONS(2013), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2217), 25, + ACTIONS(2011), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240037,14 +244688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139635] = 3, + [136854] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2223), 2, + ACTIONS(1953), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2221), 25, + ACTIONS(1951), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240070,18 +244721,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139671] = 3, + [136890] = 3, + ACTIONS(3897), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2227), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(2225), 25, + ACTIONS(5343), 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, @@ -240093,24 +244747,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, - [139707] = 3, + [136926] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2231), 2, + ACTIONS(2189), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2229), 25, + ACTIONS(2187), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240136,14 +244787,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139743] = 3, + [136962] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2235), 2, + ACTIONS(1957), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2233), 25, + ACTIONS(1955), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240169,14 +244820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139779] = 3, + [136998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1751), 2, + ACTIONS(1961), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1749), 25, + ACTIONS(1959), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240202,14 +244853,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139815] = 3, + [137034] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1799), 2, + ACTIONS(2097), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1797), 25, + ACTIONS(2095), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240235,14 +244886,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139851] = 3, + [137070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 2, + ACTIONS(1845), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1753), 25, + ACTIONS(1843), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240268,14 +244919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139887] = 3, + [137106] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1803), 2, + ACTIONS(1849), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1801), 25, + ACTIONS(1847), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240301,14 +244952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139923] = 3, + [137142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 2, + ACTIONS(2177), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1637), 25, + ACTIONS(2175), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240334,14 +244985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139959] = 3, + [137178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1807), 2, + ACTIONS(2101), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1805), 25, + ACTIONS(2099), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240367,14 +245018,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [139995] = 3, + [137214] = 9, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4423), 1, + anon_sym_is, + ACTIONS(4439), 1, + anon_sym_EQ, + STATE(3148), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1643), 2, + ACTIONS(4425), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2031), 2, + sym__not_in, + sym__is_not, + ACTIONS(4403), 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(4437), 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, + [137262] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2353), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1641), 25, + ACTIONS(2351), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240400,14 +245090,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140031] = 3, + [137298] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1811), 2, + ACTIONS(2357), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1809), 25, + ACTIONS(2355), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240433,14 +245123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140067] = 3, + [137334] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2015), 2, + ACTIONS(1865), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2013), 25, + ACTIONS(1863), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240466,14 +245156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140103] = 3, + [137370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1647), 2, + ACTIONS(2205), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1645), 25, + ACTIONS(2203), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240499,14 +245189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140139] = 3, + [137406] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2019), 2, + ACTIONS(2209), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2017), 25, + ACTIONS(2207), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240532,14 +245222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140175] = 3, + [137442] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1651), 2, + ACTIONS(2361), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1649), 25, + ACTIONS(2359), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240565,14 +245255,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140211] = 3, + [137478] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2247), 2, + ACTIONS(2213), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2245), 25, + ACTIONS(2211), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240598,14 +245288,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140247] = 3, + [137514] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2251), 2, + ACTIONS(2217), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2249), 25, + ACTIONS(2215), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240631,53 +245321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140283] = 9, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4319), 1, - anon_sym_is, - ACTIONS(4342), 1, - anon_sym_EQ, - STATE(3105), 1, - aux_sym_comparison_operator_repeat1, + [137550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4321), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2015), 2, - sym__not_in, - sym__is_not, - ACTIONS(4299), 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(4340), 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, - [140331] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1655), 2, + ACTIONS(1841), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1653), 25, + ACTIONS(1839), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240703,14 +245354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140367] = 3, + [137586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2023), 2, + ACTIONS(2221), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2021), 25, + ACTIONS(2219), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240736,14 +245387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140403] = 3, + [137622] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2255), 2, + ACTIONS(2225), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2253), 25, + ACTIONS(2223), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240769,14 +245420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140439] = 3, + [137658] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2259), 2, + ACTIONS(2229), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2257), 25, + ACTIONS(2227), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240802,14 +245453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140475] = 3, + [137694] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2263), 2, + ACTIONS(1697), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2261), 25, + ACTIONS(1695), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240835,14 +245486,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140511] = 3, + [137730] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2267), 2, + ACTIONS(1701), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2265), 25, + ACTIONS(1699), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240868,60 +245519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140547] = 16, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5399), 1, - sym__dedent, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3517), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4116), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3002), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3151), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 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, - [140609] = 3, + [137766] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2271), 2, + ACTIONS(1869), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2269), 25, + ACTIONS(1867), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240947,14 +245552,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140645] = 3, + [137802] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2027), 2, + ACTIONS(1639), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2025), 25, + ACTIONS(1637), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -240980,14 +245585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140681] = 3, + [137838] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2275), 2, + ACTIONS(1705), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2273), 25, + ACTIONS(1703), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241013,14 +245618,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140717] = 3, + [137874] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2031), 2, + ACTIONS(1837), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2029), 25, + ACTIONS(1835), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241046,14 +245651,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140753] = 3, + [137910] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2035), 2, + ACTIONS(2233), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2033), 25, + ACTIONS(2231), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241079,14 +245684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140789] = 3, + [137946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2039), 2, + ACTIONS(2305), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2037), 25, + ACTIONS(2303), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241112,14 +245717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140825] = 3, + [137982] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2287), 2, + ACTIONS(1709), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2285), 25, + ACTIONS(1707), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241145,14 +245750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140861] = 3, + [138018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2291), 2, + ACTIONS(1713), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2289), 25, + ACTIONS(1711), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241178,14 +245783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140897] = 3, + [138054] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2043), 2, + ACTIONS(1717), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2041), 25, + ACTIONS(1715), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241211,14 +245816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140933] = 3, + [138090] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2047), 2, + ACTIONS(2113), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2045), 25, + ACTIONS(2111), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241244,14 +245849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [140969] = 3, + [138126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1815), 2, + ACTIONS(2033), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1813), 25, + ACTIONS(2031), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241277,14 +245882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141005] = 3, + [138162] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1671), 2, + ACTIONS(1725), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1669), 25, + ACTIONS(1723), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241310,14 +245915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141041] = 3, + [138198] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1675), 2, + ACTIONS(2329), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1673), 25, + ACTIONS(2327), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241343,14 +245948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141077] = 3, + [138234] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1819), 2, + ACTIONS(2385), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1817), 25, + ACTIONS(2383), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241376,14 +245981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141113] = 3, + [138270] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1823), 2, + ACTIONS(2309), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1821), 25, + ACTIONS(2307), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241409,14 +246014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141149] = 3, + [138306] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1679), 2, + ACTIONS(2141), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1677), 25, + ACTIONS(2139), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241442,14 +246047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141185] = 3, + [138342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2295), 2, + ACTIONS(2045), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2293), 25, + ACTIONS(2043), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241475,14 +246080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141221] = 3, + [138378] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2299), 2, + ACTIONS(2185), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2297), 25, + ACTIONS(2183), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241508,14 +246113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141257] = 3, + [138414] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2303), 2, + ACTIONS(2389), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2301), 25, + ACTIONS(2387), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241541,14 +246146,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141293] = 3, + [138450] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2307), 2, + ACTIONS(2333), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2305), 25, + ACTIONS(2331), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241574,14 +246179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141329] = 3, + [138486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 2, + ACTIONS(2337), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1745), 25, + ACTIONS(2335), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241607,14 +246212,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141365] = 3, + [138522] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2315), 2, + ACTIONS(2313), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2313), 25, + ACTIONS(2311), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241640,18 +246245,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141401] = 3, + [138558] = 3, + ACTIONS(3897), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1827), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1825), 25, + ACTIONS(5343), 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, @@ -241663,24 +246271,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, - [141437] = 3, + [138594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1831), 2, + ACTIONS(2393), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1829), 25, + ACTIONS(2391), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241706,14 +246311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141473] = 3, + [138630] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2327), 2, + ACTIONS(1729), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2325), 25, + ACTIONS(1727), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241739,21 +246344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141509] = 3, - ACTIONS(3793), 1, - anon_sym_COLON, + [138666] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5295), 26, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(1629), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1627), 25, anon_sym_class, sym_identifier, - anon_sym_await, anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -241765,21 +246367,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, - [141545] = 3, + [138702] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1891), 2, + ACTIONS(2073), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1889), 25, + ACTIONS(2071), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241805,14 +246410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141581] = 3, + [138738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1895), 2, + ACTIONS(1985), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1893), 25, + ACTIONS(1983), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241838,14 +246443,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141617] = 3, + [138774] = 16, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5475), 1, + sym__dedent, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3595), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1899), 2, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3102), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3192), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [138836] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2349), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1897), 25, + ACTIONS(2347), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241871,14 +246522,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141653] = 3, + [138872] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1835), 2, + ACTIONS(2145), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1833), 25, + ACTIONS(2143), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241904,14 +246555,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141689] = 3, + [138908] = 16, + ACTIONS(5477), 1, + sym_identifier, + ACTIONS(5480), 1, + anon_sym_LPAREN, + ACTIONS(5495), 1, + anon_sym_long, + ACTIONS(5501), 1, + sym__dedent, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3595), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5489), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5492), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5498), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3102), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3192), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5486), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(5483), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [138970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 2, + ACTIONS(2181), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1681), 25, + ACTIONS(2179), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241937,14 +246634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141725] = 3, + [139006] = 4, + ACTIONS(1649), 1, + sym__dedent, + ACTIONS(5503), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1687), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1685), 25, + ACTIONS(1645), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -241970,14 +246668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141761] = 3, + [139044] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1903), 2, + ACTIONS(2025), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1901), 25, + ACTIONS(2023), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242003,14 +246701,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141797] = 3, + [139080] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1907), 2, + ACTIONS(2161), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1905), 25, + ACTIONS(2159), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242036,14 +246734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141833] = 3, + [139116] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 2, + ACTIONS(2245), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1689), 25, + ACTIONS(2243), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242069,14 +246767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141869] = 3, + [139152] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1911), 2, + ACTIONS(2165), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1909), 25, + ACTIONS(2163), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242102,14 +246800,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141905] = 3, + [139188] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 2, + ACTIONS(2249), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1693), 25, + ACTIONS(2247), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242135,14 +246833,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141941] = 3, + [139224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2331), 2, + ACTIONS(2169), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2329), 25, + ACTIONS(2167), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242168,14 +246866,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [141977] = 3, + [139260] = 18, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5401), 1, + sym_identifier, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + STATE(4617), 1, + sym_splat_pattern, + STATE(5442), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2335), 2, + ACTIONS(5403), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4949), 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, + [139326] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2193), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2333), 25, + ACTIONS(2191), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242201,14 +246947,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142013] = 3, + [139362] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2339), 2, + ACTIONS(1917), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2337), 25, + ACTIONS(1915), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242234,14 +246980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142049] = 3, + [139398] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1699), 2, + ACTIONS(2253), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1697), 25, + ACTIONS(2251), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242267,14 +247013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142085] = 3, + [139434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2091), 2, + ACTIONS(2257), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2089), 25, + ACTIONS(2255), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242300,14 +247046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142121] = 3, + [139470] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2095), 2, + ACTIONS(2261), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2093), 25, + ACTIONS(2259), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242333,14 +247079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142157] = 3, + [139506] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2351), 2, + ACTIONS(2265), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2349), 25, + ACTIONS(2263), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242366,14 +247112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142193] = 3, + [139542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1703), 2, + ACTIONS(1653), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1701), 25, + ACTIONS(1651), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242399,14 +247145,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142229] = 3, + [139578] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2163), 2, + ACTIONS(2269), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2161), 25, + ACTIONS(2267), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242432,14 +247178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142265] = 3, + [139614] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2099), 2, + ACTIONS(1657), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2097), 25, + ACTIONS(1655), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242465,60 +247211,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142301] = 16, - ACTIONS(4100), 1, + [139650] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2273), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2271), 25, + anon_sym_class, sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, anon_sym_long, - ACTIONS(5401), 1, - sym__dedent, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3517), 1, - sym_c_type, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [139686] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(2037), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2035), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3002), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3151), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 3, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [139722] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1921), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1919), 25, + anon_sym_class, + sym_identifier, + anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, - anon_sym_api, + anon_sym_operator, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_char, + anon_sym_short, + anon_sym_long, + anon_sym_const, + anon_sym_volatile, + anon_sym_ctypedef, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_cppclass, + anon_sym_fused, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142363] = 3, + [139758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2355), 2, + ACTIONS(2285), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2353), 25, + ACTIONS(2283), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242544,14 +247343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142399] = 3, + [139794] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 2, + ACTIONS(2289), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2357), 25, + ACTIONS(2287), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242577,14 +247376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142435] = 3, + [139830] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2363), 2, + ACTIONS(1753), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2361), 25, + ACTIONS(1751), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242610,14 +247409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142471] = 3, + [139866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2167), 2, + ACTIONS(2197), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2165), 25, + ACTIONS(2195), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242643,14 +247442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142507] = 3, + [139902] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2171), 2, + ACTIONS(1757), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2169), 25, + ACTIONS(1755), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242676,14 +247475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142543] = 3, + [139938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2103), 2, + ACTIONS(1761), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2101), 25, + ACTIONS(1759), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242709,14 +247508,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142579] = 3, + [139974] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2107), 2, + ACTIONS(1765), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2105), 25, + ACTIONS(1763), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242742,14 +247541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142615] = 3, + [140010] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2111), 2, + ACTIONS(1769), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2109), 25, + ACTIONS(1767), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242775,14 +247574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142651] = 3, + [140046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2115), 2, + ACTIONS(1853), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2113), 25, + ACTIONS(1851), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242808,14 +247607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142687] = 3, + [140082] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2375), 2, + ACTIONS(1773), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2373), 25, + ACTIONS(1771), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242841,14 +247640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142723] = 3, + [140118] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1915), 2, + ACTIONS(1777), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1913), 25, + ACTIONS(1775), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242874,14 +247673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142759] = 3, + [140154] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2379), 2, + ACTIONS(2293), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2377), 25, + ACTIONS(2291), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242907,14 +247706,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142795] = 3, + [140190] = 16, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5505), 1, + sym__dedent, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3595), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3102), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3192), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [140252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1919), 2, + ACTIONS(1825), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1917), 25, + ACTIONS(1823), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242940,14 +247785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142831] = 3, + [140288] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1727), 2, + ACTIONS(1781), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1725), 25, + ACTIONS(1779), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -242973,14 +247818,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142867] = 3, + [140324] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2387), 2, + ACTIONS(1925), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2385), 25, + ACTIONS(1923), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243006,14 +247851,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142903] = 3, + [140360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2391), 2, + ACTIONS(1785), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2389), 25, + ACTIONS(1783), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243039,14 +247884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142939] = 3, + [140396] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1731), 2, + ACTIONS(1789), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1729), 25, + ACTIONS(1787), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243072,14 +247917,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [142975] = 3, + [140432] = 16, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5507), 1, + sym__dedent, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3595), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3102), 2, + sym_cvar_decl, + aux_sym_struct_suite_repeat1, + STATE(3192), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [140494] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2395), 2, + ACTIONS(2105), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2393), 25, + ACTIONS(2103), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243105,14 +247996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143011] = 3, + [140530] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2399), 2, + ACTIONS(2149), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2397), 25, + ACTIONS(2147), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243138,14 +248029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143047] = 3, + [140566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2071), 2, + ACTIONS(1929), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2069), 25, + ACTIONS(1927), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243171,14 +248062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143083] = 3, + [140602] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2403), 2, + ACTIONS(2137), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2401), 25, + ACTIONS(2135), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243204,14 +248095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143119] = 3, + [140638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1923), 2, + ACTIONS(1933), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1921), 25, + ACTIONS(1931), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243237,32 +248128,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143155] = 9, - ACTIONS(4350), 1, + [140674] = 9, + ACTIONS(4447), 1, anon_sym_EQ, - ACTIONS(4355), 1, + ACTIONS(4452), 1, anon_sym_not, - ACTIONS(4358), 1, + ACTIONS(4455), 1, anon_sym_is, - STATE(3105), 1, + STATE(3148), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4361), 2, + ACTIONS(4458), 2, anon_sym_LT, anon_sym_GT, - STATE(2015), 2, + STATE(2031), 2, sym__not_in, sym__is_not, - ACTIONS(4352), 6, + ACTIONS(4449), 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(4348), 13, + ACTIONS(4445), 13, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -243276,14 +248167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_nogil, - [143203] = 3, + [140722] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1735), 2, + ACTIONS(1857), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1733), 25, + ACTIONS(1855), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243309,15 +248200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143239] = 4, - ACTIONS(1609), 1, - sym__dedent, - ACTIONS(5403), 1, - anon_sym_SEMI, + [140758] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 25, + ACTIONS(1937), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1935), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243343,21 +248233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143277] = 3, - ACTIONS(3793), 1, - anon_sym_COLON, + [140794] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5295), 26, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, + ACTIONS(2173), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2171), 25, anon_sym_class, sym_identifier, - anon_sym_await, anon_sym_api, + anon_sym_extern, anon_sym_int, anon_sym_double, anon_sym_complex, @@ -243369,21 +248256,25 @@ 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, - [143313] = 3, + [140830] = 4, + ACTIONS(1635), 1, + sym__dedent, + ACTIONS(5509), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1739), 2, - sym__dedent, - anon_sym_SEMI, - ACTIONS(1737), 25, + ACTIONS(1631), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243409,14 +248300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143349] = 3, + [140868] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1927), 2, + ACTIONS(2089), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1925), 25, + ACTIONS(2087), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243442,14 +248333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143385] = 3, + [140904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1931), 2, + ACTIONS(2109), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1929), 25, + ACTIONS(2107), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243475,60 +248366,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143421] = 16, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5405), 1, - sym__dedent, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3517), 1, - sym_c_type, + [140940] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(2041), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(2039), 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(4112), 2, anon_sym_char, anon_sym_short, - ACTIONS(4116), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(3002), 2, - sym_cvar_decl, - aux_sym_struct_suite_repeat1, - STATE(3151), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 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, - [143483] = 3, + [140976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1743), 2, + ACTIONS(2093), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(1741), 25, + ACTIONS(2091), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243554,62 +248432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143519] = 18, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5307), 1, - sym_identifier, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - STATE(4709), 1, - sym_splat_pattern, - STATE(5459), 1, - sym__key_value_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5309), 3, - anon_sym__, - sym_true, - sym_false, - STATE(5198), 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, - [143585] = 3, + [141012] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2311), 2, + ACTIONS(2325), 2, sym__dedent, anon_sym_SEMI, - ACTIONS(2309), 25, + ACTIONS(2323), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243635,58 +248465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143621] = 16, - ACTIONS(1991), 1, - anon_sym_None, - ACTIONS(1999), 1, - sym_string_start, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(5279), 1, - anon_sym_STAR, - ACTIONS(5281), 1, - anon_sym_STAR_STAR, - ACTIONS(5283), 1, - anon_sym_LBRACK, - ACTIONS(5285), 1, - anon_sym_DASH, - ACTIONS(5289), 1, - anon_sym_LBRACE, - ACTIONS(5291), 1, - sym_integer, - ACTIONS(5293), 1, - sym_float, - ACTIONS(5407), 1, - sym_identifier, - STATE(4124), 1, - sym_string, - STATE(4500), 1, - sym_dotted_name, + [141048] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5409), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4416), 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, - [143682] = 3, - ACTIONS(2427), 1, + ACTIONS(2297), 2, sym__dedent, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2425), 25, + anon_sym_SEMI, + ACTIONS(2295), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243712,13 +248498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143717] = 3, - ACTIONS(2435), 1, - sym__dedent, + [141084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2433), 25, + ACTIONS(1861), 2, + sym__dedent, + anon_sym_SEMI, + ACTIONS(1859), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243744,131 +248531,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143752] = 16, - ACTIONS(1267), 1, - anon_sym_None, - ACTIONS(1279), 1, - sym_string_start, - ACTIONS(4925), 1, - anon_sym_LPAREN, - ACTIONS(4927), 1, - anon_sym_STAR, - ACTIONS(4933), 1, - anon_sym_STAR_STAR, - ACTIONS(4935), 1, - anon_sym_LBRACK, - ACTIONS(4937), 1, - anon_sym_DASH, - ACTIONS(4941), 1, - anon_sym_LBRACE, - ACTIONS(4943), 1, - sym_integer, - ACTIONS(4945), 1, - sym_float, - ACTIONS(5307), 1, - sym_identifier, - STATE(3940), 1, - sym_string, - STATE(4265), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5411), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4250), 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, - [143813] = 16, - ACTIONS(1428), 1, - anon_sym_None, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(5123), 1, - anon_sym_LPAREN, - ACTIONS(5127), 1, - anon_sym_STAR, - ACTIONS(5129), 1, - anon_sym_STAR_STAR, - ACTIONS(5131), 1, - anon_sym_LBRACK, - ACTIONS(5133), 1, - anon_sym_DASH, - ACTIONS(5137), 1, - anon_sym_LBRACE, - ACTIONS(5139), 1, - sym_integer, - ACTIONS(5141), 1, - sym_float, - ACTIONS(5413), 1, - sym_identifier, - STATE(4107), 1, - sym_string, - STATE(4538), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5415), 3, - anon_sym__, - sym_true, - sym_false, - STATE(4370), 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, - [143874] = 16, - ACTIONS(1428), 1, + [141120] = 16, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(1440), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5123), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5127), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5129), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5131), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5133), 1, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5137), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5141), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5413), 1, + ACTIONS(5511), 1, sym_identifier, - STATE(4107), 1, + STATE(4123), 1, sym_string, - STATE(4538), 1, + STATE(4498), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5417), 3, + ACTIONS(5513), 3, anon_sym__, sym_true, sym_false, - STATE(4372), 10, + STATE(4497), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -243879,13 +248576,13 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [143935] = 3, - ACTIONS(2475), 1, + [141181] = 3, + ACTIONS(2421), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2473), 25, + ACTIONS(2419), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243911,13 +248608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [143970] = 3, - ACTIONS(2471), 1, + [141216] = 3, + ACTIONS(2469), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2469), 25, + ACTIONS(2467), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243943,13 +248640,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [144005] = 3, - ACTIONS(2467), 1, + [141251] = 3, + ACTIONS(2417), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2465), 25, + ACTIONS(2415), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -243975,13 +248672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [144040] = 3, - ACTIONS(2479), 1, + [141286] = 3, + ACTIONS(2409), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 25, + ACTIONS(2407), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244007,13 +248704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [144075] = 3, - ACTIONS(2419), 1, + [141321] = 3, + ACTIONS(2413), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2417), 25, + ACTIONS(2411), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244039,13 +248736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [144110] = 3, - ACTIONS(1623), 1, + [141356] = 3, + ACTIONS(1649), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 25, + ACTIONS(1645), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244071,13 +248768,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [144145] = 3, - ACTIONS(2423), 1, + [141391] = 16, + ACTIONS(1301), 1, + anon_sym_None, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(5058), 1, + anon_sym_LPAREN, + ACTIONS(5060), 1, + anon_sym_STAR, + ACTIONS(5066), 1, + anon_sym_STAR_STAR, + ACTIONS(5068), 1, + anon_sym_LBRACK, + ACTIONS(5070), 1, + anon_sym_DASH, + ACTIONS(5074), 1, + anon_sym_LBRACE, + ACTIONS(5076), 1, + sym_integer, + ACTIONS(5078), 1, + sym_float, + ACTIONS(5401), 1, + sym_identifier, + STATE(4046), 1, + sym_string, + STATE(4290), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5515), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4366), 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, + [141452] = 3, + ACTIONS(2473), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2421), 25, + ACTIONS(2471), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244103,41 +248845,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [144180] = 16, - ACTIONS(2527), 1, + [141487] = 16, + ACTIONS(2533), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(2541), 1, sym_string_start, - ACTIONS(5101), 1, + ACTIONS(5229), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5231), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5233), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5235), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5239), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5243), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5245), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5247), 1, sym_float, - ACTIONS(5419), 1, + ACTIONS(5511), 1, sym_identifier, - STATE(4156), 1, + STATE(4123), 1, sym_string, - STATE(4504), 1, + STATE(4498), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5421), 3, + ACTIONS(5517), 3, anon_sym__, sym_true, sym_false, - STATE(4476), 10, + STATE(4501), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -244148,41 +248890,41 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [144241] = 16, - ACTIONS(1991), 1, + [141548] = 16, + ACTIONS(1301), 1, anon_sym_None, - ACTIONS(1999), 1, + ACTIONS(1313), 1, sym_string_start, - ACTIONS(5277), 1, + ACTIONS(5058), 1, anon_sym_LPAREN, - ACTIONS(5279), 1, + ACTIONS(5060), 1, anon_sym_STAR, - ACTIONS(5281), 1, + ACTIONS(5066), 1, anon_sym_STAR_STAR, - ACTIONS(5283), 1, + ACTIONS(5068), 1, anon_sym_LBRACK, - ACTIONS(5285), 1, + ACTIONS(5070), 1, anon_sym_DASH, - ACTIONS(5289), 1, + ACTIONS(5074), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5076), 1, sym_integer, - ACTIONS(5293), 1, + ACTIONS(5078), 1, sym_float, - ACTIONS(5407), 1, + ACTIONS(5401), 1, sym_identifier, - STATE(4124), 1, + STATE(4046), 1, sym_string, - STATE(4500), 1, + STATE(4290), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5423), 3, + ACTIONS(5519), 3, anon_sym__, sym_true, sym_false, - STATE(4412), 10, + STATE(4356), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -244193,41 +248935,41 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [144302] = 16, - ACTIONS(1267), 1, + [141609] = 16, + ACTIONS(2453), 1, anon_sym_None, - ACTIONS(1279), 1, + ACTIONS(2461), 1, sym_string_start, - ACTIONS(4925), 1, + ACTIONS(5359), 1, anon_sym_LPAREN, - ACTIONS(4927), 1, + ACTIONS(5361), 1, anon_sym_STAR, - ACTIONS(4933), 1, + ACTIONS(5363), 1, anon_sym_STAR_STAR, - ACTIONS(4935), 1, + ACTIONS(5365), 1, anon_sym_LBRACK, - ACTIONS(4937), 1, + ACTIONS(5367), 1, anon_sym_DASH, - ACTIONS(4941), 1, + ACTIONS(5371), 1, anon_sym_LBRACE, - ACTIONS(4943), 1, + ACTIONS(5373), 1, sym_integer, - ACTIONS(4945), 1, + ACTIONS(5375), 1, sym_float, - ACTIONS(5307), 1, + ACTIONS(5521), 1, sym_identifier, - STATE(3940), 1, + STATE(4257), 1, sym_string, - STATE(4265), 1, + STATE(4552), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5425), 3, + ACTIONS(5523), 3, anon_sym__, sym_true, sym_false, - STATE(4228), 10, + STATE(4574), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -244238,41 +248980,73 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [144363] = 16, - ACTIONS(2527), 1, + [141670] = 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, + [141705] = 16, + ACTIONS(1462), 1, anon_sym_None, - ACTIONS(2535), 1, + ACTIONS(1474), 1, sym_string_start, - ACTIONS(5101), 1, + ACTIONS(5205), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, + ACTIONS(5209), 1, anon_sym_STAR, - ACTIONS(5105), 1, + ACTIONS(5211), 1, anon_sym_STAR_STAR, - ACTIONS(5107), 1, + ACTIONS(5213), 1, anon_sym_LBRACK, - ACTIONS(5111), 1, + ACTIONS(5215), 1, anon_sym_DASH, - ACTIONS(5115), 1, + ACTIONS(5219), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5221), 1, sym_integer, - ACTIONS(5119), 1, + ACTIONS(5223), 1, sym_float, - ACTIONS(5419), 1, + ACTIONS(5525), 1, sym_identifier, - STATE(4156), 1, + STATE(4259), 1, sym_string, - STATE(4504), 1, + STATE(4554), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5427), 3, + ACTIONS(5527), 3, anon_sym__, sym_true, sym_false, - STATE(4478), 10, + STATE(4560), 10, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -244283,13 +249057,103 @@ static const uint16_t ts_small_parse_table[] = { sym_complex_pattern, sym_concatenated_string, sym_none, - [144424] = 3, - ACTIONS(2431), 1, + [141766] = 16, + ACTIONS(2453), 1, + anon_sym_None, + ACTIONS(2461), 1, + sym_string_start, + ACTIONS(5359), 1, + anon_sym_LPAREN, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_STAR_STAR, + ACTIONS(5365), 1, + anon_sym_LBRACK, + ACTIONS(5367), 1, + anon_sym_DASH, + ACTIONS(5371), 1, + anon_sym_LBRACE, + ACTIONS(5373), 1, + sym_integer, + ACTIONS(5375), 1, + sym_float, + ACTIONS(5521), 1, + sym_identifier, + STATE(4257), 1, + sym_string, + STATE(4552), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5529), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4575), 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, + [141827] = 16, + ACTIONS(1462), 1, + anon_sym_None, + ACTIONS(1474), 1, + sym_string_start, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5209), 1, + anon_sym_STAR, + ACTIONS(5211), 1, + anon_sym_STAR_STAR, + ACTIONS(5213), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_DASH, + ACTIONS(5219), 1, + anon_sym_LBRACE, + ACTIONS(5221), 1, + sym_integer, + ACTIONS(5223), 1, + sym_float, + ACTIONS(5525), 1, + sym_identifier, + STATE(4259), 1, + sym_string, + STATE(4554), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5531), 3, + anon_sym__, + sym_true, + sym_false, + STATE(4555), 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, + [141888] = 3, + ACTIONS(2401), 1, sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2429), 25, + ACTIONS(2399), 25, anon_sym_class, sym_identifier, anon_sym_api, @@ -244297,216 +249161,112 @@ static const uint16_t ts_small_parse_table[] = { 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, - [144459] = 16, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(5257), 1, - anon_sym_ctypedef, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3868), 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(4032), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2789), 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, - [144519] = 16, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(5255), 1, - anon_sym_class, - STATE(3210), 1, - sym__signedness, - STATE(3228), 1, - sym_int_type, - STATE(3416), 1, - sym__longness, - STATE(3623), 1, - sym_operator_name, - STATE(3868), 1, - sym_maybe_typed_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(367), 2, + anon_sym_operator, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(2789), 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, - [144579] = 20, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5429), 1, - sym_identifier, - ACTIONS(5431), 1, - anon_sym_LPAREN, - ACTIONS(5433), 1, - anon_sym_RPAREN, - ACTIONS(5435), 1, - anon_sym_DOT_DOT_DOT, - STATE(3209), 1, - sym__signedness, - STATE(3220), 1, - sym_int_type, - STATE(3417), 1, - sym__longness, - STATE(3474), 1, - sym_function_pointer_type, - STATE(3583), 1, - sym_operator_name, - STATE(4681), 1, - sym_maybe_typed_name, - STATE(5731), 1, - sym_c_type, - STATE(5756), 1, - sym__typedargslist, + [141923] = 3, + ACTIONS(2465), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(2463), 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(1386), 2, anon_sym_char, anon_sym_short, - ACTIONS(5437), 2, + anon_sym_long, anon_sym_const, anon_sym_volatile, - STATE(5186), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [144647] = 20, - ACTIONS(1388), 1, + 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, + [141958] = 20, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4994), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5429), 1, + ACTIONS(5533), 1, sym_identifier, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5439), 1, + ACTIONS(5537), 1, anon_sym_RPAREN, - STATE(3209), 1, - sym__signedness, - STATE(3220), 1, + ACTIONS(5539), 1, + anon_sym_DOT_DOT_DOT, + STATE(3261), 1, sym_int_type, - STATE(3417), 1, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, sym__longness, - STATE(3474), 1, + STATE(3541), 1, sym_function_pointer_type, - STATE(3583), 1, + STATE(3722), 1, sym_operator_name, - STATE(4681), 1, + STATE(4614), 1, sym_maybe_typed_name, - STATE(5670), 1, + STATE(5652), 1, sym__typedargslist, - STATE(5731), 1, + STATE(5703), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(5437), 2, + ACTIONS(5541), 2, anon_sym_const, anon_sym_volatile, - STATE(5186), 2, + STATE(5005), 2, sym_c_function_argument_type, sym__typedargument, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [144715] = 3, + [142026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4303), 2, + ACTIONS(4803), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4289), 23, + ACTIONS(4801), 23, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -244530,14 +249290,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144749] = 3, + [142060] = 20, + ACTIONS(1422), 1, + anon_sym_long, + ACTIONS(5096), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5533), 1, + sym_identifier, + ACTIONS(5535), 1, + anon_sym_LPAREN, + ACTIONS(5543), 1, + anon_sym_RPAREN, + STATE(3261), 1, + sym_int_type, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3541), 1, + sym_function_pointer_type, + STATE(3722), 1, + sym_operator_name, + STATE(4614), 1, + sym_maybe_typed_name, + STATE(5703), 1, + sym_c_type, + STATE(5745), 1, + sym__typedargslist, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5541), 2, + anon_sym_const, + anon_sym_volatile, + STATE(5005), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [142128] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 2, + ACTIONS(4811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4623), 23, + ACTIONS(4809), 23, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -244561,58 +249369,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144783] = 16, - ACTIONS(371), 1, + [142162] = 16, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4903), 1, + ACTIONS(5010), 1, anon_sym_class, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3931), 1, + STATE(3904), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(2789), 2, + STATE(2832), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [144843] = 3, + [142222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 2, + ACTIONS(4716), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4639), 23, + ACTIONS(4714), 23, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -244636,58 +249444,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144877] = 16, - ACTIONS(371), 1, + [142256] = 16, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4206), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(4886), 1, + ACTIONS(4974), 1, anon_sym_class, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3228), 1, + STATE(3270), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3623), 1, + STATE(3718), 1, sym_operator_name, - STATE(3900), 1, + STATE(3928), 1, sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(4032), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(2789), 2, + STATE(2832), 2, sym_storageclass, aux_sym_class_definition_repeat1, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - ACTIONS(103), 5, + ACTIONS(105), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [144937] = 3, + [142316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 2, + ACTIONS(4407), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4654), 23, + ACTIONS(4393), 23, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -244711,138 +249519,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [144971] = 19, - ACTIONS(1388), 1, + [142350] = 16, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4996), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5429), 1, + ACTIONS(4310), 1, sym_identifier, - ACTIONS(5431), 1, - anon_sym_LPAREN, - ACTIONS(5441), 1, - anon_sym_RPAREN, - ACTIONS(5443), 1, - anon_sym_DOT_DOT_DOT, - STATE(3209), 1, + ACTIONS(5383), 1, + anon_sym_ctypedef, + STATE(3253), 1, sym__signedness, - STATE(3220), 1, + STATE(3270), 1, sym_int_type, - STATE(3417), 1, + STATE(3466), 1, sym__longness, - STATE(3474), 1, - sym_function_pointer_type, - STATE(3583), 1, + STATE(3718), 1, sym_operator_name, - STATE(4681), 1, + STATE(3938), 1, sym_maybe_typed_name, - STATE(5731), 1, - sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(5437), 2, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, - STATE(5266), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1380), 3, + STATE(2832), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145036] = 3, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [142410] = 16, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(5381), 1, + anon_sym_class, + STATE(3253), 1, + sym__signedness, + STATE(3270), 1, + sym_int_type, + STATE(3466), 1, + sym__longness, + STATE(3718), 1, + sym_operator_name, + STATE(3938), 1, + sym_maybe_typed_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4542), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_GT, - ACTIONS(4544), 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, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - anon_sym_long, + ACTIONS(4140), 2, anon_sym_const, anon_sym_volatile, + STATE(2832), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(375), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [145069] = 3, + [142470] = 13, + ACTIONS(3910), 1, + anon_sym_SLASH, + ACTIONS(3920), 1, + anon_sym_COMMA, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_STAR, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(4435), 1, + anon_sym_complex, + STATE(3490), 1, + aux_sym_class_definition_repeat2, + STATE(3536), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5445), 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(5447), 12, - sym_string_start, + ACTIONS(3903), 2, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_RPAREN, + STATE(3687), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4431), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3899), 9, + anon_sym_GT_GT, + anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_float, - [145102] = 9, - ACTIONS(4350), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_CARET, + anon_sym_LT_LT, + [142523] = 9, + ACTIONS(4447), 1, anon_sym_EQ, - ACTIONS(4355), 1, + ACTIONS(4452), 1, anon_sym_not, - ACTIONS(4669), 1, + ACTIONS(4697), 1, anon_sym_is, - STATE(3147), 1, + STATE(3189), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4672), 2, + ACTIONS(4700), 2, anon_sym_LT, anon_sym_GT, - STATE(1983), 2, + STATE(2047), 2, sym__not_in, sym__is_not, - ACTIONS(4666), 6, + ACTIONS(4694), 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(4348), 10, + ACTIONS(4445), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -244853,32 +249683,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [145147] = 9, - ACTIONS(4313), 1, + [142568] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4610), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_GT, + ACTIONS(4612), 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, + [142601] = 9, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4342), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4402), 1, + ACTIONS(4538), 1, anon_sym_is, - STATE(3147), 1, + STATE(3189), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4404), 2, + ACTIONS(4540), 2, anon_sym_LT, anon_sym_GT, - STATE(1983), 2, + STATE(2047), 2, sym__not_in, sym__is_not, - ACTIONS(4386), 6, + ACTIONS(4522), 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(4340), 10, + ACTIONS(4437), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -244889,62 +249749,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [145192] = 19, - ACTIONS(1388), 1, + [142646] = 14, + ACTIONS(4188), 1, + sym_identifier, + ACTIONS(4190), 1, + anon_sym_LPAREN, + ACTIONS(4202), 1, + anon_sym_long, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(3603), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(4204), 2, + anon_sym_const, + anon_sym_volatile, + STATE(2832), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(3791), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + ACTIONS(105), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [142701] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5545), 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(5547), 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, + [142734] = 19, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5429), 1, + ACTIONS(5533), 1, sym_identifier, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5449), 1, + ACTIONS(5549), 1, anon_sym_RPAREN, - ACTIONS(5451), 1, + ACTIONS(5551), 1, anon_sym_DOT_DOT_DOT, - STATE(3209), 1, + STATE(3261), 1, + sym_int_type, + STATE(3262), 1, sym__signedness, - STATE(3220), 1, + STATE(3482), 1, + sym__longness, + STATE(3541), 1, + sym_function_pointer_type, + STATE(3722), 1, + sym_operator_name, + STATE(4614), 1, + sym_maybe_typed_name, + STATE(5703), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5541), 2, + anon_sym_const, + anon_sym_volatile, + STATE(5293), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [142799] = 19, + ACTIONS(1422), 1, + anon_sym_long, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5533), 1, + sym_identifier, + ACTIONS(5535), 1, + anon_sym_LPAREN, + ACTIONS(5553), 1, + anon_sym_RPAREN, + ACTIONS(5555), 1, + anon_sym_DOT_DOT_DOT, + STATE(3261), 1, sym_int_type, - STATE(3417), 1, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, sym__longness, - STATE(3474), 1, + STATE(3541), 1, sym_function_pointer_type, - STATE(3583), 1, + STATE(3722), 1, sym_operator_name, - STATE(4681), 1, + STATE(4614), 1, sym_maybe_typed_name, - STATE(5731), 1, + STATE(5703), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(5437), 2, + ACTIONS(5541), 2, anon_sym_const, anon_sym_volatile, - STATE(5266), 2, + STATE(5293), 2, sym_c_function_argument_type, sym__typedargument, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145257] = 3, + [142864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4538), 4, + ACTIONS(4646), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, - ACTIONS(4540), 20, + ACTIONS(4648), 20, anon_sym_class, sym_identifier, anon_sym_api, @@ -244965,52 +249942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [145290] = 14, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_LPAREN, - ACTIONS(4114), 1, - anon_sym_long, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(3520), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(4116), 2, - anon_sym_const, - anon_sym_volatile, - STATE(2789), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(3698), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 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, - [145345] = 3, + [142897] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5453), 12, + ACTIONS(5557), 12, anon_sym_print, anon_sym_match, anon_sym_async, @@ -245023,7 +249959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, anon_sym_sizeof, - ACTIONS(5455), 12, + ACTIONS(5559), 12, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, @@ -245036,106 +249972,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT_DOT_DOT, sym_float, - [145378] = 13, - ACTIONS(3806), 1, - anon_sym_SLASH, - ACTIONS(3816), 1, - anon_sym_COMMA, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4325), 1, - anon_sym_STAR, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4331), 1, - anon_sym_complex, - STATE(3441), 1, - aux_sym_class_definition_repeat2, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3799), 2, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(3597), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4327), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3795), 9, - anon_sym_GT_GT, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_CARET, - anon_sym_LT_LT, - [145431] = 9, - ACTIONS(4350), 1, - anon_sym_as, - ACTIONS(4355), 1, + [142930] = 9, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4706), 1, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4566), 1, anon_sym_is, - STATE(3154), 1, + STATE(3202), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4709), 2, + ACTIONS(4568), 2, anon_sym_LT, anon_sym_GT, - STATE(2013), 2, + STATE(2025), 2, sym__not_in, sym__is_not, - ACTIONS(4703), 6, + ACTIONS(4550), 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(4348), 8, + ACTIONS(4437), 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, - [145474] = 9, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4342), 1, + sym_type_conversion, + [142973] = 17, + ACTIONS(1422), 1, + anon_sym_long, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5533), 1, + sym_identifier, + ACTIONS(5535), 1, + anon_sym_LPAREN, + STATE(3261), 1, + sym_int_type, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3541), 1, + sym_function_pointer_type, + STATE(3722), 1, + sym_operator_name, + STATE(4614), 1, + sym_maybe_typed_name, + STATE(5703), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5541), 2, + anon_sym_const, + anon_sym_volatile, + STATE(5293), 2, + sym_c_function_argument_type, + sym__typedargument, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [143032] = 9, + ACTIONS(4447), 1, anon_sym_as, - ACTIONS(4446), 1, + ACTIONS(4452), 1, + anon_sym_not, + ACTIONS(4755), 1, anon_sym_is, - STATE(3154), 1, + STATE(3200), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4448), 2, + ACTIONS(4758), 2, anon_sym_LT, anon_sym_GT, - STATE(2013), 2, + STATE(2009), 2, sym__not_in, sym__is_not, - ACTIONS(4430), 6, + ACTIONS(4752), 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(4340), 8, + ACTIONS(4445), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -245144,30 +250082,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [145517] = 8, - ACTIONS(4313), 1, + [143075] = 8, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4699), 1, + ACTIONS(4678), 1, anon_sym_is, - STATE(3157), 1, + STATE(3203), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4701), 2, + ACTIONS(4680), 2, anon_sym_LT, anon_sym_GT, - STATE(1970), 2, + STATE(2099), 2, sym__not_in, sym__is_not, - ACTIONS(4683), 6, + 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, - ACTIONS(4340), 9, + ACTIONS(4437), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -245177,272 +250115,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [145558] = 8, - ACTIONS(4355), 1, + [143116] = 9, + ACTIONS(4447), 1, + anon_sym_EQ, + ACTIONS(4452), 1, anon_sym_not, - ACTIONS(4809), 1, + ACTIONS(4688), 1, anon_sym_is, - STATE(3157), 1, + STATE(3202), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4812), 2, + ACTIONS(4691), 2, anon_sym_LT, anon_sym_GT, - STATE(1970), 2, + STATE(2025), 2, sym__not_in, sym__is_not, - ACTIONS(4806), 6, + ACTIONS(4685), 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(4348), 9, - anon_sym_DOT, + ACTIONS(4445), 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, - [145599] = 9, - ACTIONS(4350), 1, - anon_sym_EQ, - ACTIONS(4355), 1, + sym_type_conversion, + [143159] = 8, + ACTIONS(4452), 1, anon_sym_not, - ACTIONS(4715), 1, + ACTIONS(4910), 1, anon_sym_is, - STATE(3158), 1, + STATE(3203), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4718), 2, + ACTIONS(4913), 2, anon_sym_LT, anon_sym_GT, - STATE(1993), 2, + STATE(2099), 2, sym__not_in, sym__is_not, - ACTIONS(4712), 6, + ACTIONS(4907), 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(4348), 8, + ACTIONS(4445), 9, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [145642] = 9, - ACTIONS(4313), 1, + [143200] = 9, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4342), 1, - anon_sym_EQ, - ACTIONS(4474), 1, + ACTIONS(4439), 1, + anon_sym_as, + ACTIONS(4498), 1, anon_sym_is, - STATE(3158), 1, + STATE(3200), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4476), 2, + ACTIONS(4500), 2, anon_sym_LT, anon_sym_GT, - STATE(1993), 2, + STATE(2009), 2, sym__not_in, sym__is_not, - ACTIONS(4458), 6, + ACTIONS(4482), 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(4340), 8, + ACTIONS(4437), 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, - [145685] = 17, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5429), 1, - sym_identifier, - ACTIONS(5431), 1, - anon_sym_LPAREN, - STATE(3209), 1, - sym__signedness, - STATE(3220), 1, - sym_int_type, - STATE(3417), 1, - sym__longness, - STATE(3474), 1, - sym_function_pointer_type, - STATE(3583), 1, - sym_operator_name, - STATE(4681), 1, - sym_maybe_typed_name, - STATE(5731), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1384), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1386), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5437), 2, - anon_sym_const, - anon_sym_volatile, - STATE(5266), 2, - sym_c_function_argument_type, - sym__typedargument, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [145744] = 17, - ACTIONS(5457), 1, + [143243] = 17, + ACTIONS(5561), 1, sym_identifier, - ACTIONS(5459), 1, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(5461), 1, + ACTIONS(5565), 1, anon_sym_COLON, - ACTIONS(5463), 1, + ACTIONS(5567), 1, anon_sym_RBRACK, - ACTIONS(5465), 1, + ACTIONS(5569), 1, sym_integer, - ACTIONS(5473), 1, + ACTIONS(5577), 1, anon_sym_long, - STATE(3438), 1, + STATE(3460), 1, sym__signedness, - STATE(3589), 1, + STATE(3677), 1, sym__longness, - STATE(4496), 1, + STATE(4531), 1, sym_c_type, - STATE(5119), 1, - sym_memory_view_index, - STATE(5127), 1, + STATE(5069), 1, sym_template_param, + STATE(5185), 1, + sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5469), 2, + ACTIONS(5573), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5471), 2, + ACTIONS(5575), 2, anon_sym_char, anon_sym_short, - ACTIONS(5475), 2, + ACTIONS(5579), 2, anon_sym_const, anon_sym_volatile, - STATE(3565), 2, + STATE(3561), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5467), 3, + ACTIONS(5571), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145803] = 9, - ACTIONS(4350), 1, - anon_sym_as, - ACTIONS(4355), 1, - anon_sym_not, - ACTIONS(4792), 1, - anon_sym_is, - STATE(3162), 1, - aux_sym_comparison_operator_repeat1, + [143302] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4795), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2053), 2, - sym__not_in, - sym__is_not, - ACTIONS(4789), 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(4348), 7, + ACTIONS(859), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, + anon_sym_COLON, + anon_sym_not, anon_sym_or, - [145845] = 16, - ACTIONS(5459), 1, + ACTIONS(857), 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, + [143334] = 16, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(5461), 1, + ACTIONS(5565), 1, anon_sym_COLON, - ACTIONS(5473), 1, + ACTIONS(5577), 1, anon_sym_long, - ACTIONS(5477), 1, + ACTIONS(5581), 1, sym_identifier, - ACTIONS(5479), 1, + ACTIONS(5583), 1, anon_sym_RBRACK, - ACTIONS(5481), 1, + ACTIONS(5585), 1, sym_integer, - STATE(3438), 1, + STATE(3460), 1, sym__signedness, - STATE(3589), 1, + STATE(3677), 1, sym__longness, - STATE(4387), 1, + STATE(4526), 1, sym_c_type, - STATE(5025), 1, + STATE(5177), 1, sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5469), 2, + ACTIONS(5573), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5471), 2, + ACTIONS(5575), 2, anon_sym_char, anon_sym_short, - ACTIONS(5475), 2, + ACTIONS(5579), 2, anon_sym_const, anon_sym_volatile, - STATE(3565), 2, + STATE(3561), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5467), 3, + ACTIONS(5571), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [145901] = 3, + [143390] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 2, + ACTIONS(4076), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3961), 19, + ACTIONS(4074), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -245462,14 +250353,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [145931] = 3, + [143420] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3963), 2, + ACTIONS(4091), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3961), 19, + ACTIONS(4089), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -245489,74 +250380,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [145961] = 3, + [143450] = 16, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(5565), 1, + anon_sym_COLON, + ACTIONS(5577), 1, + anon_sym_long, + ACTIONS(5581), 1, + sym_identifier, + ACTIONS(5587), 1, + anon_sym_RBRACK, + ACTIONS(5589), 1, + sym_integer, + STATE(3460), 1, + sym__signedness, + STATE(3677), 1, + sym__longness, + STATE(4404), 1, + sym_c_type, + STATE(5063), 1, + sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3980), 19, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - sym_type_conversion, - [145991] = 3, + ACTIONS(5573), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5575), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5579), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3561), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5571), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [143506] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 2, + ACTIONS(859), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3980), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(893), 5, 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, - [146021] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(813), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1327), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(811), 14, + ACTIONS(857), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -245571,32 +250448,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146053] = 9, - ACTIONS(4350), 1, - anon_sym_as, - ACTIONS(4355), 1, + [143538] = 9, + ACTIONS(4417), 1, anon_sym_not, - ACTIONS(4780), 1, + ACTIONS(4439), 1, + anon_sym_as, + ACTIONS(4638), 1, anon_sym_is, - STATE(3169), 1, + STATE(3216), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4783), 2, + ACTIONS(4640), 2, anon_sym_LT, anon_sym_GT, - STATE(2031), 2, + STATE(2110), 2, sym__not_in, sym__is_not, - ACTIONS(4777), 6, + ACTIONS(4622), 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(4348), 7, + ACTIONS(4437), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -245604,20 +250481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [146095] = 4, + [143580] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3974), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3816), 5, + ACTIONS(3920), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(3969), 14, + ACTIONS(4101), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -245632,109 +250509,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146127] = 4, + [143612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1329), 2, + ACTIONS(4076), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1327), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1530), 14, + ACTIONS(4074), 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, - [146159] = 4, - ACTIONS(5483), 1, - anon_sym_STAR, + sym_type_conversion, + [143642] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 6, + ACTIONS(4067), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4062), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4064), 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_complex, - anon_sym___stdcall, - ACTIONS(4406), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, + anon_sym_CARET, + anon_sym_LT_LT, + [143674] = 9, + ACTIONS(4447), 1, 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, - [146191] = 9, - ACTIONS(4313), 1, + ACTIONS(4452), 1, anon_sym_not, - ACTIONS(4342), 1, - anon_sym_as, - ACTIONS(4502), 1, + ACTIONS(4856), 1, anon_sym_is, - STATE(3162), 1, + STATE(3216), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4504), 2, + ACTIONS(4859), 2, anon_sym_LT, anon_sym_GT, - STATE(2053), 2, + STATE(2110), 2, sym__not_in, sym__is_not, - ACTIONS(4486), 6, + ACTIONS(4853), 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(4340), 7, + ACTIONS(4445), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [146233] = 4, + [143716] = 4, + ACTIONS(5591), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4580), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4570), 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, + [143748] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 2, + ACTIONS(859), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3816), 5, + ACTIONS(1361), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3795), 14, + anon_sym_not, + anon_sym_or, + ACTIONS(857), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -245749,53 +250653,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146265] = 9, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4342), 1, - anon_sym_as, - ACTIONS(4534), 1, - anon_sym_is, - STATE(3169), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4536), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2031), 2, - sym__not_in, - sym__is_not, - ACTIONS(4518), 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(4340), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [146307] = 4, + [143780] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 2, + ACTIONS(3910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3947), 5, + ACTIONS(4062), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_not, anon_sym_or, - ACTIONS(3795), 14, + ACTIONS(3899), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -245810,20 +250681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146339] = 4, + [143812] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 2, + ACTIONS(1363), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(847), 5, + ACTIONS(1361), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(811), 14, + ACTIONS(1576), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -245838,20 +250709,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146371] = 4, + [143844] = 16, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(5565), 1, + anon_sym_COLON, + ACTIONS(5567), 1, + anon_sym_RBRACK, + ACTIONS(5569), 1, + sym_integer, + ACTIONS(5577), 1, + anon_sym_long, + ACTIONS(5581), 1, + sym_identifier, + STATE(3460), 1, + sym__signedness, + STATE(3677), 1, + sym__longness, + STATE(4531), 1, + sym_c_type, + STATE(5185), 1, + sym_memory_view_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5573), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5575), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5579), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3561), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5571), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [143900] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 2, + ACTIONS(3910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3993), 5, + ACTIONS(3920), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(3984), 14, + ACTIONS(3899), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -245866,20 +250777,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146403] = 4, + [143932] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 2, + ACTIONS(4056), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4004), 5, + ACTIONS(4058), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(3995), 14, + ACTIONS(4051), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -245894,82 +250805,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146435] = 4, + [143964] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3954), 2, + ACTIONS(4110), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3947), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(3951), 14, + ACTIONS(4108), 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, - [146467] = 16, - ACTIONS(5459), 1, + sym_type_conversion, + [143994] = 16, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(5461), 1, + ACTIONS(5565), 1, anon_sym_COLON, - ACTIONS(5473), 1, + ACTIONS(5577), 1, anon_sym_long, - ACTIONS(5477), 1, + ACTIONS(5581), 1, sym_identifier, - ACTIONS(5485), 1, + ACTIONS(5593), 1, anon_sym_RBRACK, - ACTIONS(5487), 1, + ACTIONS(5595), 1, sym_integer, - STATE(3438), 1, + STATE(3460), 1, sym__signedness, - STATE(3589), 1, + STATE(3677), 1, sym__longness, - STATE(4506), 1, + STATE(4494), 1, sym_c_type, - STATE(5173), 1, + STATE(4873), 1, sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5469), 2, + ACTIONS(5573), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5471), 2, + ACTIONS(5575), 2, anon_sym_char, anon_sym_short, - ACTIONS(5475), 2, + ACTIONS(5579), 2, anon_sym_const, anon_sym_volatile, - STATE(3565), 2, + STATE(3561), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5467), 3, + ACTIONS(5571), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [146523] = 3, + [144050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3978), 2, + ACTIONS(4091), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3976), 19, + ACTIONS(4089), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -245989,87 +250899,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [146553] = 3, + [144080] = 9, + ACTIONS(4447), 1, + anon_sym_as, + ACTIONS(4452), 1, + anon_sym_not, + ACTIONS(4893), 1, + anon_sym_is, + STATE(3227), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4896), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2091), 2, + sym__not_in, + sym__is_not, + ACTIONS(4890), 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(4445), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [144122] = 9, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4439), 1, + anon_sym_as, + ACTIONS(4606), 1, + anon_sym_is, + STATE(3227), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4608), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2091), 2, + sym__not_in, + sym__is_not, + ACTIONS(4590), 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(4437), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [144164] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4010), 2, + ACTIONS(3910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4008), 19, + ACTIONS(5597), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(3899), 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, - [146583] = 16, - ACTIONS(5459), 1, - anon_sym_LPAREN, - ACTIONS(5461), 1, - anon_sym_COLON, - ACTIONS(5473), 1, - anon_sym_long, - ACTIONS(5477), 1, - sym_identifier, - ACTIONS(5489), 1, - anon_sym_RBRACK, - ACTIONS(5491), 1, - sym_integer, - STATE(3438), 1, - sym__signedness, - STATE(3589), 1, - sym__longness, - STATE(4521), 1, - sym_c_type, - STATE(4829), 1, - sym_memory_view_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5469), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5471), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5475), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3565), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5467), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [146639] = 4, + [144196] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 2, + ACTIONS(4083), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3391), 5, - anon_sym_RPAREN, + ACTIONS(4085), 5, anon_sym_COMMA, anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(811), 14, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(4078), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -246084,82 +251021,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146671] = 4, + [144228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 2, + ACTIONS(4095), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5493), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(3795), 14, + ACTIONS(4093), 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, - [146703] = 16, - ACTIONS(5459), 1, - anon_sym_LPAREN, - ACTIONS(5461), 1, - anon_sym_COLON, - ACTIONS(5463), 1, - anon_sym_RBRACK, - ACTIONS(5465), 1, - sym_integer, - ACTIONS(5473), 1, - anon_sym_long, - ACTIONS(5477), 1, - sym_identifier, - STATE(3438), 1, - sym__signedness, - STATE(3589), 1, - sym__longness, - STATE(4496), 1, - sym_c_type, - STATE(5119), 1, - sym_memory_view_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5469), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5471), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5475), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3565), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5467), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [146759] = 3, + sym_type_conversion, + [144258] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3967), 2, + ACTIONS(4114), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3965), 19, + ACTIONS(4112), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -246179,61 +251075,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, sym_type_conversion, - [146789] = 14, - ACTIONS(4323), 1, + [144288] = 15, + ACTIONS(3901), 1, anon_sym_DOT, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5495), 1, + ACTIONS(5599), 1, sym_identifier, - ACTIONS(5500), 1, + ACTIONS(5601), 1, + anon_sym_LPAREN, + ACTIONS(5608), 1, + anon_sym_COLON, + ACTIONS(5610), 1, + anon_sym_LBRACK, + ACTIONS(5614), 1, anon_sym_complex, - STATE(3199), 1, + STATE(3289), 1, aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5497), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3315), 2, + STATE(3472), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3578), 2, + STATE(3678), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(3799), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5605), 3, + sym__newline, anon_sym_COMMA, - [146840] = 6, - ACTIONS(5502), 1, + anon_sym_EQ, + [144341] = 7, + ACTIONS(5616), 1, anon_sym_as, - ACTIONS(5505), 1, + ACTIONS(5618), 1, + anon_sym_if, + ACTIONS(5620), 1, anon_sym_and, - ACTIONS(5507), 1, + ACTIONS(5622), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4648), 2, + ACTIONS(4767), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4643), 15, + ACTIONS(4765), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_if, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -246245,23 +251143,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146875] = 5, - ACTIONS(5505), 1, - anon_sym_and, - ACTIONS(5507), 1, - anon_sym_or, + [144378] = 14, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5624), 1, + sym_identifier, + ACTIONS(5626), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + anon_sym_complex, + STATE(3254), 1, + aux_sym_class_definition_repeat2, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3390), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3696), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5629), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [144429] = 14, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5634), 1, + sym_identifier, + ACTIONS(5636), 1, + anon_sym_LPAREN, + ACTIONS(5640), 1, + anon_sym_complex, + STATE(3364), 1, + aux_sym_class_definition_repeat2, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3351), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3686), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5638), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [144480] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4652), 2, + ACTIONS(3910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4650), 16, + ACTIONS(4062), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(3899), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -246273,49 +251244,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146908] = 4, - ACTIONS(5505), 1, + [144511] = 7, + ACTIONS(5616), 1, + anon_sym_as, + ACTIONS(5618), 1, + anon_sym_if, + ACTIONS(5620), 1, anon_sym_and, + ACTIONS(5622), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4656), 2, + ACTIONS(4797), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4654), 17, + ACTIONS(4793), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146939] = 7, - ACTIONS(5505), 1, - anon_sym_and, - ACTIONS(5507), 1, - anon_sym_or, - ACTIONS(5509), 1, + [144548] = 7, + ACTIONS(5616), 1, anon_sym_as, - ACTIONS(5511), 1, + ACTIONS(5618), 1, anon_sym_if, + ACTIONS(5620), 1, + anon_sym_and, + ACTIONS(5622), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4660), 2, + ACTIONS(4771), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4658), 14, + ACTIONS(4769), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -246330,234 +251304,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [146976] = 7, - ACTIONS(5505), 1, + [144585] = 4, + ACTIONS(5620), 1, anon_sym_and, - ACTIONS(5507), 1, - anon_sym_or, - ACTIONS(5509), 1, - anon_sym_as, - ACTIONS(5511), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4664), 2, + ACTIONS(4716), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4662), 14, + ACTIONS(4714), 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, - [147013] = 14, - ACTIONS(4323), 1, + [144616] = 15, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5513), 1, + ACTIONS(5624), 1, sym_identifier, - ACTIONS(5515), 1, + ACTIONS(5642), 1, anon_sym_LPAREN, - ACTIONS(5520), 1, + ACTIONS(5649), 1, anon_sym_complex, - STATE(3323), 1, + STATE(3255), 1, aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3340), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3626), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5518), 4, + ACTIONS(5645), 2, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(5647), 2, anon_sym_COLON, anon_sym_EQ, - [147064] = 14, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5522), 1, - sym_identifier, - ACTIONS(5524), 1, - anon_sym_LPAREN, - ACTIONS(5528), 1, - anon_sym_complex, - STATE(3323), 1, - aux_sym_class_definition_repeat2, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3303), 2, + STATE(3380), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3654), 2, + STATE(3696), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5526), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [147115] = 14, - ACTIONS(4323), 1, + [144669] = 14, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5522), 1, + ACTIONS(5651), 1, sym_identifier, - ACTIONS(5530), 1, - anon_sym_LPAREN, - ACTIONS(5532), 1, + ACTIONS(5653), 1, anon_sym_complex, - STATE(3323), 1, + STATE(3256), 1, aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3344), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3654), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5526), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5605), 2, anon_sym_COLON, anon_sym_EQ, - [147166] = 14, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5534), 1, - sym_identifier, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(5542), 1, - anon_sym_complex, - STATE(3195), 1, - aux_sym_class_definition_repeat2, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3347), 2, + STATE(3355), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3660), 2, + STATE(3667), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5539), 4, + ACTIONS(3903), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [147217] = 14, - ACTIONS(4323), 1, + [144720] = 14, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5522), 1, + ACTIONS(5651), 1, sym_identifier, - ACTIONS(5544), 1, + ACTIONS(5659), 1, anon_sym_complex, - STATE(3323), 1, + STATE(3236), 1, aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5526), 2, + ACTIONS(5657), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3326), 2, + STATE(3359), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3654), 2, + STATE(3667), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5530), 3, + ACTIONS(5655), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [147268] = 4, + [144771] = 7, + ACTIONS(5616), 1, + anon_sym_as, + ACTIONS(5618), 1, + anon_sym_if, + ACTIONS(5620), 1, + anon_sym_and, + ACTIONS(5622), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 2, + ACTIONS(4839), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3947), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(3795), 14, + ACTIONS(4837), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -246572,135 +251473,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147299] = 15, - ACTIONS(4323), 1, + [144808] = 15, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5534), 1, + ACTIONS(5624), 1, sym_identifier, - ACTIONS(5536), 1, + ACTIONS(5626), 1, anon_sym_LPAREN, - ACTIONS(5548), 1, + ACTIONS(5663), 1, anon_sym_complex, - STATE(3212), 1, + STATE(3246), 1, aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5539), 2, + ACTIONS(5629), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(5546), 2, + ACTIONS(5661), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3329), 2, + STATE(3376), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3660), 2, + STATE(3696), 2, sym_operator_name, sym_c_function_pointer_name, - [147352] = 15, - ACTIONS(4323), 1, + [144861] = 15, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5534), 1, + ACTIONS(5665), 1, sym_identifier, - ACTIONS(5550), 1, + ACTIONS(5667), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(5674), 1, anon_sym_complex, - STATE(3215), 1, + STATE(3364), 1, aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5553), 2, + ACTIONS(5670), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5555), 2, + ACTIONS(5672), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3331), 2, + STATE(3418), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3660), 2, + STATE(3636), 2, sym_operator_name, sym_c_function_pointer_name, - [147405] = 14, - ACTIONS(4323), 1, + [144914] = 14, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5534), 1, + ACTIONS(5634), 1, sym_identifier, - ACTIONS(5550), 1, + ACTIONS(5676), 1, anon_sym_LPAREN, - ACTIONS(5559), 1, + ACTIONS(5678), 1, anon_sym_complex, - STATE(3215), 1, + STATE(3364), 1, aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3349), 2, + STATE(3368), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3660), 2, + STATE(3686), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5555), 4, + ACTIONS(5638), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [147456] = 7, - ACTIONS(5505), 1, - anon_sym_and, - ACTIONS(5507), 1, - anon_sym_or, - ACTIONS(5509), 1, - anon_sym_as, - ACTIONS(5511), 1, - anon_sym_if, + [144965] = 15, + ACTIONS(3901), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(4972), 1, + anon_sym_COLON, + ACTIONS(5599), 1, + sym_identifier, + ACTIONS(5601), 1, + anon_sym_LPAREN, + ACTIONS(5610), 1, + anon_sym_LBRACK, + ACTIONS(5614), 1, + anon_sym_complex, + STATE(3289), 1, + aux_sym_class_definition_repeat2, + STATE(3525), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3908), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3924), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3472), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3678), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5605), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [145018] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4731), 2, + ACTIONS(859), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4729), 14, + ACTIONS(1361), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(857), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -246715,19 +251651,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147493] = 4, + [145049] = 7, + ACTIONS(5616), 1, + anon_sym_as, + ACTIONS(5618), 1, + anon_sym_if, + ACTIONS(5620), 1, + anon_sym_and, + ACTIONS(5622), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 2, + ACTIONS(4831), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1327), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(811), 14, + ACTIONS(4829), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -246742,59 +251681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147524] = 14, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5495), 1, - sym_identifier, - ACTIONS(5565), 1, - anon_sym_complex, - STATE(3196), 1, - aux_sym_class_definition_repeat2, - STATE(3493), 1, - sym_type_index, + [145086] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(859), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5563), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3317), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3578), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5561), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SLASH, + ACTIONS(3467), 4, anon_sym_COMMA, - [147575] = 7, - ACTIONS(5505), 1, - anon_sym_and, - ACTIONS(5507), 1, + anon_sym_COLON, + anon_sym_not, anon_sym_or, - ACTIONS(5509), 1, - anon_sym_as, - ACTIONS(5511), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4599), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4597), 14, + ACTIONS(857), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -246809,223 +251708,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147612] = 15, - ACTIONS(3797), 1, + [145117] = 15, + ACTIONS(3901), 1, anon_sym_DOT, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(4884), 1, + ACTIONS(5008), 1, anon_sym_COLON, - ACTIONS(5567), 1, + ACTIONS(5599), 1, sym_identifier, - ACTIONS(5569), 1, + ACTIONS(5601), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(5610), 1, anon_sym_LBRACK, - ACTIONS(5577), 1, + ACTIONS(5614), 1, anon_sym_complex, - STATE(3247), 1, + STATE(3289), 1, aux_sym_class_definition_repeat2, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3418), 2, + STATE(3472), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3622), 2, + STATE(3678), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5497), 3, + ACTIONS(5605), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [147665] = 7, - ACTIONS(1388), 1, + [145170] = 7, + ACTIONS(381), 1, anon_sym_long, - STATE(3435), 1, + STATE(3465), 1, sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5583), 2, + ACTIONS(5684), 2, anon_sym_int, anon_sym_double, - ACTIONS(5585), 2, + ACTIONS(5686), 2, anon_sym_char, anon_sym_short, - ACTIONS(5579), 5, + ACTIONS(5680), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5581), 9, + ACTIONS(5682), 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, - [147702] = 7, - ACTIONS(371), 1, - anon_sym_long, - STATE(3421), 1, - sym__longness, + [145207] = 14, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5665), 1, + sym_identifier, + ACTIONS(5667), 1, + anon_sym_LPAREN, + ACTIONS(5688), 1, + anon_sym_complex, + STATE(3364), 1, + aux_sym_class_definition_repeat2, + STATE(3536), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5587), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5589), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5579), 5, + ACTIONS(4429), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5581), 9, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4431), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [147739] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(813), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3391), 4, + STATE(3347), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3636), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5672), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(811), 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, - [147770] = 15, - ACTIONS(4323), 1, + anon_sym_EQ, + [145258] = 14, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5513), 1, - sym_identifier, - ACTIONS(5515), 1, + ACTIONS(5636), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5665), 1, + sym_identifier, + ACTIONS(5690), 1, anon_sym_complex, - STATE(3323), 1, + STATE(3364), 1, aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5518), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5591), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3296), 2, + STATE(3345), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3626), 2, + STATE(3636), 2, sym_operator_name, sym_c_function_pointer_name, - [147823] = 15, - ACTIONS(3797), 1, + ACTIONS(5672), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [145309] = 14, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4030), 1, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5567), 1, + ACTIONS(5634), 1, sym_identifier, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5577), 1, + ACTIONS(5692), 1, anon_sym_complex, - ACTIONS(5595), 1, - anon_sym_COLON, - STATE(3247), 1, + STATE(3364), 1, aux_sym_class_definition_repeat2, - STATE(3494), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3418), 2, + ACTIONS(5638), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3369), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3622), 2, + STATE(3686), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5497), 3, - sym__newline, + ACTIONS(5676), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [147876] = 4, + [145360] = 5, + ACTIONS(5620), 1, + anon_sym_and, + ACTIONS(5622), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 2, + ACTIONS(4791), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5493), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_not, - anon_sym_or, - ACTIONS(3795), 14, + ACTIONS(4789), 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, @@ -247037,62 +251915,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147907] = 14, - ACTIONS(4323), 1, + [145393] = 15, + ACTIONS(3901), 1, anon_sym_DOT, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5513), 1, + ACTIONS(5599), 1, sym_identifier, - ACTIONS(5524), 1, + ACTIONS(5601), 1, + anon_sym_LPAREN, + ACTIONS(5610), 1, + anon_sym_LBRACK, + ACTIONS(5614), 1, + anon_sym_complex, + ACTIONS(5694), 1, + anon_sym_COLON, + STATE(3289), 1, + aux_sym_class_definition_repeat2, + STATE(3525), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3908), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3924), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3472), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3678), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5605), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [145446] = 14, + ACTIONS(3903), 1, anon_sym_LPAREN, - ACTIONS(5597), 1, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5651), 1, + sym_identifier, + ACTIONS(5696), 1, anon_sym_complex, - STATE(3323), 1, + STATE(3247), 1, aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3312), 2, + STATE(3401), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3626), 2, + STATE(3667), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5518), 4, + ACTIONS(5605), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [147958] = 7, - ACTIONS(5505), 1, + [145497] = 6, + ACTIONS(5620), 1, anon_sym_and, - ACTIONS(5507), 1, + ACTIONS(5622), 1, anon_sym_or, - ACTIONS(5509), 1, + ACTIONS(5698), 1, anon_sym_as, - ACTIONS(5511), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4631), 2, + ACTIONS(4746), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4627), 14, + ACTIONS(4741), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_if, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, @@ -247104,204 +252019,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [147995] = 14, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(4323), 1, + [145532] = 14, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5495), 1, + ACTIONS(5651), 1, sym_identifier, - ACTIONS(5599), 1, + ACTIONS(5655), 1, + anon_sym_LPAREN, + ACTIONS(5701), 1, anon_sym_complex, - STATE(3197), 1, + STATE(3236), 1, aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3299), 2, + STATE(3403), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3578), 2, + STATE(3667), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5497), 4, + ACTIONS(5657), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [148046] = 15, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(4030), 1, + [145583] = 7, + ACTIONS(1422), 1, + anon_sym_long, + STATE(3474), 1, + sym__longness, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5703), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5705), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5680), 5, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, anon_sym_operator, - ACTIONS(4901), 1, + anon_sym___stdcall, + ACTIONS(5682), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(5567), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [145620] = 14, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5624), 1, sym_identifier, - ACTIONS(5569), 1, + ACTIONS(5642), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5577), 1, + ACTIONS(5707), 1, anon_sym_complex, - STATE(3247), 1, + STATE(3255), 1, aux_sym_class_definition_repeat2, - STATE(3494), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3418), 2, + STATE(3394), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3622), 2, + STATE(3696), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5497), 3, - sym__newline, + ACTIONS(5647), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [148099] = 15, - ACTIONS(3797), 1, + [145671] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3910), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5597), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_not, + anon_sym_or, + ACTIONS(3899), 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, + [145702] = 14, + ACTIONS(3901), 1, anon_sym_DOT, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5567), 1, + ACTIONS(5709), 1, sym_identifier, - ACTIONS(5569), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - ACTIONS(5573), 1, + ACTIONS(5714), 1, anon_sym_LBRACK, - ACTIONS(5577), 1, + ACTIONS(5717), 1, anon_sym_complex, - ACTIONS(5601), 1, - anon_sym_COLON, - STATE(3247), 1, + STATE(3282), 1, aux_sym_class_definition_repeat2, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3418), 2, + STATE(3468), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3622), 2, + STATE(3633), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5497), 3, + ACTIONS(5647), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [148152] = 14, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5495), 1, + [145752] = 14, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(5719), 1, sym_identifier, - ACTIONS(5561), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(5603), 1, + ACTIONS(5723), 1, + sym__dedent, + STATE(3253), 1, + sym__signedness, + STATE(3277), 1, + aux_sym_fused_repeat1, + STATE(3466), 1, + sym__longness, + STATE(5419), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(377), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(379), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(383), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3676), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(375), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - STATE(3196), 1, + [145802] = 4, + ACTIONS(5727), 1, + anon_sym_COMMA, + STATE(3267), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5725), 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, + [145832] = 5, + ACTIONS(5732), 1, + anon_sym_DOT, + STATE(3268), 1, aux_sym_class_definition_repeat2, - STATE(3493), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(5730), 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(4327), 2, + ACTIONS(5735), 9, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_AMP, - STATE(3301), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3578), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5563), 4, + anon_sym_GT, + anon_sym_QMARK, + [145864] = 14, + ACTIONS(1422), 1, + anon_sym_long, + ACTIONS(5086), 1, + anon_sym_LPAREN, + ACTIONS(5737), 1, + sym_identifier, + ACTIONS(5739), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [148203] = 14, - ACTIONS(3797), 1, + ACTIONS(5741), 1, + anon_sym_STAR, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4637), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1424), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3596), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [145914] = 14, + ACTIONS(3901), 1, anon_sym_DOT, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5605), 1, + ACTIONS(5599), 1, sym_identifier, - ACTIONS(5607), 1, + ACTIONS(5614), 1, + anon_sym_complex, + ACTIONS(5743), 1, anon_sym_LPAREN, - ACTIONS(5610), 1, + ACTIONS(5746), 1, anon_sym_LBRACK, - ACTIONS(5613), 1, - anon_sym_complex, - STATE(3384), 1, + STATE(3289), 1, aux_sym_class_definition_repeat2, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3412), 2, + STATE(3478), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3594), 2, + STATE(3678), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5518), 3, + ACTIONS(5657), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [148253] = 4, + [145964] = 8, + ACTIONS(4417), 1, + anon_sym_not, + ACTIONS(4886), 1, + anon_sym_is, + STATE(3272), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4888), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2082), 2, + sym__not_in, + sym__is_not, + ACTIONS(4437), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4870), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [146002] = 8, + ACTIONS(4452), 1, + anon_sym_not, + ACTIONS(4954), 1, + anon_sym_is, + STATE(3272), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4957), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2082), 2, + sym__not_in, + sym__is_not, + ACTIONS(4445), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4951), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [146040] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3993), 3, + ACTIONS(3920), 3, anon_sym_from, anon_sym_COMMA, anon_sym_in, - ACTIONS(3984), 14, + ACTIONS(4101), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -247316,54 +252433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [148283] = 14, - ACTIONS(5615), 1, - sym_identifier, - ACTIONS(5618), 1, - anon_sym_LPAREN, - ACTIONS(5630), 1, - anon_sym_long, - ACTIONS(5636), 1, - sym__dedent, - STATE(3210), 1, - sym__signedness, - STATE(3223), 1, - aux_sym_fused_repeat1, - STATE(3416), 1, - sym__longness, - STATE(5258), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5624), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(5627), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5633), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3587), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(5621), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [148333] = 4, + [146070] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 2, + ACTIONS(3910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4004), 3, + ACTIONS(3920), 3, anon_sym_from, anon_sym_COMMA, anon_sym_in, - ACTIONS(3995), 14, + ACTIONS(3899), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -247378,18 +252459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [148363] = 4, + [146100] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3974), 2, + ACTIONS(4056), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3816), 3, + ACTIONS(4058), 3, anon_sym_from, anon_sym_COMMA, anon_sym_in, - ACTIONS(3969), 14, + ACTIONS(4051), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -247404,55 +252485,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [148393] = 15, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5638), 1, - sym_identifier, - ACTIONS(5640), 1, - anon_sym_LPAREN, - STATE(3202), 1, - sym_int_type, - STATE(3209), 1, - sym__signedness, - STATE(3417), 1, - sym__longness, - STATE(3513), 1, - sym_function_pointer_type, - STATE(3584), 1, - sym_operator_name, - STATE(5697), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1384), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1386), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5642), 2, - anon_sym_const, - anon_sym_volatile, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [148445] = 4, + [146130] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 2, + ACTIONS(4083), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3816), 3, + ACTIONS(4085), 3, anon_sym_from, anon_sym_COMMA, anon_sym_in, - ACTIONS(3795), 14, + ACTIONS(4078), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -247467,421 +252511,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [148475] = 14, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(5567), 1, - sym_identifier, - ACTIONS(5577), 1, - anon_sym_complex, - ACTIONS(5644), 1, - anon_sym_LPAREN, - ACTIONS(5647), 1, - anon_sym_LBRACK, - STATE(3247), 1, - aux_sym_class_definition_repeat2, - STATE(3494), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3804), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3820), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3411), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3622), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5563), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [148525] = 4, - ACTIONS(5650), 1, - anon_sym_COMMA, - STATE(3240), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2821), 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, - [148555] = 14, - ACTIONS(371), 1, + [146160] = 14, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(5652), 1, + ACTIONS(5719), 1, sym_identifier, - ACTIONS(5654), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(5749), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3223), 1, + STATE(3281), 1, aux_sym_fused_repeat1, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(5258), 1, + STATE(5419), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(373), 2, + ACTIONS(383), 2, anon_sym_const, anon_sym_volatile, - STATE(3587), 2, + STATE(3676), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148605] = 8, - ACTIONS(4355), 1, - anon_sym_not, - ACTIONS(4854), 1, - anon_sym_is, - STATE(3231), 1, - aux_sym_comparison_operator_repeat1, + [146210] = 15, + ACTIONS(1422), 1, + anon_sym_long, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5751), 1, + sym_identifier, + ACTIONS(5753), 1, + anon_sym_LPAREN, + STATE(3241), 1, + sym_int_type, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(3581), 1, + sym_function_pointer_type, + STATE(3710), 1, + sym_operator_name, + STATE(5737), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4857), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2039), 2, - sym__not_in, - sym__is_not, - ACTIONS(4348), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4851), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [148643] = 14, - ACTIONS(371), 1, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5755), 2, + anon_sym_const, + anon_sym_volatile, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [146262] = 14, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(5652), 1, + ACTIONS(5719), 1, sym_identifier, - ACTIONS(5654), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(5658), 1, + ACTIONS(5757), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3223), 1, + STATE(3280), 1, aux_sym_fused_repeat1, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(5258), 1, + STATE(5419), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(373), 2, + ACTIONS(383), 2, anon_sym_const, anon_sym_volatile, - STATE(3587), 2, + STATE(3676), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148693] = 14, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(5567), 1, - sym_identifier, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5577), 1, - anon_sym_complex, - STATE(3247), 1, - aux_sym_class_definition_repeat2, - STATE(3494), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3804), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3820), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3418), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3622), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5497), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [148743] = 14, - ACTIONS(371), 1, + [146312] = 14, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(5652), 1, + ACTIONS(5719), 1, sym_identifier, - ACTIONS(5654), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(5660), 1, + ACTIONS(5759), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3232), 1, + STATE(3281), 1, aux_sym_fused_repeat1, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(5258), 1, + STATE(5419), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(373), 2, + ACTIONS(383), 2, anon_sym_const, anon_sym_volatile, - STATE(3587), 2, + STATE(3676), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148793] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(813), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(847), 3, - anon_sym_from, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(811), 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, - [148823] = 14, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(5652), 1, + [146362] = 14, + ACTIONS(5761), 1, sym_identifier, - ACTIONS(5654), 1, + ACTIONS(5764), 1, anon_sym_LPAREN, - ACTIONS(5662), 1, + ACTIONS(5776), 1, + anon_sym_long, + ACTIONS(5782), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3230), 1, + STATE(3281), 1, aux_sym_fused_repeat1, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(5258), 1, + STATE(5419), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(5770), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(5773), 2, anon_sym_char, anon_sym_short, - ACTIONS(373), 2, + ACTIONS(5779), 2, anon_sym_const, anon_sym_volatile, - STATE(3587), 2, + STATE(3676), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(365), 3, + ACTIONS(5767), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [148873] = 14, - ACTIONS(3797), 1, + [146412] = 14, + ACTIONS(3901), 1, anon_sym_DOT, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5664), 1, + ACTIONS(5784), 1, sym_identifier, - ACTIONS(5666), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5670), 1, + ACTIONS(5789), 1, anon_sym_LBRACK, - ACTIONS(5674), 1, - anon_sym_complex, - STATE(3221), 1, - aux_sym_class_definition_repeat2, - STATE(3494), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3804), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3820), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3428), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3625), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5539), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [148923] = 14, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(5664), 1, - sym_identifier, - ACTIONS(5674), 1, + ACTIONS(5792), 1, anon_sym_complex, - ACTIONS(5676), 1, - anon_sym_LPAREN, - ACTIONS(5679), 1, - anon_sym_LBRACK, - STATE(3221), 1, + STATE(3434), 1, aux_sym_class_definition_repeat2, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3427), 2, + STATE(3467), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3625), 2, + STATE(3682), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5555), 3, + ACTIONS(5672), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [148973] = 14, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4984), 1, - anon_sym_LPAREN, - ACTIONS(5682), 1, - sym_identifier, - ACTIONS(5684), 1, - anon_sym_RPAREN, - ACTIONS(5686), 1, - anon_sym_STAR, - STATE(3209), 1, - sym__signedness, - STATE(3417), 1, - sym__longness, - STATE(4570), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1384), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1386), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1390), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3530), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [149023] = 4, - ACTIONS(5690), 1, + [146462] = 4, + ACTIONS(5794), 1, anon_sym_COMMA, - STATE(3240), 1, + STATE(3267), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5688), 17, + ACTIONS(2799), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -247899,493 +252754,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149053] = 14, - ACTIONS(1388), 1, + [146492] = 15, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, - anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5796), 1, sym_identifier, - ACTIONS(5686), 1, - anon_sym_STAR, - ACTIONS(5693), 1, - anon_sym_RPAREN, - STATE(3209), 1, + ACTIONS(5798), 1, + anon_sym_LPAREN, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3263), 1, + sym_int_type, + STATE(3482), 1, sym__longness, - STATE(4676), 1, + STATE(3534), 1, + sym_function_pointer_type, + STATE(3710), 1, + sym_operator_name, + STATE(5599), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149103] = 14, - ACTIONS(371), 1, + [146544] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(859), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(893), 3, + anon_sym_from, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(857), 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, + [146574] = 14, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(5652), 1, - sym_identifier, - ACTIONS(5654), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5695), 1, - sym__dedent, - STATE(3210), 1, + ACTIONS(5737), 1, + sym_identifier, + ACTIONS(5741), 1, + anon_sym_STAR, + ACTIONS(5800), 1, + anon_sym_RPAREN, + STATE(3262), 1, sym__signedness, - STATE(3245), 1, - aux_sym_fused_repeat1, - STATE(3416), 1, + STATE(3482), 1, sym__longness, - STATE(5258), 1, + STATE(4686), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(373), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3587), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(365), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149153] = 15, - ACTIONS(1388), 1, + [146624] = 14, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5697), 1, + ACTIONS(5719), 1, sym_identifier, - ACTIONS(5699), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - STATE(3203), 1, - sym_int_type, - STATE(3209), 1, + ACTIONS(5802), 1, + sym__dedent, + STATE(3253), 1, sym__signedness, - STATE(3417), 1, + STATE(3288), 1, + aux_sym_fused_repeat1, + STATE(3466), 1, sym__longness, - STATE(3476), 1, - sym_function_pointer_type, - STATE(3584), 1, - sym_operator_name, - STATE(5715), 1, + STATE(5419), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(383), 2, anon_sym_const, anon_sym_volatile, - ACTIONS(1380), 3, + STATE(3676), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149205] = 5, - ACTIONS(5703), 1, - anon_sym_DOT, - STATE(3244), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5701), 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(5706), 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, - [149237] = 14, - ACTIONS(371), 1, + [146674] = 14, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(5652), 1, + ACTIONS(5719), 1, sym_identifier, - ACTIONS(5654), 1, + ACTIONS(5721), 1, anon_sym_LPAREN, - ACTIONS(5708), 1, + ACTIONS(5804), 1, sym__dedent, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3223), 1, + STATE(3281), 1, aux_sym_fused_repeat1, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(5258), 1, + STATE(5419), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(373), 2, + ACTIONS(383), 2, anon_sym_const, anon_sym_volatile, - STATE(3587), 2, + STATE(3676), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [149287] = 8, - ACTIONS(4313), 1, - anon_sym_not, - ACTIONS(4773), 1, - anon_sym_is, - STATE(3231), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4775), 2, - anon_sym_LT, - anon_sym_GT, - STATE(2039), 2, - sym__not_in, - sym__is_not, - ACTIONS(4340), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4757), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [149325] = 14, - ACTIONS(3797), 1, + [146724] = 14, + ACTIONS(3901), 1, anon_sym_DOT, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5710), 1, + ACTIONS(5806), 1, sym_identifier, - ACTIONS(5712), 1, - anon_sym_LPAREN, - ACTIONS(5715), 1, - anon_sym_LBRACK, - ACTIONS(5718), 1, - anon_sym_complex, - STATE(3384), 1, - aux_sym_class_definition_repeat2, - STATE(3494), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3804), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3820), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3432), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3576), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5526), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [149375] = 13, - ACTIONS(4378), 1, - anon_sym_DOT, - ACTIONS(4380), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, - anon_sym_LBRACK, - ACTIONS(5724), 1, - anon_sym_STAR_STAR, - ACTIONS(5730), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5720), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5722), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2312), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5726), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [149422] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3816), 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, - [149447] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5736), 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, - [149472] = 10, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(5738), 1, - anon_sym_async, - ACTIONS(5740), 1, - anon_sym_def, - ACTIONS(5742), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5746), 2, - anon_sym_cdef, - anon_sym_cpdef, - STATE(3557), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - STATE(4035), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - STATE(1880), 3, - sym_function_definition, - sym_class_definition, - sym_cdef_statement, - ACTIONS(5744), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [149513] = 13, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4984), 1, - anon_sym_LPAREN, - ACTIONS(5682), 1, - sym_identifier, - ACTIONS(5693), 1, - anon_sym_RPAREN, - STATE(3209), 1, - sym__signedness, - STATE(3417), 1, - sym__longness, - STATE(4676), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1384), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1386), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1390), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3530), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(5808), 1, + anon_sym_LPAREN, + ACTIONS(5811), 1, + anon_sym_LBRACK, + ACTIONS(5814), 1, anon_sym_complex, - [149560] = 2, + STATE(3434), 1, + aux_sym_class_definition_repeat2, + STATE(3525), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5748), 18, + ACTIONS(3908), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3924), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3476), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3631), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5638), 3, 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, - [149585] = 2, + [146774] = 14, + ACTIONS(3901), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(5599), 1, + sym_identifier, + ACTIONS(5601), 1, + anon_sym_LPAREN, + ACTIONS(5610), 1, + anon_sym_LBRACK, + ACTIONS(5614), 1, + anon_sym_complex, + STATE(3289), 1, + aux_sym_class_definition_repeat2, + STATE(3525), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5736), 18, + ACTIONS(3908), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3924), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3472), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3678), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5605), 3, 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, - [149610] = 2, + [146824] = 14, + ACTIONS(3901), 1, + anon_sym_DOT, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(5709), 1, + sym_identifier, + ACTIONS(5717), 1, + anon_sym_complex, + ACTIONS(5816), 1, + anon_sym_LPAREN, + ACTIONS(5820), 1, + anon_sym_LBRACK, + STATE(3282), 1, + aux_sym_class_definition_repeat2, + STATE(3525), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5688), 18, + ACTIONS(3908), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3924), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3464), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3633), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5629), 3, 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, - [149635] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5701), 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(5706), 10, + [146874] = 12, + ACTIONS(4514), 1, anon_sym_DOT, + ACTIONS(4516), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, + ACTIONS(4526), 1, anon_sym_LBRACK, + ACTIONS(5828), 1, + anon_sym_STAR_STAR, + ACTIONS(5834), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4468), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [149662] = 4, + ACTIONS(5824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5826), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5832), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2446), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5830), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [146919] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3816), 2, + ACTIONS(3920), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3974), 2, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3969), 14, + ACTIONS(4101), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -248400,51 +253091,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [149691] = 13, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4984), 1, - anon_sym_LPAREN, - ACTIONS(5682), 1, - sym_identifier, - ACTIONS(5684), 1, - anon_sym_RPAREN, - STATE(3209), 1, - sym__signedness, - STATE(3417), 1, - sym__longness, - STATE(4570), 1, - sym_c_type, + [146948] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1386), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1390), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3530), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [149738] = 4, + ACTIONS(5725), 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, + [146973] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 2, + ACTIONS(3910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3816), 2, + ACTIONS(3920), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3795), 14, + ACTIONS(3899), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -248459,17 +253139,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [149767] = 4, + [147002] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5836), 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, + [147027] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 2, + ACTIONS(4056), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3993), 2, + ACTIONS(4058), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3984), 14, + ACTIONS(4051), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -248484,47 +253187,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [149796] = 9, - ACTIONS(4378), 1, + [147056] = 8, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(5828), 1, anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(4512), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(4510), 10, + anon_sym_GT_GT, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(4368), 7, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [147093] = 8, + ACTIONS(4514), 1, + anon_sym_DOT, + ACTIONS(4516), 1, + anon_sym_LPAREN, + ACTIONS(4526), 1, + anon_sym_LBRACK, + ACTIONS(5828), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4504), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2446), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4502), 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, - [149835] = 4, + [147130] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 2, + ACTIONS(3920), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4106), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(847), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(811), 14, + ACTIONS(4101), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -248539,17 +253270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [149864] = 4, + [147159] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 2, + ACTIONS(3910), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4004), 2, - anon_sym_RPAREN, + ACTIONS(3920), 2, anon_sym_COMMA, - ACTIONS(3995), 14, + anon_sym_RBRACK, + ACTIONS(3899), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -248564,204 +253295,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [149893] = 4, - ACTIONS(5483), 1, - anon_sym_STAR, + [147188] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 6, + ACTIONS(4056), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4058), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4051), 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_complex, - anon_sym___stdcall, - ACTIONS(4406), 11, + anon_sym_CARET, + anon_sym_LT_LT, + [147217] = 8, + ACTIONS(4514), 1, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_by, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [149922] = 13, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, - sym_identifier, - ACTIONS(5750), 1, - anon_sym_RPAREN, - STATE(3209), 1, - sym__signedness, - STATE(3417), 1, - sym__longness, - STATE(4581), 1, - sym_c_type, + ACTIONS(4526), 1, + anon_sym_LBRACK, + ACTIONS(5828), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1386), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1390), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3530), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [149969] = 13, - ACTIONS(4368), 1, + ACTIONS(4470), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2446), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(4468), 10, + anon_sym_GT_GT, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(4378), 1, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [147254] = 10, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(5828), 1, anon_sym_STAR_STAR, - ACTIONS(5732), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5832), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(5830), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [150016] = 12, - ACTIONS(4378), 1, + ACTIONS(4468), 5, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [147295] = 8, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(5828), 1, anon_sym_STAR_STAR, - ACTIONS(5734), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4368), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5720), 2, + ACTIONS(4470), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(4468), 10, + anon_sym_GT_GT, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [150061] = 13, - ACTIONS(4380), 1, - anon_sym_LPAREN, - ACTIONS(5724), 1, - anon_sym_STAR_STAR, - ACTIONS(5730), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, anon_sym_AMP, - ACTIONS(5734), 1, anon_sym_CARET, - ACTIONS(5752), 1, + anon_sym_LT_LT, + [147332] = 9, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(5754), 1, + ACTIONS(4516), 1, + anon_sym_LPAREN, + ACTIONS(4526), 1, anon_sym_LBRACK, + ACTIONS(5828), 1, + anon_sym_STAR_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(5830), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [150108] = 8, - ACTIONS(4378), 1, + ACTIONS(4468), 7, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [147371] = 13, + ACTIONS(4468), 1, + anon_sym_PIPE, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(5828), 1, anon_sym_STAR_STAR, + ACTIONS(5834), 1, + anon_sym_CARET, + ACTIONS(5838), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4370), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2312), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4368), 10, + ACTIONS(5826), 2, anon_sym_GT_GT, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(5832), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(2446), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5830), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [150145] = 2, + [147418] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5748), 18, - anon_sym_from, + ACTIONS(5840), 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, @@ -248776,106 +253496,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150170] = 8, - ACTIONS(4378), 1, + [147443] = 11, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4380), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, - anon_sym_LBRACK, - ACTIONS(5724), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4370), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2312), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4368), 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, - [150207] = 13, - ACTIONS(4380), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4506), 1, - anon_sym_DOT, - ACTIONS(4508), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(5828), 1, anon_sym_STAR_STAR, - ACTIONS(5730), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, + ACTIONS(5826), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5832), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(4468), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(5830), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [150254] = 7, - ACTIONS(4114), 1, + [147486] = 4, + ACTIONS(5591), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4580), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4570), 11, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [147515] = 13, + ACTIONS(1422), 1, anon_sym_long, - STATE(3490), 1, + ACTIONS(5086), 1, + anon_sym_LPAREN, + ACTIONS(5737), 1, + sym_identifier, + ACTIONS(5842), 1, + anon_sym_RPAREN, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, sym__longness, + STATE(4709), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5756), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5758), 2, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(5579), 4, - anon_sym_STAR, - sym_identifier, + ACTIONS(1424), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3596), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5581), 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, - [150289] = 2, + [147562] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3816), 18, - anon_sym_from, + ACTIONS(5725), 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, @@ -248890,17 +253610,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150314] = 4, + [147587] = 13, + ACTIONS(4516), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_DOT, + ACTIONS(4644), 1, + anon_sym_LBRACK, + ACTIONS(5828), 1, + anon_sym_STAR_STAR, + ACTIONS(5834), 1, + anon_sym_CARET, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5844), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5826), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5832), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2446), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5830), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [147634] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(813), 2, + ACTIONS(4083), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(847), 2, + ACTIONS(4085), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(811), 14, + ACTIONS(4078), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -248915,76 +253669,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [150343] = 13, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4984), 1, - anon_sym_LPAREN, - ACTIONS(5682), 1, - sym_identifier, - ACTIONS(5760), 1, - anon_sym_RPAREN, - STATE(3209), 1, - sym__signedness, - STATE(3417), 1, - sym__longness, - STATE(4562), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1384), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1386), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1390), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3530), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [150390] = 10, + [147663] = 10, ACTIONS(63), 1, anon_sym_AT, - ACTIONS(5762), 1, + ACTIONS(5846), 1, anon_sym_async, - ACTIONS(5764), 1, + ACTIONS(5848), 1, anon_sym_def, - ACTIONS(5766), 1, + ACTIONS(5850), 1, anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5768), 2, + ACTIONS(5854), 2, anon_sym_cdef, anon_sym_cpdef, - STATE(3557), 2, + STATE(3607), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - STATE(4014), 2, + STATE(3996), 2, sym_storageclass, aux_sym_class_definition_repeat1, - STATE(1580), 3, + STATE(1459), 3, sym_function_definition, sym_class_definition, sym_cdef_statement, - ACTIONS(5744), 5, + ACTIONS(5852), 5, anon_sym_api, anon_sym_public, anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [150431] = 2, + [147704] = 13, + ACTIONS(1422), 1, + anon_sym_long, + ACTIONS(5086), 1, + anon_sym_LPAREN, + ACTIONS(5737), 1, + sym_identifier, + ACTIONS(5856), 1, + anon_sym_RPAREN, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4699), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1424), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3596), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [147751] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5688), 18, + ACTIONS(5840), 18, anon_sym_from, anon_sym_COMMA, anon_sym_COLON, @@ -249003,67 +253757,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150456] = 4, + [147776] = 13, + ACTIONS(1422), 1, + anon_sym_long, + ACTIONS(5086), 1, + anon_sym_LPAREN, + ACTIONS(5737), 1, + sym_identifier, + ACTIONS(5739), 1, + anon_sym_RPAREN, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4637), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3816), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3974), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3969), 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, - [150485] = 4, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1424), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3596), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [147823] = 7, + ACTIONS(4202), 1, + anon_sym_long, + STATE(3539), 1, + sym__longness, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3806), 2, + ACTIONS(5858), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5860), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5680), 4, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3816), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3795), 14, - anon_sym_DOT, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5682), 8, 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, - [150514] = 4, + anon_sym_GT, + anon_sym_QMARK, + [147858] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3989), 2, + ACTIONS(859), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3993), 2, + ACTIONS(893), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3984), 14, + ACTIONS(857), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -249078,116 +253844,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [150543] = 4, + [147887] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4000), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4004), 2, + ACTIONS(3920), 18, + anon_sym_from, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3995), 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, - [150572] = 10, - ACTIONS(4378), 1, + 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, + [147912] = 13, + ACTIONS(4514), 1, anon_sym_DOT, - ACTIONS(4380), 1, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4526), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(5828), 1, anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5720), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5728), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2312), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5726), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(4368), 5, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5834), 1, anon_sym_CARET, - anon_sym_LT_LT, - [150613] = 13, - ACTIONS(4291), 1, - anon_sym_DOT, - ACTIONS(4305), 1, - anon_sym_LBRACK, - ACTIONS(4380), 1, - anon_sym_LPAREN, - ACTIONS(5724), 1, - anon_sym_STAR_STAR, - ACTIONS(5730), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_CARET, + ACTIONS(5844), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, + ACTIONS(5826), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5832), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(5830), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [150660] = 8, - ACTIONS(4378), 1, - anon_sym_DOT, - ACTIONS(4380), 1, + [147959] = 10, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(5862), 1, + anon_sym_async, + ACTIONS(5864), 1, + anon_sym_def, + ACTIONS(5866), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5868), 2, + anon_sym_cdef, + anon_sym_cpdef, + STATE(3607), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + STATE(4053), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + STATE(1570), 3, + sym_function_definition, + sym_class_definition, + sym_cdef_statement, + ACTIONS(5852), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [148000] = 13, + ACTIONS(1422), 1, + anon_sym_long, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, - anon_sym_LBRACK, - ACTIONS(5724), 1, - anon_sym_STAR_STAR, + ACTIONS(5737), 1, + sym_identifier, + ACTIONS(5800), 1, + anon_sym_RPAREN, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(4686), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4420), 2, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1424), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3596), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [148047] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(859), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2312), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4418), 10, + ACTIONS(893), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(857), 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, @@ -249197,1219 +253991,1098 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [150697] = 13, - ACTIONS(4380), 1, - anon_sym_LPAREN, - ACTIONS(4510), 1, + [148076] = 13, + ACTIONS(4395), 1, anon_sym_DOT, - ACTIONS(4522), 1, + ACTIONS(4409), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(4516), 1, + anon_sym_LPAREN, + ACTIONS(5828), 1, anon_sym_STAR_STAR, - ACTIONS(5730), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, - anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5834), 1, anon_sym_CARET, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5844), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, + ACTIONS(5826), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5832), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(5830), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [150744] = 13, - ACTIONS(4380), 1, - anon_sym_LPAREN, - ACTIONS(5724), 1, - anon_sym_STAR_STAR, - ACTIONS(5730), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_CARET, - ACTIONS(5770), 1, - anon_sym_DOT, - ACTIONS(5772), 1, - anon_sym_LBRACK, + [148123] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5730), 8, + anon_sym_import, + anon_sym_cimport, + anon_sym_as, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5722), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5728), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(2312), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(5726), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [150791] = 13, - ACTIONS(4380), 1, - anon_sym_LPAREN, - ACTIONS(4450), 1, + anon_sym_if, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5735), 10, anon_sym_DOT, - ACTIONS(4462), 1, - anon_sym_LBRACK, - ACTIONS(5724), 1, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, - ACTIONS(5730), 1, + anon_sym_LBRACK, anon_sym_PIPE, - ACTIONS(5732), 1, anon_sym_AMP, - ACTIONS(5734), 1, + anon_sym_GT, + anon_sym_QMARK, + [148150] = 13, + ACTIONS(4516), 1, + anon_sym_LPAREN, + ACTIONS(4614), 1, + anon_sym_DOT, + ACTIONS(4626), 1, + anon_sym_LBRACK, + ACTIONS(5828), 1, + anon_sym_STAR_STAR, + ACTIONS(5834), 1, anon_sym_CARET, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5844), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, + ACTIONS(5826), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5832), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(5830), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [150838] = 13, - ACTIONS(4380), 1, + [148197] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3920), 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, + [148222] = 13, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4749), 1, - anon_sym_DOT, - ACTIONS(4761), 1, - anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(5828), 1, anon_sym_STAR_STAR, - ACTIONS(5730), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, - anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5834), 1, anon_sym_CARET, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5844), 1, + anon_sym_PIPE, + ACTIONS(5870), 1, + anon_sym_DOT, + ACTIONS(5872), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, + ACTIONS(5826), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5832), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(5830), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [150885] = 8, - ACTIONS(4378), 1, - anon_sym_DOT, - ACTIONS(4380), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, - anon_sym_LBRACK, - ACTIONS(5724), 1, - anon_sym_STAR_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4374), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2312), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(4372), 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, - [150922] = 13, - ACTIONS(4380), 1, + [148269] = 13, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4675), 1, + ACTIONS(4542), 1, anon_sym_DOT, - ACTIONS(4687), 1, + ACTIONS(4554), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(5828), 1, anon_sym_STAR_STAR, - ACTIONS(5730), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, - anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5834), 1, anon_sym_CARET, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5844), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, + ACTIONS(5826), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5832), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(5830), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [150969] = 13, - ACTIONS(4380), 1, + [148316] = 13, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(4862), 1, anon_sym_DOT, - ACTIONS(4490), 1, + ACTIONS(4874), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(5828), 1, anon_sym_STAR_STAR, - ACTIONS(5730), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, - anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5834), 1, anon_sym_CARET, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5844), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, + ACTIONS(5826), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5832), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(5830), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [151016] = 13, - ACTIONS(4380), 1, + [148363] = 13, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(4422), 1, + ACTIONS(4654), 1, anon_sym_DOT, - ACTIONS(4434), 1, + ACTIONS(4666), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(5828), 1, anon_sym_STAR_STAR, - ACTIONS(5730), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, - anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5834), 1, anon_sym_CARET, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5844), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, + ACTIONS(5826), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5832), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(5830), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [151063] = 13, - ACTIONS(4380), 1, + [148410] = 13, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(5724), 1, - anon_sym_STAR_STAR, - ACTIONS(5730), 1, - anon_sym_PIPE, - ACTIONS(5732), 1, - anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_CARET, - ACTIONS(5774), 1, + ACTIONS(4582), 1, anon_sym_DOT, - ACTIONS(5776), 1, + ACTIONS(4594), 1, anon_sym_LBRACK, + ACTIONS(5828), 1, + anon_sym_STAR_STAR, + ACTIONS(5834), 1, + anon_sym_CARET, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5844), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, + ACTIONS(5826), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5832), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(5726), 3, + ACTIONS(5830), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [151110] = 11, - ACTIONS(4378), 1, + [148457] = 13, + ACTIONS(4474), 1, anon_sym_DOT, - ACTIONS(4380), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4486), 1, anon_sym_LBRACK, - ACTIONS(5724), 1, + ACTIONS(4516), 1, + anon_sym_LPAREN, + ACTIONS(5828), 1, anon_sym_STAR_STAR, + ACTIONS(5834), 1, + anon_sym_CARET, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5844), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5720), 2, + ACTIONS(5824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5722), 2, + ACTIONS(5826), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5728), 2, + ACTIONS(5832), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(2312), 2, + STATE(2446), 2, sym_argument_list, sym_generator_expression, - ACTIONS(4368), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(5726), 3, + ACTIONS(5830), 3, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [151153] = 12, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5778), 1, - sym_identifier, - ACTIONS(5780), 1, - anon_sym_LPAREN, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5783), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5785), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3574), 2, - sym_operator_name, - sym_c_function_pointer_name, - [151197] = 11, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5778), 1, - sym_identifier, - ACTIONS(5787), 1, - anon_sym_LPAREN, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3574), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5785), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151239] = 11, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5522), 1, - sym_identifier, - ACTIONS(5530), 1, - anon_sym_LPAREN, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3344), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3654), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5526), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151281] = 11, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5522), 1, - sym_identifier, - ACTIONS(5530), 1, - anon_sym_LPAREN, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3448), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3654), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5790), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151323] = 11, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5522), 1, - sym_identifier, - ACTIONS(5553), 1, - anon_sym_LPAREN, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3350), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3654), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5526), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151365] = 11, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5522), 1, - sym_identifier, - ACTIONS(5553), 1, - anon_sym_LPAREN, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3448), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3654), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5526), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151407] = 12, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4984), 1, - anon_sym_LPAREN, - ACTIONS(5682), 1, - sym_identifier, - STATE(3209), 1, - sym__signedness, - STATE(3417), 1, - sym__longness, - STATE(4561), 1, - sym_c_type, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1384), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1386), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1390), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3530), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [151451] = 11, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5524), 1, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [148504] = 13, + ACTIONS(4516), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, - sym_identifier, - STATE(3493), 1, - sym_type_index, + ACTIONS(5828), 1, + anon_sym_STAR_STAR, + ACTIONS(5834), 1, + anon_sym_CARET, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5844), 1, + anon_sym_PIPE, + ACTIONS(5874), 1, + anon_sym_DOT, + ACTIONS(5876), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(5824), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, + anon_sym_SLASH, + ACTIONS(5826), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5832), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2446), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5830), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [148551] = 13, + ACTIONS(4516), 1, + anon_sym_LPAREN, + ACTIONS(5828), 1, anon_sym_STAR_STAR, + ACTIONS(5834), 1, + anon_sym_CARET, + ACTIONS(5838), 1, anon_sym_AMP, - STATE(3447), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3607), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5795), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [151493] = 11, - ACTIONS(4329), 1, + ACTIONS(5844), 1, + anon_sym_PIPE, + ACTIONS(5878), 1, + anon_sym_DOT, + ACTIONS(5880), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5524), 1, - anon_sym_LPAREN, - ACTIONS(5793), 1, - sym_identifier, - STATE(3493), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(5824), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3311), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3607), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5795), 4, - anon_sym_RPAREN, + anon_sym_SLASH, + ACTIONS(5826), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5832), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(2446), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(5830), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [148598] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5836), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [151535] = 12, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4984), 1, - anon_sym_LPAREN, - ACTIONS(5682), 1, - sym_identifier, - STATE(3209), 1, - sym__signedness, - STATE(3417), 1, - sym__longness, - STATE(5395), 1, - sym_c_type, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [148623] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1386), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1390), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3530), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [151579] = 12, - ACTIONS(4114), 1, + ACTIONS(4083), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4085), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4078), 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, + [148652] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4803), 1, + STATE(5284), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151623] = 12, - ACTIONS(5459), 1, + [148696] = 12, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(5473), 1, + ACTIONS(5577), 1, anon_sym_long, - ACTIONS(5477), 1, + ACTIONS(5581), 1, sym_identifier, - STATE(3438), 1, + STATE(3460), 1, sym__signedness, - STATE(3589), 1, + STATE(3677), 1, sym__longness, - STATE(4660), 1, + STATE(4750), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5469), 2, + ACTIONS(5573), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5471), 2, + ACTIONS(5575), 2, anon_sym_char, anon_sym_short, - ACTIONS(5475), 2, + ACTIONS(5579), 2, anon_sym_const, anon_sym_volatile, - STATE(3565), 2, + STATE(3561), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5467), 3, + ACTIONS(5571), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151667] = 12, - ACTIONS(1388), 1, + [148740] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(4944), 1, + STATE(4991), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151711] = 12, - ACTIONS(5473), 1, + [148784] = 5, + ACTIONS(5886), 1, + anon_sym_COLON, + ACTIONS(5888), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5884), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5890), 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, + [148814] = 12, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(5577), 1, anon_sym_long, - ACTIONS(5799), 1, + ACTIONS(5581), 1, sym_identifier, - ACTIONS(5801), 1, - anon_sym_LPAREN, - STATE(3438), 1, + STATE(3460), 1, sym__signedness, - STATE(3589), 1, + STATE(3677), 1, sym__longness, - STATE(5534), 1, + STATE(5153), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5469), 2, + ACTIONS(5573), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5471), 2, + ACTIONS(5575), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5579), 2, anon_sym_const, anon_sym_volatile, - STATE(3570), 2, + STATE(3561), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5467), 3, + ACTIONS(5571), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [151755] = 4, - ACTIONS(5803), 1, - anon_sym_COMMA, - STATE(3343), 1, - aux_sym__patterns_repeat1, + [148858] = 11, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5636), 1, + anon_sym_LPAREN, + ACTIONS(5892), 1, + sym_identifier, + STATE(3536), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2821), 15, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3493), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3661), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5894), 4, + anon_sym_RPAREN, + 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, - [151783] = 11, - ACTIONS(4329), 1, + [148900] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5524), 1, - anon_sym_LPAREN, - ACTIONS(5805), 1, + ACTIONS(5896), 1, sym_identifier, - STATE(3493), 1, + ACTIONS(5898), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3457), 2, + STATE(3492), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3675), 2, + STATE(3658), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5807), 4, + ACTIONS(5900), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [151825] = 11, - ACTIONS(4329), 1, + [148942] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5524), 1, - anon_sym_LPAREN, - ACTIONS(5778), 1, + ACTIONS(5892), 1, sym_identifier, - STATE(3493), 1, + ACTIONS(5902), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3439), 2, + STATE(3493), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3574), 2, + STATE(3661), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5785), 4, + ACTIONS(5894), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [151867] = 11, - ACTIONS(4329), 1, + [148984] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5524), 1, - anon_sym_LPAREN, - ACTIONS(5778), 1, + ACTIONS(5892), 1, sym_identifier, - STATE(3493), 1, + ACTIONS(5902), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3322), 2, + STATE(3367), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3574), 2, + STATE(3661), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5785), 4, + ACTIONS(5894), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [151909] = 11, - ACTIONS(4329), 1, + [149026] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5522), 1, + ACTIONS(5892), 1, sym_identifier, - STATE(3493), 1, + ACTIONS(5905), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5526), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3326), 2, + STATE(3493), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3654), 2, + STATE(3661), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5530), 3, - anon_sym_LPAREN, + ACTIONS(5894), 4, anon_sym_RPAREN, anon_sym_COMMA, - [151951] = 11, - ACTIONS(4329), 1, + anon_sym_COLON, + anon_sym_EQ, + [149068] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5522), 1, + ACTIONS(5636), 1, + anon_sym_LPAREN, + ACTIONS(5892), 1, sym_identifier, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5790), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3448), 2, + STATE(3366), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3654), 2, + STATE(3661), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5530), 3, - anon_sym_LPAREN, + ACTIONS(5894), 4, anon_sym_RPAREN, anon_sym_COMMA, - [151993] = 11, - ACTIONS(4329), 1, + anon_sym_COLON, + anon_sym_EQ, + [149110] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5522), 1, + ACTIONS(5636), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, sym_identifier, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5526), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3332), 2, + STATE(3495), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3654), 2, + STATE(3632), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5553), 3, - anon_sym_LPAREN, + ACTIONS(5910), 4, anon_sym_RPAREN, anon_sym_COMMA, - [152035] = 11, - ACTIONS(4329), 1, + anon_sym_COLON, + anon_sym_EQ, + [149152] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5522), 1, + ACTIONS(5634), 1, sym_identifier, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5526), 2, + ACTIONS(5638), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3448), 2, + STATE(3369), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3654), 2, + STATE(3686), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5553), 3, + ACTIONS(5676), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [152077] = 12, - ACTIONS(1388), 1, + [149194] = 4, + ACTIONS(5916), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5912), 7, + anon_sym_STAR, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5914), 9, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5682), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [149222] = 12, + ACTIONS(381), 1, + anon_sym_long, + ACTIONS(5918), 1, sym_identifier, - STATE(3209), 1, + ACTIONS(5920), 1, + anon_sym_LPAREN, + STATE(3253), 1, sym__signedness, - STATE(3417), 1, + STATE(3466), 1, sym__longness, - STATE(5283), 1, + STATE(5650), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3690), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152121] = 11, - ACTIONS(4329), 1, + [149266] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5805), 1, + ACTIONS(5634), 1, sym_identifier, - ACTIONS(5809), 1, - anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3457), 2, + ACTIONS(5922), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3504), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3675), 2, + STATE(3686), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5807), 4, + ACTIONS(5676), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + [149308] = 11, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5634), 1, + sym_identifier, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5638), 2, anon_sym_COLON, anon_sym_EQ, - [152163] = 12, - ACTIONS(5459), 1, + STATE(3383), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3686), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5645), 3, anon_sym_LPAREN, - ACTIONS(5473), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + [149350] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(5477), 1, + ACTIONS(5086), 1, + anon_sym_LPAREN, + ACTIONS(5737), 1, sym_identifier, - STATE(3438), 1, + STATE(3262), 1, sym__signedness, - STATE(3589), 1, + STATE(3482), 1, sym__longness, - STATE(4863), 1, + STATE(5348), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5469), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5471), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(5475), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3565), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5467), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152207] = 14, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, + [149394] = 12, + ACTIONS(5577), 1, + anon_sym_long, + ACTIONS(5925), 1, sym_identifier, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(5815), 1, - anon_sym_COLON, - ACTIONS(5817), 1, - anon_sym_EQ, - ACTIONS(5819), 1, - anon_sym_complex, - STATE(3510), 1, - aux_sym_class_definition_repeat2, - STATE(3540), 1, - sym_type_index, + ACTIONS(5927), 1, + anon_sym_LPAREN, + STATE(3460), 1, + sym__signedness, + STATE(3677), 1, + sym__longness, + STATE(5582), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5813), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3813), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [152255] = 11, - ACTIONS(4329), 1, + ACTIONS(5573), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5575), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5755), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3572), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5571), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [149438] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5524), 1, - anon_sym_LPAREN, - ACTIONS(5821), 1, + ACTIONS(5634), 1, sym_identifier, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3444), 2, + ACTIONS(5638), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3504), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3596), 2, + STATE(3686), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5823), 4, + ACTIONS(5645), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [152297] = 5, - ACTIONS(5825), 1, - anon_sym_DOT, - STATE(3323), 1, - aux_sym_class_definition_repeat2, + [149480] = 12, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5535), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, + sym_identifier, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(5289), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5701), 6, - anon_sym_as, - anon_sym_STAR, - sym_identifier, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5755), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3541), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5706), 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, - [152327] = 6, - ACTIONS(5828), 1, + [149524] = 4, + ACTIONS(5929), 1, anon_sym_COMMA, - ACTIONS(5830), 1, - anon_sym_COLON, - ACTIONS(5832), 1, - anon_sym_EQ, - STATE(3229), 1, + STATE(3363), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5834), 13, + ACTIONS(2799), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -250423,19 +255096,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152359] = 6, - ACTIONS(5830), 1, + [149552] = 11, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5636), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, + sym_identifier, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3436), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3632), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5910), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(5832), 1, anon_sym_EQ, - ACTIONS(5836), 1, + [149594] = 4, + ACTIONS(5931), 1, anon_sym_COMMA, - STATE(3310), 1, + STATE(3363), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5834), 13, + ACTIONS(5725), 15, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -250449,1837 +255151,2075 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152391] = 11, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5793), 1, - sym_identifier, - STATE(3493), 1, - sym_type_index, + [149622] = 5, + ACTIONS(5934), 1, + anon_sym_DOT, + STATE(3364), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(5730), 6, + anon_sym_as, anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5795), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3447), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3607), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5838), 3, + ACTIONS(5735), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [152433] = 11, - ACTIONS(4329), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_AMP, + [149652] = 12, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5535), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, + sym_identifier, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(5015), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5755), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3541), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [149696] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5793), 1, + ACTIONS(5636), 1, + anon_sym_LPAREN, + ACTIONS(5937), 1, sym_identifier, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5795), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3336), 2, + STATE(3503), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3607), 2, + STATE(3683), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5838), 3, - anon_sym_LPAREN, + ACTIONS(5939), 4, anon_sym_RPAREN, anon_sym_COMMA, - [152475] = 12, - ACTIONS(4329), 1, + anon_sym_COLON, + anon_sym_EQ, + [149738] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5513), 1, + ACTIONS(5937), 1, sym_identifier, - ACTIONS(5515), 1, + ACTIONS(5941), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5518), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(5591), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3296), 2, + STATE(3503), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3626), 2, + STATE(3683), 2, sym_operator_name, sym_c_function_pointer_name, - [152519] = 12, - ACTIONS(4329), 1, + ACTIONS(5939), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [149780] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5513), 1, + ACTIONS(5908), 1, sym_identifier, - ACTIONS(5515), 1, + ACTIONS(5944), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5591), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5840), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3455), 2, + STATE(3495), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3626), 2, + STATE(3632), 2, sym_operator_name, sym_c_function_pointer_name, - [152563] = 12, - ACTIONS(4329), 1, + ACTIONS(5910), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [149822] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5513), 1, + ACTIONS(5908), 1, sym_identifier, - ACTIONS(5843), 1, - anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5518), 2, + ACTIONS(5910), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(5846), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3338), 2, + STATE(3495), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3626), 2, + STATE(3632), 2, sym_operator_name, sym_c_function_pointer_name, - [152607] = 12, - ACTIONS(4329), 1, + ACTIONS(5944), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [149864] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5513), 1, + ACTIONS(5908), 1, sym_identifier, - ACTIONS(5843), 1, - anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5518), 2, + ACTIONS(5910), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(5846), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3455), 2, + STATE(3415), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3626), 2, + STATE(3632), 2, sym_operator_name, sym_c_function_pointer_name, - [152651] = 11, - ACTIONS(4329), 1, + ACTIONS(5944), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [149906] = 12, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5793), 1, + ACTIONS(5665), 1, sym_identifier, - STATE(3493), 1, + ACTIONS(5667), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5795), 2, + ACTIONS(5670), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5672), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3447), 2, + STATE(3418), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3607), 2, + STATE(3636), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5846), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - [152693] = 12, - ACTIONS(4114), 1, + [149950] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(5699), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5848), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3273), 1, + STATE(3262), 1, sym__signedness, STATE(3482), 1, sym__longness, - STATE(5715), 1, + STATE(5303), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3476), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152737] = 12, - ACTIONS(5459), 1, - anon_sym_LPAREN, - ACTIONS(5473), 1, + [149994] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5477), 1, + ACTIONS(5798), 1, + anon_sym_LPAREN, + ACTIONS(5946), 1, sym_identifier, - STATE(3438), 1, + STATE(3319), 1, sym__signedness, - STATE(3589), 1, + STATE(3544), 1, sym__longness, - STATE(4554), 1, + STATE(5599), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5469), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5471), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5475), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3565), 2, + STATE(3534), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5467), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152781] = 12, - ACTIONS(4114), 1, + [150038] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3273), 1, + STATE(3262), 1, sym__signedness, STATE(3482), 1, sym__longness, - STATE(5436), 1, + STATE(5450), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [152825] = 11, - ACTIONS(4329), 1, + [150082] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5805), 1, + ACTIONS(5908), 1, sym_identifier, - STATE(3493), 1, + ACTIONS(5944), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5807), 2, - anon_sym_COLON, - anon_sym_EQ, - STATE(3457), 2, + STATE(3346), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3675), 2, + STATE(3632), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5809), 3, - anon_sym_LPAREN, + ACTIONS(5910), 4, anon_sym_RPAREN, anon_sym_COMMA, - [152867] = 12, - ACTIONS(4329), 1, + anon_sym_COLON, + anon_sym_EQ, + [150124] = 12, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5778), 1, + ACTIONS(5665), 1, sym_identifier, - ACTIONS(5780), 1, + ACTIONS(5667), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5783), 2, + ACTIONS(5670), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5785), 2, + ACTIONS(5948), 2, anon_sym_COLON, anon_sym_EQ, - STATE(3342), 2, + STATE(3500), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3574), 2, + STATE(3636), 2, sym_operator_name, sym_c_function_pointer_name, - [152911] = 12, - ACTIONS(4329), 1, + [150168] = 12, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5778), 1, + ACTIONS(5665), 1, sym_identifier, - ACTIONS(5787), 1, + ACTIONS(5951), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5785), 2, + ACTIONS(5672), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(5850), 2, + ACTIONS(5954), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3439), 2, + STATE(3424), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3574), 2, + STATE(3636), 2, sym_operator_name, sym_c_function_pointer_name, - [152955] = 4, - ACTIONS(5856), 1, + [150212] = 12, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(5577), 1, anon_sym_long, + ACTIONS(5581), 1, + sym_identifier, + STATE(3460), 1, + sym__signedness, + STATE(3677), 1, + sym__longness, + STATE(4736), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5852), 7, - anon_sym_STAR, - sym_identifier, + ACTIONS(5573), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(5575), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5579), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3561), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(5571), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5854), 9, - sym__newline, - anon_sym_DOT, + [150256] = 12, + ACTIONS(1422), 1, + anon_sym_long, + ACTIONS(5086), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [152983] = 11, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5778), 1, + ACTIONS(5737), 1, sym_identifier, - ACTIONS(5780), 1, - anon_sym_LPAREN, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3439), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3574), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5785), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [153025] = 5, - ACTIONS(5830), 1, - anon_sym_COLON, - ACTIONS(5832), 1, - anon_sym_EQ, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(5187), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5858), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5834), 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, - [153055] = 12, - ACTIONS(4329), 1, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1424), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3596), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [150300] = 12, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5821), 1, + ACTIONS(5665), 1, sym_identifier, - ACTIONS(5860), 1, + ACTIONS(5951), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(5823), 2, + ACTIONS(5672), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(5863), 2, + ACTIONS(5954), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3444), 2, + STATE(3500), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3596), 2, + STATE(3636), 2, sym_operator_name, sym_c_function_pointer_name, - [153099] = 4, - ACTIONS(5865), 1, - anon_sym_COMMA, - STATE(3343), 1, - aux_sym__patterns_repeat1, + [150344] = 12, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5535), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, + sym_identifier, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(4825), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5688), 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, - [153127] = 11, - ACTIONS(4329), 1, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5755), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3541), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [150388] = 12, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5535), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, + sym_identifier, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(5473), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5755), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3541), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [150432] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5793), 1, + ACTIONS(5908), 1, sym_identifier, - ACTIONS(5838), 1, - anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3447), 2, + ACTIONS(5910), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3495), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3607), 2, + STATE(3632), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5795), 4, + ACTIONS(5954), 3, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [153169] = 12, - ACTIONS(1388), 1, + [150474] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(5640), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5868), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5697), 1, + STATE(5296), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3513), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [153213] = 11, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5513), 1, + [150518] = 12, + ACTIONS(4202), 1, + anon_sym_long, + ACTIONS(5956), 1, sym_identifier, - ACTIONS(5515), 1, + ACTIONS(5958), 1, anon_sym_LPAREN, - STATE(3493), 1, - sym_type_index, + STATE(3319), 1, + sym__signedness, + STATE(3544), 1, + sym__longness, + STATE(5599), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3340), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3626), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5518), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [153255] = 11, - ACTIONS(4329), 1, + ACTIONS(4198), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(4200), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5755), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3763), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(4196), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [150562] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5513), 1, + ACTIONS(5665), 1, sym_identifier, - ACTIONS(5515), 1, + ACTIONS(5667), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3455), 2, + STATE(3347), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3626), 2, + STATE(3636), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5840), 4, + ACTIONS(5672), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153297] = 11, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5513), 1, - sym_identifier, - ACTIONS(5843), 1, + [150604] = 12, + ACTIONS(1422), 1, + anon_sym_long, + ACTIONS(5086), 1, anon_sym_LPAREN, - STATE(3493), 1, - sym_type_index, + ACTIONS(5737), 1, + sym_identifier, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(5294), 1, + sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3297), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3626), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5518), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [153339] = 11, - ACTIONS(4329), 1, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1424), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3596), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [150648] = 12, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5513), 1, + ACTIONS(5937), 1, sym_identifier, - ACTIONS(5843), 1, + ACTIONS(5941), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3455), 2, + ACTIONS(5939), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5960), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3503), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3626), 2, + STATE(3683), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5518), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [153381] = 11, - ACTIONS(4329), 1, + [150692] = 12, + ACTIONS(1422), 1, + anon_sym_long, + ACTIONS(5086), 1, + anon_sym_LPAREN, + ACTIONS(5737), 1, + sym_identifier, + STATE(3262), 1, + sym__signedness, + STATE(3482), 1, + sym__longness, + STATE(5404), 1, + sym_c_type, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1418), 2, + anon_sym_signed, + anon_sym_unsigned, + ACTIONS(1420), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(1424), 2, + anon_sym_const, + anon_sym_volatile, + STATE(3596), 2, + sym_int_type, + sym_function_pointer_type, + ACTIONS(1414), 3, + anon_sym_int, + anon_sym_double, + anon_sym_complex, + [150736] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5793), 1, + ACTIONS(5665), 1, sym_identifier, - ACTIONS(5846), 1, + ACTIONS(5667), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3447), 2, + STATE(3500), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3607), 2, + STATE(3636), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5795), 4, + ACTIONS(5948), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153423] = 11, - ACTIONS(4329), 1, + [150778] = 11, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, + ACTIONS(5098), 1, anon_sym_operator, - ACTIONS(5821), 1, + ACTIONS(5665), 1, sym_identifier, - ACTIONS(5860), 1, + ACTIONS(5951), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, + ACTIONS(4429), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4327), 2, + ACTIONS(4431), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3444), 2, + STATE(3349), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3596), 2, + STATE(3636), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5823), 4, + ACTIONS(5672), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [153465] = 12, - ACTIONS(1388), 1, + [150820] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3209), 1, + STATE(3319), 1, sym__signedness, - STATE(3417), 1, + STATE(3544), 1, sym__longness, - STATE(4844), 1, + STATE(5113), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [153509] = 12, - ACTIONS(4114), 1, + [150864] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5037), 1, + STATE(5352), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [153553] = 12, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5431), 1, - anon_sym_LPAREN, - ACTIONS(5797), 1, + [150908] = 11, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5665), 1, sym_identifier, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(5278), 1, - sym_c_type, + ACTIONS(5951), 1, + anon_sym_LPAREN, + STATE(3536), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5642), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3474), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [153597] = 12, - ACTIONS(1388), 1, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3500), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3636), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5672), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [150950] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5345), 1, + STATE(5365), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [153641] = 12, - ACTIONS(4114), 1, + [150994] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5870), 1, + ACTIONS(5962), 1, sym_identifier, - ACTIONS(5872), 1, + ACTIONS(5964), 1, anon_sym_LPAREN, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5715), 1, + STATE(5599), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3728), 2, + STATE(3730), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [153685] = 12, - ACTIONS(1388), 1, + [151038] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5424), 1, + STATE(5417), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [153729] = 12, - ACTIONS(5459), 1, + [151082] = 12, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(5473), 1, + ACTIONS(5577), 1, anon_sym_long, - ACTIONS(5477), 1, + ACTIONS(5581), 1, sym_identifier, - STATE(3438), 1, + STATE(3460), 1, sym__signedness, - STATE(3589), 1, + STATE(3677), 1, sym__longness, - STATE(4569), 1, + STATE(4635), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5469), 2, + ACTIONS(5573), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5471), 2, + ACTIONS(5575), 2, anon_sym_char, anon_sym_short, - ACTIONS(5475), 2, + ACTIONS(5579), 2, anon_sym_const, anon_sym_volatile, - STATE(3565), 2, + STATE(3561), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5467), 3, + ACTIONS(5571), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [153773] = 12, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4984), 1, - anon_sym_LPAREN, - ACTIONS(5682), 1, + [151126] = 11, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5908), 1, sym_identifier, - STATE(3209), 1, - sym__signedness, - STATE(3417), 1, - sym__longness, - STATE(5425), 1, - sym_c_type, + ACTIONS(5954), 1, + anon_sym_LPAREN, + STATE(3536), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1386), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1390), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3530), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [153817] = 12, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5431), 1, - anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3495), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3632), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5910), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [151168] = 11, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5634), 1, sym_identifier, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(4913), 1, - sym_c_type, + ACTIONS(5676), 1, + anon_sym_LPAREN, + STATE(3536), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5642), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3474), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [153861] = 12, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5431), 1, - anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3368), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3686), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5638), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [151210] = 11, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5634), 1, sym_identifier, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(5354), 1, - sym_c_type, + ACTIONS(5676), 1, + anon_sym_LPAREN, + STATE(3536), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5642), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3474), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [153905] = 12, - ACTIONS(1388), 1, - anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3504), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3686), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5922), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [151252] = 11, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5634), 1, + sym_identifier, + ACTIONS(5645), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3399), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3686), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5638), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [151294] = 11, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5634), 1, sym_identifier, - STATE(3209), 1, - sym__signedness, - STATE(3417), 1, - sym__longness, - STATE(5428), 1, - sym_c_type, + ACTIONS(5645), 1, + anon_sym_LPAREN, + STATE(3536), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(1386), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(1390), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3530), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(1380), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [153949] = 12, - ACTIONS(4114), 1, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3504), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3686), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5638), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [151336] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(5874), 1, - sym_identifier, - ACTIONS(5876), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - STATE(3273), 1, + ACTIONS(5737), 1, + sym_identifier, + STATE(3262), 1, sym__signedness, STATE(3482), 1, sym__longness, - STATE(5715), 1, + STATE(4615), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3741), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [153993] = 12, - ACTIONS(1388), 1, + [151380] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3209), 1, + STATE(3319), 1, sym__signedness, - STATE(3417), 1, + STATE(3544), 1, sym__longness, - STATE(5263), 1, + STATE(4862), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154037] = 12, - ACTIONS(5459), 1, - anon_sym_LPAREN, - ACTIONS(5473), 1, + [151424] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5477), 1, + ACTIONS(5535), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, sym_identifier, - STATE(3438), 1, + STATE(3319), 1, sym__signedness, - STATE(3589), 1, + STATE(3544), 1, sym__longness, - STATE(4626), 1, + STATE(5370), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5469), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5471), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5475), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3565), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5467), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154081] = 12, - ACTIONS(4114), 1, + [151468] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3273), 1, + STATE(3262), 1, sym__signedness, STATE(3482), 1, sym__longness, - STATE(4818), 1, + STATE(5288), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154125] = 12, - ACTIONS(4114), 1, + [151512] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3273), 1, + STATE(3262), 1, sym__signedness, STATE(3482), 1, sym__longness, - STATE(5321), 1, + STATE(5336), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154169] = 12, - ACTIONS(1388), 1, + [151556] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3209), 1, + STATE(3319), 1, sym__signedness, - STATE(3417), 1, + STATE(3544), 1, sym__longness, - STATE(5309), 1, + STATE(5448), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154213] = 12, - ACTIONS(1388), 1, + [151600] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5367), 1, + STATE(5389), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154257] = 12, - ACTIONS(5459), 1, + [151644] = 12, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(5473), 1, + ACTIONS(5577), 1, anon_sym_long, - ACTIONS(5477), 1, + ACTIONS(5581), 1, sym_identifier, - STATE(3438), 1, + STATE(3460), 1, sym__signedness, - STATE(3589), 1, + STATE(3677), 1, sym__longness, - STATE(4565), 1, + STATE(4710), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5469), 2, + ACTIONS(5573), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(5471), 2, + ACTIONS(5575), 2, anon_sym_char, anon_sym_short, - ACTIONS(5475), 2, + ACTIONS(5579), 2, anon_sym_const, anon_sym_volatile, - STATE(3565), 2, + STATE(3561), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(5467), 3, + ACTIONS(5571), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154301] = 4, - ACTIONS(5878), 1, - anon_sym_long, + [151688] = 6, + ACTIONS(5886), 1, + anon_sym_COLON, + ACTIONS(5888), 1, + anon_sym_EQ, + ACTIONS(5966), 1, + anon_sym_COMMA, + STATE(3361), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5852), 7, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(5854), 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, - [154329] = 12, - ACTIONS(4114), 1, + ACTIONS(5890), 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, + [151720] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4868), 1, + STATE(4919), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154373] = 12, - ACTIONS(4114), 1, + [151764] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5275), 1, + STATE(5316), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154417] = 12, - ACTIONS(371), 1, - anon_sym_long, - ACTIONS(5880), 1, + [151808] = 11, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5896), 1, sym_identifier, - ACTIONS(5882), 1, - anon_sym_LPAREN, - STATE(3210), 1, - sym__signedness, - STATE(3416), 1, - sym__longness, - STATE(5602), 1, - sym_c_type, + STATE(3536), 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(5642), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3599), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(365), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [154461] = 12, - ACTIONS(4114), 1, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5900), 2, + anon_sym_COLON, + anon_sym_EQ, + STATE(3492), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3658), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5898), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + [151850] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4899), 1, + STATE(4950), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154505] = 12, - ACTIONS(4114), 1, + [151894] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5244), 1, + STATE(5281), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154549] = 12, - ACTIONS(4114), 1, + [151938] = 12, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5892), 1, + sym_identifier, + ACTIONS(5902), 1, + anon_sym_LPAREN, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5968), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3493), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3661), 2, + sym_operator_name, + sym_c_function_pointer_name, + [151982] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4925), 1, + STATE(4986), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154593] = 12, - ACTIONS(4114), 1, + [152026] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5305), 1, + STATE(5347), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154637] = 12, - ACTIONS(4114), 1, + [152070] = 12, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5892), 1, + sym_identifier, + ACTIONS(5902), 1, + anon_sym_LPAREN, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5968), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3388), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3661), 2, + sym_operator_name, + sym_c_function_pointer_name, + [152114] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4950), 1, + STATE(5011), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154681] = 12, - ACTIONS(4114), 1, + [152158] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5368), 1, + STATE(5415), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154725] = 12, - ACTIONS(1388), 1, + [152202] = 12, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5892), 1, + sym_identifier, + ACTIONS(5905), 1, + anon_sym_LPAREN, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5894), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(5970), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3493), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3661), 2, + sym_operator_name, + sym_c_function_pointer_name, + [152246] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3209), 1, + STATE(3319), 1, sym__signedness, - STATE(3417), 1, + STATE(3544), 1, sym__longness, - STATE(5245), 1, + STATE(5035), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154769] = 12, - ACTIONS(4114), 1, + [152290] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(4976), 1, + STATE(5472), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154813] = 12, - ACTIONS(4114), 1, + [152334] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5431), 1, + STATE(5373), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154857] = 5, - ACTIONS(5884), 1, + [152378] = 14, + ACTIONS(3903), 1, + anon_sym_LPAREN, + ACTIONS(3914), 1, + sym_identifier, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5972), 1, anon_sym_DOT, - STATE(3384), 1, + ACTIONS(5976), 1, + anon_sym_COLON, + ACTIONS(5978), 1, + anon_sym_EQ, + ACTIONS(5980), 1, + anon_sym_complex, + STATE(3597), 1, + sym_type_index, + STATE(3611), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5701), 6, - anon_sym_as, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + ACTIONS(5974), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3880), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [152426] = 4, + ACTIONS(5982), 1, + anon_sym_long, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5912), 7, anon_sym_STAR, sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5706), 9, + ACTIONS(5914), 9, sym__newline, - anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -252287,798 +257227,785 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [154887] = 12, - ACTIONS(4114), 1, + [152454] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5324), 1, + STATE(5405), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154931] = 12, - ACTIONS(4114), 1, + [152498] = 6, + ACTIONS(5886), 1, + anon_sym_COLON, + ACTIONS(5888), 1, + anon_sym_EQ, + ACTIONS(5984), 1, + anon_sym_COMMA, + STATE(3283), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5890), 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, + [152530] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5753), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5986), 1, sym_identifier, - STATE(3273), 1, + STATE(3262), 1, sym__signedness, STATE(3482), 1, sym__longness, - STATE(5234), 1, + STATE(5737), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3581), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [154975] = 12, - ACTIONS(1388), 1, + [152574] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3209), 1, + STATE(3319), 1, sym__signedness, - STATE(3417), 1, + STATE(3544), 1, sym__longness, - STATE(5247), 1, + STATE(5369), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155019] = 12, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5431), 1, - anon_sym_LPAREN, - ACTIONS(5797), 1, - sym_identifier, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(5320), 1, - sym_c_type, + [152618] = 5, + ACTIONS(5988), 1, + anon_sym_DOT, + STATE(3434), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5642), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3474), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, + ACTIONS(5730), 6, + anon_sym_as, + anon_sym_STAR, + sym_identifier, anon_sym_complex, - [155063] = 12, - ACTIONS(4114), 1, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5735), 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, + [152648] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5362), 1, + STATE(5410), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155107] = 12, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5431), 1, + [152692] = 11, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(5098), 1, + anon_sym_operator, + ACTIONS(5636), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5896), 1, sym_identifier, - STATE(3273), 1, - sym__signedness, - STATE(3482), 1, - sym__longness, - STATE(5241), 1, - sym_c_type, + STATE(3536), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, - anon_sym_signed, - anon_sym_unsigned, - ACTIONS(4112), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5642), 2, - anon_sym_const, - anon_sym_volatile, - STATE(3474), 2, - sym_int_type, - sym_function_pointer_type, - ACTIONS(4108), 3, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - [155151] = 12, - ACTIONS(4114), 1, + ACTIONS(4429), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(4431), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3492), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3658), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5900), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [152734] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5322), 1, + STATE(5371), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155195] = 12, - ACTIONS(4114), 1, + [152778] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5323), 1, + STATE(5372), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155239] = 12, - ACTIONS(4114), 1, + [152822] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5251), 1, + STATE(5295), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155283] = 12, - ACTIONS(4114), 1, + [152866] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5325), 1, + STATE(5374), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155327] = 12, - ACTIONS(4114), 1, + [152910] = 12, + ACTIONS(4202), 1, anon_sym_long, - ACTIONS(5431), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5882), 1, sym_identifier, - STATE(3273), 1, + STATE(3319), 1, sym__signedness, - STATE(3482), 1, + STATE(3544), 1, sym__longness, - STATE(5326), 1, + STATE(5375), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(4198), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(4200), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5755), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3541), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(4196), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155371] = 12, - ACTIONS(1388), 1, + [152954] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5333), 1, + STATE(5386), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155415] = 12, - ACTIONS(1388), 1, + [152998] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5294), 1, + STATE(5346), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155459] = 12, - ACTIONS(1388), 1, + [153042] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5304), 1, + STATE(5356), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155503] = 12, - ACTIONS(1388), 1, + [153086] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5310), 1, + STATE(5361), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155547] = 12, - ACTIONS(1388), 1, + [153130] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5312), 1, + STATE(5363), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155591] = 12, - ACTIONS(1388), 1, + [153174] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5338), 1, + STATE(5393), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155635] = 12, - ACTIONS(1388), 1, + [153218] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5344), 1, + STATE(5399), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155679] = 11, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5778), 1, - sym_identifier, - ACTIONS(5780), 1, - anon_sym_LPAREN, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3351), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3574), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5785), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [155721] = 12, - ACTIONS(1388), 1, + [153262] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5350), 1, + STATE(5402), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155765] = 12, - ACTIONS(1388), 1, + [153306] = 12, + ACTIONS(1422), 1, anon_sym_long, - ACTIONS(4984), 1, + ACTIONS(5086), 1, anon_sym_LPAREN, - ACTIONS(5682), 1, + ACTIONS(5737), 1, sym_identifier, - STATE(3209), 1, + STATE(3262), 1, sym__signedness, - STATE(3417), 1, + STATE(3482), 1, sym__longness, - STATE(5353), 1, + STATE(5406), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1384), 2, + ACTIONS(1418), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(1386), 2, + ACTIONS(1420), 2, anon_sym_char, anon_sym_short, - ACTIONS(1390), 2, + ACTIONS(1424), 2, anon_sym_const, anon_sym_volatile, - STATE(3530), 2, + STATE(3596), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(1380), 3, + ACTIONS(1414), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155809] = 12, - ACTIONS(4114), 1, - anon_sym_long, - ACTIONS(5431), 1, + [153350] = 12, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(5797), 1, + ACTIONS(5577), 1, + anon_sym_long, + ACTIONS(5581), 1, sym_identifier, - STATE(3273), 1, + STATE(3460), 1, sym__signedness, - STATE(3482), 1, + STATE(3677), 1, sym__longness, - STATE(5402), 1, + STATE(4601), 1, sym_c_type, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4110), 2, + ACTIONS(5573), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(4112), 2, + ACTIONS(5575), 2, anon_sym_char, anon_sym_short, - ACTIONS(5642), 2, + ACTIONS(5579), 2, anon_sym_const, anon_sym_volatile, - STATE(3474), 2, + STATE(3561), 2, sym_int_type, sym_function_pointer_type, - ACTIONS(4108), 3, + ACTIONS(5571), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [155853] = 11, - ACTIONS(4329), 1, + [153394] = 11, + ACTIONS(5090), 1, + anon_sym_STAR, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(4996), 1, - anon_sym_operator, - ACTIONS(5793), 1, - sym_identifier, - ACTIONS(5838), 1, + ACTIONS(5626), 1, anon_sym_LPAREN, - STATE(3493), 1, + ACTIONS(5972), 1, + anon_sym_DOT, + ACTIONS(5991), 1, + anon_sym_complex, + STATE(3471), 1, + aux_sym_class_definition_repeat2, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4325), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4327), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3319), 2, + STATE(3554), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3607), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5795), 4, - anon_sym_RPAREN, + ACTIONS(5092), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5661), 4, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - [155895] = 11, - ACTIONS(4030), 1, + anon_sym_GT, + anon_sym_QMARK, + [153435] = 11, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5605), 1, + ACTIONS(5784), 1, sym_identifier, - ACTIONS(5607), 1, + ACTIONS(5786), 1, anon_sym_LPAREN, - ACTIONS(5610), 1, + ACTIONS(5789), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3412), 2, + STATE(3467), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3594), 2, + STATE(3682), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5518), 3, + ACTIONS(5672), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [155936] = 4, - ACTIONS(5483), 1, + [153476] = 5, + ACTIONS(4578), 1, + anon_sym_as, + ACTIONS(5591), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 6, + ACTIONS(4580), 6, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - ACTIONS(4406), 9, + ACTIONS(4570), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [155963] = 3, + [153505] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5887), 7, + ACTIONS(5993), 7, anon_sym_STAR, sym_identifier, anon_sym_int, @@ -253086,7 +258013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5889), 9, + ACTIONS(5995), 9, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -253096,169 +258023,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [155988] = 11, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(5710), 1, + [153530] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5730), 6, + anon_sym_as, + anon_sym_STAR, sym_identifier, - ACTIONS(5712), 1, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5735), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(5715), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - STATE(3494), 1, - sym_type_index, + anon_sym_AMP, + [153555] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(5730), 6, + anon_sym_as, anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(5735), 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, - STATE(3480), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3576), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5526), 3, - sym__newline, + [153580] = 4, + ACTIONS(5591), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4580), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(4570), 9, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - [156029] = 11, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(5891), 1, - sym_identifier, - ACTIONS(5893), 1, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [153607] = 14, + ACTIONS(3903), 1, anon_sym_LPAREN, - ACTIONS(5896), 1, + ACTIONS(3914), 1, + sym_identifier, + ACTIONS(5094), 1, anon_sym_LBRACK, - STATE(3494), 1, + ACTIONS(5972), 1, + anon_sym_DOT, + ACTIONS(5974), 1, + anon_sym_COMMA, + ACTIONS(5980), 1, + anon_sym_complex, + ACTIONS(5997), 1, + anon_sym_COLON, + ACTIONS(5999), 1, + anon_sym_EQ, + STATE(3597), 1, sym_type_index, + STATE(3611), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3478), 2, + STATE(3880), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3618), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5785), 3, - sym__newline, + [153654] = 7, + ACTIONS(5680), 1, + anon_sym_STAR, + ACTIONS(6005), 1, + anon_sym_long, + STATE(3692), 1, + sym__longness, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6001), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(6003), 2, + anon_sym_char, + anon_sym_short, + ACTIONS(5682), 9, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - [156070] = 10, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(5899), 1, + anon_sym_RBRACK, + anon_sym_AMP, anon_sym_complex, - STATE(3420), 1, - aux_sym_class_definition_repeat2, - STATE(3540), 1, + anon_sym___stdcall, + [153687] = 11, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(6007), 1, + sym_identifier, + ACTIONS(6009), 1, + anon_sym_LPAREN, + ACTIONS(6012), 1, + anon_sym_LBRACK, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3542), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(3908), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3799), 5, - anon_sym_LPAREN, + STATE(3547), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3646), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5900), 3, + sym__newline, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156109] = 11, - ACTIONS(4030), 1, + anon_sym_EQ, + [153728] = 11, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5710), 1, + ACTIONS(5806), 1, sym_identifier, - ACTIONS(5712), 1, + ACTIONS(5808), 1, anon_sym_LPAREN, - ACTIONS(5715), 1, + ACTIONS(5811), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3432), 2, + STATE(3476), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3576), 2, + STATE(3631), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5526), 3, + ACTIONS(5638), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [156150] = 11, - ACTIONS(4030), 1, + [153769] = 11, + ACTIONS(6015), 1, + anon_sym_DOT, + ACTIONS(6017), 1, + anon_sym_STAR, + ACTIONS(6021), 1, + anon_sym_LBRACK, + ACTIONS(6023), 1, + anon_sym_complex, + STATE(3501), 1, + aux_sym_class_definition_repeat2, + STATE(3747), 1, + sym_type_index, + STATE(5467), 1, + sym_template_default, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3664), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6019), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(3903), 4, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [153810] = 11, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5891), 1, + ACTIONS(5784), 1, sym_identifier, - ACTIONS(5893), 1, + ACTIONS(6025), 1, anon_sym_LPAREN, - ACTIONS(5896), 1, + ACTIONS(6029), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3426), 2, + STATE(3519), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3618), 2, + STATE(3682), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5785), 3, + ACTIONS(5948), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [156191] = 4, + [153851] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5587), 2, + ACTIONS(6037), 2, anon_sym_int, anon_sym_double, - ACTIONS(5579), 5, + ACTIONS(6033), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5581), 9, + ACTIONS(6035), 9, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -253268,156 +258292,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [156218] = 4, + [153878] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5583), 2, + ACTIONS(5684), 2, anon_sym_int, anon_sym_double, - ACTIONS(5579), 5, + ACTIONS(5680), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5581), 9, + ACTIONS(5682), 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, - [156245] = 11, - ACTIONS(4030), 1, + [153905] = 11, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5710), 1, + ACTIONS(6039), 1, sym_identifier, - ACTIONS(5901), 1, + ACTIONS(6041), 1, anon_sym_LPAREN, - ACTIONS(5905), 1, + ACTIONS(6044), 1, + anon_sym_LBRACK, + STATE(3525), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3908), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3924), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3527), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3648), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5894), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [153946] = 11, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(5784), 1, + sym_identifier, + ACTIONS(5786), 1, + anon_sym_LPAREN, + ACTIONS(5789), 1, + anon_sym_LBRACK, + STATE(3525), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3908), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(3924), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3519), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3682), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5672), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_EQ, + [153987] = 11, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(6039), 1, + sym_identifier, + ACTIONS(6041), 1, + anon_sym_LPAREN, + ACTIONS(6044), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3480), 2, + STATE(3477), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3576), 2, + STATE(3648), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5790), 3, + ACTIONS(5894), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [156286] = 14, - ACTIONS(3799), 1, + [154028] = 13, + ACTIONS(3903), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3914), 1, sym_identifier, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5811), 1, + ACTIONS(5972), 1, anon_sym_DOT, - ACTIONS(5813), 1, - anon_sym_COMMA, - ACTIONS(5819), 1, + ACTIONS(5980), 1, anon_sym_complex, - ACTIONS(5909), 1, - anon_sym_COLON, - ACTIONS(5911), 1, + ACTIONS(5999), 1, anon_sym_EQ, - STATE(3510), 1, - aux_sym_class_definition_repeat2, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, + STATE(3611), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3813), 2, + ACTIONS(5974), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3880), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [156333] = 10, - ACTIONS(4988), 1, + [154073] = 11, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5811), 1, + ACTIONS(5667), 1, + anon_sym_LPAREN, + ACTIONS(5972), 1, anon_sym_DOT, - ACTIONS(5913), 1, + ACTIONS(6047), 1, anon_sym_complex, - STATE(3244), 1, + STATE(3268), 1, aux_sym_class_definition_repeat2, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3571), 2, + STATE(3565), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5530), 5, - anon_sym_LPAREN, + ACTIONS(5670), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156372] = 4, + [154114] = 11, + ACTIONS(4138), 1, + anon_sym_operator, + ACTIONS(5806), 1, + sym_identifier, + ACTIONS(6049), 1, + anon_sym_LPAREN, + ACTIONS(6053), 1, + anon_sym_LBRACK, + STATE(3525), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5919), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5915), 5, + ACTIONS(3908), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5917), 9, + ACTIONS(3924), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3524), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + STATE(3631), 2, + sym_operator_name, + sym_c_function_pointer_name, + ACTIONS(5922), 3, 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, - [156399] = 3, + [154155] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5701), 6, - anon_sym_as, + ACTIONS(5993), 7, anon_sym_STAR, sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5706), 10, + ACTIONS(5995), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -253426,74 +258518,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_AMP, - [156424] = 11, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(5921), 1, - anon_sym_complex, - STATE(3429), 1, - aux_sym_class_definition_repeat2, - STATE(3540), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3559), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4990), 3, - anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5546), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [156465] = 3, + [154180] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5701), 6, - anon_sym_as, + ACTIONS(6057), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(6033), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5706), 10, - sym__newline, - anon_sym_SEMI, + ACTIONS(6035), 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, - [156490] = 4, - ACTIONS(5483), 1, + [154207] = 4, + ACTIONS(5591), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 6, + ACTIONS(4580), 6, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - ACTIONS(4406), 9, + ACTIONS(4570), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -253503,284 +258565,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [156517] = 11, - ACTIONS(4030), 1, + [154234] = 11, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5923), 1, + ACTIONS(6059), 1, sym_identifier, - ACTIONS(5925), 1, + ACTIONS(6061), 1, anon_sym_LPAREN, - ACTIONS(5928), 1, + ACTIONS(6064), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3479), 2, + STATE(3516), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3642), 2, + STATE(3675), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5823), 3, + ACTIONS(5910), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [156558] = 11, - ACTIONS(4030), 1, + [154275] = 11, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5605), 1, + ACTIONS(6067), 1, sym_identifier, - ACTIONS(5607), 1, + ACTIONS(6069), 1, anon_sym_LPAREN, - ACTIONS(5610), 1, + ACTIONS(6072), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3498), 2, + STATE(3517), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3594), 2, + STATE(3624), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5518), 3, + ACTIONS(5939), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [156599] = 11, - ACTIONS(4030), 1, + [154316] = 11, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5605), 1, + ACTIONS(5806), 1, sym_identifier, - ACTIONS(5931), 1, + ACTIONS(5808), 1, anon_sym_LPAREN, - ACTIONS(5935), 1, + ACTIONS(5811), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3498), 2, + STATE(3524), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3594), 2, + STATE(3631), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5840), 3, + ACTIONS(5638), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [156640] = 11, - ACTIONS(4988), 1, + [154357] = 10, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, - anon_sym_LPAREN, - ACTIONS(5811), 1, + ACTIONS(5972), 1, anon_sym_DOT, - ACTIONS(5939), 1, + ACTIONS(6075), 1, anon_sym_complex, - STATE(3244), 1, + STATE(3481), 1, aux_sym_class_definition_repeat2, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3544), 2, + STATE(3555), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5591), 4, + ACTIONS(3903), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [156681] = 11, - ACTIONS(4030), 1, + [154396] = 11, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(5941), 1, + ACTIONS(6059), 1, sym_identifier, - ACTIONS(5943), 1, + ACTIONS(6061), 1, anon_sym_LPAREN, - ACTIONS(5946), 1, + ACTIONS(6064), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, + ACTIONS(3908), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(3924), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3473), 2, + STATE(3461), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3616), 2, + STATE(3675), 2, sym_operator_name, sym_c_function_pointer_name, - ACTIONS(5807), 3, + ACTIONS(5910), 3, sym__newline, anon_sym_COMMA, anon_sym_EQ, - [156722] = 13, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - sym_identifier, - ACTIONS(4992), 1, + [154437] = 10, + ACTIONS(5090), 1, + anon_sym_STAR, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5811), 1, + ACTIONS(5972), 1, anon_sym_DOT, - ACTIONS(5819), 1, + ACTIONS(6077), 1, anon_sym_complex, - ACTIONS(5911), 1, - anon_sym_EQ, - STATE(3510), 1, + STATE(3268), 1, aux_sym_class_definition_repeat2, - STATE(3540), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - ACTIONS(5813), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3813), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [156767] = 11, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(5949), 1, - sym_identifier, - ACTIONS(5951), 1, - anon_sym_LPAREN, - ACTIONS(5954), 1, - anon_sym_LBRACK, - STATE(3494), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3804), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3820), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3505), 2, + STATE(3580), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - STATE(3668), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5795), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [156808] = 11, - ACTIONS(4030), 1, - anon_sym_operator, - ACTIONS(5949), 1, - sym_identifier, - ACTIONS(5951), 1, - anon_sym_LPAREN, - ACTIONS(5954), 1, - anon_sym_LBRACK, - STATE(3494), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3804), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(3820), 2, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3430), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - STATE(3668), 2, - sym_operator_name, - sym_c_function_pointer_name, - ACTIONS(5795), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [156849] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5887), 7, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(5889), 9, - anon_sym_DOT, + ACTIONS(5676), 5, 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, - [156874] = 4, + anon_sym_GT, + anon_sym_QMARK, + [154476] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5957), 2, + ACTIONS(5703), 2, anon_sym_int, anon_sym_double, - ACTIONS(5915), 5, + ACTIONS(5680), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5917), 9, + ACTIONS(5682), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -253790,204 +258766,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [156901] = 5, - ACTIONS(4414), 1, - anon_sym_as, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4416), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(4406), 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, - [156930] = 11, - ACTIONS(5959), 1, + [154503] = 10, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(5961), 1, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5967), 1, + ACTIONS(4435), 1, anon_sym_complex, - STATE(3458), 1, + STATE(3490), 1, aux_sym_class_definition_repeat2, - STATE(3719), 1, + STATE(3536), 1, sym_type_index, - STATE(5382), 1, - sym_template_default, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3581), 2, + STATE(3687), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3799), 4, + ACTIONS(3903), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [156971] = 7, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5973), 1, - anon_sym_long, - STATE(3601), 1, - sym__longness, + [154541] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5969), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5971), 2, - anon_sym_char, - anon_sym_short, - ACTIONS(5581), 9, + ACTIONS(6079), 6, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6081), 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_RBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [157004] = 9, - ACTIONS(5977), 1, - anon_sym_LPAREN, - ACTIONS(5988), 1, - anon_sym_LBRACK, - STATE(3493), 1, - sym_type_index, + [154565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, + ACTIONS(6083), 6, + anon_sym_STAR, + anon_sym_not, + anon_sym_or, sym_identifier, anon_sym_operator, - ACTIONS(5982), 2, - anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5985), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3454), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5979), 4, + ACTIONS(6085), 9, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [157040] = 11, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4325), 1, - anon_sym_STAR, - ACTIONS(4329), 1, anon_sym_LBRACK, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(5991), 1, - anon_sym_complex, - STATE(3463), 1, - aux_sym_class_definition_repeat2, - STATE(3493), 1, - sym_type_index, + anon_sym_AMP, + [154589] = 4, + ACTIONS(6087), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3619), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4327), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5546), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [157080] = 10, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4325), 1, + ACTIONS(5912), 6, anon_sym_STAR, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(5993), 1, + sym_identifier, + anon_sym_int, + anon_sym_double, anon_sym_complex, - STATE(3323), 1, - aux_sym_class_definition_repeat2, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3610), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4327), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5530), 4, + ACTIONS(5914), 8, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [157118] = 5, - ACTIONS(4414), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [154615] = 5, + ACTIONS(4578), 1, anon_sym_as, - ACTIONS(5483), 1, + ACTIONS(5591), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 6, + ACTIONS(4580), 6, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - ACTIONS(4406), 7, + ACTIONS(4570), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [157146] = 3, + [154643] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5995), 5, + ACTIONS(6089), 5, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym___stdcall, - ACTIONS(5997), 10, + ACTIONS(6091), 10, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -253998,148 +258902,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [157170] = 9, - ACTIONS(5977), 1, - anon_sym_LPAREN, - ACTIONS(5988), 1, - anon_sym_LBRACK, - STATE(3493), 1, - sym_type_index, + [154667] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5982), 2, + ACTIONS(6093), 5, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5985), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3454), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5999), 4, - anon_sym_RPAREN, + anon_sym_not, + anon_sym_or, + sym_identifier, + anon_sym___stdcall, + ACTIONS(6095), 10, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [157206] = 10, - ACTIONS(5959), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [154691] = 10, + ACTIONS(4427), 1, anon_sym_DOT, - ACTIONS(5961), 1, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5967), 1, + ACTIONS(6097), 1, anon_sym_complex, - STATE(3458), 1, + STATE(3364), 1, aux_sym_class_definition_repeat2, - STATE(3719), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3581), 2, + STATE(3700), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(3799), 4, + ACTIONS(5676), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [157244] = 3, + [154729] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6002), 6, + ACTIONS(6099), 5, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6004), 9, + ACTIONS(6101), 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_AMP, - [157268] = 9, - ACTIONS(5977), 1, + anon_sym_GT, + anon_sym_QMARK, + [154753] = 9, + ACTIONS(6105), 1, anon_sym_LPAREN, - ACTIONS(5988), 1, + ACTIONS(6116), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, + ACTIONS(6103), 2, sym_identifier, anon_sym_operator, - ACTIONS(5982), 2, + ACTIONS(6110), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5985), 2, + ACTIONS(6113), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3454), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6006), 4, + ACTIONS(6107), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [157304] = 9, - ACTIONS(5977), 1, + [154789] = 9, + ACTIONS(6105), 1, anon_sym_LPAREN, - ACTIONS(5988), 1, + ACTIONS(6116), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, + ACTIONS(6103), 2, sym_identifier, anon_sym_operator, - ACTIONS(5982), 2, + ACTIONS(6110), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5985), 2, + ACTIONS(6113), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3454), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6009), 4, + ACTIONS(6119), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [157340] = 3, + [154825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6012), 6, + ACTIONS(6099), 6, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6014), 9, + ACTIONS(6101), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -254149,296 +259047,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [157364] = 10, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4325), 1, - anon_sym_STAR, - ACTIONS(4329), 1, + [154849] = 9, + ACTIONS(6105), 1, + anon_sym_LPAREN, + ACTIONS(6116), 1, anon_sym_LBRACK, - ACTIONS(4331), 1, - anon_sym_complex, - STATE(3441), 1, - aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3597), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4327), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(3799), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [157402] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6012), 5, - anon_sym_STAR, - anon_sym_not, - anon_sym_or, + ACTIONS(6103), 2, sym_identifier, + anon_sym_operator, + ACTIONS(6110), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6014), 10, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(6113), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [157426] = 4, - ACTIONS(5830), 1, + STATE(3508), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6122), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(5832), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5834), 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, - [157452] = 5, - ACTIONS(4414), 1, - anon_sym_as, - ACTIONS(5483), 1, + [154885] = 10, + ACTIONS(6015), 1, + anon_sym_DOT, + ACTIONS(6017), 1, anon_sym_STAR, + ACTIONS(6021), 1, + anon_sym_LBRACK, + ACTIONS(6023), 1, + anon_sym_complex, + STATE(3501), 1, + aux_sym_class_definition_repeat2, + STATE(3747), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 6, - anon_sym_LPAREN, + STATE(3664), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6019), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(4406), 7, - anon_sym_RPAREN, + ACTIONS(3903), 4, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [157480] = 8, - ACTIONS(5988), 1, + anon_sym_EQ, + anon_sym_RBRACK, + [154923] = 8, + ACTIONS(6131), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, + ACTIONS(6103), 2, sym_identifier, anon_sym_operator, - ACTIONS(5982), 2, + ACTIONS(6125), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5985), 2, + ACTIONS(6128), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3454), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5977), 5, + ACTIONS(6105), 5, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [157514] = 9, - ACTIONS(5977), 1, - anon_sym_LPAREN, - ACTIONS(5988), 1, + [154957] = 11, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_STAR, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + ACTIONS(5667), 1, + anon_sym_LPAREN, + ACTIONS(6134), 1, + anon_sym_complex, + STATE(3364), 1, + aux_sym_class_definition_repeat2, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(5982), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(5985), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3454), 2, + STATE(3716), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6016), 4, + ACTIONS(4431), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5670), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [157550] = 8, - ACTIONS(6025), 1, + [154997] = 11, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(4429), 1, + anon_sym_STAR, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3494), 1, + ACTIONS(5626), 1, + anon_sym_LPAREN, + ACTIONS(6136), 1, + anon_sym_complex, + STATE(3498), 1, + aux_sym_class_definition_repeat2, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6019), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6022), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3456), 2, + STATE(3705), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5977), 5, - sym__newline, - anon_sym_LPAREN, + ACTIONS(4431), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5661), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [157584] = 9, - ACTIONS(5977), 1, + [155037] = 9, + ACTIONS(6105), 1, anon_sym_LPAREN, - ACTIONS(5988), 1, + ACTIONS(6116), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, + ACTIONS(6103), 2, sym_identifier, anon_sym_operator, - ACTIONS(5982), 2, + ACTIONS(6110), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5985), 2, + ACTIONS(6113), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3454), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6028), 4, + ACTIONS(6138), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [157620] = 10, - ACTIONS(5959), 1, + [155073] = 10, + ACTIONS(6015), 1, anon_sym_DOT, - ACTIONS(5961), 1, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - ACTIONS(6031), 1, + ACTIONS(6141), 1, anon_sym_complex, - STATE(3504), 1, + STATE(3550), 1, aux_sym_class_definition_repeat2, - STATE(3719), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3632), 2, + STATE(3670), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5530), 4, + ACTIONS(5676), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [157658] = 4, - ACTIONS(6033), 1, - anon_sym_long, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5852), 6, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5854), 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, - [157684] = 11, - ACTIONS(5536), 1, + [155111] = 11, + ACTIONS(5626), 1, anon_sym_LPAREN, - ACTIONS(5959), 1, + ACTIONS(6015), 1, anon_sym_DOT, - ACTIONS(5961), 1, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - ACTIONS(6035), 1, + ACTIONS(6143), 1, anon_sym_complex, - STATE(3464), 1, + STATE(3510), 1, aux_sym_class_definition_repeat2, - STATE(3719), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3634), 2, + STATE(3672), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5546), 3, + ACTIONS(5661), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(5963), 3, + ACTIONS(6019), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [155151] = 9, + ACTIONS(6105), 1, + anon_sym_LPAREN, + ACTIONS(6116), 1, + anon_sym_LBRACK, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6103), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(6110), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6113), 2, anon_sym_STAR_STAR, anon_sym_AMP, + STATE(3508), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6145), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [155187] = 9, + ACTIONS(6105), 1, + anon_sym_LPAREN, + ACTIONS(6116), 1, + anon_sym_LBRACK, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6103), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(6110), 2, + anon_sym_STAR, anon_sym___stdcall, - [157724] = 3, + ACTIONS(6113), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3508), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6148), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [155223] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6002), 5, + ACTIONS(6079), 5, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym___stdcall, - ACTIONS(6004), 10, + ACTIONS(6081), 10, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -254449,118 +259345,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [157748] = 3, + [155247] = 4, + ACTIONS(5886), 1, + anon_sym_COLON, + ACTIONS(5888), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5890), 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, + [155273] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6037), 5, + ACTIONS(6089), 6, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6039), 10, + ACTIONS(6091), 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, - [157772] = 11, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(4325), 1, - anon_sym_STAR, - ACTIONS(4329), 1, + [155297] = 8, + ACTIONS(6116), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, - anon_sym_LPAREN, - ACTIONS(6041), 1, - anon_sym_complex, - STATE(3323), 1, - aux_sym_class_definition_repeat2, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3635), 2, + ACTIONS(6103), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(6110), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6113), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(6105), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [155331] = 5, + ACTIONS(4578), 1, + anon_sym_as, + ACTIONS(5591), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4580), 6, + anon_sym_LPAREN, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5591), 3, - anon_sym_RPAREN, + ACTIONS(4570), 7, anon_sym_COMMA, - anon_sym_EQ, - [157812] = 11, - ACTIONS(5515), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [155359] = 11, + ACTIONS(5667), 1, anon_sym_LPAREN, - ACTIONS(5959), 1, + ACTIONS(6015), 1, anon_sym_DOT, - ACTIONS(5961), 1, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - ACTIONS(6043), 1, + ACTIONS(6151), 1, anon_sym_complex, - STATE(3504), 1, + STATE(3550), 1, aux_sym_class_definition_repeat2, - STATE(3719), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3658), 2, + STATE(3618), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5591), 3, + ACTIONS(5670), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(5963), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [157852] = 3, + [155399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6045), 6, + ACTIONS(6083), 5, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6047), 9, + ACTIONS(6085), 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_AMP, - [157876] = 3, + anon_sym_GT, + anon_sym_QMARK, + [155423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5995), 6, + ACTIONS(6093), 6, anon_sym_STAR, anon_sym_not, anon_sym_or, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5997), 9, + ACTIONS(6095), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -254570,212 +259508,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [157900] = 3, + [155447] = 5, + ACTIONS(6157), 1, + anon_sym_LBRACK, + STATE(3589), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6045), 5, + ACTIONS(6153), 4, anon_sym_STAR, - anon_sym_not, - anon_sym_or, sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6047), 10, + ACTIONS(6155), 8, + sym__newline, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_AMP, + [155474] = 9, + ACTIONS(5090), 1, + anon_sym_STAR, + ACTIONS(5094), 1, anon_sym_LBRACK, + ACTIONS(5905), 1, + anon_sym_LPAREN, + ACTIONS(6160), 1, + anon_sym_complex, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3584), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5092), 3, + anon_sym_STAR_STAR, anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5970), 4, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [157924] = 3, + [155509] = 8, + ACTIONS(6103), 1, + sym_identifier, + ACTIONS(6168), 1, + anon_sym_LBRACK, + STATE(3597), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6037), 6, + ACTIONS(6162), 2, anon_sym_STAR, - anon_sym_not, - anon_sym_or, - sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6039), 9, - anon_sym_DOT, + ACTIONS(6165), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6105), 5, 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, - [157948] = 11, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3814), 1, + anon_sym_GT, + anon_sym_QMARK, + [155542] = 8, + ACTIONS(6171), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, - anon_sym_LPAREN, - ACTIONS(6049), 1, - anon_sym_complex, - STATE(3384), 1, - aux_sym_class_definition_repeat2, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5591), 2, - sym__newline, - anon_sym_COLON, - STATE(3729), 2, + ACTIONS(6103), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(6125), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6128), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(6122), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [155575] = 8, + ACTIONS(6175), 1, + anon_sym_LBRACK, + STATE(3525), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6103), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(6125), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6128), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - [157987] = 11, - ACTIONS(371), 1, + STATE(3497), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6145), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [155608] = 11, + ACTIONS(381), 1, anon_sym_long, - ACTIONS(4030), 1, + ACTIONS(4138), 1, anon_sym_operator, - ACTIONS(6051), 1, + ACTIONS(6179), 1, sym_identifier, - STATE(3210), 1, + STATE(3253), 1, sym__signedness, - STATE(3238), 1, + STATE(3265), 1, sym_int_type, - STATE(3416), 1, + STATE(3466), 1, sym__longness, - STATE(3590), 1, + STATE(3695), 1, sym_operator_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(367), 2, + ACTIONS(377), 2, anon_sym_signed, anon_sym_unsigned, - ACTIONS(369), 2, + ACTIONS(379), 2, anon_sym_char, anon_sym_short, - ACTIONS(365), 3, + ACTIONS(375), 3, anon_sym_int, anon_sym_double, anon_sym_complex, - [158026] = 5, - ACTIONS(6055), 1, - anon_sym_DOT, - STATE(3471), 1, - aux_sym_type_qualifier_repeat1, + [155647] = 8, + ACTIONS(6181), 1, + anon_sym_LBRACK, + STATE(3525), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6053), 4, - anon_sym_STAR, + ACTIONS(6103), 2, sym_identifier, anon_sym_operator, + ACTIONS(6125), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6058), 8, + ACTIONS(6128), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3497), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6138), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [158053] = 5, - ACTIONS(6060), 1, - anon_sym_LBRACK, - STATE(3523), 1, - sym_type_index, + [155680] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6053), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6058), 8, + ACTIONS(4801), 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, - [158080] = 8, - ACTIONS(6063), 1, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + anon_sym_nogil, + [155701] = 10, + ACTIONS(3901), 1, + anon_sym_DOT, + ACTIONS(3908), 1, + anon_sym_STAR, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(3494), 1, + ACTIONS(6185), 1, + anon_sym_complex, + STATE(3434), 1, + aux_sym_class_definition_repeat2, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6019), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6022), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3456), 2, + STATE(3751), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6028), 4, + ACTIONS(3924), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5676), 3, sym__newline, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [158113] = 8, - ACTIONS(4988), 1, + anon_sym_COLON, + [155738] = 11, + ACTIONS(3901), 1, + anon_sym_DOT, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6067), 1, + ACTIONS(5626), 1, + anon_sym_LPAREN, + ACTIONS(6187), 1, anon_sym_complex, - STATE(3540), 1, + STATE(3525), 1, sym_type_index, + STATE(3540), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3560), 2, + ACTIONS(5661), 2, + sym__newline, + anon_sym_COLON, + STATE(3754), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5561), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [158146] = 5, - ACTIONS(6069), 1, + [155777] = 5, + ACTIONS(6189), 1, anon_sym_DOT, - STATE(3475), 1, + STATE(3523), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6053), 4, + ACTIONS(6153), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6058), 8, + ACTIONS(6155), 8, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, @@ -254784,45 +259780,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [158173] = 9, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(4992), 1, + [155804] = 8, + ACTIONS(6192), 1, anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_LPAREN, - ACTIONS(6072), 1, - anon_sym_complex, - STATE(3540), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3564), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(6103), 2, + sym_identifier, + anon_sym_operator, + ACTIONS(6125), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(6128), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5553), 4, + STATE(3497), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6148), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [158208] = 3, + anon_sym_EQ, + [155837] = 5, + ACTIONS(6198), 1, + anon_sym_DOT, + STATE(3530), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5579), 5, + ACTIONS(6196), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5581), 9, + ACTIONS(6200), 8, sym__newline, - anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -254830,86 +259827,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [158231] = 8, - ACTIONS(6074), 1, - anon_sym_LBRACK, - STATE(3494), 1, - sym_type_index, + [155864] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, + ACTIONS(6033), 5, + anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, - ACTIONS(6019), 2, - anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6022), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3456), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5979), 4, + ACTIONS(6035), 9, sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [158264] = 8, - ACTIONS(6078), 1, anon_sym_LBRACK, - STATE(3494), 1, + anon_sym_AMP, + [155887] = 8, + ACTIONS(6202), 1, + anon_sym_LBRACK, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, + ACTIONS(6103), 2, sym_identifier, anon_sym_operator, - ACTIONS(6019), 2, + ACTIONS(6125), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6022), 2, + ACTIONS(6128), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3456), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5999), 4, + ACTIONS(6119), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [158297] = 8, - ACTIONS(6082), 1, - anon_sym_LBRACK, - STATE(3494), 1, - sym_type_index, + [155920] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, + ACTIONS(5680), 5, + anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, - ACTIONS(6019), 2, - anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6022), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3456), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6009), 4, - sym__newline, + ACTIONS(5682), 9, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [158330] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + [155943] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4654), 14, + ACTIONS(4714), 14, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -254924,85 +259911,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_nogil, - [158351] = 4, + [155964] = 5, + ACTIONS(6198), 1, + anon_sym_DOT, + STATE(3523), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5756), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5579), 4, + ACTIONS(6206), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5581), 8, + ACTIONS(6208), 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, - [158376] = 10, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6086), 1, - anon_sym_complex, - STATE(3384), 1, - aux_sym_class_definition_repeat2, - STATE(3494), 1, - sym_type_index, + [155991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3724), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(5993), 6, + anon_sym_STAR, + sym_identifier, + anon_sym_int, + anon_sym_double, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5530), 3, - sym__newline, + ACTIONS(5995), 8, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, - [158413] = 9, - ACTIONS(4988), 1, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [156014] = 8, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, - anon_sym_LPAREN, - ACTIONS(6088), 1, + ACTIONS(6210), 1, anon_sym_complex, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3552), 2, + STATE(3551), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5850), 4, + ACTIONS(5954), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [158448] = 2, + [156047] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 14, + ACTIONS(4809), 14, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -255017,62 +259997,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_nogil, - [158469] = 3, + [156068] = 9, + ACTIONS(5090), 1, + anon_sym_STAR, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5642), 1, + anon_sym_LPAREN, + ACTIONS(6212), 1, + anon_sym_complex, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3560), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5092), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5645), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [156103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5579), 5, + ACTIONS(6214), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5581), 9, + ACTIONS(6216), 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, - [158492] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6090), 2, - sym__newline, - anon_sym_COLON, - ACTIONS(4416), 4, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(5483), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(6092), 4, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [158519] = 5, - ACTIONS(6096), 1, + [156126] = 5, + ACTIONS(6218), 1, anon_sym_DOT, - STATE(3471), 1, + STATE(3543), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6094), 4, + ACTIONS(6196), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6098), 8, + ACTIONS(6200), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -255081,39 +260065,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [158546] = 3, + [156153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6100), 5, + ACTIONS(6033), 5, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6102), 9, - sym__newline, + ACTIONS(6035), 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, - [158569] = 4, + [156176] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4393), 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, + [156197] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6104), 2, + ACTIONS(6220), 2, anon_sym_int, anon_sym_double, - ACTIONS(5915), 4, + ACTIONS(6033), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(5917), 8, + ACTIONS(6035), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -255122,61 +260125,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [158594] = 5, - ACTIONS(6106), 1, + [156222] = 11, + ACTIONS(3901), 1, anon_sym_DOT, - STATE(3475), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(3908), 1, + anon_sym_STAR, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_LPAREN, + ACTIONS(6222), 1, + anon_sym_complex, + STATE(3434), 1, + aux_sym_class_definition_repeat2, + STATE(3525), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6094), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6098), 8, + ACTIONS(5670), 2, sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_COLON, + STATE(3810), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3924), 3, anon_sym_STAR_STAR, - anon_sym_EQ, + anon_sym_AMP, + anon_sym___stdcall, + [156261] = 8, + ACTIONS(5090), 1, + anon_sym_STAR, + ACTIONS(5094), 1, anon_sym_LBRACK, + ACTIONS(6224), 1, + anon_sym_complex, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3571), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5092), 3, + anon_sym_STAR_STAR, anon_sym_AMP, - [158621] = 2, + anon_sym___stdcall, + ACTIONS(5655), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [156294] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4289), 14, + ACTIONS(5680), 5, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(5682), 9, 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_STAR_STAR, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [158642] = 5, - ACTIONS(6096), 1, + anon_sym_LBRACK, + anon_sym_AMP, + [156317] = 5, + ACTIONS(6218), 1, anon_sym_DOT, - STATE(3488), 1, + STATE(3549), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6108), 4, + ACTIONS(6206), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6110), 8, + ACTIONS(6208), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -255185,42 +260220,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [158669] = 5, - ACTIONS(6106), 1, - anon_sym_DOT, - STATE(3491), 1, - aux_sym_type_qualifier_repeat1, + [156344] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6108), 4, + ACTIONS(5858), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5680), 4, anon_sym_STAR, sym_identifier, - anon_sym_operator, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(6110), 8, - sym__newline, + ACTIONS(5682), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [158696] = 5, - ACTIONS(6112), 1, - anon_sym_LBRACK, - STATE(3512), 1, - sym_type_index, + anon_sym_GT, + anon_sym_QMARK, + [156369] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6053), 4, + ACTIONS(6214), 5, anon_sym_STAR, sym_identifier, + anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6058), 8, + ACTIONS(6216), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -255228,38 +260259,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - [158723] = 3, + [156392] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 5, + ACTIONS(6226), 2, + sym__newline, + anon_sym_COLON, + ACTIONS(4580), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(5591), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, + anon_sym___stdcall, + ACTIONS(6228), 4, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [156419] = 8, + ACTIONS(6230), 1, + anon_sym_LBRACK, + STATE(3525), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6103), 2, + sym_identifier, anon_sym_operator, + ACTIONS(6125), 2, + anon_sym_STAR, anon_sym___stdcall, - ACTIONS(5917), 9, + ACTIONS(6128), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3497), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6107), 4, sym__newline, - anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, + [156452] = 5, + ACTIONS(6234), 1, anon_sym_LBRACK, - anon_sym_AMP, - [158746] = 3, + STATE(3615), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 5, + ACTIONS(6153), 4, anon_sym_STAR, sym_identifier, - anon_sym_complex, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5917), 9, + ACTIONS(6155), 8, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -255267,417 +260329,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [158769] = 8, - ACTIONS(6115), 1, - anon_sym_LBRACK, - STATE(3494), 1, - sym_type_index, + [156479] = 5, + ACTIONS(6237), 1, + anon_sym_DOT, + STATE(3549), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, + ACTIONS(6153), 4, + anon_sym_STAR, sym_identifier, anon_sym_operator, - ACTIONS(6019), 2, - anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6022), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3456), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6016), 4, - sym__newline, + ACTIONS(6155), 8, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [158802] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + [156506] = 5, + ACTIONS(5730), 1, + anon_sym_STAR, + ACTIONS(6240), 1, + anon_sym_DOT, + STATE(3550), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4639), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(5735), 11, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_with, + anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - anon_sym_nogil, - [158823] = 8, - ACTIONS(4988), 1, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [156533] = 7, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6119), 1, - anon_sym_complex, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3526), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5846), 5, + ACTIONS(5970), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [158856] = 3, + [156563] = 5, + ACTIONS(6243), 1, + anon_sym_DOT, + STATE(3552), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6100), 5, + ACTIONS(6153), 3, anon_sym_STAR, sym_identifier, - anon_sym_complex, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6102), 9, - anon_sym_DOT, + ACTIONS(6155), 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, - [158879] = 8, - ACTIONS(5975), 1, - sym_identifier, - ACTIONS(6127), 1, + anon_sym_GT, + anon_sym_QMARK, + [156589] = 11, + ACTIONS(5094), 1, anon_sym_LBRACK, - STATE(3540), 1, + ACTIONS(5667), 1, + anon_sym_LPAREN, + ACTIONS(5972), 1, + anon_sym_DOT, + ACTIONS(6246), 1, + sym_identifier, + ACTIONS(6248), 1, + anon_sym_complex, + STATE(3268), 1, + aux_sym_class_definition_repeat2, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6121), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(6124), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3502), 2, + STATE(3819), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5977), 5, + [156627] = 8, + ACTIONS(5090), 1, + anon_sym_STAR, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [158912] = 3, + STATE(3597), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5887), 6, - anon_sym_STAR, - sym_identifier, - anon_sym_int, - anon_sym_double, - anon_sym_complex, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5092), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5889), 8, - anon_sym_LPAREN, + ACTIONS(5670), 4, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [158935] = 5, - ACTIONS(5701), 1, + [156659] = 7, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(6130), 1, - anon_sym_DOT, - STATE(3504), 1, - aux_sym_class_definition_repeat2, + ACTIONS(5094), 1, + anon_sym_LBRACK, + STATE(3597), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5706), 11, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5092), 3, 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, - [158962] = 8, - ACTIONS(6133), 1, + ACTIONS(5676), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [156689] = 8, + ACTIONS(5090), 1, + anon_sym_STAR, + ACTIONS(5094), 1, anon_sym_LBRACK, - STATE(3494), 1, + ACTIONS(5951), 1, + anon_sym_LPAREN, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5975), 2, - sym_identifier, - anon_sym_operator, - ACTIONS(6019), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(6022), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3456), 2, + STATE(3568), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6006), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5092), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5954), 4, anon_sym_COMMA, - anon_sym_EQ, - [158995] = 11, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(3804), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [156721] = 8, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(6137), 1, + ACTIONS(6250), 1, anon_sym_complex, - STATE(3469), 1, - aux_sym_class_definition_repeat2, - STATE(3494), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5546), 2, - sym__newline, - anon_sym_COLON, - STATE(3726), 2, + STATE(3713), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [159034] = 5, - ACTIONS(6139), 1, - anon_sym_DOT, - STATE(3539), 1, - aux_sym_type_qualifier_repeat1, + ACTIONS(5954), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [156753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6094), 3, + ACTIONS(6089), 4, anon_sym_STAR, sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6098), 8, + ACTIONS(6091), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [159060] = 3, + [156775] = 3, + ACTIONS(5730), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6037), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6039), 9, - sym__newline, + ACTIONS(5735), 12, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_AMP, - [159082] = 9, - ACTIONS(4325), 1, + anon_sym_complex, + anon_sym___stdcall, + [156797] = 8, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, + ACTIONS(5951), 1, anon_sym_LPAREN, - ACTIONS(6141), 1, - anon_sym_complex, - STATE(3493), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3666), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5850), 3, - anon_sym_RPAREN, + ACTIONS(5954), 4, anon_sym_COMMA, - anon_sym_EQ, - [159116] = 11, - ACTIONS(4992), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [156829] = 8, + ACTIONS(6017), 1, + anon_sym_STAR, + ACTIONS(6021), 1, anon_sym_LBRACK, - ACTIONS(5530), 1, - anon_sym_LPAREN, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(6143), 1, - sym_identifier, - ACTIONS(6145), 1, + ACTIONS(6252), 1, anon_sym_complex, - STATE(3244), 1, - aux_sym_class_definition_repeat2, - STATE(3540), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3812), 2, + STATE(3706), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [159154] = 11, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5536), 1, + ACTIONS(6019), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5655), 4, anon_sym_LPAREN, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(6147), 1, - sym_identifier, - ACTIONS(6149), 1, - anon_sym_complex, - STATE(3528), 1, - aux_sym_class_definition_repeat2, - STATE(3540), 1, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [156861] = 7, + ACTIONS(5090), 1, + anon_sym_STAR, + ACTIONS(5094), 1, + anon_sym_LBRACK, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3814), 2, + anon_sym___stdcall, + ACTIONS(5954), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [156891] = 12, + ACTIONS(6254), 1, + sym_identifier, + ACTIONS(6256), 1, + anon_sym_LPAREN, + ACTIONS(6258), 1, + anon_sym_LBRACK, + STATE(538), 1, + sym_c_function_definition, + STATE(4024), 1, + sym_c_name, + STATE(4051), 1, + sym_c_parameters, + STATE(5105), 1, + sym_type_index, + STATE(5390), 1, + sym_template_params, + STATE(5751), 1, sym_type_qualifier, - aux_sym_c_type_repeat1, - [159192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6151), 4, + ACTIONS(5090), 2, anon_sym_STAR, - sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6153), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5092), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_AMP, - [159214] = 9, - ACTIONS(4325), 1, + [156931] = 8, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5550), 1, + ACTIONS(6260), 1, anon_sym_LPAREN, - ACTIONS(6155), 1, - anon_sym_complex, - STATE(3493), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3620), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5553), 3, - anon_sym_RPAREN, + ACTIONS(6263), 4, anon_sym_COMMA, - anon_sym_EQ, - [159248] = 8, - ACTIONS(4988), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [156963] = 8, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5902), 1, anon_sym_LPAREN, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3544), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5591), 4, + ACTIONS(5968), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [159280] = 6, - ACTIONS(6157), 1, + [156995] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4662), 9, + ACTIONS(4793), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -255687,217 +260747,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_with, anon_sym_PIPE, anon_sym_nogil, - [159308] = 12, - ACTIONS(6165), 1, - sym_identifier, - ACTIONS(6167), 1, - anon_sym_LPAREN, - ACTIONS(6169), 1, - anon_sym_LBRACK, - STATE(529), 1, - sym_c_function_definition, - STATE(4026), 1, - sym_c_name, - STATE(4033), 1, - sym_c_parameters, - STATE(5050), 1, - sym_type_index, - STATE(5334), 1, - sym_template_params, - STATE(5665), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4988), 2, + [157023] = 8, + ACTIONS(5090), 1, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [159348] = 12, - ACTIONS(6167), 1, - anon_sym_LPAREN, - ACTIONS(6169), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6171), 1, - sym_identifier, - STATE(2923), 1, - sym_c_function_definition, - STATE(3994), 1, - sym_c_name, - STATE(4016), 1, - sym_c_parameters, - STATE(5050), 1, + ACTIONS(5902), 1, + anon_sym_LPAREN, + STATE(3597), 1, sym_type_index, - STATE(5287), 1, - sym_template_params, - STATE(5665), 1, - sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, + STATE(3585), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, - [159388] = 11, - ACTIONS(4992), 1, + anon_sym___stdcall, + ACTIONS(5968), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [157055] = 8, + ACTIONS(5090), 1, + anon_sym_STAR, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5530), 1, + ACTIONS(5905), 1, anon_sym_LPAREN, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(6143), 1, - sym_identifier, - ACTIONS(6173), 1, - anon_sym_complex, - STATE(3244), 1, - aux_sym_class_definition_repeat2, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3780), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [159426] = 11, - ACTIONS(4992), 1, + ACTIONS(5092), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5970), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [157087] = 7, + ACTIONS(5090), 1, + anon_sym_STAR, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(6147), 1, - sym_identifier, - ACTIONS(6175), 1, - anon_sym_complex, - STATE(3521), 1, - aux_sym_class_definition_repeat2, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3805), 2, + STATE(3562), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [159464] = 12, - ACTIONS(6167), 1, + ACTIONS(5092), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5645), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [157117] = 12, + ACTIONS(6256), 1, anon_sym_LPAREN, - ACTIONS(6169), 1, + ACTIONS(6258), 1, anon_sym_LBRACK, - ACTIONS(6177), 1, + ACTIONS(6273), 1, sym_identifier, - STATE(2935), 1, + STATE(1267), 1, sym_c_function_definition, - STATE(3947), 1, + STATE(3984), 1, sym_c_name, - STATE(4016), 1, + STATE(4014), 1, sym_c_parameters, - STATE(5050), 1, + STATE(5105), 1, sym_type_index, - STATE(5287), 1, + STATE(5476), 1, sym_template_params, - STATE(5665), 1, + STATE(5751), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [159504] = 11, - ACTIONS(4992), 1, + [157157] = 7, + ACTIONS(5090), 1, + anon_sym_STAR, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, - anon_sym_LPAREN, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(6179), 1, - sym_identifier, - ACTIONS(6181), 1, - anon_sym_complex, - STATE(3244), 1, - aux_sym_class_definition_repeat2, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3803), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [159542] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6002), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, + ACTIONS(5092), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6004), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(5645), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, + anon_sym_GT, + anon_sym_QMARK, + [157187] = 9, + ACTIONS(5642), 1, + anon_sym_LPAREN, + ACTIONS(6017), 1, + anon_sym_STAR, + ACTIONS(6021), 1, anon_sym_LBRACK, - anon_sym_AMP, - [159564] = 3, + ACTIONS(6275), 1, + anon_sym_complex, + STATE(3747), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6151), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6153), 9, - sym__newline, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(3689), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5645), 3, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(6019), 3, + anon_sym_STAR_STAR, anon_sym_AMP, - [159586] = 3, + anon_sym___stdcall, + [157221] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5636), 2, + ACTIONS(5782), 2, sym__dedent, anon_sym_LPAREN, - ACTIONS(6183), 11, + ACTIONS(6277), 11, sym_identifier, anon_sym_int, anon_sym_double, @@ -255909,275 +260913,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_long, anon_sym_const, anon_sym_volatile, - [159608] = 7, - ACTIONS(4988), 1, + [157243] = 7, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3550), 2, + STATE(3590), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5850), 5, + ACTIONS(5944), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [159638] = 7, - ACTIONS(4988), 1, + [157273] = 7, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5850), 5, + ACTIONS(6279), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [159668] = 8, - ACTIONS(5961), 1, - anon_sym_STAR, - ACTIONS(5965), 1, - anon_sym_LBRACK, - ACTIONS(6185), 1, - anon_sym_complex, - STATE(3719), 1, - sym_type_index, + [157303] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3656), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5963), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(6099), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5846), 4, + ACTIONS(6101), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_RBRACK, - [159700] = 11, - ACTIONS(4992), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, - anon_sym_LPAREN, - ACTIONS(5811), 1, + anon_sym_AMP, + [157325] = 6, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4829), 9, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(6179), 1, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_with, + anon_sym_PIPE, + anon_sym_nogil, + [157353] = 12, + ACTIONS(6256), 1, + anon_sym_LPAREN, + ACTIONS(6258), 1, + anon_sym_LBRACK, + ACTIONS(6281), 1, sym_identifier, - ACTIONS(6187), 1, - anon_sym_complex, - STATE(3244), 1, - aux_sym_class_definition_repeat2, - STATE(3540), 1, + STATE(1268), 1, + sym_c_function_definition, + STATE(4014), 1, + sym_c_parameters, + STATE(4057), 1, + sym_c_name, + STATE(5105), 1, sym_type_index, + STATE(5476), 1, + sym_template_params, + STATE(5751), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3810), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [159738] = 8, - ACTIONS(4988), 1, + [157393] = 5, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6283), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4741), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_PIPE, + anon_sym_nogil, + [157419] = 7, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6189), 1, - anon_sym_LPAREN, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6192), 4, + ACTIONS(5944), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [159770] = 8, - ACTIONS(4325), 1, + [157449] = 9, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(6194), 1, + ACTIONS(5642), 1, + anon_sym_LPAREN, + ACTIONS(6286), 1, anon_sym_complex, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3600), 2, + STATE(3708), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5561), 4, - anon_sym_LPAREN, + ACTIONS(5645), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [159802] = 10, - ACTIONS(3797), 1, + [157483] = 3, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4714), 12, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(3804), 1, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_with, + anon_sym_PIPE, + anon_sym_or, + anon_sym_nogil, + [157505] = 8, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(3818), 1, - anon_sym_complex, - STATE(3483), 1, - aux_sym_class_definition_repeat2, - STATE(3494), 1, + ACTIONS(6288), 1, + anon_sym_LPAREN, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3799), 2, - sym__newline, - anon_sym_LPAREN, - STATE(3744), 2, + STATE(3564), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [159838] = 4, - ACTIONS(5852), 1, - anon_sym_STAR, - ACTIONS(6196), 1, - anon_sym_long, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5854), 11, - anon_sym_LPAREN, + ACTIONS(6279), 4, 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, - [159862] = 4, - ACTIONS(5483), 1, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [157537] = 8, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4406), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(4416), 6, - anon_sym_LPAREN, - anon_sym_STAR_STAR, + ACTIONS(5094), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [159886] = 9, - ACTIONS(5787), 1, + ACTIONS(6288), 1, anon_sym_LPAREN, - ACTIONS(5961), 1, - anon_sym_STAR, - ACTIONS(5965), 1, - anon_sym_LBRACK, - ACTIONS(6198), 1, - anon_sym_complex, - STATE(3719), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3663), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5850), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5963), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [159920] = 7, - ACTIONS(4988), 1, + ACTIONS(6279), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [157569] = 8, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - STATE(3540), 1, + ACTIONS(5941), 1, + anon_sym_LPAREN, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3571), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5530), 5, - anon_sym_LPAREN, + ACTIONS(5960), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [159950] = 3, + [157601] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6012), 4, + ACTIONS(6093), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(6014), 9, + ACTIONS(6095), 9, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -256187,41 +261207,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [159972] = 6, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 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(4658), 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, - [160000] = 5, - ACTIONS(6200), 1, + [157623] = 5, + ACTIONS(6291), 1, anon_sym_LBRACK, - STATE(3611), 1, + STATE(3642), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6053), 3, + ACTIONS(6153), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(6058), 8, + ACTIONS(6155), 8, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -256230,107 +261228,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [160026] = 5, - ACTIONS(6203), 1, - anon_sym_DOT, - STATE(3539), 1, - aux_sym_type_qualifier_repeat1, + [157649] = 8, + ACTIONS(6017), 1, + anon_sym_STAR, + ACTIONS(6021), 1, + anon_sym_LBRACK, + ACTIONS(6294), 1, + anon_sym_complex, + STATE(3747), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6053), 3, - anon_sym_STAR, - sym_identifier, + STATE(3712), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6019), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6058), 8, + ACTIONS(5954), 4, 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, - [160052] = 5, - ACTIONS(6139), 1, - anon_sym_DOT, - STATE(3507), 1, - aux_sym_type_qualifier_repeat1, + anon_sym_EQ, + anon_sym_RBRACK, + [157681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6108), 3, + ACTIONS(6296), 4, anon_sym_STAR, sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(6110), 8, + ACTIONS(6298), 9, + sym__newline, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [160078] = 7, - ACTIONS(4988), 1, + [157703] = 7, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5809), 5, + ACTIONS(5898), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [160108] = 7, - ACTIONS(4988), 1, + [157733] = 10, + ACTIONS(3901), 1, + anon_sym_DOT, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(3540), 1, + ACTIONS(3922), 1, + anon_sym_complex, + STATE(3521), 1, + aux_sym_class_definition_repeat2, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + ACTIONS(3903), 2, + sym__newline, + anon_sym_LPAREN, + STATE(3729), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5530), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [160138] = 6, - ACTIONS(6157), 1, + [157769] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 9, + ACTIONS(4837), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -256340,309 +261342,354 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_with, anon_sym_PIPE, anon_sym_nogil, - [160166] = 8, - ACTIONS(4988), 1, + [157797] = 7, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5780), 1, - anon_sym_LPAREN, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3575), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5783), 4, + ACTIONS(5970), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [160198] = 3, - ACTIONS(5701), 1, + [157827] = 7, + ACTIONS(5090), 1, anon_sym_STAR, + ACTIONS(5094), 1, + anon_sym_LBRACK, + STATE(3597), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5706), 12, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + STATE(3580), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5092), 3, 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, - [160220] = 12, - ACTIONS(6167), 1, + ACTIONS(5676), 5, anon_sym_LPAREN, - ACTIONS(6169), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT, + anon_sym_QMARK, + [157857] = 12, + ACTIONS(6256), 1, + anon_sym_LPAREN, + ACTIONS(6258), 1, anon_sym_LBRACK, - ACTIONS(6206), 1, + ACTIONS(6300), 1, sym_identifier, - STATE(1367), 1, + STATE(2943), 1, sym_c_function_definition, - STATE(3968), 1, - sym_c_parameters, - STATE(4044), 1, + STATE(4050), 1, sym_c_name, - STATE(5050), 1, + STATE(4072), 1, + sym_c_parameters, + STATE(5105), 1, sym_type_index, - STATE(5330), 1, + STATE(5338), 1, sym_template_params, - STATE(5665), 1, + STATE(5751), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [160260] = 5, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6208), 1, - anon_sym_as, + [157897] = 8, + ACTIONS(4429), 1, + anon_sym_STAR, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(6302), 1, + anon_sym_complex, + STATE(3536), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + STATE(3691), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4431), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5655), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_nogil, - [160286] = 3, + anon_sym_EQ, + [157929] = 5, + ACTIONS(6304), 1, + anon_sym_DOT, + STATE(3614), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6045), 4, + ACTIONS(6196), 3, anon_sym_STAR, sym_identifier, - anon_sym_operator, anon_sym___stdcall, - ACTIONS(6047), 9, - sym__newline, - anon_sym_DOT, + ACTIONS(6200), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [160308] = 8, - ACTIONS(4988), 1, + anon_sym_GT, + anon_sym_QMARK, + [157955] = 4, + ACTIONS(5912), 1, anon_sym_STAR, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5780), 1, - anon_sym_LPAREN, - STATE(3540), 1, - sym_type_index, + ACTIONS(6306), 1, + anon_sym_long, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3553), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5914), 11, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_int, + anon_sym_double, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5783), 4, + [157979] = 4, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4789), 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_GT, - anon_sym_QMARK, - [160340] = 7, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(4992), 1, + anon_sym_with, + anon_sym_PIPE, + anon_sym_nogil, + [158003] = 11, + ACTIONS(5094), 1, anon_sym_LBRACK, - STATE(3540), 1, + ACTIONS(5676), 1, + anon_sym_LPAREN, + ACTIONS(5972), 1, + anon_sym_DOT, + ACTIONS(6308), 1, + sym_identifier, + ACTIONS(6310), 1, + anon_sym_complex, + STATE(3268), 1, + aux_sym_class_definition_repeat2, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6211), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [160370] = 8, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(4992), 1, + STATE(3823), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [158041] = 11, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6213), 1, + ACTIONS(5626), 1, anon_sym_LPAREN, - STATE(3540), 1, + ACTIONS(5972), 1, + anon_sym_DOT, + ACTIONS(6312), 1, + sym_identifier, + ACTIONS(6314), 1, + anon_sym_complex, + STATE(3597), 1, sym_type_index, + STATE(3606), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3529), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6211), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [160402] = 8, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(6213), 1, + STATE(3827), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [158079] = 11, + ACTIONS(3903), 1, anon_sym_LPAREN, - STATE(3540), 1, + ACTIONS(3914), 1, + sym_identifier, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5972), 1, + anon_sym_DOT, + ACTIONS(6316), 1, + anon_sym_complex, + STATE(3597), 1, sym_type_index, + STATE(3600), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6211), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [160434] = 8, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5860), 1, + STATE(3869), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [158117] = 12, + ACTIONS(6256), 1, anon_sym_LPAREN, - STATE(3540), 1, + ACTIONS(6258), 1, + anon_sym_LBRACK, + ACTIONS(6318), 1, + sym_identifier, + STATE(2951), 1, + sym_c_function_definition, + STATE(3983), 1, + sym_c_name, + STATE(4072), 1, + sym_c_parameters, + STATE(5105), 1, sym_type_index, + STATE(5338), 1, + sym_template_params, + STATE(5751), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5863), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [160466] = 4, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, + [158157] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 11, + ACTIONS(6083), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6085), 9, 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_PIPE, - anon_sym_nogil, - [160490] = 8, - ACTIONS(4988), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [158179] = 8, + ACTIONS(5090), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, + ACTIONS(5667), 1, anon_sym_LPAREN, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3565), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5092), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5850), 4, + ACTIONS(5670), 4, anon_sym_COMMA, anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, - [160522] = 3, - ACTIONS(6161), 1, - anon_sym_and, + [158211] = 11, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_LPAREN, + ACTIONS(5972), 1, + anon_sym_DOT, + ACTIONS(6246), 1, + sym_identifier, + ACTIONS(6320), 1, + anon_sym_complex, + STATE(3268), 1, + aux_sym_class_definition_repeat2, + STATE(3597), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4654), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_with, - anon_sym_PIPE, - anon_sym_or, - anon_sym_nogil, - [160544] = 4, - ACTIONS(6218), 1, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3860), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [158249] = 4, + ACTIONS(6324), 1, anon_sym_AT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3557), 2, + STATE(3607), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - ACTIONS(6216), 10, + ACTIONS(6322), 10, anon_sym_async, anon_sym_def, anon_sym_class, @@ -256653,110 +261700,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_packed, anon_sym_inline, anon_sym_readonly, - [160568] = 7, - ACTIONS(4988), 1, + [158273] = 4, + ACTIONS(5591), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4570), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(4580), 6, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [158297] = 9, + ACTIONS(5905), 1, + anon_sym_LPAREN, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3540), 1, + ACTIONS(6327), 1, + anon_sym_complex, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3569), 2, + STATE(3627), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5970), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5553), 5, + [158331] = 12, + ACTIONS(6256), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [160598] = 8, - ACTIONS(4988), 1, + ACTIONS(6258), 1, + anon_sym_LBRACK, + ACTIONS(6329), 1, + sym_identifier, + STATE(534), 1, + sym_c_function_definition, + STATE(4051), 1, + sym_c_parameters, + STATE(4083), 1, + sym_c_name, + STATE(5105), 1, + sym_type_index, + STATE(5390), 1, + sym_template_params, + STATE(5751), 1, + sym_type_qualifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5090), 2, anon_sym_STAR, - ACTIONS(4992), 1, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [158371] = 11, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5676), 1, anon_sym_LPAREN, - STATE(3540), 1, + ACTIONS(5972), 1, + anon_sym_DOT, + ACTIONS(6308), 1, + sym_identifier, + ACTIONS(6331), 1, + anon_sym_complex, + STATE(3268), 1, + aux_sym_class_definition_repeat2, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3866), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + [158409] = 11, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5626), 1, + anon_sym_LPAREN, + ACTIONS(5972), 1, + anon_sym_DOT, + ACTIONS(6312), 1, + sym_identifier, + ACTIONS(6333), 1, + anon_sym_complex, + STATE(3553), 1, + aux_sym_class_definition_repeat2, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5591), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [160630] = 7, - ACTIONS(4988), 1, + STATE(3818), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [158447] = 9, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3540), 1, + ACTIONS(5905), 1, + anon_sym_LPAREN, + ACTIONS(6335), 1, + anon_sym_complex, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3720), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5553), 5, + ACTIONS(5970), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [158481] = 5, + ACTIONS(6304), 1, + anon_sym_DOT, + STATE(3552), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6206), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(6208), 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, - [160660] = 8, - ACTIONS(4325), 1, - anon_sym_STAR, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(6221), 1, - anon_sym_complex, - STATE(3493), 1, - sym_type_index, + [158507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3624), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4327), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(6296), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5846), 4, + ACTIONS(6298), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - [160692] = 3, + anon_sym_LBRACK, + anon_sym_AMP, + [158529] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5995), 4, + ACTIONS(6079), 4, anon_sym_STAR, sym_identifier, anon_sym_operator, anon_sym___stdcall, - ACTIONS(5997), 9, + ACTIONS(6081), 9, sym__newline, anon_sym_DOT, anon_sym_LPAREN, @@ -256766,1309 +261911,1196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - [160714] = 8, - ACTIONS(4988), 1, + [158551] = 8, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(5843), 1, - anon_sym_LPAREN, - STATE(3540), 1, + ACTIONS(6337), 1, + anon_sym_complex, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3555), 2, + STATE(3794), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5846), 4, - anon_sym_COMMA, + ACTIONS(5954), 3, + sym__newline, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [160746] = 8, - ACTIONS(4988), 1, + [158582] = 8, + ACTIONS(5902), 1, + anon_sym_LPAREN, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - ACTIONS(5843), 1, - anon_sym_LPAREN, - STATE(3540), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(5968), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5846), 4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [160778] = 8, - ACTIONS(5961), 1, + [158613] = 8, + ACTIONS(5905), 1, + anon_sym_LPAREN, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - ACTIONS(6223), 1, - anon_sym_complex, - STATE(3719), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3582), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5561), 4, - anon_sym_LPAREN, + ACTIONS(5970), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [160810] = 11, - ACTIONS(3799), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - sym_identifier, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(6225), 1, - anon_sym_complex, - STATE(3518), 1, - aux_sym_class_definition_repeat2, - STATE(3540), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3834), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [160848] = 12, - ACTIONS(6167), 1, - anon_sym_LPAREN, - ACTIONS(6169), 1, - anon_sym_LBRACK, - ACTIONS(6227), 1, - sym_identifier, - STATE(1303), 1, - sym_c_function_definition, - STATE(3968), 1, - sym_c_parameters, - STATE(4027), 1, - sym_c_name, - STATE(5050), 1, - sym_type_index, - STATE(5330), 1, - sym_template_params, - STATE(5665), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [160888] = 12, - ACTIONS(6167), 1, - anon_sym_LPAREN, - ACTIONS(6169), 1, - anon_sym_LBRACK, - ACTIONS(6229), 1, - sym_identifier, - STATE(525), 1, - sym_c_function_definition, - STATE(4033), 1, - sym_c_parameters, - STATE(4034), 1, - sym_c_name, - STATE(5050), 1, - sym_type_index, - STATE(5334), 1, - sym_template_params, - STATE(5665), 1, - sym_type_qualifier, + [158644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(6214), 4, anon_sym_STAR, + sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(6216), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_AMP, - [160928] = 7, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(4992), 1, anon_sym_LBRACK, - STATE(3540), 1, - sym_type_index, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [158665] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4990), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(5591), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(5846), 5, + ACTIONS(4580), 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, - [160958] = 9, - ACTIONS(5550), 1, - anon_sym_LPAREN, - ACTIONS(5961), 1, + [158686] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6341), 1, anon_sym_LBRACK, - ACTIONS(6231), 1, - anon_sym_complex, - STATE(3719), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3637), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5553), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5963), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [160992] = 7, - ACTIONS(4988), 1, + ACTIONS(6339), 4, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [158715] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(6346), 1, anon_sym_LBRACK, - STATE(3540), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5838), 5, + ACTIONS(6344), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [161022] = 7, - ACTIONS(4988), 1, + anon_sym_EQ, + [158744] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4992), 1, + ACTIONS(6351), 1, anon_sym_LBRACK, - STATE(3540), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3541), 2, + STATE(3654), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4990), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5838), 5, + ACTIONS(6349), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, - [161052] = 7, - ACTIONS(3804), 1, + anon_sym_EQ, + [158773] = 7, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(6235), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6233), 4, - sym__newline, + ACTIONS(6279), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [161081] = 7, - ACTIONS(4325), 1, + anon_sym_RBRACK, + [158802] = 8, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + ACTIONS(5902), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3595), 2, + STATE(3721), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6238), 4, + ACTIONS(5968), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [161110] = 7, - ACTIONS(3804), 1, + [158833] = 8, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(6242), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3494), 1, + ACTIONS(6288), 1, + anon_sym_LPAREN, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6240), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6279), 3, anon_sym_COMMA, anon_sym_EQ, - [161139] = 7, - ACTIONS(3804), 1, + anon_sym_RBRACK, + [158864] = 8, + ACTIONS(5941), 1, + anon_sym_LPAREN, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(6247), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3667), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(5960), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6245), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [161168] = 7, - ACTIONS(4325), 1, + [158895] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3681), 2, + STATE(3719), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5553), 4, + ACTIONS(5970), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [161197] = 7, - ACTIONS(4325), 1, + [158924] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6356), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3652), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6250), 4, - anon_sym_RPAREN, + ACTIONS(6354), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [161226] = 7, - ACTIONS(4325), 1, + [158953] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6361), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3645), 2, + STATE(3674), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5850), 4, + ACTIONS(6359), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [161255] = 8, - ACTIONS(4325), 1, + [158982] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5780), 1, - anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3670), 2, + STATE(3657), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5783), 3, + ACTIONS(6364), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [161286] = 7, - ACTIONS(5961), 1, + [159011] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6368), 1, anon_sym_LBRACK, - STATE(3719), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3680), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5530), 4, + ACTIONS(6366), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [161315] = 7, - ACTIONS(5961), 1, + [159040] = 8, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3719), 1, + ACTIONS(6260), 1, + anon_sym_LPAREN, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5553), 4, - anon_sym_LPAREN, + ACTIONS(6263), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [161344] = 7, - ACTIONS(4325), 1, + [159071] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3588), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6252), 4, + ACTIONS(6371), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [161373] = 7, - ACTIONS(4325), 1, + [159100] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3661), 2, + STATE(3660), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6254), 4, + ACTIONS(6373), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [161402] = 7, - ACTIONS(3804), 1, + [159129] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(6258), 1, + ACTIONS(6377), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6256), 4, + ACTIONS(6375), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [161431] = 7, - ACTIONS(5961), 1, + [159158] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3719), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3662), 2, + STATE(3709), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5850), 4, + ACTIONS(5645), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [161460] = 8, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6261), 1, - anon_sym_complex, - STATE(3494), 1, - sym_type_index, + [159187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3687), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(6196), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, + anon_sym___stdcall, + ACTIONS(6200), 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, + [159208] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6196), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_operator, anon_sym___stdcall, - ACTIONS(5561), 3, - sym__newline, + ACTIONS(6200), 8, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - [161491] = 7, - ACTIONS(4325), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + [159229] = 7, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3670), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6263), 4, - anon_sym_RPAREN, + ACTIONS(5676), 4, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [161520] = 4, - ACTIONS(5579), 1, - anon_sym_STAR, + anon_sym_RBRACK, + [159258] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5969), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5581), 9, + ACTIONS(6296), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(6298), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [159279] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6380), 4, + anon_sym_STAR, + sym_identifier, anon_sym_complex, anon_sym___stdcall, - [161543] = 7, - ACTIONS(3804), 1, + ACTIONS(6382), 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, + [159300] = 7, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(6265), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3640), 2, + STATE(3694), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6254), 4, - sym__newline, + ACTIONS(5645), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [161572] = 7, - ACTIONS(3804), 1, + anon_sym_RBRACK, + [159329] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(6268), 1, + ACTIONS(6386), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6263), 4, + ACTIONS(6384), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [161601] = 7, - ACTIONS(3804), 1, + [159358] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(6273), 1, + ACTIONS(6391), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3622), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6271), 4, + ACTIONS(6389), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [161630] = 7, - ACTIONS(4325), 1, + [159387] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6396), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6256), 4, - anon_sym_RPAREN, + ACTIONS(6394), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [161659] = 7, - ACTIONS(3804), 1, + [159416] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(6278), 1, + ACTIONS(6401), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3617), 2, + STATE(3623), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6276), 4, + ACTIONS(6399), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [161688] = 7, - ACTIONS(4325), 1, + [159445] = 7, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3724), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6233), 4, - anon_sym_RPAREN, + ACTIONS(5944), 4, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [161717] = 7, - ACTIONS(4325), 1, + anon_sym_RBRACK, + [159474] = 8, + ACTIONS(5667), 1, + anon_sym_LPAREN, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3608), 2, + STATE(3618), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(5670), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6281), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [161746] = 7, - ACTIONS(4325), 1, + [159505] = 8, + ACTIONS(5951), 1, + anon_sym_LPAREN, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3619), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5530), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5954), 3, anon_sym_COMMA, anon_sym_EQ, - [161775] = 3, - ACTIONS(5887), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5889), 11, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, + ACTIONS(6019), 3, + anon_sym_STAR_STAR, anon_sym_AMP, - anon_sym_int, - anon_sym_double, - anon_sym_complex, anon_sym___stdcall, - [161796] = 9, - ACTIONS(3804), 1, + [159536] = 8, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5550), 1, + ACTIONS(6288), 1, anon_sym_LPAREN, - ACTIONS(6283), 1, - anon_sym_complex, - STATE(3494), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5553), 2, - sym__newline, - anon_sym_COLON, - STATE(3757), 2, + STATE(3723), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [161829] = 7, - ACTIONS(4325), 1, + ACTIONS(6279), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [159567] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3700), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5553), 4, + ACTIONS(5676), 4, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [161858] = 4, - ACTIONS(5915), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6285), 2, - anon_sym_int, - anon_sym_double, - ACTIONS(5917), 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, - [161881] = 8, - ACTIONS(5961), 1, + [159596] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6406), 1, anon_sym_LBRACK, - ACTIONS(6213), 1, - anon_sym_LPAREN, - STATE(3719), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3665), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6211), 3, + ACTIONS(6404), 4, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [161912] = 8, - ACTIONS(5843), 1, - anon_sym_LPAREN, - ACTIONS(5961), 1, + [159625] = 7, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3719), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3659), 2, + STATE(3625), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5846), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5963), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [161943] = 8, - ACTIONS(5780), 1, + ACTIONS(5970), 4, anon_sym_LPAREN, - ACTIONS(5961), 1, - anon_sym_STAR, - ACTIONS(5965), 1, - anon_sym_LBRACK, - STATE(3719), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3664), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5783), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - ACTIONS(5963), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [161974] = 7, - ACTIONS(4325), 1, + [159654] = 8, + ACTIONS(5902), 1, + anon_sym_LPAREN, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3628), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6287), 4, - anon_sym_RPAREN, + ACTIONS(5968), 3, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [162003] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5579), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5581), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(6019), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [162024] = 7, - ACTIONS(4325), 1, + anon_sym___stdcall, + [159685] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3669), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6289), 4, + ACTIONS(6384), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [162053] = 7, - ACTIONS(4325), 1, + [159714] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3679), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6291), 4, + ACTIONS(6389), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [162082] = 8, - ACTIONS(3804), 1, + [159743] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(6411), 1, anon_sym_LBRACK, - ACTIONS(6293), 1, - anon_sym_complex, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3721), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5846), 3, + ACTIONS(6409), 4, sym__newline, anon_sym_LPAREN, - anon_sym_COLON, - [162113] = 7, - ACTIONS(4325), 1, + anon_sym_COMMA, + anon_sym_EQ, + [159772] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5838), 4, - anon_sym_LPAREN, + ACTIONS(6394), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [162142] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6151), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(6153), 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, - [162163] = 7, - ACTIONS(4325), 1, + anon_sym_EQ, + [159801] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3681), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6271), 4, + ACTIONS(6399), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [162192] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6295), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(6297), 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, - [162213] = 7, - ACTIONS(6299), 1, + [159830] = 8, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(6305), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3719), 1, + ACTIONS(6288), 1, + anon_sym_LPAREN, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3634), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6302), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5977), 4, - anon_sym_LPAREN, + ACTIONS(6279), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [162242] = 7, - ACTIONS(3804), 1, + [159861] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(6310), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3714), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6308), 4, - sym__newline, + ACTIONS(5944), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [162271] = 7, - ACTIONS(3804), 1, + [159890] = 7, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(6315), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3585), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6313), 4, - sym__newline, + ACTIONS(5676), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [162300] = 7, - ACTIONS(3804), 1, + anon_sym_RBRACK, + [159919] = 13, + ACTIONS(6414), 1, + anon_sym_COMMA, + ACTIONS(6416), 1, + anon_sym_as, + ACTIONS(6418), 1, + anon_sym_if, + ACTIONS(6420), 1, + anon_sym_COLON, + ACTIONS(6422), 1, + anon_sym_async, + ACTIONS(6424), 1, + anon_sym_for, + ACTIONS(6426), 1, + anon_sym_RBRACE, + ACTIONS(6428), 1, + anon_sym_and, + ACTIONS(6430), 1, + anon_sym_or, + STATE(4245), 1, + sym_for_in_clause, + STATE(4994), 1, + aux_sym__collection_elements_repeat1, + STATE(5568), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [159960] = 8, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(6320), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3494), 1, + ACTIONS(5667), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3716), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6318), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5670), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [162329] = 7, - ACTIONS(3804), 1, + [159991] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(6323), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3573), 2, + STATE(3685), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6238), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(6432), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [162358] = 8, - ACTIONS(4325), 1, + [160020] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5680), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, + anon_sym___stdcall, + ACTIONS(5682), 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, + [160041] = 8, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5951), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3717), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5591), 3, + ACTIONS(5954), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [162389] = 8, - ACTIONS(4325), 1, + [160072] = 7, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - ACTIONS(5843), 1, - anon_sym_LPAREN, - STATE(3493), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5846), 3, - anon_sym_RPAREN, + ACTIONS(5944), 4, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [162420] = 3, + anon_sym_RBRACK, + [160101] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5483), 4, + ACTIONS(6033), 4, anon_sym_STAR, sym_identifier, anon_sym_complex, anon_sym___stdcall, - ACTIONS(4416), 8, + ACTIONS(6035), 8, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -258077,604 +263109,543 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_QMARK, - [162441] = 7, - ACTIONS(3804), 1, + [160122] = 8, + ACTIONS(5667), 1, + anon_sym_LPAREN, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(6326), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3575), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(5670), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6250), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [162470] = 7, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(6329), 1, - anon_sym_LBRACK, - STATE(3494), 1, - sym_type_index, + [160153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3591), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, + ACTIONS(6434), 4, + anon_sym_STAR, + sym_identifier, + anon_sym_complex, anon_sym___stdcall, - ACTIONS(6252), 4, - sym__newline, + ACTIONS(6436), 8, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_EQ, - [162499] = 7, - ACTIONS(4325), 1, + anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_GT, + anon_sym_QMARK, + [160174] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6440), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5850), 4, + ACTIONS(6438), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [162528] = 7, - ACTIONS(3804), 1, + [160203] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(6334), 1, + ACTIONS(6443), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3592), 2, + STATE(3645), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6332), 4, + ACTIONS(6364), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [162557] = 7, - ACTIONS(4325), 1, + [160232] = 8, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(3493), 1, + ACTIONS(6446), 1, + anon_sym_complex, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3679), 2, + STATE(3764), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6276), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5655), 3, + sym__newline, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_EQ, - [162586] = 3, + [160263] = 4, + ACTIONS(5680), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6337), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(6339), 8, + ACTIONS(6001), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(5682), 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, - [162607] = 7, - ACTIONS(5961), 1, + anon_sym_complex, + anon_sym___stdcall, + [160286] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6448), 1, anon_sym_LBRACK, - STATE(3719), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3657), 2, + STATE(3630), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5838), 4, + ACTIONS(6432), 4, + sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [162636] = 7, - ACTIONS(3804), 1, + [160315] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(6341), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6291), 4, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [162665] = 13, - ACTIONS(6344), 1, + ACTIONS(6339), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(6346), 1, - anon_sym_as, - ACTIONS(6348), 1, - anon_sym_if, - ACTIONS(6350), 1, anon_sym_COLON, - ACTIONS(6352), 1, - anon_sym_async, - ACTIONS(6354), 1, - anon_sym_for, - ACTIONS(6356), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_and, - ACTIONS(6360), 1, - anon_sym_or, - STATE(4210), 1, - sym_for_in_clause, - STATE(5164), 1, - aux_sym__collection_elements_repeat1, - STATE(5537), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [162706] = 7, - ACTIONS(4325), 1, + anon_sym_EQ, + [160344] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6451), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5809), 4, + ACTIONS(6371), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [162735] = 7, - ACTIONS(5961), 1, + [160373] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3719), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5838), 4, - anon_sym_LPAREN, + ACTIONS(6344), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACK, - [162764] = 9, - ACTIONS(3804), 1, + [160402] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(6454), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, - anon_sym_LPAREN, - ACTIONS(6362), 1, - anon_sym_complex, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5850), 2, - sym__newline, - anon_sym_COLON, - STATE(3682), 2, + STATE(3647), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [162797] = 8, - ACTIONS(5515), 1, + ACTIONS(6373), 4, + sym__newline, anon_sym_LPAREN, - ACTIONS(5961), 1, - anon_sym_STAR, - ACTIONS(5965), 1, - anon_sym_LBRACK, - STATE(3719), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3614), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5591), 3, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5963), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [162828] = 8, - ACTIONS(4325), 1, + [160431] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5780), 1, - anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3701), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5783), 3, + ACTIONS(6349), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [162859] = 8, - ACTIONS(4325), 1, + [160460] = 13, + ACTIONS(6414), 1, + anon_sym_COMMA, + ACTIONS(6416), 1, + anon_sym_as, + ACTIONS(6418), 1, + anon_sym_if, + ACTIONS(6420), 1, + anon_sym_COLON, + ACTIONS(6422), 1, + anon_sym_async, + ACTIONS(6424), 1, + anon_sym_for, + ACTIONS(6426), 1, + anon_sym_RBRACE, + ACTIONS(6428), 1, + anon_sym_and, + ACTIONS(6430), 1, + anon_sym_or, + STATE(4245), 1, + sym_for_in_clause, + STATE(4994), 1, + aux_sym__collection_elements_repeat1, + STATE(5580), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [160501] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, - anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5850), 3, + ACTIONS(6354), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [162890] = 8, - ACTIONS(5843), 1, - anon_sym_LPAREN, - ACTIONS(5961), 1, + [160530] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3719), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3725), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5846), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5963), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [162921] = 7, - ACTIONS(5961), 1, + ACTIONS(6359), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [160559] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3719), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5846), 4, + ACTIONS(5676), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [162950] = 13, - ACTIONS(6344), 1, - anon_sym_COMMA, - ACTIONS(6346), 1, - anon_sym_as, - ACTIONS(6348), 1, - anon_sym_if, - ACTIONS(6350), 1, - anon_sym_COLON, - ACTIONS(6352), 1, - anon_sym_async, - ACTIONS(6354), 1, - anon_sym_for, - ACTIONS(6356), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_and, - ACTIONS(6360), 1, - anon_sym_or, - STATE(4210), 1, - sym_for_in_clause, - STATE(5164), 1, - aux_sym__collection_elements_repeat1, - STATE(5711), 1, - sym__comprehension_clauses, + [160588] = 3, + ACTIONS(5993), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [162991] = 7, - ACTIONS(3804), 1, + ACTIONS(5995), 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, + [160609] = 8, + ACTIONS(5951), 1, + anon_sym_LPAREN, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(6366), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(5954), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6364), 4, - sym__newline, + [160640] = 9, + ACTIONS(3908), 1, + anon_sym_STAR, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(5642), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [163020] = 3, + ACTIONS(6457), 1, + anon_sym_complex, + STATE(3525), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5915), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_complex, - anon_sym___stdcall, - ACTIONS(5917), 8, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5645), 2, + sym__newline, anon_sym_COLON, + STATE(3762), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3924), 3, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [163041] = 7, - ACTIONS(3804), 1, + anon_sym___stdcall, + [160673] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(6369), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3629), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6281), 4, - sym__newline, + ACTIONS(5645), 4, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [163070] = 8, - ACTIONS(5515), 1, - anon_sym_LPAREN, - ACTIONS(5961), 1, + [160702] = 4, + ACTIONS(6033), 1, anon_sym_STAR, - ACTIONS(5965), 1, - anon_sym_LBRACK, - STATE(3719), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3658), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5591), 3, + ACTIONS(6459), 2, + anon_sym_int, + anon_sym_double, + ACTIONS(6035), 9, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(5963), 3, - anon_sym_STAR_STAR, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [163101] = 13, - ACTIONS(6344), 1, + [160725] = 13, + ACTIONS(6414), 1, anon_sym_COMMA, - ACTIONS(6346), 1, + ACTIONS(6416), 1, anon_sym_as, - ACTIONS(6348), 1, + ACTIONS(6418), 1, anon_sym_if, - ACTIONS(6350), 1, + ACTIONS(6420), 1, anon_sym_COLON, - ACTIONS(6352), 1, + ACTIONS(6422), 1, anon_sym_async, - ACTIONS(6354), 1, + ACTIONS(6424), 1, anon_sym_for, - ACTIONS(6356), 1, + ACTIONS(6426), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6428), 1, anon_sym_and, - ACTIONS(6360), 1, + ACTIONS(6430), 1, anon_sym_or, - STATE(4210), 1, + STATE(4245), 1, sym_for_in_clause, - STATE(5164), 1, + STATE(4994), 1, aux_sym__collection_elements_repeat1, - STATE(5809), 1, + STATE(5541), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163142] = 7, - ACTIONS(4325), 1, + [160766] = 7, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6211), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [163171] = 8, - ACTIONS(4325), 1, - anon_sym_STAR, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(6213), 1, + ACTIONS(5954), 4, anon_sym_LPAREN, - STATE(3493), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3677), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(4327), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6211), 3, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [163202] = 7, - ACTIONS(4325), 1, + anon_sym_RBRACK, + [160795] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6463), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3631), 2, + STATE(3637), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5838), 4, + ACTIONS(6461), 4, + sym__newline, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [163231] = 8, - ACTIONS(4325), 1, + [160824] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, - anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, @@ -258682,3019 +263653,3233 @@ static const uint16_t ts_small_parse_table[] = { STATE(3635), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5591), 3, + ACTIONS(6366), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [163262] = 8, - ACTIONS(4325), 1, + [160853] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5843), 1, - anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3636), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5846), 3, + ACTIONS(6375), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [163293] = 13, - ACTIONS(6344), 1, + [160882] = 13, + ACTIONS(6414), 1, anon_sym_COMMA, - ACTIONS(6346), 1, + ACTIONS(6416), 1, anon_sym_as, - ACTIONS(6348), 1, + ACTIONS(6418), 1, anon_sym_if, - ACTIONS(6350), 1, + ACTIONS(6420), 1, anon_sym_COLON, - ACTIONS(6352), 1, + ACTIONS(6422), 1, anon_sym_async, - ACTIONS(6354), 1, + ACTIONS(6424), 1, anon_sym_for, - ACTIONS(6356), 1, + ACTIONS(6426), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6428), 1, anon_sym_and, - ACTIONS(6360), 1, + ACTIONS(6430), 1, anon_sym_or, - STATE(4210), 1, + STATE(4245), 1, sym_for_in_clause, - STATE(5164), 1, + STATE(4994), 1, aux_sym__collection_elements_repeat1, - STATE(5820), 1, + STATE(5732), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163334] = 13, - ACTIONS(6344), 1, + [160923] = 13, + ACTIONS(6414), 1, anon_sym_COMMA, - ACTIONS(6346), 1, + ACTIONS(6416), 1, anon_sym_as, - ACTIONS(6348), 1, + ACTIONS(6418), 1, anon_sym_if, - ACTIONS(6350), 1, + ACTIONS(6420), 1, anon_sym_COLON, - ACTIONS(6352), 1, + ACTIONS(6422), 1, anon_sym_async, - ACTIONS(6354), 1, + ACTIONS(6424), 1, anon_sym_for, - ACTIONS(6356), 1, + ACTIONS(6426), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6428), 1, anon_sym_and, - ACTIONS(6360), 1, + ACTIONS(6430), 1, anon_sym_or, - STATE(4210), 1, + STATE(4245), 1, sym_for_in_clause, - STATE(5164), 1, + STATE(4994), 1, aux_sym__collection_elements_repeat1, - STATE(5485), 1, + STATE(5669), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163375] = 7, - ACTIONS(4325), 1, + [160964] = 7, + ACTIONS(4429), 1, + anon_sym_STAR, + ACTIONS(4433), 1, + anon_sym_LBRACK, + STATE(3536), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3508), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(4431), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5944), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [160993] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6240), 4, + ACTIONS(6404), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [163404] = 13, - ACTIONS(6344), 1, + [161022] = 13, + ACTIONS(6414), 1, anon_sym_COMMA, - ACTIONS(6346), 1, + ACTIONS(6416), 1, anon_sym_as, - ACTIONS(6348), 1, + ACTIONS(6418), 1, anon_sym_if, - ACTIONS(6350), 1, + ACTIONS(6420), 1, anon_sym_COLON, - ACTIONS(6352), 1, + ACTIONS(6422), 1, anon_sym_async, - ACTIONS(6354), 1, + ACTIONS(6424), 1, anon_sym_for, - ACTIONS(6356), 1, + ACTIONS(6426), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6428), 1, anon_sym_and, - ACTIONS(6360), 1, + ACTIONS(6430), 1, anon_sym_or, - STATE(4210), 1, + STATE(4245), 1, sym_for_in_clause, - STATE(5164), 1, + STATE(4994), 1, aux_sym__collection_elements_repeat1, - STATE(5629), 1, + STATE(5875), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163445] = 7, - ACTIONS(4325), 1, + [161063] = 7, + ACTIONS(6466), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(6472), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3605), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(6469), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6245), 4, - anon_sym_RPAREN, + ACTIONS(6105), 4, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [163474] = 13, - ACTIONS(6344), 1, + anon_sym_RBRACK, + [161092] = 13, + ACTIONS(6414), 1, anon_sym_COMMA, - ACTIONS(6346), 1, + ACTIONS(6416), 1, anon_sym_as, - ACTIONS(6348), 1, + ACTIONS(6418), 1, anon_sym_if, - ACTIONS(6350), 1, + ACTIONS(6420), 1, anon_sym_COLON, - ACTIONS(6352), 1, + ACTIONS(6422), 1, anon_sym_async, - ACTIONS(6354), 1, + ACTIONS(6424), 1, anon_sym_for, - ACTIONS(6356), 1, + ACTIONS(6426), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6428), 1, anon_sym_and, - ACTIONS(6360), 1, + ACTIONS(6430), 1, anon_sym_or, - STATE(4210), 1, + STATE(4245), 1, sym_for_in_clause, - STATE(5164), 1, + STATE(4994), 1, aux_sym__collection_elements_repeat1, - STATE(5761), 1, + STATE(5675), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [163515] = 7, - ACTIONS(5961), 1, + [161133] = 8, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3719), 1, + ACTIONS(5667), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5850), 4, - anon_sym_LPAREN, + ACTIONS(5670), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [163544] = 7, - ACTIONS(5961), 1, + [161164] = 7, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3719), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5809), 4, + ACTIONS(5645), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [163573] = 8, - ACTIONS(5780), 1, - anon_sym_LPAREN, - ACTIONS(5961), 1, + [161193] = 13, + ACTIONS(6414), 1, + anon_sym_COMMA, + ACTIONS(6416), 1, + anon_sym_as, + ACTIONS(6418), 1, + anon_sym_if, + ACTIONS(6420), 1, + anon_sym_COLON, + ACTIONS(6422), 1, + anon_sym_async, + ACTIONS(6424), 1, + anon_sym_for, + ACTIONS(6426), 1, + anon_sym_RBRACE, + ACTIONS(6428), 1, + anon_sym_and, + ACTIONS(6430), 1, + anon_sym_or, + STATE(4245), 1, + sym_for_in_clause, + STATE(4994), 1, + aux_sym__collection_elements_repeat1, + STATE(5797), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [161234] = 8, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3719), 1, + ACTIONS(5951), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5783), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5963), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [163604] = 8, - ACTIONS(5787), 1, - anon_sym_LPAREN, - ACTIONS(5961), 1, + ACTIONS(5954), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [161265] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3719), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5850), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5963), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [163635] = 7, - ACTIONS(4325), 1, + ACTIONS(5954), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [161294] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3612), 2, + STATE(3697), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6332), 4, + ACTIONS(6461), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [163664] = 7, - ACTIONS(4325), 1, + [161323] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6364), 4, + ACTIONS(6409), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [163693] = 7, - ACTIONS(5961), 1, + [161352] = 7, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3719), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6211), 4, + ACTIONS(5970), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [163722] = 8, - ACTIONS(5961), 1, + [161381] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(6213), 1, - anon_sym_LPAREN, - STATE(3719), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6211), 3, + ACTIONS(5970), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - anon_sym_RBRACK, - [163753] = 8, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(5961), 1, + [161410] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3719), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5863), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - ACTIONS(5963), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [163784] = 8, - ACTIONS(5961), 1, + ACTIONS(5898), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [161439] = 9, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6189), 1, + ACTIONS(5905), 1, anon_sym_LPAREN, - STATE(3719), 1, + ACTIONS(6475), 1, + anon_sym_complex, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3614), 2, + ACTIONS(5970), 2, + sym__newline, + anon_sym_COLON, + STATE(3741), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6192), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [163815] = 8, - ACTIONS(4325), 1, + [161472] = 8, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(6213), 1, + ACTIONS(5902), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6211), 3, + ACTIONS(5968), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [163846] = 7, - ACTIONS(3804), 1, + [161503] = 8, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(6372), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3494), 1, + ACTIONS(5905), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6287), 4, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5970), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [163875] = 7, - ACTIONS(3804), 1, + [161534] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(6375), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3615), 2, + STATE(3659), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6289), 4, + ACTIONS(6477), 4, sym__newline, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, - [163904] = 7, - ACTIONS(4325), 1, + [161563] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6308), 4, + ACTIONS(6279), 4, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [163933] = 8, - ACTIONS(4325), 1, + [161592] = 8, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(5860), 1, + ACTIONS(6288), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5863), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [163964] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6108), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6110), 8, - anon_sym_LPAREN, + ACTIONS(6279), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [163985] = 7, - ACTIONS(5961), 1, + [161623] = 8, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3719), 1, + ACTIONS(5941), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3632), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5530), 4, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [164014] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6108), 4, - anon_sym_STAR, - sym_identifier, - anon_sym_operator, - anon_sym___stdcall, - ACTIONS(6110), 8, - sym__newline, - anon_sym_LPAREN, + ACTIONS(5960), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - [164035] = 7, - ACTIONS(4325), 1, + [161654] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3610), 2, + STATE(3711), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5530), 4, - anon_sym_LPAREN, + ACTIONS(6477), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, anon_sym_EQ, - [164064] = 7, - ACTIONS(4325), 1, + [161683] = 8, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - STATE(3493), 1, + ACTIONS(6260), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3593), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6313), 4, + ACTIONS(6263), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_EQ, - [164093] = 7, - ACTIONS(5961), 1, + [161714] = 7, + ACTIONS(6017), 1, anon_sym_STAR, - ACTIONS(5965), 1, + ACTIONS(6021), 1, anon_sym_LBRACK, - STATE(3719), 1, + STATE(3747), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3638), 2, + STATE(3703), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5963), 3, + ACTIONS(6019), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5553), 4, + ACTIONS(5898), 4, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_EQ, anon_sym_RBRACK, - [164122] = 8, - ACTIONS(4325), 1, + [161743] = 7, + ACTIONS(4429), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(4433), 1, anon_sym_LBRACK, - ACTIONS(6189), 1, - anon_sym_LPAREN, - STATE(3493), 1, + STATE(3536), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3508), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(4431), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6192), 3, + ACTIONS(6438), 4, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [161772] = 5, + ACTIONS(6206), 1, + anon_sym_STAR, + ACTIONS(6482), 1, + anon_sym_DOT, + STATE(3800), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6208), 8, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR_STAR, anon_sym_EQ, - [164153] = 13, - ACTIONS(6344), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [161796] = 12, + ACTIONS(6484), 1, + anon_sym_RPAREN, + ACTIONS(6486), 1, anon_sym_COMMA, - ACTIONS(6346), 1, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6348), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6350), 1, - anon_sym_COLON, - ACTIONS(6352), 1, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6354), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(6356), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6360), 1, + ACTIONS(6499), 1, anon_sym_or, - STATE(4210), 1, + STATE(4218), 1, sym_for_in_clause, - STATE(5164), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, - STATE(5557), 1, + STATE(5526), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164194] = 7, - ACTIONS(4325), 1, + [161834] = 10, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6505), 1, + anon_sym_EQ, + ACTIONS(6507), 1, + anon_sym_LBRACK, + ACTIONS(6510), 1, + sym__newline, + ACTIONS(6512), 1, + sym_string_start, + STATE(4091), 1, + sym_string, + STATE(5173), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6501), 2, + anon_sym_LPAREN, + sym_identifier, + STATE(4093), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [161868] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(6318), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5676), 3, + sym__newline, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_EQ, - [164223] = 3, + [161896] = 9, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5642), 1, + anon_sym_LPAREN, + ACTIONS(6515), 1, + sym_identifier, + ACTIONS(6517), 1, + anon_sym_complex, + STATE(3597), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6100), 4, + ACTIONS(5090), 2, anon_sym_STAR, - sym_identifier, - anon_sym_complex, anon_sym___stdcall, - ACTIONS(6102), 8, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(5092), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_GT, - anon_sym_QMARK, - [164244] = 7, - ACTIONS(4325), 1, + STATE(3829), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [161928] = 8, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(4329), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(3493), 1, + ACTIONS(5905), 1, + anon_sym_LPAREN, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3454), 2, + ACTIONS(5970), 2, + sym__newline, + anon_sym_COLON, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(4327), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5846), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, + [161958] = 10, + ACTIONS(6503), 1, anon_sym_COMMA, - anon_sym_EQ, - [164273] = 8, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(6507), 1, anon_sym_LBRACK, - ACTIONS(6213), 1, + ACTIONS(6512), 1, + sym_string_start, + ACTIONS(6519), 1, + anon_sym_EQ, + ACTIONS(6521), 1, + sym__newline, + STATE(4102), 1, + sym_string, + STATE(5191), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6501), 2, anon_sym_LPAREN, - STATE(3494), 1, + sym_identifier, + STATE(4103), 2, sym_type_index, + aux_sym_cvar_decl_repeat1, + [161992] = 12, + ACTIONS(6489), 1, + anon_sym_as, + ACTIONS(6491), 1, + anon_sym_if, + ACTIONS(6493), 1, + anon_sym_async, + ACTIONS(6495), 1, + anon_sym_for, + ACTIONS(6497), 1, + anon_sym_and, + ACTIONS(6499), 1, + anon_sym_or, + ACTIONS(6523), 1, + anon_sym_RPAREN, + ACTIONS(6525), 1, + anon_sym_COMMA, + STATE(4218), 1, + sym_for_in_clause, + STATE(5196), 1, + aux_sym_argument_list_repeat1, + STATE(5526), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6211), 2, - sym__newline, - anon_sym_COLON, - STATE(3456), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [164303] = 8, + [162030] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6384), 1, + ACTIONS(6533), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3693), 3, + STATE(3735), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [164333] = 8, + [162060] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6386), 1, + ACTIONS(6535), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3686), 3, + STATE(3790), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [164363] = 9, - ACTIONS(4992), 1, + [162090] = 12, + ACTIONS(6489), 1, + anon_sym_as, + ACTIONS(6491), 1, + anon_sym_if, + ACTIONS(6493), 1, + anon_sym_async, + ACTIONS(6495), 1, + anon_sym_for, + ACTIONS(6497), 1, + anon_sym_and, + ACTIONS(6499), 1, + anon_sym_or, + ACTIONS(6537), 1, + anon_sym_RPAREN, + ACTIONS(6539), 1, + anon_sym_COMMA, + STATE(4218), 1, + sym_for_in_clause, + STATE(4808), 1, + aux_sym__collection_elements_repeat1, + STATE(5684), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162128] = 9, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5846), 1, + ACTIONS(5954), 1, anon_sym_LPAREN, - ACTIONS(6388), 1, + ACTIONS(6541), 1, sym_identifier, - ACTIONS(6390), 1, + ACTIONS(6543), 1, anon_sym_complex, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3799), 2, + STATE(3854), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164395] = 8, + [162160] = 12, + ACTIONS(6426), 1, + anon_sym_RBRACK, + ACTIONS(6545), 1, + anon_sym_COMMA, + ACTIONS(6547), 1, + anon_sym_as, + ACTIONS(6549), 1, + anon_sym_if, + ACTIONS(6551), 1, + anon_sym_async, + ACTIONS(6553), 1, + anon_sym_for, + ACTIONS(6555), 1, + anon_sym_and, + ACTIONS(6557), 1, + anon_sym_or, + STATE(4165), 1, + sym_for_in_clause, + STATE(5016), 1, + aux_sym__collection_elements_repeat1, + STATE(5546), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [162198] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6392), 1, + ACTIONS(6559), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3738), 3, + STATE(3806), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [164425] = 7, - ACTIONS(3804), 1, + [162228] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5553), 3, + ACTIONS(6279), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [164453] = 7, - ACTIONS(3804), 1, + [162256] = 8, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(3494), 1, + ACTIONS(6288), 1, + anon_sym_LPAREN, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3695), 2, + ACTIONS(6279), 2, + sym__newline, + anon_sym_COLON, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5850), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [164481] = 7, - ACTIONS(3804), 1, + [162286] = 8, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(3494), 1, + ACTIONS(5941), 1, + anon_sym_LPAREN, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3724), 2, + ACTIONS(5960), 2, + sym__newline, + anon_sym_COLON, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5530), 3, + [162316] = 10, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6507), 1, + anon_sym_LBRACK, + ACTIONS(6512), 1, + sym_string_start, + ACTIONS(6561), 1, + anon_sym_EQ, + ACTIONS(6563), 1, sym__newline, + STATE(4110), 1, + sym_string, + STATE(5240), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6501), 2, anon_sym_LPAREN, - anon_sym_COLON, - [164509] = 10, - ACTIONS(6396), 1, + sym_identifier, + STATE(4111), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [162350] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6527), 1, + anon_sym_LBRACE, + ACTIONS(6531), 1, + anon_sym_BSLASH, + ACTIONS(6565), 1, + sym_string_end, + STATE(4004), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6529), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3756), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [162380] = 10, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6398), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6507), 1, anon_sym_LBRACK, - ACTIONS(6403), 1, - sym__newline, - ACTIONS(6405), 1, + ACTIONS(6512), 1, sym_string_start, - STATE(4216), 1, + ACTIONS(6567), 1, + anon_sym_EQ, + ACTIONS(6569), 1, + sym__newline, + STATE(4184), 1, sym_string, - STATE(5214), 1, + STATE(4990), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6394), 2, + ACTIONS(6501), 2, anon_sym_LPAREN, sym_identifier, - STATE(4137), 2, + STATE(4187), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [164543] = 12, - ACTIONS(6408), 1, - anon_sym_RPAREN, - ACTIONS(6410), 1, + [162414] = 7, + ACTIONS(3908), 1, + anon_sym_STAR, + ACTIONS(3918), 1, + anon_sym_LBRACK, + STATE(3525), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3751), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3924), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5676), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [162442] = 5, + ACTIONS(6196), 1, + anon_sym_STAR, + ACTIONS(6482), 1, + anon_sym_DOT, + STATE(3726), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6200), 8, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(6412), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [162466] = 12, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6416), 1, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6418), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(6420), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6499), 1, anon_sym_or, - STATE(4104), 1, + ACTIONS(6571), 1, + anon_sym_RPAREN, + ACTIONS(6573), 1, + anon_sym_COMMA, + STATE(4218), 1, sym_for_in_clause, - STATE(4831), 1, + STATE(4877), 1, aux_sym_argument_list_repeat1, - STATE(5720), 1, + STATE(5684), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164581] = 8, - ACTIONS(3804), 1, + [162504] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6527), 1, + anon_sym_LBRACE, + ACTIONS(6531), 1, + anon_sym_BSLASH, + ACTIONS(6575), 1, + sym_string_end, + STATE(4004), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6529), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3772), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [162534] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6527), 1, + anon_sym_LBRACE, + ACTIONS(6531), 1, + anon_sym_BSLASH, + ACTIONS(6577), 1, + sym_string_end, + STATE(4004), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6529), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3759), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [162564] = 7, + ACTIONS(3908), 1, + anon_sym_STAR, + ACTIONS(3918), 1, + anon_sym_LBRACK, + STATE(3525), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3497), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3924), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5944), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [162592] = 7, + ACTIONS(3908), 1, + anon_sym_STAR, + ACTIONS(3918), 1, + anon_sym_LBRACK, + STATE(3525), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3771), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3924), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5645), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [162620] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6579), 11, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + anon_sym_api, + anon_sym_cdef, + anon_sym_cpdef, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [162638] = 8, + ACTIONS(3908), 1, + anon_sym_STAR, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_LPAREN, + STATE(3525), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5670), 2, + sym__newline, + anon_sym_COLON, + STATE(3497), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3924), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [162668] = 8, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, + ACTIONS(6260), 1, anon_sym_LPAREN, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5850), 2, + ACTIONS(6263), 2, sym__newline, anon_sym_COLON, - STATE(3456), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [164611] = 8, + [162698] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6424), 1, + ACTIONS(6581), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3738), 3, + STATE(3790), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [164641] = 12, - ACTIONS(6412), 1, + [162728] = 12, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6416), 1, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6418), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(6420), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6499), 1, anon_sym_or, - ACTIONS(6426), 1, - anon_sym_RPAREN, - ACTIONS(6428), 1, + ACTIONS(6539), 1, anon_sym_COMMA, - STATE(4104), 1, + ACTIONS(6583), 1, + anon_sym_RPAREN, + STATE(4218), 1, sym_for_in_clause, - STATE(5158), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, - STATE(5643), 1, + STATE(5672), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164679] = 7, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3814), 1, - anon_sym_LBRACK, - STATE(3494), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3456), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(6211), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [164707] = 12, - ACTIONS(6412), 1, + [162766] = 12, + ACTIONS(6426), 1, + anon_sym_RBRACK, + ACTIONS(6545), 1, + anon_sym_COMMA, + ACTIONS(6547), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6549), 1, anon_sym_if, - ACTIONS(6416), 1, + ACTIONS(6551), 1, anon_sym_async, - ACTIONS(6418), 1, + ACTIONS(6553), 1, anon_sym_for, - ACTIONS(6420), 1, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6557), 1, anon_sym_or, - ACTIONS(6426), 1, - anon_sym_RPAREN, - ACTIONS(6431), 1, - anon_sym_COMMA, - STATE(4104), 1, + STATE(4165), 1, sym_for_in_clause, - STATE(5158), 1, + STATE(5016), 1, aux_sym__collection_elements_repeat1, - STATE(5643), 1, + STATE(5538), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164745] = 12, - ACTIONS(6356), 1, - anon_sym_RBRACK, - ACTIONS(6433), 1, - anon_sym_COMMA, - ACTIONS(6435), 1, + [162804] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(6527), 1, + anon_sym_LBRACE, + ACTIONS(6531), 1, + anon_sym_BSLASH, + ACTIONS(6585), 1, + sym_string_end, + STATE(4004), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6529), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3790), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [162834] = 12, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6437), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6439), 1, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6441), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(6443), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6499), 1, anon_sym_or, - STATE(4180), 1, + ACTIONS(6539), 1, + anon_sym_COMMA, + ACTIONS(6587), 1, + anon_sym_RPAREN, + STATE(4218), 1, sym_for_in_clause, - STATE(4998), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, - STATE(5526), 1, + STATE(5639), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164783] = 9, - ACTIONS(4992), 1, + [162872] = 9, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5561), 1, + ACTIONS(5655), 1, anon_sym_LPAREN, - ACTIONS(6447), 1, + ACTIONS(6589), 1, sym_identifier, - ACTIONS(6449), 1, + ACTIONS(6591), 1, anon_sym_complex, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3838), 2, + STATE(3845), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [164815] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6378), 1, - anon_sym_LBRACE, - ACTIONS(6382), 1, - anon_sym_BSLASH, - ACTIONS(6451), 1, - sym_string_end, - STATE(3986), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6380), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3725), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [164845] = 10, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6400), 1, + [162904] = 8, + ACTIONS(3908), 1, + anon_sym_STAR, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6405), 1, - sym_string_start, - ACTIONS(6453), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - sym__newline, - STATE(4121), 1, - sym_string, - STATE(5157), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(5951), 1, + anon_sym_LPAREN, + STATE(3525), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6394), 2, + ACTIONS(5954), 2, + sym__newline, + anon_sym_COLON, + STATE(3497), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3924), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + [162934] = 9, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5642), 1, anon_sym_LPAREN, + ACTIONS(6515), 1, sym_identifier, - STATE(4122), 2, + ACTIONS(6593), 1, + anon_sym_complex, + STATE(3597), 1, sym_type_index, - aux_sym_cvar_decl_repeat1, - [164879] = 5, - ACTIONS(6053), 1, - anon_sym_STAR, - ACTIONS(6457), 1, - anon_sym_DOT, - STATE(3701), 1, - aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6058), 8, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, anon_sym_STAR_STAR, - anon_sym_EQ, + anon_sym_AMP, + STATE(3821), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [162966] = 7, + ACTIONS(3908), 1, + anon_sym_STAR, + ACTIONS(3918), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(3525), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3497), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3924), 3, + anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [164903] = 12, - ACTIONS(6412), 1, + ACTIONS(5645), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [162994] = 12, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6416), 1, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6418), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(6420), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6499), 1, anon_sym_or, - ACTIONS(6460), 1, + ACTIONS(6595), 1, anon_sym_RPAREN, - ACTIONS(6462), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - STATE(4104), 1, + STATE(4218), 1, sym_for_in_clause, - STATE(5218), 1, + STATE(4929), 1, aux_sym_argument_list_repeat1, - STATE(5580), 1, + STATE(5639), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [164941] = 10, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6405), 1, - sym_string_start, - ACTIONS(6464), 1, - anon_sym_EQ, - ACTIONS(6466), 1, - sym__newline, - STATE(4102), 1, - sym_string, - STATE(4772), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6394), 2, - anon_sym_LPAREN, - sym_identifier, - STATE(4103), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [164975] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6108), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(6110), 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, - [164995] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6378), 1, - anon_sym_LBRACE, - ACTIONS(6382), 1, - anon_sym_BSLASH, - ACTIONS(6468), 1, - sym_string_end, - STATE(3986), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6380), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3706), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [165025] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6378), 1, - anon_sym_LBRACE, - ACTIONS(6382), 1, - anon_sym_BSLASH, - ACTIONS(6470), 1, - sym_string_end, - STATE(3986), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6380), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3738), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [165055] = 12, - ACTIONS(6412), 1, + [163032] = 12, + ACTIONS(6426), 1, + anon_sym_RBRACK, + ACTIONS(6545), 1, + anon_sym_COMMA, + ACTIONS(6547), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6549), 1, anon_sym_if, - ACTIONS(6416), 1, + ACTIONS(6551), 1, anon_sym_async, - ACTIONS(6418), 1, + ACTIONS(6553), 1, anon_sym_for, - ACTIONS(6420), 1, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6557), 1, anon_sym_or, - ACTIONS(6431), 1, - anon_sym_COMMA, - ACTIONS(6472), 1, - anon_sym_RPAREN, - STATE(4104), 1, + STATE(4165), 1, sym_for_in_clause, - STATE(5158), 1, + STATE(5016), 1, aux_sym__collection_elements_repeat1, - STATE(5755), 1, + STATE(5690), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165093] = 8, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(5780), 1, - anon_sym_LPAREN, - STATE(3494), 1, - sym_type_index, + [163070] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5783), 2, - sym__newline, + ACTIONS(6196), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(6200), 8, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, - STATE(3737), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - [165123] = 10, - ACTIONS(6396), 1, + anon_sym_GT, + anon_sym_QMARK, + [163090] = 10, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6400), 1, + ACTIONS(6507), 1, anon_sym_LBRACK, - ACTIONS(6405), 1, + ACTIONS(6512), 1, sym_string_start, - ACTIONS(6474), 1, + ACTIONS(6599), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6601), 1, sym__newline, - STATE(4067), 1, + STATE(4128), 1, sym_string, - STATE(4817), 1, + STATE(5100), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6394), 2, + ACTIONS(6501), 2, anon_sym_LPAREN, sym_identifier, - STATE(4068), 2, + STATE(4129), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [165157] = 12, - ACTIONS(6412), 1, + [163124] = 12, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6416), 1, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6418), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(6420), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6499), 1, anon_sym_or, - ACTIONS(6478), 1, + ACTIONS(6603), 1, anon_sym_RPAREN, - ACTIONS(6480), 1, + ACTIONS(6605), 1, anon_sym_COMMA, - STATE(4104), 1, + STATE(4218), 1, sym_for_in_clause, - STATE(4880), 1, + STATE(5117), 1, aux_sym_argument_list_repeat1, - STATE(5755), 1, + STATE(5672), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165195] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6482), 11, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - anon_sym_api, - anon_sym_cdef, - anon_sym_cpdef, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [165213] = 12, - ACTIONS(6356), 1, + [163162] = 12, + ACTIONS(6426), 1, anon_sym_RBRACK, - ACTIONS(6433), 1, + ACTIONS(6545), 1, anon_sym_COMMA, - ACTIONS(6435), 1, + ACTIONS(6547), 1, anon_sym_as, - ACTIONS(6437), 1, + ACTIONS(6549), 1, anon_sym_if, - ACTIONS(6439), 1, + ACTIONS(6551), 1, anon_sym_async, - ACTIONS(6441), 1, + ACTIONS(6553), 1, anon_sym_for, - ACTIONS(6443), 1, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6557), 1, anon_sym_or, - STATE(4180), 1, + STATE(4165), 1, sym_for_in_clause, - STATE(4998), 1, + STATE(5016), 1, aux_sym__collection_elements_repeat1, - STATE(5690), 1, + STATE(5651), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165251] = 8, + [163200] = 7, + ACTIONS(3908), 1, + anon_sym_STAR, + ACTIONS(3918), 1, + anon_sym_LBRACK, + STATE(3525), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3497), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(3924), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5954), 3, + sym__newline, + anon_sym_LPAREN, + anon_sym_COLON, + [163228] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6484), 1, + ACTIONS(6607), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3715), 3, + STATE(3790), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [165281] = 8, + [163258] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6486), 1, + ACTIONS(6609), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3738), 3, + STATE(3774), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [165311] = 8, + [163288] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6488), 1, + ACTIONS(6611), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3738), 3, + STATE(3790), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [165341] = 12, - ACTIONS(6412), 1, - anon_sym_as, - ACTIONS(6414), 1, - anon_sym_if, - ACTIONS(6416), 1, - anon_sym_async, - ACTIONS(6418), 1, - anon_sym_for, - ACTIONS(6420), 1, - anon_sym_and, - ACTIONS(6422), 1, - anon_sym_or, - ACTIONS(6431), 1, - anon_sym_COMMA, - ACTIONS(6490), 1, - anon_sym_RPAREN, - STATE(4104), 1, - sym_for_in_clause, - STATE(5158), 1, - aux_sym__collection_elements_repeat1, - STATE(5474), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165379] = 12, - ACTIONS(6412), 1, - anon_sym_as, - ACTIONS(6414), 1, - anon_sym_if, - ACTIONS(6416), 1, - anon_sym_async, - ACTIONS(6418), 1, - anon_sym_for, - ACTIONS(6420), 1, - anon_sym_and, - ACTIONS(6422), 1, - anon_sym_or, - ACTIONS(6492), 1, - anon_sym_RPAREN, - ACTIONS(6494), 1, - anon_sym_COMMA, - STATE(4104), 1, - sym_for_in_clause, - STATE(4911), 1, - aux_sym_argument_list_repeat1, - STATE(5474), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [165417] = 12, - ACTIONS(6356), 1, + [163318] = 12, + ACTIONS(6426), 1, anon_sym_RBRACK, - ACTIONS(6433), 1, + ACTIONS(6545), 1, anon_sym_COMMA, - ACTIONS(6435), 1, + ACTIONS(6547), 1, anon_sym_as, - ACTIONS(6437), 1, + ACTIONS(6549), 1, anon_sym_if, - ACTIONS(6439), 1, + ACTIONS(6551), 1, anon_sym_async, - ACTIONS(6441), 1, + ACTIONS(6553), 1, anon_sym_for, - ACTIONS(6443), 1, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6557), 1, anon_sym_or, - STATE(4180), 1, + STATE(4165), 1, sym_for_in_clause, - STATE(4998), 1, + STATE(5016), 1, aux_sym__collection_elements_repeat1, - STATE(5745), 1, + STATE(5863), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165455] = 5, - ACTIONS(6108), 1, - anon_sym_STAR, - ACTIONS(6496), 1, - anon_sym_DOT, - STATE(3736), 1, - aux_sym_type_qualifier_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6110), 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, - [165479] = 9, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5787), 1, - anon_sym_LPAREN, - ACTIONS(6498), 1, - sym_identifier, - ACTIONS(6500), 1, - anon_sym_complex, - STATE(3540), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3824), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165511] = 7, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3814), 1, - anon_sym_LBRACK, - STATE(3494), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3456), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5850), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [165539] = 8, + [163356] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6502), 1, + ACTIONS(6613), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3732), 3, + STATE(3790), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [165569] = 9, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5787), 1, - anon_sym_LPAREN, - ACTIONS(6498), 1, - sym_identifier, - ACTIONS(6504), 1, - anon_sym_complex, - STATE(3540), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3791), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [165601] = 7, - ACTIONS(3804), 1, + [163386] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3801), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5838), 3, + ACTIONS(5944), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [165629] = 8, - ACTIONS(3), 1, + [163414] = 12, + ACTIONS(6489), 1, + anon_sym_as, + ACTIONS(6491), 1, + anon_sym_if, + ACTIONS(6493), 1, + anon_sym_async, + ACTIONS(6495), 1, + anon_sym_for, + ACTIONS(6497), 1, + anon_sym_and, + ACTIONS(6499), 1, + anon_sym_or, + ACTIONS(6539), 1, + anon_sym_COMMA, + ACTIONS(6615), 1, + anon_sym_RPAREN, + STATE(4218), 1, + sym_for_in_clause, + STATE(4808), 1, + aux_sym__collection_elements_repeat1, + STATE(5858), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, - anon_sym_LBRACE, - ACTIONS(6382), 1, - anon_sym_BSLASH, - ACTIONS(6506), 1, - sym_string_end, - STATE(3986), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6380), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3738), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [165659] = 8, - ACTIONS(3804), 1, + [163452] = 8, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5667), 1, anon_sym_LPAREN, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5591), 2, + ACTIONS(5670), 2, sym__newline, anon_sym_COLON, - STATE(3456), 2, + STATE(3810), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [165689] = 12, - ACTIONS(6356), 1, + [163482] = 12, + ACTIONS(6426), 1, anon_sym_RBRACK, - ACTIONS(6433), 1, + ACTIONS(6545), 1, anon_sym_COMMA, - ACTIONS(6435), 1, + ACTIONS(6547), 1, anon_sym_as, - ACTIONS(6437), 1, + ACTIONS(6549), 1, anon_sym_if, - ACTIONS(6439), 1, + ACTIONS(6551), 1, anon_sym_async, - ACTIONS(6441), 1, + ACTIONS(6553), 1, anon_sym_for, - ACTIONS(6443), 1, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6557), 1, anon_sym_or, - STATE(4180), 1, + STATE(4165), 1, sym_for_in_clause, - STATE(4998), 1, + STATE(5016), 1, aux_sym__collection_elements_repeat1, - STATE(5791), 1, + STATE(5668), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [163520] = 12, + ACTIONS(6489), 1, + anon_sym_as, + ACTIONS(6491), 1, + anon_sym_if, + ACTIONS(6493), 1, + anon_sym_async, + ACTIONS(6495), 1, + anon_sym_for, + ACTIONS(6497), 1, + anon_sym_and, + ACTIONS(6499), 1, + anon_sym_or, + ACTIONS(6617), 1, + anon_sym_RPAREN, + ACTIONS(6619), 1, + anon_sym_COMMA, + STATE(4218), 1, + sym_for_in_clause, + STATE(4965), 1, + aux_sym_argument_list_repeat1, + STATE(5858), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165727] = 9, - ACTIONS(4992), 1, + [163558] = 9, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5550), 1, + ACTIONS(5954), 1, anon_sym_LPAREN, - ACTIONS(6508), 1, + ACTIONS(6541), 1, sym_identifier, - ACTIONS(6510), 1, + ACTIONS(6621), 1, anon_sym_complex, - STATE(3540), 1, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3825), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [163590] = 9, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5905), 1, + anon_sym_LPAREN, + ACTIONS(6623), 1, + sym_identifier, + ACTIONS(6625), 1, + anon_sym_complex, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3815), 2, + STATE(3881), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [165759] = 8, - ACTIONS(3804), 1, + [163622] = 8, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(5780), 1, + ACTIONS(5951), 1, anon_sym_LPAREN, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5783), 2, + ACTIONS(5954), 2, sym__newline, anon_sym_COLON, - STATE(3456), 2, + STATE(3731), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [165789] = 8, + [163652] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6512), 1, + ACTIONS(6627), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3738), 3, + STATE(3787), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [165819] = 12, - ACTIONS(6356), 1, + [163682] = 12, + ACTIONS(6426), 1, anon_sym_RBRACK, - ACTIONS(6433), 1, + ACTIONS(6545), 1, anon_sym_COMMA, - ACTIONS(6435), 1, + ACTIONS(6547), 1, anon_sym_as, - ACTIONS(6437), 1, + ACTIONS(6549), 1, anon_sym_if, - ACTIONS(6439), 1, + ACTIONS(6551), 1, anon_sym_async, - ACTIONS(6441), 1, + ACTIONS(6553), 1, anon_sym_for, - ACTIONS(6443), 1, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6557), 1, anon_sym_or, - STATE(4180), 1, + STATE(4165), 1, sym_for_in_clause, - STATE(4998), 1, + STATE(5016), 1, aux_sym__collection_elements_repeat1, - STATE(5475), 1, + STATE(5779), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165857] = 8, + [163720] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6514), 1, + ACTIONS(6629), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3738), 3, + STATE(3790), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [165887] = 12, - ACTIONS(6412), 1, + [163750] = 12, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6416), 1, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6418), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(6420), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6499), 1, anon_sym_or, - ACTIONS(6431), 1, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(6516), 1, + ACTIONS(6631), 1, anon_sym_RPAREN, - STATE(4104), 1, + STATE(4218), 1, sym_for_in_clause, - STATE(5158), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, - STATE(5616), 1, + STATE(5661), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165925] = 12, - ACTIONS(6356), 1, - anon_sym_RBRACK, - ACTIONS(6433), 1, - anon_sym_COMMA, - ACTIONS(6435), 1, + [163788] = 12, + ACTIONS(6484), 1, + anon_sym_RPAREN, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6437), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6439), 1, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6441), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(6443), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6499), 1, anon_sym_or, - STATE(4180), 1, + ACTIONS(6539), 1, + anon_sym_COMMA, + STATE(4218), 1, sym_for_in_clause, - STATE(4998), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, - STATE(5617), 1, + STATE(5526), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [165963] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6378), 1, - anon_sym_LBRACE, - ACTIONS(6382), 1, - anon_sym_BSLASH, - ACTIONS(6518), 1, - sym_string_end, - STATE(3986), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6380), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3714), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [165993] = 5, - ACTIONS(6094), 1, - anon_sym_STAR, - ACTIONS(6496), 1, - anon_sym_DOT, - STATE(3701), 1, - aux_sym_type_qualifier_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6098), 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, - [166017] = 8, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(3494), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5863), 2, - sym__newline, - anon_sym_COLON, - STATE(3456), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [166047] = 8, + [163826] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6520), 1, + ACTIONS(6633), 1, anon_sym_LBRACE, - ACTIONS(6526), 1, + ACTIONS(6639), 1, anon_sym_BSLASH, - ACTIONS(6529), 1, + ACTIONS(6642), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6523), 3, + ACTIONS(6636), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3738), 3, + STATE(3790), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [166077] = 12, - ACTIONS(6356), 1, - anon_sym_RBRACK, - ACTIONS(6433), 1, - anon_sym_COMMA, - ACTIONS(6435), 1, - anon_sym_as, - ACTIONS(6437), 1, - anon_sym_if, - ACTIONS(6439), 1, - anon_sym_async, - ACTIONS(6441), 1, - anon_sym_for, - ACTIONS(6443), 1, - anon_sym_and, - ACTIONS(6445), 1, - anon_sym_or, - STATE(4180), 1, - sym_for_in_clause, - STATE(4998), 1, - aux_sym__collection_elements_repeat1, - STATE(5754), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166115] = 7, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3814), 1, - anon_sym_LBRACK, - STATE(3494), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3767), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - ACTIONS(5838), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [166143] = 9, - ACTIONS(4992), 1, + [163856] = 9, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5550), 1, + ACTIONS(5655), 1, anon_sym_LPAREN, - ACTIONS(6508), 1, + ACTIONS(6589), 1, sym_identifier, - ACTIONS(6531), 1, + ACTIONS(6644), 1, anon_sym_complex, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3797), 2, + STATE(3879), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [166175] = 5, - ACTIONS(6053), 1, - anon_sym_STAR, - ACTIONS(6533), 1, + [163888] = 10, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6507), 1, anon_sym_LBRACK, - STATE(3826), 1, - sym_type_index, + ACTIONS(6512), 1, + sym_string_start, + ACTIONS(6646), 1, + anon_sym_EQ, + ACTIONS(6648), 1, + sym__newline, + STATE(4171), 1, + sym_string, + STATE(5208), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6058), 8, - anon_sym_DOT, + ACTIONS(6501), 2, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [166199] = 9, - ACTIONS(4992), 1, + sym_identifier, + STATE(4174), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [163922] = 9, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5561), 1, + ACTIONS(5905), 1, anon_sym_LPAREN, - ACTIONS(6447), 1, + ACTIONS(6623), 1, sym_identifier, - ACTIONS(6536), 1, + ACTIONS(6650), 1, anon_sym_complex, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3788), 2, + STATE(3844), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [166231] = 7, - ACTIONS(3804), 1, + [163954] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5530), 3, + ACTIONS(5970), 3, sym__newline, anon_sym_LPAREN, anon_sym_COLON, - [166259] = 12, - ACTIONS(6412), 1, + [163982] = 9, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6416), 1, - anon_sym_async, - ACTIONS(6418), 1, - anon_sym_for, - ACTIONS(6420), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6538), 1, - anon_sym_RPAREN, - ACTIONS(6540), 1, + ACTIONS(6656), 1, anon_sym_COMMA, - STATE(4104), 1, - sym_for_in_clause, - STATE(4936), 1, - aux_sym_argument_list_repeat1, - STATE(5616), 1, - sym__comprehension_clauses, + STATE(4634), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166297] = 12, - ACTIONS(6412), 1, + ACTIONS(6652), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6654), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [164014] = 12, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6416), 1, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6418), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(6420), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6499), 1, anon_sym_or, - ACTIONS(6431), 1, - anon_sym_COMMA, - ACTIONS(6542), 1, + ACTIONS(6658), 1, anon_sym_RPAREN, - STATE(4104), 1, + ACTIONS(6660), 1, + anon_sym_COMMA, + STATE(4218), 1, sym_for_in_clause, - STATE(5158), 1, - aux_sym__collection_elements_repeat1, - STATE(5580), 1, + STATE(4997), 1, + aux_sym_argument_list_repeat1, + STATE(5661), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166335] = 9, - ACTIONS(6157), 1, + [164052] = 12, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6493), 1, + anon_sym_async, + ACTIONS(6495), 1, + anon_sym_for, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6499), 1, anon_sym_or, - ACTIONS(6548), 1, + ACTIONS(6662), 1, + anon_sym_RPAREN, + ACTIONS(6664), 1, anon_sym_COMMA, - STATE(4606), 1, - aux_sym_assert_statement_repeat1, + STATE(4218), 1, + sym_for_in_clause, + STATE(5247), 1, + aux_sym_argument_list_repeat1, + STATE(5680), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6544), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6546), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [166367] = 8, - ACTIONS(3804), 1, + [164090] = 7, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6213), 1, - anon_sym_LPAREN, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6211), 2, - sym__newline, - anon_sym_COLON, - STATE(3755), 2, + STATE(3740), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - [166397] = 10, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6405), 1, - sym_string_start, - ACTIONS(6550), 1, - anon_sym_EQ, - ACTIONS(6552), 1, + ACTIONS(5970), 3, sym__newline, - STATE(4116), 1, - sym_string, - STATE(5057), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6394), 2, anon_sym_LPAREN, - sym_identifier, - STATE(4117), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166431] = 8, + anon_sym_COLON, + [164118] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6554), 1, + ACTIONS(6666), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3765), 3, + STATE(3802), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [166461] = 8, - ACTIONS(3), 1, + [164148] = 5, + ACTIONS(6153), 1, + anon_sym_STAR, + ACTIONS(6668), 1, + anon_sym_DOT, + STATE(3800), 1, + aux_sym_type_qualifier_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, - anon_sym_LBRACE, - ACTIONS(6382), 1, - anon_sym_BSLASH, - ACTIONS(6556), 1, - sym_string_end, - STATE(3986), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6380), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(3754), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [166491] = 9, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5846), 1, + ACTIONS(6155), 8, anon_sym_LPAREN, - ACTIONS(6388), 1, - sym_identifier, - ACTIONS(6558), 1, - anon_sym_complex, - STATE(3540), 1, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [164172] = 7, + ACTIONS(3908), 1, + anon_sym_STAR, + ACTIONS(3918), 1, + anon_sym_LBRACK, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3783), 2, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [166523] = 10, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6405), 1, - sym_string_start, - ACTIONS(6560), 1, - anon_sym_EQ, - ACTIONS(6562), 1, + ACTIONS(3924), 3, + anon_sym_STAR_STAR, + anon_sym_AMP, + anon_sym___stdcall, + ACTIONS(5898), 3, sym__newline, - STATE(4054), 1, - sym_string, - STATE(4827), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6394), 2, anon_sym_LPAREN, - sym_identifier, - STATE(4055), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [166557] = 8, + anon_sym_COLON, + [164200] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6564), 1, + ACTIONS(6671), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3738), 3, + STATE(3790), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [166587] = 8, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6189), 1, - anon_sym_LPAREN, - STATE(3494), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6192), 2, - sym__newline, - anon_sym_COLON, - STATE(3456), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [166617] = 12, - ACTIONS(6412), 1, + [164230] = 12, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6416), 1, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6418), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(6420), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6499), 1, anon_sym_or, - ACTIONS(6431), 1, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(6566), 1, + ACTIONS(6673), 1, anon_sym_RPAREN, - STATE(4104), 1, + STATE(4218), 1, sym_for_in_clause, - STATE(5158), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, - STATE(5753), 1, + STATE(5777), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166655] = 8, - ACTIONS(3804), 1, + [164268] = 8, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(5843), 1, + ACTIONS(5902), 1, anon_sym_LPAREN, - STATE(3494), 1, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5846), 2, + ACTIONS(5968), 2, sym__newline, anon_sym_COLON, - STATE(3456), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [166685] = 7, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3814), 1, - anon_sym_LBRACK, - STATE(3494), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3764), 2, + STATE(3742), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5553), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [166713] = 12, - ACTIONS(6412), 1, + [164298] = 12, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6416), 1, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6418), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(6420), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6499), 1, anon_sym_or, - ACTIONS(6568), 1, + ACTIONS(6675), 1, anon_sym_RPAREN, - ACTIONS(6570), 1, + ACTIONS(6677), 1, anon_sym_COMMA, - STATE(4104), 1, + STATE(4218), 1, sym_for_in_clause, - STATE(4982), 1, + STATE(5042), 1, aux_sym_argument_list_repeat1, - STATE(5753), 1, + STATE(5777), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [166751] = 8, + [164336] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6572), 1, + ACTIONS(6679), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3762), 3, + STATE(3790), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [166781] = 8, - ACTIONS(3804), 1, - anon_sym_STAR, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(5515), 1, - anon_sym_LPAREN, - STATE(3494), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5591), 2, - sym__newline, - anon_sym_COLON, - STATE(3729), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, - anon_sym_STAR_STAR, - anon_sym_AMP, - anon_sym___stdcall, - [166811] = 8, + [164366] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6574), 1, + ACTIONS(6681), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3738), 3, + STATE(3809), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [166841] = 12, - ACTIONS(6412), 1, - anon_sym_as, - ACTIONS(6414), 1, - anon_sym_if, - ACTIONS(6416), 1, - anon_sym_async, - ACTIONS(6418), 1, - anon_sym_for, - ACTIONS(6420), 1, - anon_sym_and, - ACTIONS(6422), 1, - anon_sym_or, - ACTIONS(6576), 1, - anon_sym_RPAREN, - ACTIONS(6578), 1, - anon_sym_COMMA, - STATE(4104), 1, - sym_for_in_clause, - STATE(5219), 1, - aux_sym_argument_list_repeat1, - STATE(5494), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166879] = 7, - ACTIONS(3804), 1, + [164396] = 8, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(3494), 1, + ACTIONS(6288), 1, + anon_sym_LPAREN, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + ACTIONS(6279), 2, + sym__newline, + anon_sym_COLON, + STATE(3755), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5846), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [166907] = 8, + [164426] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6580), 1, + ACTIONS(6683), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3738), 3, + STATE(3790), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [166937] = 12, - ACTIONS(6412), 1, - anon_sym_as, - ACTIONS(6414), 1, - anon_sym_if, - ACTIONS(6416), 1, - anon_sym_async, - ACTIONS(6418), 1, - anon_sym_for, - ACTIONS(6420), 1, - anon_sym_and, - ACTIONS(6422), 1, - anon_sym_or, - ACTIONS(6582), 1, - anon_sym_RPAREN, - ACTIONS(6584), 1, - anon_sym_COMMA, - STATE(4104), 1, - sym_for_in_clause, - STATE(5065), 1, - aux_sym_argument_list_repeat1, - STATE(5643), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [166975] = 7, - ACTIONS(3804), 1, + [164456] = 8, + ACTIONS(3908), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(3918), 1, anon_sym_LBRACK, - STATE(3494), 1, + ACTIONS(5902), 1, + anon_sym_LPAREN, + STATE(3525), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3456), 2, + ACTIONS(5968), 2, + sym__newline, + anon_sym_COLON, + STATE(3497), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(3924), 3, anon_sym_STAR_STAR, anon_sym_AMP, anon_sym___stdcall, - ACTIONS(5809), 3, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, - [167003] = 12, - ACTIONS(6356), 1, + [164486] = 12, + ACTIONS(6426), 1, anon_sym_RBRACK, - ACTIONS(6433), 1, + ACTIONS(6545), 1, anon_sym_COMMA, - ACTIONS(6435), 1, + ACTIONS(6547), 1, anon_sym_as, - ACTIONS(6437), 1, + ACTIONS(6549), 1, anon_sym_if, - ACTIONS(6439), 1, + ACTIONS(6551), 1, anon_sym_async, - ACTIONS(6441), 1, + ACTIONS(6553), 1, anon_sym_for, - ACTIONS(6443), 1, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6557), 1, anon_sym_or, - STATE(4180), 1, + STATE(4165), 1, sym_for_in_clause, - STATE(4998), 1, + STATE(5016), 1, aux_sym__collection_elements_repeat1, - STATE(5650), 1, + STATE(5856), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167041] = 8, + [164524] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(6378), 1, + ACTIONS(6527), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6531), 1, anon_sym_BSLASH, - ACTIONS(6586), 1, + ACTIONS(6685), 1, sym_string_end, - STATE(3986), 2, + STATE(4004), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(6380), 3, + ACTIONS(6529), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(3730), 3, + STATE(3815), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [167071] = 8, - ACTIONS(3804), 1, + [164554] = 5, + ACTIONS(6153), 1, anon_sym_STAR, - ACTIONS(3814), 1, + ACTIONS(6687), 1, anon_sym_LBRACK, - ACTIONS(5843), 1, - anon_sym_LPAREN, - STATE(3494), 1, + STATE(3888), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5846), 2, - sym__newline, - anon_sym_COLON, - STATE(3692), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(3820), 3, + ACTIONS(6155), 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, - [167101] = 12, - ACTIONS(6412), 1, + [164578] = 12, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6416), 1, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6418), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(6420), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6499), 1, anon_sym_or, - ACTIONS(6431), 1, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(6588), 1, + ACTIONS(6690), 1, anon_sym_RPAREN, - STATE(4104), 1, + STATE(4218), 1, sym_for_in_clause, - STATE(5158), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, - STATE(5720), 1, + STATE(5680), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [167139] = 12, - ACTIONS(6412), 1, - anon_sym_as, - ACTIONS(6414), 1, - anon_sym_if, - ACTIONS(6416), 1, - anon_sym_async, - ACTIONS(6418), 1, - anon_sym_for, - ACTIONS(6420), 1, - anon_sym_and, - ACTIONS(6422), 1, - anon_sym_or, - ACTIONS(6431), 1, - anon_sym_COMMA, - ACTIONS(6590), 1, - anon_sym_RPAREN, - STATE(4104), 1, - sym_for_in_clause, - STATE(5158), 1, - aux_sym__collection_elements_repeat1, - STATE(5494), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, + [164616] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - [167177] = 6, - ACTIONS(6592), 1, - anon_sym_as, - ACTIONS(6594), 1, - anon_sym_if, - ACTIONS(6596), 1, - anon_sym_and, - ACTIONS(6598), 1, - anon_sym_or, - ACTIONS(3), 2, + ACTIONS(6527), 1, + anon_sym_LBRACE, + ACTIONS(6531), 1, + anon_sym_BSLASH, + ACTIONS(6692), 1, + sym_string_end, + STATE(4004), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6529), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3790), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [164646] = 8, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(4658), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [167202] = 5, - STATE(3540), 1, + ACTIONS(6527), 1, + anon_sym_LBRACE, + ACTIONS(6531), 1, + anon_sym_BSLASH, + ACTIONS(6694), 1, + sym_string_end, + STATE(4004), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6529), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(3776), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [164676] = 8, + ACTIONS(5090), 1, + anon_sym___stdcall, + ACTIONS(5092), 1, + anon_sym_AMP, + ACTIONS(5094), 1, + anon_sym_LBRACK, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + ACTIONS(5954), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(6541), 2, + anon_sym_STAR, + sym_identifier, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6600), 3, + [164705] = 9, + ACTIONS(5090), 1, + anon_sym___stdcall, + ACTIONS(5092), 1, + anon_sym_AMP, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_LPAREN, + ACTIONS(5670), 1, + anon_sym_STAR_STAR, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6246), 2, anon_sym_STAR, sym_identifier, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164736] = 9, + ACTIONS(5090), 1, anon_sym___stdcall, - ACTIONS(6211), 4, + ACTIONS(5092), 1, + anon_sym_AMP, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5902), 1, anon_sym_LPAREN, + ACTIONS(5968), 1, anon_sym_STAR_STAR, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6696), 2, + anon_sym_STAR, + sym_identifier, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164767] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - anon_sym_AMP, - [167225] = 8, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5530), 1, + ACTIONS(6288), 1, anon_sym_LPAREN, - ACTIONS(6143), 1, + ACTIONS(6698), 1, sym_identifier, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3812), 2, + STATE(3843), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [167254] = 8, - ACTIONS(4992), 1, + [164796] = 9, + ACTIONS(5090), 1, + anon_sym___stdcall, + ACTIONS(5092), 1, + anon_sym_AMP, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5850), 1, + ACTIONS(5951), 1, anon_sym_LPAREN, - ACTIONS(6498), 1, - sym_identifier, - STATE(3540), 1, + ACTIONS(5954), 1, + anon_sym_STAR_STAR, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(6541), 2, anon_sym_STAR, + sym_identifier, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164827] = 9, + ACTIONS(5090), 1, anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, + ACTIONS(5092), 1, anon_sym_AMP, - STATE(3821), 2, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5905), 1, + anon_sym_LPAREN, + ACTIONS(5970), 1, + anon_sym_STAR_STAR, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6623), 2, + anon_sym_STAR, + sym_identifier, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164858] = 5, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [167283] = 3, - ACTIONS(6295), 1, + ACTIONS(6700), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5944), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + [164881] = 3, + ACTIONS(6434), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6297), 9, + ACTIONS(6436), 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, - [167302] = 8, - ACTIONS(4992), 1, + [164900] = 8, + ACTIONS(5090), 1, + anon_sym___stdcall, + ACTIONS(5092), 1, + anon_sym_AMP, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5780), 1, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5970), 2, anon_sym_LPAREN, - ACTIONS(6602), 1, + anon_sym_STAR_STAR, + ACTIONS(6623), 2, + anon_sym_STAR, sym_identifier, - STATE(3540), 1, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164929] = 8, + ACTIONS(5090), 1, + anon_sym___stdcall, + ACTIONS(5092), 1, + anon_sym_AMP, + ACTIONS(5094), 1, + anon_sym_LBRACK, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5898), 2, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + ACTIONS(6702), 2, + anon_sym_STAR, + sym_identifier, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [164958] = 6, + ACTIONS(5667), 1, + anon_sym_LPAREN, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5670), 3, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(6246), 3, anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(4990), 2, + [164983] = 3, + ACTIONS(5591), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4580), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - STATE(3825), 2, + anon_sym_complex, + anon_sym___stdcall, + [165002] = 6, + ACTIONS(5951), 1, + anon_sym_LPAREN, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [167331] = 8, - ACTIONS(4988), 1, + ACTIONS(5954), 3, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AMP, + ACTIONS(6541), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(4990), 1, + [165027] = 5, + STATE(3597), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(6541), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5954), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(4992), 1, + [165050] = 3, + ACTIONS(5591), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4580), 9, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - STATE(3540), 1, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [165069] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4650), 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, + [165086] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 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, + [165103] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4793), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_PIPE, + [165128] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4813), 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, + [165145] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4729), 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, + [165162] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4718), 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, + [165179] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4725), 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, + [165196] = 8, + ACTIONS(5090), 1, + anon_sym___stdcall, + ACTIONS(5092), 1, + anon_sym_AMP, + ACTIONS(5094), 1, + anon_sym_LBRACK, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5809), 2, + ACTIONS(6279), 2, anon_sym_LPAREN, anon_sym_STAR_STAR, - ACTIONS(6604), 2, + ACTIONS(6698), 2, anon_sym_STAR, sym_identifier, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [167360] = 5, - STATE(3540), 1, + [165225] = 8, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5676), 1, + anon_sym_LPAREN, + ACTIONS(6308), 1, + sym_identifier, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6606), 3, + ACTIONS(5090), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - ACTIONS(5838), 4, - anon_sym_LPAREN, + ACTIONS(5092), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - [167383] = 3, - ACTIONS(5995), 1, + STATE(3823), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [165254] = 3, + ACTIONS(5680), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5997), 9, - anon_sym_DOT, + ACTIONS(5682), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -261702,289 +266887,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [167402] = 8, - ACTIONS(4992), 1, + [165273] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6213), 1, + ACTIONS(5645), 1, anon_sym_LPAREN, - ACTIONS(6600), 1, + ACTIONS(6515), 1, sym_identifier, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3846), 2, + STATE(3830), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [167431] = 8, - ACTIONS(4988), 1, + [165302] = 9, + ACTIONS(5090), 1, anon_sym___stdcall, - ACTIONS(4990), 1, + ACTIONS(5092), 1, anon_sym_AMP, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - STATE(3540), 1, + ACTIONS(6260), 1, + anon_sym_LPAREN, + ACTIONS(6263), 1, + anon_sym_STAR_STAR, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5850), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6498), 2, + ACTIONS(6712), 2, anon_sym_STAR, sym_identifier, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [167460] = 8, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5838), 1, - anon_sym_LPAREN, - ACTIONS(6606), 1, - sym_identifier, - STATE(3540), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, + [165333] = 9, + ACTIONS(5090), 1, anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, + ACTIONS(5092), 1, anon_sym_AMP, - STATE(3779), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [167489] = 8, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(6279), 1, + anon_sym_STAR_STAR, + ACTIONS(6288), 1, anon_sym_LPAREN, - ACTIONS(6179), 1, - sym_identifier, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(6698), 2, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3810), 2, + sym_identifier, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [167518] = 8, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5843), 1, - anon_sym_LPAREN, - ACTIONS(6388), 1, - sym_identifier, - STATE(3540), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, + [165364] = 8, + ACTIONS(5090), 1, anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, + ACTIONS(5092), 1, anon_sym_AMP, - STATE(3816), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [167547] = 8, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5530), 1, - anon_sym_LPAREN, - ACTIONS(6143), 1, - sym_identifier, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5645), 2, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3780), 2, + ACTIONS(6515), 2, + anon_sym_STAR, + sym_identifier, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [167576] = 8, - ACTIONS(4988), 1, + [165393] = 9, + ACTIONS(5090), 1, anon_sym___stdcall, - ACTIONS(4990), 1, + ACTIONS(5092), 1, anon_sym_AMP, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - STATE(3540), 1, + ACTIONS(5941), 1, + anon_sym_LPAREN, + ACTIONS(5960), 1, + anon_sym_STAR_STAR, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5553), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6508), 2, + ACTIONS(6714), 2, anon_sym_STAR, sym_identifier, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [167605] = 4, - ACTIONS(6612), 1, + [165424] = 4, + ACTIONS(6720), 1, anon_sym_LBRACK_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6610), 2, + ACTIONS(6718), 2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(6608), 7, - anon_sym_RPAREN, + ACTIONS(6716), 7, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_AMP, anon_sym___stdcall, - [167626] = 8, - ACTIONS(4992), 1, + [165445] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5553), 1, + ACTIONS(5944), 1, anon_sym_LPAREN, - ACTIONS(6508), 1, + ACTIONS(6700), 1, sym_identifier, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3822), 2, + STATE(3856), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [167655] = 6, - ACTIONS(6213), 1, + [165474] = 8, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, anon_sym_LPAREN, - STATE(3540), 1, + ACTIONS(6246), 1, + sym_identifier, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6211), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6600), 3, + ACTIONS(5090), 2, anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - [167680] = 3, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5581), 9, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5092), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [167699] = 3, - ACTIONS(6100), 1, + STATE(3860), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [165503] = 3, + ACTIONS(6380), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6102), 9, + ACTIONS(6382), 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, - [167718] = 4, - ACTIONS(6614), 1, - anon_sym_LBRACK_RBRACK, + [165522] = 8, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5951), 1, + anon_sym_LPAREN, + ACTIONS(6541), 1, + sym_identifier, + STATE(3597), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6610), 2, + ACTIONS(5090), 2, anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(6608), 7, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym___stdcall, + ACTIONS(5092), 2, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AMP, - anon_sym___stdcall, - [167739] = 8, - ACTIONS(6616), 1, - anon_sym_COMMA, - ACTIONS(6618), 1, - anon_sym_as, - ACTIONS(6620), 1, - anon_sym_if, - ACTIONS(6624), 1, - anon_sym_and, - ACTIONS(6626), 1, - anon_sym_or, - STATE(4340), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6622), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [167768] = 3, - ACTIONS(6037), 1, + STATE(3900), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [165551] = 3, + ACTIONS(6033), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6039), 9, - anon_sym_DOT, + ACTIONS(6035), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -261992,35 +267107,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [167787] = 6, - ACTIONS(5843), 1, - anon_sym_LPAREN, - STATE(3540), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5846), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6388), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [167812] = 4, - ACTIONS(5811), 1, + [165570] = 4, + ACTIONS(5972), 1, anon_sym_DOT, - STATE(3244), 1, + STATE(3855), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6628), 8, + ACTIONS(6722), 8, anon_sym_import, anon_sym_cimport, anon_sym_LPAREN, @@ -262029,394 +267126,381 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [167833] = 5, - STATE(3540), 1, + [165591] = 5, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6498), 3, + ACTIONS(6623), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(5850), 4, + ACTIONS(5970), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [167856] = 6, - ACTIONS(5860), 1, - anon_sym_LPAREN, - STATE(3540), 1, - sym_type_index, + [165614] = 4, + ACTIONS(5972), 1, + anon_sym_DOT, + STATE(3268), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5863), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6630), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [167881] = 5, - STATE(3540), 1, + ACTIONS(6724), 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, + [165635] = 5, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6604), 3, + ACTIONS(6702), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(5809), 4, + ACTIONS(5898), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [167904] = 8, - ACTIONS(4992), 1, + [165658] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6213), 1, + ACTIONS(5676), 1, anon_sym_LPAREN, - ACTIONS(6600), 1, + ACTIONS(6308), 1, sym_identifier, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3808), 2, + STATE(3866), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [167933] = 6, - ACTIONS(5780), 1, - anon_sym_LPAREN, - STATE(3540), 1, - sym_type_index, + [165687] = 6, + ACTIONS(6726), 1, + anon_sym_as, + ACTIONS(6728), 1, + anon_sym_if, + ACTIONS(6730), 1, + anon_sym_and, + ACTIONS(6732), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5783), 3, - anon_sym_STAR_STAR, + ACTIONS(6654), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [165712] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6602), 3, - anon_sym_STAR, + ACTIONS(5645), 1, + anon_sym_LPAREN, + ACTIONS(6515), 1, sym_identifier, - anon_sym___stdcall, - [167958] = 4, - ACTIONS(5811), 1, - anon_sym_DOT, - STATE(3798), 1, - aux_sym_class_definition_repeat2, + STATE(3597), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6632), 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, - [167979] = 6, - ACTIONS(5515), 1, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + STATE(3817), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [165741] = 6, + ACTIONS(5902), 1, anon_sym_LPAREN, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(5591), 3, + ACTIONS(5968), 3, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6179), 3, + ACTIONS(6696), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - [168004] = 6, - ACTIONS(6634), 1, + [165766] = 6, + ACTIONS(6726), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6728), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6730), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6732), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4662), 6, + ACTIONS(4829), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, - anon_sym_by, + anon_sym_EQ, anon_sym_PIPE, - [168029] = 8, - ACTIONS(4992), 1, + [165791] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5838), 1, + ACTIONS(5970), 1, anon_sym_LPAREN, - ACTIONS(6606), 1, + ACTIONS(6623), 1, sym_identifier, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3801), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [168058] = 9, - ACTIONS(4988), 1, - anon_sym___stdcall, - ACTIONS(4990), 1, - anon_sym_AMP, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(6189), 1, - anon_sym_LPAREN, - ACTIONS(6192), 1, - anon_sym_STAR_STAR, - STATE(3540), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6642), 2, - anon_sym_STAR, - sym_identifier, - STATE(3502), 2, + STATE(3876), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [168089] = 8, - ACTIONS(4992), 1, + [165820] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5902), 1, anon_sym_LPAREN, - ACTIONS(6179), 1, + ACTIONS(6696), 1, sym_identifier, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3803), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [168118] = 9, - ACTIONS(4988), 1, - anon_sym___stdcall, - ACTIONS(4990), 1, - anon_sym_AMP, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5780), 1, - anon_sym_LPAREN, - ACTIONS(5783), 1, - anon_sym_STAR_STAR, - STATE(3540), 1, - sym_type_index, + [165849] = 3, + ACTIONS(6434), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6602), 2, - anon_sym_STAR, - sym_identifier, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [168149] = 8, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5843), 1, + ACTIONS(6436), 9, anon_sym_LPAREN, - ACTIONS(6388), 1, - sym_identifier, - STATE(3540), 1, - sym_type_index, + 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, + [165868] = 3, + ACTIONS(6089), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(6091), 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(3837), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [168178] = 8, - ACTIONS(4988), 1, anon_sym___stdcall, - ACTIONS(4990), 1, + [165887] = 8, + ACTIONS(5090), 1, + anon_sym___stdcall, + ACTIONS(5092), 1, anon_sym_AMP, - ACTIONS(4992), 1, + ACTIONS(5094), 1, anon_sym_LBRACK, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5838), 2, + ACTIONS(5944), 2, anon_sym_LPAREN, anon_sym_STAR_STAR, - ACTIONS(6606), 2, + ACTIONS(6700), 2, anon_sym_STAR, sym_identifier, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [168207] = 8, - ACTIONS(4988), 1, - anon_sym___stdcall, - ACTIONS(4990), 1, - anon_sym_AMP, - ACTIONS(4992), 1, - anon_sym_LBRACK, - STATE(3540), 1, + [165916] = 8, + ACTIONS(6734), 1, + anon_sym_COMMA, + ACTIONS(6736), 1, + anon_sym_as, + ACTIONS(6738), 1, + anon_sym_if, + ACTIONS(6742), 1, + anon_sym_and, + ACTIONS(6744), 1, + anon_sym_or, + STATE(4344), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6740), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [165945] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4829), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_by, + anon_sym_PIPE, + [165970] = 5, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5530), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6143), 2, - anon_sym_STAR, - sym_identifier, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [168236] = 9, - ACTIONS(4988), 1, + ACTIONS(6308), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - ACTIONS(4990), 1, + ACTIONS(5676), 4, + anon_sym_LPAREN, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(4992), 1, + [165993] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(6288), 1, anon_sym_LPAREN, - ACTIONS(5591), 1, - anon_sym_STAR_STAR, - STATE(3540), 1, + ACTIONS(6698), 1, + sym_identifier, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6179), 2, + ACTIONS(5090), 2, anon_sym_STAR, - sym_identifier, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [168267] = 9, - ACTIONS(4988), 1, anon_sym___stdcall, - ACTIONS(4990), 1, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(4992), 1, + STATE(3885), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [166022] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5843), 1, + ACTIONS(5944), 1, anon_sym_LPAREN, - ACTIONS(5846), 1, - anon_sym_STAR_STAR, - STATE(3540), 1, + ACTIONS(6700), 1, + sym_identifier, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6388), 2, + ACTIONS(5090), 2, anon_sym_STAR, - sym_identifier, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [168298] = 9, - ACTIONS(4988), 1, anon_sym___stdcall, - ACTIONS(4990), 1, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, anon_sym_AMP, - ACTIONS(4992), 1, + STATE(3826), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [166051] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5787), 1, + ACTIONS(5667), 1, anon_sym_LPAREN, - ACTIONS(5850), 1, - anon_sym_STAR_STAR, - STATE(3540), 1, + ACTIONS(6246), 1, + sym_identifier, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6498), 2, - anon_sym_STAR, - sym_identifier, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [168329] = 3, - ACTIONS(6012), 1, + ACTIONS(5090), 2, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6014), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym___stdcall, + ACTIONS(5092), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym___stdcall, - [168348] = 3, - ACTIONS(5915), 1, + STATE(3819), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [166080] = 3, + ACTIONS(6214), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5917), 9, + ACTIONS(6216), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -262426,239 +267510,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [168367] = 3, - ACTIONS(6002), 1, - anon_sym_STAR, + [166099] = 8, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(5951), 1, + anon_sym_LPAREN, + ACTIONS(6541), 1, + sym_identifier, + STATE(3597), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6004), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym___stdcall, - [168386] = 3, - ACTIONS(5483), 1, - anon_sym_STAR, + STATE(3822), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [166128] = 4, + ACTIONS(6746), 1, + anon_sym_LBRACK_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 9, - anon_sym_LPAREN, + ACTIONS(6718), 2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(6716), 7, anon_sym_RPAREN, 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, - [168405] = 8, - ACTIONS(4988), 1, - anon_sym___stdcall, - ACTIONS(4990), 1, - anon_sym_AMP, - ACTIONS(4992), 1, - anon_sym_LBRACK, - STATE(3540), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6211), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6600), 2, - anon_sym_STAR, - sym_identifier, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [168434] = 5, - STATE(3540), 1, + [166149] = 5, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6388), 3, + ACTIONS(6698), 3, anon_sym_STAR, sym_identifier, anon_sym___stdcall, - ACTIONS(5846), 4, + ACTIONS(6279), 4, anon_sym_LPAREN, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [168457] = 8, - ACTIONS(4992), 1, + [166172] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5553), 1, + ACTIONS(5970), 1, anon_sym_LPAREN, - ACTIONS(6508), 1, + ACTIONS(6623), 1, sym_identifier, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - STATE(3856), 2, + STATE(3839), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [168486] = 9, - ACTIONS(4988), 1, - anon_sym___stdcall, - ACTIONS(4990), 1, - anon_sym_AMP, - ACTIONS(4992), 1, + [166201] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6211), 1, - anon_sym_STAR_STAR, - ACTIONS(6213), 1, + ACTIONS(5902), 1, anon_sym_LPAREN, - STATE(3540), 1, + ACTIONS(6696), 1, + sym_identifier, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6600), 2, + ACTIONS(5090), 2, anon_sym_STAR, - sym_identifier, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - [168517] = 9, - ACTIONS(4988), 1, anon_sym___stdcall, - ACTIONS(4990), 1, - anon_sym_AMP, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5860), 1, - anon_sym_LPAREN, - ACTIONS(5863), 1, + ACTIONS(5092), 2, anon_sym_STAR_STAR, - STATE(3540), 1, + anon_sym_AMP, + STATE(3846), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + [166230] = 5, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6630), 2, - anon_sym_STAR, - sym_identifier, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [168548] = 3, - ACTIONS(6151), 1, + ACTIONS(6515), 3, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6153), 9, - anon_sym_DOT, + sym_identifier, + anon_sym___stdcall, + ACTIONS(5645), 4, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, + [166253] = 8, + ACTIONS(5090), 1, anon_sym___stdcall, - [168567] = 8, - ACTIONS(4992), 1, + ACTIONS(5092), 1, + anon_sym_AMP, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(5850), 1, - anon_sym_LPAREN, - ACTIONS(6498), 1, - sym_identifier, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5676), 2, + anon_sym_LPAREN, anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3774), 2, + ACTIONS(6308), 2, + anon_sym_STAR, + sym_identifier, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [168596] = 8, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(5780), 1, + [166282] = 6, + ACTIONS(6288), 1, anon_sym_LPAREN, - ACTIONS(6602), 1, - sym_identifier, - STATE(3540), 1, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - STATE(3800), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [168625] = 3, - ACTIONS(6337), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6339), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6279), 3, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [168644] = 3, - ACTIONS(6295), 1, + ACTIONS(6698), 3, anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [166307] = 6, + ACTIONS(5941), 1, + anon_sym_LPAREN, + STATE(3597), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6297), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(3515), 2, + sym_type_qualifier, + aux_sym_c_type_repeat1, + ACTIONS(5960), 3, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, + ACTIONS(6714), 3, + anon_sym_STAR, + sym_identifier, anon_sym___stdcall, - [168663] = 3, - ACTIONS(5483), 1, + [166332] = 3, + ACTIONS(6380), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 9, + ACTIONS(6382), 9, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -262668,32 +267701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_complex, anon_sym___stdcall, - [168682] = 6, - ACTIONS(6592), 1, - anon_sym_as, - ACTIONS(6594), 1, - anon_sym_if, - ACTIONS(6596), 1, - anon_sym_and, - ACTIONS(6598), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6546), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [168707] = 3, - ACTIONS(6045), 1, + [166351] = 3, + ACTIONS(6093), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6047), 9, + ACTIONS(6095), 9, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -262703,108 +267717,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP, anon_sym___stdcall, - [168726] = 5, - STATE(3540), 1, + [166370] = 6, + ACTIONS(6260), 1, + anon_sym_LPAREN, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - ACTIONS(6143), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5530), 4, - anon_sym_LPAREN, + ACTIONS(6263), 3, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AMP, - [168749] = 6, - ACTIONS(6634), 1, + ACTIONS(6712), 3, + anon_sym_STAR, + sym_identifier, + anon_sym___stdcall, + [166395] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4658), 6, + ACTIONS(4837), 6, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_by, anon_sym_PIPE, - [168774] = 8, - ACTIONS(6616), 1, - anon_sym_COMMA, - ACTIONS(6618), 1, - anon_sym_as, - ACTIONS(6620), 1, - anon_sym_if, - ACTIONS(6624), 1, - anon_sym_and, - ACTIONS(6626), 1, - anon_sym_or, - STATE(4340), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6644), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [168803] = 6, - ACTIONS(5787), 1, - anon_sym_LPAREN, - STATE(3540), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(5850), 3, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - ACTIONS(6498), 3, + [166420] = 3, + ACTIONS(6079), 1, anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - [168828] = 5, - STATE(3540), 1, - sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6508), 3, - anon_sym_STAR, - sym_identifier, - anon_sym___stdcall, - ACTIONS(5553), 4, + ACTIONS(6081), 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, - [168851] = 3, - ACTIONS(6337), 1, + anon_sym___stdcall, + [166439] = 3, + ACTIONS(6296), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6339), 9, + ACTIONS(6298), 9, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_STAR_STAR, @@ -262812,171 +267786,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, - anon_sym_complex, anon_sym___stdcall, - [168870] = 6, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, + [166458] = 5, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, + ACTIONS(6748), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 6, + ACTIONS(4741), 7, anon_sym_DOT, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_by, anon_sym_PIPE, - [168895] = 2, + [166481] = 4, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4561), 10, - sym__newline, - anon_sym_SEMI, + ACTIONS(4789), 8, anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_else, + anon_sym_by, anon_sym_PIPE, + [166502] = 3, + ACTIONS(6708), 1, anon_sym_and, - anon_sym_or, - [168912] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4565), 10, - sym__newline, - anon_sym_SEMI, + ACTIONS(4714), 9, anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_else, + anon_sym_by, anon_sym_PIPE, - anon_sym_and, anon_sym_or, - [168929] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4601), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + [166521] = 8, + ACTIONS(6734), 1, + anon_sym_COMMA, + ACTIONS(6736), 1, anon_sym_as, + ACTIONS(6738), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(6742), 1, anon_sym_and, + ACTIONS(6744), 1, anon_sym_or, - [168946] = 2, + STATE(4344), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4605), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(6751), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [168963] = 5, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(6646), 1, - anon_sym_as, + anon_sym_RBRACE, + sym_type_conversion, + [166550] = 3, + ACTIONS(6099), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 7, + ACTIONS(6101), 9, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_by, - anon_sym_PIPE, - [168986] = 6, - ACTIONS(6189), 1, anon_sym_LPAREN, - STATE(3540), 1, - sym_type_index, + anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [166569] = 3, + ACTIONS(6083), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3502), 2, - sym_type_qualifier, - aux_sym_c_type_repeat1, - ACTIONS(6192), 3, + ACTIONS(6085), 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(6642), 3, - anon_sym_STAR, - sym_identifier, anon_sym___stdcall, - [169011] = 6, - ACTIONS(6592), 1, + [166588] = 6, + ACTIONS(6726), 1, anon_sym_as, - ACTIONS(6594), 1, + ACTIONS(6728), 1, anon_sym_if, - ACTIONS(6596), 1, + ACTIONS(6730), 1, anon_sym_and, - ACTIONS(6598), 1, + ACTIONS(6732), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 6, + ACTIONS(4837), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [169036] = 4, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4650), 8, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_by, - anon_sym_PIPE, - [169057] = 5, - ACTIONS(6596), 1, + [166613] = 5, + ACTIONS(6730), 1, anon_sym_and, - ACTIONS(6598), 1, + ACTIONS(6732), 1, anon_sym_or, - ACTIONS(6649), 1, + ACTIONS(6753), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 7, + ACTIONS(4741), 7, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -262984,15 +267928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [169080] = 4, - ACTIONS(6596), 1, + [166636] = 4, + ACTIONS(6730), 1, anon_sym_and, - ACTIONS(6598), 1, + ACTIONS(6732), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 8, + ACTIONS(4789), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -263001,27 +267945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [169101] = 3, - ACTIONS(6596), 1, + [166657] = 3, + ACTIONS(6730), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4654), 9, - 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_or, - [169120] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4569), 10, + ACTIONS(4714), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -263030,901 +267960,581 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, anon_sym_or, - [169137] = 6, - ACTIONS(6592), 1, + [166676] = 6, + ACTIONS(6726), 1, anon_sym_as, - ACTIONS(6594), 1, + ACTIONS(6728), 1, anon_sym_if, - ACTIONS(6596), 1, - anon_sym_and, - ACTIONS(6598), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4662), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [169162] = 3, - ACTIONS(6638), 1, + ACTIONS(6730), 1, anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4654), 9, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_by, - anon_sym_PIPE, + ACTIONS(6732), 1, anon_sym_or, - [169181] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 10, + ACTIONS(4793), 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, - [169198] = 8, - ACTIONS(4988), 1, - anon_sym___stdcall, - ACTIONS(4990), 1, - anon_sym_AMP, - ACTIONS(4992), 1, - anon_sym_LBRACK, - STATE(3540), 1, + [166701] = 6, + ACTIONS(5905), 1, + anon_sym_LPAREN, + STATE(3597), 1, sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5846), 2, - anon_sym_LPAREN, - anon_sym_STAR_STAR, - ACTIONS(6388), 2, - anon_sym_STAR, - sym_identifier, - STATE(3502), 2, + STATE(3515), 2, sym_type_qualifier, aux_sym_c_type_repeat1, - [169227] = 9, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6652), 1, - anon_sym_EQ, - ACTIONS(6654), 1, - sym__newline, - STATE(4198), 1, - sym_string, - STATE(5110), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4199), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [169257] = 8, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(6656), 1, - sym_identifier, - ACTIONS(6658), 1, - sym__newline, - STATE(5050), 1, - sym_type_index, - STATE(5824), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [169285] = 3, - ACTIONS(6662), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6660), 8, - sym__newline, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5970), 3, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, - anon_sym___stdcall, - [169303] = 5, - ACTIONS(6624), 1, - anon_sym_and, - ACTIONS(6626), 1, - anon_sym_or, - ACTIONS(6664), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4643), 6, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [169325] = 8, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(6656), 1, - sym_identifier, - ACTIONS(6667), 1, - sym__newline, - STATE(5050), 1, - sym_type_index, - STATE(5824), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(6623), 3, anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [169353] = 5, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(6669), 1, - anon_sym_EQ, - STATE(3798), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6632), 6, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [169375] = 5, - ACTIONS(6671), 1, - anon_sym_class, - ACTIONS(6673), 1, - anon_sym_ctypedef, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2789), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5744), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [169397] = 8, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(6656), 1, sym_identifier, - ACTIONS(6675), 1, - sym__newline, - STATE(5050), 1, - sym_type_index, - STATE(5824), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [169425] = 9, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6560), 1, - anon_sym_EQ, - ACTIONS(6562), 1, - sym__newline, - STATE(4054), 1, - sym_string, - STATE(4825), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4055), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [169455] = 4, - ACTIONS(6624), 1, - anon_sym_and, - ACTIONS(6626), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4650), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [169475] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4654), 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, - [169491] = 10, - ACTIONS(6658), 1, - sym__newline, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6679), 1, - anon_sym_COMMA, - ACTIONS(6681), 1, - anon_sym_EQ, - ACTIONS(6683), 1, - anon_sym_LBRACK, - STATE(2998), 1, - sym_c_function_definition, - STATE(4016), 1, - sym_c_parameters, - STATE(5210), 1, - aux_sym_cvar_def_repeat1, - STATE(5287), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169523] = 3, - ACTIONS(6108), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6110), 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, - [169541] = 5, - ACTIONS(6358), 1, - anon_sym_and, - ACTIONS(6360), 1, - anon_sym_or, - ACTIONS(6685), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4643), 6, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [169563] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4561), 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, - [169579] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4565), 9, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + [166726] = 4, + ACTIONS(6742), 1, anon_sym_and, + ACTIONS(6744), 1, anon_sym_or, - sym_type_conversion, - [169595] = 10, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, - anon_sym_LBRACK, - ACTIONS(6688), 1, - anon_sym_COMMA, - ACTIONS(6690), 1, - anon_sym_EQ, - ACTIONS(6692), 1, - sym__newline, - STATE(666), 1, - sym_c_function_definition, - STATE(4033), 1, - sym_c_parameters, - STATE(4973), 1, - aux_sym_cvar_def_repeat1, - STATE(5334), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [169627] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4601), 9, + ACTIONS(4789), 7, 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, - [169643] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4605), 9, - anon_sym_COMMA, + [166746] = 6, + ACTIONS(6756), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [169659] = 9, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6694), 1, - anon_sym_EQ, - ACTIONS(6696), 1, - sym__newline, - STATE(4200), 1, - sym_string, - STATE(5117), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4201), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [169689] = 8, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(6656), 1, - sym_identifier, - ACTIONS(6698), 1, - sym__newline, - STATE(5050), 1, - sym_type_index, - STATE(5824), 1, - sym_type_qualifier, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [169717] = 8, - ACTIONS(4992), 1, + ACTIONS(4793), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [166770] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6656), 1, + ACTIONS(6764), 1, sym_identifier, - ACTIONS(6700), 1, + ACTIONS(6766), 1, sym__newline, - STATE(5050), 1, + STATE(5105), 1, sym_type_index, - STATE(5824), 1, + STATE(5565), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [169745] = 3, - ACTIONS(6337), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6339), 8, + [166798] = 10, + ACTIONS(6766), 1, sym__newline, + ACTIONS(6768), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [169763] = 9, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(6396), 1, + ACTIONS(6770), 1, anon_sym_COMMA, - ACTIONS(6702), 1, + ACTIONS(6772), 1, anon_sym_EQ, - ACTIONS(6704), 1, - sym__newline, - STATE(4074), 1, - sym_string, - STATE(4716), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6774), 1, + anon_sym_LBRACK, + STATE(681), 1, + sym_c_function_definition, + STATE(4051), 1, + sym_c_parameters, + STATE(5189), 1, + aux_sym_cvar_def_repeat1, + STATE(5390), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4075), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [169793] = 2, + [166830] = 5, + ACTIONS(6776), 1, + anon_sym_class, + ACTIONS(6778), 1, + anon_sym_ctypedef, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 9, - anon_sym_COMMA, + STATE(2832), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(5852), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [166852] = 6, + ACTIONS(6736), 1, anon_sym_as, + ACTIONS(6738), 1, anon_sym_if, + ACTIONS(6742), 1, + anon_sym_and, + ACTIONS(6744), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4829), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, sym_type_conversion, - [169809] = 2, + [166876] = 5, + ACTIONS(5972), 1, + anon_sym_DOT, + ACTIONS(6780), 1, + anon_sym_EQ, + STATE(3855), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 9, + ACTIONS(6722), 6, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_PIPE, + [166898] = 4, + ACTIONS(4716), 1, + anon_sym_as, + ACTIONS(6428), 1, anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4714), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_or, - sym_type_conversion, - [169825] = 6, - ACTIONS(6706), 1, + [166918] = 6, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6762), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6546), 5, + ACTIONS(6654), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [169849] = 9, - ACTIONS(3814), 1, + [166942] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4718), 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, + [166958] = 9, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6784), 1, + anon_sym_from, + ACTIONS(6786), 1, + anon_sym_COMMA, + STATE(4544), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6782), 2, + sym__newline, + anon_sym_SEMI, + [166988] = 9, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(3878), 1, + ACTIONS(3956), 1, sym_string_start, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6714), 1, + ACTIONS(6788), 1, anon_sym_EQ, - ACTIONS(6716), 1, + ACTIONS(6790), 1, sym__newline, - STATE(4211), 1, + STATE(4233), 1, sym_string, - STATE(5183), 1, + STATE(4923), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4212), 2, + STATE(4234), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [169879] = 8, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(6656), 1, - sym_identifier, + [167018] = 3, ACTIONS(6718), 1, - sym__newline, - STATE(5050), 1, - sym_type_index, - STATE(5824), 1, - sym_type_qualifier, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(6716), 8, + sym__newline, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - [169907] = 6, - ACTIONS(6346), 1, - anon_sym_as, - ACTIONS(6348), 1, - anon_sym_if, - ACTIONS(6358), 1, - anon_sym_and, - ACTIONS(6360), 1, - anon_sym_or, + anon_sym___stdcall, + [167036] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4658), 5, + ACTIONS(4725), 9, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [169931] = 3, - ACTIONS(6624), 1, anon_sym_and, + anon_sym_or, + sym_type_conversion, + [167052] = 5, + ACTIONS(6428), 1, + anon_sym_and, + ACTIONS(6430), 1, + anon_sym_or, + ACTIONS(6792), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4654), 8, + ACTIONS(4741), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - anon_sym_or, - sym_type_conversion, - [169949] = 8, - ACTIONS(4992), 1, + [167074] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6656), 1, + ACTIONS(6764), 1, sym_identifier, - ACTIONS(6720), 1, + ACTIONS(6795), 1, sym__newline, - STATE(5050), 1, + STATE(5105), 1, sym_type_index, - STATE(5824), 1, + STATE(5565), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [169977] = 6, - ACTIONS(6618), 1, + [167102] = 6, + ACTIONS(6736), 1, anon_sym_as, - ACTIONS(6620), 1, + ACTIONS(6738), 1, anon_sym_if, - ACTIONS(6624), 1, + ACTIONS(6742), 1, anon_sym_and, - ACTIONS(6626), 1, + ACTIONS(6744), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4662), 5, + ACTIONS(4837), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [170001] = 3, - ACTIONS(6724), 1, + [167126] = 3, + ACTIONS(6196), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6722), 8, - sym__newline, + ACTIONS(6200), 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, - [170019] = 8, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(6656), 1, - sym_identifier, - ACTIONS(6726), 1, - sym__newline, - STATE(5050), 1, - sym_type_index, - STATE(5824), 1, - sym_type_qualifier, + [167144] = 6, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [170047] = 9, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(6396), 1, + ACTIONS(4829), 5, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(6453), 1, - anon_sym_EQ, - ACTIONS(6455), 1, - sym__newline, - STATE(4121), 1, - sym_string, - STATE(5156), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [167168] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4122), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [170077] = 9, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(6396), 1, + ACTIONS(4801), 9, anon_sym_COMMA, - ACTIONS(6728), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(6730), 1, - sym__newline, - STATE(4138), 1, - sym_string, - STATE(4738), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4139), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [170107] = 9, - ACTIONS(3814), 1, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + sym_type_conversion, + [167184] = 9, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(3878), 1, + ACTIONS(3956), 1, sym_string_start, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6732), 1, + ACTIONS(6567), 1, anon_sym_EQ, - ACTIONS(6734), 1, + ACTIONS(6569), 1, sym__newline, - STATE(4129), 1, + STATE(4184), 1, sym_string, - STATE(5208), 1, + STATE(4875), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4130), 2, + STATE(4187), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [170137] = 6, - ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, - anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4658), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [170161] = 8, - ACTIONS(4992), 1, + [167214] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6656), 1, + ACTIONS(6764), 1, sym_identifier, - ACTIONS(6736), 1, + ACTIONS(6797), 1, sym__newline, - STATE(5050), 1, + STATE(5105), 1, sym_type_index, - STATE(5824), 1, + STATE(5565), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [170189] = 9, - ACTIONS(3814), 1, + [167242] = 9, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(3878), 1, + ACTIONS(3956), 1, sym_string_start, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6738), 1, + ACTIONS(6561), 1, anon_sym_EQ, - ACTIONS(6740), 1, + ACTIONS(6563), 1, sym__newline, - STATE(4131), 1, + STATE(4110), 1, sym_string, - STATE(5213), 1, + STATE(5238), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4132), 2, + STATE(4111), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [170219] = 5, - ACTIONS(4652), 1, + [167272] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4809), 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, + [167288] = 6, + ACTIONS(6416), 1, anon_sym_as, - ACTIONS(6358), 1, + ACTIONS(6418), 1, + anon_sym_if, + ACTIONS(6428), 1, anon_sym_and, - ACTIONS(6360), 1, + ACTIONS(6430), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 6, + ACTIONS(4829), 5, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [170241] = 4, - ACTIONS(4656), 1, - anon_sym_as, - ACTIONS(6358), 1, - anon_sym_and, + [167312] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4654), 7, + ACTIONS(4650), 9, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, + anon_sym_and, anon_sym_or, - [170261] = 10, - ACTIONS(6677), 1, + sym_type_conversion, + [167328] = 10, + ACTIONS(6768), 1, anon_sym_LPAREN, - ACTIONS(6683), 1, + ACTIONS(6774), 1, anon_sym_LBRACK, - ACTIONS(6700), 1, + ACTIONS(6799), 1, + anon_sym_COMMA, + ACTIONS(6801), 1, + anon_sym_EQ, + ACTIONS(6803), 1, sym__newline, - ACTIONS(6742), 1, + STATE(3110), 1, + sym_c_function_definition, + STATE(4072), 1, + sym_c_parameters, + STATE(4983), 1, + aux_sym_cvar_def_repeat1, + STATE(5338), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [167360] = 10, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(6795), 1, + sym__newline, + ACTIONS(6805), 1, anon_sym_COMMA, - ACTIONS(6744), 1, + ACTIONS(6807), 1, anon_sym_EQ, - STATE(1406), 1, + STATE(1340), 1, sym_c_function_definition, - STATE(3968), 1, + STATE(4014), 1, sym_c_parameters, - STATE(5163), 1, + STATE(5108), 1, aux_sym_cvar_def_repeat1, - STATE(5330), 1, + STATE(5476), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [170293] = 6, - ACTIONS(6618), 1, + [167392] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4714), 9, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6620), 1, anon_sym_if, - ACTIONS(6624), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6626), 1, anon_sym_or, + sym_type_conversion, + [167408] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4658), 5, + ACTIONS(4841), 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, - [170317] = 3, - ACTIONS(6662), 1, + [167424] = 3, + ACTIONS(6811), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6660), 8, + ACTIONS(6809), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -263933,69 +268543,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym___stdcall, - [170335] = 6, - ACTIONS(6618), 1, - anon_sym_as, - ACTIONS(6620), 1, - anon_sym_if, - ACTIONS(6624), 1, - anon_sym_and, - ACTIONS(6626), 1, - anon_sym_or, + [167442] = 3, + ACTIONS(6815), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 5, + ACTIONS(6813), 8, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_STAR_STAR, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [170359] = 6, - ACTIONS(6346), 1, - anon_sym_as, - ACTIONS(6348), 1, - anon_sym_if, - ACTIONS(6358), 1, - anon_sym_and, - ACTIONS(6360), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4662), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [170383] = 10, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, anon_sym_LBRACK, - ACTIONS(6746), 1, - anon_sym_COMMA, - ACTIONS(6748), 1, - anon_sym_EQ, - ACTIONS(6750), 1, - sym__newline, - STATE(3087), 1, - sym_c_function_definition, - STATE(4016), 1, - sym_c_parameters, - STATE(5131), 1, - aux_sym_cvar_def_repeat1, - STATE(5287), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170415] = 2, + anon_sym_AMP, + anon_sym___stdcall, + [167460] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4289), 9, + ACTIONS(4393), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -264005,4738 +268572,4858 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [170431] = 8, - ACTIONS(4992), 1, + [167476] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6656), 1, + ACTIONS(6764), 1, sym_identifier, - ACTIONS(6752), 1, + ACTIONS(6817), 1, sym__newline, - STATE(5050), 1, + STATE(5105), 1, sym_type_index, - STATE(5824), 1, + STATE(5565), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [170459] = 9, - ACTIONS(3814), 1, + [167504] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6464), 1, - anon_sym_EQ, - ACTIONS(6466), 1, + ACTIONS(6764), 1, + sym_identifier, + ACTIONS(6819), 1, sym__newline, - STATE(4102), 1, - sym_string, - STATE(4750), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4103), 2, + STATE(5105), 1, sym_type_index, - aux_sym_cvar_decl_repeat1, - [170489] = 6, - ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, - anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, + STATE(5565), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [170513] = 3, - ACTIONS(6295), 1, + ACTIONS(5090), 2, anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6297), 8, - sym__newline, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym___stdcall, + ACTIONS(5092), 2, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_complex, - anon_sym___stdcall, - [170531] = 8, - ACTIONS(4992), 1, + [167532] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6656), 1, + ACTIONS(6764), 1, sym_identifier, - ACTIONS(6754), 1, + ACTIONS(6821), 1, sym__newline, - STATE(5050), 1, + STATE(5105), 1, sym_type_index, - STATE(5824), 1, + STATE(5565), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [170559] = 5, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, - ACTIONS(6756), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4643), 6, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [170581] = 4, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4650), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [170601] = 8, - ACTIONS(4992), 1, + [167560] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6656), 1, + ACTIONS(6764), 1, sym_identifier, - ACTIONS(6759), 1, + ACTIONS(6823), 1, sym__newline, - STATE(5050), 1, + STATE(5105), 1, sym_type_index, - STATE(5824), 1, + STATE(5565), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [170629] = 9, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6763), 1, - anon_sym_from, - ACTIONS(6765), 1, - anon_sym_COMMA, - STATE(4371), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6761), 2, + [167588] = 10, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(6819), 1, sym__newline, - anon_sym_SEMI, - [170659] = 6, - ACTIONS(6346), 1, - anon_sym_as, - ACTIONS(6348), 1, - anon_sym_if, - ACTIONS(6358), 1, - anon_sym_and, - ACTIONS(6360), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4627), 5, + ACTIONS(6825), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [170683] = 5, - ACTIONS(6767), 1, - anon_sym_class, - ACTIONS(6769), 1, - anon_sym_ctypedef, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2789), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5744), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [170705] = 3, - ACTIONS(6710), 1, - anon_sym_and, + ACTIONS(6827), 1, + anon_sym_EQ, + STATE(3127), 1, + sym_c_function_definition, + STATE(4072), 1, + sym_c_parameters, + STATE(5097), 1, + aux_sym_cvar_def_repeat1, + STATE(5338), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4654), 8, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_or, - [170723] = 8, - ACTIONS(4992), 1, + [167620] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6656), 1, + ACTIONS(6764), 1, sym_identifier, - ACTIONS(6771), 1, + ACTIONS(6829), 1, sym__newline, - STATE(5050), 1, + STATE(5105), 1, sym_type_index, - STATE(5824), 1, + STATE(5565), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [170751] = 8, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(6656), 1, - sym_identifier, - ACTIONS(6773), 1, - sym__newline, - STATE(5050), 1, - sym_type_index, - STATE(5824), 1, - sym_type_qualifier, + [167648] = 3, + ACTIONS(6718), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(6716), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, anon_sym_AMP, - [170779] = 6, - ACTIONS(6706), 1, + anon_sym___stdcall, + [167666] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6271), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4662), 5, + ACTIONS(6654), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [170803] = 3, - ACTIONS(6724), 1, - anon_sym_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6722), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [170821] = 3, - ACTIONS(5483), 1, + [167690] = 3, + ACTIONS(6811), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4416), 8, + ACTIONS(6809), 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, - [170839] = 6, - ACTIONS(6618), 1, - anon_sym_as, - ACTIONS(6620), 1, - anon_sym_if, - ACTIONS(6624), 1, - anon_sym_and, - ACTIONS(6626), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6775), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [170863] = 8, - ACTIONS(4992), 1, + [167708] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6656), 1, + ACTIONS(6764), 1, sym_identifier, - ACTIONS(6777), 1, + ACTIONS(6831), 1, sym__newline, - STATE(5050), 1, + STATE(5105), 1, sym_type_index, - STATE(5824), 1, + STATE(5565), 1, sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4988), 2, + ACTIONS(5090), 2, anon_sym_STAR, anon_sym___stdcall, - ACTIONS(4990), 2, + ACTIONS(5092), 2, anon_sym_STAR_STAR, anon_sym_AMP, - [170891] = 2, + [167736] = 9, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6833), 1, + anon_sym_EQ, + ACTIONS(6835), 1, + sym__newline, + STATE(4118), 1, + sym_string, + STATE(5266), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 9, + STATE(4119), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [167766] = 9, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(6503), 1, anon_sym_COMMA, + ACTIONS(6837), 1, + anon_sym_EQ, + ACTIONS(6839), 1, + sym__newline, + STATE(4120), 1, + sym_string, + STATE(5267), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4121), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [167796] = 6, + ACTIONS(6416), 1, anon_sym_as, + ACTIONS(6418), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(6428), 1, anon_sym_and, + ACTIONS(6430), 1, anon_sym_or, - sym_type_conversion, - [170907] = 3, - ACTIONS(6610), 1, - anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6608), 8, - sym__newline, - anon_sym_LPAREN, + ACTIONS(4793), 5, anon_sym_COMMA, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym___stdcall, - [170925] = 2, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [167820] = 5, + ACTIONS(6742), 1, + anon_sym_and, + ACTIONS(6744), 1, + anon_sym_or, + ACTIONS(6841), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4639), 9, + ACTIONS(4741), 6, 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, - [170941] = 10, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, + [167842] = 8, + ACTIONS(5094), 1, anon_sym_LBRACK, - ACTIONS(6779), 1, - anon_sym_COMMA, - ACTIONS(6781), 1, - anon_sym_EQ, - ACTIONS(6783), 1, + ACTIONS(6764), 1, + sym_identifier, + ACTIONS(6844), 1, sym__newline, - STATE(1235), 1, - sym_c_function_definition, - STATE(3968), 1, - sym_c_parameters, - STATE(4828), 1, - aux_sym_cvar_def_repeat1, - STATE(5330), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [170973] = 6, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, + STATE(5105), 1, + sym_type_index, + STATE(5565), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6546), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [170997] = 10, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [167870] = 9, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6771), 1, - sym__newline, - ACTIONS(6785), 1, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6787), 1, + ACTIONS(6846), 1, anon_sym_EQ, - STATE(673), 1, - sym_c_function_definition, - STATE(4033), 1, - sym_c_parameters, - STATE(5055), 1, - aux_sym_cvar_def_repeat1, - STATE(5334), 1, - sym_template_params, + ACTIONS(6848), 1, + sym__newline, + STATE(4136), 1, + sym_string, + STATE(4787), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171029] = 9, - ACTIONS(3814), 1, + STATE(4137), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [167900] = 9, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(3878), 1, + ACTIONS(3956), 1, sym_string_start, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6789), 1, + ACTIONS(6850), 1, anon_sym_EQ, - ACTIONS(6791), 1, + ACTIONS(6852), 1, sym__newline, - STATE(4062), 1, + STATE(4247), 1, sym_string, - STATE(4765), 1, + STATE(5229), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4063), 2, + STATE(4249), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171059] = 9, - ACTIONS(3814), 1, + [167930] = 9, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(3878), 1, + ACTIONS(3956), 1, sym_string_start, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6793), 1, + ACTIONS(6854), 1, anon_sym_EQ, - ACTIONS(6795), 1, + ACTIONS(6856), 1, sym__newline, - STATE(4064), 1, + STATE(4212), 1, sym_string, - STATE(4773), 1, + STATE(4850), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4065), 2, + STATE(4213), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [171089] = 3, - ACTIONS(6610), 1, + [167960] = 3, + ACTIONS(5591), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6608), 8, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4580), 8, + sym__newline, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_complex, anon_sym___stdcall, - [171107] = 5, - ACTIONS(6435), 1, - anon_sym_as, - ACTIONS(6443), 1, - anon_sym_and, - ACTIONS(6445), 1, - anon_sym_or, + [167978] = 8, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(6764), 1, + sym_identifier, + ACTIONS(6858), 1, + sym__newline, + STATE(5105), 1, + sym_type_index, + STATE(5565), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6797), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [171128] = 9, - ACTIONS(6799), 1, - anon_sym_COLON, - ACTIONS(6801), 1, - anon_sym_except, - ACTIONS(6803), 1, - anon_sym_with, - ACTIONS(6805), 1, - anon_sym_nogil, - ACTIONS(6807), 1, - anon_sym_noexcept, - ACTIONS(6809), 1, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [168006] = 8, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(6764), 1, + sym_identifier, + ACTIONS(6860), 1, sym__newline, - STATE(4023), 1, - sym_gil_spec, - STATE(4502), 1, - sym_exception_value, + STATE(5105), 1, + sym_type_index, + STATE(5565), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171157] = 9, - ACTIONS(6799), 1, - anon_sym_COLON, - ACTIONS(6801), 1, - anon_sym_except, - ACTIONS(6807), 1, - anon_sym_noexcept, - ACTIONS(6809), 1, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [168034] = 9, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6646), 1, + anon_sym_EQ, + ACTIONS(6648), 1, sym__newline, - ACTIONS(6811), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_nogil, - STATE(4502), 1, - sym_exception_value, - STATE(5380), 1, - sym_gil_spec, + STATE(4171), 1, + sym_string, + STATE(5207), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171186] = 5, - ACTIONS(6420), 1, - anon_sym_and, - ACTIONS(6422), 1, - anon_sym_or, - ACTIONS(6815), 1, - anon_sym_as, + STATE(4174), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [168064] = 10, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(6862), 1, + anon_sym_COMMA, + ACTIONS(6864), 1, + anon_sym_EQ, + ACTIONS(6866), 1, + sym__newline, + STATE(674), 1, + sym_c_function_definition, + STATE(4051), 1, + sym_c_parameters, + STATE(5147), 1, + aux_sym_cvar_def_repeat1, + STATE(5390), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [171207] = 8, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6765), 1, - anon_sym_COMMA, - STATE(4371), 1, - aux_sym_assert_statement_repeat1, + [168096] = 8, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(6764), 1, + sym_identifier, + ACTIONS(6868), 1, + sym__newline, + STATE(5105), 1, + sym_type_index, + STATE(5565), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6644), 2, - sym__newline, - anon_sym_SEMI, - [171234] = 4, - ACTIONS(1279), 1, - sym_string_start, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [168124] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6818), 5, + ACTIONS(4813), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [171253] = 9, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6640), 1, anon_sym_or, - ACTIONS(6820), 1, - anon_sym_COMMA, - ACTIONS(6822), 1, - anon_sym_COLON, - ACTIONS(6824), 1, - anon_sym_by, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, + sym_type_conversion, + [168140] = 3, + ACTIONS(6742), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171282] = 9, - ACTIONS(6634), 1, + ACTIONS(4714), 8, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(6820), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, anon_sym_COLON, - ACTIONS(6828), 1, - anon_sym_by, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171311] = 5, - ACTIONS(6435), 1, - anon_sym_as, - ACTIONS(6443), 1, - anon_sym_and, - ACTIONS(6445), 1, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_or, + sym_type_conversion, + [168158] = 8, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(6764), 1, + sym_identifier, + ACTIONS(6870), 1, + sym__newline, + STATE(5105), 1, + sym_type_index, + STATE(5565), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6797), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [171332] = 9, - ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, - anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, - ACTIONS(6830), 1, - anon_sym_COMMA, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(6834), 1, - anon_sym_RBRACK, - STATE(4939), 1, - aux_sym_subscript_repeat1, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [168186] = 8, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(6764), 1, + sym_identifier, + ACTIONS(6872), 1, + sym__newline, + STATE(5105), 1, + sym_type_index, + STATE(5565), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171361] = 6, - ACTIONS(6157), 1, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [168214] = 6, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6762), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4878), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [171384] = 9, - ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, - anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(6836), 1, + ACTIONS(4837), 5, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(6838), 1, + anon_sym_COLON, anon_sym_RBRACK, - STATE(4965), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171413] = 9, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, - anon_sym_LBRACK, - ACTIONS(6840), 1, - sym_identifier, - ACTIONS(6842), 1, - sym_string_start, - STATE(2944), 1, - sym_c_function_definition, - STATE(4016), 1, - sym_c_parameters, - STATE(4247), 1, - sym_string, - STATE(5287), 1, - sym_template_params, + anon_sym_PIPE, + [168238] = 5, + ACTIONS(6874), 1, + anon_sym_class, + ACTIONS(6876), 1, + anon_sym_ctypedef, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171442] = 5, - ACTIONS(4323), 1, - anon_sym_DOT, - ACTIONS(6844), 1, - anon_sym_EQ, - STATE(4209), 1, - aux_sym_class_definition_repeat2, + STATE(2832), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(5852), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [168260] = 3, + ACTIONS(6434), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6632), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [171463] = 9, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(6846), 1, - anon_sym_LPAREN, - ACTIONS(6848), 1, - anon_sym_COLON, - ACTIONS(6850), 1, - anon_sym_LBRACK, - ACTIONS(6852), 1, + ACTIONS(6436), 8, sym__newline, - STATE(508), 1, - sym_external_definition, - STATE(4036), 1, - aux_sym_class_definition_repeat2, - STATE(5049), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171492] = 9, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(6854), 1, anon_sym_LPAREN, - ACTIONS(6856), 1, anon_sym_COLON, - ACTIONS(6858), 1, + anon_sym_STAR_STAR, anon_sym_LBRACK, - ACTIONS(6860), 1, - sym__newline, - STATE(2953), 1, - sym_external_definition, - STATE(3384), 1, - aux_sym_class_definition_repeat2, - STATE(5106), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171521] = 8, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, + anon_sym_AMP, + anon_sym_complex, + anon_sym___stdcall, + [168278] = 5, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6762), 1, anon_sym_or, - ACTIONS(6765), 1, - anon_sym_COMMA, - STATE(4371), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6862), 2, - sym__newline, - anon_sym_SEMI, - [171548] = 6, - ACTIONS(6412), 1, + ACTIONS(6878), 1, anon_sym_as, - ACTIONS(6414), 1, - anon_sym_if, - ACTIONS(6420), 1, - anon_sym_and, - ACTIONS(6422), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4658), 4, - anon_sym_RPAREN, + ACTIONS(4741), 6, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [171571] = 9, - ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, - ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(6864), 1, - anon_sym_COMMA, - ACTIONS(6866), 1, anon_sym_RBRACK, - STATE(5023), 1, - aux_sym_subscript_repeat1, + anon_sym_PIPE, + [168300] = 9, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6881), 1, + anon_sym_EQ, + ACTIONS(6883), 1, + sym__newline, + STATE(4194), 1, + sym_string, + STATE(4772), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171600] = 9, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(6820), 1, + STATE(4197), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [168330] = 9, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6868), 1, - anon_sym_COLON, - ACTIONS(6870), 1, - anon_sym_by, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(6885), 1, + anon_sym_EQ, + ACTIONS(6887), 1, + sym__newline, + STATE(4199), 1, + sym_string, + STATE(4774), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171629] = 5, - ACTIONS(4652), 1, + STATE(4201), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [168360] = 5, + ACTIONS(4791), 1, anon_sym_as, - ACTIONS(6420), 1, + ACTIONS(6428), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6430), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 5, - anon_sym_RPAREN, + ACTIONS(4789), 6, anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, - [171650] = 5, - ACTIONS(6346), 1, - anon_sym_as, - ACTIONS(6358), 1, - anon_sym_and, - ACTIONS(6360), 1, - anon_sym_or, + anon_sym_RBRACE, + [168382] = 10, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(6889), 1, + anon_sym_COMMA, + ACTIONS(6891), 1, + anon_sym_EQ, + ACTIONS(6893), 1, + sym__newline, + STATE(1265), 1, + sym_c_function_definition, + STATE(4014), 1, + sym_c_parameters, + STATE(4939), 1, + aux_sym_cvar_def_repeat1, + STATE(5476), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6797), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [171671] = 4, - ACTIONS(4656), 1, + [168414] = 6, + ACTIONS(6736), 1, anon_sym_as, - ACTIONS(6420), 1, + ACTIONS(6738), 1, + anon_sym_if, + ACTIONS(6742), 1, anon_sym_and, + ACTIONS(6744), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4654), 6, - anon_sym_RPAREN, + ACTIONS(6895), 5, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_or, - [171690] = 9, - ACTIONS(6801), 1, - anon_sym_except, - ACTIONS(6803), 1, - anon_sym_with, - ACTIONS(6805), 1, - anon_sym_nogil, - ACTIONS(6807), 1, - anon_sym_noexcept, - ACTIONS(6872), 1, anon_sym_COLON, - ACTIONS(6874), 1, - sym__newline, - STATE(4011), 1, - sym_gil_spec, - STATE(4520), 1, - sym_exception_value, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [168438] = 3, + ACTIONS(6380), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171719] = 5, - ACTIONS(6346), 1, - anon_sym_as, - ACTIONS(6358), 1, - anon_sym_and, - ACTIONS(6360), 1, - anon_sym_or, + ACTIONS(6382), 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, + [168456] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6797), 5, + ACTIONS(4729), 9, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [171740] = 9, - ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6710), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(6712), 1, anon_sym_or, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(6876), 1, - anon_sym_COMMA, - ACTIONS(6878), 1, - anon_sym_RBRACK, - STATE(4754), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171769] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6885), 1, - anon_sym_BSLASH, - ACTIONS(6880), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(3961), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6882), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [171792] = 6, - ACTIONS(6435), 1, + sym_type_conversion, + [168472] = 6, + ACTIONS(6416), 1, anon_sym_as, - ACTIONS(6437), 1, + ACTIONS(6418), 1, anon_sym_if, - ACTIONS(6443), 1, + ACTIONS(6428), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6430), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 4, + ACTIONS(4837), 5, anon_sym_COMMA, + anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [171815] = 9, - ACTIONS(6801), 1, - anon_sym_except, - ACTIONS(6807), 1, - anon_sym_noexcept, - ACTIONS(6811), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_nogil, - ACTIONS(6872), 1, - anon_sym_COLON, - ACTIONS(6874), 1, - sym__newline, - STATE(4520), 1, - sym_exception_value, - STATE(5452), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171844] = 6, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, + anon_sym_RBRACE, + [168496] = 4, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6762), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6775), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(4789), 7, + anon_sym_DOT, anon_sym_COMMA, - [171867] = 9, - ACTIONS(6706), 1, anon_sym_as, - ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, - ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(6888), 1, - anon_sym_COMMA, - ACTIONS(6890), 1, anon_sym_RBRACK, - STATE(5072), 1, - aux_sym_subscript_repeat1, + anon_sym_PIPE, + [168516] = 3, + ACTIONS(6760), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171896] = 9, - ACTIONS(6706), 1, + ACTIONS(4714), 8, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, - ACTIONS(6832), 1, anon_sym_COLON, - ACTIONS(6892), 1, - anon_sym_COMMA, - ACTIONS(6894), 1, anon_sym_RBRACK, - STATE(4834), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [171925] = 6, - ACTIONS(6346), 1, + anon_sym_PIPE, + anon_sym_or, + [168534] = 6, + ACTIONS(6736), 1, anon_sym_as, - ACTIONS(6348), 1, + ACTIONS(6738), 1, anon_sym_if, - ACTIONS(6358), 1, + ACTIONS(6742), 1, anon_sym_and, - ACTIONS(6360), 1, + ACTIONS(6744), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6896), 4, + ACTIONS(4793), 5, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [171948] = 9, - ACTIONS(6801), 1, - anon_sym_except, - ACTIONS(6803), 1, - anon_sym_with, - ACTIONS(6805), 1, - anon_sym_nogil, - ACTIONS(6807), 1, - anon_sym_noexcept, - ACTIONS(6898), 1, anon_sym_COLON, - ACTIONS(6900), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [168558] = 9, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6897), 1, + anon_sym_EQ, + ACTIONS(6899), 1, sym__newline, - STATE(3963), 1, - sym_gil_spec, - STATE(4462), 1, - sym_exception_value, + STATE(4250), 1, + sym_string, + STATE(5239), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [171977] = 5, - ACTIONS(6443), 1, - anon_sym_and, - ACTIONS(6445), 1, - anon_sym_or, - ACTIONS(6902), 1, - anon_sym_as, + STATE(4251), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [168588] = 3, + ACTIONS(6815), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 5, + ACTIONS(6813), 8, + sym__newline, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [171998] = 5, - ACTIONS(4652), 1, - anon_sym_as, - ACTIONS(6443), 1, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym___stdcall, + [168606] = 7, + ACTIONS(2709), 1, + anon_sym_except_STAR, + ACTIONS(2713), 1, + anon_sym_except, + ACTIONS(6901), 1, + anon_sym_finally, + STATE(1546), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(820), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(829), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [168631] = 5, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6499), 1, anon_sym_or, + ACTIONS(6903), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 5, + ACTIONS(4741), 5, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [172019] = 8, - ACTIONS(6157), 1, + [168652] = 9, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6762), 1, anon_sym_or, - ACTIONS(6765), 1, + ACTIONS(6906), 1, anon_sym_COMMA, - STATE(4371), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6905), 2, - sym__newline, - anon_sym_SEMI, - [172046] = 7, - ACTIONS(2733), 1, - anon_sym_except, - ACTIONS(2765), 1, - anon_sym_except_STAR, - ACTIONS(6907), 1, - anon_sym_finally, - STATE(1514), 1, - sym_finally_clause, + ACTIONS(6908), 1, + anon_sym_COLON, + ACTIONS(6910), 1, + anon_sym_RBRACK, + STATE(5125), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(830), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(835), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [172071] = 9, - ACTIONS(3797), 1, + [168681] = 9, + ACTIONS(3901), 1, anon_sym_DOT, - ACTIONS(6909), 1, + ACTIONS(6912), 1, anon_sym_LPAREN, - ACTIONS(6911), 1, + ACTIONS(6914), 1, anon_sym_COLON, - ACTIONS(6913), 1, + ACTIONS(6916), 1, anon_sym_LBRACK, - ACTIONS(6915), 1, + ACTIONS(6918), 1, sym__newline, - STATE(1083), 1, + STATE(527), 1, sym_external_definition, - STATE(3384), 1, + STATE(4026), 1, aux_sym_class_definition_repeat2, - STATE(5044), 1, + STATE(5115), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172100] = 8, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6548), 1, - anon_sym_COMMA, - STATE(4606), 1, - aux_sym_assert_statement_repeat1, + [168710] = 9, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(6920), 1, + sym_identifier, + ACTIONS(6922), 1, + sym_string_start, + STATE(2961), 1, + sym_c_function_definition, + STATE(4072), 1, + sym_c_parameters, + STATE(4264), 1, + sym_string, + STATE(5338), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6544), 2, - sym__newline, - anon_sym_SEMI, - [172127] = 9, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6917), 1, + [168739] = 9, + ACTIONS(6768), 1, anon_sym_LPAREN, - ACTIONS(6919), 1, - anon_sym_COLON, - ACTIONS(6921), 1, - sym__newline, - STATE(2936), 1, - sym_external_definition, - STATE(3950), 1, - aux_sym_class_definition_repeat2, - STATE(5102), 1, - sym_argument_list, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(6922), 1, + sym_string_start, + ACTIONS(6924), 1, + sym_identifier, + STATE(1246), 1, + sym_c_function_definition, + STATE(4014), 1, + sym_c_parameters, + STATE(4305), 1, + sym_string, + STATE(5476), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172156] = 4, - ACTIONS(4656), 1, + [168768] = 9, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(6443), 1, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(6908), 1, + anon_sym_COLON, + ACTIONS(6926), 1, + anon_sym_COMMA, + ACTIONS(6928), 1, + anon_sym_RBRACK, + STATE(5026), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4654), 6, - anon_sym_COMMA, + [168797] = 9, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, anon_sym_or, - [172175] = 6, - ACTIONS(6923), 1, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(6932), 1, + anon_sym_COLON, + ACTIONS(6934), 1, + anon_sym_by, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [168826] = 9, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6925), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6927), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6929), 1, + ACTIONS(6710), 1, anon_sym_or, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(6936), 1, + anon_sym_COLON, + ACTIONS(6938), 1, + anon_sym_by, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6546), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [172198] = 5, - ACTIONS(6412), 1, + [168855] = 5, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6420), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6499), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6797), 5, + ACTIONS(6940), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [172219] = 8, - ACTIONS(6157), 1, + [168876] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6933), 1, - anon_sym_COMMA, - STATE(4666), 1, - aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6931), 2, + ACTIONS(6895), 4, sym__newline, anon_sym_SEMI, - [172246] = 7, - ACTIONS(2791), 1, - anon_sym_except, - ACTIONS(2795), 1, + anon_sym_from, + anon_sym_COMMA, + [168899] = 7, + ACTIONS(2741), 1, anon_sym_except_STAR, - ACTIONS(6935), 1, + ACTIONS(2747), 1, + anon_sym_except, + ACTIONS(6942), 1, anon_sym_finally, - STATE(1769), 1, + STATE(1457), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(825), 2, + STATE(823), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(826), 2, + STATE(827), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [172271] = 8, - ACTIONS(6157), 1, + [168924] = 9, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6762), 1, anon_sym_or, - ACTIONS(6939), 1, + ACTIONS(6908), 1, + anon_sym_COLON, + ACTIONS(6944), 1, anon_sym_COMMA, - STATE(4594), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(6946), 1, + anon_sym_RBRACK, + STATE(4932), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6937), 2, - sym__newline, - anon_sym_SEMI, - [172298] = 9, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(6941), 1, - anon_sym_LPAREN, - ACTIONS(6943), 1, + [168953] = 9, + ACTIONS(6948), 1, anon_sym_COLON, - ACTIONS(6945), 1, + ACTIONS(6950), 1, + anon_sym_except, + ACTIONS(6952), 1, + anon_sym_with, + ACTIONS(6954), 1, + anon_sym_nogil, + ACTIONS(6956), 1, + anon_sym_noexcept, + ACTIONS(6958), 1, sym__newline, - STATE(2981), 1, - sym_external_definition, - STATE(4032), 1, + STATE(4505), 1, + sym_exception_value, + STATE(5496), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [168982] = 5, + ACTIONS(4427), 1, + anon_sym_DOT, + ACTIONS(6960), 1, + anon_sym_EQ, + STATE(4244), 1, aux_sym_class_definition_repeat2, - STATE(5095), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172327] = 9, - ACTIONS(6706), 1, + ACTIONS(6722), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6708), 1, + anon_sym_PIPE, + [169003] = 5, + ACTIONS(6489), 1, + anon_sym_as, + ACTIONS(6497), 1, + anon_sym_and, + ACTIONS(6499), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6940), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6710), 1, + anon_sym_async, + anon_sym_for, + [169024] = 6, + ACTIONS(6547), 1, + anon_sym_as, + ACTIONS(6549), 1, + anon_sym_if, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6557), 1, anon_sym_or, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4837), 4, anon_sym_COMMA, - ACTIONS(6949), 1, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - STATE(4914), 1, - aux_sym_subscript_repeat1, + [169047] = 4, + ACTIONS(6874), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172356] = 9, - ACTIONS(6706), 1, + STATE(2832), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(5852), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [169066] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(6951), 1, + ACTIONS(6656), 1, anon_sym_COMMA, - ACTIONS(6953), 1, - anon_sym_RBRACK, - STATE(4984), 1, - aux_sym_subscript_repeat1, + STATE(4634), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172385] = 5, - ACTIONS(6346), 1, + ACTIONS(6652), 2, + sym__newline, + anon_sym_SEMI, + [169093] = 5, + ACTIONS(6416), 1, anon_sym_as, - ACTIONS(6358), 1, + ACTIONS(6428), 1, anon_sym_and, - ACTIONS(6360), 1, + ACTIONS(6430), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6797), 5, + ACTIONS(6940), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [172406] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(6959), 1, - anon_sym_BSLASH, - ACTIONS(6955), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(3961), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(6957), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [172429] = 9, - ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, - anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(6961), 1, - anon_sym_COMMA, - ACTIONS(6963), 1, - anon_sym_RBRACK, - STATE(5225), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [172458] = 9, - ACTIONS(3797), 1, + [169114] = 9, + ACTIONS(3901), 1, anon_sym_DOT, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(6965), 1, + ACTIONS(6962), 1, anon_sym_LPAREN, - ACTIONS(6967), 1, + ACTIONS(6964), 1, anon_sym_COLON, - ACTIONS(6969), 1, + ACTIONS(6966), 1, + anon_sym_LBRACK, + ACTIONS(6968), 1, sym__newline, - STATE(1147), 1, + STATE(1152), 1, sym_external_definition, - STATE(4005), 1, + STATE(4001), 1, aux_sym_class_definition_repeat2, - STATE(4857), 1, + STATE(4876), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172487] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4561), 8, - anon_sym_DOT, + [169143] = 6, + ACTIONS(6970), 1, anon_sym_as, + ACTIONS(6972), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(6974), 1, anon_sym_and, + ACTIONS(6976), 1, anon_sym_or, - [172502] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 8, + ACTIONS(6654), 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, - [172517] = 9, - ACTIONS(3797), 1, + [169166] = 9, + ACTIONS(3901), 1, anon_sym_DOT, - ACTIONS(6850), 1, + ACTIONS(6966), 1, anon_sym_LBRACK, - ACTIONS(6971), 1, + ACTIONS(6978), 1, anon_sym_LPAREN, - ACTIONS(6973), 1, + ACTIONS(6980), 1, anon_sym_COLON, - ACTIONS(6975), 1, + ACTIONS(6982), 1, sym__newline, - STATE(510), 1, + STATE(1083), 1, sym_external_definition, - STATE(4043), 1, + STATE(3434), 1, aux_sym_class_definition_repeat2, - STATE(5061), 1, + STATE(5111), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172546] = 9, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(6820), 1, - anon_sym_COMMA, - ACTIONS(6977), 1, - anon_sym_COLON, - ACTIONS(6979), 1, - anon_sym_by, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, + [169195] = 7, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(6764), 1, + sym_identifier, + STATE(5105), 1, + sym_type_index, + STATE(5565), 1, + sym_type_qualifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172575] = 6, - ACTIONS(6412), 1, + ACTIONS(5090), 2, + anon_sym_STAR, + anon_sym___stdcall, + ACTIONS(5092), 2, + anon_sym_STAR_STAR, + anon_sym_AMP, + [169220] = 6, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6420), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6499), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4662), 4, + ACTIONS(4829), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_async, anon_sym_for, - [172598] = 9, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, - anon_sym_LBRACK, - ACTIONS(6842), 1, - sym_string_start, - ACTIONS(6981), 1, - sym_identifier, - STATE(2935), 1, - sym_c_function_definition, - STATE(4016), 1, - sym_c_parameters, - STATE(4237), 1, - sym_string, - STATE(5287), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [172627] = 2, - ACTIONS(3), 2, + [169243] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(4601), 8, + ACTIONS(6988), 1, + anon_sym_BSLASH, + ACTIONS(6984), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(4018), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(6986), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [169266] = 9, + ACTIONS(3901), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, + ACTIONS(6990), 1, + anon_sym_LPAREN, + ACTIONS(6992), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [172642] = 6, - ACTIONS(6923), 1, - anon_sym_as, - ACTIONS(6925), 1, - anon_sym_if, - ACTIONS(6927), 1, - anon_sym_and, - ACTIONS(6929), 1, - anon_sym_or, + ACTIONS(6994), 1, + anon_sym_LBRACK, + ACTIONS(6996), 1, + sym__newline, + STATE(2936), 1, + sym_external_definition, + STATE(4045), 1, + aux_sym_class_definition_repeat2, + STATE(5146), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [172665] = 9, - ACTIONS(6634), 1, + [169295] = 5, + ACTIONS(6416), 1, anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(6820), 1, - anon_sym_COMMA, - ACTIONS(6983), 1, - anon_sym_COLON, - ACTIONS(6985), 1, - anon_sym_by, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [172694] = 5, - ACTIONS(6927), 1, + ACTIONS(6428), 1, anon_sym_and, - ACTIONS(6929), 1, + ACTIONS(6430), 1, anon_sym_or, - ACTIONS(6987), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 5, - anon_sym_DOT, + ACTIONS(6940), 5, + anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [172715] = 4, - ACTIONS(6927), 1, - anon_sym_and, - ACTIONS(6929), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4650), 6, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [169316] = 5, + ACTIONS(6015), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(6998), 1, anon_sym_EQ, - anon_sym_PIPE, - [172734] = 3, - ACTIONS(6927), 1, - anon_sym_and, + STATE(4209), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4654), 7, - anon_sym_DOT, + ACTIONS(6722), 5, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_or, - [172751] = 6, - ACTIONS(6435), 1, + [169337] = 6, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6437), 1, + ACTIONS(6491), 1, anon_sym_if, - ACTIONS(6443), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6499), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4662), 4, + ACTIONS(4837), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [172774] = 6, - ACTIONS(6923), 1, - anon_sym_as, - ACTIONS(6925), 1, - anon_sym_if, - ACTIONS(6927), 1, - anon_sym_and, - ACTIONS(6929), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4658), 4, + [169360] = 9, + ACTIONS(3901), 1, anon_sym_DOT, + ACTIONS(6916), 1, + anon_sym_LBRACK, + ACTIONS(7000), 1, + anon_sym_LPAREN, + ACTIONS(7002), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [172797] = 8, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6939), 1, - anon_sym_COMMA, - STATE(4712), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6990), 2, + ACTIONS(7004), 1, sym__newline, - anon_sym_SEMI, - [172824] = 6, - ACTIONS(6923), 1, - anon_sym_as, - ACTIONS(6925), 1, - anon_sym_if, - ACTIONS(6927), 1, - anon_sym_and, - ACTIONS(6929), 1, - anon_sym_or, + STATE(525), 1, + sym_external_definition, + STATE(4040), 1, + aux_sym_class_definition_repeat2, + STATE(5104), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4662), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [172847] = 9, - ACTIONS(3797), 1, + [169389] = 9, + ACTIONS(3901), 1, anon_sym_DOT, - ACTIONS(6913), 1, + ACTIONS(6994), 1, anon_sym_LBRACK, - ACTIONS(6992), 1, + ACTIONS(7006), 1, anon_sym_LPAREN, - ACTIONS(6994), 1, + ACTIONS(7008), 1, anon_sym_COLON, - ACTIONS(6996), 1, + ACTIONS(7010), 1, sym__newline, - STATE(1193), 1, + STATE(2968), 1, sym_external_definition, - STATE(3384), 1, + STATE(3434), 1, aux_sym_class_definition_repeat2, - STATE(4854), 1, + STATE(5158), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172876] = 5, - ACTIONS(6998), 1, - anon_sym_DOT, - ACTIONS(7000), 1, - anon_sym_EQ, - STATE(4165), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6632), 5, - anon_sym_LPAREN, - anon_sym_COMMA, + [169418] = 8, + ACTIONS(6265), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [172897] = 5, - ACTIONS(5959), 1, - anon_sym_DOT, - ACTIONS(7002), 1, - anon_sym_EQ, - STATE(4048), 1, - aux_sym_class_definition_repeat2, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(7014), 1, + anon_sym_COMMA, + STATE(4598), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6632), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [172918] = 9, - ACTIONS(6634), 1, + ACTIONS(7012), 2, + sym__newline, + anon_sym_SEMI, + [169445] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6820), 1, - anon_sym_COMMA, - ACTIONS(7004), 1, - anon_sym_COLON, - ACTIONS(7006), 1, - anon_sym_by, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172947] = 6, - ACTIONS(6412), 1, + ACTIONS(4966), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [169468] = 9, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6414), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6420), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6710), 1, anon_sym_or, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(7016), 1, + anon_sym_COLON, + ACTIONS(7018), 1, + anon_sym_by, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [172970] = 9, - ACTIONS(6801), 1, + [169497] = 9, + ACTIONS(6950), 1, anon_sym_except, - ACTIONS(6807), 1, + ACTIONS(6956), 1, anon_sym_noexcept, - ACTIONS(6811), 1, + ACTIONS(7020), 1, + anon_sym_COLON, + ACTIONS(7022), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(7024), 1, anon_sym_nogil, - ACTIONS(7008), 1, - anon_sym_COLON, - ACTIONS(7010), 1, + ACTIONS(7026), 1, sym__newline, - STATE(4455), 1, - sym_exception_value, - STATE(5430), 1, + STATE(4015), 1, sym_gil_spec, + STATE(4551), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [172999] = 9, - ACTIONS(6801), 1, + [169526] = 9, + ACTIONS(6950), 1, anon_sym_except, - ACTIONS(6807), 1, - anon_sym_noexcept, - ACTIONS(6811), 1, + ACTIONS(6952), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6954), 1, anon_sym_nogil, - ACTIONS(7012), 1, + ACTIONS(6956), 1, + anon_sym_noexcept, + ACTIONS(7028), 1, anon_sym_COLON, - ACTIONS(7014), 1, + ACTIONS(7030), 1, sym__newline, - STATE(4450), 1, + STATE(4589), 1, sym_exception_value, - STATE(5284), 1, + STATE(5491), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173028] = 7, - ACTIONS(2733), 1, - anon_sym_except, - ACTIONS(2765), 1, - anon_sym_except_STAR, - ACTIONS(6907), 1, - anon_sym_finally, - STATE(1486), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(813), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(820), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [173053] = 9, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(7016), 1, - anon_sym_LPAREN, - ACTIONS(7018), 1, - anon_sym_COLON, - ACTIONS(7020), 1, - sym__newline, - STATE(1098), 1, - sym_external_definition, - STATE(3973), 1, - aux_sym_class_definition_repeat2, - STATE(4805), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173082] = 4, - ACTIONS(6767), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2789), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5744), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [173101] = 5, - ACTIONS(6435), 1, - anon_sym_as, - ACTIONS(6443), 1, + [169555] = 5, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6557), 1, anon_sym_or, + ACTIONS(7032), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6797), 5, + ACTIONS(4741), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [173122] = 9, - ACTIONS(6801), 1, + [169576] = 9, + ACTIONS(6950), 1, anon_sym_except, - ACTIONS(6803), 1, - anon_sym_with, - ACTIONS(6805), 1, - anon_sym_nogil, - ACTIONS(6807), 1, + ACTIONS(6956), 1, anon_sym_noexcept, ACTIONS(7022), 1, - anon_sym_COLON, + anon_sym_with, ACTIONS(7024), 1, + anon_sym_nogil, + ACTIONS(7035), 1, + anon_sym_COLON, + ACTIONS(7037), 1, sym__newline, - STATE(4029), 1, + STATE(4043), 1, sym_gil_spec, - STATE(4531), 1, + STATE(4541), 1, + sym_exception_value, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [169605] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7044), 1, + anon_sym_BSLASH, + ACTIONS(7039), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(4018), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(7041), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [169628] = 9, + ACTIONS(6950), 1, + anon_sym_except, + ACTIONS(6952), 1, + anon_sym_with, + ACTIONS(6954), 1, + anon_sym_nogil, + ACTIONS(6956), 1, + anon_sym_noexcept, + ACTIONS(7035), 1, + anon_sym_COLON, + ACTIONS(7037), 1, + sym__newline, + STATE(4541), 1, sym_exception_value, + STATE(5434), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173151] = 5, - ACTIONS(6412), 1, + [169657] = 6, + ACTIONS(6547), 1, anon_sym_as, - ACTIONS(6420), 1, + ACTIONS(6549), 1, + anon_sym_if, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6557), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6797), 5, - anon_sym_RPAREN, + ACTIONS(4793), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - [173172] = 5, - ACTIONS(6412), 1, + anon_sym_RBRACK, + [169680] = 6, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6420), 1, + ACTIONS(6491), 1, + anon_sym_if, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6422), 1, + ACTIONS(6499), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6797), 5, + ACTIONS(4793), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - [173193] = 6, - ACTIONS(6157), 1, + [169703] = 5, + ACTIONS(4791), 1, anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6557), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3894), 4, - sym__newline, - anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [173216] = 7, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(6656), 1, - sym_identifier, - STATE(5050), 1, - sym_type_index, - STATE(5824), 1, - sym_type_qualifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4988), 2, - anon_sym_STAR, - anon_sym___stdcall, - ACTIONS(4990), 2, - anon_sym_STAR_STAR, - anon_sym_AMP, - [173241] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4573), 8, - anon_sym_DOT, - anon_sym_as, + ACTIONS(4789), 5, + anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [173256] = 9, - ACTIONS(6634), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [169724] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6820), 1, + ACTIONS(7049), 1, anon_sym_COMMA, - ACTIONS(7026), 1, - anon_sym_COLON, - ACTIONS(7028), 1, - anon_sym_by, - STATE(4567), 1, + STATE(4611), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173285] = 9, - ACTIONS(6801), 1, - anon_sym_except, - ACTIONS(6807), 1, - anon_sym_noexcept, - ACTIONS(6811), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_nogil, - ACTIONS(7030), 1, - anon_sym_COLON, - ACTIONS(7032), 1, + ACTIONS(7047), 2, sym__newline, - STATE(4383), 1, - sym_exception_value, - STATE(5434), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173314] = 9, - ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, - anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7034), 1, - anon_sym_COMMA, - ACTIONS(7036), 1, - anon_sym_RBRACK, - STATE(5003), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173343] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4605), 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, - [173358] = 9, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, - anon_sym_LBRACK, - ACTIONS(6842), 1, - sym_string_start, - ACTIONS(7038), 1, - sym_identifier, - STATE(536), 1, - sym_c_function_definition, - STATE(4033), 1, - sym_c_parameters, - STATE(4244), 1, - sym_string, - STATE(5334), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173387] = 9, - ACTIONS(6677), 1, + anon_sym_SEMI, + [169751] = 9, + ACTIONS(6768), 1, anon_sym_LPAREN, - ACTIONS(6683), 1, + ACTIONS(6774), 1, anon_sym_LBRACK, - ACTIONS(6842), 1, + ACTIONS(6922), 1, sym_string_start, - ACTIONS(7040), 1, + ACTIONS(7051), 1, sym_identifier, - STATE(1367), 1, + STATE(545), 1, sym_c_function_definition, - STATE(3968), 1, + STATE(4051), 1, sym_c_parameters, - STATE(4229), 1, + STATE(4306), 1, sym_string, - STATE(5330), 1, + STATE(5390), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173416] = 6, - ACTIONS(6435), 1, + [169780] = 5, + ACTIONS(6547), 1, anon_sym_as, - ACTIONS(6437), 1, - anon_sym_if, - ACTIONS(6443), 1, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6557), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4658), 4, + ACTIONS(6940), 5, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [173439] = 9, - ACTIONS(6801), 1, - anon_sym_except, - ACTIONS(6807), 1, - anon_sym_noexcept, - ACTIONS(6811), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_nogil, - ACTIONS(7042), 1, + [169801] = 9, + ACTIONS(3901), 1, + anon_sym_DOT, + ACTIONS(6916), 1, + anon_sym_LBRACK, + ACTIONS(7053), 1, + anon_sym_LPAREN, + ACTIONS(7055), 1, anon_sym_COLON, - ACTIONS(7044), 1, + ACTIONS(7057), 1, sym__newline, - STATE(4397), 1, - sym_exception_value, - STATE(5243), 1, - sym_gil_spec, + STATE(528), 1, + sym_external_definition, + STATE(3434), 1, + aux_sym_class_definition_repeat2, + STATE(5123), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173468] = 9, - ACTIONS(6801), 1, - anon_sym_except, - ACTIONS(6803), 1, - anon_sym_with, - ACTIONS(6805), 1, - anon_sym_nogil, - ACTIONS(6807), 1, - anon_sym_noexcept, - ACTIONS(7042), 1, + [169830] = 6, + ACTIONS(6416), 1, + anon_sym_as, + ACTIONS(6418), 1, + anon_sym_if, + ACTIONS(6428), 1, + anon_sym_and, + ACTIONS(6430), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7059), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [169853] = 9, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(6908), 1, anon_sym_COLON, - ACTIONS(7044), 1, - sym__newline, - STATE(4010), 1, - sym_gil_spec, - STATE(4397), 1, - sym_exception_value, + ACTIONS(7061), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_RBRACK, + STATE(5045), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173497] = 2, + [169882] = 5, + ACTIONS(4791), 1, + anon_sym_as, + ACTIONS(6497), 1, + anon_sym_and, + ACTIONS(6499), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4565), 8, - anon_sym_DOT, + ACTIONS(4789), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [169903] = 9, + ACTIONS(6756), 1, anon_sym_as, + ACTIONS(6758), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(6760), 1, anon_sym_and, + ACTIONS(6762), 1, anon_sym_or, - [173512] = 9, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(6858), 1, - anon_sym_LBRACK, - ACTIONS(7046), 1, - anon_sym_LPAREN, - ACTIONS(7048), 1, + ACTIONS(6908), 1, anon_sym_COLON, - ACTIONS(7050), 1, - sym__newline, - STATE(2934), 1, - sym_external_definition, - STATE(3384), 1, - aux_sym_class_definition_repeat2, - STATE(5100), 1, - sym_argument_list, + ACTIONS(7065), 1, + anon_sym_COMMA, + ACTIONS(7067), 1, + anon_sym_RBRACK, + STATE(5198), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173541] = 9, - ACTIONS(6801), 1, - anon_sym_except, - ACTIONS(6803), 1, - anon_sym_with, - ACTIONS(6805), 1, - anon_sym_nogil, - ACTIONS(6807), 1, - anon_sym_noexcept, - ACTIONS(7052), 1, - anon_sym_COLON, - ACTIONS(7054), 1, - sym__newline, - STATE(3937), 1, - sym_gil_spec, - STATE(4423), 1, - sym_exception_value, + [169932] = 4, + ACTIONS(4716), 1, + anon_sym_as, + ACTIONS(6497), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173570] = 9, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, - anon_sym_LBRACK, - ACTIONS(6842), 1, - sym_string_start, - ACTIONS(7056), 1, - sym_identifier, - STATE(529), 1, - sym_c_function_definition, - STATE(4033), 1, - sym_c_parameters, - STATE(4352), 1, - sym_string, - STATE(5334), 1, - sym_template_params, + ACTIONS(4714), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_or, + [169951] = 4, + ACTIONS(4716), 1, + anon_sym_as, + ACTIONS(6555), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173599] = 4, - ACTIONS(6671), 1, - anon_sym_class, + ACTIONS(4714), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_or, + [169970] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6786), 1, + anon_sym_COMMA, + STATE(4544), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2789), 2, - sym_storageclass, - aux_sym_class_definition_repeat1, - ACTIONS(5744), 5, - anon_sym_api, - anon_sym_public, - anon_sym_packed, - anon_sym_inline, - anon_sym_readonly, - [173618] = 9, - ACTIONS(3797), 1, - anon_sym_DOT, - ACTIONS(6850), 1, - anon_sym_LBRACK, - ACTIONS(7058), 1, - anon_sym_LPAREN, - ACTIONS(7060), 1, - anon_sym_COLON, - ACTIONS(7062), 1, + ACTIONS(7069), 2, sym__newline, - STATE(509), 1, - sym_external_definition, - STATE(3384), 1, - aux_sym_class_definition_repeat2, - STATE(5059), 1, - sym_argument_list, + anon_sym_SEMI, + [169997] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173647] = 9, - ACTIONS(6706), 1, + ACTIONS(4650), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6710), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(6712), 1, anon_sym_or, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(7064), 1, - anon_sym_COMMA, - ACTIONS(7066), 1, - anon_sym_RBRACK, - STATE(5016), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [173676] = 9, - ACTIONS(6634), 1, + [170012] = 9, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6762), 1, anon_sym_or, - ACTIONS(6820), 1, - anon_sym_COMMA, - ACTIONS(7068), 1, + ACTIONS(6908), 1, anon_sym_COLON, - ACTIONS(7070), 1, - anon_sym_by, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7071), 1, + anon_sym_COMMA, + ACTIONS(7073), 1, + anon_sym_RBRACK, + STATE(4969), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173705] = 7, - ACTIONS(2791), 1, - anon_sym_except, - ACTIONS(2795), 1, + [170041] = 7, + ACTIONS(2741), 1, anon_sym_except_STAR, - ACTIONS(6935), 1, + ACTIONS(2747), 1, + anon_sym_except, + ACTIONS(6942), 1, anon_sym_finally, - STATE(1563), 1, + STATE(1538), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(846), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(851), 2, + STATE(819), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [173730] = 8, - ACTIONS(6157), 1, + STATE(822), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [170066] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6765), 1, + ACTIONS(7049), 1, anon_sym_COMMA, - STATE(4371), 1, + STATE(4713), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5858), 2, + ACTIONS(7075), 2, sym__newline, anon_sym_SEMI, - [173757] = 6, - ACTIONS(6618), 1, - anon_sym_as, - ACTIONS(6620), 1, - anon_sym_if, - ACTIONS(6624), 1, - anon_sym_and, - ACTIONS(6626), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7072), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [173780] = 9, - ACTIONS(6706), 1, + [170093] = 9, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6762), 1, anon_sym_or, - ACTIONS(6832), 1, + ACTIONS(6908), 1, anon_sym_COLON, - ACTIONS(7074), 1, + ACTIONS(7077), 1, anon_sym_COMMA, - ACTIONS(7076), 1, + ACTIONS(7079), 1, anon_sym_RBRACK, - STATE(4883), 1, + STATE(5000), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173809] = 9, - ACTIONS(3797), 1, + [170122] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4813), 8, anon_sym_DOT, - ACTIONS(6850), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [170137] = 9, + ACTIONS(3901), 1, + anon_sym_DOT, + ACTIONS(6916), 1, anon_sym_LBRACK, - ACTIONS(7078), 1, + ACTIONS(7081), 1, anon_sym_LPAREN, - ACTIONS(7080), 1, + ACTIONS(7083), 1, anon_sym_COLON, - ACTIONS(7082), 1, + ACTIONS(7085), 1, sym__newline, - STATE(511), 1, + STATE(526), 1, sym_external_definition, - STATE(3384), 1, + STATE(3434), 1, aux_sym_class_definition_repeat2, - STATE(5069), 1, + STATE(5112), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173838] = 9, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, + [170166] = 9, + ACTIONS(3901), 1, + anon_sym_DOT, + ACTIONS(6966), 1, anon_sym_LBRACK, - ACTIONS(6842), 1, - sym_string_start, - ACTIONS(7084), 1, - sym_identifier, - STATE(1418), 1, - sym_c_function_definition, - STATE(3968), 1, - sym_c_parameters, - STATE(4322), 1, - sym_string, - STATE(5330), 1, - sym_template_params, + ACTIONS(7087), 1, + anon_sym_LPAREN, + ACTIONS(7089), 1, + anon_sym_COLON, + ACTIONS(7091), 1, + sym__newline, + STATE(1102), 1, + sym_external_definition, + STATE(3434), 1, + aux_sym_class_definition_repeat2, + STATE(5038), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173867] = 8, - ACTIONS(6157), 1, + [170195] = 5, + ACTIONS(6489), 1, anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6497), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6499), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6940), 5, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7086), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [170216] = 9, + ACTIONS(6950), 1, + anon_sym_except, + ACTIONS(6952), 1, + anon_sym_with, + ACTIONS(6954), 1, + anon_sym_nogil, + ACTIONS(6956), 1, + anon_sym_noexcept, + ACTIONS(7093), 1, + anon_sym_COLON, + ACTIONS(7095), 1, sym__newline, - STATE(4991), 1, - aux_sym_cvar_decl_repeat2, + STATE(4428), 1, + sym_exception_value, + STATE(5506), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173893] = 6, - ACTIONS(6634), 1, + [170245] = 9, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6775), 3, + ACTIONS(6930), 1, anon_sym_COMMA, + ACTIONS(7097), 1, anon_sym_COLON, + ACTIONS(7099), 1, anon_sym_by, - [173915] = 2, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4538), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_LBRACK, - [173929] = 4, - ACTIONS(5959), 1, + [170274] = 9, + ACTIONS(3901), 1, anon_sym_DOT, - STATE(3504), 1, + ACTIONS(6994), 1, + anon_sym_LBRACK, + ACTIONS(7101), 1, + anon_sym_LPAREN, + ACTIONS(7103), 1, + anon_sym_COLON, + ACTIONS(7105), 1, + sym__newline, + STATE(2947), 1, + sym_external_definition, + STATE(3434), 1, aux_sym_class_definition_repeat2, + STATE(5152), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6628), 5, - anon_sym_LPAREN, + [170303] = 4, + ACTIONS(1313), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2179), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(7107), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [173947] = 8, - ACTIONS(6157), 1, + [170322] = 5, + ACTIONS(6547), 1, anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6557), 1, anon_sym_or, - ACTIONS(6752), 1, - sym__newline, - ACTIONS(7088), 1, - anon_sym_COMMA, - STATE(4784), 1, - aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173973] = 8, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(6820), 1, + ACTIONS(6940), 5, anon_sym_COMMA, - ACTIONS(7090), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [170343] = 9, + ACTIONS(3901), 1, + anon_sym_DOT, + ACTIONS(6994), 1, + anon_sym_LBRACK, + ACTIONS(7109), 1, + anon_sym_LPAREN, + ACTIONS(7111), 1, anon_sym_COLON, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7113), 1, + sym__newline, + STATE(2954), 1, + sym_external_definition, + STATE(4010), 1, + aux_sym_class_definition_repeat2, + STATE(5155), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [173999] = 8, - ACTIONS(6157), 1, + [170372] = 6, + ACTIONS(6547), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6549), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6557), 1, anon_sym_or, - ACTIONS(6759), 1, - sym__newline, - ACTIONS(7092), 1, - anon_sym_COMMA, - STATE(4740), 1, - aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174025] = 8, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(4829), 4, anon_sym_COMMA, - ACTIONS(6795), 1, - sym__newline, - STATE(4742), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [170395] = 9, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(6922), 1, + sym_string_start, + ACTIONS(7115), 1, + sym_identifier, + STATE(2951), 1, + sym_c_function_definition, + STATE(4072), 1, + sym_c_parameters, + STATE(4362), 1, + sym_string, + STATE(5338), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174051] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6789), 1, - anon_sym_EQ, - ACTIONS(6791), 1, + [170424] = 9, + ACTIONS(6950), 1, + anon_sym_except, + ACTIONS(6956), 1, + anon_sym_noexcept, + ACTIONS(7022), 1, + anon_sym_with, + ACTIONS(7024), 1, + anon_sym_nogil, + ACTIONS(7117), 1, + anon_sym_COLON, + ACTIONS(7119), 1, sym__newline, - STATE(4749), 1, - aux_sym_cvar_decl_repeat2, + STATE(4071), 1, + sym_gil_spec, + STATE(4427), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174075] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7094), 1, + [170453] = 5, + ACTIONS(7121), 1, + anon_sym_DOT, + ACTIONS(7123), 1, anon_sym_EQ, - ACTIONS(7096), 1, - sym__newline, - STATE(4755), 1, - aux_sym_cvar_decl_repeat2, + STATE(4188), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4061), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174099] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6722), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(6793), 1, - anon_sym_EQ, - ACTIONS(6795), 1, - sym__newline, - STATE(4756), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [170474] = 4, + ACTIONS(6776), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174123] = 6, - ACTIONS(6439), 1, - anon_sym_async, - ACTIONS(6441), 1, - anon_sym_for, - ACTIONS(7098), 1, + STATE(2832), 2, + sym_storageclass, + aux_sym_class_definition_repeat1, + ACTIONS(5852), 5, + anon_sym_api, + anon_sym_public, + anon_sym_packed, + anon_sym_inline, + anon_sym_readonly, + [170493] = 9, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(7100), 1, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(6908), 1, + anon_sym_COLON, + ACTIONS(7125), 1, + anon_sym_COMMA, + ACTIONS(7127), 1, anon_sym_RBRACK, + STATE(5060), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4094), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [174145] = 8, - ACTIONS(7102), 1, - sym_identifier, - ACTIONS(7104), 1, - anon_sym_LPAREN, - ACTIONS(7106), 1, - anon_sym_STAR, - STATE(4361), 1, - sym_dotted_name, - STATE(4576), 1, - sym_aliased_import, - STATE(5397), 1, - sym__import_list, - STATE(5399), 1, - sym_wildcard_import, + [170522] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174171] = 8, - ACTIONS(6706), 1, + ACTIONS(4729), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6710), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(6712), 1, anon_sym_or, - ACTIONS(7108), 1, - anon_sym_COMMA, - ACTIONS(7110), 1, - anon_sym_RBRACK, - STATE(4832), 1, - aux_sym_type_index_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [174197] = 8, - ACTIONS(6157), 1, + [170537] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6786), 1, anon_sym_COMMA, - ACTIONS(7112), 1, + STATE(4544), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6751), 2, sym__newline, - STATE(4871), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [170564] = 9, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(6922), 1, + sym_string_start, + ACTIONS(7129), 1, + sym_identifier, + STATE(1267), 1, + sym_c_function_definition, + STATE(4014), 1, + sym_c_parameters, + STATE(4280), 1, + sym_string, + STATE(5476), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174223] = 8, - ACTIONS(6157), 1, + [170593] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7114), 1, - sym__newline, - STATE(4874), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174249] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6702), 1, - anon_sym_EQ, - ACTIONS(6704), 1, + ACTIONS(3998), 4, sym__newline, - STATE(4887), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [170616] = 5, + ACTIONS(6547), 1, + anon_sym_as, + ACTIONS(6555), 1, + anon_sym_and, + ACTIONS(6557), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174273] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6940), 5, anon_sym_COMMA, - ACTIONS(7116), 1, - anon_sym_EQ, - ACTIONS(7118), 1, - sym__newline, - STATE(4898), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4072), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174297] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [170637] = 9, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(6908), 1, + anon_sym_COLON, + ACTIONS(7131), 1, anon_sym_COMMA, - ACTIONS(7112), 1, - sym__newline, - ACTIONS(7120), 1, - anon_sym_EQ, - STATE(4904), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7133), 1, + anon_sym_RBRACK, + STATE(5073), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174321] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, + [170666] = 9, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7122), 1, - anon_sym_EQ, - ACTIONS(7124), 1, - sym__newline, - STATE(4916), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7135), 1, + anon_sym_COLON, + ACTIONS(7137), 1, + anon_sym_by, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4073), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174345] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, + [170695] = 9, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(6908), 1, + anon_sym_COLON, + ACTIONS(7139), 1, anon_sym_COMMA, - ACTIONS(7114), 1, - sym__newline, - ACTIONS(7126), 1, - anon_sym_EQ, - STATE(4917), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7141), 1, + anon_sym_RBRACK, + STATE(5078), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174369] = 7, - ACTIONS(5307), 1, - sym_identifier, - ACTIONS(7128), 1, - anon_sym_DOT, - ACTIONS(7130), 1, - anon_sym___future__, - STATE(4404), 1, - aux_sym_import_prefix_repeat1, - STATE(4589), 1, - sym_import_prefix, + [170724] = 6, + ACTIONS(6970), 1, + anon_sym_as, + ACTIONS(6972), 1, + anon_sym_if, + ACTIONS(6974), 1, + anon_sym_and, + ACTIONS(6976), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(5236), 2, - sym_relative_import, - sym_dotted_name, - [174393] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7132), 1, + ACTIONS(4837), 4, + anon_sym_DOT, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(7134), 1, - sym__newline, - STATE(4734), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_PIPE, + [170747] = 5, + ACTIONS(6974), 1, + anon_sym_and, + ACTIONS(6976), 1, + anon_sym_or, + ACTIONS(7143), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4100), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174417] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6464), 1, + ACTIONS(4741), 5, + anon_sym_DOT, + anon_sym_if, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(6466), 1, - sym__newline, - STATE(4741), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_PIPE, + [170768] = 4, + ACTIONS(6974), 1, + anon_sym_and, + ACTIONS(6976), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174441] = 8, - ACTIONS(6157), 1, + ACTIONS(4789), 6, + anon_sym_DOT, anon_sym_as, - ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6161), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [170787] = 3, + ACTIONS(6974), 1, anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7136), 1, - sym__newline, - STATE(5067), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174467] = 8, - ACTIONS(6157), 1, + ACTIONS(4714), 7, + anon_sym_DOT, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_or, + [170804] = 6, + ACTIONS(6970), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6972), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6974), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6976), 1, anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7138), 1, - sym__newline, - STATE(5070), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174493] = 8, - ACTIONS(6157), 1, + ACTIONS(4793), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [170827] = 6, + ACTIONS(6970), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6972), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6974), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6976), 1, anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7140), 1, - sym__newline, - STATE(5085), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174519] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7142), 1, + ACTIONS(4829), 4, + anon_sym_DOT, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(7144), 1, - sym__newline, - STATE(5094), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174543] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, + anon_sym_PIPE, + [170850] = 9, + ACTIONS(6950), 1, + anon_sym_except, + ACTIONS(6956), 1, + anon_sym_noexcept, + ACTIONS(7022), 1, + anon_sym_with, + ACTIONS(7024), 1, + anon_sym_nogil, ACTIONS(7146), 1, - anon_sym_EQ, + anon_sym_COLON, ACTIONS(7148), 1, sym__newline, - STATE(5113), 1, - aux_sym_cvar_decl_repeat2, + STATE(3992), 1, + sym_gil_spec, + STATE(4417), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174567] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, + [170879] = 9, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(6908), 1, + anon_sym_COLON, ACTIONS(7150), 1, - anon_sym_EQ, + anon_sym_COMMA, ACTIONS(7152), 1, - sym__newline, - STATE(5130), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACK, + STATE(4790), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4087), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174591] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7138), 1, + [170908] = 9, + ACTIONS(6950), 1, + anon_sym_except, + ACTIONS(6952), 1, + anon_sym_with, + ACTIONS(6954), 1, + anon_sym_nogil, + ACTIONS(6956), 1, + anon_sym_noexcept, + ACTIONS(7146), 1, + anon_sym_COLON, + ACTIONS(7148), 1, sym__newline, + STATE(4417), 1, + sym_exception_value, + STATE(5466), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [170937] = 9, + ACTIONS(6950), 1, + anon_sym_except, + ACTIONS(6956), 1, + anon_sym_noexcept, + ACTIONS(7022), 1, + anon_sym_with, + ACTIONS(7024), 1, + anon_sym_nogil, ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5134), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + ACTIONS(7156), 1, + sym__newline, + STATE(4019), 1, + sym_gil_spec, + STATE(4564), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174615] = 8, - ACTIONS(6157), 1, + [170966] = 9, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6762), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6908), 1, + anon_sym_COLON, + ACTIONS(7158), 1, anon_sym_COMMA, - ACTIONS(7156), 1, - sym__newline, - STATE(4961), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7160), 1, + anon_sym_RBRACK, + STATE(4881), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174641] = 8, - ACTIONS(6634), 1, + [170995] = 9, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(6820), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7158), 1, + ACTIONS(7162), 1, anon_sym_COLON, - STATE(4567), 1, + ACTIONS(7164), 1, + anon_sym_by, + STATE(4653), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174667] = 6, + [171024] = 5, ACTIONS(6416), 1, - anon_sym_async, - ACTIONS(6418), 1, - anon_sym_for, - ACTIONS(7100), 1, - anon_sym_RPAREN, - ACTIONS(7160), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4112), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [174689] = 6, - ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6428), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6430), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7162), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(6940), 5, anon_sym_COMMA, - [174711] = 8, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7164), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [171045] = 9, + ACTIONS(3901), 1, + anon_sym_DOT, + ACTIONS(6966), 1, + anon_sym_LBRACK, + ACTIONS(7166), 1, + anon_sym_LPAREN, + ACTIONS(7168), 1, + anon_sym_COLON, + ACTIONS(7170), 1, sym__newline, - STATE(4977), 1, - aux_sym_cvar_decl_repeat2, + STATE(1089), 1, + sym_external_definition, + STATE(4041), 1, + aux_sym_class_definition_repeat2, + STATE(4798), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174737] = 8, - ACTIONS(6634), 1, + [171074] = 9, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7166), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7168), 1, + ACTIONS(7172), 1, anon_sym_COLON, - STATE(5114), 1, - aux_sym_match_statement_repeat1, + ACTIONS(7174), 1, + anon_sym_by, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174763] = 8, - ACTIONS(6157), 1, + [171103] = 9, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7170), 1, - sym__newline, - STATE(5182), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7176), 1, + anon_sym_COLON, + ACTIONS(7178), 1, + anon_sym_by, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174789] = 8, - ACTIONS(6157), 1, + [171132] = 7, + ACTIONS(2709), 1, + anon_sym_except_STAR, + ACTIONS(2713), 1, + anon_sym_except, + ACTIONS(6901), 1, + anon_sym_finally, + STATE(1430), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(816), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(817), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [171157] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4718), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6161), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6396), 1, + [171172] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6786), 1, anon_sym_COMMA, - ACTIONS(7172), 1, + STATE(4544), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5884), 2, sym__newline, - STATE(5184), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [171199] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174815] = 8, - ACTIONS(6157), 1, + ACTIONS(4725), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6161), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7174), 1, + [171214] = 9, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(6922), 1, + sym_string_start, + ACTIONS(7180), 1, + sym_identifier, + STATE(538), 1, + sym_c_function_definition, + STATE(4051), 1, + sym_c_parameters, + STATE(4381), 1, + sym_string, + STATE(5390), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171243] = 9, + ACTIONS(6950), 1, + anon_sym_except, + ACTIONS(6956), 1, + anon_sym_noexcept, + ACTIONS(7022), 1, + anon_sym_with, + ACTIONS(7024), 1, + anon_sym_nogil, + ACTIONS(7028), 1, + anon_sym_COLON, + ACTIONS(7030), 1, sym__newline, - STATE(5189), 1, - aux_sym_cvar_decl_repeat2, + STATE(4087), 1, + sym_gil_spec, + STATE(4589), 1, + sym_exception_value, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174841] = 8, - ACTIONS(6157), 1, + [171272] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6786), 1, anon_sym_COMMA, - ACTIONS(7176), 1, - sym__newline, - STATE(5190), 1, - aux_sym_cvar_decl_repeat2, + STATE(4544), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174867] = 8, - ACTIONS(6157), 1, + ACTIONS(7182), 2, + sym__newline, + anon_sym_SEMI, + [171299] = 6, + ACTIONS(6736), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6738), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6742), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6744), 1, anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7178), 1, - sym__newline, - STATE(5192), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174893] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7180), 1, + ACTIONS(7184), 4, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(7182), 1, + anon_sym_RBRACE, + sym_type_conversion, + [171322] = 9, + ACTIONS(6950), 1, + anon_sym_except, + ACTIONS(6952), 1, + anon_sym_with, + ACTIONS(6954), 1, + anon_sym_nogil, + ACTIONS(6956), 1, + anon_sym_noexcept, + ACTIONS(7186), 1, + anon_sym_COLON, + ACTIONS(7188), 1, sym__newline, - STATE(5195), 1, - aux_sym_cvar_decl_repeat2, + STATE(4458), 1, + sym_exception_value, + STATE(5364), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [174917] = 8, - ACTIONS(6157), 1, + [171351] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4841), 8, + anon_sym_DOT, anon_sym_as, - ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6161), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(6163), 1, anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7184), 1, - sym__newline, - STATE(4996), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [174943] = 8, - ACTIONS(6157), 1, + [171366] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7186), 1, + ACTIONS(6839), 1, sym__newline, - STATE(5227), 1, + STATE(5262), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174969] = 8, - ACTIONS(6157), 1, + [171392] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7192), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7190), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6396), 1, + anon_sym_COLON, + anon_sym_PIPE, + [171408] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7188), 1, + ACTIONS(7194), 1, + anon_sym_EQ, + ACTIONS(7196), 1, sym__newline, - STATE(5008), 1, + STATE(5145), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [174995] = 8, - ACTIONS(6157), 1, + STATE(4122), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [171432] = 8, + ACTIONS(6603), 1, + anon_sym_RPAREN, + ACTIONS(6605), 1, + anon_sym_COMMA, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(7204), 1, anon_sym_or, - ACTIONS(6396), 1, + STATE(5117), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171458] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7190), 1, + ACTIONS(6567), 1, + anon_sym_EQ, + ACTIONS(6569), 1, sym__newline, - STATE(4717), 1, + STATE(5217), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175021] = 8, - ACTIONS(6157), 1, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [171482] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7192), 1, + ACTIONS(6899), 1, sym__newline, - STATE(4719), 1, + STATE(5170), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175047] = 5, - ACTIONS(6435), 1, + [171508] = 5, + ACTIONS(6547), 1, anon_sym_as, - ACTIONS(6443), 1, + ACTIONS(6555), 1, anon_sym_and, - ACTIONS(6445), 1, + ACTIONS(6557), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7194), 4, + ACTIONS(7206), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - [175067] = 6, - ACTIONS(7196), 1, + [171528] = 6, + ACTIONS(7208), 1, anon_sym_if, - ACTIONS(7199), 1, + ACTIONS(7211), 1, anon_sym_async, - ACTIONS(7202), 1, + ACTIONS(7214), 1, anon_sym_for, - ACTIONS(7205), 1, + ACTIONS(7217), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4094), 3, + STATE(4096), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [175089] = 8, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, + [171550] = 6, + ACTIONS(6493), 1, + anon_sym_async, + ACTIONS(6495), 1, + anon_sym_for, + ACTIONS(7219), 1, + anon_sym_RPAREN, + ACTIONS(7221), 1, anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7207), 1, - sym__newline, - STATE(5019), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175115] = 8, - ACTIONS(6157), 1, + STATE(4154), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [171572] = 5, + ACTIONS(6416), 1, anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6428), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6430), 1, anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7209), 1, - sym__newline, - STATE(4725), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175141] = 8, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(7206), 4, anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6718), 1, - sym__newline, - ACTIONS(7211), 1, - anon_sym_COMMA, - STATE(5075), 1, - aux_sym_cvar_def_repeat1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [171592] = 6, + ACTIONS(7217), 1, + anon_sym_RBRACE, + ACTIONS(7223), 1, + anon_sym_if, + ACTIONS(7226), 1, + anon_sym_async, + ACTIONS(7229), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175167] = 8, - ACTIONS(6157), 1, + STATE(4099), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [171614] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6696), 1, - sym__newline, - STATE(5084), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [175193] = 8, - ACTIONS(6352), 1, - anon_sym_async, - ACTIONS(6354), 1, - anon_sym_for, - ACTIONS(7213), 1, - anon_sym_COMMA, - ACTIONS(7215), 1, - anon_sym_RBRACE, - STATE(4210), 1, - sym_for_in_clause, - STATE(5027), 1, - aux_sym_dictionary_repeat1, - STATE(5586), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175219] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6652), 1, - anon_sym_EQ, - ACTIONS(6654), 1, + ACTIONS(7232), 3, sym__newline, - STATE(5087), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [175243] = 7, - ACTIONS(3249), 1, - anon_sym_COLON, - ACTIONS(6706), 1, + anon_sym_SEMI, + anon_sym_COMMA, + [171636] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6271), 1, anon_sym_or, + ACTIONS(6797), 1, + sym__newline, + ACTIONS(7234), 1, + anon_sym_COMMA, + STATE(5225), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3247), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [175267] = 7, - ACTIONS(3814), 1, + [171662] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7217), 1, + ACTIONS(7236), 1, anon_sym_EQ, - ACTIONS(7219), 1, + ACTIONS(7238), 1, sym__newline, - STATE(5101), 1, + STATE(5233), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4196), 2, + STATE(4109), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [175291] = 7, - ACTIONS(3814), 1, + [171686] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6694), 1, + ACTIONS(6561), 1, anon_sym_EQ, - ACTIONS(6696), 1, + ACTIONS(6563), 1, sym__newline, - STATE(5105), 1, + STATE(5234), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [175315] = 6, - ACTIONS(6416), 1, - anon_sym_async, - ACTIONS(6418), 1, - anon_sym_for, - ACTIONS(7160), 1, - anon_sym_if, - ACTIONS(7221), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4078), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [175337] = 6, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 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(7223), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [175359] = 6, - ACTIONS(4992), 1, - anon_sym_LBRACK, - ACTIONS(7227), 1, - anon_sym_EQ, - STATE(4362), 1, - sym_type_index, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7225), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7229), 2, - anon_sym_not, - anon_sym_or, - [175381] = 4, - ACTIONS(1440), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2335), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6818), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [171710] = 8, + ACTIONS(6704), 1, anon_sym_as, - anon_sym_PIPE, - [175399] = 8, - ACTIONS(6352), 1, - anon_sym_async, - ACTIONS(6354), 1, - anon_sym_for, - ACTIONS(7231), 1, - anon_sym_COMMA, - ACTIONS(7233), 1, - anon_sym_RBRACE, - STATE(4210), 1, - sym_for_in_clause, - STATE(4945), 1, - aux_sym_dictionary_repeat1, - STATE(5717), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [175425] = 7, ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, - ACTIONS(6832), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7235), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [175449] = 7, - ACTIONS(6706), 1, - anon_sym_as, ACTIONS(6708), 1, - anon_sym_if, - ACTIONS(6710), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7237), 1, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(7240), 1, anon_sym_COLON, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [175473] = 5, - ACTIONS(6412), 1, + [171736] = 7, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(6420), 1, - anon_sym_and, - ACTIONS(6422), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7194), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [175493] = 6, - ACTIONS(7205), 1, - anon_sym_RPAREN, - ACTIONS(7239), 1, - anon_sym_if, - ACTIONS(7242), 1, - anon_sym_async, - ACTIONS(7245), 1, - anon_sym_for, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(6908), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4112), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [175515] = 8, - ACTIONS(6157), 1, + ACTIONS(7242), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [171760] = 8, + ACTIONS(6662), 1, + anon_sym_RPAREN, + ACTIONS(6664), 1, + anon_sym_COMMA, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(7204), 1, anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7248), 1, - sym__newline, - STATE(5166), 1, - aux_sym_cvar_decl_repeat2, + STATE(5247), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175541] = 8, - ACTIONS(6576), 1, + [171786] = 8, + ACTIONS(6523), 1, anon_sym_RPAREN, - ACTIONS(6578), 1, + ACTIONS(6525), 1, anon_sym_COMMA, - ACTIONS(7250), 1, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(7204), 1, anon_sym_or, - STATE(5219), 1, + STATE(5196), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175567] = 8, - ACTIONS(6157), 1, + [171812] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6726), 1, + ACTIONS(6831), 1, sym__newline, - ACTIONS(7258), 1, + ACTIONS(7244), 1, anon_sym_COMMA, - STATE(5135), 1, + STATE(5261), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175593] = 7, - ACTIONS(3814), 1, + [171838] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7260), 1, + ACTIONS(6833), 1, anon_sym_EQ, - ACTIONS(7262), 1, + ACTIONS(6835), 1, sym__newline, - STATE(5152), 1, + STATE(5263), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4120), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [175617] = 7, - ACTIONS(3814), 1, + [171862] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6453), 1, + ACTIONS(7246), 1, anon_sym_EQ, - ACTIONS(6455), 1, + ACTIONS(7248), 1, sym__newline, - STATE(5153), 1, + STATE(5264), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4117), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [175641] = 8, - ACTIONS(6157), 1, + [171886] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6837), 1, + anon_sym_EQ, + ACTIONS(6839), 1, + sym__newline, + STATE(5265), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [171910] = 8, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(7250), 1, + anon_sym_COLON, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171936] = 8, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(7252), 1, + anon_sym_COMMA, + ACTIONS(7254), 1, + anon_sym_RBRACK, + STATE(4771), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [171962] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6773), 1, + ACTIONS(6860), 1, sym__newline, - ACTIONS(7264), 1, + ACTIONS(7256), 1, anon_sym_COMMA, - STATE(5197), 1, + STATE(5193), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175667] = 8, - ACTIONS(6157), 1, + [171988] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6740), 1, + ACTIONS(7258), 1, sym__newline, - STATE(5199), 1, + STATE(4777), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [172014] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7260), 1, + sym__newline, + STATE(4778), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175693] = 7, - ACTIONS(3814), 1, + [172040] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6732), 1, + ACTIONS(6846), 1, anon_sym_EQ, - ACTIONS(6734), 1, + ACTIONS(6848), 1, sym__newline, - STATE(5202), 1, + STATE(4780), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [175717] = 7, - ACTIONS(3814), 1, + [172064] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7262), 1, + anon_sym_EQ, + ACTIONS(7264), 1, + sym__newline, + STATE(4782), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4134), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [172088] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, anon_sym_COMMA, + ACTIONS(7258), 1, + sym__newline, ACTIONS(7266), 1, anon_sym_EQ, + STATE(4783), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [172112] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, ACTIONS(7268), 1, + anon_sym_EQ, + ACTIONS(7270), 1, sym__newline, - STATE(5205), 1, + STATE(4785), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4128), 2, + STATE(4135), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [175741] = 7, - ACTIONS(3814), 1, + [172136] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6738), 1, - anon_sym_EQ, - ACTIONS(6740), 1, + ACTIONS(7260), 1, sym__newline, - STATE(5206), 1, + ACTIONS(7272), 1, + anon_sym_EQ, + STATE(4786), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [175765] = 8, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(6820), 1, + [172160] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7270), 1, - anon_sym_COLON, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(6850), 1, + anon_sym_EQ, + ACTIONS(6852), 1, + sym__newline, + STATE(5182), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175791] = 4, - ACTIONS(1999), 1, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [172184] = 4, + ACTIONS(2541), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2191), 2, + STATE(2337), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(6818), 4, + ACTIONS(7107), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [175809] = 8, - ACTIONS(6706), 1, + [172202] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(7108), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7272), 1, - anon_sym_RBRACK, - STATE(4723), 1, - aux_sym_type_index_repeat1, + ACTIONS(7274), 1, + sym__newline, + STATE(4935), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175835] = 8, - ACTIONS(6157), 1, + [172228] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, - sym__newline, - STATE(4727), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175861] = 8, - ACTIONS(6157), 1, + ACTIONS(6895), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_by, + [172250] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, ACTIONS(7276), 1, sym__newline, - STATE(4729), 1, + STATE(4937), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [175887] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6728), 1, - anon_sym_EQ, - ACTIONS(6730), 1, - sym__newline, - STATE(4730), 1, - aux_sym_cvar_decl_repeat2, + [172276] = 7, + ACTIONS(3427), 1, + anon_sym_COLON, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [175911] = 7, - ACTIONS(3814), 1, + ACTIONS(3425), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [172300] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, ACTIONS(7278), 1, anon_sym_EQ, ACTIONS(7280), 1, sym__newline, - STATE(4732), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(4136), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [175935] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, - sym__newline, - ACTIONS(7282), 1, - anon_sym_EQ, - STATE(4733), 1, + STATE(5205), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4170), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [175959] = 7, - ACTIONS(3814), 1, + [172324] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7284), 1, + ACTIONS(6646), 1, anon_sym_EQ, - ACTIONS(7286), 1, + ACTIONS(6648), 1, sym__newline, - STATE(4735), 1, + STATE(5206), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4217), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [175983] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, + [172348] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7276), 1, + ACTIONS(7282), 1, sym__newline, - ACTIONS(7288), 1, - anon_sym_EQ, - STATE(4736), 1, + STATE(4955), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [176007] = 8, - ACTIONS(6157), 1, + [172374] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7290), 1, + ACTIONS(7284), 1, sym__newline, - STATE(4757), 1, + STATE(4803), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176033] = 8, - ACTIONS(6157), 1, + [172400] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7292), 1, + ACTIONS(7286), 1, sym__newline, - STATE(4758), 1, + STATE(4804), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176059] = 8, - ACTIONS(6157), 1, + [172426] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7294), 1, + ACTIONS(7288), 1, sym__newline, - STATE(4760), 1, + STATE(4805), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176085] = 7, - ACTIONS(3814), 1, + [172452] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7296), 1, + ACTIONS(7290), 1, anon_sym_EQ, - ACTIONS(7298), 1, + ACTIONS(7292), 1, sym__newline, - STATE(4762), 1, + STATE(4806), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [176109] = 7, - ACTIONS(3814), 1, + [172476] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6560), 1, + ACTIONS(7294), 1, anon_sym_EQ, - ACTIONS(6562), 1, + ACTIONS(7296), 1, sym__newline, - STATE(4812), 1, + STATE(4807), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [176133] = 7, - ACTIONS(3814), 1, + [172500] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7300), 1, + ACTIONS(7298), 1, anon_sym_EQ, - ACTIONS(7302), 1, + ACTIONS(7300), 1, sym__newline, - STATE(4766), 1, + STATE(4810), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4146), 2, + STATE(4147), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [176157] = 7, - ACTIONS(3814), 1, + [172524] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7292), 1, + ACTIONS(7286), 1, sym__newline, - ACTIONS(7304), 1, + ACTIONS(7302), 1, anon_sym_EQ, - STATE(4767), 1, + STATE(4811), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [176181] = 3, + [172548] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7304), 1, + sym__newline, + STATE(4963), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7306), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6818), 5, - anon_sym_COMMA, + [172574] = 8, + ACTIONS(6265), 1, anon_sym_as, + ACTIONS(6267), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [176197] = 8, - ACTIONS(6157), 1, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7306), 1, + sym__newline, + STATE(4968), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [172600] = 7, + ACTIONS(5401), 1, + sym_identifier, + ACTIONS(7308), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym___future__, + STATE(4425), 1, + aux_sym_import_prefix_repeat1, + STATE(4725), 1, + sym_import_prefix, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(5280), 2, + sym_relative_import, + sym_dotted_name, + [172624] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7312), 1, + anon_sym_EQ, + ACTIONS(7314), 1, + sym__newline, + STATE(4973), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [172648] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7308), 1, + ACTIONS(7316), 1, sym__newline, - STATE(4778), 1, + STATE(4820), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176223] = 8, - ACTIONS(6157), 1, + [172674] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7310), 1, + ACTIONS(7318), 1, sym__newline, - STATE(4779), 1, + STATE(4821), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176249] = 8, - ACTIONS(6157), 1, + [172700] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7312), 1, + ACTIONS(7320), 1, sym__newline, - STATE(4781), 1, + STATE(4823), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176275] = 8, - ACTIONS(6157), 1, + [172726] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7314), 1, + ACTIONS(7322), 1, sym__newline, - STATE(4782), 1, + STATE(4824), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176301] = 8, - ACTIONS(6157), 1, + [172752] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7316), 1, + ACTIONS(7324), 1, sym__newline, - STATE(4783), 1, + STATE(4826), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176327] = 7, - ACTIONS(3814), 1, + [172778] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7318), 1, + ACTIONS(7326), 1, anon_sym_EQ, - ACTIONS(7320), 1, + ACTIONS(7328), 1, sym__newline, - STATE(4785), 1, + STATE(4828), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [176351] = 8, - ACTIONS(6157), 1, + [172802] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7322), 1, + ACTIONS(7330), 1, sym__newline, - STATE(4794), 1, + STATE(4837), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176377] = 8, - ACTIONS(6157), 1, + [172828] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7324), 1, + ACTIONS(7332), 1, sym__newline, - STATE(4795), 1, + STATE(4838), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176403] = 8, - ACTIONS(6157), 1, + [172854] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7326), 1, + ACTIONS(7334), 1, sym__newline, - STATE(4796), 1, + STATE(4839), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176429] = 8, - ACTIONS(6157), 1, + [172880] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7328), 1, + ACTIONS(7336), 1, sym__newline, - STATE(4798), 1, + STATE(4841), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176455] = 8, - ACTIONS(6157), 1, + [172906] = 5, + ACTIONS(6489), 1, + anon_sym_as, + ACTIONS(6497), 1, + anon_sym_and, + ACTIONS(6499), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7206), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [172926] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7330), 1, + ACTIONS(7338), 1, sym__newline, - STATE(4802), 1, + STATE(4846), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176481] = 8, - ACTIONS(6352), 1, + [172952] = 6, + ACTIONS(7217), 1, + anon_sym_RPAREN, + ACTIONS(7340), 1, + anon_sym_if, + ACTIONS(7343), 1, anon_sym_async, - ACTIONS(6354), 1, + ACTIONS(7346), 1, anon_sym_for, - ACTIONS(7332), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4154), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [172974] = 4, + ACTIONS(7349), 1, + anon_sym_DOT, + STATE(4155), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5735), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(7334), 1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [172992] = 8, + ACTIONS(6422), 1, + anon_sym_async, + ACTIONS(6424), 1, + anon_sym_for, + ACTIONS(7352), 1, + anon_sym_COMMA, + ACTIONS(7354), 1, anon_sym_RBRACE, - STATE(4210), 1, + STATE(4245), 1, sym_for_in_clause, - STATE(4822), 1, + STATE(4865), 1, + aux_sym_dictionary_repeat1, + STATE(5735), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173018] = 8, + ACTIONS(6422), 1, + anon_sym_async, + ACTIONS(6424), 1, + anon_sym_for, + ACTIONS(7356), 1, + anon_sym_COMMA, + ACTIONS(7358), 1, + anon_sym_RBRACE, + STATE(4245), 1, + sym_for_in_clause, + STATE(4916), 1, aux_sym_dictionary_repeat1, - STATE(5470), 1, + STATE(5804), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176507] = 8, - ACTIONS(6634), 1, + [173044] = 8, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(7204), 1, anon_sym_or, - ACTIONS(6820), 1, + ACTIONS(7360), 1, + anon_sym_RPAREN, + ACTIONS(7362), 1, anon_sym_COMMA, - ACTIONS(7336), 1, - anon_sym_COLON, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, + STATE(5023), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176533] = 4, - ACTIONS(6998), 1, - anon_sym_DOT, - STATE(4165), 1, - aux_sym_class_definition_repeat2, + [173070] = 8, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(7252), 1, + anon_sym_COMMA, + ACTIONS(7364), 1, + anon_sym_RBRACK, + STATE(4896), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6632), 5, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [176551] = 8, - ACTIONS(7250), 1, + [173096] = 8, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7338), 1, - anon_sym_RPAREN, - ACTIONS(7340), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - STATE(4962), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7366), 1, + anon_sym_COLON, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176577] = 4, - ACTIONS(2535), 1, - sym_string_start, + [173122] = 6, + ACTIONS(4433), 1, + anon_sym_LBRACK, + ACTIONS(7370), 1, + anon_sym_EQ, + STATE(4462), 1, + sym_type_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2265), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(6818), 4, + ACTIONS(7368), 2, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(7372), 2, + anon_sym_not, + anon_sym_or, + [173144] = 8, + ACTIONS(6422), 1, + anon_sym_async, + ACTIONS(6424), 1, + anon_sym_for, + ACTIONS(7374), 1, + anon_sym_COMMA, + ACTIONS(7376), 1, + anon_sym_RBRACE, + STATE(4245), 1, + sym_for_in_clause, + STATE(4922), 1, + aux_sym_dictionary_repeat1, + STATE(5701), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173170] = 7, + ACTIONS(6756), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [176595] = 8, - ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6762), 1, anon_sym_or, - ACTIONS(7108), 1, + ACTIONS(7378), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3465), 2, anon_sym_COMMA, - ACTIONS(7342), 1, anon_sym_RBRACK, - STATE(4847), 1, - aux_sym_type_index_repeat1, + [173194] = 8, + ACTIONS(6571), 1, + anon_sym_RPAREN, + ACTIONS(6573), 1, + anon_sym_COMMA, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, + anon_sym_if, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, + STATE(4877), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176621] = 6, - ACTIONS(6352), 1, + [173220] = 6, + ACTIONS(6551), 1, anon_sym_async, - ACTIONS(6354), 1, + ACTIONS(6553), 1, anon_sym_for, - ACTIONS(7100), 1, - anon_sym_RBRACE, - ACTIONS(7344), 1, + ACTIONS(7380), 1, anon_sym_if, + ACTIONS(7382), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4160), 3, + STATE(4226), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [176643] = 5, - ACTIONS(6346), 1, + [173242] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6358), 1, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6360), 1, + ACTIONS(6271), 1, anon_sym_or, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7384), 1, + sym__newline, + STATE(5044), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7194), 4, - anon_sym_if, + [173268] = 8, + ACTIONS(6422), 1, anon_sym_async, + ACTIONS(6424), 1, anon_sym_for, + ACTIONS(7386), 1, + anon_sym_COMMA, + ACTIONS(7388), 1, anon_sym_RBRACE, - [176663] = 6, - ACTIONS(7205), 1, - anon_sym_RBRACE, - ACTIONS(7346), 1, + STATE(4245), 1, + sym_for_in_clause, + STATE(4954), 1, + aux_sym_dictionary_repeat1, + STATE(5716), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173294] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(7349), 1, - anon_sym_async, - ACTIONS(7352), 1, - anon_sym_for, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6872), 1, + sym__newline, + ACTIONS(7390), 1, + anon_sym_COMMA, + STATE(5273), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4160), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [176685] = 8, - ACTIONS(6352), 1, + [173320] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6887), 1, + sym__newline, + STATE(5274), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173346] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6881), 1, + anon_sym_EQ, + ACTIONS(6883), 1, + sym__newline, + STATE(4769), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [173370] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7392), 1, + anon_sym_EQ, + ACTIONS(7394), 1, + sym__newline, + STATE(4768), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4193), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [173394] = 8, + ACTIONS(6595), 1, + anon_sym_RPAREN, + ACTIONS(6597), 1, + anon_sym_COMMA, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, + anon_sym_if, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, + STATE(4929), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173420] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7396), 1, + sym__newline, + STATE(5048), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173446] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6885), 1, + anon_sym_EQ, + ACTIONS(6887), 1, + sym__newline, + STATE(5276), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [173470] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7398), 1, + sym__newline, + STATE(5050), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173496] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7400), 1, + sym__newline, + STATE(5056), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173522] = 8, + ACTIONS(6422), 1, anon_sym_async, - ACTIONS(6354), 1, + ACTIONS(6424), 1, anon_sym_for, - ACTIONS(7355), 1, + ACTIONS(7402), 1, anon_sym_COMMA, - ACTIONS(7357), 1, + ACTIONS(7404), 1, anon_sym_RBRACE, - STATE(4210), 1, + STATE(4245), 1, sym_for_in_clause, - STATE(4872), 1, + STATE(4989), 1, aux_sym_dictionary_repeat1, - STATE(5664), 1, + STATE(5676), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176711] = 8, - ACTIONS(6408), 1, - anon_sym_RPAREN, - ACTIONS(6410), 1, + [173548] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7406), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7107), 5, anon_sym_COMMA, - ACTIONS(7250), 1, anon_sym_as, - ACTIONS(7252), 1, anon_sym_if, - ACTIONS(7254), 1, + anon_sym_COLON, + anon_sym_PIPE, + [173564] = 8, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, + anon_sym_if, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(7204), 1, anon_sym_or, - STATE(4831), 1, + ACTIONS(7408), 1, + anon_sym_RPAREN, + ACTIONS(7410), 1, + anon_sym_COMMA, + STATE(5057), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176737] = 8, - ACTIONS(6352), 1, + [173590] = 8, + ACTIONS(6422), 1, anon_sym_async, - ACTIONS(6354), 1, + ACTIONS(6424), 1, anon_sym_for, - ACTIONS(7359), 1, + ACTIONS(7412), 1, anon_sym_COMMA, - ACTIONS(7361), 1, + ACTIONS(7414), 1, anon_sym_RBRACE, - STATE(4210), 1, + STATE(4245), 1, sym_for_in_clause, - STATE(4902), 1, + STATE(5014), 1, aux_sym_dictionary_repeat1, - STATE(5486), 1, + STATE(5798), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176763] = 8, - ACTIONS(6478), 1, - anon_sym_RPAREN, - ACTIONS(6480), 1, + [173616] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6654), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [173638] = 8, + ACTIONS(7416), 1, + sym_identifier, + ACTIONS(7418), 1, + anon_sym_LPAREN, + ACTIONS(7420), 1, + anon_sym_STAR, + STATE(4545), 1, + sym_dotted_name, + STATE(4646), 1, + sym_aliased_import, + STATE(5462), 1, + sym__import_list, + STATE(5477), 1, + sym_wildcard_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173664] = 7, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(7422), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3507), 2, anon_sym_COMMA, - ACTIONS(7250), 1, + anon_sym_RBRACK, + [173688] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7424), 1, + anon_sym_EQ, + ACTIONS(7426), 1, + sym__newline, + STATE(5209), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4246), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [173712] = 8, + ACTIONS(6756), 1, anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, ACTIONS(7252), 1, + anon_sym_COMMA, + ACTIONS(7428), 1, + anon_sym_RBRACK, + STATE(4817), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173738] = 8, + ACTIONS(6675), 1, + anon_sym_RPAREN, + ACTIONS(6677), 1, + anon_sym_COMMA, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(7204), 1, anon_sym_or, - STATE(4880), 1, + STATE(5042), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176789] = 4, - ACTIONS(6998), 1, + [173764] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6897), 1, + anon_sym_EQ, + ACTIONS(6899), 1, + sym__newline, + STATE(5213), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [173788] = 4, + ACTIONS(7121), 1, anon_sym_DOT, - STATE(4183), 1, + STATE(4155), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6628), 5, + ACTIONS(6724), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [176807] = 8, - ACTIONS(6644), 1, - anon_sym_RPAREN, - ACTIONS(7250), 1, + [173806] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(7363), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(5021), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7430), 1, + sym__newline, + STATE(5086), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176833] = 8, - ACTIONS(6352), 1, - anon_sym_async, - ACTIONS(6354), 1, - anon_sym_for, - ACTIONS(7365), 1, + [173832] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7367), 1, - anon_sym_RBRACE, - STATE(4210), 1, - sym_for_in_clause, - STATE(4927), 1, - aux_sym_dictionary_repeat1, - STATE(5630), 1, - sym__comprehension_clauses, + ACTIONS(7432), 1, + sym__newline, + STATE(4832), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176859] = 8, - ACTIONS(6706), 1, + [173858] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7434), 1, + sym__newline, + STATE(4834), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173884] = 8, + ACTIONS(6617), 1, + anon_sym_RPAREN, + ACTIONS(6619), 1, + anon_sym_COMMA, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, + anon_sym_if, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(7204), 1, + anon_sym_or, + STATE(4965), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [173910] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(6854), 1, + anon_sym_EQ, + ACTIONS(6856), 1, + sym__newline, + STATE(4835), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [173934] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7436), 1, + anon_sym_EQ, + ACTIONS(7438), 1, + sym__newline, + STATE(4843), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4210), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [173958] = 6, + ACTIONS(5094), 1, + anon_sym_LBRACK, + ACTIONS(7440), 1, + anon_sym_EQ, + STATE(4441), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7368), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7442), 2, + anon_sym_not, anon_sym_or, - ACTIONS(7108), 1, + [173980] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4610), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + [173994] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7432), 1, + sym__newline, + ACTIONS(7444), 1, + anon_sym_EQ, + STATE(4844), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174018] = 4, + ACTIONS(6015), 1, + anon_sym_DOT, + STATE(4209), 1, + aux_sym_class_definition_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6722), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(7369), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(5162), 1, - aux_sym_type_index_repeat1, + anon_sym_PIPE, + [174036] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7446), 1, + anon_sym_EQ, + ACTIONS(7448), 1, + sym__newline, + STATE(4847), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176885] = 8, - ACTIONS(7250), 1, + STATE(4211), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174060] = 8, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(7204), 1, anon_sym_or, - ACTIONS(7371), 1, + ACTIONS(7450), 1, anon_sym_RPAREN, - ACTIONS(7373), 1, + ACTIONS(7452), 1, anon_sym_COMMA, - STATE(4999), 1, + STATE(5071), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176911] = 7, - ACTIONS(6706), 1, + [174086] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7434), 1, + sym__newline, + ACTIONS(7454), 1, + anon_sym_EQ, + STATE(4848), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174110] = 8, + ACTIONS(6751), 1, + anon_sym_RBRACE, + ACTIONS(7456), 1, + anon_sym_COMMA, + ACTIONS(7458), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(7460), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(7462), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(7464), 1, anon_sym_or, - ACTIONS(7375), 1, - anon_sym_COLON, + STATE(5270), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3411), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [176935] = 8, - ACTIONS(6352), 1, - anon_sym_async, - ACTIONS(6354), 1, - anon_sym_for, - ACTIONS(7377), 1, + [174136] = 8, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(7466), 1, anon_sym_COMMA, - ACTIONS(7379), 1, - anon_sym_RBRACE, - STATE(4210), 1, - sym_for_in_clause, - STATE(4953), 1, - aux_sym_dictionary_repeat1, - STATE(5763), 1, - sym__comprehension_clauses, + ACTIONS(7468), 1, + anon_sym_COLON, + STATE(4904), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176961] = 8, - ACTIONS(6538), 1, - anon_sym_RPAREN, - ACTIONS(6540), 1, - anon_sym_COMMA, - ACTIONS(7250), 1, + [174162] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6271), 1, anon_sym_or, - STATE(4936), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7470), 1, + sym__newline, + STATE(5249), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [176987] = 8, - ACTIONS(6157), 1, + [174188] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7381), 1, + ACTIONS(7472), 1, sym__newline, - STATE(4987), 1, + STATE(4899), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177013] = 8, - ACTIONS(6568), 1, - anon_sym_RPAREN, - ACTIONS(6570), 1, - anon_sym_COMMA, - ACTIONS(7250), 1, + [174214] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6271), 1, anon_sym_or, - STATE(4982), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7474), 1, + sym__newline, + STATE(4901), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177039] = 2, + [174240] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4542), 7, + ACTIONS(4646), 7, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -268744,20571 +273431,20814 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_EQ, anon_sym_LBRACK, - [177053] = 4, - ACTIONS(5959), 1, + [174254] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7476), 1, + sym__newline, + STATE(4905), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [174280] = 4, + ACTIONS(6015), 1, anon_sym_DOT, - STATE(4048), 1, + STATE(3550), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6632), 5, + ACTIONS(6724), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [177071] = 8, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6396), 1, + [174298] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7383), 1, + ACTIONS(7478), 1, + anon_sym_EQ, + ACTIONS(7480), 1, sym__newline, - STATE(4943), 1, + STATE(4907), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177097] = 8, - ACTIONS(6492), 1, - anon_sym_RPAREN, - ACTIONS(6494), 1, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174322] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7250), 1, + ACTIONS(7482), 1, + anon_sym_EQ, + ACTIONS(7484), 1, + sym__newline, + STATE(4910), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174346] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7486), 1, + anon_sym_EQ, + ACTIONS(7488), 1, + sym__newline, + STATE(4912), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4232), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174370] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7474), 1, + sym__newline, + ACTIONS(7490), 1, + anon_sym_EQ, + STATE(4913), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174394] = 8, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6710), 1, anon_sym_or, - STATE(4911), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(7492), 1, + anon_sym_COLON, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177123] = 8, - ACTIONS(7250), 1, + [174420] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(7385), 1, - anon_sym_RPAREN, - ACTIONS(7387), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(5014), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7494), 1, + sym__newline, + STATE(5253), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177149] = 6, - ACTIONS(6439), 1, - anon_sym_async, - ACTIONS(6441), 1, - anon_sym_for, - ACTIONS(7098), 1, + [174446] = 8, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(7221), 1, - anon_sym_RBRACK, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(7496), 1, + anon_sym_COLON, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4056), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [177171] = 8, - ACTIONS(6157), 1, + [174472] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7389), 1, + ACTIONS(7498), 1, sym__newline, - STATE(4971), 1, + STATE(5272), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177197] = 8, - ACTIONS(6352), 1, + [174498] = 6, + ACTIONS(6493), 1, anon_sym_async, - ACTIONS(6354), 1, + ACTIONS(6495), 1, anon_sym_for, - ACTIONS(7391), 1, - anon_sym_COMMA, - ACTIONS(7393), 1, - anon_sym_RBRACE, - STATE(4210), 1, - sym_for_in_clause, - STATE(5096), 1, - aux_sym_dictionary_repeat1, - STATE(5543), 1, - sym__comprehension_clauses, + ACTIONS(7221), 1, + anon_sym_if, + ACTIONS(7382), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177223] = 4, - ACTIONS(7395), 1, + STATE(4097), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [174520] = 4, + ACTIONS(4427), 1, anon_sym_DOT, - STATE(4183), 1, + STATE(4244), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5706), 5, + ACTIONS(6722), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [177241] = 8, - ACTIONS(6634), 1, + [174538] = 8, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7398), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7400), 1, + ACTIONS(7500), 1, anon_sym_COLON, - STATE(5089), 1, - aux_sym_match_statement_repeat1, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177267] = 8, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6396), 1, + [174564] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7402), 1, + ACTIONS(7502), 1, + anon_sym_EQ, + ACTIONS(7504), 1, sym__newline, - STATE(5029), 1, + STATE(4767), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177293] = 8, - ACTIONS(6634), 1, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174588] = 8, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(6820), 1, + ACTIONS(6930), 1, anon_sym_COMMA, - ACTIONS(7404), 1, + ACTIONS(7506), 1, anon_sym_COLON, - STATE(4567), 1, + STATE(4653), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177319] = 8, - ACTIONS(6157), 1, + [174614] = 8, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6930), 1, + anon_sym_COMMA, + ACTIONS(7508), 1, + anon_sym_COLON, + STATE(4653), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [174640] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7406), 1, + ACTIONS(7510), 1, + anon_sym_EQ, + ACTIONS(7512), 1, sym__newline, - STATE(5053), 1, + STATE(4792), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177345] = 8, - ACTIONS(6634), 1, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [174664] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6820), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7408), 1, - anon_sym_COLON, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7514), 1, + sym__newline, + STATE(4827), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177371] = 8, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, + [174690] = 6, + ACTIONS(6551), 1, + anon_sym_async, + ACTIONS(6553), 1, + anon_sym_for, + ACTIONS(7219), 1, + anon_sym_RBRACK, + ACTIONS(7380), 1, anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(6820), 1, - anon_sym_COMMA, - ACTIONS(7410), 1, - anon_sym_COLON, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177397] = 8, - ACTIONS(6634), 1, + STATE(4096), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [174712] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6820), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7412), 1, - anon_sym_COLON, - STATE(4567), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7516), 1, + sym__newline, + STATE(4940), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177423] = 8, - ACTIONS(6157), 1, + [174738] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7414), 1, + ACTIONS(7518), 1, sym__newline, - STATE(4974), 1, + STATE(4942), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177449] = 8, - ACTIONS(6157), 1, + [174764] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7416), 1, + ACTIONS(7520), 1, sym__newline, - STATE(5018), 1, + STATE(4943), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177475] = 8, - ACTIONS(6157), 1, + [174790] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7418), 1, + ACTIONS(7522), 1, sym__newline, - STATE(5036), 1, + STATE(4945), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177501] = 8, - ACTIONS(6582), 1, - anon_sym_RPAREN, - ACTIONS(6584), 1, - anon_sym_COMMA, - ACTIONS(7250), 1, + [174816] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6271), 1, anon_sym_or, - STATE(5065), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177527] = 4, - ACTIONS(4323), 1, - anon_sym_DOT, - STATE(4209), 1, - aux_sym_class_definition_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6632), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(6503), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [177545] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(6714), 1, - anon_sym_EQ, - ACTIONS(6716), 1, + ACTIONS(7524), 1, sym__newline, - STATE(5090), 1, + STATE(4947), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [177569] = 7, - ACTIONS(3814), 1, + [174842] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7420), 1, + ACTIONS(7526), 1, anon_sym_EQ, - ACTIONS(7422), 1, + ACTIONS(7528), 1, sym__newline, - STATE(5046), 1, + STATE(4951), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [177593] = 7, - ACTIONS(3814), 1, + [174866] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7424), 1, + ACTIONS(7530), 1, anon_sym_EQ, - ACTIONS(7426), 1, + ACTIONS(7532), 1, sym__newline, - STATE(5128), 1, + STATE(4799), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4197), 2, + STATE(4141), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [177617] = 7, - ACTIONS(3814), 1, + [174890] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7414), 1, + ACTIONS(7494), 1, sym__newline, - ACTIONS(7428), 1, + ACTIONS(7534), 1, anon_sym_EQ, - STATE(5139), 1, + STATE(4800), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [177641] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, + [174914] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7430), 1, - anon_sym_EQ, - ACTIONS(7432), 1, + ACTIONS(7536), 1, sym__newline, - STATE(5168), 1, + STATE(4853), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4206), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [177665] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, + [174940] = 8, + ACTIONS(6751), 1, + anon_sym_RBRACK, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(7538), 1, anon_sym_COMMA, - ACTIONS(7418), 1, - sym__newline, - ACTIONS(7434), 1, - anon_sym_EQ, - STATE(5177), 1, - aux_sym_cvar_decl_repeat2, + STATE(5080), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [177689] = 8, - ACTIONS(6157), 1, + [174966] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(7436), 1, - sym__newline, - STATE(5147), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177715] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(7540), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(7438), 1, - anon_sym_EQ, - ACTIONS(7440), 1, + [174988] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7542), 1, sym__newline, - STATE(5161), 1, + STATE(4974), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [177739] = 8, - ACTIONS(6644), 1, - anon_sym_RBRACE, - ACTIONS(7442), 1, - anon_sym_COMMA, - ACTIONS(7444), 1, + [175014] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(7446), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(7448), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(7450), 1, + ACTIONS(6271), 1, anon_sym_or, - STATE(5222), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7544), 1, + sym__newline, + STATE(4975), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177765] = 8, - ACTIONS(6644), 1, - anon_sym_RBRACK, - ACTIONS(6706), 1, + [175040] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(7452), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(4932), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(7546), 1, + sym__newline, + STATE(4976), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177791] = 7, - ACTIONS(3814), 1, - anon_sym_LBRACK, - ACTIONS(6396), 1, + [175066] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7454), 1, - anon_sym_EQ, - ACTIONS(7456), 1, + ACTIONS(7548), 1, sym__newline, - STATE(5098), 1, + STATE(4979), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - [177815] = 8, - ACTIONS(6460), 1, - anon_sym_RPAREN, - ACTIONS(6462), 1, - anon_sym_COMMA, - ACTIONS(7250), 1, + [175092] = 8, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6762), 1, anon_sym_or, - STATE(5218), 1, - aux_sym_argument_list_repeat1, + ACTIONS(7252), 1, + anon_sym_COMMA, + ACTIONS(7550), 1, + anon_sym_RBRACK, + STATE(5235), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [177841] = 6, - ACTIONS(4329), 1, - anon_sym_LBRACK, - ACTIONS(7458), 1, - anon_sym_EQ, - STATE(4369), 1, - sym_type_index, + [175118] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7552), 1, + sym__newline, + STATE(4987), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7225), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7460), 2, - anon_sym_not, - anon_sym_or, - [177863] = 4, - ACTIONS(4323), 1, + [175144] = 4, + ACTIONS(4427), 1, anon_sym_DOT, - STATE(3323), 1, + STATE(3364), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6628), 5, + ACTIONS(6724), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [177881] = 6, - ACTIONS(6352), 1, + [175162] = 6, + ACTIONS(6422), 1, anon_sym_async, - ACTIONS(6354), 1, + ACTIONS(6424), 1, anon_sym_for, - ACTIONS(7221), 1, + ACTIONS(7382), 1, anon_sym_RBRACE, - ACTIONS(7344), 1, + ACTIONS(7554), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4158), 3, + STATE(4255), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [177903] = 7, - ACTIONS(3814), 1, + [175184] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7462), 1, + ACTIONS(6788), 1, anon_sym_EQ, - ACTIONS(7464), 1, + ACTIONS(6790), 1, sym__newline, - STATE(5129), 1, + STATE(4858), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4203), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [177927] = 7, - ACTIONS(3814), 1, + [175208] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7086), 1, - sym__newline, - ACTIONS(7466), 1, + ACTIONS(7556), 1, anon_sym_EQ, - STATE(5132), 1, + ACTIONS(7558), 1, + sym__newline, + STATE(4874), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4221), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [177951] = 3, + [175232] = 4, + ACTIONS(7121), 1, + anon_sym_DOT, + STATE(4188), 1, + aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7470), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7468), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [177967] = 8, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(6667), 1, - sym__newline, - ACTIONS(7472), 1, + ACTIONS(6722), 5, + anon_sym_LPAREN, anon_sym_COMMA, - STATE(4752), 1, - aux_sym_cvar_def_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [177993] = 6, - ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6546), 3, - anon_sym_DOT, - anon_sym_COLON, anon_sym_PIPE, - [178015] = 7, - ACTIONS(3814), 1, + anon_sym_RBRACE, + [175250] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7474), 1, - anon_sym_EQ, - ACTIONS(7476), 1, + ACTIONS(7514), 1, sym__newline, - STATE(4804), 1, + ACTIONS(7560), 1, + anon_sym_EQ, + STATE(4878), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4053), 2, + STATE(4288), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [178039] = 7, - ACTIONS(3814), 1, + [175274] = 7, + ACTIONS(3918), 1, anon_sym_LBRACK, - ACTIONS(6396), 1, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7478), 1, + ACTIONS(7562), 1, anon_sym_EQ, - ACTIONS(7480), 1, + ACTIONS(7564), 1, sym__newline, - STATE(4764), 1, + STATE(4887), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, + STATE(4224), 2, sym_type_index, aux_sym_cvar_decl_repeat1, - [178063] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7482), 6, + [175298] = 7, + ACTIONS(3918), 1, + anon_sym_LBRACK, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(7536), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, + ACTIONS(7566), 1, anon_sym_EQ, - anon_sym_PIPE, - [178076] = 3, + STATE(4892), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7484), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7468), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [178091] = 6, - ACTIONS(7250), 1, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + [175322] = 8, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7486), 2, - anon_sym_RPAREN, + ACTIONS(7568), 1, anon_sym_COMMA, - [178112] = 4, - ACTIONS(3), 1, + ACTIONS(7570), 1, + anon_sym_COLON, + STATE(5140), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7490), 1, - anon_sym_BSLASH, - ACTIONS(7488), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [178129] = 6, - ACTIONS(7250), 1, + [175348] = 8, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4662), 2, - anon_sym_RPAREN, + ACTIONS(6823), 1, + sym__newline, + ACTIONS(7572), 1, anon_sym_COMMA, - [178150] = 4, - ACTIONS(3), 1, + STATE(5223), 1, + aux_sym_cvar_def_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7494), 1, - anon_sym_BSLASH, - ACTIONS(7492), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [178167] = 4, - ACTIONS(7496), 1, + [175374] = 8, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, + ACTIONS(6868), 1, + sym__newline, + ACTIONS(7574), 1, anon_sym_COMMA, - STATE(4264), 1, - aux_sym_for_in_clause_repeat1, + STATE(5151), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7498), 4, - anon_sym_if, + [175400] = 6, + ACTIONS(6422), 1, anon_sym_async, + ACTIONS(6424), 1, anon_sym_for, - anon_sym_RBRACK, - [178184] = 6, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(7219), 1, + anon_sym_RBRACE, + ACTIONS(7554), 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(7072), 2, - sym__newline, - anon_sym_SEMI, - [178205] = 6, - ACTIONS(6706), 1, + STATE(4099), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [175422] = 8, + ACTIONS(6751), 1, + anon_sym_RPAREN, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(7204), 1, anon_sym_or, + ACTIONS(7576), 1, + anon_sym_COMMA, + STATE(5114), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [178226] = 3, + [175448] = 4, + ACTIONS(2461), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7500), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6818), 4, - anon_sym_RPAREN, + STATE(2229), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(7107), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [178241] = 4, - ACTIONS(7504), 1, - anon_sym_PIPE, - STATE(4282), 1, - aux_sym_union_pattern_repeat1, + anon_sym_RBRACE, + [175466] = 8, + ACTIONS(6422), 1, + anon_sym_async, + ACTIONS(6424), 1, + anon_sym_for, + ACTIONS(7578), 1, + anon_sym_COMMA, + ACTIONS(7580), 1, + anon_sym_RBRACE, + STATE(4245), 1, + sym_for_in_clause, + STATE(4917), 1, + aux_sym_dictionary_repeat1, + STATE(5720), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [175492] = 4, + ACTIONS(1474), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7502), 4, + STATE(2432), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(7107), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [178258] = 7, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, - anon_sym_LBRACK, - ACTIONS(7506), 1, - sym_identifier, - STATE(1416), 1, - sym_c_function_definition, - STATE(3968), 1, - sym_c_parameters, - STATE(5330), 1, - sym_template_params, + anon_sym_PIPE, + [175510] = 8, + ACTIONS(6422), 1, + anon_sym_async, + ACTIONS(6424), 1, + anon_sym_for, + ACTIONS(7582), 1, + anon_sym_COMMA, + ACTIONS(7584), 1, + anon_sym_RBRACE, + STATE(4245), 1, + sym_for_in_clause, + STATE(5134), 1, + aux_sym_dictionary_repeat1, + STATE(5542), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178281] = 6, - ACTIONS(6706), 1, + [175536] = 8, + ACTIONS(6658), 1, + anon_sym_RPAREN, + ACTIONS(6660), 1, + anon_sym_COMMA, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(7204), 1, anon_sym_or, + STATE(4997), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7508), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [178302] = 7, - ACTIONS(7510), 1, + [175562] = 7, + ACTIONS(7586), 1, anon_sym_DOT, - ACTIONS(7512), 1, + ACTIONS(7588), 1, anon_sym_COMMA, - ACTIONS(7514), 1, + ACTIONS(7590), 1, anon_sym_COLON, - ACTIONS(7516), 1, + ACTIONS(7592), 1, anon_sym_RBRACK, - ACTIONS(7518), 1, + ACTIONS(7594), 1, anon_sym_PIPE, - STATE(5091), 1, + STATE(4972), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178325] = 6, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, + [175585] = 4, + ACTIONS(7596), 1, + anon_sym_COMMA, + STATE(4263), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7599), 4, anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [175602] = 7, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(7601), 1, + sym_identifier, + STATE(3003), 1, + sym_c_function_definition, + STATE(4072), 1, + sym_c_parameters, + STATE(5338), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7520), 2, - sym__newline, - anon_sym_SEMI, - [178346] = 6, - ACTIONS(6634), 1, + [175625] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(7204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7522), 2, + ACTIONS(4049), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [178367] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7524), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [178380] = 6, - ACTIONS(7250), 1, - anon_sym_as, - ACTIONS(7252), 1, - anon_sym_if, - ACTIONS(7254), 1, + [175646] = 4, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6710), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7526), 2, - anon_sym_RPAREN, + ACTIONS(4789), 4, anon_sym_COMMA, - [178401] = 6, - ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6159), 1, anon_sym_if, - ACTIONS(6161), 1, + anon_sym_COLON, + [175663] = 6, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6271), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7528), 2, + ACTIONS(7184), 2, sym__newline, anon_sym_SEMI, - [178422] = 7, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, + [175684] = 7, + ACTIONS(6916), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, - sym_identifier, - STATE(2943), 1, - sym_c_function_definition, - STATE(4016), 1, - sym_c_parameters, - STATE(5287), 1, - sym_template_params, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7605), 1, + anon_sym_COLON, + ACTIONS(7607), 1, + sym__newline, + STATE(529), 1, + sym_external_definition, + STATE(5128), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178445] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7534), 1, - anon_sym_BSLASH, - ACTIONS(7532), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [178462] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7538), 1, - anon_sym_BSLASH, - ACTIONS(7536), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [178479] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(7542), 1, - anon_sym_BSLASH, - ACTIONS(7540), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [178496] = 7, - ACTIONS(6858), 1, + [175707] = 7, + ACTIONS(6916), 1, anon_sym_LBRACK, - ACTIONS(7544), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7546), 1, + ACTIONS(7609), 1, anon_sym_COLON, - ACTIONS(7548), 1, + ACTIONS(7611), 1, sym__newline, - STATE(2958), 1, + STATE(524), 1, sym_external_definition, - STATE(5107), 1, + STATE(5135), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178519] = 6, - ACTIONS(7250), 1, + [175730] = 6, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6762), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7550), 2, - anon_sym_RPAREN, + ACTIONS(7613), 2, anon_sym_COMMA, - [178540] = 3, + anon_sym_RBRACK, + [175751] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7552), 2, + ACTIONS(7615), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6818), 4, + ACTIONS(7190), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, + [175766] = 6, + ACTIONS(7458), 1, + anon_sym_as, + ACTIONS(7460), 1, + anon_sym_if, + ACTIONS(7462), 1, + anon_sym_and, + ACTIONS(7464), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7617), 2, + anon_sym_COMMA, anon_sym_RBRACE, - [178555] = 7, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, - anon_sym_LBRACK, - ACTIONS(7554), 1, - sym_identifier, - STATE(551), 1, - sym_c_function_definition, - STATE(4033), 1, - sym_c_parameters, - STATE(5334), 1, - sym_template_params, + [175787] = 6, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, + anon_sym_if, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178578] = 6, - ACTIONS(6706), 1, + ACTIONS(7619), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [175808] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6271), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7556), 2, + ACTIONS(7621), 2, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACK, - [178599] = 2, + [175829] = 6, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7558), 6, + ACTIONS(7623), 2, sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [178612] = 7, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, - anon_sym_LBRACK, - ACTIONS(7560), 1, - sym_identifier, - STATE(2975), 1, - sym_c_function_definition, - STATE(4016), 1, - sym_c_parameters, - STATE(5287), 1, - sym_template_params, + anon_sym_COMMA, + [175850] = 6, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178635] = 7, - ACTIONS(6850), 1, + ACTIONS(7625), 2, + sym__newline, + anon_sym_COMMA, + [175871] = 7, + ACTIONS(6966), 1, anon_sym_LBRACK, - ACTIONS(7544), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7562), 1, + ACTIONS(7627), 1, anon_sym_COLON, - ACTIONS(7564), 1, + ACTIONS(7629), 1, sym__newline, - STATE(514), 1, + STATE(1088), 1, sym_external_definition, - STATE(5086), 1, + STATE(5218), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178658] = 7, - ACTIONS(6858), 1, + [175894] = 7, + ACTIONS(6994), 1, anon_sym_LBRACK, - ACTIONS(7544), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7566), 1, + ACTIONS(7631), 1, anon_sym_COLON, - ACTIONS(7568), 1, + ACTIONS(7633), 1, sym__newline, - STATE(2864), 1, + STATE(3012), 1, sym_external_definition, - STATE(5109), 1, + STATE(5160), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178681] = 3, - STATE(4282), 1, - aux_sym_union_pattern_repeat1, + [175917] = 7, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(7635), 1, + anon_sym_COMMA, + ACTIONS(7637), 1, + anon_sym_as, + ACTIONS(7639), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [175940] = 7, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(7641), 1, + sym_identifier, + STATE(1245), 1, + sym_c_function_definition, + STATE(4014), 1, + sym_c_parameters, + STATE(5476), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7570), 5, + [175963] = 4, + ACTIONS(7643), 1, anon_sym_COMMA, + STATE(4331), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7645), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [175980] = 6, + ACTIONS(7198), 1, anon_sym_as, + ACTIONS(7200), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [178696] = 3, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7572), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7468), 4, + ACTIONS(4793), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [176001] = 6, + ACTIONS(7198), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [178711] = 6, - ACTIONS(7444), 1, - anon_sym_as, - ACTIONS(7446), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(7448), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7450), 1, + ACTIONS(7204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7072), 2, + ACTIONS(7184), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [178732] = 4, - ACTIONS(7576), 1, + [176022] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7107), 4, anon_sym_COMMA, - STATE(4278), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [176037] = 6, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, + anon_sym_if, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7574), 4, + ACTIONS(7649), 2, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [178749] = 7, - ACTIONS(6858), 1, + anon_sym_COMMA, + [176058] = 7, + ACTIONS(6994), 1, anon_sym_LBRACK, - ACTIONS(7544), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7578), 1, + ACTIONS(7651), 1, anon_sym_COLON, - ACTIONS(7580), 1, + ACTIONS(7653), 1, sym__newline, - STATE(2876), 1, + STATE(2948), 1, sym_external_definition, - STATE(5115), 1, + STATE(5168), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178772] = 4, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, + [176081] = 6, + ACTIONS(5035), 1, + anon_sym_STAR_STAR, + ACTIONS(7655), 1, + sym_identifier, + ACTIONS(7657), 1, + anon_sym_LPAREN, + ACTIONS(7659), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [178789] = 4, - ACTIONS(7582), 1, - anon_sym_COMMA, - STATE(4337), 1, - aux_sym_for_in_clause_repeat1, + STATE(4602), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [176102] = 4, + ACTIONS(7663), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7498), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [178806] = 4, - ACTIONS(7584), 1, + STATE(4288), 2, + sym_type_index, + aux_sym_cvar_decl_repeat1, + ACTIONS(7661), 3, + sym__newline, anon_sym_COMMA, - STATE(4257), 1, - aux_sym__patterns_repeat1, + anon_sym_EQ, + [176119] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5688), 4, + ACTIONS(7666), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [178823] = 6, - ACTIONS(7250), 1, - anon_sym_as, - ACTIONS(7252), 1, - anon_sym_if, - ACTIONS(7254), 1, - anon_sym_and, - ACTIONS(7256), 1, - anon_sym_or, + anon_sym_PIPE, + [176132] = 3, + ACTIONS(7668), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6775), 2, - anon_sym_RPAREN, + ACTIONS(7107), 5, anon_sym_COMMA, - [178844] = 6, - ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6159), 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(7587), 2, - sym__newline, - anon_sym_COMMA, - [178865] = 7, - ACTIONS(6858), 1, + anon_sym_COLON, + anon_sym_PIPE, + [176147] = 7, + ACTIONS(6916), 1, anon_sym_LBRACK, - ACTIONS(7544), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7589), 1, + ACTIONS(7670), 1, anon_sym_COLON, - ACTIONS(7591), 1, + ACTIONS(7672), 1, sym__newline, - STATE(2891), 1, + STATE(520), 1, sym_external_definition, - STATE(5118), 1, + STATE(5139), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178888] = 7, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(7593), 1, - anon_sym_COMMA, - ACTIONS(7595), 1, - anon_sym_as, - ACTIONS(7597), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [178911] = 7, - ACTIONS(6913), 1, + [176170] = 7, + ACTIONS(6994), 1, anon_sym_LBRACK, - ACTIONS(7544), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7599), 1, + ACTIONS(7674), 1, anon_sym_COLON, - ACTIONS(7601), 1, + ACTIONS(7676), 1, sym__newline, - STATE(1162), 1, + STATE(2971), 1, sym_external_definition, - STATE(5151), 1, + STATE(5159), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [178934] = 4, - ACTIONS(7603), 1, + [176193] = 6, + ACTIONS(7458), 1, + anon_sym_as, + ACTIONS(7460), 1, + anon_sym_if, + ACTIONS(7462), 1, + anon_sym_and, + ACTIONS(7464), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7059), 2, anon_sym_COMMA, - STATE(4285), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACE, + [176214] = 7, + ACTIONS(7586), 1, + anon_sym_DOT, + ACTIONS(7590), 1, + anon_sym_COLON, + ACTIONS(7594), 1, + anon_sym_PIPE, + ACTIONS(7678), 1, + anon_sym_COMMA, + ACTIONS(7680), 1, + anon_sym_RBRACK, + STATE(5157), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7605), 4, + [176237] = 7, + ACTIONS(6706), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [178951] = 4, - ACTIONS(7607), 1, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(7637), 1, + anon_sym_as, + ACTIONS(7682), 1, anon_sym_COMMA, - STATE(4286), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(7684), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7609), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [178968] = 3, - ACTIONS(7611), 1, - anon_sym_LPAREN, + [176260] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6818), 5, + ACTIONS(5735), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [178983] = 7, - ACTIONS(7613), 1, - anon_sym_COMMA, - ACTIONS(7615), 1, - anon_sym_as, - ACTIONS(7617), 1, - anon_sym_if, - ACTIONS(7619), 1, - anon_sym_COLON, - STATE(4454), 1, - aux_sym_case_clause_repeat1, - STATE(5667), 1, - sym_if_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [179006] = 6, - ACTIONS(7250), 1, + anon_sym_RBRACE, + [176273] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6710), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7621), 2, - anon_sym_RPAREN, + ACTIONS(7686), 2, anon_sym_COMMA, - [179027] = 7, - ACTIONS(6850), 1, - anon_sym_LBRACK, - ACTIONS(7544), 1, - anon_sym_LPAREN, - ACTIONS(7623), 1, anon_sym_COLON, - ACTIONS(7625), 1, - sym__newline, - STATE(513), 1, - sym_external_definition, - STATE(5079), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [179050] = 3, + [176294] = 6, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, + anon_sym_if, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7627), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7468), 4, + ACTIONS(4837), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [179065] = 4, - ACTIONS(7504), 1, + [176315] = 4, + ACTIONS(7690), 1, anon_sym_PIPE, - STATE(4282), 1, + STATE(4369), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7629), 4, + ACTIONS(7688), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [179082] = 2, + [176332] = 6, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7692), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [176353] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7631), 6, + ACTIONS(7694), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [179095] = 4, - ACTIONS(7633), 1, - anon_sym_PIPE, - STATE(4272), 1, - aux_sym_union_pattern_repeat1, + [176366] = 6, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, + anon_sym_if, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7570), 4, + ACTIONS(7696), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [176387] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7700), 1, + anon_sym_BSLASH, + ACTIONS(7698), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [176404] = 6, + ACTIONS(7198), 1, anon_sym_as, + ACTIONS(7200), 1, anon_sym_if, - anon_sym_COLON, - [179112] = 4, - ACTIONS(7636), 1, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7702), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4332), 1, - aux_sym_for_in_clause_repeat1, + [176425] = 7, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(7704), 1, + sym_identifier, + STATE(1415), 1, + sym_c_function_definition, + STATE(4014), 1, + sym_c_parameters, + STATE(5476), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7498), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [179129] = 6, - ACTIONS(6634), 1, + [176448] = 7, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(7706), 1, + sym_identifier, + STATE(560), 1, + sym_c_function_definition, + STATE(4051), 1, + sym_c_parameters, + STATE(5390), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [176471] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(7204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7638), 2, + ACTIONS(4829), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [179150] = 3, + [176492] = 6, + ACTIONS(7458), 1, + anon_sym_as, + ACTIONS(7460), 1, + anon_sym_if, + ACTIONS(7462), 1, + anon_sym_and, + ACTIONS(7464), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7640), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6818), 4, + ACTIONS(7184), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [179165] = 2, + anon_sym_RBRACE, + [176513] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7642), 6, + ACTIONS(4097), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [179178] = 7, - ACTIONS(6913), 1, + [176526] = 7, + ACTIONS(6966), 1, anon_sym_LBRACK, - ACTIONS(7544), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7644), 1, + ACTIONS(7708), 1, anon_sym_COLON, - ACTIONS(7646), 1, + ACTIONS(7710), 1, sym__newline, - STATE(1149), 1, + STATE(1065), 1, sym_external_definition, - STATE(4896), 1, + STATE(5003), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179201] = 4, - ACTIONS(7650), 1, - anon_sym_COMMA, - STATE(4278), 1, - aux_sym_for_in_clause_repeat1, + [176549] = 5, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, + ACTIONS(7712), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7648), 4, + ACTIONS(4741), 3, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - anon_sym_async, - anon_sym_for, - [179218] = 6, - ACTIONS(7250), 1, + [176568] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6710), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7522), 2, - anon_sym_RPAREN, + ACTIONS(7715), 2, anon_sym_COMMA, - [179239] = 2, + anon_sym_COLON, + [176589] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6546), 6, + ACTIONS(7717), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [179252] = 5, - ACTIONS(7655), 1, - anon_sym_DOT, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(7659), 1, - anon_sym_PIPE, - ACTIONS(3), 2, + [176602] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7653), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [179271] = 4, - ACTIONS(7504), 1, - anon_sym_PIPE, - STATE(4272), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(7721), 1, + anon_sym_BSLASH, + ACTIONS(7719), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [176619] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7661), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [179288] = 6, - ACTIONS(6634), 1, + ACTIONS(7725), 1, + anon_sym_BSLASH, + ACTIONS(7723), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [176636] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(7204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7526), 2, + ACTIONS(7727), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [176657] = 4, + ACTIONS(7729), 1, anon_sym_COMMA, + STATE(4317), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5725), 4, anon_sym_COLON, - [179309] = 6, - ACTIONS(7444), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [176674] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(7446), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(7448), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7450), 1, + ACTIONS(7204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7556), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [179330] = 4, - ACTIONS(7663), 1, + ACTIONS(6895), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4286), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, + [176695] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7574), 4, + ACTIONS(7734), 1, + anon_sym_BSLASH, + ACTIONS(7732), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [176712] = 6, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [179347] = 4, - ACTIONS(7665), 1, - anon_sym_COMMA, - STATE(4286), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7648), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3493), 2, + anon_sym_COMMA, anon_sym_RBRACK, - [179364] = 6, - ACTIONS(6706), 1, + [176733] = 6, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6762), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7668), 2, + ACTIONS(7736), 2, anon_sym_COMMA, anon_sym_RBRACK, - [179385] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7670), 6, - sym__newline, - anon_sym_COLON, - anon_sym_except, - anon_sym_with, - anon_sym_nogil, - anon_sym_noexcept, - [179398] = 7, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(7544), 1, - anon_sym_LPAREN, - ACTIONS(7672), 1, + [176754] = 7, + ACTIONS(7738), 1, + anon_sym_COMMA, + ACTIONS(7740), 1, + anon_sym_as, + ACTIONS(7742), 1, + anon_sym_if, + ACTIONS(7744), 1, anon_sym_COLON, - ACTIONS(7674), 1, - sym__newline, - STATE(1105), 1, - sym_external_definition, - STATE(4775), 1, - sym_argument_list, + STATE(4543), 1, + aux_sym_case_clause_repeat1, + STATE(5641), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179421] = 6, - ACTIONS(7655), 1, - anon_sym_DOT, - ACTIONS(7657), 1, - anon_sym_COLON, - ACTIONS(7659), 1, - anon_sym_PIPE, - ACTIONS(7678), 1, - anon_sym_EQ, - ACTIONS(3), 2, + [176777] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7676), 2, - sym__newline, - anon_sym_SEMI, - [179442] = 4, - ACTIONS(7680), 1, - anon_sym_COMMA, - STATE(4294), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, + ACTIONS(7748), 1, + anon_sym_BSLASH, + ACTIONS(7746), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [176794] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7574), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [179459] = 6, - ACTIONS(7250), 1, + ACTIONS(7752), 1, + anon_sym_BSLASH, + ACTIONS(7750), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [176811] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(7204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3925), 2, + ACTIONS(7686), 2, anon_sym_RPAREN, anon_sym_COMMA, - [179480] = 6, - ACTIONS(6706), 1, + [176832] = 6, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6762), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3409), 2, + ACTIONS(7754), 2, anon_sym_COMMA, anon_sym_RBRACK, - [179501] = 4, - ACTIONS(7682), 1, - anon_sym_COMMA, - STATE(4294), 1, - aux_sym_for_in_clause_repeat1, + [176853] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7648), 4, + ACTIONS(6654), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [176866] = 6, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [179518] = 4, - ACTIONS(7685), 1, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4037), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4257), 1, - aux_sym__patterns_repeat1, + [176887] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7758), 1, + anon_sym_BSLASH, + ACTIONS(7756), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [176904] = 4, + ACTIONS(7760), 1, + anon_sym_COMMA, + STATE(4394), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2821), 4, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(7762), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [179535] = 7, - ACTIONS(7510), 1, - anon_sym_DOT, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7518), 1, - anon_sym_PIPE, - ACTIONS(7687), 1, + [176921] = 4, + ACTIONS(7764), 1, anon_sym_COMMA, - ACTIONS(7689), 1, - anon_sym_RBRACK, - STATE(4799), 1, - aux_sym_type_parameter_repeat1, + STATE(4263), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179558] = 6, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(7766), 4, anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [176938] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7550), 2, + ACTIONS(7768), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7190), 4, anon_sym_COMMA, - anon_sym_COLON, - [179579] = 7, - ACTIONS(6850), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [176953] = 7, + ACTIONS(6966), 1, anon_sym_LBRACK, - ACTIONS(7544), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7691), 1, + ACTIONS(7770), 1, anon_sym_COLON, - ACTIONS(7693), 1, + ACTIONS(7772), 1, sym__newline, - STATE(515), 1, + STATE(1095), 1, sym_external_definition, - STATE(5083), 1, + STATE(4813), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179602] = 6, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, + [176976] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7695), 2, + ACTIONS(7774), 6, sym__newline, - anon_sym_COMMA, - [179623] = 6, - ACTIONS(6706), 1, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [176989] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6710), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(6271), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6775), 2, + ACTIONS(7776), 2, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACK, - [179644] = 6, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, + [177010] = 4, + ACTIONS(7780), 1, + anon_sym_COMMA, + STATE(4340), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7697), 2, - sym__newline, - anon_sym_COMMA, - [179665] = 4, - ACTIONS(7701), 1, + ACTIONS(7778), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [177027] = 7, + ACTIONS(6916), 1, anon_sym_LBRACK, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7782), 1, + anon_sym_COLON, + ACTIONS(7784), 1, + sym__newline, + STATE(518), 1, + sym_external_definition, + STATE(5133), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4302), 2, - sym_type_index, - aux_sym_cvar_decl_repeat1, - ACTIONS(7699), 3, - sym__newline, - anon_sym_COMMA, - anon_sym_EQ, - [179682] = 2, + [177050] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7704), 6, + ACTIONS(7786), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [179695] = 2, + [177063] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7706), 6, + ACTIONS(6226), 6, sym__newline, anon_sym_COLON, anon_sym_except, anon_sym_with, anon_sym_nogil, anon_sym_noexcept, - [179708] = 7, - ACTIONS(6850), 1, - anon_sym_LBRACK, - ACTIONS(7544), 1, - anon_sym_LPAREN, - ACTIONS(7708), 1, - anon_sym_COLON, - ACTIONS(7710), 1, - sym__newline, - STATE(512), 1, - sym_external_definition, - STATE(5074), 1, - sym_argument_list, + [177076] = 4, + ACTIONS(7788), 1, + anon_sym_COMMA, + STATE(4340), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [179731] = 6, - ACTIONS(7444), 1, + ACTIONS(7599), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [177093] = 6, + ACTIONS(7458), 1, anon_sym_as, - ACTIONS(7446), 1, + ACTIONS(7460), 1, anon_sym_if, - ACTIONS(7448), 1, + ACTIONS(7462), 1, anon_sym_and, - ACTIONS(7450), 1, + ACTIONS(7464), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7712), 2, + ACTIONS(7619), 2, anon_sym_COMMA, anon_sym_RBRACE, - [179752] = 6, - ACTIONS(7444), 1, - anon_sym_as, - ACTIONS(7446), 1, - anon_sym_if, - ACTIONS(7448), 1, - anon_sym_and, - ACTIONS(7450), 1, - anon_sym_or, + [177114] = 4, + ACTIONS(7791), 1, + anon_sym_COMMA, + STATE(4393), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6896), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [179773] = 6, - ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, + ACTIONS(7645), 4, + anon_sym_RPAREN, anon_sym_if, - ACTIONS(6710), 1, + anon_sym_async, + anon_sym_for, + [177131] = 4, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6712), 1, + ACTIONS(7204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7621), 2, + ACTIONS(4789), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [179794] = 6, - ACTIONS(6634), 1, anon_sym_as, - ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, + [177148] = 4, + ACTIONS(7793), 1, + anon_sym_COMMA, + STATE(4363), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7714), 2, - anon_sym_COMMA, + ACTIONS(3247), 4, anon_sym_COLON, - [179815] = 2, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [177165] = 4, + ACTIONS(7795), 1, + anon_sym_COMMA, + STATE(4365), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5706), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(7762), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [177182] = 4, + ACTIONS(7797), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [179828] = 6, - ACTIONS(4955), 1, - anon_sym_STAR_STAR, - ACTIONS(7716), 1, - sym_identifier, - ACTIONS(7718), 1, - anon_sym_LPAREN, - ACTIONS(7720), 1, - anon_sym_STAR, + STATE(4368), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4571), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - [179849] = 6, - ACTIONS(7250), 1, + ACTIONS(7766), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [177199] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(7204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3931), 2, + ACTIONS(7799), 2, anon_sym_RPAREN, anon_sym_COMMA, - [179870] = 6, - ACTIONS(6157), 1, + [177220] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(7204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7722), 2, - sym__newline, + ACTIONS(7617), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [179891] = 2, + [177241] = 4, + ACTIONS(7690), 1, + anon_sym_PIPE, + STATE(4299), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3949), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(7801), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [179904] = 2, + [177258] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7724), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(7727), 2, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [179917] = 6, - ACTIONS(5089), 1, - anon_sym_STAR_STAR, - ACTIONS(7718), 1, - anon_sym_LPAREN, - ACTIONS(7726), 1, - sym_identifier, - ACTIONS(7728), 1, - anon_sym_STAR, + [177279] = 3, + ACTIONS(7202), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(4655), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - [179938] = 4, - ACTIONS(3797), 1, + ACTIONS(4714), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_or, + [177294] = 4, + ACTIONS(3901), 1, anon_sym_DOT, - STATE(4326), 1, + STATE(3434), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6632), 4, + ACTIONS(6724), 4, sym__newline, anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - [179955] = 6, - ACTIONS(7250), 1, + [177311] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6710), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [179976] = 7, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(7595), 1, - anon_sym_as, - ACTIONS(7730), 1, + ACTIONS(7799), 2, anon_sym_COMMA, - ACTIONS(7732), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [179999] = 6, - ACTIONS(7250), 1, + [177332] = 6, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6762), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7712), 2, - anon_sym_RPAREN, + ACTIONS(6895), 2, anon_sym_COMMA, - [180020] = 6, - ACTIONS(7250), 1, + anon_sym_RBRACK, + [177353] = 6, + ACTIONS(6756), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6758), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6762), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7714), 2, - anon_sym_RPAREN, + ACTIONS(3509), 2, anon_sym_COMMA, - [180041] = 7, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, - anon_sym_LBRACK, - ACTIONS(7734), 1, - sym_identifier, - STATE(1362), 1, - sym_c_function_definition, - STATE(3968), 1, - sym_c_parameters, - STATE(5330), 1, - sym_template_params, + anon_sym_RBRACK, + [177374] = 4, + ACTIONS(7690), 1, + anon_sym_PIPE, + STATE(4299), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180064] = 5, - ACTIONS(7254), 1, + ACTIONS(7803), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [177391] = 6, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6762), 1, anon_sym_or, - ACTIONS(7736), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 3, - anon_sym_RPAREN, + ACTIONS(7184), 2, anon_sym_COMMA, - anon_sym_if, - [180083] = 4, - ACTIONS(7254), 1, - anon_sym_and, - ACTIONS(7256), 1, - anon_sym_or, + anon_sym_RBRACK, + [177412] = 7, + ACTIONS(7586), 1, + anon_sym_DOT, + ACTIONS(7590), 1, + anon_sym_COLON, + ACTIONS(7594), 1, + anon_sym_PIPE, + ACTIONS(7805), 1, + anon_sym_COMMA, + ACTIONS(7807), 1, + anon_sym_RBRACK, + STATE(5204), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 4, - anon_sym_RPAREN, + [177435] = 4, + ACTIONS(7809), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - [180100] = 3, - ACTIONS(7254), 1, - anon_sym_and, + STATE(4346), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4654), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(7645), 4, anon_sym_if, - anon_sym_or, - [180115] = 4, - ACTIONS(3797), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [177452] = 7, + ACTIONS(6966), 1, + anon_sym_LBRACK, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7811), 1, + anon_sym_COLON, + ACTIONS(7813), 1, + sym__newline, + STATE(1157), 1, + sym_external_definition, + STATE(4934), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177475] = 4, + ACTIONS(3901), 1, anon_sym_DOT, - STATE(3384), 1, + STATE(4352), 1, aux_sym_class_definition_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6628), 4, + ACTIONS(6722), 4, sym__newline, anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - [180132] = 4, - ACTIONS(3), 1, + [177492] = 7, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(7815), 1, + sym_identifier, + STATE(2960), 1, + sym_c_function_definition, + STATE(4072), 1, + sym_c_parameters, + STATE(5338), 1, + sym_template_params, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7741), 1, - anon_sym_BSLASH, - ACTIONS(7739), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [180149] = 6, - ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, - anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, + [177515] = 4, + ACTIONS(7817), 1, + anon_sym_COMMA, + STATE(4363), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [180170] = 7, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(7544), 1, - anon_sym_LPAREN, - ACTIONS(7743), 1, + ACTIONS(6895), 4, anon_sym_COLON, - ACTIONS(7745), 1, - sym__newline, - STATE(1115), 1, - sym_external_definition, - STATE(4787), 1, - sym_argument_list, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [177532] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180193] = 7, - ACTIONS(7510), 1, + ACTIONS(7820), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(7514), 1, anon_sym_COLON, - ACTIONS(7518), 1, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7747), 1, - anon_sym_COMMA, - ACTIONS(7749), 1, - anon_sym_RBRACK, - STATE(4731), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [180216] = 4, - ACTIONS(7751), 1, + [177545] = 4, + ACTIONS(7822), 1, anon_sym_COMMA, - STATE(4291), 1, + STATE(4368), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7605), 4, + ACTIONS(7778), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [180233] = 4, - ACTIONS(7753), 1, - anon_sym_COMMA, - STATE(4294), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACK, + [177562] = 3, + STATE(4299), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7609), 4, + ACTIONS(7824), 5, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [180250] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_PIPE, + [177577] = 6, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7757), 1, - anon_sym_BSLASH, - ACTIONS(7755), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [180267] = 4, - ACTIONS(7759), 1, + ACTIONS(3465), 2, anon_sym_COMMA, - STATE(4253), 1, + anon_sym_RBRACK, + [177598] = 4, + ACTIONS(7826), 1, + anon_sym_COMMA, + STATE(4368), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7605), 4, - anon_sym_RPAREN, + ACTIONS(7599), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [180284] = 6, - ACTIONS(7444), 1, + anon_sym_RBRACK, + [177615] = 4, + ACTIONS(7829), 1, + anon_sym_PIPE, + STATE(4369), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7824), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7446), 1, anon_sym_if, - ACTIONS(7448), 1, - anon_sym_and, - ACTIONS(7450), 1, - anon_sym_or, + anon_sym_COLON, + [177632] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7621), 2, + ACTIONS(7832), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7107), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [177647] = 4, + ACTIONS(7834), 1, anon_sym_COMMA, + STATE(4317), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2799), 4, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - [180305] = 6, - ACTIONS(7250), 1, + sym_type_conversion, + [177664] = 6, + ACTIONS(7458), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(7460), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(7462), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(7464), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7072), 2, - anon_sym_RPAREN, + ACTIONS(7613), 2, anon_sym_COMMA, - [180326] = 4, - ACTIONS(7761), 1, - anon_sym_COMMA, - STATE(4278), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACE, + [177685] = 6, + ACTIONS(6265), 1, + anon_sym_as, + ACTIONS(6267), 1, + anon_sym_if, + ACTIONS(6269), 1, + anon_sym_and, + ACTIONS(6271), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7609), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [180343] = 6, - ACTIONS(7250), 1, + ACTIONS(7836), 2, + sym__newline, + anon_sym_SEMI, + [177706] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6271), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7556), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [180364] = 2, + ACTIONS(7838), 2, + sym__newline, + anon_sym_SEMI, + [177727] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6090), 6, + ACTIONS(7840), 6, sym__newline, anon_sym_COLON, anon_sym_except, anon_sym_with, anon_sym_nogil, anon_sym_noexcept, - [180377] = 4, - ACTIONS(7763), 1, + [177740] = 6, + ACTIONS(6756), 1, + anon_sym_as, + ACTIONS(6758), 1, + anon_sym_if, + ACTIONS(6760), 1, + anon_sym_and, + ACTIONS(6762), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7619), 2, anon_sym_COMMA, - STATE(4353), 1, - aux_sym_assert_statement_repeat1, + anon_sym_RBRACK, + [177761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 4, + ACTIONS(7842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7107), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [177776] = 5, + ACTIONS(7846), 1, + anon_sym_DOT, + ACTIONS(7848), 1, anon_sym_COLON, + ACTIONS(7850), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7844), 3, + sym__newline, + anon_sym_SEMI, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [180394] = 6, - ACTIONS(7250), 1, + [177795] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6710), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4658), 2, + ACTIONS(7702), 2, + anon_sym_COMMA, + anon_sym_COLON, + [177816] = 6, + ACTIONS(7846), 1, + anon_sym_DOT, + ACTIONS(7848), 1, + anon_sym_COLON, + ACTIONS(7850), 1, + anon_sym_PIPE, + ACTIONS(7854), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7852), 2, + sym__newline, + anon_sym_SEMI, + [177837] = 7, + ACTIONS(6768), 1, + anon_sym_LPAREN, + ACTIONS(6774), 1, + anon_sym_LBRACK, + ACTIONS(7856), 1, + sym_identifier, + STATE(544), 1, + sym_c_function_definition, + STATE(4051), 1, + sym_c_parameters, + STATE(5390), 1, + sym_template_params, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [177860] = 6, + ACTIONS(5157), 1, + anon_sym_STAR_STAR, + ACTIONS(7657), 1, + anon_sym_LPAREN, + ACTIONS(7858), 1, + sym_identifier, + ACTIONS(7860), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(4630), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + [177881] = 6, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, + anon_sym_if, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7613), 2, anon_sym_RPAREN, anon_sym_COMMA, - [180415] = 6, - ACTIONS(7444), 1, + [177902] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7862), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7190), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(7446), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [177917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(7866), 1, + anon_sym_BSLASH, + ACTIONS(7864), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [177934] = 6, + ACTIONS(7458), 1, + anon_sym_as, + ACTIONS(7460), 1, anon_sym_if, - ACTIONS(7448), 1, + ACTIONS(7462), 1, anon_sym_and, - ACTIONS(7450), 1, + ACTIONS(7464), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 2, + ACTIONS(4837), 2, anon_sym_COMMA, anon_sym_RBRACE, - [180436] = 5, - ACTIONS(7448), 1, + [177955] = 5, + ACTIONS(7462), 1, anon_sym_and, - ACTIONS(7450), 1, + ACTIONS(7464), 1, anon_sym_or, - ACTIONS(7765), 1, + ACTIONS(7868), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4643), 3, + ACTIONS(4741), 3, anon_sym_COMMA, anon_sym_if, anon_sym_RBRACE, - [180455] = 4, - ACTIONS(7448), 1, + [177974] = 4, + ACTIONS(7462), 1, anon_sym_and, - ACTIONS(7450), 1, + ACTIONS(7464), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 4, + ACTIONS(4789), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_RBRACE, - [180472] = 3, - ACTIONS(7448), 1, + [177991] = 3, + ACTIONS(7462), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4654), 5, + ACTIONS(4714), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_RBRACE, anon_sym_or, - [180487] = 6, - ACTIONS(7444), 1, + [178006] = 6, + ACTIONS(7458), 1, anon_sym_as, - ACTIONS(7446), 1, + ACTIONS(7460), 1, anon_sym_if, - ACTIONS(7448), 1, + ACTIONS(7462), 1, anon_sym_and, - ACTIONS(7450), 1, + ACTIONS(7464), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4658), 2, + ACTIONS(4793), 2, anon_sym_COMMA, anon_sym_RBRACE, - [180508] = 6, - ACTIONS(7444), 1, + [178027] = 4, + ACTIONS(7871), 1, + anon_sym_COMMA, + STATE(4336), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7762), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [178044] = 6, + ACTIONS(7458), 1, anon_sym_as, - ACTIONS(7446), 1, + ACTIONS(7460), 1, anon_sym_if, - ACTIONS(7448), 1, + ACTIONS(7462), 1, anon_sym_and, - ACTIONS(7450), 1, + ACTIONS(7464), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4662), 2, + ACTIONS(4829), 2, anon_sym_COMMA, anon_sym_RBRACE, - [180529] = 6, - ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, - anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, + [178065] = 4, + ACTIONS(7873), 1, + anon_sym_COMMA, + STATE(4340), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7072), 2, + ACTIONS(7766), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [178082] = 4, + ACTIONS(7875), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [180550] = 6, - ACTIONS(7250), 1, + STATE(4263), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7778), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [178099] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(7204), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7768), 2, + ACTIONS(7877), 2, anon_sym_RPAREN, anon_sym_COMMA, - [180571] = 6, - ACTIONS(6706), 1, - anon_sym_as, - ACTIONS(6708), 1, - anon_sym_if, - ACTIONS(6710), 1, - anon_sym_and, - ACTIONS(6712), 1, - anon_sym_or, + [178120] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7770), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [180592] = 6, - ACTIONS(7250), 1, + ACTIONS(7879), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [178133] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7881), 6, + sym__newline, + anon_sym_COLON, + anon_sym_except, + anon_sym_with, + anon_sym_nogil, + anon_sym_noexcept, + [178146] = 6, + ACTIONS(7458), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(7460), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(7462), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(7464), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7772), 2, - anon_sym_RPAREN, + ACTIONS(6895), 2, anon_sym_COMMA, - [180613] = 7, - ACTIONS(6677), 1, - anon_sym_LPAREN, - ACTIONS(6683), 1, + anon_sym_RBRACE, + [178167] = 7, + ACTIONS(6994), 1, anon_sym_LBRACK, - ACTIONS(7774), 1, - sym_identifier, - STATE(535), 1, - sym_c_function_definition, - STATE(4033), 1, - sym_c_parameters, - STATE(5334), 1, - sym_template_params, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7883), 1, + anon_sym_COLON, + ACTIONS(7885), 1, + sym__newline, + STATE(2952), 1, + sym_external_definition, + STATE(5163), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180636] = 4, - ACTIONS(7776), 1, - anon_sym_COMMA, - STATE(4353), 1, - aux_sym_assert_statement_repeat1, + [178190] = 4, + ACTIONS(7887), 1, + anon_sym_PIPE, + STATE(4567), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6775), 4, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(7801), 3, + anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACE, - sym_type_conversion, - [180653] = 6, - ACTIONS(7444), 1, + [178206] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(7446), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(7448), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7450), 1, + ACTIONS(7204), 1, anon_sym_or, + ACTIONS(7889), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6775), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [180674] = 4, - ACTIONS(3), 1, + [178226] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(7781), 1, - anon_sym_BSLASH, - ACTIONS(7779), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [180691] = 5, - ACTIONS(7655), 1, + ACTIONS(7666), 5, anon_sym_DOT, - ACTIONS(7785), 1, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(7787), 1, + anon_sym_RBRACK, anon_sym_PIPE, + [178238] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(7891), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7783), 2, - sym__newline, - anon_sym_SEMI, - [180709] = 6, - ACTIONS(7789), 1, - anon_sym_pass, - ACTIONS(7791), 1, - sym__newline, - ACTIONS(7793), 1, - sym__indent, - STATE(668), 1, - sym_pass_statement, - STATE(706), 1, - sym_extern_suite, + [178258] = 6, + ACTIONS(7252), 1, + anon_sym_COMMA, + ACTIONS(7893), 1, + anon_sym_LPAREN, + ACTIONS(7895), 1, + anon_sym_EQ, + ACTIONS(7897), 1, + anon_sym_RBRACK, + STATE(5175), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180729] = 2, + [178278] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7795), 5, + ACTIONS(7899), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [180741] = 2, + [178290] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7524), 5, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [180753] = 5, - ACTIONS(7510), 1, - anon_sym_DOT, - ACTIONS(7514), 1, + ACTIONS(7901), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(7518), 1, anon_sym_PIPE, + [178302] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7797), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [180771] = 5, - ACTIONS(7801), 1, + ACTIONS(7903), 5, anon_sym_COMMA, - ACTIONS(7803), 1, anon_sym_as, - STATE(4644), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7799), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [178314] = 6, + ACTIONS(7905), 1, + anon_sym_pass, + ACTIONS(7907), 1, sym__newline, - anon_sym_SEMI, - [180789] = 4, - ACTIONS(7807), 1, - anon_sym_EQ, + ACTIONS(7909), 1, + sym__indent, + STATE(3063), 1, + sym_pass_statement, + STATE(3157), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7805), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7809), 2, - anon_sym_not, - anon_sym_or, - [180805] = 6, - ACTIONS(7789), 1, + [178334] = 6, + ACTIONS(7905), 1, anon_sym_pass, - ACTIONS(7791), 1, + ACTIONS(7911), 1, sym__newline, - ACTIONS(7793), 1, + ACTIONS(7913), 1, sym__indent, - STATE(668), 1, + STATE(3054), 1, sym_pass_statement, - STATE(697), 1, + STATE(3107), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180825] = 6, - ACTIONS(6634), 1, + [178354] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7915), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(7811), 1, anon_sym_COLON, + anon_sym_PIPE, + [178366] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180845] = 2, + ACTIONS(7917), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [178378] = 5, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(7921), 1, + anon_sym_EQ, + STATE(5164), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7813), 5, + ACTIONS(7919), 2, + sym__newline, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [180857] = 2, + [178396] = 6, + ACTIONS(7923), 1, + anon_sym_COLON, + ACTIONS(7925), 1, + anon_sym_LBRACK, + ACTIONS(7927), 1, + anon_sym_nogil, + ACTIONS(7929), 1, + sym__newline, + STATE(5089), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7648), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [180869] = 6, - ACTIONS(7250), 1, + [178416] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(7204), 1, anon_sym_or, - ACTIONS(7815), 1, + ACTIONS(7931), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180889] = 6, - ACTIONS(6634), 1, + [178436] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7817), 1, + ACTIONS(7933), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [180909] = 4, - ACTIONS(7819), 1, - anon_sym_EQ, + [178456] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7805), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7821), 2, - anon_sym_not, - anon_sym_or, - [180925] = 4, - ACTIONS(7823), 1, + ACTIONS(7786), 5, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - STATE(4485), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7502), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [180941] = 4, - ACTIONS(7825), 1, - anon_sym_COMMA, - STATE(4426), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3143), 3, + [178468] = 6, + ACTIONS(6948), 1, + anon_sym_COLON, + ACTIONS(6952), 1, + anon_sym_with, + ACTIONS(6954), 1, + anon_sym_nogil, + ACTIONS(6958), 1, sym__newline, - anon_sym_SEMI, - anon_sym_from, - [180957] = 3, - STATE(4485), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7570), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [180971] = 4, - ACTIONS(7827), 1, - anon_sym_PIPE, - STATE(4373), 1, - aux_sym_union_pattern_repeat1, + STATE(5496), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7570), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [180987] = 2, + [178488] = 6, + ACTIONS(7935), 1, + anon_sym_pass, + ACTIONS(7937), 1, + sym__newline, + ACTIONS(7939), 1, + sym__indent, + STATE(1292), 1, + sym_extern_suite, + STATE(1425), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7704), 5, + [178508] = 4, + ACTIONS(7943), 1, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [180999] = 6, - ACTIONS(6157), 1, - anon_sym_as, - ACTIONS(6159), 1, - anon_sym_if, - ACTIONS(6161), 1, - anon_sym_and, - ACTIONS(6163), 1, - anon_sym_or, - ACTIONS(7830), 1, - sym__newline, + STATE(4419), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181019] = 6, - ACTIONS(7250), 1, - anon_sym_as, - ACTIONS(7252), 1, - anon_sym_if, - ACTIONS(7254), 1, - anon_sym_and, - ACTIONS(7256), 1, - anon_sym_or, - ACTIONS(7832), 1, - anon_sym_RPAREN, + ACTIONS(7941), 3, + anon_sym_import, + anon_sym_cimport, + sym_identifier, + [178524] = 6, + ACTIONS(7946), 1, + anon_sym_pass, + ACTIONS(7948), 1, + sym__newline, + ACTIONS(7950), 1, + sym__indent, + STATE(685), 1, + sym_pass_statement, + STATE(696), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181039] = 6, - ACTIONS(7834), 1, + [178544] = 6, + ACTIONS(7946), 1, anon_sym_pass, - ACTIONS(7836), 1, + ACTIONS(7948), 1, sym__newline, - ACTIONS(7838), 1, + ACTIONS(7950), 1, sym__indent, - STATE(1311), 1, + STATE(685), 1, sym_pass_statement, - STATE(1410), 1, - sym_extern_suite, + STATE(713), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181059] = 6, - ACTIONS(7250), 1, + [178564] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(7204), 1, anon_sym_or, - ACTIONS(7840), 1, + ACTIONS(7952), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181079] = 6, - ACTIONS(6634), 1, + [178584] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7842), 1, + ACTIONS(7954), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181099] = 2, - ACTIONS(3), 2, + [178604] = 6, + ACTIONS(7956), 1, + anon_sym_LBRACE, + ACTIONS(7958), 1, + anon_sym_RBRACE, + ACTIONS(7960), 1, + aux_sym_format_specifier_token1, + STATE(4445), 1, + aux_sym_format_specifier_repeat1, + STATE(4802), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7844), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACE, - [181111] = 4, - ACTIONS(7823), 1, - anon_sym_PIPE, - STATE(4485), 1, - aux_sym_union_pattern_repeat1, + [178624] = 4, + ACTIONS(7964), 1, + anon_sym_DOT, + STATE(4419), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7629), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7962), 3, + anon_sym_import, + anon_sym_cimport, + sym_identifier, + [178640] = 6, + ACTIONS(6704), 1, anon_sym_as, - [181127] = 2, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(7966), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7642), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [181139] = 6, - ACTIONS(6811), 1, + [178660] = 6, + ACTIONS(6952), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6954), 1, anon_sym_nogil, - ACTIONS(7846), 1, + ACTIONS(7146), 1, anon_sym_COLON, - ACTIONS(7848), 1, + ACTIONS(7148), 1, sym__newline, - STATE(5456), 1, + STATE(5466), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181159] = 5, - ACTIONS(7510), 1, - anon_sym_DOT, - ACTIONS(7514), 1, + [178680] = 6, + ACTIONS(6952), 1, + anon_sym_with, + ACTIONS(6954), 1, + anon_sym_nogil, + ACTIONS(7968), 1, anon_sym_COLON, - ACTIONS(7518), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7653), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [181177] = 2, + ACTIONS(7970), 1, + sym__newline, + STATE(5391), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7482), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [181189] = 6, - ACTIONS(7850), 1, + [178700] = 6, + ACTIONS(7905), 1, anon_sym_pass, - ACTIONS(7852), 1, + ACTIONS(7911), 1, sym__newline, - ACTIONS(7854), 1, + ACTIONS(7913), 1, sym__indent, - STATE(2993), 1, + STATE(3054), 1, sym_pass_statement, - STATE(3083), 1, + STATE(3057), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181209] = 6, - ACTIONS(7108), 1, - anon_sym_COMMA, - ACTIONS(7856), 1, - anon_sym_LPAREN, - ACTIONS(7858), 1, - anon_sym_EQ, - ACTIONS(7860), 1, - anon_sym_RBRACK, - STATE(5111), 1, - aux_sym_type_index_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181229] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7813), 5, - anon_sym_COMMA, + [178720] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [181241] = 2, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(7972), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7648), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [181253] = 6, - ACTIONS(7834), 1, + [178740] = 6, + ACTIONS(7946), 1, anon_sym_pass, - ACTIONS(7862), 1, + ACTIONS(7948), 1, sym__newline, - ACTIONS(7864), 1, + ACTIONS(7950), 1, sym__indent, - STATE(1347), 1, + STATE(685), 1, sym_pass_statement, - STATE(1352), 1, + STATE(703), 1, sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181273] = 6, - ACTIONS(7102), 1, - sym_identifier, - ACTIONS(7866), 1, - anon_sym_LPAREN, - STATE(4361), 1, - sym_dotted_name, - STATE(4576), 1, - sym_aliased_import, - STATE(5390), 1, - sym__import_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181293] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5736), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [181305] = 2, + [178760] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5688), 5, + ACTIONS(3920), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [181317] = 6, - ACTIONS(7250), 1, + [178772] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(7868), 1, - anon_sym_RPAREN, + ACTIONS(7974), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181337] = 6, - ACTIONS(6634), 1, + [178792] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7870), 1, + ACTIONS(7976), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181357] = 5, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(7874), 1, - anon_sym_EQ, - STATE(5081), 1, - sym_string, + [178812] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7872), 2, - sym__newline, + ACTIONS(7978), 5, + anon_sym_RPAREN, anon_sym_COMMA, - [181375] = 6, - ACTIONS(6811), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_nogil, - ACTIONS(7008), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [178824] = 5, + ACTIONS(7586), 1, + anon_sym_DOT, + ACTIONS(7590), 1, anon_sym_COLON, - ACTIONS(7010), 1, - sym__newline, - STATE(5430), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181395] = 4, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, + ACTIONS(7594), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4650), 3, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [181411] = 2, + ACTIONS(7980), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [178842] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7876), 5, + ACTIONS(7982), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [181423] = 6, - ACTIONS(7789), 1, - anon_sym_pass, - ACTIONS(7878), 1, - sym__newline, - ACTIONS(7880), 1, - sym__indent, - STATE(677), 1, - sym_pass_statement, - STATE(695), 1, - sym_struct_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181443] = 4, - ACTIONS(7882), 1, - anon_sym_PIPE, - STATE(4419), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7661), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [181459] = 6, - ACTIONS(6634), 1, + [178854] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7884), 1, - anon_sym_COLON, + ACTIONS(7984), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181479] = 6, - ACTIONS(7789), 1, - anon_sym_pass, - ACTIONS(7791), 1, + [178874] = 6, + ACTIONS(7925), 1, + anon_sym_LBRACK, + ACTIONS(7986), 1, + anon_sym_COLON, + ACTIONS(7988), 1, + anon_sym_nogil, + ACTIONS(7990), 1, sym__newline, - ACTIONS(7793), 1, - sym__indent, - STATE(668), 1, - sym_pass_statement, - STATE(712), 1, - sym_extern_suite, + STATE(5183), 1, + sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181499] = 4, - ACTIONS(7888), 1, - anon_sym_DOT, - STATE(4475), 1, - aux_sym_import_prefix_repeat1, + [178894] = 6, + ACTIONS(7992), 1, + anon_sym_COLON, + ACTIONS(7994), 1, + anon_sym_EQ, + ACTIONS(7996), 1, + anon_sym_RBRACE, + ACTIONS(7998), 1, + sym_type_conversion, + STATE(5852), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7886), 3, - anon_sym_import, - anon_sym_cimport, - sym_identifier, - [181515] = 2, + [178914] = 4, + ACTIONS(8002), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7890), 5, + ACTIONS(8000), 2, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [181527] = 6, - ACTIONS(7250), 1, + anon_sym_COLON, + ACTIONS(8004), 2, + anon_sym_not, + anon_sym_or, + [178930] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7892), 1, - anon_sym_RPAREN, + ACTIONS(8006), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181547] = 6, - ACTIONS(6634), 1, + [178950] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7894), 1, + ACTIONS(8008), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181567] = 6, - ACTIONS(7789), 1, - anon_sym_pass, - ACTIONS(7878), 1, - sym__newline, - ACTIONS(7880), 1, - sym__indent, - STATE(677), 1, - sym_pass_statement, - STATE(678), 1, - sym_struct_suite, + [178970] = 4, + ACTIONS(8010), 1, + anon_sym_COMMA, + STATE(4444), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181587] = 5, - ACTIONS(7896), 1, - anon_sym_COMMA, - ACTIONS(7898), 1, + ACTIONS(6895), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [178986] = 6, + ACTIONS(8013), 1, + anon_sym_LBRACE, + ACTIONS(8016), 1, anon_sym_RBRACE, - STATE(4748), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, + ACTIONS(8018), 1, + aux_sym_format_specifier_token1, + STATE(4445), 1, + aux_sym_format_specifier_repeat1, + STATE(4802), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(6818), 2, - anon_sym_COLON, + [179006] = 4, + ACTIONS(8021), 1, anon_sym_PIPE, - [181605] = 2, + STATE(4503), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7688), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [179022] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3816), 5, + ACTIONS(6751), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [181617] = 6, - ACTIONS(7834), 1, + [179034] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8023), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179054] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7694), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [179066] = 6, + ACTIONS(7935), 1, anon_sym_pass, - ACTIONS(7836), 1, + ACTIONS(7937), 1, sym__newline, - ACTIONS(7838), 1, + ACTIONS(7939), 1, sym__indent, - STATE(1295), 1, + STATE(1353), 1, sym_extern_suite, - STATE(1311), 1, + STATE(1425), 1, sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181637] = 4, - ACTIONS(7882), 1, - anon_sym_PIPE, - STATE(4401), 1, - aux_sym_union_pattern_repeat1, + [179086] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8025), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7502), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [181653] = 6, - ACTIONS(7850), 1, + [179106] = 6, + ACTIONS(7905), 1, anon_sym_pass, - ACTIONS(7900), 1, + ACTIONS(7907), 1, sym__newline, - ACTIONS(7902), 1, + ACTIONS(7909), 1, sym__indent, - STATE(3007), 1, + STATE(3063), 1, sym_pass_statement, - STATE(3059), 1, + STATE(3064), 1, sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181673] = 5, - ACTIONS(7904), 1, - anon_sym_COMMA, - ACTIONS(7906), 1, - anon_sym_RBRACE, - STATE(5020), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6818), 2, - anon_sym_COLON, - anon_sym_PIPE, - [181691] = 6, - ACTIONS(6634), 1, + [179126] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7908), 1, + ACTIONS(8027), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181711] = 3, - STATE(4401), 1, - aux_sym_union_pattern_repeat1, + [179146] = 5, + ACTIONS(8029), 1, + anon_sym_COMMA, + ACTIONS(8031), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7570), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [181725] = 6, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(7910), 1, + ACTIONS(7107), 2, anon_sym_COLON, + anon_sym_PIPE, + [179164] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181745] = 6, - ACTIONS(6634), 1, + ACTIONS(8033), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [179176] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(7912), 1, - anon_sym_else, + ACTIONS(8035), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181765] = 4, - ACTIONS(7914), 1, + [179196] = 4, + ACTIONS(8037), 1, anon_sym_PIPE, - STATE(4419), 1, + STATE(4565), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7570), 3, + ACTIONS(7688), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [181781] = 6, - ACTIONS(7917), 1, + [179212] = 6, + ACTIONS(6952), 1, + anon_sym_with, + ACTIONS(6954), 1, + anon_sym_nogil, + ACTIONS(8039), 1, anon_sym_COLON, - ACTIONS(7919), 1, - anon_sym_EQ, - ACTIONS(7921), 1, - anon_sym_RBRACE, - ACTIONS(7923), 1, - sym_type_conversion, - STATE(5634), 1, - sym_format_specifier, + ACTIONS(8041), 1, + sym__newline, + STATE(5446), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181801] = 6, - ACTIONS(6634), 1, + [179232] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7925), 1, + ACTIONS(8043), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181821] = 2, + [179252] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7927), 5, + ACTIONS(8045), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [181833] = 6, - ACTIONS(6799), 1, - anon_sym_COLON, - ACTIONS(6809), 1, - sym__newline, - ACTIONS(6811), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_nogil, - STATE(5380), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181853] = 6, - ACTIONS(6634), 1, + [179264] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7929), 1, - anon_sym_else, + ACTIONS(8047), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181873] = 2, + [179284] = 4, + ACTIONS(8049), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5748), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [181885] = 4, - ACTIONS(7931), 1, + ACTIONS(8000), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4426), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(8051), 2, + anon_sym_not, + anon_sym_or, + [179300] = 5, + ACTIONS(7416), 1, + sym_identifier, + STATE(4620), 1, + sym_dotted_name, + STATE(5033), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6775), 3, + ACTIONS(8053), 2, sym__newline, anon_sym_SEMI, - anon_sym_from, - [181901] = 6, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(7934), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [181921] = 2, + [179318] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7936), 5, + ACTIONS(8055), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [181933] = 2, + [179330] = 6, + ACTIONS(7935), 1, + anon_sym_pass, + ACTIONS(8057), 1, + sym__newline, + ACTIONS(8059), 1, + sym__indent, + STATE(1188), 1, + sym_pass_statement, + STATE(1373), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7938), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [181945] = 6, - ACTIONS(6634), 1, + [179350] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7940), 1, - anon_sym_else, + ACTIONS(8061), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181965] = 2, + [179370] = 5, + ACTIONS(7416), 1, + sym_identifier, + STATE(4620), 1, + sym_dotted_name, + STATE(5033), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7942), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [181977] = 6, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(7944), 1, - anon_sym_else, + ACTIONS(8063), 2, + sym__newline, + anon_sym_SEMI, + [179388] = 6, + ACTIONS(7935), 1, + anon_sym_pass, + ACTIONS(7937), 1, + sym__newline, + ACTIONS(7939), 1, + sym__indent, + STATE(1343), 1, + sym_extern_suite, + STATE(1425), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [181997] = 2, + [179408] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7813), 5, - anon_sym_RPAREN, + ACTIONS(7978), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [182009] = 6, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, + anon_sym_RBRACK, + [179420] = 6, ACTIONS(7946), 1, - anon_sym_else, + anon_sym_pass, + ACTIONS(8065), 1, + sym__newline, + ACTIONS(8067), 1, + sym__indent, + STATE(676), 1, + sym_pass_statement, + STATE(714), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182029] = 5, - ACTIONS(7948), 1, + [179440] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8069), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [179452] = 5, + ACTIONS(8071), 1, sym_identifier, - ACTIONS(7950), 1, + ACTIONS(8073), 1, anon_sym_COLON, - ACTIONS(7954), 1, + ACTIONS(8077), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7952), 2, + ACTIONS(8075), 2, anon_sym_class, anon_sym_struct, - [182047] = 6, - ACTIONS(7789), 1, + [179470] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8079), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [179482] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5836), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [179494] = 6, + ACTIONS(7935), 1, anon_sym_pass, - ACTIONS(7878), 1, + ACTIONS(8057), 1, sym__newline, - ACTIONS(7880), 1, + ACTIONS(8059), 1, sym__indent, - STATE(677), 1, + STATE(1188), 1, sym_pass_statement, - STATE(705), 1, + STATE(1357), 1, sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182067] = 6, - ACTIONS(6634), 1, + [179514] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8081), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(7956), 1, - anon_sym_else, + anon_sym_COLON, + anon_sym_PIPE, + [179526] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182087] = 6, - ACTIONS(6634), 1, + ACTIONS(8083), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [179538] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7958), 1, + ACTIONS(8085), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182107] = 6, - ACTIONS(7834), 1, - anon_sym_pass, - ACTIONS(7862), 1, + [179558] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8087), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [179570] = 5, + ACTIONS(8089), 1, + sym_identifier, + ACTIONS(8091), 1, + anon_sym_COLON, + ACTIONS(8095), 1, sym__newline, - ACTIONS(7864), 1, - sym__indent, - STATE(1324), 1, - sym_struct_suite, - STATE(1347), 1, - sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182127] = 2, + ACTIONS(8093), 2, + anon_sym_class, + anon_sym_struct, + [179588] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7631), 5, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(5840), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [182139] = 6, - ACTIONS(7789), 1, - anon_sym_pass, - ACTIONS(7878), 1, - sym__newline, - ACTIONS(7880), 1, - sym__indent, - STATE(677), 1, - sym_pass_statement, - STATE(688), 1, - sym_struct_suite, + anon_sym_RBRACE, + sym_type_conversion, + [179600] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8097), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182159] = 6, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, + [179620] = 6, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7960), 1, + ACTIONS(8099), 1, + anon_sym_as, + ACTIONS(8101), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182179] = 2, + [179640] = 5, + ACTIONS(8103), 1, + sym_identifier, + ACTIONS(8105), 1, + anon_sym_COLON, + ACTIONS(8109), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7890), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [182191] = 6, - ACTIONS(6634), 1, + ACTIONS(8107), 2, + anon_sym_class, + anon_sym_struct, + [179658] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7194), 1, + ACTIONS(8111), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182211] = 6, - ACTIONS(6634), 1, + [179678] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(7962), 1, + ACTIONS(8113), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182231] = 6, - ACTIONS(6636), 1, + [179698] = 6, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(7204), 1, anon_sym_or, - ACTIONS(7964), 1, + ACTIONS(8115), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [179718] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(7966), 1, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8117), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182251] = 5, - ACTIONS(7968), 1, - sym_identifier, - ACTIONS(7970), 1, - anon_sym_COLON, - ACTIONS(7974), 1, + [179738] = 6, + ACTIONS(7905), 1, + anon_sym_pass, + ACTIONS(7907), 1, sym__newline, + ACTIONS(7909), 1, + sym__indent, + STATE(3063), 1, + sym_pass_statement, + STATE(3115), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7972), 2, - anon_sym_class, - anon_sym_struct, - [182269] = 5, - ACTIONS(7976), 1, + [179758] = 5, + ACTIONS(7416), 1, sym_identifier, - ACTIONS(7978), 1, - anon_sym_COLON, - ACTIONS(7982), 1, + STATE(4620), 1, + sym_dotted_name, + STATE(5033), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8053), 2, sym__newline, + anon_sym_SEMI, + [179776] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8119), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7980), 2, - anon_sym_class, - anon_sym_struct, - [182287] = 2, + [179796] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7984), 5, + ACTIONS(6654), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [182299] = 6, - ACTIONS(6811), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_nogil, - ACTIONS(7986), 1, - anon_sym_COLON, - ACTIONS(7988), 1, - sym__newline, - STATE(5410), 1, - sym_gil_spec, + [179808] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182319] = 6, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(8121), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(7990), 1, - anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [179820] = 6, + ACTIONS(7252), 1, + anon_sym_COMMA, + ACTIONS(7893), 1, + anon_sym_LPAREN, + ACTIONS(8123), 1, + anon_sym_EQ, + ACTIONS(8125), 1, + anon_sym_RBRACK, + STATE(4883), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182339] = 2, + [179840] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7992), 5, + ACTIONS(7599), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [182351] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [179852] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7994), 5, + ACTIONS(5725), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [179864] = 4, + ACTIONS(8021), 1, anon_sym_PIPE, - [182363] = 6, - ACTIONS(5034), 1, - anon_sym_COLON, - ACTIONS(7617), 1, - anon_sym_if, - ACTIONS(7996), 1, + STATE(4446), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7803), 3, anon_sym_COMMA, - STATE(4619), 1, - aux_sym_case_clause_repeat1, - STATE(5568), 1, - sym_if_clause, + anon_sym_as, + anon_sym_RBRACK, + [179880] = 3, + ACTIONS(8127), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182383] = 6, - ACTIONS(6811), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_nogil, - ACTIONS(7998), 1, - anon_sym_COLON, - ACTIONS(8000), 1, - sym__newline, - STATE(5238), 1, - sym_gil_spec, + ACTIONS(7107), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [179894] = 5, + ACTIONS(8129), 1, + anon_sym_COMMA, + ACTIONS(8131), 1, + anon_sym_RBRACE, + STATE(4903), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182403] = 6, - ACTIONS(7850), 1, + ACTIONS(7107), 2, + anon_sym_COLON, + anon_sym_PIPE, + [179912] = 6, + ACTIONS(7935), 1, anon_sym_pass, - ACTIONS(7852), 1, + ACTIONS(8057), 1, sym__newline, - ACTIONS(7854), 1, + ACTIONS(8059), 1, sym__indent, - STATE(2993), 1, + STATE(1188), 1, sym_pass_statement, - STATE(3051), 1, - sym_extern_suite, + STATE(1196), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182423] = 6, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(7964), 1, - anon_sym_as, - ACTIONS(8002), 1, - anon_sym_COLON, + [179932] = 3, + STATE(4446), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182443] = 6, - ACTIONS(8004), 1, - anon_sym_LBRACE, - ACTIONS(8007), 1, - anon_sym_RBRACE, - ACTIONS(8009), 1, - aux_sym_format_specifier_token1, - STATE(4458), 1, - aux_sym_format_specifier_repeat1, - STATE(4821), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [182463] = 6, - ACTIONS(7834), 1, + ACTIONS(7824), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [179946] = 6, + ACTIONS(7905), 1, anon_sym_pass, - ACTIONS(7862), 1, + ACTIONS(7911), 1, sym__newline, - ACTIONS(7864), 1, + ACTIONS(7913), 1, sym__indent, - STATE(1347), 1, + STATE(3054), 1, sym_pass_statement, - STATE(1376), 1, - sym_struct_suite, + STATE(3083), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182483] = 6, - ACTIONS(7917), 1, - anon_sym_COLON, - ACTIONS(8012), 1, - anon_sym_EQ, - ACTIONS(8014), 1, - anon_sym_RBRACE, - ACTIONS(8016), 1, - sym_type_conversion, - STATE(5638), 1, - sym_format_specifier, + [179966] = 4, + ACTIONS(8133), 1, + anon_sym_PIPE, + STATE(4503), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182503] = 6, - ACTIONS(6634), 1, + ACTIONS(7824), 3, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(8018), 1, - anon_sym_COLON, + anon_sym_RBRACK, + [179982] = 4, + ACTIONS(8021), 1, + anon_sym_PIPE, + STATE(4446), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182523] = 6, - ACTIONS(6811), 1, + ACTIONS(7801), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [179998] = 6, + ACTIONS(6952), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6954), 1, anon_sym_nogil, - ACTIONS(6872), 1, + ACTIONS(8136), 1, anon_sym_COLON, - ACTIONS(6874), 1, + ACTIONS(8138), 1, sym__newline, - STATE(5452), 1, + STATE(5408), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182543] = 2, + [180018] = 4, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8020), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [182555] = 6, - ACTIONS(6634), 1, + ACTIONS(4789), 3, anon_sym_as, - ACTIONS(6636), 1, anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(8022), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [182575] = 6, - ACTIONS(7834), 1, + [180034] = 6, + ACTIONS(7946), 1, anon_sym_pass, - ACTIONS(7836), 1, + ACTIONS(8065), 1, sym__newline, - ACTIONS(7838), 1, + ACTIONS(8067), 1, sym__indent, - STATE(1311), 1, + STATE(676), 1, sym_pass_statement, - STATE(1321), 1, + STATE(720), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182595] = 6, - ACTIONS(7789), 1, + [180054] = 6, + ACTIONS(7935), 1, anon_sym_pass, - ACTIONS(7791), 1, + ACTIONS(7937), 1, sym__newline, - ACTIONS(7793), 1, + ACTIONS(7939), 1, sym__indent, - STATE(668), 1, - sym_pass_statement, - STATE(685), 1, + STATE(1385), 1, sym_extern_suite, + STATE(1425), 1, + sym_pass_statement, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182615] = 2, + [180074] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8024), 5, + ACTIONS(8121), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [182627] = 4, - ACTIONS(8026), 1, - anon_sym_PIPE, - STATE(4491), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7661), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [182643] = 6, - ACTIONS(7850), 1, + anon_sym_async, + anon_sym_for, + [180086] = 6, + ACTIONS(7935), 1, anon_sym_pass, - ACTIONS(7852), 1, + ACTIONS(8057), 1, sym__newline, - ACTIONS(7854), 1, + ACTIONS(8059), 1, sym__indent, - STATE(2993), 1, + STATE(1188), 1, sym_pass_statement, - STATE(3025), 1, - sym_extern_suite, + STATE(1398), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182663] = 6, - ACTIONS(8028), 1, - anon_sym_LBRACE, - ACTIONS(8030), 1, - anon_sym_RBRACE, - ACTIONS(8032), 1, - aux_sym_format_specifier_token1, - STATE(4534), 1, - aux_sym_format_specifier_repeat1, - STATE(4821), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [182683] = 2, + [180106] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8034), 5, + ACTIONS(7599), 5, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [180118] = 6, + ACTIONS(6704), 1, anon_sym_as, + ACTIONS(6706), 1, anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8140), 1, anon_sym_COLON, - anon_sym_PIPE, - [182695] = 6, - ACTIONS(7834), 1, - anon_sym_pass, - ACTIONS(7862), 1, - sym__newline, - ACTIONS(7864), 1, - sym__indent, - STATE(1347), 1, - sym_pass_statement, - STATE(1363), 1, - sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182715] = 2, + [180138] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6546), 5, + ACTIONS(7694), 5, anon_sym_DOT, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_PIPE, - [182727] = 6, - ACTIONS(7850), 1, + [180150] = 5, + ACTIONS(8142), 1, + sym_identifier, + ACTIONS(8144), 1, + anon_sym_COLON, + ACTIONS(8148), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8146), 2, + anon_sym_class, + anon_sym_struct, + [180168] = 6, + ACTIONS(7905), 1, anon_sym_pass, - ACTIONS(7900), 1, + ACTIONS(7907), 1, sym__newline, - ACTIONS(7902), 1, + ACTIONS(7909), 1, sym__indent, - STATE(3007), 1, + STATE(3063), 1, sym_pass_statement, - STATE(3031), 1, + STATE(3124), 1, sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182747] = 4, - ACTIONS(8038), 1, - anon_sym_DOT, - STATE(4475), 1, - aux_sym_import_prefix_repeat1, + [180188] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8036), 3, - anon_sym_import, - anon_sym_cimport, - sym_identifier, - [182763] = 4, - ACTIONS(8026), 1, + ACTIONS(8150), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(4468), 1, - aux_sym_union_pattern_repeat1, + [180200] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7502), 3, + ACTIONS(8152), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [182779] = 6, - ACTIONS(7850), 1, - anon_sym_pass, - ACTIONS(7852), 1, - sym__newline, - ACTIONS(7854), 1, - sym__indent, - STATE(2993), 1, - sym_pass_statement, - STATE(2994), 1, - sym_extern_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [182799] = 3, - STATE(4468), 1, - aux_sym_union_pattern_repeat1, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [180212] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7570), 4, + ACTIONS(4097), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [182813] = 6, - ACTIONS(8041), 1, - anon_sym_COLON, - ACTIONS(8043), 1, - anon_sym_LBRACK, - ACTIONS(8045), 1, - anon_sym_nogil, - ACTIONS(8047), 1, - sym__newline, - STATE(5194), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [182833] = 2, + [180224] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6644), 5, + ACTIONS(7717), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [182845] = 5, - ACTIONS(8049), 1, - sym_identifier, - ACTIONS(8051), 1, - anon_sym_COLON, - ACTIONS(8055), 1, - sym__newline, + anon_sym_RBRACK, + anon_sym_PIPE, + [180236] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8053), 2, - anon_sym_class, - anon_sym_struct, - [182863] = 2, + ACTIONS(8154), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [180248] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8057), 5, + ACTIONS(8156), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [182875] = 6, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, + [180260] = 6, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(8059), 1, + ACTIONS(8099), 1, + anon_sym_as, + ACTIONS(8158), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182895] = 6, - ACTIONS(7250), 1, + [180280] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(8061), 1, - anon_sym_RPAREN, + ACTIONS(8160), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182915] = 4, - ACTIONS(7823), 1, - anon_sym_PIPE, - STATE(4373), 1, - aux_sym_union_pattern_repeat1, + [180300] = 6, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, + anon_sym_if, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, + ACTIONS(8162), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7661), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [182931] = 6, - ACTIONS(6634), 1, + [180320] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(8063), 1, + ACTIONS(8164), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182951] = 5, - ACTIONS(7102), 1, + [180340] = 6, + ACTIONS(7252), 1, + anon_sym_COMMA, + ACTIONS(7893), 1, + anon_sym_LPAREN, + ACTIONS(8166), 1, + anon_sym_EQ, + ACTIONS(8168), 1, + anon_sym_RBRACK, + STATE(5211), 1, + aux_sym_type_index_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180360] = 6, + ACTIONS(7416), 1, sym_identifier, - STATE(4642), 1, + ACTIONS(8170), 1, + anon_sym_LPAREN, + STATE(4545), 1, sym_dotted_name, - STATE(5148), 1, + STATE(4646), 1, sym_aliased_import, + STATE(5330), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8065), 2, - sym__newline, - anon_sym_SEMI, - [182969] = 6, - ACTIONS(7789), 1, - anon_sym_pass, - ACTIONS(7791), 1, - sym__newline, - ACTIONS(7793), 1, - sym__indent, - STATE(668), 1, - sym_pass_statement, - STATE(669), 1, - sym_extern_suite, + [180380] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8172), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [182989] = 2, + [180400] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7704), 5, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(8174), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [183001] = 5, - ACTIONS(7102), 1, - sym_identifier, - STATE(4642), 1, - sym_dotted_name, - STATE(5148), 1, - sym_aliased_import, + [180412] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8067), 2, - sym__newline, - anon_sym_SEMI, - [183019] = 4, - ACTIONS(8069), 1, + ACTIONS(8176), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(4491), 1, - aux_sym_union_pattern_repeat1, + [180424] = 6, + ACTIONS(7252), 1, + anon_sym_COMMA, + ACTIONS(7893), 1, + anon_sym_LPAREN, + ACTIONS(8178), 1, + anon_sym_EQ, + ACTIONS(8180), 1, + anon_sym_RBRACK, + STATE(5031), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7570), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [183035] = 5, - ACTIONS(7102), 1, - sym_identifier, - STATE(4642), 1, - sym_dotted_name, - STATE(5148), 1, - sym_aliased_import, + [180444] = 5, + ACTIONS(7846), 1, + anon_sym_DOT, + ACTIONS(8184), 1, + anon_sym_COLON, + ACTIONS(8186), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8067), 2, + ACTIONS(8182), 2, sym__newline, anon_sym_SEMI, - [183053] = 2, + [180462] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7648), 5, - anon_sym_RPAREN, + ACTIONS(8188), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [183065] = 6, - ACTIONS(8043), 1, - anon_sym_LBRACK, - ACTIONS(8072), 1, anon_sym_COLON, - ACTIONS(8074), 1, - anon_sym_nogil, - ACTIONS(8076), 1, - sym__newline, - STATE(5150), 1, - sym_template_params, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183085] = 6, - ACTIONS(7834), 1, - anon_sym_pass, - ACTIONS(7836), 1, - sym__newline, - ACTIONS(7838), 1, - sym__indent, - STATE(1249), 1, - sym_extern_suite, - STATE(1311), 1, - sym_pass_statement, + anon_sym_PIPE, + [180474] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183105] = 6, - ACTIONS(7108), 1, + ACTIONS(7786), 5, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(7856), 1, - anon_sym_LPAREN, - ACTIONS(8078), 1, - anon_sym_EQ, - ACTIONS(8080), 1, + anon_sym_COLON, anon_sym_RBRACK, - STATE(4952), 1, - aux_sym_type_index_repeat1, + anon_sym_PIPE, + [180486] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183125] = 6, - ACTIONS(7850), 1, - anon_sym_pass, - ACTIONS(7852), 1, - sym__newline, - ACTIONS(7854), 1, - sym__indent, - STATE(2993), 1, - sym_pass_statement, - STATE(3072), 1, - sym_extern_suite, + ACTIONS(7978), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [180498] = 5, + ACTIONS(8190), 1, + anon_sym_COMMA, + ACTIONS(8192), 1, + anon_sym_RBRACE, + STATE(5029), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183145] = 6, - ACTIONS(8043), 1, + ACTIONS(7107), 2, + anon_sym_COLON, + anon_sym_PIPE, + [180516] = 6, + ACTIONS(7925), 1, anon_sym_LBRACK, - ACTIONS(8082), 1, + ACTIONS(8194), 1, anon_sym_COLON, - ACTIONS(8084), 1, + ACTIONS(8196), 1, anon_sym_nogil, - ACTIONS(8086), 1, + ACTIONS(8198), 1, sym__newline, - STATE(5041), 1, + STATE(4966), 1, sym_template_params, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183165] = 2, + [180536] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7631), 5, - anon_sym_DOT, + ACTIONS(8121), 5, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - anon_sym_PIPE, - [183177] = 3, - ACTIONS(8088), 1, - anon_sym_LPAREN, + [180548] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(7206), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6818), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [183191] = 4, - ACTIONS(7882), 1, - anon_sym_PIPE, - STATE(4401), 1, - aux_sym_union_pattern_repeat1, + [180568] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7629), 3, + ACTIONS(7599), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [183207] = 6, - ACTIONS(6811), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [180580] = 6, + ACTIONS(6952), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6954), 1, anon_sym_nogil, - ACTIONS(7030), 1, + ACTIONS(7093), 1, anon_sym_COLON, - ACTIONS(7032), 1, + ACTIONS(7095), 1, sym__newline, - STATE(5434), 1, + STATE(5506), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183227] = 5, - ACTIONS(8090), 1, - sym_identifier, - ACTIONS(8092), 1, + [180600] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8200), 1, anon_sym_COLON, - ACTIONS(8096), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8094), 2, - anon_sym_class, - anon_sym_struct, - [183245] = 3, - ACTIONS(8098), 1, - anon_sym_LPAREN, + [180620] = 6, + ACTIONS(5138), 1, + anon_sym_COLON, + ACTIONS(7742), 1, + anon_sym_if, + ACTIONS(8202), 1, + anon_sym_COMMA, + STATE(4649), 1, + aux_sym_case_clause_repeat1, + STATE(5845), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6818), 4, + [180640] = 4, + ACTIONS(8204), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [183259] = 2, + STATE(4444), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3949), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [183271] = 6, - ACTIONS(7108), 1, + ACTIONS(3247), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [180656] = 5, + ACTIONS(8208), 1, anon_sym_COMMA, - ACTIONS(7856), 1, - anon_sym_LPAREN, - ACTIONS(8100), 1, - anon_sym_EQ, - ACTIONS(8102), 1, - anon_sym_RBRACK, - STATE(4885), 1, - aux_sym_type_index_repeat1, + ACTIONS(8210), 1, + anon_sym_as, + STATE(4610), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183291] = 2, + ACTIONS(8206), 2, + sym__newline, + anon_sym_SEMI, + [180674] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7724), 5, + ACTIONS(7820), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [183303] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8104), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + [180686] = 5, + ACTIONS(7586), 1, + anon_sym_DOT, + ACTIONS(7590), 1, anon_sym_COLON, + ACTIONS(7594), 1, anon_sym_PIPE, - [183315] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7844), 5, + ACTIONS(7844), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [183327] = 2, + anon_sym_RBRACK, + [180704] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8106), 5, + ACTIONS(7879), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [183339] = 6, - ACTIONS(7250), 1, + [180716] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(7252), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(7254), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(7256), 1, + ACTIONS(7204), 1, anon_sym_or, - ACTIONS(8108), 1, + ACTIONS(8212), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183359] = 6, - ACTIONS(7850), 1, - anon_sym_pass, - ACTIONS(7900), 1, - sym__newline, - ACTIONS(7902), 1, - sym__indent, - STATE(3007), 1, - sym_pass_statement, - STATE(3041), 1, - sym_struct_suite, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183379] = 6, - ACTIONS(6157), 1, + [180736] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(8110), 1, + ACTIONS(8214), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [180756] = 6, + ACTIONS(6952), 1, + anon_sym_with, + ACTIONS(6954), 1, + anon_sym_nogil, + ACTIONS(7028), 1, + anon_sym_COLON, + ACTIONS(7030), 1, sym__newline, + STATE(5491), 1, + sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183399] = 2, + [180776] = 3, + ACTIONS(8216), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7890), 5, - anon_sym_RPAREN, + ACTIONS(7107), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [183411] = 6, - ACTIONS(7850), 1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [180790] = 6, + ACTIONS(7905), 1, anon_sym_pass, - ACTIONS(7900), 1, + ACTIONS(7911), 1, sym__newline, - ACTIONS(7902), 1, + ACTIONS(7913), 1, sym__indent, - STATE(3007), 1, + STATE(3054), 1, sym_pass_statement, - STATE(3008), 1, - sym_struct_suite, + STATE(3135), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183431] = 2, + [180810] = 3, + ACTIONS(8218), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8112), 5, + ACTIONS(7107), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [183443] = 6, - ACTIONS(7250), 1, - anon_sym_as, - ACTIONS(7252), 1, - anon_sym_if, - ACTIONS(7254), 1, - anon_sym_and, - ACTIONS(7256), 1, - anon_sym_or, - ACTIONS(8114), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183463] = 6, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(8116), 1, - anon_sym_else, + [180824] = 4, + ACTIONS(8037), 1, + anon_sym_PIPE, + STATE(4457), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183483] = 6, - ACTIONS(6634), 1, + ACTIONS(7803), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(8118), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183503] = 6, - ACTIONS(6811), 1, - anon_sym_with, - ACTIONS(6813), 1, - anon_sym_nogil, - ACTIONS(7012), 1, - anon_sym_COLON, - ACTIONS(7014), 1, - sym__newline, - STATE(5284), 1, - sym_gil_spec, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183523] = 6, - ACTIONS(7108), 1, + [180840] = 5, + ACTIONS(8220), 1, anon_sym_COMMA, - ACTIONS(7856), 1, - anon_sym_LPAREN, - ACTIONS(8120), 1, - anon_sym_EQ, - ACTIONS(8122), 1, - anon_sym_RBRACK, - STATE(4837), 1, - aux_sym_type_index_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183543] = 2, + ACTIONS(8222), 1, + anon_sym_RBRACE, + STATE(4797), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8124), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(7107), 2, anon_sym_COLON, anon_sym_PIPE, - [183555] = 6, - ACTIONS(6634), 1, - anon_sym_as, - ACTIONS(6636), 1, - anon_sym_if, - ACTIONS(6638), 1, - anon_sym_and, - ACTIONS(6640), 1, - anon_sym_or, - ACTIONS(8126), 1, - anon_sym_else, + [180858] = 4, + ACTIONS(8037), 1, + anon_sym_PIPE, + STATE(4457), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183575] = 2, + ACTIONS(7801), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [180874] = 6, + ACTIONS(7905), 1, + anon_sym_pass, + ACTIONS(7911), 1, + sym__newline, + ACTIONS(7913), 1, + sym__indent, + STATE(3054), 1, + sym_pass_statement, + STATE(3103), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8128), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [183587] = 6, - ACTIONS(6634), 1, + [180894] = 6, + ACTIONS(6265), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(6267), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(6269), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(6271), 1, anon_sym_or, - ACTIONS(8130), 1, - anon_sym_else, + ACTIONS(8224), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183607] = 4, - ACTIONS(8026), 1, - anon_sym_PIPE, - STATE(4468), 1, + [180914] = 3, + STATE(4457), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7629), 3, + ACTIONS(7824), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [183623] = 5, - ACTIONS(8132), 1, - anon_sym_COMMA, - ACTIONS(8134), 1, - anon_sym_RBRACE, - STATE(4881), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6818), 2, - anon_sym_COLON, anon_sym_PIPE, - [183641] = 5, - ACTIONS(8136), 1, + [180928] = 5, + ACTIONS(8226), 1, sym_identifier, - ACTIONS(8138), 1, + ACTIONS(8228), 1, anon_sym_COLON, - ACTIONS(8142), 1, + ACTIONS(8232), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8140), 2, + ACTIONS(8230), 2, anon_sym_class, anon_sym_struct, - [183659] = 6, - ACTIONS(6157), 1, + [180946] = 6, + ACTIONS(6704), 1, anon_sym_as, - ACTIONS(6159), 1, + ACTIONS(6706), 1, anon_sym_if, - ACTIONS(6161), 1, + ACTIONS(6708), 1, anon_sym_and, - ACTIONS(6163), 1, + ACTIONS(6710), 1, anon_sym_or, - ACTIONS(8144), 1, - sym__newline, + ACTIONS(8234), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183679] = 2, + [180966] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8146), 5, + ACTIONS(8236), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [183691] = 6, - ACTIONS(6811), 1, + anon_sym_RBRACE, + [180978] = 6, + ACTIONS(6952), 1, anon_sym_with, - ACTIONS(6813), 1, + ACTIONS(6954), 1, anon_sym_nogil, - ACTIONS(7042), 1, + ACTIONS(7035), 1, anon_sym_COLON, - ACTIONS(7044), 1, + ACTIONS(7037), 1, sym__newline, - STATE(5243), 1, + STATE(5434), 1, sym_gil_spec, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183711] = 2, + [180998] = 4, + ACTIONS(8238), 1, + anon_sym_PIPE, + STATE(4565), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8148), 5, + ACTIONS(7824), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + [181014] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7666), 5, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [183723] = 2, + [181026] = 4, + ACTIONS(7887), 1, + anon_sym_PIPE, + STATE(4576), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8150), 5, + ACTIONS(7688), 3, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACE, + [181042] = 6, + ACTIONS(7198), 1, + anon_sym_as, + ACTIONS(7200), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [183735] = 6, - ACTIONS(8028), 1, + ACTIONS(7202), 1, + anon_sym_and, + ACTIONS(7204), 1, + anon_sym_or, + ACTIONS(8241), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181062] = 6, + ACTIONS(7956), 1, anon_sym_LBRACE, - ACTIONS(8152), 1, + ACTIONS(8243), 1, anon_sym_RBRACE, - ACTIONS(8154), 1, + ACTIONS(8245), 1, aux_sym_format_specifier_token1, - STATE(4458), 1, + STATE(4424), 1, aux_sym_format_specifier_repeat1, - STATE(4821), 1, + STATE(4802), 1, sym_interpolation, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [183755] = 2, + [181082] = 6, + ACTIONS(7946), 1, + anon_sym_pass, + ACTIONS(7948), 1, + sym__newline, + ACTIONS(7950), 1, + sym__indent, + STATE(685), 1, + sym_pass_statement, + STATE(686), 1, + sym_struct_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7524), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [183767] = 2, + [181102] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8247), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8156), 5, - anon_sym_COMMA, + [181122] = 6, + ACTIONS(6704), 1, anon_sym_as, + ACTIONS(6706), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [183779] = 2, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8249), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8158), 5, - anon_sym_COMMA, + [181142] = 6, + ACTIONS(6704), 1, anon_sym_as, + ACTIONS(6706), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8251), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181162] = 4, + ACTIONS(7887), 1, anon_sym_PIPE, - [183791] = 3, - ACTIONS(8160), 1, - anon_sym_LPAREN, + STATE(4567), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6818), 4, - anon_sym_RPAREN, + ACTIONS(7803), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [181178] = 3, + STATE(4567), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7824), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [183805] = 5, - ACTIONS(7655), 1, - anon_sym_DOT, - ACTIONS(7785), 1, - anon_sym_COLON, - ACTIONS(7787), 1, + anon_sym_RBRACE, + [181192] = 4, + ACTIONS(8253), 1, anon_sym_PIPE, + STATE(4576), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7653), 2, - sym__newline, - anon_sym_SEMI, - [183823] = 5, - ACTIONS(8162), 1, + ACTIONS(7824), 3, anon_sym_COMMA, - ACTIONS(8164), 1, + anon_sym_as, anon_sym_RBRACE, - STATE(4853), 1, - aux_sym_dict_pattern_repeat1, + [181208] = 6, + ACTIONS(7992), 1, + anon_sym_COLON, + ACTIONS(8256), 1, + anon_sym_EQ, + ACTIONS(8258), 1, + anon_sym_RBRACE, + ACTIONS(8260), 1, + sym_type_conversion, + STATE(5843), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6818), 2, + [181228] = 5, + ACTIONS(8262), 1, + sym_identifier, + ACTIONS(8264), 1, anon_sym_COLON, - anon_sym_PIPE, - [183841] = 6, - ACTIONS(6634), 1, + ACTIONS(8268), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8266), 2, + anon_sym_class, + anon_sym_struct, + [181246] = 6, + ACTIONS(7198), 1, anon_sym_as, - ACTIONS(6636), 1, + ACTIONS(7200), 1, anon_sym_if, - ACTIONS(6638), 1, + ACTIONS(7202), 1, anon_sym_and, - ACTIONS(6640), 1, + ACTIONS(7204), 1, anon_sym_or, - ACTIONS(8166), 1, - anon_sym_else, + ACTIONS(8270), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183861] = 6, - ACTIONS(7834), 1, + [181266] = 6, + ACTIONS(7946), 1, anon_sym_pass, - ACTIONS(7836), 1, + ACTIONS(8065), 1, sym__newline, - ACTIONS(7838), 1, + ACTIONS(8067), 1, sym__indent, - STATE(1311), 1, + STATE(676), 1, sym_pass_statement, - STATE(1317), 1, + STATE(677), 1, sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183881] = 2, + [181286] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8272), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8146), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [183892] = 2, + [181306] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7984), 4, + ACTIONS(8274), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [183903] = 2, + [181318] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7984), 4, + ACTIONS(8236), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [183914] = 5, - ACTIONS(8168), 1, - anon_sym_RPAREN, - ACTIONS(8170), 1, - anon_sym_COMMA, - ACTIONS(8172), 1, - anon_sym_as, - STATE(4743), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [183931] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7642), 4, + [181330] = 5, + ACTIONS(7846), 1, anon_sym_DOT, + ACTIONS(8184), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(8186), 1, anon_sym_PIPE, - [183942] = 5, - ACTIONS(8174), 1, - anon_sym_COMMA, - ACTIONS(8176), 1, - anon_sym_as, - ACTIONS(8178), 1, - anon_sym_RBRACK, - STATE(4745), 1, - aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [183959] = 4, - ACTIONS(7834), 1, + ACTIONS(7844), 2, + sym__newline, + anon_sym_SEMI, + [181348] = 6, + ACTIONS(7946), 1, anon_sym_pass, - ACTIONS(8180), 1, + ACTIONS(8065), 1, + sym__newline, + ACTIONS(8067), 1, sym__indent, + STATE(676), 1, + sym_pass_statement, + STATE(693), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1440), 2, - sym_pass_statement, - sym__cppclass_suite, - [183974] = 2, + [181368] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8057), 4, + ACTIONS(8276), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [183985] = 5, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(8182), 1, + [181380] = 6, + ACTIONS(7935), 1, + anon_sym_pass, + ACTIONS(7937), 1, + sym__newline, + ACTIONS(7939), 1, + sym__indent, + STATE(1326), 1, + sym_extern_suite, + STATE(1425), 1, + sym_pass_statement, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181400] = 6, + ACTIONS(6704), 1, + anon_sym_as, + ACTIONS(6706), 1, + anon_sym_if, + ACTIONS(6708), 1, + anon_sym_and, + ACTIONS(6710), 1, + anon_sym_or, + ACTIONS(8278), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181420] = 6, + ACTIONS(6952), 1, + anon_sym_with, + ACTIONS(6954), 1, + anon_sym_nogil, + ACTIONS(7186), 1, anon_sym_COLON, - ACTIONS(8184), 1, + ACTIONS(7188), 1, sym__newline, - STATE(5268), 1, - sym_string, + STATE(5364), 1, + sym_gil_spec, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [181440] = 6, + ACTIONS(7946), 1, + anon_sym_pass, + ACTIONS(8065), 1, + sym__newline, + ACTIONS(8067), 1, + sym__indent, + STATE(676), 1, + sym_pass_statement, + STATE(705), 1, + sym_extern_suite, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184002] = 2, + [181460] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7936), 4, + ACTIONS(8079), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [184013] = 2, + [181471] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7938), 4, + ACTIONS(8087), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [184024] = 5, - ACTIONS(7856), 1, - anon_sym_LPAREN, - ACTIONS(8186), 1, - anon_sym_COMMA, - ACTIONS(8188), 1, - anon_sym_RBRACK, - STATE(4901), 1, - aux_sym_external_definition_repeat1, + [181482] = 5, + ACTIONS(7416), 1, + sym_identifier, + STATE(4545), 1, + sym_dotted_name, + STATE(4646), 1, + sym_aliased_import, + STATE(5367), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184041] = 4, - ACTIONS(8192), 1, + [181499] = 4, + ACTIONS(8282), 1, anon_sym_COMMA, - STATE(4555), 1, + STATE(4608), 1, aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8190), 2, + ACTIONS(8280), 2, sym__newline, anon_sym_SEMI, - [184056] = 2, + [181514] = 4, + ACTIONS(8286), 1, + anon_sym_COMMA, + STATE(4626), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7942), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [184067] = 2, + ACTIONS(8284), 2, + sym__newline, + anon_sym_SEMI, + [181529] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7994), 4, - anon_sym_RPAREN, + ACTIONS(8274), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [184078] = 2, + [181540] = 5, + ACTIONS(8288), 1, + anon_sym_COMMA, + ACTIONS(8290), 1, + anon_sym_as, + ACTIONS(8292), 1, + anon_sym_RBRACK, + STATE(5002), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8020), 4, - anon_sym_RPAREN, + [181557] = 4, + ACTIONS(8296), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [184089] = 2, + STATE(4608), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8057), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [184100] = 2, + ACTIONS(8294), 2, + sym__newline, + anon_sym_SEMI, + [181572] = 4, + ACTIONS(7935), 1, + anon_sym_pass, + ACTIONS(8298), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1441), 2, + sym_pass_statement, + sym__cppclass_suite, + [181587] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7876), 4, + ACTIONS(8236), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [184111] = 4, - ACTIONS(8195), 1, + [181598] = 5, + ACTIONS(7893), 1, anon_sym_LPAREN, - ACTIONS(8197), 1, - anon_sym_EQ, + ACTIONS(8300), 1, + anon_sym_COMMA, + ACTIONS(8302), 1, + anon_sym_RBRACK, + STATE(5248), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3931), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [184126] = 5, - ACTIONS(8195), 1, - anon_sym_LPAREN, - ACTIONS(8199), 1, - anon_sym_RPAREN, - ACTIONS(8201), 1, - anon_sym_COMMA, - STATE(4839), 1, - aux_sym_function_pointer_type_repeat1, + [181615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184143] = 2, + ACTIONS(7368), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7442), 2, + anon_sym_not, + anon_sym_or, + [181628] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8124), 4, + ACTIONS(8276), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [184154] = 5, - ACTIONS(8067), 1, - anon_sym_RPAREN, - ACTIONS(8203), 1, - sym_identifier, - STATE(4873), 1, - sym_dotted_name, - STATE(5271), 1, - sym_aliased_import, + [181639] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184171] = 5, - ACTIONS(7856), 1, - anon_sym_LPAREN, - ACTIONS(8186), 1, + ACTIONS(7901), 4, anon_sym_COMMA, - ACTIONS(8205), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(4842), 1, - aux_sym_external_definition_repeat1, + anon_sym_PIPE, + [181650] = 4, + ACTIONS(8306), 1, + anon_sym_COMMA, + STATE(4708), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8304), 2, + anon_sym_from, + anon_sym_in, + [181665] = 4, + ACTIONS(7935), 1, + anon_sym_pass, + ACTIONS(8298), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184188] = 2, + STATE(1499), 2, + sym_pass_statement, + sym__cppclass_suite, + [181680] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7927), 4, + ACTIONS(8174), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [184199] = 4, - ACTIONS(8207), 1, + [181691] = 4, + ACTIONS(8310), 1, anon_sym_COMMA, - STATE(4627), 1, - aux_sym_assert_statement_repeat1, + STATE(4608), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3143), 2, - anon_sym_COLON, - anon_sym_by, - [184214] = 5, - ACTIONS(8067), 1, - anon_sym_RPAREN, - ACTIONS(8203), 1, - sym_identifier, - STATE(4873), 1, - sym_dotted_name, - STATE(5271), 1, - sym_aliased_import, + ACTIONS(8308), 2, + sym__newline, + anon_sym_SEMI, + [181706] = 4, + ACTIONS(8315), 1, + anon_sym_COMMA, + STATE(4730), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184231] = 5, - ACTIONS(7856), 1, - anon_sym_LPAREN, - ACTIONS(8186), 1, + ACTIONS(8313), 2, + sym__newline, + anon_sym_SEMI, + [181721] = 4, + ACTIONS(8317), 1, anon_sym_COMMA, - ACTIONS(8209), 1, - anon_sym_RBRACK, - STATE(5108), 1, - aux_sym_external_definition_repeat1, + STATE(4626), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184248] = 5, - ACTIONS(8195), 1, - anon_sym_LPAREN, - ACTIONS(8201), 1, + ACTIONS(8284), 2, + sym__newline, + anon_sym_SEMI, + [181736] = 4, + ACTIONS(7049), 1, anon_sym_COMMA, - ACTIONS(8211), 1, - anon_sym_RPAREN, - STATE(4990), 1, - aux_sym_function_pointer_type_repeat1, + STATE(4444), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184265] = 3, + ACTIONS(8319), 2, + sym__newline, + anon_sym_SEMI, + [181751] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7225), 2, - anon_sym_COMMA, + ACTIONS(7820), 4, + anon_sym_DOT, anon_sym_COLON, - ACTIONS(7229), 2, - anon_sym_not, - anon_sym_or, - [184278] = 5, - ACTIONS(8172), 1, - anon_sym_as, - ACTIONS(8213), 1, - anon_sym_RPAREN, - ACTIONS(8215), 1, - anon_sym_COMMA, - STATE(5031), 1, - aux_sym_case_clause_repeat1, + anon_sym_EQ, + anon_sym_PIPE, + [181762] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184295] = 5, - ACTIONS(8172), 1, - anon_sym_as, - ACTIONS(8217), 1, - anon_sym_RPAREN, - ACTIONS(8219), 1, + ACTIONS(7903), 4, anon_sym_COMMA, - STATE(4848), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184312] = 5, - ACTIONS(8176), 1, anon_sym_as, - ACTIONS(8221), 1, - anon_sym_COMMA, - ACTIONS(8223), 1, anon_sym_RBRACK, - STATE(4850), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [181773] = 4, + ACTIONS(8323), 1, + anon_sym_COLON, + ACTIONS(8325), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184329] = 5, - ACTIONS(3921), 1, - anon_sym_LBRACK, - ACTIONS(8225), 1, + ACTIONS(8321), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [181788] = 4, + ACTIONS(8327), 1, anon_sym_LPAREN, - STATE(5235), 1, - sym_parameters, - STATE(5262), 1, - sym_type_parameter, + ACTIONS(8329), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184346] = 4, - ACTIONS(7801), 1, + ACTIONS(4037), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4640), 1, - aux_sym__import_list_repeat1, + [181803] = 4, + ACTIONS(8331), 1, + anon_sym_COMMA, + STATE(4616), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7799), 2, - sym__newline, - anon_sym_SEMI, - [184361] = 2, + ACTIONS(6895), 2, + anon_sym_COLON, + anon_sym_by, + [181818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7876), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + ACTIONS(7107), 2, + anon_sym_COLON, anon_sym_PIPE, - [184372] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8227), 4, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_identifier, - [184383] = 2, + ACTIONS(8334), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [181831] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8124), 4, + ACTIONS(7982), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [184394] = 5, - ACTIONS(8172), 1, - anon_sym_as, - ACTIONS(8229), 1, + [181842] = 5, + ACTIONS(8336), 1, anon_sym_RPAREN, - ACTIONS(8231), 1, + ACTIONS(8338), 1, anon_sym_COMMA, - STATE(4856), 1, + ACTIONS(8340), 1, + anon_sym_as, + STATE(4816), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184411] = 5, - ACTIONS(8195), 1, - anon_sym_LPAREN, - ACTIONS(8201), 1, - anon_sym_COMMA, - ACTIONS(8233), 1, - anon_sym_RPAREN, - STATE(5116), 1, - aux_sym_function_pointer_type_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184428] = 2, + [181859] = 3, + ACTIONS(8210), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7992), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [184439] = 4, - ACTIONS(8235), 1, + ACTIONS(8342), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(4583), 1, - aux_sym__patterns_repeat1, + [181872] = 5, + ACTIONS(8344), 1, + anon_sym_case, + ACTIONS(8346), 1, + sym__dedent, + STATE(4652), 1, + aux_sym__match_block_repeat1, + STATE(5318), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5688), 2, - anon_sym_from, - anon_sym_in, - [184454] = 5, - ACTIONS(3921), 1, - anon_sym_LBRACK, - ACTIONS(8225), 1, - anon_sym_LPAREN, - STATE(5348), 1, - sym_parameters, - STATE(5372), 1, - sym_type_parameter, + [181889] = 5, + ACTIONS(7844), 1, + anon_sym_EQ, + ACTIONS(8348), 1, + anon_sym_DOT, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8352), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184471] = 2, + [181906] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8112), 4, + ACTIONS(8274), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [184482] = 4, - ACTIONS(8238), 1, - anon_sym_COMMA, - STATE(4583), 1, - aux_sym__patterns_repeat1, + [181917] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2821), 2, - anon_sym_from, - anon_sym_in, - [184497] = 2, + ACTIONS(7915), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [181928] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7992), 4, + ACTIONS(7917), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [184508] = 5, - ACTIONS(7653), 1, - anon_sym_EQ, - ACTIONS(8240), 1, - anon_sym_DOT, - ACTIONS(8242), 1, - anon_sym_COLON, - ACTIONS(8244), 1, - anon_sym_PIPE, + [181939] = 4, + ACTIONS(8356), 1, + anon_sym_COMMA, + STATE(4626), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184525] = 4, - ACTIONS(5307), 1, - sym_identifier, - STATE(5401), 1, - sym_dotted_name, + ACTIONS(8354), 2, + sym__newline, + anon_sym_SEMI, + [181954] = 4, + ACTIONS(8359), 1, + anon_sym_COMMA, + STATE(4627), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8246), 2, - anon_sym_import, - anon_sym_cimport, - [184540] = 2, + ACTIONS(5725), 2, + anon_sym_from, + anon_sym_in, + [181969] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8248), 4, - sym__newline, + ACTIONS(7801), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_with, - anon_sym_nogil, - [184551] = 2, + [181980] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7936), 4, + ACTIONS(8236), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [184562] = 2, + [181991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7938), 4, + ACTIONS(7368), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [184573] = 2, + ACTIONS(7372), 2, + anon_sym_not, + anon_sym_or, + [182004] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACK, + STATE(3642), 1, + sym_type_index, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6155), 2, + anon_sym_DOT, + sym_identifier, + [182019] = 5, + ACTIONS(8344), 1, + anon_sym_case, + ACTIONS(8362), 1, + sym__dedent, + STATE(4664), 1, + aux_sym__match_block_repeat1, + STATE(5318), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182036] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7942), 4, + ACTIONS(8276), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [184584] = 4, - ACTIONS(6939), 1, + [182047] = 4, + ACTIONS(8364), 1, anon_sym_COMMA, - STATE(4426), 1, + STATE(4444), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8250), 2, + ACTIONS(3503), 2, sym__newline, anon_sym_SEMI, - [184599] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7994), 4, + [182062] = 5, + ACTIONS(7893), 1, + anon_sym_LPAREN, + ACTIONS(8300), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(8366), 1, anon_sym_RBRACK, - anon_sym_PIPE, - [184610] = 2, + STATE(5246), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8112), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [184621] = 2, + [182079] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8146), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(4097), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RBRACE, - [184632] = 5, - ACTIONS(7102), 1, - sym_identifier, - STATE(4361), 1, - sym_dotted_name, - STATE(4576), 1, - sym_aliased_import, - STATE(5261), 1, - sym__import_list, + [182090] = 5, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(8368), 1, + anon_sym_RPAREN, + ACTIONS(8370), 1, + anon_sym_COMMA, + STATE(5049), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184649] = 2, + [182107] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8252), 4, - sym_string_start, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_identifier, - [184660] = 5, - ACTIONS(8172), 1, + ACTIONS(7717), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [182118] = 5, + ACTIONS(8340), 1, anon_sym_as, - ACTIONS(8254), 1, + ACTIONS(8372), 1, anon_sym_RPAREN, - ACTIONS(8256), 1, + ACTIONS(8374), 1, anon_sym_COMMA, - STATE(4774), 1, + STATE(4852), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184677] = 5, - ACTIONS(8240), 1, - anon_sym_DOT, - ACTIONS(8242), 1, + [182135] = 3, + ACTIONS(7740), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8376), 3, + anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - ACTIONS(8244), 1, - anon_sym_PIPE, - ACTIONS(8258), 1, - anon_sym_EQ, + [182148] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184694] = 4, - ACTIONS(7850), 1, + ACTIONS(8378), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [182159] = 4, + ACTIONS(7905), 1, anon_sym_pass, - ACTIONS(8260), 1, + ACTIONS(8380), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3118), 2, + STATE(3163), 2, sym_pass_statement, sym__cppclass_suite, - [184709] = 2, + [182174] = 4, + ACTIONS(7946), 1, + anon_sym_pass, + ACTIONS(8382), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8150), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [184720] = 2, + STATE(737), 2, + sym_pass_statement, + sym__cppclass_suite, + [182189] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7482), 4, + ACTIONS(7879), 4, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [184731] = 2, + [182200] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8146), 4, + ACTIONS(8033), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [184742] = 4, - ACTIONS(8262), 1, + [182211] = 4, + ACTIONS(8208), 1, anon_sym_COMMA, - STATE(4426), 1, - aux_sym_assert_statement_repeat1, + STATE(4595), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3403), 2, + ACTIONS(8206), 2, sym__newline, anon_sym_SEMI, - [184757] = 2, + [182226] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8148), 4, + ACTIONS(8033), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [184768] = 2, + [182237] = 4, + ACTIONS(8386), 1, + anon_sym_EQ, + STATE(5467), 1, + sym_template_default, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7984), 4, - anon_sym_RPAREN, + ACTIONS(8384), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [182252] = 4, + ACTIONS(8388), 1, + anon_sym_COMMA, + STATE(4649), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8376), 2, + anon_sym_if, + anon_sym_COLON, + [182267] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8045), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [184779] = 2, + [182278] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8057), 4, - anon_sym_RPAREN, + ACTIONS(8055), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [184790] = 2, + [182289] = 5, + ACTIONS(8344), 1, + anon_sym_case, + ACTIONS(8391), 1, + sym__dedent, + STATE(4661), 1, + aux_sym__match_block_repeat1, + STATE(5318), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7876), 4, - anon_sym_RPAREN, + [182306] = 4, + ACTIONS(8393), 1, anon_sym_COMMA, + STATE(4616), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3247), 2, + anon_sym_COLON, + anon_sym_by, + [182321] = 5, + ACTIONS(8340), 1, anon_sym_as, - anon_sym_PIPE, - [184801] = 2, + ACTIONS(8395), 1, + anon_sym_RPAREN, + ACTIONS(8397), 1, + anon_sym_COMMA, + STATE(4926), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8156), 4, + [182338] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8069), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [184812] = 2, + [182349] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8124), 4, + ACTIONS(8045), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [184823] = 2, + [182360] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8020), 4, + ACTIONS(7899), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [184834] = 2, + [182371] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8399), 4, + sym_string_start, + anon_sym_LPAREN, + anon_sym_LBRACK, + sym_identifier, + [182382] = 4, + ACTIONS(7946), 1, + anon_sym_pass, + ACTIONS(8382), 1, + sym__indent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(738), 2, + sym_pass_statement, + sym__cppclass_suite, + [182397] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8158), 4, + ACTIONS(8079), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [184845] = 5, - ACTIONS(7917), 1, - anon_sym_COLON, - ACTIONS(8264), 1, - anon_sym_RBRACE, - ACTIONS(8266), 1, - sym_type_conversion, - STATE(5701), 1, - sym_format_specifier, + [182408] = 5, + ACTIONS(8401), 1, + anon_sym_case, + ACTIONS(8404), 1, + sym__dedent, + STATE(4661), 1, + aux_sym__match_block_repeat1, + STATE(5318), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184862] = 2, + [182425] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7795), 4, + ACTIONS(8081), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [184873] = 2, + [182436] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7927), 4, - anon_sym_RPAREN, + ACTIONS(8083), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [184884] = 5, - ACTIONS(8268), 1, + [182447] = 5, + ACTIONS(8344), 1, anon_sym_case, - ACTIONS(8270), 1, + ACTIONS(8406), 1, sym__dedent, - STATE(4657), 1, + STATE(4661), 1, aux_sym__match_block_repeat1, - STATE(5267), 1, + STATE(5318), 1, sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [184901] = 4, - ACTIONS(8272), 1, - anon_sym_COMMA, - STATE(4619), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8275), 2, - anon_sym_if, - anon_sym_COLON, - [184916] = 4, - ACTIONS(8279), 1, - anon_sym_COMMA, - STATE(4643), 1, - aux_sym_global_statement_repeat1, + [182464] = 4, + ACTIONS(7905), 1, + anon_sym_pass, + ACTIONS(8380), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8277), 2, - sym__newline, - anon_sym_SEMI, - [184931] = 4, - ACTIONS(8279), 1, - anon_sym_COMMA, - STATE(4646), 1, - aux_sym_global_statement_repeat1, + STATE(3162), 2, + sym_pass_statement, + sym__cppclass_suite, + [182479] = 5, + ACTIONS(4021), 1, + anon_sym_LBRACK, + ACTIONS(8408), 1, + anon_sym_LPAREN, + STATE(5333), 1, + sym_parameters, + STATE(5453), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8281), 2, - sym__newline, - anon_sym_SEMI, - [184946] = 2, + [182496] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7927), 4, + ACTIONS(8087), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [184957] = 2, + [182507] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8034), 4, + ACTIONS(8055), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [184968] = 2, + [182518] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8104), 4, + ACTIONS(8150), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [184979] = 5, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(8283), 1, - anon_sym_COLON, - ACTIONS(8285), 1, - sym__newline, - STATE(5426), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [184996] = 5, - ACTIONS(7856), 1, + [182529] = 5, + ACTIONS(4021), 1, + anon_sym_LBRACK, + ACTIONS(8408), 1, anon_sym_LPAREN, - ACTIONS(8186), 1, - anon_sym_COMMA, - ACTIONS(8287), 1, - anon_sym_RBRACK, - STATE(5172), 1, - aux_sym_external_definition_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185013] = 4, - ACTIONS(8289), 1, - anon_sym_COMMA, - STATE(4627), 1, - aux_sym_assert_statement_repeat1, + STATE(5341), 1, + sym_parameters, + STATE(5459), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6775), 2, - anon_sym_COLON, - anon_sym_by, - [185028] = 2, + [182546] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8104), 4, + ACTIONS(8069), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [185039] = 4, - ACTIONS(7789), 1, + [182557] = 4, + ACTIONS(7905), 1, anon_sym_pass, - ACTIONS(8292), 1, + ACTIONS(8380), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(745), 2, + STATE(3161), 2, sym_pass_statement, sym__cppclass_suite, - [185054] = 5, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(8294), 1, - anon_sym_COLON, - ACTIONS(8296), 1, - sym__newline, - STATE(5335), 1, - sym_string, + [182572] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185071] = 4, - ACTIONS(7789), 1, - anon_sym_pass, - ACTIONS(8292), 1, - sym__indent, + ACTIONS(7901), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [182583] = 5, + ACTIONS(8340), 1, + anon_sym_as, + ACTIONS(8410), 1, + anon_sym_RPAREN, + ACTIONS(8412), 1, + anon_sym_COMMA, + STATE(4793), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(736), 2, - sym_pass_statement, - sym__cppclass_suite, - [185086] = 2, + [182600] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8106), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [185097] = 2, + ACTIONS(8414), 4, + sym__newline, + anon_sym_COLON, + anon_sym_with, + anon_sym_nogil, + [182611] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7844), 4, + ACTIONS(8174), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [185108] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8106), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [182622] = 5, + ACTIONS(8290), 1, anon_sym_as, - anon_sym_PIPE, - [185119] = 4, - ACTIONS(8300), 1, + ACTIONS(8416), 1, anon_sym_COMMA, - STATE(4586), 1, - aux_sym__patterns_repeat1, + ACTIONS(8418), 1, + anon_sym_RBRACK, + STATE(4795), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8298), 2, - anon_sym_from, - anon_sym_in, - [185134] = 3, - ACTIONS(7615), 1, - anon_sym_as, + [182639] = 5, + ACTIONS(8053), 1, + anon_sym_RPAREN, + ACTIONS(8420), 1, + sym_identifier, + STATE(4981), 1, + sym_dotted_name, + STATE(5387), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8275), 3, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [185147] = 5, - ACTIONS(7917), 1, - anon_sym_COLON, - ACTIONS(8302), 1, - anon_sym_RBRACE, - ACTIONS(8304), 1, - sym_type_conversion, - STATE(5652), 1, - sym_format_specifier, + [182656] = 5, + ACTIONS(8053), 1, + anon_sym_RPAREN, + ACTIONS(8420), 1, + sym_identifier, + STATE(4981), 1, + sym_dotted_name, + STATE(5387), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185164] = 2, + [182673] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8128), 4, + ACTIONS(7903), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [185175] = 5, - ACTIONS(8268), 1, - anon_sym_case, - ACTIONS(8306), 1, - sym__dedent, - STATE(4679), 1, - aux_sym__match_block_repeat1, - STATE(5267), 1, - sym_case_clause, + [182684] = 5, + ACTIONS(8063), 1, + anon_sym_RPAREN, + ACTIONS(8420), 1, + sym_identifier, + STATE(4981), 1, + sym_dotted_name, + STATE(5387), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185192] = 4, - ACTIONS(8310), 1, + [182701] = 5, + ACTIONS(8340), 1, + anon_sym_as, + ACTIONS(8422), 1, + anon_sym_RPAREN, + ACTIONS(8424), 1, anon_sym_COMMA, - STATE(4645), 1, - aux_sym__import_list_repeat1, + STATE(4908), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8308), 2, - sym__newline, - anon_sym_SEMI, - [185207] = 4, - ACTIONS(7834), 1, - anon_sym_pass, - ACTIONS(8180), 1, - sym__indent, + [182718] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1519), 2, - sym_pass_statement, - sym__cppclass_suite, - [185222] = 3, - ACTIONS(7803), 1, + ACTIONS(7917), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, + anon_sym_PIPE, + [182729] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8312), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [185235] = 4, - ACTIONS(8279), 1, + ACTIONS(8154), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4694), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [182740] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8314), 2, - sym__newline, - anon_sym_SEMI, - [185250] = 4, - ACTIONS(8316), 1, + ACTIONS(8156), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4645), 1, - aux_sym__import_list_repeat1, + anon_sym_as, + anon_sym_PIPE, + [182751] = 5, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(8370), 1, + anon_sym_COMMA, + ACTIONS(8426), 1, + anon_sym_RPAREN, + STATE(5180), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8308), 2, - sym__newline, - anon_sym_SEMI, - [185265] = 4, - ACTIONS(8320), 1, - anon_sym_COMMA, - STATE(4645), 1, - aux_sym__import_list_repeat1, + [182768] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8318), 2, - sym__newline, - anon_sym_SEMI, - [185280] = 4, - ACTIONS(8279), 1, + ACTIONS(8176), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(4694), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [182779] = 5, + ACTIONS(8420), 1, + sym_identifier, + STATE(4691), 1, + sym_dotted_name, + STATE(5137), 1, + sym_aliased_import, + STATE(5787), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8323), 2, - sym__newline, - anon_sym_SEMI, - [185295] = 2, + [182796] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8148), 4, + ACTIONS(8081), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [185306] = 2, + [182807] = 4, + ACTIONS(7946), 1, + anon_sym_pass, + ACTIONS(8382), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8128), 4, + STATE(746), 2, + sym_pass_statement, + sym__cppclass_suite, + [182822] = 5, + ACTIONS(8206), 1, + anon_sym_RPAREN, + ACTIONS(8428), 1, anon_sym_COMMA, + ACTIONS(8430), 1, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [185317] = 5, - ACTIONS(8203), 1, - sym_identifier, - STATE(4670), 1, - sym_dotted_name, - STATE(4788), 1, - sym_aliased_import, - STATE(5516), 1, - sym__import_list, + STATE(4766), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185334] = 2, + [182839] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8325), 4, + ACTIONS(8188), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [185345] = 2, + anon_sym_PIPE, + [182850] = 5, + ACTIONS(8340), 1, + anon_sym_as, + ACTIONS(8432), 1, + anon_sym_RPAREN, + ACTIONS(8434), 1, + anon_sym_COMMA, + STATE(4861), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182867] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7629), 4, + ACTIONS(8274), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [185356] = 5, - ACTIONS(8203), 1, - sym_identifier, - STATE(4670), 1, - sym_dotted_name, - STATE(4788), 1, - sym_aliased_import, - STATE(5595), 1, - sym__import_list, + anon_sym_PIPE, + anon_sym_RBRACE, + [182878] = 4, + ACTIONS(7935), 1, + anon_sym_pass, + ACTIONS(8298), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185373] = 2, + STATE(1553), 2, + sym_pass_statement, + sym__cppclass_suite, + [182893] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6546), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [185384] = 5, - ACTIONS(3921), 1, - anon_sym_LBRACK, - ACTIONS(8225), 1, + ACTIONS(8436), 4, + sym_string_start, anon_sym_LPAREN, - STATE(5280), 1, - sym_parameters, - STATE(5405), 1, - sym_type_parameter, + anon_sym_LBRACK, + sym_identifier, + [182904] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185401] = 3, + ACTIONS(8083), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [182915] = 5, + ACTIONS(8290), 1, + anon_sym_as, + ACTIONS(8438), 1, + anon_sym_COMMA, + ACTIONS(8440), 1, + anon_sym_RBRACK, + STATE(4866), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7225), 2, + [182932] = 5, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(8370), 1, + anon_sym_COMMA, + ACTIONS(8442), 1, anon_sym_RPAREN, + STATE(4885), 1, + aux_sym_function_pointer_type_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [182949] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8276), 4, anon_sym_COMMA, - ACTIONS(7460), 2, - anon_sym_not, - anon_sym_or, - [185414] = 2, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [182960] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8104), 4, + ACTIONS(7899), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [185425] = 5, - ACTIONS(8327), 1, - anon_sym_case, - ACTIONS(8330), 1, - sym__dedent, - STATE(4657), 1, - aux_sym__match_block_repeat1, - STATE(5267), 1, - sym_case_clause, + [182971] = 5, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(8444), 1, + anon_sym_COLON, + ACTIONS(8446), 1, + sym__newline, + STATE(5314), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185442] = 5, - ACTIONS(3921), 1, - anon_sym_LBRACK, - ACTIONS(8225), 1, - anon_sym_LPAREN, - STATE(5289), 1, - sym_parameters, - STATE(5411), 1, - sym_type_parameter, + [182988] = 5, + ACTIONS(7992), 1, + anon_sym_COLON, + ACTIONS(8448), 1, + anon_sym_RBRACE, + ACTIONS(8450), 1, + sym_type_conversion, + STATE(5551), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185459] = 2, + [183005] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8156), 4, + ACTIONS(8174), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [185470] = 4, - ACTIONS(7856), 1, - anon_sym_LPAREN, - ACTIONS(8334), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8332), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [185485] = 2, + [183016] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8128), 4, + ACTIONS(8150), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [185496] = 4, - ACTIONS(8338), 1, - anon_sym_COMMA, - STATE(4555), 1, - aux_sym_print_statement_repeat1, + [183027] = 5, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(8452), 1, + anon_sym_COLON, + ACTIONS(8454), 1, + sym__newline, + STATE(5366), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8336), 2, + [183044] = 5, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(8456), 1, + anon_sym_COLON, + ACTIONS(8458), 1, sym__newline, - anon_sym_SEMI, - [185511] = 4, - ACTIONS(8342), 1, - anon_sym_EQ, - STATE(5382), 1, - sym_template_default, + STATE(5436), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8340), 2, + [183061] = 4, + ACTIONS(8460), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [185526] = 4, - ACTIONS(7850), 1, - anon_sym_pass, - ACTIONS(8260), 1, - sym__indent, + STATE(4627), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3128), 2, - sym_pass_statement, - sym__cppclass_suite, - [185541] = 5, - ACTIONS(8201), 1, + ACTIONS(2799), 2, + anon_sym_from, + anon_sym_in, + [183076] = 5, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(8370), 1, anon_sym_COMMA, - ACTIONS(8211), 1, + ACTIONS(8462), 1, anon_sym_RPAREN, - ACTIONS(8344), 1, - anon_sym_LPAREN, - STATE(4990), 1, + STATE(5214), 1, aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185558] = 4, - ACTIONS(8348), 1, + [183093] = 5, + ACTIONS(7893), 1, + anon_sym_LPAREN, + ACTIONS(8300), 1, anon_sym_COMMA, - STATE(4555), 1, - aux_sym_print_statement_repeat1, + ACTIONS(8464), 1, + anon_sym_RBRACK, + STATE(4891), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8346), 2, - sym__newline, - anon_sym_SEMI, - [185573] = 5, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(8350), 1, - anon_sym_COLON, - ACTIONS(8352), 1, - sym__newline, - STATE(5359), 1, - sym_string, + [183110] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185590] = 2, + ACTIONS(7982), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [183121] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8158), 4, + ACTIONS(8152), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [185601] = 4, - ACTIONS(8356), 1, + [183132] = 4, + ACTIONS(7049), 1, anon_sym_COMMA, - STATE(4662), 1, - aux_sym_print_statement_repeat1, + STATE(4444), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8354), 2, + ACTIONS(8466), 2, sym__newline, anon_sym_SEMI, - [185616] = 5, - ACTIONS(7799), 1, - anon_sym_RPAREN, - ACTIONS(8358), 1, - anon_sym_COMMA, - ACTIONS(8360), 1, - anon_sym_as, - STATE(4988), 1, - aux_sym__import_list_repeat1, + [183147] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185633] = 5, - ACTIONS(8172), 1, - anon_sym_as, - ACTIONS(8362), 1, - anon_sym_RPAREN, - ACTIONS(8364), 1, + ACTIONS(8154), 4, anon_sym_COMMA, - STATE(4761), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [183158] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185650] = 4, - ACTIONS(7834), 1, - anon_sym_pass, - ACTIONS(8180), 1, - sym__indent, + ACTIONS(8150), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [183169] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1688), 2, - sym_pass_statement, - sym__cppclass_suite, - [185665] = 5, - ACTIONS(8268), 1, - anon_sym_case, - ACTIONS(8366), 1, - sym__dedent, - STATE(4618), 1, - aux_sym__match_block_repeat1, - STATE(5267), 1, - sym_case_clause, + ACTIONS(8152), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [183180] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185682] = 5, - ACTIONS(8176), 1, - anon_sym_as, - ACTIONS(8368), 1, + ACTIONS(8156), 4, anon_sym_COMMA, - ACTIONS(8370), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(4770), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [185699] = 2, + anon_sym_PIPE, + [183191] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7795), 4, + ACTIONS(8154), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [185710] = 5, - ACTIONS(8195), 1, - anon_sym_LPAREN, - ACTIONS(8201), 1, - anon_sym_COMMA, - ACTIONS(8372), 1, - anon_sym_RPAREN, - STATE(5032), 1, - aux_sym_function_pointer_type_repeat1, + [183202] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185727] = 2, + ACTIONS(8156), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [183213] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8112), 4, - anon_sym_RPAREN, + ACTIONS(8176), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [185738] = 2, + anon_sym_RBRACE, + [183224] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3949), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(8176), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [185749] = 5, - ACTIONS(8268), 1, - anon_sym_case, - ACTIONS(8374), 1, - sym__dedent, - STATE(4657), 1, - aux_sym__match_block_repeat1, - STATE(5267), 1, - sym_case_clause, + [183235] = 5, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(8468), 1, + anon_sym_COLON, + ACTIONS(8470), 1, + sym__newline, + STATE(5468), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185766] = 2, + [183252] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8034), 4, + ACTIONS(8188), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [185777] = 4, - ACTIONS(8378), 1, - anon_sym_COLON, - ACTIONS(8380), 1, - anon_sym_EQ, + [183263] = 5, + ACTIONS(8420), 1, + sym_identifier, + STATE(4691), 1, + sym_dotted_name, + STATE(5137), 1, + sym_aliased_import, + STATE(5841), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8376), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [185792] = 2, + [183280] = 4, + ACTIONS(5401), 1, + sym_identifier, + STATE(5423), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8148), 4, - anon_sym_RPAREN, + ACTIONS(8472), 2, + anon_sym_import, + anon_sym_cimport, + [183295] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8188), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [185803] = 2, + [183306] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8156), 4, + ACTIONS(7915), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [185814] = 4, - ACTIONS(7850), 1, - anon_sym_pass, - ACTIONS(8260), 1, - sym__indent, + [183317] = 5, + ACTIONS(7992), 1, + anon_sym_COLON, + ACTIONS(8474), 1, + anon_sym_RBRACE, + ACTIONS(8476), 1, + sym_type_conversion, + STATE(5705), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(3124), 2, - sym_pass_statement, - sym__cppclass_suite, - [185829] = 2, + [183334] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8158), 4, - anon_sym_RPAREN, + ACTIONS(8033), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [185840] = 2, + anon_sym_RBRACE, + [183345] = 4, + ACTIONS(8480), 1, + anon_sym_COMMA, + STATE(4730), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7795), 4, - anon_sym_RPAREN, + ACTIONS(8478), 2, + sym__newline, + anon_sym_SEMI, + [183360] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8045), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [185851] = 2, + anon_sym_RBRACE, + [183371] = 5, + ACTIONS(8348), 1, + anon_sym_DOT, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8352), 1, + anon_sym_PIPE, + ACTIONS(8483), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8034), 4, - anon_sym_RPAREN, + [183388] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8055), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [185862] = 2, + anon_sym_RBRACE, + [183399] = 5, + ACTIONS(8340), 1, + anon_sym_as, + ACTIONS(8485), 1, + anon_sym_RPAREN, + ACTIONS(8487), 1, + anon_sym_COMMA, + STATE(4898), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8024), 4, - anon_sym_RPAREN, + [183416] = 4, + ACTIONS(8306), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [185873] = 2, + STATE(4708), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8489), 2, + anon_sym_from, + anon_sym_in, + [183431] = 4, + ACTIONS(7893), 1, + anon_sym_LPAREN, + ACTIONS(8493), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7844), 4, + ACTIONS(8491), 2, anon_sym_COMMA, - anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [185884] = 2, + [183446] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8150), 4, + ACTIONS(8069), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [185895] = 2, + anon_sym_RBRACE, + [183457] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8024), 4, + ACTIONS(8079), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [185906] = 2, + [183468] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7936), 4, + ACTIONS(8081), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [185917] = 2, + [183479] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7938), 4, + ACTIONS(8083), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [185928] = 4, - ACTIONS(8384), 1, + [183490] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8087), 4, anon_sym_COMMA, - STATE(4694), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [183501] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8382), 2, - sym__newline, - anon_sym_SEMI, - [185943] = 5, - ACTIONS(8172), 1, + ACTIONS(7899), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(8387), 1, - anon_sym_RPAREN, - ACTIONS(8389), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [183512] = 4, + ACTIONS(8306), 1, anon_sym_COMMA, - STATE(5160), 1, - aux_sym_case_clause_repeat1, + STATE(4708), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [185960] = 2, + ACTIONS(8495), 2, + anon_sym_from, + anon_sym_in, + [183527] = 5, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(8497), 1, + anon_sym_COLON, + ACTIONS(8499), 1, + sym__newline, + STATE(5322), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7942), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [185971] = 2, + [183544] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7994), 4, + ACTIONS(7901), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [185982] = 2, + [183555] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8020), 4, + ACTIONS(7903), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [185993] = 2, + [183566] = 5, + ACTIONS(8290), 1, + anon_sym_as, + ACTIONS(8501), 1, + anon_sym_COMMA, + ACTIONS(8503), 1, + anon_sym_RBRACK, + STATE(4900), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7992), 4, + [183583] = 4, + ACTIONS(8507), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [186004] = 4, - ACTIONS(7789), 1, - anon_sym_pass, - ACTIONS(8292), 1, - sym__indent, + STATE(4594), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(741), 2, - sym_pass_statement, - sym__cppclass_suite, - [186019] = 5, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(8391), 1, - anon_sym_COLON, - ACTIONS(8393), 1, + ACTIONS(8505), 2, sym__newline, - STATE(5246), 1, - sym_string, + anon_sym_SEMI, + [183598] = 5, + ACTIONS(8368), 1, + anon_sym_RPAREN, + ACTIONS(8370), 1, + anon_sym_COMMA, + ACTIONS(8509), 1, + anon_sym_LPAREN, + STATE(5049), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186036] = 4, + [183615] = 5, + ACTIONS(7893), 1, + anon_sym_LPAREN, ACTIONS(8300), 1, anon_sym_COMMA, - STATE(4586), 1, - aux_sym__patterns_repeat1, + ACTIONS(8511), 1, + anon_sym_RBRACK, + STATE(5028), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8395), 2, - anon_sym_from, - anon_sym_in, - [186051] = 2, + [183632] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8106), 4, + ACTIONS(7915), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [186062] = 5, - ACTIONS(8065), 1, + anon_sym_RBRACE, + [183643] = 5, + ACTIONS(8340), 1, + anon_sym_as, + ACTIONS(8513), 1, anon_sym_RPAREN, - ACTIONS(8203), 1, - sym_identifier, - STATE(4873), 1, - sym_dotted_name, - STATE(5271), 1, - sym_aliased_import, + ACTIONS(8515), 1, + anon_sym_COMMA, + STATE(4999), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186079] = 2, + [183660] = 5, + ACTIONS(4021), 1, + anon_sym_LBRACK, + ACTIONS(8408), 1, + anon_sym_LPAREN, + STATE(5329), 1, + sym_type_parameter, + STATE(5454), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7724), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [186090] = 4, - ACTIONS(8300), 1, + [183677] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7917), 4, anon_sym_COMMA, - STATE(4586), 1, - aux_sym__patterns_repeat1, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [183688] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8397), 2, - anon_sym_from, - anon_sym_in, - [186105] = 5, - ACTIONS(3878), 1, + ACTIONS(7982), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [183699] = 5, + ACTIONS(3956), 1, sym_string_start, - ACTIONS(8399), 1, + ACTIONS(8517), 1, anon_sym_COLON, - ACTIONS(8401), 1, + ACTIONS(8519), 1, sym__newline, - STATE(5381), 1, + STATE(5422), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186122] = 5, - ACTIONS(8172), 1, - anon_sym_as, - ACTIONS(8403), 1, - anon_sym_RPAREN, - ACTIONS(8405), 1, - anon_sym_COMMA, - STATE(4975), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186139] = 3, + [183716] = 5, + ACTIONS(4021), 1, + anon_sym_LBRACK, + ACTIONS(8408), 1, + anon_sym_LPAREN, + STATE(5378), 1, + sym_parameters, + STATE(5379), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6818), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(8407), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [186152] = 5, - ACTIONS(8176), 1, - anon_sym_as, - ACTIONS(8409), 1, + [183733] = 4, + ACTIONS(8315), 1, anon_sym_COMMA, - ACTIONS(8411), 1, - anon_sym_RBRACK, - STATE(4989), 1, - aux_sym_case_clause_repeat1, + STATE(4609), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186169] = 4, - ACTIONS(8300), 1, + ACTIONS(8521), 2, + sym__newline, + anon_sym_SEMI, + [183748] = 4, + ACTIONS(8306), 1, anon_sym_COMMA, - STATE(4586), 1, + STATE(4708), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8413), 2, + ACTIONS(8523), 2, anon_sym_from, anon_sym_in, - [186184] = 4, - ACTIONS(6939), 1, + [183763] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(6654), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [183774] = 4, + ACTIONS(8315), 1, anon_sym_COMMA, - STATE(4426), 1, - aux_sym_assert_statement_repeat1, + STATE(4730), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8415), 2, + ACTIONS(8525), 2, sym__newline, anon_sym_SEMI, - [186199] = 4, - ACTIONS(4992), 1, - anon_sym_LBRACK, - STATE(3611), 1, - sym_type_index, + [183789] = 4, + ACTIONS(8315), 1, + anon_sym_COMMA, + STATE(4761), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6058), 2, - anon_sym_DOT, - sym_identifier, - [186214] = 2, + ACTIONS(8527), 2, + sym__newline, + anon_sym_SEMI, + [183804] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8150), 4, + ACTIONS(8152), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, + [183815] = 4, + ACTIONS(8529), 1, + anon_sym_COMMA, + ACTIONS(8531), 1, anon_sym_RBRACE, - [186225] = 2, + STATE(4796), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [183829] = 3, + ACTIONS(5978), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8024), 4, + ACTIONS(5974), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [186236] = 4, - ACTIONS(6396), 1, + [183841] = 4, + ACTIONS(8284), 1, + anon_sym_RPAREN, + ACTIONS(8533), 1, anon_sym_COMMA, - ACTIONS(8417), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + STATE(4996), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186250] = 4, - ACTIONS(6396), 1, + [183855] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8419), 1, + ACTIONS(8535), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186264] = 4, - ACTIONS(8421), 1, + [183869] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8423), 1, - anon_sym_RBRACE, - STATE(4747), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(8537), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186278] = 4, - ACTIONS(6396), 1, + [183883] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8425), 1, + ACTIONS(8539), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186292] = 3, - ACTIONS(7739), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [183897] = 4, + ACTIONS(8541), 1, + anon_sym_SEMI, + ACTIONS(8543), 1, + sym__newline, + STATE(4854), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7741), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [186304] = 4, - ACTIONS(8427), 1, - anon_sym_LPAREN, - ACTIONS(8429), 1, - anon_sym_COLON, - ACTIONS(8431), 1, - sym__newline, + [183911] = 4, + ACTIONS(7252), 1, + anon_sym_COMMA, + ACTIONS(8545), 1, + anon_sym_RBRACK, + STATE(5165), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186318] = 4, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8435), 1, - anon_sym_COLON, - ACTIONS(8437), 1, + [183925] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8547), 1, sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186332] = 4, - ACTIONS(7108), 1, + [183939] = 4, + ACTIONS(8549), 1, anon_sym_COMMA, - ACTIONS(8439), 1, + ACTIONS(8552), 1, anon_sym_RBRACK, - STATE(4935), 1, - aux_sym_type_index_repeat1, + STATE(4773), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186346] = 2, + [183953] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8554), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8325), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [186356] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(8441), 1, + [183967] = 4, + ACTIONS(8556), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8558), 1, + sym__indent, + STATE(1501), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186370] = 4, - ACTIONS(8433), 1, + [183981] = 4, + ACTIONS(8560), 1, anon_sym_LPAREN, - ACTIONS(8443), 1, + ACTIONS(8562), 1, anon_sym_COLON, - ACTIONS(8445), 1, + ACTIONS(8564), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186384] = 4, - ACTIONS(6396), 1, + [183995] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8447), 1, + ACTIONS(8566), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186398] = 4, - ACTIONS(2863), 1, - anon_sym_RPAREN, - ACTIONS(8449), 1, + [184009] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(4843), 1, - aux_sym_argument_list_repeat1, + ACTIONS(8568), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186412] = 4, - ACTIONS(6396), 1, + [184023] = 4, + ACTIONS(8306), 1, anon_sym_COMMA, - ACTIONS(8451), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8570), 1, + anon_sym_in, + STATE(4708), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186426] = 4, - ACTIONS(6396), 1, + [184037] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8453), 1, + ACTIONS(8572), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186440] = 4, - ACTIONS(2717), 1, - anon_sym_RBRACK, - ACTIONS(8455), 1, - anon_sym_COMMA, - STATE(4862), 1, - aux_sym_type_parameter_repeat1, + [184051] = 4, + ACTIONS(3956), 1, + sym_string_start, + ACTIONS(8574), 1, + anon_sym_LT, + STATE(5421), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186454] = 4, - ACTIONS(6396), 1, + [184065] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8457), 1, + ACTIONS(8576), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186468] = 4, - ACTIONS(6396), 1, + [184079] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8459), 1, + ACTIONS(8578), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186482] = 4, - ACTIONS(6396), 1, + [184093] = 4, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(8461), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6583), 1, + anon_sym_RPAREN, + STATE(4808), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186496] = 4, - ACTIONS(6396), 1, + [184107] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8463), 1, + ACTIONS(8580), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186510] = 4, - ACTIONS(6396), 1, + [184121] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8465), 1, + ACTIONS(8582), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186524] = 4, - ACTIONS(5441), 1, - anon_sym_RPAREN, - ACTIONS(8467), 1, + [184135] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(5034), 1, - aux_sym__typedargslist_repeat1, + ACTIONS(8584), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186538] = 4, - ACTIONS(6396), 1, + [184149] = 4, + ACTIONS(3483), 1, + anon_sym_COLON, + ACTIONS(8586), 1, anon_sym_COMMA, - ACTIONS(8469), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + STATE(5256), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186552] = 4, - ACTIONS(8471), 1, - anon_sym_RPAREN, - ACTIONS(8473), 1, + [184163] = 4, + ACTIONS(7150), 1, anon_sym_COMMA, - STATE(4918), 1, - aux_sym_with_clause_repeat1, + ACTIONS(7152), 1, + anon_sym_RBRACK, + STATE(4791), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186566] = 4, - ACTIONS(6698), 1, - sym__newline, - ACTIONS(8475), 1, + [184177] = 4, + ACTIONS(8588), 1, anon_sym_COMMA, - STATE(5063), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8590), 1, + anon_sym_RBRACK, + STATE(4773), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186580] = 4, - ACTIONS(6396), 1, + [184191] = 4, + ACTIONS(8592), 1, anon_sym_COMMA, - ACTIONS(8477), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8594), 1, + anon_sym_RBRACK, + STATE(4773), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186594] = 4, - ACTIONS(6396), 1, + [184205] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8479), 1, + ACTIONS(8596), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186608] = 4, - ACTIONS(5177), 1, + [184219] = 4, + ACTIONS(5299), 1, anon_sym_RPAREN, - ACTIONS(8481), 1, + ACTIONS(8598), 1, anon_sym_COMMA, - STATE(4891), 1, + STATE(4842), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186622] = 4, - ACTIONS(8483), 1, + [184233] = 4, + ACTIONS(8600), 1, anon_sym_COMMA, - ACTIONS(8486), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8602), 1, + anon_sym_RBRACE, + STATE(4867), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186636] = 4, - ACTIONS(5179), 1, + [184247] = 4, + ACTIONS(5313), 1, anon_sym_RBRACK, - ACTIONS(8488), 1, + ACTIONS(8604), 1, anon_sym_COMMA, - STATE(5122), 1, + STATE(4897), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186650] = 4, - ACTIONS(3375), 1, - anon_sym_COLON, - ACTIONS(8490), 1, - anon_sym_COMMA, - STATE(4808), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186664] = 4, - ACTIONS(8492), 1, + [184261] = 4, + ACTIONS(8606), 1, anon_sym_COMMA, - ACTIONS(8494), 1, + ACTIONS(8608), 1, anon_sym_RBRACE, - STATE(5224), 1, + STATE(4849), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186678] = 4, - ACTIONS(8496), 1, + [184275] = 4, + ACTIONS(8610), 1, anon_sym_COMMA, - ACTIONS(8498), 1, + ACTIONS(8612), 1, anon_sym_RBRACE, - STATE(5224), 1, + STATE(4849), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186692] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(8500), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + [184289] = 4, + ACTIONS(8614), 1, + anon_sym_COLON, + ACTIONS(8616), 1, + anon_sym_LBRACK, + STATE(5734), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186706] = 4, - ACTIONS(6396), 1, + [184303] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8502), 1, + ACTIONS(8618), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186720] = 3, - ACTIONS(7755), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7757), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [186732] = 4, - ACTIONS(6759), 1, - sym__newline, - ACTIONS(7092), 1, + [184317] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(5063), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8620), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186746] = 4, - ACTIONS(8433), 1, + [184331] = 4, + ACTIONS(8560), 1, anon_sym_LPAREN, - ACTIONS(8504), 1, + ACTIONS(8622), 1, anon_sym_COLON, - ACTIONS(8506), 1, + ACTIONS(8624), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186760] = 4, - ACTIONS(8508), 1, - anon_sym_COMMA, - ACTIONS(8510), 1, - anon_sym_RBRACK, - STATE(4967), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, + [184345] = 3, + ACTIONS(8628), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [186774] = 4, - ACTIONS(6396), 1, + ACTIONS(8626), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [184357] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8512), 1, + ACTIONS(8630), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186788] = 4, - ACTIONS(6396), 1, + [184371] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8514), 1, + ACTIONS(8632), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186802] = 4, - ACTIONS(6396), 1, + [184385] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8516), 1, + ACTIONS(8634), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186816] = 4, - ACTIONS(6396), 1, + [184399] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8518), 1, + ACTIONS(8636), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186830] = 4, - ACTIONS(8520), 1, - sym__newline, - ACTIONS(8522), 1, - sym__indent, - STATE(1716), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186844] = 4, - ACTIONS(6396), 1, + [184413] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8524), 1, + ACTIONS(8638), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186858] = 4, - ACTIONS(5155), 1, + [184427] = 4, + ACTIONS(3103), 1, anon_sym_RPAREN, - ACTIONS(8526), 1, - anon_sym_COMMA, - STATE(4891), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [186872] = 4, - ACTIONS(6396), 1, + ACTIONS(8640), 1, anon_sym_COMMA, - ACTIONS(8528), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + STATE(5275), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186886] = 4, - ACTIONS(8530), 1, + [184441] = 4, + ACTIONS(7578), 1, anon_sym_COMMA, - ACTIONS(8532), 1, - anon_sym_RBRACK, - STATE(5045), 1, - aux_sym_template_params_repeat1, + ACTIONS(7580), 1, + anon_sym_RBRACE, + STATE(4917), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186900] = 4, - ACTIONS(6396), 1, + [184455] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8534), 1, + ACTIONS(8642), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186914] = 4, - ACTIONS(6396), 1, + [184469] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8536), 1, + ACTIONS(8644), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186928] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(8538), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + [184483] = 4, + ACTIONS(7992), 1, + anon_sym_COLON, + ACTIONS(8646), 1, + anon_sym_RBRACE, + STATE(5794), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186942] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(8540), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + [184497] = 4, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(8648), 1, + anon_sym_COLON, + STATE(5678), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186956] = 4, - ACTIONS(5688), 1, + [184511] = 4, + ACTIONS(3992), 1, anon_sym_RPAREN, - ACTIONS(8542), 1, + ACTIONS(8650), 1, anon_sym_COMMA, - STATE(4768), 1, + STATE(5121), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186970] = 4, - ACTIONS(8545), 1, - anon_sym_COMMA, - ACTIONS(8548), 1, - anon_sym_COLON, - STATE(4769), 1, - aux_sym_match_statement_repeat1, + [184525] = 4, + ACTIONS(7416), 1, + sym_identifier, + STATE(4620), 1, + sym_dotted_name, + STATE(5033), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186984] = 4, - ACTIONS(5145), 1, - anon_sym_RBRACK, - ACTIONS(8550), 1, + [184539] = 4, + ACTIONS(5303), 1, + anon_sym_RPAREN, + ACTIONS(8652), 1, anon_sym_COMMA, - STATE(5122), 1, + STATE(4842), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [186998] = 3, - ACTIONS(1514), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1516), 2, - anon_sym_except_STAR, - anon_sym_finally, - [187010] = 4, - ACTIONS(6396), 1, + [184553] = 4, + ACTIONS(7252), 1, anon_sym_COMMA, - ACTIONS(8552), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8654), 1, + anon_sym_RBRACK, + STATE(5165), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187024] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(8554), 1, + [184567] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(8656), 1, + anon_sym_COLON, + ACTIONS(8658), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187038] = 4, - ACTIONS(5187), 1, - anon_sym_RPAREN, - ACTIONS(8556), 1, - anon_sym_COMMA, - STATE(4891), 1, - aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187052] = 4, - ACTIONS(8558), 1, - anon_sym_COLON, + [184581] = 4, ACTIONS(8560), 1, - anon_sym_LBRACK, - STATE(5532), 1, - sym_external_definition, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [187066] = 4, - ACTIONS(8433), 1, anon_sym_LPAREN, - ACTIONS(8562), 1, + ACTIONS(8660), 1, anon_sym_COLON, - ACTIONS(8564), 1, + ACTIONS(8662), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187080] = 3, - ACTIONS(8568), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8566), 2, - sym__newline, - anon_sym_COMMA, - [187092] = 4, - ACTIONS(6396), 1, + [184595] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8570), 1, + ACTIONS(8664), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187106] = 4, - ACTIONS(6396), 1, + [184609] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8572), 1, + ACTIONS(8666), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187120] = 4, - ACTIONS(8437), 1, + [184623] = 4, + ACTIONS(8668), 1, + anon_sym_COMMA, + ACTIONS(8671), 1, sym__newline, - ACTIONS(8574), 1, - anon_sym_LPAREN, - ACTIONS(8576), 1, - anon_sym_COLON, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187134] = 4, - ACTIONS(6396), 1, + [184637] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8578), 1, + ACTIONS(8673), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187148] = 4, - ACTIONS(6396), 1, + [184651] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8580), 1, + ACTIONS(8675), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187162] = 4, - ACTIONS(6396), 1, + [184665] = 4, + ACTIONS(7657), 1, + anon_sym_LPAREN, + ACTIONS(8677), 1, + anon_sym_GT, + ACTIONS(8679), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [184679] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187176] = 4, - ACTIONS(6718), 1, - sym__newline, - ACTIONS(7211), 1, + [184693] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(5063), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8683), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187190] = 4, - ACTIONS(6396), 1, + [184707] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8584), 1, + ACTIONS(8685), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187204] = 4, - ACTIONS(8433), 1, + [184721] = 4, + ACTIONS(8560), 1, anon_sym_LPAREN, - ACTIONS(8586), 1, + ACTIONS(8687), 1, anon_sym_COLON, - ACTIONS(8588), 1, + ACTIONS(8689), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187218] = 4, - ACTIONS(8560), 1, - anon_sym_LBRACK, - ACTIONS(8590), 1, - anon_sym_COLON, - STATE(5639), 1, - sym_external_definition, + [184735] = 3, + ACTIONS(8340), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187232] = 4, - ACTIONS(7799), 1, + ACTIONS(8376), 2, anon_sym_RPAREN, - ACTIONS(8358), 1, anon_sym_COMMA, - STATE(4986), 1, - aux_sym__import_list_repeat1, + [184747] = 4, + ACTIONS(8306), 1, + anon_sym_COMMA, + ACTIONS(8691), 1, + anon_sym_in, + STATE(4708), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187246] = 4, - ACTIONS(8138), 1, - anon_sym_COLON, - ACTIONS(8142), 1, + [184761] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8693), 1, sym__newline, - ACTIONS(8592), 1, - sym_identifier, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187260] = 4, - ACTIONS(8142), 1, - sym__newline, - ACTIONS(8594), 1, - anon_sym_LPAREN, - ACTIONS(8596), 1, - anon_sym_COLON, + [184775] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187274] = 3, - ACTIONS(8600), 1, - anon_sym_EQ, + ACTIONS(8378), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [184785] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8695), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8598), 2, - sym__newline, + [184799] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - [187286] = 4, - ACTIONS(8240), 1, - anon_sym_DOT, - ACTIONS(8602), 1, - anon_sym_COLON, - ACTIONS(8604), 1, - anon_sym_PIPE, + ACTIONS(8697), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187300] = 4, - ACTIONS(8433), 1, + [184813] = 4, + ACTIONS(8560), 1, anon_sym_LPAREN, - ACTIONS(8606), 1, + ACTIONS(8699), 1, anon_sym_COLON, - ACTIONS(8608), 1, + ACTIONS(8701), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187314] = 4, - ACTIONS(6396), 1, + [184827] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8610), 1, + ACTIONS(8703), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187328] = 4, - ACTIONS(6396), 1, + [184841] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8612), 1, + ACTIONS(8705), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187342] = 4, - ACTIONS(6396), 1, + [184855] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8614), 1, + ACTIONS(8707), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187356] = 4, - ACTIONS(8616), 1, + [184869] = 4, + ACTIONS(6426), 1, + anon_sym_RPAREN, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(8618), 1, - anon_sym_RBRACK, - STATE(4967), 1, - aux_sym_subscript_repeat1, + STATE(4808), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187370] = 4, - ACTIONS(6396), 1, + [184883] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8620), 1, + ACTIONS(8709), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187384] = 4, - ACTIONS(2719), 1, - anon_sym_RBRACK, - ACTIONS(8622), 1, + [184897] = 4, + ACTIONS(8376), 1, + anon_sym_RPAREN, + ACTIONS(8711), 1, anon_sym_COMMA, - STATE(4862), 1, - aux_sym_type_parameter_repeat1, + STATE(4842), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187398] = 4, - ACTIONS(6356), 1, - anon_sym_RBRACK, - ACTIONS(6433), 1, + [184911] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(4998), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8714), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187412] = 4, - ACTIONS(8624), 1, + [184925] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_RBRACE, - STATE(5013), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(8716), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187426] = 4, - ACTIONS(6396), 1, + [184939] = 3, + ACTIONS(8720), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8718), 2, anon_sym_COMMA, - ACTIONS(8628), 1, + anon_sym_RBRACE, + [184951] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8722), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187440] = 4, - ACTIONS(7718), 1, - anon_sym_LPAREN, - ACTIONS(8630), 1, - anon_sym_GT, - ACTIONS(8632), 1, - anon_sym_QMARK, + [184965] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8724), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187454] = 4, - ACTIONS(6396), 1, + [184979] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8634), 1, + ACTIONS(8726), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187468] = 4, - ACTIONS(8560), 1, - anon_sym_LBRACK, - ACTIONS(8636), 1, - anon_sym_COLON, - STATE(5510), 1, - sym_external_definition, + [184993] = 4, + ACTIONS(8728), 1, + anon_sym_COMMA, + ACTIONS(8731), 1, + anon_sym_RBRACE, + STATE(4849), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187482] = 4, - ACTIONS(8638), 1, + [185007] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8640), 1, - anon_sym_RBRACK, - STATE(5228), 1, - aux_sym__patterns_repeat1, + ACTIONS(8733), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187496] = 4, - ACTIONS(1283), 1, - sym__newline, - ACTIONS(8642), 1, - anon_sym_SEMI, - STATE(4910), 1, - aux_sym__simple_statements_repeat1, + [185021] = 4, + ACTIONS(8735), 1, + anon_sym_RPAREN, + ACTIONS(8737), 1, + anon_sym_COMMA, + STATE(4814), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187510] = 4, - ACTIONS(8644), 1, + [185035] = 4, + ACTIONS(5317), 1, + anon_sym_RPAREN, + ACTIONS(8739), 1, anon_sym_COMMA, - ACTIONS(8647), 1, - anon_sym_COLON, - STATE(4808), 1, - aux_sym_with_clause_repeat1, + STATE(4842), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187524] = 4, - ACTIONS(6431), 1, + [185049] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8649), 1, - anon_sym_RPAREN, - STATE(5158), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8741), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187538] = 4, - ACTIONS(8651), 1, - anon_sym_SEMI, - ACTIONS(8653), 1, + [185063] = 4, + ACTIONS(1339), 1, sym__newline, - STATE(4819), 1, + ACTIONS(8743), 1, + anon_sym_SEMI, + STATE(5236), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187552] = 4, - ACTIONS(8640), 1, - anon_sym_RPAREN, - ACTIONS(8655), 1, - anon_sym_COMMA, - STATE(5217), 1, - aux_sym__patterns_repeat1, + [185077] = 4, + ACTIONS(8745), 1, + anon_sym_SEMI, + ACTIONS(8747), 1, + sym__newline, + STATE(4863), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187566] = 4, - ACTIONS(6396), 1, + [185091] = 4, + ACTIONS(8749), 1, anon_sym_COMMA, - ACTIONS(8657), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8751), 1, + anon_sym_COLON, + STATE(4788), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187580] = 4, - ACTIONS(8300), 1, + [185105] = 4, + ACTIONS(6537), 1, + anon_sym_RPAREN, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(8659), 1, - anon_sym_in, - STATE(4586), 1, - aux_sym__patterns_repeat1, + STATE(4808), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187594] = 4, - ACTIONS(6431), 1, + [185119] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6588), 1, - anon_sym_RPAREN, - STATE(5158), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8753), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187608] = 4, - ACTIONS(8240), 1, - anon_sym_DOT, - ACTIONS(8604), 1, - anon_sym_PIPE, - ACTIONS(8661), 1, - anon_sym_COLON, + [185133] = 4, + ACTIONS(7356), 1, + anon_sym_COMMA, + ACTIONS(7358), 1, + anon_sym_RBRACE, + STATE(4916), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187622] = 4, - ACTIONS(7332), 1, + [185147] = 4, + ACTIONS(7352), 1, anon_sym_COMMA, - ACTIONS(7334), 1, + ACTIONS(7354), 1, anon_sym_RBRACE, - STATE(4822), 1, + STATE(4865), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187636] = 4, - ACTIONS(6396), 1, + [185161] = 4, + ACTIONS(5311), 1, + anon_sym_RPAREN, + ACTIONS(8755), 1, anon_sym_COMMA, - ACTIONS(8663), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + STATE(4842), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187650] = 4, - ACTIONS(7718), 1, + [185175] = 4, + ACTIONS(7657), 1, anon_sym_LPAREN, - ACTIONS(8665), 1, + ACTIONS(8757), 1, anon_sym_GT, - ACTIONS(8667), 1, + ACTIONS(8759), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187664] = 4, - ACTIONS(1285), 1, + [185189] = 4, + ACTIONS(1319), 1, sym__newline, - ACTIONS(8669), 1, + ACTIONS(8761), 1, anon_sym_SEMI, - STATE(4910), 1, + STATE(5236), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187678] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8671), 3, + [185203] = 4, + ACTIONS(8763), 1, sym__newline, - anon_sym_COLON, - anon_sym_nogil, - [187688] = 3, - ACTIONS(8675), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + ACTIONS(8765), 1, + sym__indent, + STATE(1592), 1, + sym__match_block, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8673), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [187700] = 4, - ACTIONS(3122), 1, + [185217] = 4, + ACTIONS(3213), 1, anon_sym_RBRACE, - ACTIONS(8677), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - STATE(4869), 1, + STATE(5171), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187714] = 4, - ACTIONS(6408), 1, + [185231] = 4, + ACTIONS(5323), 1, + anon_sym_RBRACK, + ACTIONS(8769), 1, + anon_sym_COMMA, + STATE(4897), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185245] = 4, + ACTIONS(8771), 1, + anon_sym_COMMA, + ACTIONS(8773), 1, + anon_sym_RBRACE, + STATE(4849), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185259] = 4, + ACTIONS(6571), 1, anon_sym_RPAREN, - ACTIONS(6410), 1, + ACTIONS(6573), 1, anon_sym_COMMA, - STATE(4831), 1, + STATE(4877), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187728] = 4, - ACTIONS(8679), 1, + [185273] = 4, + ACTIONS(8775), 1, anon_sym_RPAREN, - ACTIONS(8681), 1, + ACTIONS(8777), 1, anon_sym_COMMA, - STATE(4833), 1, + STATE(4879), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187742] = 4, - ACTIONS(6396), 1, + [185287] = 4, + ACTIONS(8779), 1, anon_sym_COMMA, - ACTIONS(8683), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8781), 1, + anon_sym_RBRACE, + STATE(4849), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187756] = 4, - ACTIONS(6892), 1, + [185301] = 4, + ACTIONS(7158), 1, anon_sym_COMMA, - ACTIONS(6894), 1, + ACTIONS(7160), 1, anon_sym_RBRACK, - STATE(4835), 1, + STATE(4882), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187770] = 4, - ACTIONS(6396), 1, + [185315] = 4, + ACTIONS(6414), 1, anon_sym_COMMA, - ACTIONS(8685), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(6426), 1, + anon_sym_RBRACE, + STATE(4994), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187784] = 4, - ACTIONS(6700), 1, - sym__newline, - ACTIONS(6742), 1, + [185329] = 4, + ACTIONS(8125), 1, + anon_sym_RBRACK, + ACTIONS(8783), 1, anon_sym_COMMA, - STATE(5063), 1, - aux_sym_cvar_def_repeat1, + STATE(4884), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187798] = 4, - ACTIONS(8122), 1, - anon_sym_RBRACK, - ACTIONS(8687), 1, + [185343] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(4838), 1, - aux_sym_type_index_repeat2, + ACTIONS(8785), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187812] = 4, - ACTIONS(5219), 1, - anon_sym_COLON, - ACTIONS(8689), 1, + [185357] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(4860), 1, - aux_sym__parameters_repeat1, + ACTIONS(8787), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187826] = 4, - ACTIONS(2879), 1, + [185371] = 4, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(8789), 1, + anon_sym_COLON, + STATE(5584), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185385] = 4, + ACTIONS(2991), 1, anon_sym_RPAREN, - ACTIONS(8691), 1, + ACTIONS(8791), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187840] = 4, - ACTIONS(7108), 1, + [185399] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8693), 1, - anon_sym_RBRACK, - STATE(4935), 1, - aux_sym_type_index_repeat1, + ACTIONS(8793), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187854] = 4, - ACTIONS(2881), 1, + [185413] = 4, + ACTIONS(2869), 1, anon_sym_RPAREN, - ACTIONS(8695), 1, + ACTIONS(8795), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187868] = 4, - ACTIONS(8697), 1, - anon_sym_COMMA, - ACTIONS(8699), 1, + [185427] = 4, + ACTIONS(7980), 1, anon_sym_RBRACK, - STATE(4967), 1, - aux_sym_subscript_repeat1, + ACTIONS(8797), 1, + anon_sym_COMMA, + STATE(4880), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187882] = 4, - ACTIONS(8701), 1, + [185441] = 4, + ACTIONS(8800), 1, anon_sym_COMMA, - ACTIONS(8703), 1, + ACTIONS(8802), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187896] = 4, - ACTIONS(8705), 1, - anon_sym_SEMI, - ACTIONS(8707), 1, - sym__newline, - STATE(4807), 1, - aux_sym__simple_statements_repeat1, + [185455] = 4, + ACTIONS(8804), 1, + anon_sym_COMMA, + ACTIONS(8806), 1, + anon_sym_RBRACK, + STATE(4773), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187910] = 4, - ACTIONS(7108), 1, + [185469] = 4, + ACTIONS(7252), 1, anon_sym_COMMA, - ACTIONS(8709), 1, + ACTIONS(8808), 1, anon_sym_RBRACK, - STATE(4935), 1, + STATE(5165), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187924] = 4, - ACTIONS(8687), 1, + [185483] = 4, + ACTIONS(8783), 1, anon_sym_COMMA, - ACTIONS(8709), 1, + ACTIONS(8808), 1, anon_sym_RBRACK, - STATE(4938), 1, + STATE(5174), 1, aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187938] = 4, - ACTIONS(8201), 1, + [185497] = 4, + ACTIONS(8370), 1, anon_sym_COMMA, - ACTIONS(8711), 1, + ACTIONS(8810), 1, anon_sym_RPAREN, - STATE(4946), 1, + STATE(5190), 1, aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187952] = 4, - ACTIONS(7917), 1, - anon_sym_COLON, - ACTIONS(8713), 1, - anon_sym_RBRACE, - STATE(5484), 1, - sym_format_specifier, + [185511] = 4, + ACTIONS(6539), 1, + anon_sym_COMMA, + ACTIONS(8812), 1, + anon_sym_RPAREN, + STATE(4808), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187966] = 2, + [185525] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8814), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7629), 3, + [185539] = 4, + ACTIONS(6539), 1, anon_sym_COMMA, + ACTIONS(8816), 1, + anon_sym_RPAREN, + STATE(4808), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185553] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(8818), 1, + anon_sym_COLON, + ACTIONS(8820), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185567] = 3, + ACTIONS(8290), 1, anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8376), 2, + anon_sym_COMMA, anon_sym_RBRACK, - [187976] = 4, - ACTIONS(8186), 1, + [185579] = 4, + ACTIONS(8300), 1, anon_sym_COMMA, - ACTIONS(8715), 1, + ACTIONS(8822), 1, anon_sym_RBRACK, - STATE(5188), 1, + STATE(5215), 1, aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [187990] = 4, - ACTIONS(7486), 1, - anon_sym_RPAREN, - ACTIONS(8717), 1, + [185593] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(4843), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188004] = 3, - ACTIONS(8195), 1, - anon_sym_LPAREN, + ACTIONS(8824), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8720), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [188016] = 4, - ACTIONS(8722), 1, + [185607] = 4, + ACTIONS(8826), 1, anon_sym_COMMA, - ACTIONS(8724), 1, + ACTIONS(8828), 1, anon_sym_RBRACE, - STATE(4852), 1, + STATE(4902), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188030] = 3, - ACTIONS(7532), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [185621] = 4, + ACTIONS(8556), 1, + sym__newline, + ACTIONS(8558), 1, + sym__indent, + STATE(1519), 1, + sym__match_block, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7534), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [188042] = 4, - ACTIONS(7108), 1, + [185635] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8378), 3, anon_sym_COMMA, - ACTIONS(8726), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(4935), 1, + [185645] = 4, + ACTIONS(7252), 1, + anon_sym_COMMA, + ACTIONS(8830), 1, + anon_sym_RBRACK, + STATE(5165), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188056] = 4, - ACTIONS(5199), 1, + [185659] = 4, + ACTIONS(8376), 1, + anon_sym_RBRACK, + ACTIONS(8832), 1, + anon_sym_COMMA, + STATE(4897), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185673] = 4, + ACTIONS(5225), 1, anon_sym_RPAREN, - ACTIONS(8728), 1, + ACTIONS(8835), 1, anon_sym_COMMA, - STATE(4891), 1, + STATE(4842), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188070] = 4, - ACTIONS(8730), 1, + [185687] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8732), 1, - anon_sym_RBRACE, - STATE(5224), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(8837), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188084] = 4, - ACTIONS(5201), 1, + [185701] = 4, + ACTIONS(5237), 1, anon_sym_RBRACK, - ACTIONS(8734), 1, + ACTIONS(8839), 1, anon_sym_COMMA, - STATE(5122), 1, + STATE(4897), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188098] = 3, - ACTIONS(7536), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [185715] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8841), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7538), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [188110] = 4, - ACTIONS(8736), 1, + [185729] = 4, + ACTIONS(8843), 1, anon_sym_COMMA, - ACTIONS(8738), 1, + ACTIONS(8845), 1, anon_sym_RBRACE, - STATE(5224), 1, + STATE(4849), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188124] = 4, - ACTIONS(8740), 1, + [185743] = 4, + ACTIONS(8847), 1, anon_sym_COMMA, - ACTIONS(8742), 1, + ACTIONS(8849), 1, anon_sym_RBRACE, - STATE(5224), 1, + STATE(4849), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188138] = 4, - ACTIONS(8560), 1, - anon_sym_LBRACK, - ACTIONS(8744), 1, + [185757] = 4, + ACTIONS(8851), 1, + anon_sym_COMMA, + ACTIONS(8853), 1, anon_sym_COLON, - STATE(5535), 1, - sym_external_definition, + STATE(5092), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188152] = 3, - ACTIONS(7718), 1, - anon_sym_LPAREN, + [185771] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8855), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185785] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8720), 2, + ACTIONS(8478), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON, - [188164] = 4, - ACTIONS(5207), 1, + [185795] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8857), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [185809] = 4, + ACTIONS(5279), 1, anon_sym_RPAREN, - ACTIONS(8746), 1, + ACTIONS(8859), 1, anon_sym_COMMA, - STATE(4891), 1, + STATE(4842), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188178] = 4, - ACTIONS(8560), 1, - anon_sym_LBRACK, - ACTIONS(8748), 1, - anon_sym_COLON, - STATE(5725), 1, - sym_external_definition, + [185823] = 4, + ACTIONS(1343), 1, + sym__newline, + ACTIONS(8861), 1, + anon_sym_SEMI, + STATE(5236), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188192] = 4, - ACTIONS(6431), 1, + [185837] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(6542), 1, - anon_sym_RPAREN, - STATE(5158), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(8863), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188206] = 3, - ACTIONS(7540), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7542), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [188218] = 4, - ACTIONS(8750), 1, + [185851] = 4, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(8753), 1, - anon_sym_COLON, - STATE(4860), 1, - aux_sym__parameters_repeat1, + ACTIONS(6690), 1, + anon_sym_RPAREN, + STATE(4808), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188232] = 4, - ACTIONS(8755), 1, - anon_sym_SEMI, - ACTIONS(8757), 1, + [185865] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8865), 1, sym__newline, - STATE(4870), 1, - aux_sym__simple_statements_repeat1, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188246] = 4, - ACTIONS(7797), 1, - anon_sym_RBRACK, - ACTIONS(8759), 1, + [185879] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(4862), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(8867), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188260] = 3, - ACTIONS(7856), 1, - anon_sym_LPAREN, + [185893] = 4, + ACTIONS(8869), 1, + anon_sym_SEMI, + ACTIONS(8871), 1, + sym__newline, + STATE(4920), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8762), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [188272] = 4, - ACTIONS(6431), 1, + [185907] = 4, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(6472), 1, + ACTIONS(6587), 1, anon_sym_RPAREN, - STATE(5158), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188286] = 4, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8764), 1, - anon_sym_COLON, - ACTIONS(8766), 1, - sym__newline, + [185921] = 4, + ACTIONS(3221), 1, + anon_sym_RBRACE, + ACTIONS(8873), 1, + anon_sym_COMMA, + STATE(5171), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188300] = 4, - ACTIONS(7355), 1, - anon_sym_COMMA, - ACTIONS(7357), 1, + [185935] = 4, + ACTIONS(3229), 1, anon_sym_RBRACE, - STATE(4872), 1, + ACTIONS(8875), 1, + anon_sym_COMMA, + STATE(5171), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188314] = 4, - ACTIONS(7102), 1, - sym_identifier, - STATE(4642), 1, - sym_dotted_name, - STATE(5148), 1, - sym_aliased_import, + [185949] = 4, + ACTIONS(7374), 1, + anon_sym_COMMA, + ACTIONS(7376), 1, + anon_sym_RBRACE, + STATE(4922), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188328] = 4, - ACTIONS(7718), 1, + [185963] = 4, + ACTIONS(7657), 1, anon_sym_LPAREN, - ACTIONS(8768), 1, + ACTIONS(8877), 1, anon_sym_GT, - ACTIONS(8770), 1, + ACTIONS(8879), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188342] = 4, - ACTIONS(8772), 1, - anon_sym_COMMA, - ACTIONS(8775), 1, - anon_sym_RBRACE, - STATE(4869), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188356] = 4, - ACTIONS(1289), 1, + [185977] = 4, + ACTIONS(1323), 1, sym__newline, - ACTIONS(8777), 1, + ACTIONS(8881), 1, anon_sym_SEMI, - STATE(4910), 1, + STATE(5236), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188370] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(8779), 1, + [185991] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(8883), 1, + anon_sym_COLON, + ACTIONS(8885), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188384] = 4, - ACTIONS(3128), 1, + [186005] = 4, + ACTIONS(3217), 1, anon_sym_RBRACE, - ACTIONS(8781), 1, + ACTIONS(8887), 1, anon_sym_COMMA, - STATE(4869), 1, + STATE(5171), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188398] = 3, - ACTIONS(8360), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8312), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [188410] = 4, - ACTIONS(6396), 1, + [186019] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8783), 1, + ACTIONS(8889), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188424] = 4, - ACTIONS(6478), 1, + [186033] = 4, + ACTIONS(6595), 1, anon_sym_RPAREN, - ACTIONS(6480), 1, + ACTIONS(6597), 1, anon_sym_COMMA, - STATE(4880), 1, + STATE(4929), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188438] = 4, - ACTIONS(8785), 1, + [186047] = 4, + ACTIONS(8891), 1, anon_sym_RPAREN, - ACTIONS(8787), 1, + ACTIONS(8893), 1, anon_sym_COMMA, - STATE(4882), 1, + STATE(4930), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188452] = 4, - ACTIONS(7074), 1, + [186061] = 4, + ACTIONS(5283), 1, + anon_sym_RPAREN, + ACTIONS(8895), 1, anon_sym_COMMA, - ACTIONS(7076), 1, - anon_sym_RBRACK, - STATE(4884), 1, - aux_sym_subscript_repeat1, + STATE(4842), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188466] = 4, - ACTIONS(8789), 1, - anon_sym_SEMI, - ACTIONS(8791), 1, - sym__newline, - STATE(4922), 1, - aux_sym__simple_statements_repeat1, + [186075] = 4, + ACTIONS(6944), 1, + anon_sym_COMMA, + ACTIONS(6946), 1, + anon_sym_RBRACK, + STATE(4933), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188480] = 4, - ACTIONS(8240), 1, - anon_sym_DOT, - ACTIONS(8604), 1, - anon_sym_PIPE, - ACTIONS(8793), 1, + [186089] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(8897), 1, anon_sym_COLON, + ACTIONS(8899), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188494] = 4, - ACTIONS(2891), 1, + [186103] = 4, + ACTIONS(3001), 1, anon_sym_RPAREN, - ACTIONS(8795), 1, + ACTIONS(8901), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188508] = 4, - ACTIONS(8797), 1, - anon_sym_COMMA, - ACTIONS(8799), 1, - anon_sym_RBRACE, - STATE(5224), 1, - aux_sym_dict_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [188522] = 4, - ACTIONS(2893), 1, + [186117] = 4, + ACTIONS(3003), 1, anon_sym_RPAREN, - ACTIONS(8801), 1, + ACTIONS(8903), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188536] = 4, - ACTIONS(8803), 1, - anon_sym_COMMA, - ACTIONS(8805), 1, - anon_sym_RBRACK, - STATE(4967), 1, - aux_sym_subscript_repeat1, + [186131] = 4, + ACTIONS(8348), 1, + anon_sym_DOT, + ACTIONS(8905), 1, + anon_sym_COLON, + ACTIONS(8907), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188550] = 4, - ACTIONS(8807), 1, + [186145] = 4, + ACTIONS(8909), 1, anon_sym_COMMA, - ACTIONS(8809), 1, + ACTIONS(8911), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188564] = 4, - ACTIONS(7108), 1, + [186159] = 4, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(8811), 1, + ACTIONS(8915), 1, anon_sym_RBRACK, - STATE(4935), 1, - aux_sym_type_index_repeat1, + STATE(4773), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188578] = 4, - ACTIONS(6426), 1, - anon_sym_RPAREN, - ACTIONS(6431), 1, - anon_sym_COMMA, - STATE(5158), 1, - aux_sym__collection_elements_repeat1, + [186173] = 4, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_COLON, + STATE(5591), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188592] = 4, - ACTIONS(6396), 1, + [186187] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8813), 1, + ACTIONS(8919), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188606] = 4, - ACTIONS(8318), 1, - anon_sym_RPAREN, - ACTIONS(8815), 1, + [186201] = 3, + ACTIONS(1480), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1482), 2, + anon_sym_except_STAR, + anon_sym_finally, + [186213] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(4888), 1, - aux_sym__import_list_repeat1, + ACTIONS(8921), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188620] = 3, - ACTIONS(8172), 1, - anon_sym_as, + [186227] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(8923), 1, + anon_sym_COLON, + ACTIONS(8925), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8275), 2, - anon_sym_RPAREN, + [186241] = 4, + ACTIONS(6795), 1, + sym__newline, + ACTIONS(6805), 1, anon_sym_COMMA, - [188632] = 2, + STATE(5088), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8325), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [188642] = 4, - ACTIONS(8275), 1, - anon_sym_RPAREN, - ACTIONS(8818), 1, + [186255] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(4891), 1, - aux_sym_case_clause_repeat1, + ACTIONS(8927), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188656] = 2, + [186269] = 4, + ACTIONS(8929), 1, + anon_sym_SEMI, + ACTIONS(8931), 1, + sym__newline, + STATE(4952), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7629), 3, - anon_sym_RPAREN, + [186283] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - anon_sym_as, - [188666] = 4, - ACTIONS(8821), 1, - anon_sym_SEMI, - ACTIONS(8823), 1, + ACTIONS(8933), 1, sym__newline, - STATE(4900), 1, - aux_sym__simple_statements_repeat1, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188680] = 4, - ACTIONS(8825), 1, - anon_sym_RPAREN, - ACTIONS(8827), 1, + [186297] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(5159), 1, - aux_sym__parameters_repeat1, + ACTIONS(8935), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188694] = 4, - ACTIONS(6431), 1, + [186311] = 4, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(6490), 1, + ACTIONS(6615), 1, anon_sym_RPAREN, - STATE(5158), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188708] = 4, - ACTIONS(8560), 1, - anon_sym_LBRACK, - ACTIONS(8829), 1, - anon_sym_COLON, - STATE(5708), 1, - sym_external_definition, + [186325] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8937), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186339] = 3, + ACTIONS(7698), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7700), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [186351] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8939), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188722] = 4, - ACTIONS(7359), 1, + [186365] = 4, + ACTIONS(7386), 1, anon_sym_COMMA, - ACTIONS(7361), 1, + ACTIONS(7388), 1, anon_sym_RBRACE, - STATE(4902), 1, + STATE(4954), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188736] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(8831), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + [186379] = 4, + ACTIONS(7690), 1, + anon_sym_PIPE, + ACTIONS(8941), 1, + anon_sym_COLON, + STATE(4299), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188750] = 4, - ACTIONS(7718), 1, + [186393] = 4, + ACTIONS(7657), 1, anon_sym_LPAREN, - ACTIONS(8833), 1, + ACTIONS(8943), 1, anon_sym_GT, - ACTIONS(8835), 1, + ACTIONS(8945), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188764] = 4, - ACTIONS(1295), 1, + [186407] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8947), 1, sym__newline, - ACTIONS(8837), 1, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186421] = 4, + ACTIONS(1327), 1, + sym__newline, + ACTIONS(8949), 1, anon_sym_SEMI, - STATE(4910), 1, + STATE(5236), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188778] = 4, - ACTIONS(8186), 1, + [186435] = 4, + ACTIONS(7649), 1, + anon_sym_RPAREN, + ACTIONS(8951), 1, anon_sym_COMMA, - ACTIONS(8839), 1, - anon_sym_RBRACK, - STATE(5188), 1, - aux_sym_external_definition_repeat1, + STATE(4953), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188792] = 4, - ACTIONS(3124), 1, + [186449] = 4, + ACTIONS(3223), 1, anon_sym_RBRACE, - ACTIONS(8841), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - STATE(4869), 1, + STATE(5171), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188806] = 4, - ACTIONS(7231), 1, + [186463] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(7233), 1, - anon_sym_RBRACE, - STATE(4945), 1, - aux_sym_dictionary_repeat1, + ACTIONS(8956), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188820] = 4, - ACTIONS(6396), 1, + [186477] = 4, + ACTIONS(6895), 1, + anon_sym_RBRACK, + ACTIONS(8958), 1, anon_sym_COMMA, - ACTIONS(8843), 1, + STATE(4956), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186491] = 4, + ACTIONS(8961), 1, + anon_sym_LPAREN, + ACTIONS(8963), 1, + anon_sym_COLON, + ACTIONS(8965), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188834] = 4, - ACTIONS(6492), 1, + [186505] = 4, + ACTIONS(6617), 1, anon_sym_RPAREN, - ACTIONS(6494), 1, + ACTIONS(6619), 1, anon_sym_COMMA, - STATE(4911), 1, + STATE(4965), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188848] = 4, - ACTIONS(8845), 1, + [186519] = 4, + ACTIONS(8967), 1, anon_sym_RPAREN, - ACTIONS(8847), 1, + ACTIONS(8969), 1, anon_sym_COMMA, - STATE(4912), 1, + STATE(4967), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188862] = 3, - ACTIONS(5815), 1, + [186533] = 3, + ACTIONS(8973), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8971), 2, + sym__newline, + anon_sym_SEMI, + [186545] = 4, + ACTIONS(8144), 1, anon_sym_COLON, + ACTIONS(8148), 1, + sym__newline, + ACTIONS(8975), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5813), 2, - anon_sym_RPAREN, + [186559] = 4, + ACTIONS(7071), 1, anon_sym_COMMA, - [188874] = 4, - ACTIONS(6947), 1, - anon_sym_COMMA, - ACTIONS(6949), 1, + ACTIONS(7073), 1, anon_sym_RBRACK, - STATE(4915), 1, + STATE(4970), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188888] = 4, - ACTIONS(8687), 1, + [186573] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8811), 1, - anon_sym_RBRACK, - STATE(4938), 1, - aux_sym_type_index_repeat2, + ACTIONS(8977), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188902] = 4, - ACTIONS(8849), 1, - anon_sym_SEMI, - ACTIONS(8852), 1, + [186587] = 4, + ACTIONS(8148), 1, sym__newline, - STATE(4910), 1, - aux_sym__simple_statements_repeat1, + ACTIONS(8979), 1, + anon_sym_LPAREN, + ACTIONS(8981), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188916] = 4, - ACTIONS(2903), 1, + [186601] = 4, + ACTIONS(3013), 1, anon_sym_RPAREN, - ACTIONS(8854), 1, + ACTIONS(8983), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188930] = 4, - ACTIONS(2905), 1, + [186615] = 4, + ACTIONS(8985), 1, + anon_sym_COLON, + ACTIONS(8987), 1, + anon_sym_nogil, + ACTIONS(8989), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186629] = 4, + ACTIONS(3015), 1, anon_sym_RPAREN, - ACTIONS(8856), 1, + ACTIONS(8991), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188944] = 4, - ACTIONS(7718), 1, - anon_sym_LPAREN, - ACTIONS(8858), 1, - anon_sym_GT, - ACTIONS(8860), 1, - anon_sym_QMARK, + [186643] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(8993), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188958] = 4, - ACTIONS(8862), 1, + [186657] = 4, + ACTIONS(8995), 1, anon_sym_COMMA, - ACTIONS(8864), 1, + ACTIONS(8997), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188972] = 4, - ACTIONS(8866), 1, + [186671] = 4, + ACTIONS(8999), 1, anon_sym_COMMA, - ACTIONS(8868), 1, + ACTIONS(9001), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [188986] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(8870), 1, + [186685] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(9003), 1, + anon_sym_COLON, + ACTIONS(9005), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189000] = 4, - ACTIONS(6396), 1, + [186699] = 4, + ACTIONS(2751), 1, + anon_sym_RBRACK, + ACTIONS(9007), 1, + anon_sym_COMMA, + STATE(4880), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186713] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8872), 1, + ACTIONS(9009), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189014] = 4, - ACTIONS(3415), 1, - anon_sym_RPAREN, - ACTIONS(8874), 1, + [186727] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(5155), 1, - aux_sym_with_clause_repeat1, + ACTIONS(9011), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189028] = 4, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8876), 1, - anon_sym_COLON, - ACTIONS(8878), 1, + [186741] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(9013), 1, sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189042] = 4, - ACTIONS(8880), 1, - anon_sym_SEMI, - ACTIONS(8882), 1, + [186755] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(9015), 1, sym__newline, - STATE(4926), 1, - aux_sym__simple_statements_repeat1, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189056] = 4, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8884), 1, + [186769] = 4, + ACTIONS(8348), 1, + anon_sym_DOT, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(9017), 1, anon_sym_COLON, - ACTIONS(8886), 1, - sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189070] = 4, - ACTIONS(1311), 1, + [186783] = 4, + ACTIONS(9019), 1, + anon_sym_COMMA, + ACTIONS(9021), 1, + anon_sym_RBRACE, + STATE(5012), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186797] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(9023), 1, sym__newline, - ACTIONS(8888), 1, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186811] = 4, + ACTIONS(9025), 1, anon_sym_SEMI, - STATE(4910), 1, + ACTIONS(9027), 1, + sym__newline, + STATE(4988), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189084] = 4, - ACTIONS(6431), 1, + [186825] = 3, + ACTIONS(8430), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(8342), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(6516), 1, + [186837] = 4, + ACTIONS(6539), 1, + anon_sym_COMMA, + ACTIONS(6631), 1, anon_sym_RPAREN, - STATE(5158), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189098] = 4, - ACTIONS(7365), 1, + [186851] = 4, + ACTIONS(6819), 1, + sym__newline, + ACTIONS(6825), 1, + anon_sym_COMMA, + STATE(5088), 1, + aux_sym_cvar_def_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186865] = 4, + ACTIONS(7402), 1, anon_sym_COMMA, - ACTIONS(7367), 1, + ACTIONS(7404), 1, anon_sym_RBRACE, - STATE(4927), 1, + STATE(4989), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189112] = 4, - ACTIONS(7718), 1, + [186879] = 4, + ACTIONS(8763), 1, + sym__newline, + ACTIONS(8765), 1, + sym__indent, + STATE(1443), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186893] = 4, + ACTIONS(7657), 1, anon_sym_LPAREN, - ACTIONS(8890), 1, + ACTIONS(9029), 1, anon_sym_GT, - ACTIONS(8892), 1, + ACTIONS(9031), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189126] = 4, - ACTIONS(1301), 1, + [186907] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(9033), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [186921] = 4, + ACTIONS(1329), 1, sym__newline, - ACTIONS(8894), 1, + ACTIONS(9035), 1, anon_sym_SEMI, - STATE(4910), 1, + STATE(5236), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189140] = 4, - ACTIONS(3137), 1, + [186935] = 4, + ACTIONS(3235), 1, anon_sym_RBRACE, - ACTIONS(8896), 1, + ACTIONS(9037), 1, anon_sym_COMMA, - STATE(4869), 1, + STATE(5171), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189154] = 4, - ACTIONS(6431), 1, + [186949] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(8898), 1, - anon_sym_RPAREN, - STATE(5158), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(9039), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189168] = 4, - ACTIONS(6431), 1, - anon_sym_COMMA, - ACTIONS(8900), 1, - anon_sym_RPAREN, - STATE(5158), 1, - aux_sym__collection_elements_repeat1, + [186963] = 3, + ACTIONS(8327), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189182] = 4, - ACTIONS(6538), 1, + ACTIONS(9041), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [186975] = 4, + ACTIONS(6658), 1, anon_sym_RPAREN, - ACTIONS(6540), 1, + ACTIONS(6660), 1, anon_sym_COMMA, - STATE(4936), 1, + STATE(4997), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189196] = 4, - ACTIONS(8902), 1, + [186989] = 4, + ACTIONS(9043), 1, anon_sym_RPAREN, - ACTIONS(8904), 1, + ACTIONS(9045), 1, anon_sym_COMMA, - STATE(4937), 1, + STATE(4998), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189210] = 4, - ACTIONS(3143), 1, - anon_sym_RBRACK, - ACTIONS(8906), 1, + [187003] = 4, + ACTIONS(3103), 1, + anon_sym_RBRACE, + ACTIONS(9047), 1, anon_sym_COMMA, - STATE(4980), 1, - aux_sym_assert_statement_repeat1, + STATE(5082), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189224] = 4, - ACTIONS(6830), 1, + [187017] = 4, + ACTIONS(7077), 1, anon_sym_COMMA, - ACTIONS(6834), 1, + ACTIONS(7079), 1, anon_sym_RBRACK, - STATE(4940), 1, + STATE(5001), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189238] = 3, - ACTIONS(5817), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(5813), 2, + [187031] = 4, + ACTIONS(8354), 1, anon_sym_RPAREN, + ACTIONS(9049), 1, anon_sym_COMMA, - [189250] = 4, - ACTIONS(8332), 1, - anon_sym_RBRACK, - ACTIONS(8908), 1, - anon_sym_COMMA, - STATE(4935), 1, - aux_sym_type_index_repeat1, + STATE(4996), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189264] = 4, - ACTIONS(2913), 1, + [187045] = 4, + ACTIONS(3023), 1, anon_sym_RPAREN, - ACTIONS(8911), 1, + ACTIONS(9052), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189278] = 4, - ACTIONS(2915), 1, + [187059] = 4, + ACTIONS(3025), 1, anon_sym_RPAREN, - ACTIONS(8913), 1, + ACTIONS(9054), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189292] = 4, - ACTIONS(8915), 1, + [187073] = 4, + ACTIONS(5263), 1, + anon_sym_RPAREN, + ACTIONS(9056), 1, anon_sym_COMMA, - ACTIONS(8918), 1, - anon_sym_RBRACK, - STATE(4938), 1, - aux_sym_type_index_repeat2, + STATE(4842), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189306] = 4, - ACTIONS(8920), 1, + [187087] = 4, + ACTIONS(9058), 1, anon_sym_COMMA, - ACTIONS(8922), 1, + ACTIONS(9060), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189320] = 4, - ACTIONS(8924), 1, + [187101] = 4, + ACTIONS(9062), 1, anon_sym_COMMA, - ACTIONS(8926), 1, + ACTIONS(9064), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189334] = 3, - ACTIONS(1526), 1, - anon_sym_except, + [187115] = 4, + ACTIONS(5273), 1, + anon_sym_RBRACK, + ACTIONS(9066), 1, + anon_sym_COMMA, + STATE(4897), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1528), 2, - anon_sym_except_STAR, - anon_sym_finally, - [189346] = 3, - ACTIONS(1522), 1, - anon_sym_except, + [187129] = 4, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(9068), 1, + anon_sym_COLON, + STATE(5688), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1524), 2, - anon_sym_except_STAR, - anon_sym_finally, - [189358] = 4, - ACTIONS(6396), 1, + [187143] = 4, + ACTIONS(6603), 1, + anon_sym_RPAREN, + ACTIONS(6605), 1, anon_sym_COMMA, - ACTIONS(8928), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189372] = 3, - ACTIONS(8195), 1, - anon_sym_LPAREN, + STATE(5117), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8930), 2, + [187157] = 4, + ACTIONS(9070), 1, anon_sym_RPAREN, + ACTIONS(9072), 1, anon_sym_COMMA, - [189384] = 4, - ACTIONS(3087), 1, - anon_sym_RBRACE, - ACTIONS(8932), 1, - anon_sym_COMMA, - STATE(4869), 1, - aux_sym_dictionary_repeat1, + STATE(5169), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189398] = 4, - ACTIONS(8930), 1, - anon_sym_RPAREN, - ACTIONS(8934), 1, - anon_sym_COMMA, - STATE(4946), 1, - aux_sym_function_pointer_type_repeat1, + [187171] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189412] = 4, - ACTIONS(8937), 1, + ACTIONS(4058), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [187181] = 4, + ACTIONS(9074), 1, anon_sym_SEMI, - ACTIONS(8939), 1, + ACTIONS(9076), 1, sym__newline, - STATE(4951), 1, + STATE(5013), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189426] = 4, - ACTIONS(6431), 1, + [187195] = 4, + ACTIONS(9078), 1, + anon_sym_RPAREN, + ACTIONS(9080), 1, + anon_sym_COMMA, + STATE(5120), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [187209] = 4, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(6566), 1, + ACTIONS(6673), 1, anon_sym_RPAREN, - STATE(5158), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189440] = 4, - ACTIONS(7377), 1, + [187223] = 4, + ACTIONS(7412), 1, anon_sym_COMMA, - ACTIONS(7379), 1, + ACTIONS(7414), 1, anon_sym_RBRACE, - STATE(4953), 1, + STATE(5014), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189454] = 4, - ACTIONS(7718), 1, + [187237] = 4, + ACTIONS(7657), 1, anon_sym_LPAREN, - ACTIONS(8941), 1, + ACTIONS(9082), 1, anon_sym_GT, - ACTIONS(8943), 1, + ACTIONS(9084), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189468] = 4, - ACTIONS(1303), 1, - sym__newline, - ACTIONS(8945), 1, - anon_sym_SEMI, - STATE(4910), 1, - aux_sym__simple_statements_repeat1, + [187251] = 4, + ACTIONS(9086), 1, + anon_sym_COMMA, + ACTIONS(9088), 1, + anon_sym_RBRACE, + STATE(4849), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189482] = 4, - ACTIONS(7108), 1, - anon_sym_COMMA, - ACTIONS(8947), 1, - anon_sym_RBRACK, - STATE(4935), 1, - aux_sym_type_index_repeat1, + [187265] = 4, + ACTIONS(1335), 1, + sym__newline, + ACTIONS(9090), 1, + anon_sym_SEMI, + STATE(5236), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189496] = 4, - ACTIONS(3095), 1, + [187279] = 4, + ACTIONS(3245), 1, anon_sym_RBRACE, - ACTIONS(8949), 1, + ACTIONS(9092), 1, anon_sym_COMMA, - STATE(4869), 1, + STATE(5171), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189510] = 4, - ACTIONS(8753), 1, - anon_sym_RPAREN, - ACTIONS(8951), 1, - anon_sym_COMMA, - STATE(4954), 1, - aux_sym__parameters_repeat1, + [187293] = 4, + ACTIONS(7657), 1, + anon_sym_LPAREN, + ACTIONS(9094), 1, + anon_sym_GT, + ACTIONS(9096), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189524] = 4, - ACTIONS(8300), 1, + [187307] = 4, + ACTIONS(3103), 1, + anon_sym_RBRACK, + ACTIONS(9098), 1, anon_sym_COMMA, - ACTIONS(8954), 1, - anon_sym_in, - STATE(4586), 1, - aux_sym__patterns_repeat1, + STATE(5047), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189538] = 4, - ACTIONS(7338), 1, - anon_sym_RPAREN, - ACTIONS(7340), 1, + [187321] = 4, + ACTIONS(6906), 1, anon_sym_COMMA, - STATE(4962), 1, - aux_sym_argument_list_repeat1, + ACTIONS(6910), 1, + anon_sym_RBRACK, + STATE(5132), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189552] = 4, - ACTIONS(8956), 1, + [187335] = 4, + ACTIONS(7360), 1, anon_sym_RPAREN, - ACTIONS(8958), 1, + ACTIONS(7362), 1, anon_sym_COMMA, - STATE(4963), 1, + STATE(5023), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189566] = 4, - ACTIONS(8687), 1, + [187349] = 4, + ACTIONS(9100), 1, + anon_sym_RPAREN, + ACTIONS(9102), 1, anon_sym_COMMA, - ACTIONS(8947), 1, - anon_sym_RBRACK, - STATE(4938), 1, - aux_sym_type_index_repeat2, + STATE(5024), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189580] = 4, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(8960), 1, + [187363] = 4, + ACTIONS(7992), 1, anon_sym_COLON, - ACTIONS(8962), 1, - sym__newline, + ACTIONS(9104), 1, + anon_sym_RBRACE, + STATE(5725), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189594] = 4, - ACTIONS(6836), 1, + [187377] = 4, + ACTIONS(6926), 1, anon_sym_COMMA, - ACTIONS(6838), 1, + ACTIONS(6928), 1, anon_sym_RBRACK, - STATE(4966), 1, + STATE(5027), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189608] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(8964), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + [187391] = 4, + ACTIONS(7992), 1, + anon_sym_COLON, + ACTIONS(9106), 1, + anon_sym_RBRACE, + STATE(5553), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189622] = 4, - ACTIONS(2925), 1, + [187405] = 4, + ACTIONS(3033), 1, anon_sym_RPAREN, - ACTIONS(8966), 1, + ACTIONS(9108), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189636] = 4, - ACTIONS(2927), 1, + [187419] = 4, + ACTIONS(3035), 1, anon_sym_RPAREN, - ACTIONS(8968), 1, + ACTIONS(9110), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189650] = 4, - ACTIONS(6058), 1, - sym_identifier, - ACTIONS(8970), 1, - anon_sym_DOT, - STATE(4964), 1, - aux_sym_type_qualifier_repeat1, + [187433] = 4, + ACTIONS(8556), 1, + sym__newline, + ACTIONS(8558), 1, + sym__indent, + STATE(1429), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189664] = 4, - ACTIONS(8973), 1, + [187447] = 4, + ACTIONS(9112), 1, anon_sym_COMMA, - ACTIONS(8975), 1, + ACTIONS(9114), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189678] = 4, - ACTIONS(8977), 1, + [187461] = 4, + ACTIONS(9116), 1, anon_sym_COMMA, - ACTIONS(8979), 1, + ACTIONS(9118), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189692] = 4, - ACTIONS(8981), 1, + [187475] = 4, + ACTIONS(8300), 1, anon_sym_COMMA, - ACTIONS(8984), 1, + ACTIONS(9120), 1, anon_sym_RBRACK, - STATE(4967), 1, - aux_sym_subscript_repeat1, + STATE(5215), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189706] = 4, - ACTIONS(8092), 1, - anon_sym_COLON, - ACTIONS(8096), 1, - sym__newline, - ACTIONS(8986), 1, - sym_identifier, + [187489] = 4, + ACTIONS(9122), 1, + anon_sym_COMMA, + ACTIONS(9124), 1, + anon_sym_RBRACE, + STATE(4849), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189720] = 4, - ACTIONS(8096), 1, - sym__newline, - ACTIONS(8988), 1, - anon_sym_LPAREN, - ACTIONS(8990), 1, - anon_sym_COLON, + [187503] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189734] = 4, - ACTIONS(6431), 1, + ACTIONS(9126), 3, + sym__newline, + anon_sym_COLON, + anon_sym_nogil, + [187513] = 4, + ACTIONS(7252), 1, anon_sym_COMMA, - ACTIONS(8992), 1, - anon_sym_RPAREN, - STATE(5158), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(9128), 1, + anon_sym_RBRACK, + STATE(5165), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189748] = 4, - ACTIONS(6396), 1, + [187527] = 4, + ACTIONS(8783), 1, anon_sym_COMMA, - ACTIONS(8994), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9128), 1, + anon_sym_RBRACK, + STATE(5174), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189762] = 2, + [187541] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8382), 3, + ACTIONS(8342), 3, sym__newline, anon_sym_SEMI, anon_sym_COMMA, - [189772] = 4, - ACTIONS(6771), 1, - sym__newline, - ACTIONS(6785), 1, - anon_sym_COMMA, - STATE(5063), 1, - aux_sym_cvar_def_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189786] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(8996), 1, + [187551] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(9130), 1, + anon_sym_COLON, + ACTIONS(9132), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189800] = 4, - ACTIONS(5233), 1, - anon_sym_RPAREN, - ACTIONS(8998), 1, - anon_sym_COMMA, - STATE(4891), 1, - aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189814] = 4, - ACTIONS(7718), 1, + [187565] = 4, + ACTIONS(7657), 1, anon_sym_LPAREN, - ACTIONS(9000), 1, + ACTIONS(9134), 1, anon_sym_GT, - ACTIONS(9002), 1, + ACTIONS(9136), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189828] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9004), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [189842] = 4, - ACTIONS(6568), 1, + [187579] = 4, + ACTIONS(6675), 1, anon_sym_RPAREN, - ACTIONS(6570), 1, + ACTIONS(6677), 1, anon_sym_COMMA, - STATE(4982), 1, + STATE(5042), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189856] = 4, - ACTIONS(9006), 1, + [187593] = 4, + ACTIONS(9138), 1, anon_sym_RPAREN, - ACTIONS(9008), 1, + ACTIONS(9140), 1, anon_sym_COMMA, - STATE(4983), 1, + STATE(5043), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189870] = 4, - ACTIONS(6775), 1, - anon_sym_RBRACK, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(4980), 1, - aux_sym_assert_statement_repeat1, + [187607] = 4, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(9142), 1, + anon_sym_COLON, + STATE(5540), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189884] = 4, - ACTIONS(6951), 1, + [187621] = 4, + ACTIONS(7061), 1, anon_sym_COMMA, - ACTIONS(6953), 1, + ACTIONS(7063), 1, anon_sym_RBRACK, - STATE(4985), 1, + STATE(5046), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189898] = 4, - ACTIONS(2933), 1, + [187635] = 3, + ACTIONS(9146), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9144), 2, + sym__newline, + anon_sym_COMMA, + [187647] = 4, + ACTIONS(9148), 1, anon_sym_RPAREN, - ACTIONS(9013), 1, + ACTIONS(9150), 1, anon_sym_COMMA, - STATE(4843), 1, - aux_sym_argument_list_repeat1, + STATE(5041), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189912] = 4, - ACTIONS(2935), 1, + [187661] = 4, + ACTIONS(3041), 1, anon_sym_RPAREN, - ACTIONS(9015), 1, + ACTIONS(9153), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189926] = 4, - ACTIONS(9017), 1, + [187675] = 4, + ACTIONS(3043), 1, + anon_sym_RPAREN, + ACTIONS(9155), 1, anon_sym_COMMA, - ACTIONS(9019), 1, - anon_sym_RBRACK, - STATE(4967), 1, - aux_sym_subscript_repeat1, + STATE(4953), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189940] = 4, - ACTIONS(9021), 1, + [187689] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9023), 1, - anon_sym_RBRACK, - STATE(4967), 1, - aux_sym_subscript_repeat1, + ACTIONS(9157), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189954] = 4, - ACTIONS(8308), 1, - anon_sym_RPAREN, - ACTIONS(9025), 1, + [187703] = 4, + ACTIONS(9159), 1, anon_sym_COMMA, - STATE(4888), 1, - aux_sym__import_list_repeat1, + ACTIONS(9161), 1, + anon_sym_RBRACK, + STATE(4773), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189968] = 4, - ACTIONS(6396), 1, + [187717] = 4, + ACTIONS(9163), 1, anon_sym_COMMA, - ACTIONS(9027), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9165), 1, + anon_sym_RBRACK, + STATE(4773), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189982] = 4, - ACTIONS(8308), 1, - anon_sym_RPAREN, - ACTIONS(9029), 1, + [187731] = 4, + ACTIONS(7613), 1, + anon_sym_RBRACK, + ACTIONS(9167), 1, anon_sym_COMMA, - STATE(4888), 1, - aux_sym__import_list_repeat1, + STATE(5047), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [189996] = 4, - ACTIONS(5157), 1, - anon_sym_RBRACK, - ACTIONS(9031), 1, + [187745] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(5122), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9170), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190010] = 4, - ACTIONS(8201), 1, + [187759] = 4, + ACTIONS(8370), 1, anon_sym_COMMA, - ACTIONS(9033), 1, + ACTIONS(9172), 1, anon_sym_RPAREN, - STATE(4946), 1, + STATE(5190), 1, aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190024] = 4, - ACTIONS(6396), 1, + [187773] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9035), 1, + ACTIONS(9174), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190038] = 4, - ACTIONS(6582), 1, - anon_sym_RPAREN, - ACTIONS(6584), 1, + [187787] = 4, + ACTIONS(5725), 1, + anon_sym_RBRACK, + ACTIONS(9176), 1, anon_sym_COMMA, - STATE(5065), 1, - aux_sym_argument_list_repeat1, + STATE(5051), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190052] = 4, - ACTIONS(9037), 1, - anon_sym_RPAREN, - ACTIONS(9039), 1, - anon_sym_COMMA, - STATE(5068), 1, - aux_sym_argument_list_repeat1, + [187801] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190066] = 4, - ACTIONS(7371), 1, + ACTIONS(4058), 3, anon_sym_RPAREN, - ACTIONS(7373), 1, anon_sym_COMMA, - STATE(4999), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190080] = 4, - ACTIONS(9041), 1, + anon_sym_EQ, + [187811] = 4, + ACTIONS(7408), 1, anon_sym_RPAREN, - ACTIONS(9043), 1, + ACTIONS(7410), 1, anon_sym_COMMA, - STATE(5001), 1, + STATE(5057), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190094] = 4, - ACTIONS(6396), 1, + [187825] = 4, + ACTIONS(9179), 1, + anon_sym_RPAREN, + ACTIONS(9181), 1, anon_sym_COMMA, - ACTIONS(9045), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + STATE(5059), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190108] = 4, - ACTIONS(7034), 1, + [187839] = 4, + ACTIONS(7125), 1, anon_sym_COMMA, - ACTIONS(7036), 1, + ACTIONS(7127), 1, anon_sym_RBRACK, - STATE(5004), 1, + STATE(5061), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190122] = 4, - ACTIONS(2993), 1, - anon_sym_RBRACK, - ACTIONS(9047), 1, + [187853] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(5030), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(9183), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190136] = 4, - ACTIONS(2939), 1, + [187867] = 4, + ACTIONS(3049), 1, anon_sym_RPAREN, - ACTIONS(9049), 1, + ACTIONS(9185), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190150] = 2, + [187881] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5748), 3, + ACTIONS(5836), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ, - [190160] = 4, - ACTIONS(2941), 1, + [187891] = 4, + ACTIONS(3051), 1, anon_sym_RPAREN, - ACTIONS(9051), 1, + ACTIONS(9187), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190174] = 4, - ACTIONS(6888), 1, - anon_sym_COMMA, - ACTIONS(6890), 1, - anon_sym_RBRACK, - STATE(5076), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190188] = 4, - ACTIONS(9053), 1, + [187905] = 4, + ACTIONS(9189), 1, anon_sym_COMMA, - ACTIONS(9055), 1, + ACTIONS(9191), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190202] = 4, - ACTIONS(9057), 1, + [187919] = 4, + ACTIONS(9193), 1, anon_sym_COMMA, - ACTIONS(9059), 1, + ACTIONS(9195), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190216] = 4, - ACTIONS(8825), 1, + [187933] = 4, + ACTIONS(5337), 1, anon_sym_COLON, - ACTIONS(9061), 1, + ACTIONS(9197), 1, anon_sym_COMMA, - STATE(4830), 1, + STATE(5269), 1, aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190230] = 4, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(9063), 1, - anon_sym_COLON, - ACTIONS(9065), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190244] = 4, - ACTIONS(5813), 1, + [187947] = 4, + ACTIONS(7897), 1, + anon_sym_RBRACK, + ACTIONS(8783), 1, anon_sym_COMMA, - ACTIONS(5909), 1, - anon_sym_COLON, - ACTIONS(5911), 1, - anon_sym_EQ, + STATE(5176), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190258] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9067), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + [187961] = 4, + ACTIONS(6208), 1, + sym_identifier, + ACTIONS(9199), 1, + anon_sym_DOT, + STATE(5178), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190272] = 4, - ACTIONS(9069), 1, - anon_sym_SEMI, - ACTIONS(9071), 1, - sym__newline, - STATE(5051), 1, - aux_sym__simple_statements_repeat1, + [187975] = 4, + ACTIONS(9201), 1, + anon_sym_RPAREN, + ACTIONS(9203), 1, + anon_sym_COMMA, + STATE(5065), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190286] = 4, - ACTIONS(7385), 1, + [187989] = 4, + ACTIONS(7450), 1, anon_sym_RPAREN, - ACTIONS(7387), 1, + ACTIONS(7452), 1, anon_sym_COMMA, - STATE(5014), 1, + STATE(5071), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190300] = 4, - ACTIONS(9073), 1, + [188003] = 4, + ACTIONS(9206), 1, anon_sym_RPAREN, - ACTIONS(9075), 1, + ACTIONS(9208), 1, anon_sym_COMMA, - STATE(5015), 1, + STATE(5072), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190314] = 4, - ACTIONS(7064), 1, + [188017] = 4, + ACTIONS(7131), 1, anon_sym_COMMA, - ACTIONS(7066), 1, + ACTIONS(7133), 1, anon_sym_RBRACK, - STATE(5017), 1, + STATE(5074), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190328] = 4, - ACTIONS(9077), 1, + [188031] = 4, + ACTIONS(9210), 1, anon_sym_COMMA, - ACTIONS(9079), 1, - anon_sym_RBRACE, - STATE(5224), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(9212), 1, + anon_sym_RBRACK, + STATE(5237), 1, + aux_sym_template_params_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [188045] = 4, + ACTIONS(9214), 1, + anon_sym_SEMI, + ACTIONS(9216), 1, + sym__newline, + STATE(4909), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190342] = 4, - ACTIONS(2947), 1, + [188059] = 4, + ACTIONS(3057), 1, anon_sym_RPAREN, - ACTIONS(9081), 1, + ACTIONS(9218), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190356] = 4, - ACTIONS(2949), 1, + [188073] = 4, + ACTIONS(3059), 1, anon_sym_RPAREN, - ACTIONS(9083), 1, + ACTIONS(9220), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190370] = 4, - ACTIONS(9085), 1, + [188087] = 4, + ACTIONS(9222), 1, anon_sym_COMMA, - ACTIONS(9087), 1, + ACTIONS(9224), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190384] = 4, - ACTIONS(9089), 1, + [188101] = 4, + ACTIONS(9226), 1, anon_sym_COMMA, - ACTIONS(9091), 1, + ACTIONS(9228), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190398] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9093), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190412] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9095), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190426] = 4, - ACTIONS(9097), 1, + [188115] = 4, + ACTIONS(9230), 1, anon_sym_COMMA, - ACTIONS(9099), 1, - anon_sym_RBRACE, - STATE(5224), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(9232), 1, + anon_sym_COLON, + STATE(5062), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190440] = 4, - ACTIONS(3143), 1, - anon_sym_RPAREN, - ACTIONS(9101), 1, + [188129] = 4, + ACTIONS(5974), 1, anon_sym_COMMA, - STATE(5042), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(5997), 1, + anon_sym_COLON, + ACTIONS(5999), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190454] = 4, - ACTIONS(6864), 1, + [188143] = 4, + ACTIONS(7139), 1, anon_sym_COMMA, - ACTIONS(6866), 1, + ACTIONS(7141), 1, anon_sym_RBRACK, - STATE(5024), 1, + STATE(5079), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190468] = 4, - ACTIONS(9103), 1, + [188157] = 4, + ACTIONS(9234), 1, anon_sym_COMMA, - ACTIONS(9105), 1, + ACTIONS(9236), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190482] = 4, - ACTIONS(9107), 1, + [188171] = 4, + ACTIONS(9238), 1, anon_sym_COMMA, - ACTIONS(9109), 1, + ACTIONS(9240), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190496] = 4, - ACTIONS(7860), 1, + [188185] = 4, + ACTIONS(3247), 1, anon_sym_RBRACK, - ACTIONS(8687), 1, + ACTIONS(9242), 1, anon_sym_COMMA, - STATE(5112), 1, - aux_sym_type_index_repeat2, + STATE(4956), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190510] = 4, - ACTIONS(6431), 1, - anon_sym_COMMA, - ACTIONS(6590), 1, - anon_sym_RPAREN, - STATE(5158), 1, - aux_sym__collection_elements_repeat1, + [188199] = 4, + ACTIONS(8556), 1, + sym__newline, + ACTIONS(8558), 1, + sym__indent, + STATE(1435), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190524] = 4, - ACTIONS(3118), 1, + [188213] = 4, + ACTIONS(7613), 1, anon_sym_RBRACE, - ACTIONS(9111), 1, + ACTIONS(9244), 1, anon_sym_COMMA, - STATE(4869), 1, - aux_sym_dictionary_repeat1, + STATE(5082), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190538] = 4, - ACTIONS(9113), 1, - anon_sym_COMMA, - ACTIONS(9115), 1, + [188227] = 3, + ACTIONS(7864), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7866), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [188239] = 4, + ACTIONS(8348), 1, + anon_sym_DOT, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(9247), 1, anon_sym_COLON, - STATE(4746), 1, - aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190552] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9117), 1, + [188253] = 4, + ACTIONS(9249), 1, + anon_sym_LPAREN, + ACTIONS(9251), 1, + anon_sym_COLON, + ACTIONS(9253), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190566] = 4, - ACTIONS(7556), 1, - anon_sym_RBRACK, - ACTIONS(9119), 1, + [188267] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(5030), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(9255), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190580] = 4, - ACTIONS(5149), 1, - anon_sym_RPAREN, - ACTIONS(9122), 1, + [188281] = 4, + ACTIONS(9257), 1, anon_sym_COMMA, - STATE(4891), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9260), 1, + anon_sym_RBRACK, + STATE(5087), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190594] = 4, - ACTIONS(8201), 1, + [188295] = 4, + ACTIONS(9144), 1, + sym__newline, + ACTIONS(9262), 1, anon_sym_COMMA, - ACTIONS(9124), 1, - anon_sym_RPAREN, - STATE(4946), 1, - aux_sym_function_pointer_type_repeat1, + STATE(5088), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190608] = 4, - ACTIONS(7391), 1, - anon_sym_COMMA, - ACTIONS(7393), 1, - anon_sym_RBRACE, - STATE(5096), 1, - aux_sym_dictionary_repeat1, + [188309] = 4, + ACTIONS(9265), 1, + anon_sym_COLON, + ACTIONS(9267), 1, + anon_sym_nogil, + ACTIONS(9269), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190622] = 4, - ACTIONS(9126), 1, - anon_sym_RPAREN, - ACTIONS(9128), 1, + [188323] = 4, + ACTIONS(9210), 1, anon_sym_COMMA, - STATE(5034), 1, - aux_sym__typedargslist_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190636] = 4, - ACTIONS(7917), 1, - anon_sym_COLON, - ACTIONS(9131), 1, - anon_sym_RBRACE, - STATE(5805), 1, - sym_format_specifier, + ACTIONS(9271), 1, + anon_sym_RBRACK, + STATE(5194), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190650] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9133), 1, + [188337] = 4, + ACTIONS(8763), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(8765), 1, + sym__indent, + STATE(1504), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190664] = 4, - ACTIONS(7718), 1, - anon_sym_LPAREN, - ACTIONS(9135), 1, - anon_sym_GT, - ACTIONS(9137), 1, - anon_sym_QMARK, + [188351] = 4, + ACTIONS(9273), 1, + anon_sym_COMMA, + ACTIONS(9276), 1, + anon_sym_COLON, + STATE(5092), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190678] = 4, - ACTIONS(6460), 1, - anon_sym_RPAREN, - ACTIONS(6462), 1, - anon_sym_COMMA, - STATE(5218), 1, - aux_sym_argument_list_repeat1, + [188365] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190692] = 4, - ACTIONS(9139), 1, - anon_sym_LPAREN, - ACTIONS(9141), 1, - anon_sym_COLON, - ACTIONS(9143), 1, + ACTIONS(9278), 3, sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [188375] = 4, + ACTIONS(3992), 1, + anon_sym_RBRACK, + ACTIONS(9280), 1, + anon_sym_COMMA, + STATE(5051), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190706] = 4, - ACTIONS(6842), 1, - sym_string_start, - ACTIONS(9145), 1, - anon_sym_STAR, - STATE(2830), 1, - sym_string, + [188389] = 3, + ACTIONS(1496), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190720] = 4, - ACTIONS(9147), 1, - anon_sym_COLON, - ACTIONS(9149), 1, - anon_sym_nogil, - ACTIONS(9151), 1, + ACTIONS(1498), 2, + anon_sym_except_STAR, + anon_sym_finally, + [188401] = 4, + ACTIONS(9253), 1, sym__newline, + ACTIONS(9282), 1, + sym_identifier, + ACTIONS(9284), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190734] = 4, - ACTIONS(6775), 1, - anon_sym_RPAREN, - ACTIONS(9153), 1, + [188415] = 4, + ACTIONS(6860), 1, + sym__newline, + ACTIONS(7256), 1, anon_sym_COMMA, - STATE(5042), 1, - aux_sym_assert_statement_repeat1, + STATE(5088), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190748] = 4, - ACTIONS(8520), 1, + [188429] = 4, + ACTIONS(9286), 1, + anon_sym_LPAREN, + ACTIONS(9288), 1, + anon_sym_COLON, + ACTIONS(9290), 1, sym__newline, - ACTIONS(8522), 1, - sym__indent, - STATE(1578), 1, - sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190762] = 4, - ACTIONS(8560), 1, - anon_sym_LBRACK, - ACTIONS(9156), 1, - anon_sym_COLON, - STATE(5673), 1, - sym_external_definition, + [188443] = 4, + ACTIONS(9292), 1, + anon_sym_SEMI, + ACTIONS(9294), 1, + sym__newline, + STATE(5122), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190776] = 4, - ACTIONS(9158), 1, + [188457] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9161), 1, - anon_sym_RBRACK, - STATE(5045), 1, - aux_sym_template_params_repeat1, + ACTIONS(9296), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190790] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9163), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + [188471] = 4, + ACTIONS(6922), 1, + sym_string_start, + ACTIONS(9298), 1, + anon_sym_STAR, + STATE(2849), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190804] = 4, - ACTIONS(9165), 1, + [188485] = 4, + ACTIONS(6484), 1, anon_sym_RPAREN, - ACTIONS(9167), 1, + ACTIONS(6539), 1, anon_sym_COMMA, - STATE(4728), 1, - aux_sym_argument_list_repeat1, + STATE(4808), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190818] = 4, - ACTIONS(8520), 1, + [188499] = 4, + ACTIONS(8965), 1, sym__newline, - ACTIONS(8522), 1, - sym__indent, - STATE(1528), 1, - sym__match_block, + ACTIONS(9300), 1, + sym_identifier, + ACTIONS(9302), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190832] = 4, - ACTIONS(8560), 1, + [188513] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9169), 1, + ACTIONS(9304), 1, anon_sym_COLON, - STATE(5748), 1, + STATE(5790), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190846] = 4, - ACTIONS(6110), 1, + [188527] = 4, + ACTIONS(6200), 1, sym_identifier, - ACTIONS(9171), 1, + ACTIONS(9199), 1, anon_sym_DOT, - STATE(5174), 1, + STATE(5064), 1, aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190860] = 4, - ACTIONS(1281), 1, - sym__newline, - ACTIONS(9173), 1, - anon_sym_SEMI, - STATE(4910), 1, - aux_sym__simple_statements_repeat1, + [188541] = 4, + ACTIONS(9306), 1, + anon_sym_RPAREN, + ACTIONS(9308), 1, + anon_sym_COMMA, + STATE(5106), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190874] = 4, - ACTIONS(6842), 1, + [188555] = 4, + ACTIONS(6922), 1, sym_string_start, - ACTIONS(9175), 1, + ACTIONS(9311), 1, anon_sym_STAR, - STATE(2833), 1, + STATE(2878), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190888] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9177), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190902] = 4, - ACTIONS(9143), 1, - sym__newline, - ACTIONS(9179), 1, - sym_identifier, - ACTIONS(9181), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190916] = 4, - ACTIONS(6726), 1, + [188569] = 4, + ACTIONS(6823), 1, sym__newline, - ACTIONS(7258), 1, + ACTIONS(7572), 1, anon_sym_COMMA, - STATE(5063), 1, + STATE(5088), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190930] = 4, - ACTIONS(8300), 1, + [188583] = 4, + ACTIONS(7582), 1, anon_sym_COMMA, - ACTIONS(9183), 1, - anon_sym_in, - STATE(4586), 1, - aux_sym__patterns_repeat1, + ACTIONS(7584), 1, + anon_sym_RBRACE, + STATE(5134), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190944] = 4, - ACTIONS(6396), 1, + [188597] = 4, + ACTIONS(8306), 1, anon_sym_COMMA, - ACTIONS(9185), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [190958] = 4, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(9187), 1, - anon_sym_COLON, - ACTIONS(9189), 1, - sym__newline, + ACTIONS(9313), 1, + anon_sym_in, + STATE(4708), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190972] = 4, - ACTIONS(8560), 1, + [188611] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9191), 1, + ACTIONS(9315), 1, anon_sym_COLON, - STATE(5802), 1, + STATE(5784), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [190986] = 4, - ACTIONS(9193), 1, - sym__newline, - ACTIONS(9195), 1, - sym__indent, - STATE(1507), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191000] = 4, - ACTIONS(8560), 1, + [188625] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9197), 1, + ACTIONS(9317), 1, anon_sym_COLON, - STATE(5821), 1, + STATE(5851), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191014] = 4, - ACTIONS(8300), 1, - anon_sym_COMMA, - ACTIONS(9199), 1, - anon_sym_in, - STATE(4586), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191028] = 4, - ACTIONS(8598), 1, - sym__newline, - ACTIONS(9201), 1, - anon_sym_COMMA, - STATE(5063), 1, - aux_sym_cvar_def_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191042] = 4, - ACTIONS(8240), 1, - anon_sym_DOT, - ACTIONS(8604), 1, - anon_sym_PIPE, - ACTIONS(9204), 1, - anon_sym_COLON, + [188639] = 4, + ACTIONS(7657), 1, + anon_sym_LPAREN, + ACTIONS(9319), 1, + anon_sym_GT, + ACTIONS(9321), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191056] = 4, - ACTIONS(2869), 1, + [188653] = 4, + ACTIONS(3247), 1, anon_sym_RPAREN, - ACTIONS(9206), 1, + ACTIONS(9323), 1, anon_sym_COMMA, - STATE(4843), 1, - aux_sym_argument_list_repeat1, + STATE(5154), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191070] = 4, - ACTIONS(6876), 1, - anon_sym_COMMA, - ACTIONS(6878), 1, - anon_sym_RBRACK, - STATE(4797), 1, - aux_sym_subscript_repeat1, + [188667] = 4, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(9325), 1, + anon_sym_COLON, + STATE(5871), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191084] = 4, - ACTIONS(6396), 1, + [188681] = 4, + ACTIONS(8306), 1, anon_sym_COMMA, - ACTIONS(9208), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9327), 1, + anon_sym_in, + STATE(4708), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191098] = 4, - ACTIONS(2871), 1, + [188695] = 4, + ACTIONS(2923), 1, anon_sym_RPAREN, - ACTIONS(9210), 1, + ACTIONS(9329), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191112] = 4, - ACTIONS(8560), 1, - anon_sym_LBRACK, - ACTIONS(9212), 1, + [188709] = 4, + ACTIONS(8348), 1, + anon_sym_DOT, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(9331), 1, anon_sym_COLON, - STATE(5481), 1, - sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191126] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9214), 1, + [188723] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(9290), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9333), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191140] = 4, - ACTIONS(8240), 1, - anon_sym_DOT, - ACTIONS(8604), 1, - anon_sym_PIPE, - ACTIONS(9216), 1, - anon_sym_COLON, + [188737] = 4, + ACTIONS(2925), 1, + anon_sym_RPAREN, + ACTIONS(9335), 1, + anon_sym_COMMA, + STATE(4953), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191154] = 4, - ACTIONS(9218), 1, + [188751] = 4, + ACTIONS(5725), 1, + anon_sym_RPAREN, + ACTIONS(9337), 1, anon_sym_COMMA, - ACTIONS(9220), 1, - anon_sym_RBRACK, - STATE(4967), 1, - aux_sym_subscript_repeat1, + STATE(5121), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191168] = 4, - ACTIONS(8240), 1, - anon_sym_DOT, - ACTIONS(8604), 1, - anon_sym_PIPE, - ACTIONS(9222), 1, - anon_sym_COLON, + [188765] = 4, + ACTIONS(1315), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_SEMI, + STATE(5236), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191182] = 4, - ACTIONS(8560), 1, + [188779] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9224), 1, + ACTIONS(9342), 1, anon_sym_COLON, - STATE(5487), 1, + STATE(5529), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191196] = 4, - ACTIONS(6675), 1, + [188793] = 4, + ACTIONS(8763), 1, sym__newline, - ACTIONS(9226), 1, - anon_sym_COMMA, - STATE(5063), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(8765), 1, + sym__indent, + STATE(1557), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191210] = 4, - ACTIONS(9228), 1, + [188807] = 4, + ACTIONS(9344), 1, anon_sym_COMMA, - ACTIONS(9230), 1, + ACTIONS(9346), 1, anon_sym_RBRACK, - STATE(4967), 1, + STATE(4773), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191224] = 4, - ACTIONS(8240), 1, + [188821] = 4, + ACTIONS(8348), 1, anon_sym_DOT, - ACTIONS(8604), 1, + ACTIONS(8907), 1, anon_sym_PIPE, - ACTIONS(9232), 1, + ACTIONS(9348), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191238] = 4, - ACTIONS(7556), 1, - anon_sym_RBRACE, - ACTIONS(9234), 1, - anon_sym_COMMA, - STATE(5078), 1, - aux_sym__collection_elements_repeat1, + [188835] = 4, + ACTIONS(8348), 1, + anon_sym_DOT, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(9350), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191252] = 4, - ACTIONS(8560), 1, + [188849] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9237), 1, + ACTIONS(9352), 1, anon_sym_COLON, - STATE(5496), 1, + STATE(5535), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191266] = 4, - ACTIONS(6431), 1, + [188863] = 4, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(9239), 1, + ACTIONS(9354), 1, anon_sym_RPAREN, - STATE(5158), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191280] = 3, - ACTIONS(9243), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9241), 2, - sym__newline, - anon_sym_COMMA, - [191292] = 4, - ACTIONS(6431), 1, + [188877] = 4, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(9245), 1, + ACTIONS(9356), 1, anon_sym_RPAREN, - STATE(5158), 1, + STATE(4808), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191306] = 4, - ACTIONS(8560), 1, - anon_sym_LBRACK, - ACTIONS(9247), 1, + [188891] = 4, + ACTIONS(8348), 1, + anon_sym_DOT, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(9358), 1, anon_sym_COLON, - STATE(5501), 1, - sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191320] = 4, - ACTIONS(6396), 1, + [188905] = 4, + ACTIONS(9360), 1, anon_sym_COMMA, - ACTIONS(9249), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9362), 1, + anon_sym_RBRACK, + STATE(4773), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191334] = 4, - ACTIONS(6396), 1, + [188919] = 4, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(9364), 1, + anon_sym_COLON, + STATE(5544), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [188933] = 4, + ACTIONS(3177), 1, + anon_sym_RBRACE, + ACTIONS(9366), 1, anon_sym_COMMA, - ACTIONS(9251), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + STATE(5171), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191348] = 4, - ACTIONS(8560), 1, + [188947] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9253), 1, + ACTIONS(9368), 1, anon_sym_COLON, - STATE(5504), 1, + STATE(5549), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191362] = 4, - ACTIONS(6396), 1, + [188961] = 3, + ACTIONS(5999), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5974), 2, anon_sym_COMMA, - ACTIONS(9255), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_COLON, + [188973] = 4, + ACTIONS(8206), 1, + anon_sym_RPAREN, + ACTIONS(8428), 1, + anon_sym_COMMA, + STATE(5268), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191376] = 4, - ACTIONS(9193), 1, - sym__newline, - ACTIONS(9195), 1, - sym__indent, - STATE(1478), 1, - sym__match_block, + [188987] = 4, + ACTIONS(7992), 1, + anon_sym_COLON, + ACTIONS(9370), 1, + anon_sym_RBRACE, + STATE(5739), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191390] = 4, - ACTIONS(9257), 1, + [189001] = 4, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(9372), 1, + anon_sym_COLON, + STATE(5552), 1, + sym_external_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189015] = 4, + ACTIONS(9374), 1, anon_sym_COMMA, - ACTIONS(9259), 1, + ACTIONS(9376), 1, anon_sym_COLON, - STATE(4769), 1, + STATE(5092), 1, aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191404] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9261), 1, + [189029] = 4, + ACTIONS(8073), 1, + anon_sym_COLON, + ACTIONS(8077), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9378), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191418] = 4, - ACTIONS(2715), 1, - anon_sym_RBRACK, - ACTIONS(9263), 1, - anon_sym_COMMA, - STATE(4862), 1, - aux_sym_type_parameter_repeat1, + [189043] = 4, + ACTIONS(8077), 1, + sym__newline, + ACTIONS(9380), 1, + anon_sym_LPAREN, + ACTIONS(9382), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191432] = 4, - ACTIONS(3878), 1, - sym_string_start, - ACTIONS(9265), 1, - anon_sym_LT, - STATE(5313), 1, - sym_string, + [189057] = 4, + ACTIONS(6426), 1, + anon_sym_RBRACK, + ACTIONS(6545), 1, + anon_sym_COMMA, + STATE(5016), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191446] = 3, - ACTIONS(6763), 1, - anon_sym_from, + [189071] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6761), 2, + ACTIONS(9384), 3, sym__newline, - anon_sym_SEMI, - [191458] = 4, - ACTIONS(6396), 1, + anon_sym_COLON, + anon_sym_nogil, + [189081] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9267), 1, + ACTIONS(9386), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191472] = 4, - ACTIONS(8560), 1, + [189095] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9269), 1, + ACTIONS(9388), 1, anon_sym_COLON, - STATE(5544), 1, + STATE(5592), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191486] = 4, - ACTIONS(3130), 1, - anon_sym_RBRACE, - ACTIONS(9271), 1, + [189109] = 4, + ACTIONS(6766), 1, + sym__newline, + ACTIONS(6770), 1, anon_sym_COMMA, - STATE(4869), 1, - aux_sym_dictionary_repeat1, + STATE(5088), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191500] = 4, - ACTIONS(6842), 1, + [189123] = 4, + ACTIONS(6922), 1, sym_string_start, - ACTIONS(9273), 1, + ACTIONS(9390), 1, anon_sym_STAR, - STATE(2805), 1, + STATE(2844), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191514] = 4, - ACTIONS(6396), 1, + [189137] = 4, + ACTIONS(8735), 1, + anon_sym_RBRACK, + ACTIONS(9392), 1, anon_sym_COMMA, - ACTIONS(9275), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + STATE(5094), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191528] = 4, - ACTIONS(8300), 1, + [189151] = 4, + ACTIONS(8306), 1, anon_sym_COMMA, - ACTIONS(9277), 1, + ACTIONS(9394), 1, anon_sym_in, - STATE(4586), 1, + STATE(4708), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191542] = 4, - ACTIONS(8560), 1, + [189165] = 4, + ACTIONS(6821), 1, + sym__newline, + ACTIONS(9396), 1, + anon_sym_COMMA, + STATE(5088), 1, + aux_sym_cvar_def_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189179] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9279), 1, + ACTIONS(9398), 1, anon_sym_COLON, - STATE(5555), 1, + STATE(5603), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191556] = 4, - ACTIONS(6396), 1, + [189193] = 3, + ACTIONS(7893), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9400), 2, anon_sym_COMMA, - ACTIONS(9281), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_RBRACK, + [189205] = 4, + ACTIONS(6895), 1, + anon_sym_RPAREN, + ACTIONS(9402), 1, + anon_sym_COMMA, + STATE(5154), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191570] = 4, - ACTIONS(8560), 1, + [189219] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9283), 1, + ACTIONS(9405), 1, anon_sym_COLON, - STATE(5562), 1, + STATE(5610), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191584] = 4, - ACTIONS(8300), 1, + [189233] = 4, + ACTIONS(8306), 1, anon_sym_COMMA, - ACTIONS(9285), 1, + ACTIONS(9407), 1, anon_sym_in, - STATE(4586), 1, + STATE(4708), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191598] = 4, - ACTIONS(6344), 1, + [189247] = 4, + ACTIONS(2775), 1, + anon_sym_RBRACK, + ACTIONS(9409), 1, anon_sym_COMMA, - ACTIONS(6356), 1, - anon_sym_RBRACE, - STATE(5164), 1, - aux_sym__collection_elements_repeat1, + STATE(4880), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191612] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9287), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + [189261] = 4, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(9411), 1, + anon_sym_COLON, + STATE(5619), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191626] = 4, - ACTIONS(8560), 1, + [189275] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9289), 1, + ACTIONS(9413), 1, anon_sym_COLON, - STATE(5571), 1, + STATE(5621), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191640] = 4, - ACTIONS(8560), 1, + [189289] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9291), 1, + ACTIONS(9415), 1, anon_sym_COLON, - STATE(5573), 1, + STATE(5630), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191654] = 4, - ACTIONS(8186), 1, + [189303] = 4, + ACTIONS(6523), 1, + anon_sym_RPAREN, + ACTIONS(6525), 1, anon_sym_COMMA, - ACTIONS(9293), 1, - anon_sym_RBRACK, - STATE(5188), 1, - aux_sym_external_definition_repeat1, + STATE(5196), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191668] = 4, - ACTIONS(8560), 1, + [189317] = 4, + ACTIONS(9417), 1, + anon_sym_RPAREN, + ACTIONS(9419), 1, + anon_sym_COMMA, + STATE(5197), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189331] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9295), 1, + ACTIONS(9421), 1, anon_sym_COLON, - STATE(5582), 1, + STATE(5635), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191682] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9297), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + [189345] = 3, + ACTIONS(9425), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191696] = 4, - ACTIONS(7108), 1, + ACTIONS(9423), 2, + sym__newline, anon_sym_COMMA, - ACTIONS(9299), 1, + [189357] = 4, + ACTIONS(8491), 1, anon_sym_RBRACK, - STATE(4935), 1, + ACTIONS(9427), 1, + anon_sym_COMMA, + STATE(5165), 1, aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191710] = 4, - ACTIONS(8687), 1, + [189371] = 4, + ACTIONS(7065), 1, anon_sym_COMMA, - ACTIONS(9299), 1, + ACTIONS(7067), 1, anon_sym_RBRACK, - STATE(4938), 1, - aux_sym_type_index_repeat2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191724] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9301), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + STATE(5199), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191738] = 4, - ACTIONS(9303), 1, - anon_sym_COMMA, - ACTIONS(9305), 1, + [189385] = 4, + ACTIONS(8091), 1, anon_sym_COLON, - STATE(4769), 1, - aux_sym_match_statement_repeat1, + ACTIONS(8095), 1, + sym__newline, + ACTIONS(9430), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191752] = 4, - ACTIONS(8560), 1, + [189399] = 4, + ACTIONS(8616), 1, anon_sym_LBRACK, - ACTIONS(9307), 1, + ACTIONS(9432), 1, anon_sym_COLON, - STATE(5587), 1, + STATE(5638), 1, sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191766] = 4, - ACTIONS(8201), 1, - anon_sym_COMMA, - ACTIONS(9309), 1, + [189413] = 4, + ACTIONS(5553), 1, anon_sym_RPAREN, - STATE(4946), 1, - aux_sym_function_pointer_type_repeat1, + ACTIONS(9434), 1, + anon_sym_COMMA, + STATE(5065), 1, + aux_sym__typedargslist_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191780] = 4, - ACTIONS(6396), 1, + [189427] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9311), 1, + ACTIONS(9436), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191794] = 4, - ACTIONS(8560), 1, - anon_sym_LBRACK, - ACTIONS(9313), 1, + [189441] = 4, + ACTIONS(9438), 1, + anon_sym_COMMA, + ACTIONS(9441), 1, + anon_sym_RBRACE, + STATE(5171), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189455] = 4, + ACTIONS(8095), 1, + sym__newline, + ACTIONS(9443), 1, + anon_sym_LPAREN, + ACTIONS(9445), 1, anon_sym_COLON, - STATE(5590), 1, - sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191808] = 4, - ACTIONS(8080), 1, - anon_sym_RBRACK, - ACTIONS(8687), 1, + [189469] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(4958), 1, - aux_sym_type_index_repeat2, + ACTIONS(9447), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191822] = 3, - ACTIONS(8176), 1, - anon_sym_as, + [189483] = 4, + ACTIONS(9449), 1, + anon_sym_COMMA, + ACTIONS(9452), 1, + anon_sym_RBRACK, + STATE(5174), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8275), 2, + [189497] = 4, + ACTIONS(7252), 1, anon_sym_COMMA, + ACTIONS(9454), 1, anon_sym_RBRACK, - [191834] = 2, + STATE(5165), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8325), 3, + [189511] = 4, + ACTIONS(8783), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(9454), 1, anon_sym_RBRACK, - [191844] = 4, - ACTIONS(8275), 1, + STATE(5174), 1, + aux_sym_type_index_repeat2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [189525] = 4, + ACTIONS(8168), 1, anon_sym_RBRACK, - ACTIONS(9315), 1, + ACTIONS(8783), 1, anon_sym_COMMA, - STATE(5122), 1, - aux_sym_case_clause_repeat1, + STATE(5212), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191858] = 4, - ACTIONS(9318), 1, + [189539] = 4, + ACTIONS(6155), 1, sym_identifier, - ACTIONS(9320), 1, - anon_sym_COLON, - ACTIONS(9322), 1, - sym__newline, + ACTIONS(9456), 1, + anon_sym_DOT, + STATE(5178), 1, + aux_sym_type_qualifier_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191872] = 4, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(9324), 1, - anon_sym_COLON, - ACTIONS(9326), 1, - sym__newline, + [189553] = 4, + ACTIONS(5337), 1, + anon_sym_RPAREN, + ACTIONS(9459), 1, + anon_sym_COMMA, + STATE(5041), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191886] = 4, - ACTIONS(8051), 1, - anon_sym_COLON, - ACTIONS(8055), 1, - sym__newline, - ACTIONS(9328), 1, - sym_identifier, + [189567] = 4, + ACTIONS(8370), 1, + anon_sym_COMMA, + ACTIONS(9461), 1, + anon_sym_RPAREN, + STATE(5190), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191900] = 4, - ACTIONS(8055), 1, - sym__newline, - ACTIONS(9330), 1, + [189581] = 4, + ACTIONS(9463), 1, anon_sym_LPAREN, - ACTIONS(9332), 1, + ACTIONS(9465), 1, anon_sym_COLON, + ACTIONS(9467), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191914] = 4, - ACTIONS(8530), 1, - anon_sym_COMMA, - ACTIONS(9334), 1, - anon_sym_RBRACK, - STATE(5145), 1, - aux_sym_template_params_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [191928] = 4, - ACTIONS(6396), 1, + [189595] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9336), 1, + ACTIONS(9469), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191942] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9338), 1, + [189609] = 4, + ACTIONS(9471), 1, + anon_sym_COLON, + ACTIONS(9473), 1, + anon_sym_nogil, + ACTIONS(9475), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191956] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9340), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + [189623] = 3, + ACTIONS(1500), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191970] = 4, - ACTIONS(6658), 1, - sym__newline, - ACTIONS(6679), 1, + ACTIONS(1502), 2, + anon_sym_except_STAR, + anon_sym_finally, + [189635] = 4, + ACTIONS(8180), 1, + anon_sym_RBRACK, + ACTIONS(8783), 1, anon_sym_COMMA, - STATE(5063), 1, - aux_sym_cvar_def_repeat1, + STATE(5032), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191984] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9342), 1, + [189649] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(9477), 1, + anon_sym_COLON, + ACTIONS(9479), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [191998] = 4, - ACTIONS(9322), 1, - sym__newline, - ACTIONS(9344), 1, + [189663] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9346), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192012] = 4, - ACTIONS(6396), 1, + ACTIONS(9481), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(9348), 1, + [189675] = 4, + ACTIONS(9467), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9483), 1, + sym_identifier, + ACTIONS(9485), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192026] = 4, - ACTIONS(6773), 1, + [189689] = 4, + ACTIONS(6797), 1, sym__newline, - ACTIONS(7264), 1, + ACTIONS(7234), 1, anon_sym_COMMA, - STATE(5063), 1, + STATE(5088), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192040] = 4, - ACTIONS(6576), 1, + [189703] = 4, + ACTIONS(9481), 1, anon_sym_RPAREN, - ACTIONS(6578), 1, + ACTIONS(9487), 1, anon_sym_COMMA, - STATE(5219), 1, - aux_sym_argument_list_repeat1, + STATE(5190), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192054] = 4, - ACTIONS(7917), 1, - anon_sym_COLON, - ACTIONS(9350), 1, - anon_sym_RBRACE, - STATE(5710), 1, - sym_format_specifier, + [189717] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(9490), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192068] = 4, - ACTIONS(9352), 1, - anon_sym_RPAREN, - ACTIONS(9354), 1, - anon_sym_COMMA, - STATE(5220), 1, - aux_sym_argument_list_repeat1, + [189731] = 4, + ACTIONS(8348), 1, + anon_sym_DOT, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(9492), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192082] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9356), 1, + [189745] = 4, + ACTIONS(6872), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(7390), 1, + anon_sym_COMMA, + STATE(5088), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192096] = 4, - ACTIONS(6961), 1, + [189759] = 4, + ACTIONS(9210), 1, anon_sym_COMMA, - ACTIONS(6963), 1, + ACTIONS(9494), 1, anon_sym_RBRACK, - STATE(5226), 1, - aux_sym_subscript_repeat1, + STATE(5087), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192110] = 2, - ACTIONS(3), 2, + [189773] = 3, + ACTIONS(7719), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7629), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [192120] = 4, - ACTIONS(7917), 1, - anon_sym_COLON, - ACTIONS(9358), 1, + ACTIONS(7721), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(5707), 1, - sym_format_specifier, + [189785] = 4, + ACTIONS(2969), 1, + anon_sym_RPAREN, + ACTIONS(9496), 1, + anon_sym_COMMA, + STATE(4953), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192134] = 2, + [189799] = 4, + ACTIONS(2971), 1, + anon_sym_RPAREN, + ACTIONS(9498), 1, + anon_sym_COMMA, + STATE(4953), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3993), 3, - anon_sym_RPAREN, + [189813] = 4, + ACTIONS(9500), 1, anon_sym_COMMA, - anon_sym_EQ, - [192144] = 4, - ACTIONS(9193), 1, - sym__newline, - ACTIONS(9195), 1, - sym__indent, - STATE(1505), 1, - sym__match_block, + ACTIONS(9502), 1, + anon_sym_RBRACK, + STATE(4773), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192158] = 4, - ACTIONS(8530), 1, + [189827] = 4, + ACTIONS(9504), 1, anon_sym_COMMA, - ACTIONS(9360), 1, + ACTIONS(9506), 1, anon_sym_RBRACK, - STATE(5045), 1, - aux_sym_template_params_repeat1, + STATE(4773), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192172] = 4, - ACTIONS(9326), 1, + [189841] = 3, + ACTIONS(7732), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7734), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [189853] = 4, + ACTIONS(9479), 1, sym__newline, - ACTIONS(9362), 1, + ACTIONS(9508), 1, anon_sym_LPAREN, - ACTIONS(9364), 1, + ACTIONS(9510), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192186] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9366), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, - ACTIONS(3), 2, + [189867] = 3, + ACTIONS(7746), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [192200] = 2, + ACTIONS(7748), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [189879] = 3, + ACTIONS(9514), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8312), 3, + ACTIONS(9512), 2, sym__newline, - anon_sym_SEMI, anon_sym_COMMA, - [192210] = 3, - ACTIONS(1518), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1520), 2, - anon_sym_except_STAR, - anon_sym_finally, - [192222] = 4, - ACTIONS(9368), 1, - anon_sym_COLON, - ACTIONS(9370), 1, - anon_sym_nogil, - ACTIONS(9372), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192236] = 4, - ACTIONS(8560), 1, - anon_sym_LBRACK, - ACTIONS(9374), 1, - anon_sym_COLON, - STATE(5531), 1, - sym_external_definition, + [189891] = 4, + ACTIONS(2745), 1, + anon_sym_RBRACK, + ACTIONS(9516), 1, + anon_sym_COMMA, + STATE(4880), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192250] = 4, - ACTIONS(6396), 1, + [189905] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9376), 1, + ACTIONS(9518), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192264] = 4, - ACTIONS(6396), 1, + [189919] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9378), 1, + ACTIONS(9520), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192278] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9380), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [192288] = 4, - ACTIONS(8647), 1, - anon_sym_RPAREN, - ACTIONS(9382), 1, + [189933] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(5155), 1, - aux_sym_with_clause_repeat1, + ACTIONS(9522), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192302] = 4, - ACTIONS(6396), 1, + [189947] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9385), 1, + ACTIONS(9524), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192316] = 4, - ACTIONS(6396), 1, + [189961] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9387), 1, + ACTIONS(9526), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192330] = 4, - ACTIONS(2993), 1, + [189975] = 4, + ACTIONS(9232), 1, anon_sym_RPAREN, - ACTIONS(9389), 1, + ACTIONS(9528), 1, anon_sym_COMMA, - STATE(5169), 1, - aux_sym__collection_elements_repeat1, + STATE(5179), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192344] = 4, - ACTIONS(5219), 1, - anon_sym_RPAREN, - ACTIONS(9391), 1, + [189989] = 4, + ACTIONS(7252), 1, anon_sym_COMMA, - STATE(4954), 1, - aux_sym__parameters_repeat1, + ACTIONS(9530), 1, + anon_sym_RBRACK, + STATE(5165), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192358] = 4, - ACTIONS(5191), 1, - anon_sym_RPAREN, - ACTIONS(9393), 1, + [190003] = 4, + ACTIONS(8783), 1, anon_sym_COMMA, - STATE(4891), 1, - aux_sym_case_clause_repeat1, + ACTIONS(9530), 1, + anon_sym_RBRACK, + STATE(5174), 1, + aux_sym_type_index_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192372] = 4, - ACTIONS(6396), 1, + [190017] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9395), 1, + ACTIONS(9532), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192386] = 4, - ACTIONS(7108), 1, - anon_sym_COMMA, - ACTIONS(9397), 1, - anon_sym_RBRACK, - STATE(4935), 1, - aux_sym_type_index_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192400] = 4, - ACTIONS(6752), 1, - sym__newline, - ACTIONS(7088), 1, + [190031] = 4, + ACTIONS(8370), 1, anon_sym_COMMA, - STATE(5063), 1, - aux_sym_cvar_def_repeat1, + ACTIONS(9534), 1, + anon_sym_RPAREN, + STATE(5190), 1, + aux_sym_function_pointer_type_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192414] = 4, - ACTIONS(2993), 1, - anon_sym_RBRACE, - ACTIONS(9399), 1, + [190045] = 4, + ACTIONS(9536), 1, anon_sym_COMMA, - STATE(5078), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(9539), 1, + anon_sym_RBRACK, + STATE(5215), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192428] = 4, - ACTIONS(6356), 1, - anon_sym_RPAREN, - ACTIONS(6431), 1, - anon_sym_COMMA, - STATE(5158), 1, - aux_sym__collection_elements_repeat1, + [190059] = 3, + ACTIONS(6784), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192442] = 4, - ACTIONS(6396), 1, + ACTIONS(6782), 2, + sym__newline, + anon_sym_SEMI, + [190071] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9401), 1, + ACTIONS(9541), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192456] = 4, - ACTIONS(8240), 1, - anon_sym_DOT, - ACTIONS(8604), 1, - anon_sym_PIPE, - ACTIONS(9403), 1, + [190085] = 4, + ACTIONS(8616), 1, + anon_sym_LBRACK, + ACTIONS(9543), 1, anon_sym_COLON, + STATE(5645), 1, + sym_external_definition, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192470] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9405), 1, + [190099] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(9545), 1, + anon_sym_COLON, + ACTIONS(9547), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192484] = 4, - ACTIONS(7556), 1, + [190113] = 4, + ACTIONS(6662), 1, anon_sym_RPAREN, - ACTIONS(9407), 1, + ACTIONS(6664), 1, anon_sym_COMMA, - STATE(5169), 1, - aux_sym__collection_elements_repeat1, + STATE(5247), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192498] = 4, - ACTIONS(7213), 1, - anon_sym_COMMA, - ACTIONS(7215), 1, + [190127] = 3, + ACTIONS(7723), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7725), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(5027), 1, - aux_sym_dictionary_repeat1, + [190139] = 3, + ACTIONS(5976), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192512] = 2, + ACTIONS(5974), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [190151] = 4, + ACTIONS(6868), 1, + sym__newline, + ACTIONS(7574), 1, + anon_sym_COMMA, + STATE(5088), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3993), 3, - anon_sym_COMMA, + [190165] = 4, + ACTIONS(8348), 1, + anon_sym_DOT, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(9549), 1, anon_sym_COLON, - anon_sym_EQ, - [192522] = 4, - ACTIONS(8186), 1, - anon_sym_COMMA, - ACTIONS(9410), 1, - anon_sym_RBRACK, - STATE(5188), 1, - aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192536] = 4, - ACTIONS(8102), 1, - anon_sym_RBRACK, - ACTIONS(8687), 1, + [190179] = 4, + ACTIONS(6831), 1, + sym__newline, + ACTIONS(7244), 1, anon_sym_COMMA, - STATE(4909), 1, - aux_sym_type_index_repeat2, + STATE(5088), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192550] = 4, - ACTIONS(6098), 1, - sym_identifier, - ACTIONS(9171), 1, - anon_sym_DOT, - STATE(4964), 1, - aux_sym_type_qualifier_repeat1, + [190193] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(9551), 1, + anon_sym_COLON, + ACTIONS(9553), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192564] = 3, - ACTIONS(7779), 1, + [190207] = 3, + ACTIONS(7750), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7781), 2, + ACTIONS(7752), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [192576] = 4, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(9412), 1, - anon_sym_COLON, - ACTIONS(9414), 1, - sym__newline, + [190219] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192590] = 4, - ACTIONS(6396), 1, + ACTIONS(7801), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [190229] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9416), 1, + ACTIONS(9555), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192604] = 3, - ACTIONS(7488), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [190243] = 4, + ACTIONS(9547), 1, + sym__newline, + ACTIONS(9557), 1, + anon_sym_LPAREN, + ACTIONS(9559), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7490), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [192616] = 3, - ACTIONS(7492), 1, + [190257] = 3, + ACTIONS(7756), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(7494), 2, + ACTIONS(7758), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [192628] = 4, - ACTIONS(8203), 1, + [190269] = 4, + ACTIONS(8420), 1, sym_identifier, - STATE(4873), 1, + STATE(4981), 1, sym_dotted_name, - STATE(5271), 1, + STATE(5387), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192642] = 4, - ACTIONS(6775), 1, - anon_sym_RBRACE, - ACTIONS(9418), 1, - anon_sym_COMMA, - STATE(5181), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192656] = 4, - ACTIONS(6396), 1, + [190283] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9421), 1, + ACTIONS(9561), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192670] = 4, - ACTIONS(6396), 1, + [190297] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9423), 1, + ACTIONS(9563), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192684] = 4, - ACTIONS(6396), 1, + [190311] = 4, + ACTIONS(7252), 1, anon_sym_COMMA, - ACTIONS(9425), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9565), 1, + anon_sym_RBRACK, + STATE(5165), 1, + aux_sym_type_index_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192698] = 4, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(9427), 1, - anon_sym_COLON, - ACTIONS(9429), 1, + [190325] = 4, + ACTIONS(9567), 1, + anon_sym_SEMI, + ACTIONS(9570), 1, sym__newline, + STATE(5236), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192712] = 4, - ACTIONS(9431), 1, - anon_sym_RPAREN, - ACTIONS(9433), 1, + [190339] = 4, + ACTIONS(9210), 1, anon_sym_COMMA, - STATE(4737), 1, - aux_sym__typedargslist_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [192726] = 4, - ACTIONS(9435), 1, - anon_sym_LPAREN, - ACTIONS(9437), 1, - anon_sym_COLON, - ACTIONS(9439), 1, - sym__newline, + ACTIONS(9572), 1, + anon_sym_RBRACK, + STATE(5087), 1, + aux_sym_template_params_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192740] = 4, - ACTIONS(9441), 1, + [190353] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9444), 1, - anon_sym_RBRACK, - STATE(5188), 1, - aux_sym_external_definition_repeat1, + ACTIONS(9574), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192754] = 4, - ACTIONS(6396), 1, + [190367] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9446), 1, + ACTIONS(9576), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192768] = 4, - ACTIONS(6396), 1, + [190381] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9448), 1, + ACTIONS(9578), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192782] = 3, - ACTIONS(9452), 1, - anon_sym_in, + [190395] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9450), 2, - sym__newline, - anon_sym_SEMI, - [192794] = 4, - ACTIONS(6396), 1, + ACTIONS(7801), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(9454), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_as, + [190405] = 4, + ACTIONS(6895), 1, + anon_sym_RBRACE, + ACTIONS(9580), 1, + anon_sym_COMMA, + STATE(5242), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192808] = 4, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(9456), 1, - anon_sym_COLON, - ACTIONS(9458), 1, - sym__newline, + [190419] = 3, + ACTIONS(1476), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192822] = 4, - ACTIONS(9460), 1, - anon_sym_COLON, - ACTIONS(9462), 1, - anon_sym_nogil, - ACTIONS(9464), 1, - sym__newline, + ACTIONS(1478), 2, + anon_sym_except_STAR, + anon_sym_finally, + [190431] = 3, + ACTIONS(1546), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192836] = 4, - ACTIONS(6396), 1, + ACTIONS(1548), 2, + anon_sym_except_STAR, + anon_sym_finally, + [190443] = 4, + ACTIONS(3477), 1, + anon_sym_RPAREN, + ACTIONS(9583), 1, anon_sym_COMMA, - ACTIONS(9466), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + STATE(5106), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192850] = 4, - ACTIONS(8520), 1, - sym__newline, - ACTIONS(8522), 1, - sym__indent, - STATE(1714), 1, - sym__match_block, + [190457] = 4, + ACTIONS(8300), 1, + anon_sym_COMMA, + ACTIONS(9585), 1, + anon_sym_RBRACK, + STATE(5215), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192864] = 4, - ACTIONS(6720), 1, - sym__newline, - ACTIONS(9468), 1, + [190471] = 4, + ACTIONS(2881), 1, + anon_sym_RPAREN, + ACTIONS(9587), 1, anon_sym_COMMA, - STATE(5063), 1, - aux_sym_cvar_def_repeat1, + STATE(4953), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192878] = 4, - ACTIONS(7504), 1, - anon_sym_PIPE, - ACTIONS(9470), 1, - anon_sym_COLON, - STATE(4282), 1, - aux_sym_union_pattern_repeat1, + [190485] = 4, + ACTIONS(8300), 1, + anon_sym_COMMA, + ACTIONS(9589), 1, + anon_sym_RBRACK, + STATE(5215), 1, + aux_sym_external_definition_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192892] = 4, - ACTIONS(6396), 1, + [190499] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9472), 1, + ACTIONS(9591), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192906] = 4, - ACTIONS(9474), 1, + [190513] = 4, + ACTIONS(9593), 1, + anon_sym_RPAREN, + ACTIONS(9595), 1, anon_sym_COMMA, - ACTIONS(9476), 1, - anon_sym_RBRACE, - STATE(4849), 1, - aux_sym_dict_pattern_repeat1, + STATE(5271), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192920] = 2, + [190527] = 4, + ACTIONS(9597), 1, + anon_sym_RPAREN, + ACTIONS(9599), 1, + anon_sym_COMMA, + STATE(5245), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9478), 3, - sym__newline, - anon_sym_COLON, - anon_sym_nogil, - [192930] = 4, - ACTIONS(6396), 1, + [190541] = 4, + ACTIONS(6539), 1, anon_sym_COMMA, - ACTIONS(9480), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + ACTIONS(9601), 1, + anon_sym_RPAREN, + STATE(4808), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192944] = 4, - ACTIONS(8530), 1, + [190555] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9482), 1, - anon_sym_RBRACK, - STATE(4763), 1, - aux_sym_template_params_repeat1, + ACTIONS(9603), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192958] = 3, - ACTIONS(5911), 1, - anon_sym_EQ, + [190569] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5813), 2, + ACTIONS(8378), 3, anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [190579] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(9605), 1, anon_sym_COLON, - [192970] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9484), 1, + ACTIONS(9607), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192984] = 4, - ACTIONS(6396), 1, + [190593] = 4, + ACTIONS(9306), 1, + anon_sym_COLON, + ACTIONS(9609), 1, anon_sym_COMMA, - ACTIONS(9486), 1, - sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + STATE(5256), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [192998] = 4, - ACTIONS(8431), 1, - sym__newline, - ACTIONS(8433), 1, + [190607] = 4, + ACTIONS(6539), 1, + anon_sym_COMMA, + ACTIONS(9612), 1, + anon_sym_RPAREN, + STATE(4808), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [190621] = 3, + ACTIONS(7657), 1, anon_sym_LPAREN, - ACTIONS(9488), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193012] = 4, - ACTIONS(6396), 1, + ACTIONS(9041), 2, anon_sym_COMMA, - ACTIONS(9490), 1, + anon_sym_COLON, + [190633] = 4, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(9614), 1, + anon_sym_COLON, + ACTIONS(9616), 1, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193026] = 4, - ACTIONS(9439), 1, - sym__newline, - ACTIONS(9492), 1, - sym_identifier, - ACTIONS(9494), 1, - anon_sym_COLON, + [190647] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193040] = 4, - ACTIONS(6667), 1, + ACTIONS(7801), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [190657] = 4, + ACTIONS(6844), 1, sym__newline, - ACTIONS(7472), 1, + ACTIONS(9618), 1, anon_sym_COMMA, - STATE(5063), 1, + STATE(5088), 1, aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193054] = 4, - ACTIONS(5688), 1, - anon_sym_RBRACK, - ACTIONS(9496), 1, + [190671] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - STATE(5211), 1, - aux_sym__patterns_repeat1, + ACTIONS(9620), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193068] = 4, - ACTIONS(8240), 1, - anon_sym_DOT, - ACTIONS(8604), 1, - anon_sym_PIPE, - ACTIONS(9499), 1, - anon_sym_COLON, + [190685] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(9622), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193082] = 4, - ACTIONS(6396), 1, + [190699] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9501), 1, + ACTIONS(9624), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193096] = 4, - ACTIONS(6396), 1, + [190713] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9503), 1, + ACTIONS(9626), 1, sym__newline, - STATE(4744), 1, + STATE(4822), 1, aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193110] = 3, - ACTIONS(1510), 1, - anon_sym_except, + [190727] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(9628), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1512), 2, - anon_sym_except_STAR, - anon_sym_finally, - [193122] = 3, - ACTIONS(9507), 1, - anon_sym_as, + [190741] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(9630), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9505), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [193134] = 4, - ACTIONS(3886), 1, + [190755] = 4, + ACTIONS(8284), 1, anon_sym_RPAREN, - ACTIONS(9509), 1, + ACTIONS(9632), 1, anon_sym_COMMA, - STATE(4768), 1, - aux_sym__patterns_repeat1, + STATE(4996), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193148] = 4, - ACTIONS(2861), 1, - anon_sym_RPAREN, - ACTIONS(9511), 1, + [190769] = 4, + ACTIONS(9148), 1, + anon_sym_COLON, + ACTIONS(9634), 1, anon_sym_COMMA, - STATE(4843), 1, - aux_sym_argument_list_repeat1, + STATE(5269), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193162] = 4, - ACTIONS(2851), 1, - anon_sym_RPAREN, - ACTIONS(9513), 1, + [190783] = 4, + ACTIONS(3247), 1, + anon_sym_RBRACE, + ACTIONS(9637), 1, anon_sym_COMMA, - STATE(4843), 1, - aux_sym_argument_list_repeat1, + STATE(5242), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193176] = 4, - ACTIONS(2853), 1, + [190797] = 4, + ACTIONS(2883), 1, anon_sym_RPAREN, - ACTIONS(9515), 1, + ACTIONS(9639), 1, anon_sym_COMMA, - STATE(4843), 1, + STATE(4953), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193190] = 4, - ACTIONS(9193), 1, + [190811] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(9641), 1, sym__newline, - ACTIONS(9195), 1, - sym__indent, - STATE(1533), 1, - sym__match_block, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193204] = 4, - ACTIONS(3143), 1, - anon_sym_RBRACE, - ACTIONS(9517), 1, + [190825] = 4, + ACTIONS(6829), 1, + sym__newline, + ACTIONS(9643), 1, anon_sym_COMMA, - STATE(5181), 1, - aux_sym_assert_statement_repeat1, + STATE(5088), 1, + aux_sym_cvar_def_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193218] = 4, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(9519), 1, - anon_sym_COLON, - ACTIONS(9521), 1, + [190839] = 4, + ACTIONS(6503), 1, + anon_sym_COMMA, + ACTIONS(9645), 1, sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193232] = 4, - ACTIONS(9523), 1, + [190853] = 4, + ACTIONS(7613), 1, + anon_sym_RPAREN, + ACTIONS(9647), 1, anon_sym_COMMA, - ACTIONS(9526), 1, - anon_sym_RBRACE, - STATE(5224), 1, - aux_sym_dict_pattern_repeat1, + STATE(5275), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193246] = 4, - ACTIONS(9528), 1, + [190867] = 4, + ACTIONS(6503), 1, anon_sym_COMMA, - ACTIONS(9530), 1, - anon_sym_RBRACK, - STATE(4967), 1, - aux_sym_subscript_repeat1, + ACTIONS(9650), 1, + sym__newline, + STATE(4822), 1, + aux_sym_cvar_decl_repeat2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193260] = 4, - ACTIONS(9532), 1, - anon_sym_COMMA, - ACTIONS(9534), 1, - anon_sym_RBRACK, - STATE(4967), 1, - aux_sym_subscript_repeat1, + [190881] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193274] = 4, - ACTIONS(6396), 1, - anon_sym_COMMA, - ACTIONS(9536), 1, + ACTIONS(6751), 2, sym__newline, - STATE(4744), 1, - aux_sym_cvar_decl_repeat2, + anon_sym_SEMI, + [190890] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193288] = 4, - ACTIONS(3886), 1, - anon_sym_RBRACK, - ACTIONS(9538), 1, + ACTIONS(9148), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(5211), 1, - aux_sym__patterns_repeat1, + [190899] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193302] = 3, - ACTIONS(9458), 1, - sym__newline, - ACTIONS(9540), 1, - anon_sym_COLON, + ACTIONS(9652), 2, + sym__dedent, + anon_sym_case, + [190908] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(9654), 2, + anon_sym_import, + anon_sym_cimport, + [190917] = 3, + ACTIONS(9656), 1, + anon_sym_LPAREN, + STATE(2441), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193313] = 2, + [190928] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8753), 2, + ACTIONS(5725), 2, anon_sym_COMMA, - anon_sym_COLON, - [193322] = 3, - ACTIONS(9542), 1, - sym_integer, - ACTIONS(9544), 1, - sym_float, + anon_sym_RBRACK, + [190937] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193333] = 3, - ACTIONS(8195), 1, + ACTIONS(9658), 2, + sym__newline, + anon_sym_SEMI, + [190946] = 3, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9546), 1, - anon_sym_RPAREN, + STATE(2510), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193344] = 2, + [190957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3816), 2, + ACTIONS(9662), 2, + anon_sym_COMMA, + anon_sym_COLON, + [190966] = 3, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(9664), 1, anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [190977] = 3, + ACTIONS(9666), 1, anon_sym_COMMA, - [193353] = 3, - ACTIONS(9548), 1, + STATE(4371), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [190988] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - STATE(2169), 1, - sym_argument_list, + ACTIONS(9668), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193364] = 3, - ACTIONS(9550), 1, - anon_sym_COLON, - ACTIONS(9552), 1, - anon_sym_DASH_GT, + [190999] = 3, + ACTIONS(9670), 1, + anon_sym_LPAREN, + STATE(3520), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193375] = 2, + [191010] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9554), 2, - anon_sym_import, - anon_sym_cimport, - [193384] = 3, - ACTIONS(9556), 1, + ACTIONS(9672), 2, anon_sym_COMMA, - STATE(4295), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [193395] = 3, - ACTIONS(9558), 1, anon_sym_COLON, - ACTIONS(9560), 1, - sym__newline, + [191019] = 3, + ACTIONS(5549), 1, + anon_sym_RPAREN, + ACTIONS(9674), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193406] = 3, - ACTIONS(8108), 1, + [191030] = 3, + ACTIONS(8162), 1, anon_sym_RPAREN, - ACTIONS(8344), 1, + ACTIONS(8509), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193417] = 3, - ACTIONS(9562), 1, - sym_integer, - ACTIONS(9564), 1, - sym_float, + [191041] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193428] = 3, - ACTIONS(9566), 1, + ACTIONS(9201), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [191050] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - STATE(2428), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [193439] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9568), 2, - sym__dedent, - anon_sym_case, - [193448] = 3, - ACTIONS(7008), 1, - anon_sym_COLON, - ACTIONS(7010), 1, - sym__newline, + ACTIONS(9676), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193459] = 3, - ACTIONS(9570), 1, + [191061] = 3, + ACTIONS(9678), 1, anon_sym_LPAREN, - STATE(2463), 1, + STATE(2516), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193470] = 3, - ACTIONS(8195), 1, + [191072] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9572), 1, + ACTIONS(9680), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193481] = 3, - ACTIONS(9574), 1, - anon_sym_COLON, - ACTIONS(9576), 1, - sym__newline, + [191083] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193492] = 3, - ACTIONS(8195), 1, - anon_sym_LPAREN, - ACTIONS(9578), 1, - anon_sym_RPAREN, + ACTIONS(3920), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [191092] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193503] = 2, + ACTIONS(9682), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [191101] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9580), 2, + ACTIONS(6751), 2, anon_sym_COMMA, - anon_sym_COLON, - [193512] = 3, - ACTIONS(9065), 1, - sym__newline, - ACTIONS(9582), 1, - anon_sym_COLON, + anon_sym_RBRACK, + [191110] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193523] = 2, + ACTIONS(9684), 2, + sym__dedent, + anon_sym_case, + [191119] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5813), 2, - anon_sym_COMMA, - anon_sym_COLON, - [193532] = 3, - ACTIONS(9584), 1, - anon_sym_LPAREN, - STATE(2357), 1, - sym_argument_list, + ACTIONS(9686), 2, + sym__dedent, + anon_sym_case, + [191128] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193543] = 3, - ACTIONS(8195), 1, + ACTIONS(9688), 2, + sym__dedent, + anon_sym_case, + [191137] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9586), 1, + ACTIONS(9690), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193554] = 2, + [191148] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9588), 2, + ACTIONS(9692), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [191157] = 3, + ACTIONS(8899), 1, + sym__newline, + ACTIONS(9694), 1, anon_sym_COLON, - anon_sym_DASH_GT, - [193563] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9580), 2, - anon_sym_RPAREN, + [191168] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(5974), 2, anon_sym_COMMA, - [193572] = 2, + anon_sym_COLON, + [191177] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9590), 2, - anon_sym__, - sym_identifier, - [193581] = 3, - ACTIONS(7815), 1, + ACTIONS(5840), 2, anon_sym_RPAREN, - ACTIONS(8344), 1, - anon_sym_LPAREN, + anon_sym_COMMA, + [191186] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193592] = 2, + ACTIONS(9696), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [191195] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5813), 2, + ACTIONS(7613), 2, anon_sym_COMMA, - anon_sym_COLON, - [193601] = 3, - ACTIONS(8433), 1, - anon_sym_LPAREN, - ACTIONS(9592), 1, - sym__newline, + anon_sym_RBRACE, + [191204] = 3, + ACTIONS(9698), 1, + sym_integer, + ACTIONS(9700), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193612] = 2, + [191215] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9594), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [193621] = 3, - ACTIONS(9596), 1, - sym_integer, - ACTIONS(9598), 1, - sym_float, + ACTIONS(9702), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [191224] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193632] = 2, + ACTIONS(9260), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [191233] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9600), 2, + ACTIONS(9704), 2, + anon_sym_nogil, + anon_sym_gil, + [191242] = 3, + ACTIONS(9706), 1, + anon_sym_COLON, + ACTIONS(9708), 1, sym__newline, - anon_sym_SEMI, - [193641] = 3, - ACTIONS(8225), 1, - anon_sym_LPAREN, - STATE(5364), 1, - sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193652] = 3, - ACTIONS(8195), 1, - anon_sym_LPAREN, - ACTIONS(9602), 1, - anon_sym_RPAREN, + [191253] = 3, + ACTIONS(8689), 1, + sym__newline, + ACTIONS(9710), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193663] = 3, - ACTIONS(5449), 1, - anon_sym_RPAREN, - ACTIONS(9604), 1, - anon_sym_COMMA, + [191264] = 3, + ACTIONS(9712), 1, + anon_sym_LPAREN, + STATE(2636), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193674] = 2, + [191275] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9606), 2, + ACTIONS(9714), 2, sym__newline, anon_sym_SEMI, - [193683] = 2, + [191284] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9126), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [193692] = 2, + ACTIONS(9716), 2, + sym__dedent, + anon_sym_case, + [191293] = 3, + ACTIONS(6922), 1, + sym_string_start, + STATE(2883), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9608), 2, - sym__dedent, - anon_sym_case, - [193701] = 3, - ACTIONS(9610), 1, + [191304] = 3, + ACTIONS(9265), 1, anon_sym_COLON, - ACTIONS(9612), 1, + ACTIONS(9269), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193712] = 2, + [191315] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7706), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [193721] = 3, - ACTIONS(9614), 1, + ACTIONS(9718), 2, + sym__dedent, + anon_sym_case, + [191324] = 3, + ACTIONS(9720), 1, anon_sym_COLON, - ACTIONS(9616), 1, + ACTIONS(9722), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193732] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8312), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [193741] = 3, - ACTIONS(6983), 1, - anon_sym_COLON, - ACTIONS(6985), 1, - anon_sym_by, + [191335] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193752] = 3, - ACTIONS(9147), 1, - anon_sym_COLON, - ACTIONS(9151), 1, + ACTIONS(9724), 2, sym__newline, + anon_sym_SEMI, + [191344] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193763] = 2, + ACTIONS(9570), 2, + sym__newline, + anon_sym_SEMI, + [191353] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9618), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [193772] = 3, - ACTIONS(9620), 1, + ACTIONS(9726), 2, + anon_sym_nogil, + anon_sym_gil, + [191362] = 3, + ACTIONS(8270), 1, + anon_sym_RPAREN, + ACTIONS(8509), 1, anon_sym_LPAREN, - STATE(2507), 1, - sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193783] = 2, + [191373] = 3, + ACTIONS(7176), 1, + anon_sym_COLON, + ACTIONS(7178), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9161), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [193792] = 3, - ACTIONS(7068), 1, - anon_sym_COLON, - ACTIONS(7070), 1, - anon_sym_by, + [191384] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193803] = 3, - ACTIONS(9622), 1, + ACTIONS(9306), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [191393] = 3, + ACTIONS(8408), 1, anon_sym_LPAREN, - STATE(2620), 1, - sym_argument_list, + STATE(5435), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193814] = 2, + [191404] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6644), 2, + ACTIONS(9728), 2, sym__newline, anon_sym_SEMI, - [193823] = 3, - ACTIONS(9624), 1, + [191413] = 3, + ACTIONS(7135), 1, anon_sym_COLON, - ACTIONS(9626), 1, - anon_sym_DASH_GT, + ACTIONS(7137), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193834] = 2, + [191424] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9380), 2, - anon_sym_RPAREN, + ACTIONS(5974), 2, anon_sym_COMMA, - [193843] = 3, - ACTIONS(8195), 1, - anon_sym_LPAREN, - ACTIONS(9628), 1, - anon_sym_RPAREN, + anon_sym_COLON, + [191433] = 3, + ACTIONS(9730), 1, + anon_sym_COLON, + ACTIONS(9732), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193854] = 3, - ACTIONS(8195), 1, + [191444] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9630), 1, + ACTIONS(9734), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193865] = 3, - ACTIONS(7986), 1, - anon_sym_COLON, - ACTIONS(7988), 1, - sym__newline, + [191455] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193876] = 2, + ACTIONS(5725), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [191464] = 3, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(9736), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9632), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [193885] = 3, - ACTIONS(9634), 1, + [191475] = 3, + ACTIONS(9738), 1, sym_identifier, - STATE(5203), 1, + STATE(5090), 1, sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193896] = 3, - ACTIONS(6677), 1, + [191486] = 3, + ACTIONS(6768), 1, anon_sym_LPAREN, - STATE(4030), 1, + STATE(4017), 1, sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193907] = 2, + [191497] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9632), 2, - anon_sym_COMMA, - anon_sym_COLON, - [193916] = 3, - ACTIONS(9636), 1, + ACTIONS(9740), 2, + anon_sym__, + sym_identifier, + [191506] = 3, + ACTIONS(9742), 1, + sym_integer, + ACTIONS(9744), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191517] = 3, + ACTIONS(9746), 1, anon_sym_COLON, - ACTIONS(9638), 1, + ACTIONS(9748), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193927] = 3, - ACTIONS(6826), 1, + [191528] = 3, + ACTIONS(7016), 1, anon_sym_COLON, - ACTIONS(6828), 1, + ACTIONS(7018), 1, anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193938] = 2, + [191539] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6090), 2, + ACTIONS(3920), 2, anon_sym_RPAREN, anon_sym_COMMA, - [193947] = 3, - ACTIONS(9640), 1, + [191548] = 3, + ACTIONS(9750), 1, anon_sym_COLON, - ACTIONS(9642), 1, + ACTIONS(9752), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193958] = 3, - ACTIONS(8195), 1, + [191559] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9644), 1, + ACTIONS(9754), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193969] = 3, - ACTIONS(8195), 1, + [191570] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9646), 1, + ACTIONS(9756), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [193980] = 2, + [191581] = 3, + ACTIONS(9758), 1, + anon_sym_LPAREN, + STATE(3920), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5736), 2, + [191592] = 3, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(9760), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [193989] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9648), 2, - anon_sym_type, - anon_sym_object, - [193998] = 3, - ACTIONS(6868), 1, - anon_sym_COLON, - ACTIONS(6870), 1, - anon_sym_by, + [191603] = 3, + ACTIONS(9762), 1, + anon_sym_RPAREN, + ACTIONS(9764), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194009] = 3, - ACTIONS(9189), 1, - sym__newline, - ACTIONS(9650), 1, + [191614] = 3, + ACTIONS(7097), 1, anon_sym_COLON, + ACTIONS(7099), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194020] = 3, - ACTIONS(9652), 1, + [191625] = 3, + ACTIONS(9766), 1, anon_sym_COLON, - ACTIONS(9654), 1, + ACTIONS(9768), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194031] = 3, - ACTIONS(9656), 1, - sym_integer, - ACTIONS(9658), 1, - sym_float, + [191636] = 3, + ACTIONS(9770), 1, + anon_sym_LPAREN, + STATE(3179), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194042] = 3, - ACTIONS(8506), 1, - sym__newline, - ACTIONS(9660), 1, - anon_sym_COLON, + [191647] = 3, + ACTIONS(8115), 1, + anon_sym_RPAREN, + ACTIONS(8509), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194053] = 3, - ACTIONS(8195), 1, + [191658] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9662), 1, + ACTIONS(9772), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194064] = 3, - ACTIONS(6842), 1, + [191669] = 3, + ACTIONS(6922), 1, sym_string_start, - STATE(2859), 1, + STATE(2887), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194075] = 3, - ACTIONS(8195), 1, + [191680] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9774), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194086] = 3, - ACTIONS(9666), 1, + [191691] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - STATE(3928), 1, - sym_argument_list, + ACTIONS(9776), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194097] = 3, - ACTIONS(6842), 1, - sym_string_start, - STATE(5655), 1, - sym_string, + [191702] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194108] = 3, - ACTIONS(8195), 1, + ACTIONS(9778), 2, + anon_sym_type, + anon_sym_object, + [191711] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9668), 1, + ACTIONS(9780), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194119] = 3, - ACTIONS(7832), 1, + [191722] = 3, + ACTIONS(8212), 1, anon_sym_RPAREN, - ACTIONS(8344), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [194130] = 3, - ACTIONS(8195), 1, + ACTIONS(8509), 1, anon_sym_LPAREN, - ACTIONS(9670), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194141] = 3, - ACTIONS(8195), 1, + [191733] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9672), 1, + ACTIONS(9782), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194152] = 3, - ACTIONS(8195), 1, + [191744] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9674), 1, + ACTIONS(9784), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194163] = 3, - ACTIONS(8195), 1, + [191755] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9676), 1, + ACTIONS(9786), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194174] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9678), 2, + [191766] = 3, + ACTIONS(8039), 1, + anon_sym_COLON, + ACTIONS(8041), 1, sym__newline, - anon_sym_SEMI, - [194183] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6544), 2, - sym__newline, - anon_sym_SEMI, - [194192] = 3, - ACTIONS(7840), 1, - anon_sym_RPAREN, - ACTIONS(8344), 1, + [191777] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, + ACTIONS(9788), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194203] = 2, + [191788] = 3, + ACTIONS(9790), 1, + anon_sym_COLON, + ACTIONS(9792), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8852), 2, - sym__newline, - anon_sym_SEMI, - [194212] = 2, + [191799] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7670), 2, + ACTIONS(9794), 2, sym__newline, - anon_sym_COLON, - [194221] = 2, + anon_sym_SEMI, + [191808] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5688), 2, + ACTIONS(6226), 2, anon_sym_RPAREN, anon_sym_COMMA, - [194230] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3816), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [194239] = 3, - ACTIONS(9680), 1, + [191817] = 3, + ACTIONS(9796), 1, anon_sym_LPAREN, - STATE(2620), 1, + STATE(2670), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194250] = 3, - ACTIONS(9682), 1, + [191828] = 3, + ACTIONS(9798), 1, anon_sym_LPAREN, - STATE(3141), 1, + STATE(3179), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194261] = 3, - ACTIONS(9684), 1, + [191839] = 3, + ACTIONS(9800), 1, anon_sym_LPAREN, - STATE(2507), 1, + STATE(2636), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194272] = 3, - ACTIONS(9686), 1, + [191850] = 3, + ACTIONS(9802), 1, anon_sym_LPAREN, - STATE(2463), 1, + STATE(2441), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194283] = 3, - ACTIONS(9688), 1, + [191861] = 3, + ACTIONS(9804), 1, anon_sym_LPAREN, - STATE(3928), 1, + STATE(3920), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194294] = 3, - ACTIONS(9690), 1, + [191872] = 3, + ACTIONS(9806), 1, anon_sym_LPAREN, - STATE(2743), 1, + STATE(2752), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194305] = 3, - ACTIONS(9692), 1, + [191883] = 3, + ACTIONS(9808), 1, anon_sym_LPAREN, - STATE(2660), 1, + STATE(2708), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194316] = 2, + [191894] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5813), 2, + ACTIONS(7774), 2, anon_sym_RPAREN, anon_sym_COMMA, - [194325] = 3, - ACTIONS(8114), 1, + [191903] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7649), 2, anon_sym_RPAREN, - ACTIONS(8344), 1, + anon_sym_COMMA, + [191912] = 3, + ACTIONS(9810), 1, + anon_sym_COLON, + ACTIONS(9812), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191923] = 3, + ACTIONS(8408), 1, anon_sym_LPAREN, + STATE(5505), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191934] = 3, + ACTIONS(8985), 1, + anon_sym_COLON, + ACTIONS(8989), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [191945] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194336] = 2, + ACTIONS(9814), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [191954] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9694), 2, + ACTIONS(7069), 2, sym__newline, anon_sym_SEMI, - [194345] = 3, - ACTIONS(6677), 1, - anon_sym_LPAREN, - STATE(3958), 1, - sym_c_parameters, + [191963] = 3, + ACTIONS(6932), 1, + anon_sym_COLON, + ACTIONS(6934), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194356] = 2, + [191974] = 3, + ACTIONS(8624), 1, + sym__newline, + ACTIONS(9816), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9696), 2, - sym__dedent, - anon_sym_case, - [194365] = 2, + [191985] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9698), 2, + ACTIONS(9818), 2, sym__newline, anon_sym_SEMI, - [194374] = 3, - ACTIONS(8195), 1, + [191994] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9700), 1, + ACTIONS(9820), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194385] = 3, - ACTIONS(6677), 1, - anon_sym_LPAREN, - STATE(3936), 1, - sym_c_parameters, + [192005] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194396] = 3, - ACTIONS(9702), 1, - anon_sym_COLON, - ACTIONS(9704), 1, - sym__newline, + ACTIONS(8342), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [192014] = 3, + ACTIONS(6922), 1, + sym_string_start, + STATE(5545), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194407] = 3, - ACTIONS(8195), 1, + [192025] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9706), 1, + ACTIONS(9822), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194418] = 3, - ACTIONS(7004), 1, + [192036] = 3, + ACTIONS(6768), 1, + anon_sym_LPAREN, + STATE(4069), 1, + sym_c_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192047] = 3, + ACTIONS(9824), 1, anon_sym_COLON, - ACTIONS(7006), 1, - anon_sym_by, + ACTIONS(9826), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194429] = 3, - ACTIONS(8195), 1, + [192058] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9708), 1, + ACTIONS(9828), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194440] = 2, + [192069] = 3, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(9830), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9710), 2, - sym__dedent, - anon_sym_case, - [194449] = 2, + [192080] = 3, + ACTIONS(9832), 1, + anon_sym_COLON, + ACTIONS(9834), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9712), 2, - sym__dedent, - anon_sym_case, - [194458] = 2, + [192091] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9714), 2, - anon_sym_nogil, - anon_sym_gil, - [194467] = 3, - ACTIONS(8195), 1, + ACTIONS(9836), 2, + sym__newline, + anon_sym_SEMI, + [192100] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9716), 1, + ACTIONS(9838), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194478] = 3, - ACTIONS(6842), 1, + [192111] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(7881), 2, + sym__newline, + anon_sym_COLON, + [192120] = 3, + ACTIONS(6922), 1, sym_string_start, - STATE(2858), 1, + STATE(2904), 1, sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194489] = 3, - ACTIONS(8195), 1, + [192131] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9718), 1, + ACTIONS(9840), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194500] = 3, - ACTIONS(8195), 1, + [192142] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9720), 1, + ACTIONS(9842), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194511] = 2, + [192153] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6644), 2, - anon_sym_RPAREN, + ACTIONS(9441), 2, anon_sym_COMMA, - [194520] = 3, - ACTIONS(8195), 1, + anon_sym_RBRACE, + [192162] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9722), 1, + ACTIONS(9844), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194531] = 3, - ACTIONS(9724), 1, - anon_sym_COLON, - ACTIONS(9726), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [194542] = 2, + [192173] = 3, + ACTIONS(8241), 1, + anon_sym_RPAREN, + ACTIONS(8509), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9728), 2, - sym__dedent, - anon_sym_case, - [194551] = 3, - ACTIONS(8195), 1, + [192184] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9730), 1, + ACTIONS(9846), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194562] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(9732), 2, - sym__dedent, - anon_sym_case, - [194571] = 3, - ACTIONS(8195), 1, + [192195] = 3, + ACTIONS(9848), 1, anon_sym_LPAREN, - ACTIONS(9734), 1, - anon_sym_RPAREN, + STATE(2216), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194582] = 3, - ACTIONS(8195), 1, + [192206] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9736), 1, + ACTIONS(9850), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194593] = 3, - ACTIONS(9738), 1, - anon_sym_LPAREN, - STATE(3141), 1, - sym_argument_list, + [192217] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194604] = 3, - ACTIONS(9740), 1, - anon_sym_RPAREN, - ACTIONS(9742), 1, - anon_sym_COMMA, + ACTIONS(7840), 2, + sym__newline, + anon_sym_COLON, + [192226] = 3, + ACTIONS(9852), 1, + anon_sym_COLON, + ACTIONS(9854), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194615] = 2, + [192237] = 3, + ACTIONS(9856), 1, + sym_integer, + ACTIONS(9858), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9744), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [194624] = 2, + [192248] = 3, + ACTIONS(9660), 1, + anon_sym_LPAREN, + STATE(3179), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8753), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [194633] = 2, + [192259] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9746), 2, - sym__dedent, - anon_sym_case, - [194642] = 3, - ACTIONS(9748), 1, - anon_sym_COLON, - ACTIONS(9750), 1, + ACTIONS(9860), 2, sym__newline, + anon_sym_SEMI, + [192268] = 3, + ACTIONS(6936), 1, + anon_sym_COLON, + ACTIONS(6938), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194653] = 2, + [192279] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9752), 2, - anon_sym__, - sym_identifier, - [194662] = 3, - ACTIONS(9754), 1, - anon_sym_LPAREN, - STATE(5437), 1, - sym_c_parameters, + ACTIONS(9452), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [192288] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194673] = 3, - ACTIONS(9566), 1, + ACTIONS(9862), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [192297] = 3, + ACTIONS(9864), 1, anon_sym_LPAREN, - STATE(3141), 1, + STATE(2752), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194684] = 3, - ACTIONS(6977), 1, + [192308] = 3, + ACTIONS(8564), 1, + sym__newline, + ACTIONS(9866), 1, anon_sym_COLON, - ACTIONS(6979), 1, - anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194695] = 3, - ACTIONS(9756), 1, + [192319] = 3, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(9868), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192330] = 3, + ACTIONS(7162), 1, anon_sym_COLON, - ACTIONS(9758), 1, - anon_sym_DASH_GT, + ACTIONS(7164), 1, + anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194706] = 2, + [192341] = 3, + ACTIONS(8560), 1, + anon_sym_LPAREN, + ACTIONS(9870), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9760), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [194715] = 2, + [192352] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7235), 2, + ACTIONS(7242), 2, anon_sym_COMMA, anon_sym_RBRACK, - [194724] = 3, - ACTIONS(8195), 1, - anon_sym_LPAREN, - ACTIONS(9762), 1, - anon_sym_RPAREN, + [192361] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194735] = 3, - ACTIONS(9764), 1, - anon_sym_LPAREN, - STATE(2743), 1, - sym_argument_list, + ACTIONS(9872), 2, + sym__newline, + anon_sym_SEMI, + [192370] = 3, + ACTIONS(9874), 1, + anon_sym_COLON, + ACTIONS(9876), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194746] = 2, + [192381] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9766), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [194755] = 2, + ACTIONS(9878), 2, + anon_sym_import, + anon_sym_cimport, + [192390] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9768), 2, + ACTIONS(6652), 2, sym__newline, anon_sym_SEMI, - [194764] = 3, - ACTIONS(9770), 1, + [192399] = 3, + ACTIONS(9471), 1, anon_sym_COLON, - ACTIONS(9772), 1, + ACTIONS(9475), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194775] = 3, - ACTIONS(8225), 1, - anon_sym_LPAREN, - STATE(5421), 1, - sym_parameters, + [192410] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194786] = 3, - ACTIONS(8061), 1, + ACTIONS(9880), 2, + sym__newline, + anon_sym_SEMI, + [192419] = 3, + ACTIONS(7889), 1, anon_sym_RPAREN, - ACTIONS(8344), 1, + ACTIONS(8509), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194797] = 2, + [192430] = 3, + ACTIONS(9882), 1, + anon_sym_COLON, + ACTIONS(9884), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9774), 2, - sym__newline, - anon_sym_SEMI, - [194806] = 2, + [192441] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6644), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [194815] = 3, - ACTIONS(8195), 1, - anon_sym_LPAREN, - ACTIONS(9776), 1, - anon_sym_RPAREN, + ACTIONS(9886), 2, + anon_sym__, + sym_identifier, + [192450] = 3, + ACTIONS(9888), 1, + sym_integer, + ACTIONS(9890), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194826] = 2, + [192461] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7558), 2, + ACTIONS(7182), 2, sym__newline, - anon_sym_COLON, - [194835] = 3, - ACTIONS(6842), 1, - sym_string_start, - STATE(2844), 1, - sym_string, + anon_sym_SEMI, + [192470] = 3, + ACTIONS(9892), 1, + sym_integer, + ACTIONS(9894), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194846] = 2, + [192481] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9778), 2, - sym__newline, - anon_sym_SEMI, - [194855] = 3, - ACTIONS(7030), 1, + ACTIONS(5836), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [192490] = 3, + ACTIONS(7093), 1, anon_sym_COLON, - ACTIONS(7032), 1, + ACTIONS(7095), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194866] = 3, - ACTIONS(9780), 1, + [192501] = 3, + ACTIONS(9896), 1, anon_sym_COLON, - ACTIONS(9782), 1, - sym__newline, + ACTIONS(9898), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194877] = 2, + [192512] = 3, + ACTIONS(9900), 1, + anon_sym_COLON, + ACTIONS(9902), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9784), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [194886] = 3, - ACTIONS(7868), 1, + [192523] = 3, + ACTIONS(7952), 1, anon_sym_RPAREN, - ACTIONS(8344), 1, + ACTIONS(8509), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194897] = 3, - ACTIONS(8445), 1, + [192534] = 3, + ACTIONS(8820), 1, sym__newline, - ACTIONS(9786), 1, + ACTIONS(9904), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194908] = 2, + [192545] = 3, + ACTIONS(9738), 1, + sym_identifier, + STATE(5069), 1, + sym_template_param, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [192556] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9788), 2, - sym__dedent, - anon_sym_case, - [194917] = 3, - ACTIONS(9368), 1, + ACTIONS(9906), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(9372), 1, - sym__newline, + [192565] = 3, + ACTIONS(9908), 1, + sym_integer, + ACTIONS(9910), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194928] = 2, + [192576] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8647), 2, - anon_sym_RPAREN, + ACTIONS(9912), 2, anon_sym_COMMA, - [194937] = 2, + anon_sym_RBRACE, + [192585] = 3, + ACTIONS(9914), 1, + sym_integer, + ACTIONS(9916), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9790), 2, - sym__dedent, - anon_sym_case, - [194946] = 2, + [192596] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9792), 2, - sym__dedent, - anon_sym_case, - [194955] = 2, + ACTIONS(9662), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [192605] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9794), 2, - sym__newline, - anon_sym_SEMI, - [194964] = 3, - ACTIONS(9796), 1, + ACTIONS(9278), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [192614] = 3, + ACTIONS(9918), 1, anon_sym_COLON, - ACTIONS(9798), 1, + ACTIONS(9920), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194975] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(8918), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [194984] = 3, - ACTIONS(9800), 1, + [192625] = 3, + ACTIONS(9922), 1, sym_integer, - ACTIONS(9802), 1, + ACTIONS(9924), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [194995] = 3, - ACTIONS(8195), 1, + [192636] = 3, + ACTIONS(9926), 1, anon_sym_LPAREN, - ACTIONS(9804), 1, - anon_sym_RPAREN, + STATE(3520), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195006] = 3, - ACTIONS(8195), 1, + [192647] = 3, + ACTIONS(8327), 1, anon_sym_LPAREN, - ACTIONS(9806), 1, + ACTIONS(9928), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195017] = 2, + [192658] = 3, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(9930), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9808), 2, - sym__newline, - anon_sym_SEMI, - [195026] = 2, + [192669] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9810), 2, - sym__newline, - anon_sym_SEMI, - [195035] = 3, - ACTIONS(6822), 1, - anon_sym_COLON, - ACTIONS(6824), 1, - anon_sym_by, + ACTIONS(9932), 2, + sym__dedent, + anon_sym_case, + [192678] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195046] = 2, + ACTIONS(9934), 2, + sym__dedent, + anon_sym_case, + [192687] = 3, + ACTIONS(8408), 1, + anon_sym_LPAREN, + STATE(5344), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9812), 2, - sym__newline, - anon_sym_SEMI, - [195055] = 2, + [192698] = 3, + ACTIONS(9936), 1, + anon_sym_COLON, + ACTIONS(9938), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8775), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [195064] = 2, + [192709] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9814), 2, - anon_sym_import, - anon_sym_cimport, - [195073] = 3, - ACTIONS(9816), 1, - anon_sym_LPAREN, - STATE(3499), 1, - sym_argument_list, + ACTIONS(5974), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [192718] = 3, + ACTIONS(9940), 1, + anon_sym_COLON, + ACTIONS(9942), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195084] = 2, + [192729] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8413), 2, - anon_sym_from, - anon_sym_in, - [195093] = 2, + ACTIONS(9944), 2, + anon_sym_type, + anon_sym_object, + [192738] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9744), 2, + ACTIONS(6751), 2, anon_sym_RPAREN, anon_sym_COMMA, - [195102] = 3, - ACTIONS(8225), 1, + [192747] = 3, + ACTIONS(8408), 1, anon_sym_LPAREN, - STATE(5292), 1, + STATE(5351), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195113] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(7486), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [195122] = 2, + [192758] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9818), 2, - anon_sym_type, - anon_sym_object, - [195131] = 2, + ACTIONS(9946), 2, + sym__newline, + anon_sym_SEMI, + [192767] = 3, + ACTIONS(9948), 1, + sym_integer, + ACTIONS(9950), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5748), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [195140] = 2, + [192778] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9766), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [195149] = 3, - ACTIONS(9820), 1, - anon_sym_COLON, - ACTIONS(9822), 1, + ACTIONS(9952), 2, sym__newline, + anon_sym_SEMI, + [192787] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195160] = 3, - ACTIONS(8225), 1, - anon_sym_LPAREN, - STATE(5299), 1, - sym_parameters, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [195171] = 2, + ACTIONS(9954), 2, + sym__dedent, + anon_sym_case, + [192796] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9824), 2, + ACTIONS(9956), 2, anon_sym__, sym_identifier, - [195180] = 2, + [192805] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7556), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [195189] = 3, - ACTIONS(9826), 1, - sym_integer, - ACTIONS(9828), 1, - sym_float, + ACTIONS(9958), 2, + sym__dedent, + anon_sym_case, + [192814] = 3, + ACTIONS(6948), 1, + anon_sym_COLON, + ACTIONS(6958), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195200] = 2, + [192825] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9830), 2, - anon_sym__, - sym_identifier, - [195209] = 2, + ACTIONS(9960), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [192834] = 3, + ACTIONS(9962), 1, + anon_sym_COLON, + ACTIONS(9964), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9832), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [195218] = 3, - ACTIONS(9834), 1, + [192845] = 3, + ACTIONS(9966), 1, sym_integer, - ACTIONS(9836), 1, + ACTIONS(9968), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195229] = 2, + [192856] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9760), 2, + ACTIONS(5840), 2, anon_sym_COMMA, - anon_sym_COLON, - [195238] = 2, + anon_sym_RBRACK, + [192865] = 3, + ACTIONS(9738), 1, + sym_identifier, + STATE(5312), 1, + sym_template_param, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9838), 2, - sym__newline, - anon_sym_SEMI, - [195247] = 2, + [192876] = 3, + ACTIONS(9970), 1, + anon_sym_LPAREN, + STATE(2708), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5736), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [195256] = 3, - ACTIONS(9840), 1, - anon_sym_COLON, - ACTIONS(9842), 1, - anon_sym_DASH_GT, + [192887] = 3, + ACTIONS(9972), 1, + anon_sym_LPAREN, + STATE(2670), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195267] = 3, - ACTIONS(8766), 1, - sym__newline, - ACTIONS(9844), 1, - anon_sym_COLON, + [192898] = 3, + ACTIONS(9974), 1, + anon_sym_LPAREN, + STATE(5298), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195278] = 2, + [192909] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2403), 2, - sym__newline, - anon_sym_SEMI, - [195287] = 3, - ACTIONS(8195), 1, + ACTIONS(8523), 2, + anon_sym_from, + anon_sym_in, + [192918] = 3, + ACTIONS(6768), 1, anon_sym_LPAREN, - ACTIONS(9846), 1, - anon_sym_RPAREN, + STATE(4084), 1, + sym_c_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195298] = 3, - ACTIONS(8195), 1, - anon_sym_LPAREN, - ACTIONS(9848), 1, - anon_sym_RPAREN, + [192929] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195309] = 3, - ACTIONS(9850), 1, - anon_sym_COLON, - ACTIONS(9852), 1, + ACTIONS(9976), 2, sym__newline, + anon_sym_SEMI, + [192938] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195320] = 3, - ACTIONS(9634), 1, - sym_identifier, - STATE(5276), 1, - sym_template_param, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [195331] = 3, - ACTIONS(8195), 1, - anon_sym_LPAREN, - ACTIONS(9854), 1, + ACTIONS(9692), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [192947] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195342] = 3, - ACTIONS(9429), 1, + ACTIONS(9696), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [192956] = 3, + ACTIONS(9553), 1, sym__newline, - ACTIONS(9856), 1, + ACTIONS(9978), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195353] = 3, - ACTIONS(7998), 1, - anon_sym_COLON, - ACTIONS(8000), 1, - sym__newline, + [192967] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195364] = 3, - ACTIONS(9858), 1, - anon_sym_LPAREN, - STATE(2660), 1, - sym_argument_list, + ACTIONS(9980), 2, + anon_sym__, + sym_identifier, + [192976] = 3, + ACTIONS(9982), 1, + sym_integer, + ACTIONS(9984), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195375] = 3, - ACTIONS(8886), 1, - sym__newline, - ACTIONS(9860), 1, - anon_sym_COLON, + [192987] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195386] = 3, - ACTIONS(7026), 1, + ACTIONS(7613), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [192996] = 3, + ACTIONS(7172), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(7174), 1, anon_sym_by, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195397] = 3, - ACTIONS(7846), 1, - anon_sym_COLON, - ACTIONS(7848), 1, - sym__newline, + [193007] = 3, + ACTIONS(7931), 1, + anon_sym_RPAREN, + ACTIONS(8509), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195408] = 3, - ACTIONS(9460), 1, - anon_sym_COLON, - ACTIONS(9464), 1, - sym__newline, + [193018] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195419] = 3, - ACTIONS(9862), 1, - anon_sym_LPAREN, - STATE(3499), 1, - sym_argument_list, + ACTIONS(9672), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [193027] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195430] = 2, + ACTIONS(9986), 2, + anon_sym_type, + anon_sym_object, + [193036] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9864), 2, - anon_sym_RPAREN, + ACTIONS(9306), 2, anon_sym_COMMA, - [195439] = 2, + anon_sym_COLON, + [193045] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9866), 2, + ACTIONS(9988), 2, sym__dedent, anon_sym_case, - [195448] = 2, + [193054] = 3, + ACTIONS(9607), 1, + sym__newline, + ACTIONS(9990), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9868), 2, - anon_sym_type, - anon_sym_object, - [195457] = 3, - ACTIONS(5461), 1, + [193065] = 3, + ACTIONS(7186), 1, anon_sym_COLON, - STATE(5392), 1, - sym_memory_view_index, + ACTIONS(7188), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195468] = 3, - ACTIONS(9870), 1, - sym_integer, - ACTIONS(9872), 1, - sym_float, + [193076] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195479] = 3, - ACTIONS(9874), 1, - sym_integer, - ACTIONS(9876), 1, - sym_float, + ACTIONS(9992), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [193085] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195490] = 3, - ACTIONS(7892), 1, - anon_sym_RPAREN, - ACTIONS(8344), 1, - anon_sym_LPAREN, + ACTIONS(9692), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [193094] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195501] = 2, + ACTIONS(9994), 2, + anon_sym_type, + anon_sym_object, + [193103] = 3, + ACTIONS(8658), 1, + sym__newline, + ACTIONS(9996), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8647), 2, - anon_sym_COMMA, + [193114] = 3, + ACTIONS(8136), 1, anon_sym_COLON, - [195510] = 2, + ACTIONS(8138), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9878), 2, - anon_sym_nogil, - anon_sym_gil, - [195519] = 2, + [193125] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9766), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [195528] = 2, + ACTIONS(8489), 2, + anon_sym_from, + anon_sym_in, + [193134] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9880), 2, - anon_sym_type, - anon_sym_object, - [195537] = 2, + ACTIONS(1985), 2, + sym__newline, + anon_sym_SEMI, + [193143] = 3, + ACTIONS(9616), 1, + sym__newline, + ACTIONS(9998), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193154] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9882), 2, + ACTIONS(10000), 2, anon_sym_type, anon_sym_object, - [195546] = 2, + [193163] = 3, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(10002), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193174] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8395), 2, + ACTIONS(8495), 2, anon_sym_from, anon_sym_in, - [195555] = 2, + [193183] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9884), 2, + ACTIONS(10004), 2, sym__dedent, anon_sym_case, - [195564] = 2, + [193192] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(5688), 2, + ACTIONS(9148), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [195573] = 3, - ACTIONS(7012), 1, anon_sym_COLON, - ACTIONS(7014), 1, - sym__newline, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [195584] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(6905), 2, - sym__newline, - anon_sym_SEMI, - [195593] = 3, - ACTIONS(9886), 1, - sym_integer, - ACTIONS(9888), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [195604] = 2, + [193201] = 3, + ACTIONS(10006), 1, + anon_sym_COLON, + ACTIONS(10008), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8397), 2, - anon_sym_from, - anon_sym_in, - [195613] = 3, - ACTIONS(9890), 1, + [193212] = 3, + ACTIONS(7968), 1, anon_sym_COLON, - ACTIONS(9892), 1, + ACTIONS(7970), 1, sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195624] = 2, + [193223] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9894), 2, + ACTIONS(10010), 2, sym__newline, anon_sym_SEMI, - [195633] = 2, + [193232] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7556), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [195642] = 2, + ACTIONS(10012), 2, + sym__dedent, + anon_sym_case, + [193241] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9896), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [195651] = 3, - ACTIONS(9898), 1, + ACTIONS(8304), 2, + anon_sym_from, + anon_sym_in, + [193250] = 3, + ACTIONS(10014), 1, sym_integer, - ACTIONS(9900), 1, + ACTIONS(10016), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195662] = 2, + [193261] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(7556), 2, + ACTIONS(9696), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [195671] = 3, - ACTIONS(8962), 1, - sym__newline, - ACTIONS(9902), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [195682] = 3, - ACTIONS(9634), 1, - sym_identifier, - STATE(5127), 1, - sym_template_param, + anon_sym_RBRACK, + [193270] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195693] = 2, + ACTIONS(7613), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [193279] = 3, + ACTIONS(5565), 1, + anon_sym_COLON, + STATE(5413), 1, + sym_memory_view_index, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(8298), 2, - anon_sym_from, - anon_sym_in, - [195702] = 2, + [193290] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(6862), 2, - sym__newline, - anon_sym_SEMI, - [195711] = 3, - ACTIONS(9904), 1, - sym_integer, - ACTIONS(9906), 1, - sym_float, + ACTIONS(9906), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [193299] = 3, + ACTIONS(8327), 1, + anon_sym_LPAREN, + ACTIONS(10018), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195722] = 2, + [193310] = 2, + ACTIONS(10020), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(9744), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [195731] = 2, - ACTIONS(9908), 1, + [193318] = 2, + ACTIONS(10022), 1, anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195739] = 2, - ACTIONS(9910), 1, - sym_identifier, + [193326] = 2, + ACTIONS(7250), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195747] = 2, - ACTIONS(9912), 1, - anon_sym_RBRACE, + [193334] = 2, + ACTIONS(7500), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195755] = 2, - ACTIONS(9914), 1, + [193342] = 2, + ACTIONS(10024), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195763] = 2, - ACTIONS(7410), 1, - anon_sym_COLON, + [193350] = 2, + ACTIONS(10026), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195771] = 2, - ACTIONS(9916), 1, - sym_identifier, + [193358] = 2, + ACTIONS(8570), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195779] = 2, - ACTIONS(9918), 1, + [193366] = 2, + ACTIONS(8212), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195787] = 2, - ACTIONS(9920), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [195795] = 2, - ACTIONS(9922), 1, - anon_sym_GT, + [193374] = 2, + ACTIONS(10028), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195803] = 2, - ACTIONS(7832), 1, + [193382] = 2, + ACTIONS(6571), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195811] = 2, - ACTIONS(7158), 1, - anon_sym_COLON, + [193390] = 2, + ACTIONS(10030), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195819] = 2, - ACTIONS(9924), 1, + [193398] = 2, + ACTIONS(10032), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195827] = 2, - ACTIONS(6460), 1, - anon_sym_RPAREN, + [193406] = 2, + ACTIONS(7358), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195835] = 2, - ACTIONS(9926), 1, + [193414] = 2, + ACTIONS(10034), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195843] = 2, - ACTIONS(9928), 1, + [193422] = 2, + ACTIONS(10036), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195851] = 2, - ACTIONS(7412), 1, + [193430] = 2, + ACTIONS(7508), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195859] = 2, - ACTIONS(9930), 1, - anon_sym_RBRACE, + [193438] = 2, + ACTIONS(10038), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195867] = 2, - ACTIONS(9932), 1, - anon_sym_RBRACE, + [193446] = 2, + ACTIONS(10040), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195875] = 2, - ACTIONS(9934), 1, - anon_sym_RBRACE, + [193454] = 2, + ACTIONS(6617), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195883] = 2, - ACTIONS(9936), 1, + [193462] = 2, + ACTIONS(10042), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195891] = 2, - ACTIONS(9938), 1, - anon_sym_GT, + [193470] = 2, + ACTIONS(10044), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195899] = 2, - ACTIONS(9740), 1, - anon_sym_RPAREN, + [193478] = 2, + ACTIONS(10046), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [193486] = 2, + ACTIONS(10048), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195907] = 2, - ACTIONS(7233), 1, - anon_sym_RBRACE, + [193494] = 2, + ACTIONS(5997), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195915] = 2, - ACTIONS(9940), 1, - anon_sym_COLON_EQ, + [193502] = 2, + ACTIONS(10050), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195923] = 2, - ACTIONS(9942), 1, + [193510] = 2, + ACTIONS(10052), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195931] = 2, - ACTIONS(9944), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [195939] = 2, - ACTIONS(9946), 1, - anon_sym_RPAREN, + [193518] = 2, + ACTIONS(10054), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195947] = 2, - ACTIONS(7840), 1, - anon_sym_RPAREN, + [193526] = 2, + ACTIONS(10056), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195955] = 2, - ACTIONS(9948), 1, + [193534] = 2, + ACTIONS(10058), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195963] = 2, - ACTIONS(9950), 1, - sym__indent, + [193542] = 2, + ACTIONS(10060), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195971] = 2, - ACTIONS(9952), 1, - anon_sym_import, + [193550] = 2, + ACTIONS(10062), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195979] = 2, - ACTIONS(9954), 1, - anon_sym_GT, + [193558] = 2, + ACTIONS(10064), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195987] = 2, - ACTIONS(9956), 1, - anon_sym_EQ, + [193566] = 2, + ACTIONS(3968), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [195995] = 2, - ACTIONS(9958), 1, + [193574] = 2, + ACTIONS(10066), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196003] = 2, - ACTIONS(6492), 1, - anon_sym_RPAREN, + [193582] = 2, + ACTIONS(10068), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196011] = 2, - ACTIONS(9960), 1, - anon_sym_COLON, + [193590] = 2, + ACTIONS(10070), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196019] = 2, - ACTIONS(9962), 1, + [193598] = 2, + ACTIONS(10072), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196027] = 2, - ACTIONS(9964), 1, - sym_identifier, + [193606] = 2, + ACTIONS(10074), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196035] = 2, - ACTIONS(7815), 1, - anon_sym_RPAREN, + [193614] = 2, + ACTIONS(10076), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196043] = 2, - ACTIONS(9966), 1, + [193622] = 2, + ACTIONS(10078), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196051] = 2, - ACTIONS(9968), 1, - anon_sym_COLON, + [193630] = 2, + ACTIONS(10080), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196059] = 2, - ACTIONS(9970), 1, - anon_sym_None, + [193638] = 2, + ACTIONS(10082), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196067] = 2, - ACTIONS(9972), 1, - anon_sym_COLON, + [193646] = 2, + ACTIONS(10084), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196075] = 2, - ACTIONS(9974), 1, + [193654] = 2, + ACTIONS(10086), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196083] = 2, - ACTIONS(9976), 1, - anon_sym_COLON_EQ, + [193662] = 2, + ACTIONS(10088), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196091] = 2, - ACTIONS(9978), 1, - anon_sym_COLON, + [193670] = 2, + ACTIONS(10090), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196099] = 2, - ACTIONS(9980), 1, - sym_identifier, + [193678] = 2, + ACTIONS(10092), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196107] = 2, - ACTIONS(9982), 1, + [193686] = 2, + ACTIONS(10094), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196115] = 2, - ACTIONS(9984), 1, - anon_sym_RPAREN, + [193694] = 2, + ACTIONS(10096), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196123] = 2, - ACTIONS(9986), 1, - anon_sym_RPAREN, + [193702] = 2, + ACTIONS(10098), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196131] = 2, - ACTIONS(6478), 1, - anon_sym_RPAREN, + [193710] = 2, + ACTIONS(10100), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196139] = 2, - ACTIONS(8114), 1, - anon_sym_RPAREN, + [193718] = 2, + ACTIONS(7354), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196147] = 2, - ACTIONS(9988), 1, - anon_sym_COLON, + [193726] = 2, + ACTIONS(10102), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196155] = 2, - ACTIONS(9990), 1, - sym_identifier, + [193734] = 2, + ACTIONS(10104), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196163] = 2, - ACTIONS(9992), 1, - anon_sym_RBRACE, + [193742] = 2, + ACTIONS(10106), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196171] = 2, - ACTIONS(9994), 1, + [193750] = 2, + ACTIONS(10108), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196179] = 2, - ACTIONS(9996), 1, + [193758] = 2, + ACTIONS(10110), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196187] = 2, - ACTIONS(9998), 1, - sym__indent, + [193766] = 2, + ACTIONS(10112), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196195] = 2, - ACTIONS(10000), 1, - anon_sym_RBRACK, + [193774] = 2, + ACTIONS(10114), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196203] = 2, - ACTIONS(5401), 1, - sym__dedent, + [193782] = 2, + ACTIONS(10116), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196211] = 2, - ACTIONS(7860), 1, + [193790] = 2, + ACTIONS(8125), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196219] = 2, - ACTIONS(10002), 1, + [193798] = 2, + ACTIONS(10118), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196227] = 2, - ACTIONS(10004), 1, - sym__indent, + [193806] = 2, + ACTIONS(10120), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196235] = 2, - ACTIONS(10006), 1, + [193814] = 2, + ACTIONS(10122), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196243] = 2, - ACTIONS(10008), 1, - anon_sym_COLON, + [193822] = 2, + ACTIONS(10124), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196251] = 2, - ACTIONS(6408), 1, - anon_sym_RPAREN, + [193830] = 2, + ACTIONS(10126), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196259] = 2, - ACTIONS(7856), 1, + [193838] = 2, + ACTIONS(7893), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196267] = 2, - ACTIONS(10010), 1, - anon_sym_COLON, + [193846] = 2, + ACTIONS(10128), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196275] = 2, - ACTIONS(10012), 1, - sym_identifier, + [193854] = 2, + ACTIONS(10130), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196283] = 2, - ACTIONS(10014), 1, - anon_sym_RBRACE, + [193862] = 2, + ACTIONS(10132), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196291] = 2, - ACTIONS(10016), 1, - anon_sym_RPAREN, + [193870] = 2, + ACTIONS(9126), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196299] = 2, - ACTIONS(10018), 1, + [193878] = 2, + ACTIONS(10134), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196307] = 2, - ACTIONS(10020), 1, - sym_identifier, + [193886] = 2, + ACTIONS(10136), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196315] = 2, - ACTIONS(9277), 1, + [193894] = 2, + ACTIONS(9394), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196323] = 2, - ACTIONS(10022), 1, - anon_sym_RPAREN, + [193902] = 2, + ACTIONS(10138), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196331] = 2, - ACTIONS(10024), 1, - anon_sym_RBRACE, + [193910] = 2, + ACTIONS(10140), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196339] = 2, - ACTIONS(10026), 1, + [193918] = 2, + ACTIONS(10142), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196347] = 2, - ACTIONS(10028), 1, - anon_sym_RPAREN, + [193926] = 2, + ACTIONS(10144), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196355] = 2, - ACTIONS(8108), 1, - anon_sym_RPAREN, + [193934] = 2, + ACTIONS(10146), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196363] = 2, - ACTIONS(10030), 1, - anon_sym_COLON_EQ, + [193942] = 2, + ACTIONS(10148), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196371] = 2, - ACTIONS(10032), 1, + [193950] = 2, + ACTIONS(10150), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196379] = 2, - ACTIONS(10034), 1, - anon_sym_COLON, + [193958] = 2, + ACTIONS(8691), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196387] = 2, - ACTIONS(7215), 1, + [193966] = 2, + ACTIONS(10152), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196395] = 2, - ACTIONS(10036), 1, - anon_sym_COLON, + [193974] = 2, + ACTIONS(7657), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196403] = 2, - ACTIONS(3854), 1, - anon_sym_def, + [193982] = 2, + ACTIONS(10154), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196411] = 2, - ACTIONS(9285), 1, + [193990] = 2, + ACTIONS(9407), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196419] = 2, - ACTIONS(10038), 1, - sym_identifier, + [193998] = 2, + ACTIONS(10156), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196427] = 2, - ACTIONS(10040), 1, + [194006] = 2, + ACTIONS(10158), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196435] = 2, - ACTIONS(6614), 1, + [194014] = 2, + ACTIONS(10160), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196443] = 2, - ACTIONS(10042), 1, - anon_sym_RBRACE, + [194022] = 2, + ACTIONS(10162), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196451] = 2, - ACTIONS(10044), 1, - sym_identifier, + [194030] = 2, + ACTIONS(10164), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196459] = 2, - ACTIONS(10046), 1, - anon_sym_COLON_EQ, + [194038] = 2, + ACTIONS(7506), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196467] = 2, - ACTIONS(10048), 1, + [194046] = 2, + ACTIONS(10166), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196475] = 2, - ACTIONS(10050), 1, - anon_sym_COLON, + [194054] = 2, + ACTIONS(10168), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196483] = 2, - ACTIONS(10052), 1, + [194062] = 2, + ACTIONS(10170), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196491] = 2, - ACTIONS(10054), 1, - anon_sym_RBRACK, + [194070] = 2, + ACTIONS(1581), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196499] = 2, - ACTIONS(10056), 1, - sym_identifier, + [194078] = 2, + ACTIONS(10172), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196507] = 2, - ACTIONS(10058), 1, + [194086] = 2, + ACTIONS(10174), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196515] = 2, - ACTIONS(10060), 1, - sym_identifier, + [194094] = 2, + ACTIONS(7408), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196523] = 2, - ACTIONS(10062), 1, - aux_sym_run_directive_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [196531] = 2, - ACTIONS(10064), 1, - anon_sym_COLON, + [194102] = 2, + ACTIONS(10176), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196539] = 2, - ACTIONS(10066), 1, - sym_identifier, + [194110] = 2, + ACTIONS(10178), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196547] = 2, - ACTIONS(10068), 1, - anon_sym_RBRACK, + [194118] = 2, + ACTIONS(8241), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196555] = 2, - ACTIONS(10070), 1, - anon_sym_COLON, + [194126] = 2, + ACTIONS(10180), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196563] = 2, - ACTIONS(10072), 1, + [194134] = 2, + ACTIONS(10182), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196571] = 2, - ACTIONS(10074), 1, + [194142] = 2, + ACTIONS(10184), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196579] = 2, - ACTIONS(10076), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [196587] = 2, - ACTIONS(10078), 1, - anon_sym_COLON_EQ, + [194150] = 2, + ACTIONS(10186), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196595] = 2, - ACTIONS(10080), 1, + [194158] = 2, + ACTIONS(10188), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196603] = 2, - ACTIONS(10082), 1, - anon_sym_RPAREN, + [194166] = 2, + ACTIONS(10190), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196611] = 2, - ACTIONS(10084), 1, - anon_sym_None, + [194174] = 2, + ACTIONS(10192), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196619] = 2, - ACTIONS(10086), 1, + [194182] = 2, + ACTIONS(10194), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196627] = 2, - ACTIONS(10088), 1, + [194190] = 2, + ACTIONS(6523), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196635] = 2, - ACTIONS(10090), 1, + [194198] = 2, + ACTIONS(10196), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196643] = 2, - ACTIONS(10092), 1, - anon_sym_COLON, + [194206] = 2, + ACTIONS(10198), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196651] = 2, - ACTIONS(8122), 1, - anon_sym_RBRACK, + [194214] = 2, + ACTIONS(10200), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196659] = 2, - ACTIONS(10094), 1, - anon_sym_STAR, + [194222] = 2, + ACTIONS(10202), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196667] = 2, - ACTIONS(10096), 1, - anon_sym_RBRACK, + [194230] = 2, + ACTIONS(10204), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196675] = 2, - ACTIONS(10098), 1, - anon_sym_RBRACE, + [194238] = 2, + ACTIONS(10206), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196683] = 2, - ACTIONS(10100), 1, - anon_sym_COLON, + [194246] = 2, + ACTIONS(7580), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196691] = 2, - ACTIONS(10102), 1, - anon_sym_COLON_EQ, + [194254] = 2, + ACTIONS(4306), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196699] = 2, - ACTIONS(10104), 1, + [194262] = 2, + ACTIONS(10208), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196707] = 2, - ACTIONS(10106), 1, - anon_sym_COLON, + [194270] = 2, + ACTIONS(10210), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196715] = 2, - ACTIONS(7393), 1, + [194278] = 2, + ACTIONS(7404), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196723] = 2, - ACTIONS(4152), 1, - sym__dedent, + [194286] = 2, + ACTIONS(10212), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196731] = 2, - ACTIONS(10108), 1, - anon_sym_COLON_EQ, + [194294] = 2, + ACTIONS(10214), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196739] = 2, - ACTIONS(10110), 1, - anon_sym_RPAREN, + [194302] = 2, + ACTIONS(10216), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196747] = 2, - ACTIONS(10112), 1, - anon_sym_RPAREN, + [194310] = 2, + ACTIONS(10218), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196755] = 2, - ACTIONS(10114), 1, + [194318] = 2, + ACTIONS(10220), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196763] = 2, - ACTIONS(10116), 1, - anon_sym_RPAREN, + [194326] = 2, + ACTIONS(10222), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196771] = 2, - ACTIONS(10118), 1, - anon_sym_RBRACK, + [194334] = 2, + ACTIONS(1585), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196779] = 2, - ACTIONS(7367), 1, - anon_sym_RBRACE, + [194342] = 2, + ACTIONS(10224), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196787] = 2, - ACTIONS(6612), 1, + [194350] = 2, + ACTIONS(10226), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196795] = 2, - ACTIONS(10120), 1, - anon_sym_RBRACK, + [194358] = 2, + ACTIONS(10228), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196803] = 2, - ACTIONS(8433), 1, - anon_sym_LPAREN, + [194366] = 2, + ACTIONS(10230), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196811] = 2, - ACTIONS(10122), 1, - sym_identifier, + [194374] = 2, + ACTIONS(10232), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196819] = 2, - ACTIONS(10124), 1, - anon_sym_RBRACK, + [194382] = 2, + ACTIONS(8560), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196827] = 2, - ACTIONS(10126), 1, - anon_sym_RBRACE, + [194390] = 2, + ACTIONS(10234), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196835] = 2, - ACTIONS(6582), 1, + [194398] = 2, + ACTIONS(10236), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196843] = 2, - ACTIONS(10128), 1, - anon_sym_COLON, + [194406] = 2, + ACTIONS(8168), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196851] = 2, - ACTIONS(10130), 1, + [194414] = 2, + ACTIONS(10238), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196859] = 2, - ACTIONS(10132), 1, + [194422] = 2, + ACTIONS(10240), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196867] = 2, - ACTIONS(10134), 1, - anon_sym_RBRACE, + [194430] = 2, + ACTIONS(10242), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196875] = 2, - ACTIONS(10136), 1, - anon_sym_GT, + [194438] = 2, + ACTIONS(10244), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196883] = 2, - ACTIONS(10138), 1, - sym_identifier, + [194446] = 2, + ACTIONS(10246), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196891] = 2, - ACTIONS(10140), 1, - sym_identifier, + [194454] = 2, + ACTIONS(5507), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196899] = 2, - ACTIONS(10142), 1, - anon_sym_COLON_EQ, + [194462] = 2, + ACTIONS(10248), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196907] = 2, - ACTIONS(10144), 1, + [194470] = 2, + ACTIONS(10250), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196915] = 2, - ACTIONS(10146), 1, - anon_sym_RPAREN, + [194478] = 2, + ACTIONS(10252), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196923] = 2, - ACTIONS(10148), 1, - anon_sym_RBRACK, + [194486] = 2, + ACTIONS(10254), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196931] = 2, - ACTIONS(10150), 1, + [194494] = 2, + ACTIONS(10256), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196939] = 2, - ACTIONS(7334), 1, - anon_sym_RBRACE, + [194502] = 2, + ACTIONS(10258), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196947] = 2, - ACTIONS(10152), 1, + [194510] = 2, + ACTIONS(10260), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196955] = 2, - ACTIONS(8061), 1, + [194518] = 2, + ACTIONS(6675), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196963] = 2, - ACTIONS(10154), 1, - sym_identifier, + [194526] = 2, + ACTIONS(10262), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196971] = 2, - ACTIONS(10156), 1, - sym_identifier, + [194534] = 2, + ACTIONS(10264), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196979] = 2, - ACTIONS(6576), 1, - anon_sym_RPAREN, + [194542] = 2, + ACTIONS(4308), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196987] = 2, - ACTIONS(10158), 1, - anon_sym_RBRACE, + [194550] = 2, + ACTIONS(10266), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [196995] = 2, - ACTIONS(4204), 1, - sym__dedent, + [194558] = 2, + ACTIONS(10268), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197003] = 2, - ACTIONS(10160), 1, - sym_identifier, + [194566] = 2, + ACTIONS(10270), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197011] = 2, - ACTIONS(10162), 1, - anon_sym_COLON, + [194574] = 2, + ACTIONS(8180), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197019] = 2, - ACTIONS(10164), 1, + [194582] = 2, + ACTIONS(10272), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197027] = 2, - ACTIONS(10166), 1, + [194590] = 2, + ACTIONS(10274), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197035] = 2, - ACTIONS(10168), 1, - sym_identifier, + [194598] = 2, + ACTIONS(10276), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197043] = 2, - ACTIONS(10170), 1, - anon_sym_GT, + [194606] = 2, + ACTIONS(10278), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197051] = 2, - ACTIONS(10172), 1, - sym__indent, + [194614] = 2, + ACTIONS(10280), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197059] = 2, - ACTIONS(10174), 1, - anon_sym_RBRACE, + [194622] = 2, + ACTIONS(10282), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197067] = 2, - ACTIONS(10176), 1, - anon_sym_None, + [194630] = 2, + ACTIONS(10284), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197075] = 2, - ACTIONS(10178), 1, - anon_sym_RBRACK, + [194638] = 2, + ACTIONS(10286), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197083] = 2, - ACTIONS(10180), 1, + [194646] = 2, + ACTIONS(7889), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197091] = 2, - ACTIONS(10182), 1, - anon_sym_RBRACE, + [194654] = 2, + ACTIONS(10288), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197099] = 2, - ACTIONS(10184), 1, - anon_sym_COLON, + [194662] = 2, + ACTIONS(10290), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197107] = 2, - ACTIONS(10186), 1, - anon_sym_COLON, + [194670] = 2, + ACTIONS(6658), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197115] = 2, - ACTIONS(7868), 1, - anon_sym_RPAREN, + [194678] = 2, + ACTIONS(10292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197123] = 2, - ACTIONS(10188), 1, + [194686] = 2, + ACTIONS(10294), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197131] = 2, - ACTIONS(10190), 1, - anon_sym_RPAREN, + [194694] = 2, + ACTIONS(10296), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197139] = 2, - ACTIONS(6538), 1, - anon_sym_RPAREN, + [194702] = 2, + ACTIONS(10298), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197147] = 2, - ACTIONS(10192), 1, + [194710] = 2, + ACTIONS(10300), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197155] = 2, - ACTIONS(10194), 1, + [194718] = 2, + ACTIONS(10302), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197163] = 2, - ACTIONS(10196), 1, + [194726] = 2, + ACTIONS(10304), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197171] = 2, - ACTIONS(10198), 1, - anon_sym_RPAREN, + [194734] = 2, + ACTIONS(10306), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197179] = 2, - ACTIONS(10200), 1, - anon_sym_COLON, + [194742] = 2, + ACTIONS(10308), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197187] = 2, - ACTIONS(10202), 1, - anon_sym_RBRACK, + [194750] = 2, + ACTIONS(10310), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197195] = 2, - ACTIONS(10204), 1, + [194758] = 2, + ACTIONS(10312), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197203] = 2, - ACTIONS(10206), 1, - anon_sym_RBRACE, + [194766] = 2, + ACTIONS(10314), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197211] = 2, - ACTIONS(10208), 1, + [194774] = 2, + ACTIONS(10316), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197219] = 2, - ACTIONS(10210), 1, - sym__indent, + [194782] = 2, + ACTIONS(7952), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197227] = 2, - ACTIONS(10212), 1, - anon_sym_GT, + [194790] = 2, + ACTIONS(10318), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197235] = 2, - ACTIONS(10214), 1, - anon_sym_COLON, + [194798] = 2, + ACTIONS(10320), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197243] = 2, - ACTIONS(10216), 1, - anon_sym_COLON_EQ, + [194806] = 2, + ACTIONS(10322), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197251] = 2, - ACTIONS(10218), 1, - anon_sym_COLON, + [194814] = 2, + ACTIONS(6662), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197259] = 2, - ACTIONS(7270), 1, - anon_sym_COLON, + [194822] = 2, + ACTIONS(10324), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197267] = 2, - ACTIONS(4150), 1, - sym__dedent, + [194830] = 2, + ACTIONS(10326), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197275] = 2, - ACTIONS(10220), 1, - sym_identifier, + [194838] = 2, + ACTIONS(8270), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197283] = 2, - ACTIONS(10222), 1, - sym_identifier, + [194846] = 2, + ACTIONS(10328), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197291] = 2, - ACTIONS(7371), 1, + [194854] = 2, + ACTIONS(10330), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197299] = 2, - ACTIONS(10224), 1, - anon_sym_RBRACE, + [194862] = 2, + ACTIONS(10332), 1, + aux_sym_run_directive_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [194870] = 2, + ACTIONS(10334), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197307] = 2, - ACTIONS(10226), 1, + [194878] = 2, + ACTIONS(10336), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197315] = 2, - ACTIONS(9478), 1, - anon_sym_LPAREN, + [194886] = 2, + ACTIONS(10338), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197323] = 2, - ACTIONS(10228), 1, - anon_sym_COLON, + [194894] = 2, + ACTIONS(10340), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197331] = 2, - ACTIONS(10230), 1, - sym_identifier, + [194902] = 2, + ACTIONS(6603), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197339] = 2, - ACTIONS(10232), 1, + [194910] = 2, + ACTIONS(10342), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194918] = 2, + ACTIONS(10344), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197347] = 2, - ACTIONS(10234), 1, - anon_sym_RPAREN, + [194926] = 2, + ACTIONS(10346), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197355] = 2, - ACTIONS(10236), 1, + [194934] = 2, + ACTIONS(10348), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197363] = 2, - ACTIONS(10238), 1, + [194942] = 2, + ACTIONS(10350), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [194950] = 2, + ACTIONS(10352), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197371] = 2, - ACTIONS(10240), 1, - anon_sym_COLON, + [194958] = 2, + ACTIONS(10354), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197379] = 2, - ACTIONS(10242), 1, + [194966] = 2, + ACTIONS(10356), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197387] = 2, - ACTIONS(7357), 1, - anon_sym_RBRACE, + [194974] = 2, + ACTIONS(4304), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197395] = 2, - ACTIONS(10244), 1, - anon_sym_RPAREN, + [194982] = 2, + ACTIONS(10358), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197403] = 2, - ACTIONS(10246), 1, + [194990] = 2, + ACTIONS(10360), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197411] = 2, - ACTIONS(10248), 1, + [194998] = 2, + ACTIONS(10362), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197419] = 2, - ACTIONS(10250), 1, + [195006] = 2, + ACTIONS(10364), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197427] = 2, - ACTIONS(10252), 1, - sym_identifier, + [195014] = 2, + ACTIONS(10366), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197435] = 2, - ACTIONS(10254), 1, - anon_sym_RPAREN, + [195022] = 2, + ACTIONS(7897), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197443] = 2, - ACTIONS(10256), 1, - anon_sym_COLON, + [195030] = 2, + ACTIONS(10368), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197451] = 2, - ACTIONS(10258), 1, - anon_sym_for, + [195038] = 2, + ACTIONS(10370), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197459] = 2, - ACTIONS(10260), 1, - anon_sym_LPAREN, + [195046] = 2, + ACTIONS(10372), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197467] = 2, - ACTIONS(3347), 1, + [195054] = 2, + ACTIONS(10374), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197475] = 2, - ACTIONS(10262), 1, - anon_sym_RBRACK, + [195062] = 2, + ACTIONS(10376), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197483] = 2, - ACTIONS(10264), 1, - anon_sym_COLON, + [195070] = 2, + ACTIONS(10378), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197491] = 2, - ACTIONS(10266), 1, - anon_sym_RBRACE, + [195078] = 2, + ACTIONS(8327), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197499] = 2, - ACTIONS(10268), 1, - anon_sym_COLON_EQ, + [195086] = 2, + ACTIONS(10380), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197507] = 2, - ACTIONS(10270), 1, - anon_sym_RBRACK, + [195094] = 2, + ACTIONS(10382), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197515] = 2, - ACTIONS(10272), 1, + [195102] = 2, + ACTIONS(10384), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197523] = 2, - ACTIONS(10274), 1, + [195110] = 2, + ACTIONS(10386), 1, anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197531] = 2, - ACTIONS(10276), 1, + [195118] = 2, + ACTIONS(10388), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197539] = 2, - ACTIONS(10278), 1, + [195126] = 2, + ACTIONS(10390), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197547] = 2, - ACTIONS(10280), 1, - anon_sym_RBRACK, + [195134] = 2, + ACTIONS(10392), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197555] = 2, - ACTIONS(10282), 1, - anon_sym_COLON, + [195142] = 2, + ACTIONS(10394), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197563] = 2, - ACTIONS(8195), 1, - anon_sym_LPAREN, + [195150] = 2, + ACTIONS(10396), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197571] = 2, - ACTIONS(10284), 1, - sym_identifier, + [195158] = 2, + ACTIONS(10398), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197579] = 2, - ACTIONS(6568), 1, - anon_sym_RPAREN, + [195166] = 2, + ACTIONS(10400), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197587] = 2, - ACTIONS(10286), 1, - anon_sym_COLON_EQ, + [195174] = 2, + ACTIONS(10402), 1, + anon_sym_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197595] = 2, - ACTIONS(10288), 1, - anon_sym_RBRACE, + [195182] = 2, + ACTIONS(10404), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197603] = 2, - ACTIONS(10290), 1, - anon_sym_GT, + [195190] = 2, + ACTIONS(10406), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197611] = 2, - ACTIONS(10292), 1, - anon_sym_COLON, + [195198] = 2, + ACTIONS(10408), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197619] = 2, - ACTIONS(10294), 1, + [195206] = 2, + ACTIONS(10410), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197627] = 2, - ACTIONS(10296), 1, + [195214] = 2, + ACTIONS(10412), 1, sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197635] = 2, - ACTIONS(10298), 1, + [195222] = 2, + ACTIONS(10414), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197643] = 2, - ACTIONS(10300), 1, - anon_sym_RBRACE, + [195230] = 2, + ACTIONS(8162), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197651] = 2, - ACTIONS(10302), 1, - anon_sym_COLON, + [195238] = 2, + ACTIONS(10416), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197659] = 2, - ACTIONS(8102), 1, - anon_sym_RBRACK, + [195246] = 2, + ACTIONS(7388), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197667] = 2, - ACTIONS(10304), 1, + [195254] = 2, + ACTIONS(7584), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197675] = 2, - ACTIONS(10306), 1, - anon_sym_RBRACE, + [195262] = 2, + ACTIONS(10418), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197683] = 2, - ACTIONS(10308), 1, - sym_identifier, + [195270] = 2, + ACTIONS(10420), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197691] = 2, - ACTIONS(8080), 1, + [195278] = 2, + ACTIONS(10422), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197699] = 2, - ACTIONS(5405), 1, - sym__dedent, + [195286] = 2, + ACTIONS(7414), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197707] = 2, - ACTIONS(7718), 1, - anon_sym_LPAREN, + [195294] = 2, + ACTIONS(9313), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197715] = 2, - ACTIONS(10310), 1, + [195302] = 2, + ACTIONS(10424), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197723] = 2, - ACTIONS(10312), 1, - anon_sym_RBRACE, + [195310] = 2, + ACTIONS(10426), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197731] = 2, - ACTIONS(10314), 1, - sym_identifier, + [195318] = 2, + ACTIONS(10428), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197739] = 2, - ACTIONS(10316), 1, - sym_identifier, + [195326] = 2, + ACTIONS(7366), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197747] = 2, - ACTIONS(10318), 1, - anon_sym_RPAREN, + [195334] = 2, + ACTIONS(10430), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197755] = 2, - ACTIONS(10320), 1, - anon_sym_COLON_EQ, + [195342] = 2, + ACTIONS(7492), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197763] = 2, - ACTIONS(9183), 1, - anon_sym_in, + [195350] = 2, + ACTIONS(10432), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197771] = 2, - ACTIONS(10322), 1, - anon_sym_COLON, + [195358] = 2, + ACTIONS(9384), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197779] = 2, - ACTIONS(10324), 1, + [195366] = 2, + ACTIONS(10434), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197787] = 2, - ACTIONS(10326), 1, - anon_sym_COLON, + [195374] = 2, + ACTIONS(10436), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197795] = 2, - ACTIONS(10328), 1, + [195382] = 2, + ACTIONS(10438), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197803] = 2, - ACTIONS(10330), 1, + [195390] = 2, + ACTIONS(10440), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197811] = 2, - ACTIONS(10332), 1, + [195398] = 2, + ACTIONS(10442), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197819] = 2, - ACTIONS(7404), 1, - anon_sym_COLON, + [195406] = 2, + ACTIONS(10444), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197827] = 2, - ACTIONS(10334), 1, - anon_sym_None, + [195414] = 2, + ACTIONS(10446), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197835] = 2, - ACTIONS(10336), 1, - anon_sym_LPAREN, + [195422] = 2, + ACTIONS(10448), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197843] = 2, - ACTIONS(5399), 1, - sym__dedent, + [195430] = 2, + ACTIONS(10450), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197851] = 2, - ACTIONS(5909), 1, + [195438] = 2, + ACTIONS(10452), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [195446] = 2, + ACTIONS(10454), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197859] = 2, - ACTIONS(10338), 1, - anon_sym_RBRACK, + [195454] = 2, + ACTIONS(10456), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197867] = 2, - ACTIONS(7379), 1, - anon_sym_RBRACE, + [195462] = 2, + ACTIONS(10458), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197875] = 2, - ACTIONS(10340), 1, - anon_sym_RPAREN, + [195470] = 2, + ACTIONS(10460), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197883] = 2, - ACTIONS(10342), 1, - anon_sym_COLON_EQ, + [195478] = 2, + ACTIONS(10462), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197891] = 2, - ACTIONS(10344), 1, - sym_identifier, + [195486] = 2, + ACTIONS(10464), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197899] = 2, - ACTIONS(10346), 1, + [195494] = 2, + ACTIONS(10466), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197907] = 2, - ACTIONS(10348), 1, - anon_sym_RPAREN, + [195502] = 2, + ACTIONS(10468), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197915] = 2, - ACTIONS(10350), 1, - anon_sym_COLON, + [195510] = 2, + ACTIONS(10470), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197923] = 2, - ACTIONS(10352), 1, - anon_sym_COLON, + [195518] = 2, + ACTIONS(10472), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197931] = 2, - ACTIONS(10354), 1, + [195526] = 2, + ACTIONS(3479), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197939] = 2, - ACTIONS(10356), 1, - sym_identifier, + [195534] = 2, + ACTIONS(10474), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197947] = 2, - ACTIONS(10358), 1, + [195542] = 2, + ACTIONS(10476), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197955] = 2, - ACTIONS(10360), 1, - sym_identifier, + [195550] = 2, + ACTIONS(10478), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197963] = 2, - ACTIONS(10362), 1, - sym_identifier, + [195558] = 2, + ACTIONS(10480), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197971] = 2, - ACTIONS(10364), 1, - anon_sym_COLON, + [195566] = 2, + ACTIONS(10482), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197979] = 2, - ACTIONS(10366), 1, - anon_sym_RBRACK, + [195574] = 2, + ACTIONS(10484), 1, + anon_sym_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197987] = 2, - ACTIONS(10368), 1, - anon_sym_COLON, + [195582] = 2, + ACTIONS(10486), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [197995] = 2, - ACTIONS(10370), 1, + [195590] = 2, + ACTIONS(10488), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198003] = 2, - ACTIONS(10372), 1, + [195598] = 2, + ACTIONS(10490), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198011] = 2, - ACTIONS(10374), 1, - anon_sym_RPAREN, + [195606] = 2, + ACTIONS(10492), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198019] = 2, - ACTIONS(10376), 1, - anon_sym_RBRACK, + [195614] = 2, + ACTIONS(10494), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198027] = 2, - ACTIONS(10378), 1, + [195622] = 2, + ACTIONS(7931), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198035] = 2, - ACTIONS(10380), 1, - anon_sym_RPAREN, + [195630] = 2, + ACTIONS(10496), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198043] = 2, - ACTIONS(10382), 1, + [195638] = 2, + ACTIONS(10498), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198051] = 2, - ACTIONS(10384), 1, + [195646] = 2, + ACTIONS(10500), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198059] = 2, - ACTIONS(10386), 1, + [195654] = 2, + ACTIONS(6720), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198067] = 2, - ACTIONS(1587), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [198075] = 2, - ACTIONS(10388), 1, + [195662] = 2, + ACTIONS(10502), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198083] = 2, - ACTIONS(10390), 1, - anon_sym_LPAREN, + [195670] = 2, + ACTIONS(5475), 1, + sym__dedent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198091] = 2, - ACTIONS(10392), 1, - anon_sym_RBRACE, + [195678] = 2, + ACTIONS(10504), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198099] = 2, - ACTIONS(10394), 1, - anon_sym_GT, + [195686] = 2, + ACTIONS(7360), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198107] = 2, - ACTIONS(10396), 1, - anon_sym_RBRACK, + [195694] = 2, + ACTIONS(10506), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198115] = 2, - ACTIONS(10398), 1, - sym_identifier, + [195702] = 2, + ACTIONS(10508), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198123] = 2, - ACTIONS(10400), 1, + [195710] = 2, + ACTIONS(10510), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198131] = 2, - ACTIONS(10402), 1, - sym__indent, + [195718] = 2, + ACTIONS(10512), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198139] = 2, - ACTIONS(10404), 1, - sym__newline, + [195726] = 2, + ACTIONS(7450), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198147] = 2, - ACTIONS(10406), 1, + [195734] = 2, + ACTIONS(10514), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198155] = 2, - ACTIONS(10408), 1, - anon_sym_COLON_EQ, + [195742] = 2, + ACTIONS(10516), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198163] = 2, - ACTIONS(7361), 1, + [195750] = 2, + ACTIONS(7376), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198171] = 2, - ACTIONS(9199), 1, + [195758] = 2, + ACTIONS(9327), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198179] = 2, - ACTIONS(7892), 1, - anon_sym_RPAREN, + [195766] = 2, + ACTIONS(10518), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198187] = 2, - ACTIONS(10410), 1, + [195774] = 2, + ACTIONS(5505), 1, + sym__dedent, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [195782] = 2, + ACTIONS(10520), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198195] = 2, - ACTIONS(10412), 1, + [195790] = 2, + ACTIONS(7496), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198203] = 2, - ACTIONS(10414), 1, + [195798] = 2, + ACTIONS(10522), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198211] = 2, - ACTIONS(10416), 1, + [195806] = 2, + ACTIONS(10524), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198219] = 2, - ACTIONS(10418), 1, + [195814] = 2, + ACTIONS(10526), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198227] = 2, - ACTIONS(10420), 1, + [195822] = 2, + ACTIONS(10528), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198235] = 2, - ACTIONS(7408), 1, + [195830] = 2, + ACTIONS(10530), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198243] = 2, - ACTIONS(10422), 1, + [195838] = 2, + ACTIONS(10532), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198251] = 2, - ACTIONS(10424), 1, + [195846] = 2, + ACTIONS(10534), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198259] = 2, - ACTIONS(8659), 1, - anon_sym_in, + [195854] = 2, + ACTIONS(10536), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198267] = 2, - ACTIONS(10426), 1, + [195862] = 2, + ACTIONS(10538), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198275] = 2, - ACTIONS(8954), 1, - anon_sym_in, + [195870] = 2, + ACTIONS(6595), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198283] = 2, - ACTIONS(10428), 1, - anon_sym_in, + [195878] = 2, + ACTIONS(10540), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198291] = 2, - ACTIONS(7338), 1, - anon_sym_RPAREN, + [195886] = 2, + ACTIONS(10542), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198299] = 2, - ACTIONS(10430), 1, - sym_identifier, + [195894] = 2, + ACTIONS(10544), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198307] = 2, - ACTIONS(10432), 1, + [195902] = 2, + ACTIONS(10546), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198315] = 2, - ACTIONS(10434), 1, - anon_sym_RBRACK, + [195910] = 2, + ACTIONS(10548), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198323] = 2, - ACTIONS(10436), 1, + [195918] = 2, + ACTIONS(10550), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198331] = 2, - ACTIONS(10438), 1, - anon_sym_COLON, + [195926] = 2, + ACTIONS(10552), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198339] = 2, - ACTIONS(10440), 1, - sym_identifier, + [195934] = 2, + ACTIONS(10554), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198347] = 2, - ACTIONS(10442), 1, - sym_identifier, + [195942] = 2, + ACTIONS(10556), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198355] = 2, - ACTIONS(1583), 1, + [195950] = 2, + ACTIONS(7240), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198363] = 2, - ACTIONS(3860), 1, + [195958] = 2, + ACTIONS(3962), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198371] = 2, - ACTIONS(10444), 1, + [195966] = 2, + ACTIONS(10558), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198379] = 2, - ACTIONS(10446), 1, - sym_identifier, + [195974] = 2, + ACTIONS(9762), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198387] = 2, - ACTIONS(10448), 1, - anon_sym_COLON_EQ, + [195982] = 2, + ACTIONS(10560), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198395] = 2, - ACTIONS(10450), 1, - sym_identifier, + [195990] = 2, + ACTIONS(10562), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198403] = 2, - ACTIONS(10452), 1, - anon_sym_COLON, + [195998] = 2, + ACTIONS(10564), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198411] = 2, - ACTIONS(10454), 1, + [196006] = 2, + ACTIONS(10566), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198419] = 2, - ACTIONS(10456), 1, - anon_sym_RBRACE, + [196014] = 2, + ACTIONS(10568), 1, + sym__indent, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198427] = 2, - ACTIONS(10458), 1, - anon_sym_RBRACE, + [196022] = 2, + ACTIONS(10570), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198435] = 2, - ACTIONS(10460), 1, - anon_sym_GT, + [196030] = 2, + ACTIONS(10572), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198443] = 2, - ACTIONS(7385), 1, - anon_sym_RPAREN, + [196038] = 2, + ACTIONS(10574), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198451] = 2, - ACTIONS(10462), 1, - anon_sym_COLON, + [196046] = 2, + ACTIONS(10576), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198459] = 2, - ACTIONS(10464), 1, - anon_sym_RBRACE, + [196054] = 2, + ACTIONS(10578), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198467] = 2, - ACTIONS(8671), 1, - anon_sym_LPAREN, + [196062] = 2, + ACTIONS(10580), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198475] = 2, - ACTIONS(10466), 1, - sym_identifier, + [196070] = 2, + ACTIONS(10582), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198483] = 2, - ACTIONS(10468), 1, + [196078] = 2, + ACTIONS(10584), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198491] = 2, - ACTIONS(10470), 1, - anon_sym_COLON, + [196086] = 2, + ACTIONS(10586), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198499] = 2, - ACTIONS(10472), 1, + [196094] = 2, + ACTIONS(6746), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198507] = 2, - ACTIONS(7090), 1, - anon_sym_COLON, + [196102] = 2, + ACTIONS(8115), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198515] = 2, - ACTIONS(7336), 1, - anon_sym_COLON, + [196110] = 2, + ACTIONS(10588), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198523] = 2, - ACTIONS(10474), 1, - anon_sym_STAR, + [196118] = 2, + ACTIONS(10590), 1, + anon_sym_None, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198531] = 2, - ACTIONS(10476), 1, + [196126] = 2, + ACTIONS(10592), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198539] = 2, - ACTIONS(10478), 1, + [196134] = 2, + ACTIONS(10594), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198547] = 2, - ACTIONS(10480), 1, - anon_sym_RBRACE, + [196142] = 2, + ACTIONS(10596), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198555] = 2, - ACTIONS(10482), 1, + [196150] = 2, + ACTIONS(10598), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198563] = 2, - ACTIONS(10484), 1, + [196158] = 2, + ACTIONS(10600), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198571] = 2, - ACTIONS(10486), 1, + [196166] = 2, + ACTIONS(10602), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198579] = 2, - ACTIONS(10488), 1, - sym_identifier, + [196174] = 2, + ACTIONS(10604), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198587] = 2, - ACTIONS(10490), 1, - sym_identifier, + [196182] = 2, + ACTIONS(10606), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [198595] = 2, - ACTIONS(10492), 1, - anon_sym_RBRACK, + [196190] = 2, + ACTIONS(10608), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1079)] = 0, - [SMALL_STATE(1080)] = 119, - [SMALL_STATE(1081)] = 238, - [SMALL_STATE(1082)] = 359, - [SMALL_STATE(1083)] = 480, - [SMALL_STATE(1084)] = 553, - [SMALL_STATE(1085)] = 672, - [SMALL_STATE(1086)] = 747, - [SMALL_STATE(1087)] = 822, - [SMALL_STATE(1088)] = 941, - [SMALL_STATE(1089)] = 1016, - [SMALL_STATE(1090)] = 1091, - [SMALL_STATE(1091)] = 1162, - [SMALL_STATE(1092)] = 1237, - [SMALL_STATE(1093)] = 1312, - [SMALL_STATE(1094)] = 1387, - [SMALL_STATE(1095)] = 1506, - [SMALL_STATE(1096)] = 1627, - [SMALL_STATE(1097)] = 1746, - [SMALL_STATE(1098)] = 1865, - [SMALL_STATE(1099)] = 1938, - [SMALL_STATE(1100)] = 2057, - [SMALL_STATE(1101)] = 2128, - [SMALL_STATE(1102)] = 2203, - [SMALL_STATE(1103)] = 2274, - [SMALL_STATE(1104)] = 2349, - [SMALL_STATE(1105)] = 2468, - [SMALL_STATE(1106)] = 2541, - [SMALL_STATE(1107)] = 2660, - [SMALL_STATE(1108)] = 2731, - [SMALL_STATE(1109)] = 2806, - [SMALL_STATE(1110)] = 2881, - [SMALL_STATE(1111)] = 3000, - [SMALL_STATE(1112)] = 3121, - [SMALL_STATE(1113)] = 3240, - [SMALL_STATE(1114)] = 3315, - [SMALL_STATE(1115)] = 3434, - [SMALL_STATE(1116)] = 3507, - [SMALL_STATE(1117)] = 3582, - [SMALL_STATE(1118)] = 3657, - [SMALL_STATE(1119)] = 3776, - [SMALL_STATE(1120)] = 3895, - [SMALL_STATE(1121)] = 4014, - [SMALL_STATE(1122)] = 4085, - [SMALL_STATE(1123)] = 4160, - [SMALL_STATE(1124)] = 4235, - [SMALL_STATE(1125)] = 4310, - [SMALL_STATE(1126)] = 4431, - [SMALL_STATE(1127)] = 4506, - [SMALL_STATE(1128)] = 4625, - [SMALL_STATE(1129)] = 4744, - [SMALL_STATE(1130)] = 4865, - [SMALL_STATE(1131)] = 4984, - [SMALL_STATE(1132)] = 5103, - [SMALL_STATE(1133)] = 5212, - [SMALL_STATE(1134)] = 5287, - [SMALL_STATE(1135)] = 5406, - [SMALL_STATE(1136)] = 5525, - [SMALL_STATE(1137)] = 5600, - [SMALL_STATE(1138)] = 5721, - [SMALL_STATE(1139)] = 5796, - [SMALL_STATE(1140)] = 5915, - [SMALL_STATE(1141)] = 6026, - [SMALL_STATE(1142)] = 6137, - [SMALL_STATE(1143)] = 6246, - [SMALL_STATE(1144)] = 6367, - [SMALL_STATE(1145)] = 6442, - [SMALL_STATE(1146)] = 6517, - [SMALL_STATE(1147)] = 6636, - [SMALL_STATE(1148)] = 6709, - [SMALL_STATE(1149)] = 6784, - [SMALL_STATE(1150)] = 6857, - [SMALL_STATE(1151)] = 6928, - [SMALL_STATE(1152)] = 7047, - [SMALL_STATE(1153)] = 7118, - [SMALL_STATE(1154)] = 7193, - [SMALL_STATE(1155)] = 7268, - [SMALL_STATE(1156)] = 7343, - [SMALL_STATE(1157)] = 7418, - [SMALL_STATE(1158)] = 7537, - [SMALL_STATE(1159)] = 7656, - [SMALL_STATE(1160)] = 7731, - [SMALL_STATE(1161)] = 7850, - [SMALL_STATE(1162)] = 7925, - [SMALL_STATE(1163)] = 7998, - [SMALL_STATE(1164)] = 8073, - [SMALL_STATE(1165)] = 8148, - [SMALL_STATE(1166)] = 8269, - [SMALL_STATE(1167)] = 8388, - [SMALL_STATE(1168)] = 8459, - [SMALL_STATE(1169)] = 8534, - [SMALL_STATE(1170)] = 8655, - [SMALL_STATE(1171)] = 8730, - [SMALL_STATE(1172)] = 8805, - [SMALL_STATE(1173)] = 8926, - [SMALL_STATE(1174)] = 9047, - [SMALL_STATE(1175)] = 9166, - [SMALL_STATE(1176)] = 9287, - [SMALL_STATE(1177)] = 9408, - [SMALL_STATE(1178)] = 9529, - [SMALL_STATE(1179)] = 9650, - [SMALL_STATE(1180)] = 9771, - [SMALL_STATE(1181)] = 9892, - [SMALL_STATE(1182)] = 10013, - [SMALL_STATE(1183)] = 10134, - [SMALL_STATE(1184)] = 10255, - [SMALL_STATE(1185)] = 10330, - [SMALL_STATE(1186)] = 10451, - [SMALL_STATE(1187)] = 10526, - [SMALL_STATE(1188)] = 10601, - [SMALL_STATE(1189)] = 10676, - [SMALL_STATE(1190)] = 10795, - [SMALL_STATE(1191)] = 10914, - [SMALL_STATE(1192)] = 10989, - [SMALL_STATE(1193)] = 11110, - [SMALL_STATE(1194)] = 11183, - [SMALL_STATE(1195)] = 11253, - [SMALL_STATE(1196)] = 11323, - [SMALL_STATE(1197)] = 11393, - [SMALL_STATE(1198)] = 11463, - [SMALL_STATE(1199)] = 11533, - [SMALL_STATE(1200)] = 11603, - [SMALL_STATE(1201)] = 11673, - [SMALL_STATE(1202)] = 11743, - [SMALL_STATE(1203)] = 11813, - [SMALL_STATE(1204)] = 11931, - [SMALL_STATE(1205)] = 12001, - [SMALL_STATE(1206)] = 12071, - [SMALL_STATE(1207)] = 12141, - [SMALL_STATE(1208)] = 12211, - [SMALL_STATE(1209)] = 12281, - [SMALL_STATE(1210)] = 12351, - [SMALL_STATE(1211)] = 12421, - [SMALL_STATE(1212)] = 12491, - [SMALL_STATE(1213)] = 12561, - [SMALL_STATE(1214)] = 12631, - [SMALL_STATE(1215)] = 12703, - [SMALL_STATE(1216)] = 12773, - [SMALL_STATE(1217)] = 12891, - [SMALL_STATE(1218)] = 12961, - [SMALL_STATE(1219)] = 13031, - [SMALL_STATE(1220)] = 13101, - [SMALL_STATE(1221)] = 13219, - [SMALL_STATE(1222)] = 13289, - [SMALL_STATE(1223)] = 13359, - [SMALL_STATE(1224)] = 13429, - [SMALL_STATE(1225)] = 13499, - [SMALL_STATE(1226)] = 13569, - [SMALL_STATE(1227)] = 13639, - [SMALL_STATE(1228)] = 13709, - [SMALL_STATE(1229)] = 13779, - [SMALL_STATE(1230)] = 13849, - [SMALL_STATE(1231)] = 13919, - [SMALL_STATE(1232)] = 13989, - [SMALL_STATE(1233)] = 14059, - [SMALL_STATE(1234)] = 14129, - [SMALL_STATE(1235)] = 14199, - [SMALL_STATE(1236)] = 14269, - [SMALL_STATE(1237)] = 14339, - [SMALL_STATE(1238)] = 14409, - [SMALL_STATE(1239)] = 14479, - [SMALL_STATE(1240)] = 14549, - [SMALL_STATE(1241)] = 14619, - [SMALL_STATE(1242)] = 14737, - [SMALL_STATE(1243)] = 14807, - [SMALL_STATE(1244)] = 14877, - [SMALL_STATE(1245)] = 14947, - [SMALL_STATE(1246)] = 15017, - [SMALL_STATE(1247)] = 15087, - [SMALL_STATE(1248)] = 15157, - [SMALL_STATE(1249)] = 15227, - [SMALL_STATE(1250)] = 15297, - [SMALL_STATE(1251)] = 15367, - [SMALL_STATE(1252)] = 15437, - [SMALL_STATE(1253)] = 15507, - [SMALL_STATE(1254)] = 15577, - [SMALL_STATE(1255)] = 15695, - [SMALL_STATE(1256)] = 15765, - [SMALL_STATE(1257)] = 15835, - [SMALL_STATE(1258)] = 15905, - [SMALL_STATE(1259)] = 15975, - [SMALL_STATE(1260)] = 16045, - [SMALL_STATE(1261)] = 16115, - [SMALL_STATE(1262)] = 16233, - [SMALL_STATE(1263)] = 16303, - [SMALL_STATE(1264)] = 16373, - [SMALL_STATE(1265)] = 16443, - [SMALL_STATE(1266)] = 16513, - [SMALL_STATE(1267)] = 16631, - [SMALL_STATE(1268)] = 16701, - [SMALL_STATE(1269)] = 16771, - [SMALL_STATE(1270)] = 16841, - [SMALL_STATE(1271)] = 16911, - [SMALL_STATE(1272)] = 17029, - [SMALL_STATE(1273)] = 17099, - [SMALL_STATE(1274)] = 17169, - [SMALL_STATE(1275)] = 17239, - [SMALL_STATE(1276)] = 17357, - [SMALL_STATE(1277)] = 17427, - [SMALL_STATE(1278)] = 17545, - [SMALL_STATE(1279)] = 17615, - [SMALL_STATE(1280)] = 17685, - [SMALL_STATE(1281)] = 17755, - [SMALL_STATE(1282)] = 17825, - [SMALL_STATE(1283)] = 17895, - [SMALL_STATE(1284)] = 18013, - [SMALL_STATE(1285)] = 18083, - [SMALL_STATE(1286)] = 18153, - [SMALL_STATE(1287)] = 18223, - [SMALL_STATE(1288)] = 18293, - [SMALL_STATE(1289)] = 18363, - [SMALL_STATE(1290)] = 18433, - [SMALL_STATE(1291)] = 18503, - [SMALL_STATE(1292)] = 18573, - [SMALL_STATE(1293)] = 18643, - [SMALL_STATE(1294)] = 18713, - [SMALL_STATE(1295)] = 18783, - [SMALL_STATE(1296)] = 18853, - [SMALL_STATE(1297)] = 18923, - [SMALL_STATE(1298)] = 18993, - [SMALL_STATE(1299)] = 19063, - [SMALL_STATE(1300)] = 19133, - [SMALL_STATE(1301)] = 19203, - [SMALL_STATE(1302)] = 19273, - [SMALL_STATE(1303)] = 19343, - [SMALL_STATE(1304)] = 19413, - [SMALL_STATE(1305)] = 19483, - [SMALL_STATE(1306)] = 19553, - [SMALL_STATE(1307)] = 19623, - [SMALL_STATE(1308)] = 19693, - [SMALL_STATE(1309)] = 19763, - [SMALL_STATE(1310)] = 19833, - [SMALL_STATE(1311)] = 19903, - [SMALL_STATE(1312)] = 19973, - [SMALL_STATE(1313)] = 20043, - [SMALL_STATE(1314)] = 20113, - [SMALL_STATE(1315)] = 20183, - [SMALL_STATE(1316)] = 20253, - [SMALL_STATE(1317)] = 20323, - [SMALL_STATE(1318)] = 20393, - [SMALL_STATE(1319)] = 20511, - [SMALL_STATE(1320)] = 20581, - [SMALL_STATE(1321)] = 20651, - [SMALL_STATE(1322)] = 20721, - [SMALL_STATE(1323)] = 20791, - [SMALL_STATE(1324)] = 20861, - [SMALL_STATE(1325)] = 20931, - [SMALL_STATE(1326)] = 21001, - [SMALL_STATE(1327)] = 21121, - [SMALL_STATE(1328)] = 21191, - [SMALL_STATE(1329)] = 21261, - [SMALL_STATE(1330)] = 21331, - [SMALL_STATE(1331)] = 21401, - [SMALL_STATE(1332)] = 21471, - [SMALL_STATE(1333)] = 21541, - [SMALL_STATE(1334)] = 21611, - [SMALL_STATE(1335)] = 21681, - [SMALL_STATE(1336)] = 21751, - [SMALL_STATE(1337)] = 21821, - [SMALL_STATE(1338)] = 21891, - [SMALL_STATE(1339)] = 21961, - [SMALL_STATE(1340)] = 22031, - [SMALL_STATE(1341)] = 22101, - [SMALL_STATE(1342)] = 22171, - [SMALL_STATE(1343)] = 22241, - [SMALL_STATE(1344)] = 22313, - [SMALL_STATE(1345)] = 22383, - [SMALL_STATE(1346)] = 22453, - [SMALL_STATE(1347)] = 22523, - [SMALL_STATE(1348)] = 22593, - [SMALL_STATE(1349)] = 22663, - [SMALL_STATE(1350)] = 22733, - [SMALL_STATE(1351)] = 22803, - [SMALL_STATE(1352)] = 22873, - [SMALL_STATE(1353)] = 22943, - [SMALL_STATE(1354)] = 23013, - [SMALL_STATE(1355)] = 23123, - [SMALL_STATE(1356)] = 23193, - [SMALL_STATE(1357)] = 23263, - [SMALL_STATE(1358)] = 23333, - [SMALL_STATE(1359)] = 23403, - [SMALL_STATE(1360)] = 23473, - [SMALL_STATE(1361)] = 23543, - [SMALL_STATE(1362)] = 23613, - [SMALL_STATE(1363)] = 23683, - [SMALL_STATE(1364)] = 23753, - [SMALL_STATE(1365)] = 23823, - [SMALL_STATE(1366)] = 23893, - [SMALL_STATE(1367)] = 23963, - [SMALL_STATE(1368)] = 24033, - [SMALL_STATE(1369)] = 24103, - [SMALL_STATE(1370)] = 24173, - [SMALL_STATE(1371)] = 24291, - [SMALL_STATE(1372)] = 24361, - [SMALL_STATE(1373)] = 24471, - [SMALL_STATE(1374)] = 24541, - [SMALL_STATE(1375)] = 24659, - [SMALL_STATE(1376)] = 24729, - [SMALL_STATE(1377)] = 24799, - [SMALL_STATE(1378)] = 24869, - [SMALL_STATE(1379)] = 24939, - [SMALL_STATE(1380)] = 25009, - [SMALL_STATE(1381)] = 25079, - [SMALL_STATE(1382)] = 25149, - [SMALL_STATE(1383)] = 25219, - [SMALL_STATE(1384)] = 25289, - [SMALL_STATE(1385)] = 25359, - [SMALL_STATE(1386)] = 25429, - [SMALL_STATE(1387)] = 25499, - [SMALL_STATE(1388)] = 25569, - [SMALL_STATE(1389)] = 25639, - [SMALL_STATE(1390)] = 25709, - [SMALL_STATE(1391)] = 25779, - [SMALL_STATE(1392)] = 25849, - [SMALL_STATE(1393)] = 25967, - [SMALL_STATE(1394)] = 26037, - [SMALL_STATE(1395)] = 26107, - [SMALL_STATE(1396)] = 26177, - [SMALL_STATE(1397)] = 26247, - [SMALL_STATE(1398)] = 26365, - [SMALL_STATE(1399)] = 26483, - [SMALL_STATE(1400)] = 26553, - [SMALL_STATE(1401)] = 26623, - [SMALL_STATE(1402)] = 26693, - [SMALL_STATE(1403)] = 26811, - [SMALL_STATE(1404)] = 26929, - [SMALL_STATE(1405)] = 26999, - [SMALL_STATE(1406)] = 27069, - [SMALL_STATE(1407)] = 27139, - [SMALL_STATE(1408)] = 27209, - [SMALL_STATE(1409)] = 27327, - [SMALL_STATE(1410)] = 27397, - [SMALL_STATE(1411)] = 27467, - [SMALL_STATE(1412)] = 27585, - [SMALL_STATE(1413)] = 27655, - [SMALL_STATE(1414)] = 27725, - [SMALL_STATE(1415)] = 27795, - [SMALL_STATE(1416)] = 27865, - [SMALL_STATE(1417)] = 27935, - [SMALL_STATE(1418)] = 28005, - [SMALL_STATE(1419)] = 28075, - [SMALL_STATE(1420)] = 28145, - [SMALL_STATE(1421)] = 28215, - [SMALL_STATE(1422)] = 28285, - [SMALL_STATE(1423)] = 28355, - [SMALL_STATE(1424)] = 28425, - [SMALL_STATE(1425)] = 28540, - [SMALL_STATE(1426)] = 28655, - [SMALL_STATE(1427)] = 28770, - [SMALL_STATE(1428)] = 28885, - [SMALL_STATE(1429)] = 29000, - [SMALL_STATE(1430)] = 29115, - [SMALL_STATE(1431)] = 29230, - [SMALL_STATE(1432)] = 29345, - [SMALL_STATE(1433)] = 29460, - [SMALL_STATE(1434)] = 29575, - [SMALL_STATE(1435)] = 29690, - [SMALL_STATE(1436)] = 29805, - [SMALL_STATE(1437)] = 29920, - [SMALL_STATE(1438)] = 30035, - [SMALL_STATE(1439)] = 30150, - [SMALL_STATE(1440)] = 30219, - [SMALL_STATE(1441)] = 30288, - [SMALL_STATE(1442)] = 30403, - [SMALL_STATE(1443)] = 30518, - [SMALL_STATE(1444)] = 30633, - [SMALL_STATE(1445)] = 30748, - [SMALL_STATE(1446)] = 30863, - [SMALL_STATE(1447)] = 30978, - [SMALL_STATE(1448)] = 31093, - [SMALL_STATE(1449)] = 31208, - [SMALL_STATE(1450)] = 31323, - [SMALL_STATE(1451)] = 31438, - [SMALL_STATE(1452)] = 31553, - [SMALL_STATE(1453)] = 31668, - [SMALL_STATE(1454)] = 31783, - [SMALL_STATE(1455)] = 31898, - [SMALL_STATE(1456)] = 32013, - [SMALL_STATE(1457)] = 32128, - [SMALL_STATE(1458)] = 32243, - [SMALL_STATE(1459)] = 32358, - [SMALL_STATE(1460)] = 32473, - [SMALL_STATE(1461)] = 32588, - [SMALL_STATE(1462)] = 32703, - [SMALL_STATE(1463)] = 32818, - [SMALL_STATE(1464)] = 32933, - [SMALL_STATE(1465)] = 33048, - [SMALL_STATE(1466)] = 33163, - [SMALL_STATE(1467)] = 33278, - [SMALL_STATE(1468)] = 33393, - [SMALL_STATE(1469)] = 33508, - [SMALL_STATE(1470)] = 33623, - [SMALL_STATE(1471)] = 33738, - [SMALL_STATE(1472)] = 33853, - [SMALL_STATE(1473)] = 33968, - [SMALL_STATE(1474)] = 34085, - [SMALL_STATE(1475)] = 34154, - [SMALL_STATE(1476)] = 34223, - [SMALL_STATE(1477)] = 34292, - [SMALL_STATE(1478)] = 34407, - [SMALL_STATE(1479)] = 34476, - [SMALL_STATE(1480)] = 34591, - [SMALL_STATE(1481)] = 34706, - [SMALL_STATE(1482)] = 34821, - [SMALL_STATE(1483)] = 34936, - [SMALL_STATE(1484)] = 35051, - [SMALL_STATE(1485)] = 35166, - [SMALL_STATE(1486)] = 35281, - [SMALL_STATE(1487)] = 35350, - [SMALL_STATE(1488)] = 35419, - [SMALL_STATE(1489)] = 35488, - [SMALL_STATE(1490)] = 35557, - [SMALL_STATE(1491)] = 35672, - [SMALL_STATE(1492)] = 35787, - [SMALL_STATE(1493)] = 35902, - [SMALL_STATE(1494)] = 35971, - [SMALL_STATE(1495)] = 36086, - [SMALL_STATE(1496)] = 36201, - [SMALL_STATE(1497)] = 36316, - [SMALL_STATE(1498)] = 36385, - [SMALL_STATE(1499)] = 36500, - [SMALL_STATE(1500)] = 36615, - [SMALL_STATE(1501)] = 36730, - [SMALL_STATE(1502)] = 36845, - [SMALL_STATE(1503)] = 36914, - [SMALL_STATE(1504)] = 37029, - [SMALL_STATE(1505)] = 37144, - [SMALL_STATE(1506)] = 37213, - [SMALL_STATE(1507)] = 37282, - [SMALL_STATE(1508)] = 37351, - [SMALL_STATE(1509)] = 37466, - [SMALL_STATE(1510)] = 37535, - [SMALL_STATE(1511)] = 37604, - [SMALL_STATE(1512)] = 37719, - [SMALL_STATE(1513)] = 37788, - [SMALL_STATE(1514)] = 37857, - [SMALL_STATE(1515)] = 37926, - [SMALL_STATE(1516)] = 38041, - [SMALL_STATE(1517)] = 38156, - [SMALL_STATE(1518)] = 38225, - [SMALL_STATE(1519)] = 38294, - [SMALL_STATE(1520)] = 38363, - [SMALL_STATE(1521)] = 38478, - [SMALL_STATE(1522)] = 38593, - [SMALL_STATE(1523)] = 38708, - [SMALL_STATE(1524)] = 38777, - [SMALL_STATE(1525)] = 38846, - [SMALL_STATE(1526)] = 38915, - [SMALL_STATE(1527)] = 39030, - [SMALL_STATE(1528)] = 39099, - [SMALL_STATE(1529)] = 39168, - [SMALL_STATE(1530)] = 39237, - [SMALL_STATE(1531)] = 39352, - [SMALL_STATE(1532)] = 39421, - [SMALL_STATE(1533)] = 39490, - [SMALL_STATE(1534)] = 39559, - [SMALL_STATE(1535)] = 39628, - [SMALL_STATE(1536)] = 39697, - [SMALL_STATE(1537)] = 39766, - [SMALL_STATE(1538)] = 39835, - [SMALL_STATE(1539)] = 39950, - [SMALL_STATE(1540)] = 40065, - [SMALL_STATE(1541)] = 40134, - [SMALL_STATE(1542)] = 40249, - [SMALL_STATE(1543)] = 40318, - [SMALL_STATE(1544)] = 40387, - [SMALL_STATE(1545)] = 40456, - [SMALL_STATE(1546)] = 40525, - [SMALL_STATE(1547)] = 40594, - [SMALL_STATE(1548)] = 40663, - [SMALL_STATE(1549)] = 40778, - [SMALL_STATE(1550)] = 40847, - [SMALL_STATE(1551)] = 40962, - [SMALL_STATE(1552)] = 41077, - [SMALL_STATE(1553)] = 41146, - [SMALL_STATE(1554)] = 41215, - [SMALL_STATE(1555)] = 41284, - [SMALL_STATE(1556)] = 41353, - [SMALL_STATE(1557)] = 41422, - [SMALL_STATE(1558)] = 41491, - [SMALL_STATE(1559)] = 41560, - [SMALL_STATE(1560)] = 41629, - [SMALL_STATE(1561)] = 41698, - [SMALL_STATE(1562)] = 41767, - [SMALL_STATE(1563)] = 41882, - [SMALL_STATE(1564)] = 41951, - [SMALL_STATE(1565)] = 42020, - [SMALL_STATE(1566)] = 42089, - [SMALL_STATE(1567)] = 42158, - [SMALL_STATE(1568)] = 42227, - [SMALL_STATE(1569)] = 42296, - [SMALL_STATE(1570)] = 42365, - [SMALL_STATE(1571)] = 42434, - [SMALL_STATE(1572)] = 42503, - [SMALL_STATE(1573)] = 42572, - [SMALL_STATE(1574)] = 42641, - [SMALL_STATE(1575)] = 42758, - [SMALL_STATE(1576)] = 42827, - [SMALL_STATE(1577)] = 42896, - [SMALL_STATE(1578)] = 42965, - [SMALL_STATE(1579)] = 43034, - [SMALL_STATE(1580)] = 43103, - [SMALL_STATE(1581)] = 43172, - [SMALL_STATE(1582)] = 43241, - [SMALL_STATE(1583)] = 43310, - [SMALL_STATE(1584)] = 43379, - [SMALL_STATE(1585)] = 43494, - [SMALL_STATE(1586)] = 43609, - [SMALL_STATE(1587)] = 43678, - [SMALL_STATE(1588)] = 43793, - [SMALL_STATE(1589)] = 43908, - [SMALL_STATE(1590)] = 43977, - [SMALL_STATE(1591)] = 44046, - [SMALL_STATE(1592)] = 44161, - [SMALL_STATE(1593)] = 44230, - [SMALL_STATE(1594)] = 44299, - [SMALL_STATE(1595)] = 44368, - [SMALL_STATE(1596)] = 44437, - [SMALL_STATE(1597)] = 44552, - [SMALL_STATE(1598)] = 44667, - [SMALL_STATE(1599)] = 44736, - [SMALL_STATE(1600)] = 44851, - [SMALL_STATE(1601)] = 44966, - [SMALL_STATE(1602)] = 45081, - [SMALL_STATE(1603)] = 45196, - [SMALL_STATE(1604)] = 45311, - [SMALL_STATE(1605)] = 45426, - [SMALL_STATE(1606)] = 45541, - [SMALL_STATE(1607)] = 45656, - [SMALL_STATE(1608)] = 45725, - [SMALL_STATE(1609)] = 45840, - [SMALL_STATE(1610)] = 45955, - [SMALL_STATE(1611)] = 46070, - [SMALL_STATE(1612)] = 46185, - [SMALL_STATE(1613)] = 46300, - [SMALL_STATE(1614)] = 46415, - [SMALL_STATE(1615)] = 46530, - [SMALL_STATE(1616)] = 46645, - [SMALL_STATE(1617)] = 46760, - [SMALL_STATE(1618)] = 46875, - [SMALL_STATE(1619)] = 46990, - [SMALL_STATE(1620)] = 47105, - [SMALL_STATE(1621)] = 47220, - [SMALL_STATE(1622)] = 47335, - [SMALL_STATE(1623)] = 47450, - [SMALL_STATE(1624)] = 47565, - [SMALL_STATE(1625)] = 47680, - [SMALL_STATE(1626)] = 47795, - [SMALL_STATE(1627)] = 47910, - [SMALL_STATE(1628)] = 48025, - [SMALL_STATE(1629)] = 48140, - [SMALL_STATE(1630)] = 48255, - [SMALL_STATE(1631)] = 48370, - [SMALL_STATE(1632)] = 48485, - [SMALL_STATE(1633)] = 48600, - [SMALL_STATE(1634)] = 48715, - [SMALL_STATE(1635)] = 48830, - [SMALL_STATE(1636)] = 48945, - [SMALL_STATE(1637)] = 49060, - [SMALL_STATE(1638)] = 49175, - [SMALL_STATE(1639)] = 49290, - [SMALL_STATE(1640)] = 49405, - [SMALL_STATE(1641)] = 49520, - [SMALL_STATE(1642)] = 49635, - [SMALL_STATE(1643)] = 49750, - [SMALL_STATE(1644)] = 49865, - [SMALL_STATE(1645)] = 49980, - [SMALL_STATE(1646)] = 50095, - [SMALL_STATE(1647)] = 50210, - [SMALL_STATE(1648)] = 50325, - [SMALL_STATE(1649)] = 50440, - [SMALL_STATE(1650)] = 50555, - [SMALL_STATE(1651)] = 50670, - [SMALL_STATE(1652)] = 50785, - [SMALL_STATE(1653)] = 50900, - [SMALL_STATE(1654)] = 50969, - [SMALL_STATE(1655)] = 51084, - [SMALL_STATE(1656)] = 51201, - [SMALL_STATE(1657)] = 51270, - [SMALL_STATE(1658)] = 51339, - [SMALL_STATE(1659)] = 51454, - [SMALL_STATE(1660)] = 51523, - [SMALL_STATE(1661)] = 51592, - [SMALL_STATE(1662)] = 51707, - [SMALL_STATE(1663)] = 51776, - [SMALL_STATE(1664)] = 51891, - [SMALL_STATE(1665)] = 51960, - [SMALL_STATE(1666)] = 52029, - [SMALL_STATE(1667)] = 52098, - [SMALL_STATE(1668)] = 52167, - [SMALL_STATE(1669)] = 52236, - [SMALL_STATE(1670)] = 52351, - [SMALL_STATE(1671)] = 52466, - [SMALL_STATE(1672)] = 52581, - [SMALL_STATE(1673)] = 52650, - [SMALL_STATE(1674)] = 52719, - [SMALL_STATE(1675)] = 52788, - [SMALL_STATE(1676)] = 52857, - [SMALL_STATE(1677)] = 52926, - [SMALL_STATE(1678)] = 52995, - [SMALL_STATE(1679)] = 53110, - [SMALL_STATE(1680)] = 53179, - [SMALL_STATE(1681)] = 53248, - [SMALL_STATE(1682)] = 53317, - [SMALL_STATE(1683)] = 53386, - [SMALL_STATE(1684)] = 53501, - [SMALL_STATE(1685)] = 53616, - [SMALL_STATE(1686)] = 53731, - [SMALL_STATE(1687)] = 53846, - [SMALL_STATE(1688)] = 53915, - [SMALL_STATE(1689)] = 53984, - [SMALL_STATE(1690)] = 54099, - [SMALL_STATE(1691)] = 54214, - [SMALL_STATE(1692)] = 54329, - [SMALL_STATE(1693)] = 54398, - [SMALL_STATE(1694)] = 54467, - [SMALL_STATE(1695)] = 54536, - [SMALL_STATE(1696)] = 54651, - [SMALL_STATE(1697)] = 54766, - [SMALL_STATE(1698)] = 54881, - [SMALL_STATE(1699)] = 54996, - [SMALL_STATE(1700)] = 55111, - [SMALL_STATE(1701)] = 55226, - [SMALL_STATE(1702)] = 55341, - [SMALL_STATE(1703)] = 55456, - [SMALL_STATE(1704)] = 55525, - [SMALL_STATE(1705)] = 55594, - [SMALL_STATE(1706)] = 55663, - [SMALL_STATE(1707)] = 55732, - [SMALL_STATE(1708)] = 55847, - [SMALL_STATE(1709)] = 55916, - [SMALL_STATE(1710)] = 56031, - [SMALL_STATE(1711)] = 56146, - [SMALL_STATE(1712)] = 56261, - [SMALL_STATE(1713)] = 56376, - [SMALL_STATE(1714)] = 56445, - [SMALL_STATE(1715)] = 56514, - [SMALL_STATE(1716)] = 56583, - [SMALL_STATE(1717)] = 56652, - [SMALL_STATE(1718)] = 56767, - [SMALL_STATE(1719)] = 56882, - [SMALL_STATE(1720)] = 56997, - [SMALL_STATE(1721)] = 57112, - [SMALL_STATE(1722)] = 57227, - [SMALL_STATE(1723)] = 57342, - [SMALL_STATE(1724)] = 57457, - [SMALL_STATE(1725)] = 57572, - [SMALL_STATE(1726)] = 57687, - [SMALL_STATE(1727)] = 57802, - [SMALL_STATE(1728)] = 57917, - [SMALL_STATE(1729)] = 58034, - [SMALL_STATE(1730)] = 58103, - [SMALL_STATE(1731)] = 58218, - [SMALL_STATE(1732)] = 58333, - [SMALL_STATE(1733)] = 58448, - [SMALL_STATE(1734)] = 58563, - [SMALL_STATE(1735)] = 58678, - [SMALL_STATE(1736)] = 58793, - [SMALL_STATE(1737)] = 58910, - [SMALL_STATE(1738)] = 59025, - [SMALL_STATE(1739)] = 59094, - [SMALL_STATE(1740)] = 59209, - [SMALL_STATE(1741)] = 59278, - [SMALL_STATE(1742)] = 59393, - [SMALL_STATE(1743)] = 59462, - [SMALL_STATE(1744)] = 59577, - [SMALL_STATE(1745)] = 59686, - [SMALL_STATE(1746)] = 59801, - [SMALL_STATE(1747)] = 59870, - [SMALL_STATE(1748)] = 59939, - [SMALL_STATE(1749)] = 60008, - [SMALL_STATE(1750)] = 60123, - [SMALL_STATE(1751)] = 60240, - [SMALL_STATE(1752)] = 60355, - [SMALL_STATE(1753)] = 60424, - [SMALL_STATE(1754)] = 60539, - [SMALL_STATE(1755)] = 60608, - [SMALL_STATE(1756)] = 60723, - [SMALL_STATE(1757)] = 60792, - [SMALL_STATE(1758)] = 60861, - [SMALL_STATE(1759)] = 60976, - [SMALL_STATE(1760)] = 61091, - [SMALL_STATE(1761)] = 61206, - [SMALL_STATE(1762)] = 61275, - [SMALL_STATE(1763)] = 61390, - [SMALL_STATE(1764)] = 61459, - [SMALL_STATE(1765)] = 61528, - [SMALL_STATE(1766)] = 61597, - [SMALL_STATE(1767)] = 61666, - [SMALL_STATE(1768)] = 61735, - [SMALL_STATE(1769)] = 61804, - [SMALL_STATE(1770)] = 61873, - [SMALL_STATE(1771)] = 61942, - [SMALL_STATE(1772)] = 62057, - [SMALL_STATE(1773)] = 62126, - [SMALL_STATE(1774)] = 62195, - [SMALL_STATE(1775)] = 62264, - [SMALL_STATE(1776)] = 62379, - [SMALL_STATE(1777)] = 62494, - [SMALL_STATE(1778)] = 62603, - [SMALL_STATE(1779)] = 62718, - [SMALL_STATE(1780)] = 62833, - [SMALL_STATE(1781)] = 62948, - [SMALL_STATE(1782)] = 63063, - [SMALL_STATE(1783)] = 63178, - [SMALL_STATE(1784)] = 63293, - [SMALL_STATE(1785)] = 63408, - [SMALL_STATE(1786)] = 63477, - [SMALL_STATE(1787)] = 63592, - [SMALL_STATE(1788)] = 63707, - [SMALL_STATE(1789)] = 63822, - [SMALL_STATE(1790)] = 63937, - [SMALL_STATE(1791)] = 64052, - [SMALL_STATE(1792)] = 64167, - [SMALL_STATE(1793)] = 64282, - [SMALL_STATE(1794)] = 64397, - [SMALL_STATE(1795)] = 64512, - [SMALL_STATE(1796)] = 64627, - [SMALL_STATE(1797)] = 64742, - [SMALL_STATE(1798)] = 64857, - [SMALL_STATE(1799)] = 64972, - [SMALL_STATE(1800)] = 65087, - [SMALL_STATE(1801)] = 65202, - [SMALL_STATE(1802)] = 65317, - [SMALL_STATE(1803)] = 65432, - [SMALL_STATE(1804)] = 65547, - [SMALL_STATE(1805)] = 65662, - [SMALL_STATE(1806)] = 65777, - [SMALL_STATE(1807)] = 65892, - [SMALL_STATE(1808)] = 66007, - [SMALL_STATE(1809)] = 66122, - [SMALL_STATE(1810)] = 66237, - [SMALL_STATE(1811)] = 66352, - [SMALL_STATE(1812)] = 66467, - [SMALL_STATE(1813)] = 66582, - [SMALL_STATE(1814)] = 66697, - [SMALL_STATE(1815)] = 66812, - [SMALL_STATE(1816)] = 66927, - [SMALL_STATE(1817)] = 67042, - [SMALL_STATE(1818)] = 67157, - [SMALL_STATE(1819)] = 67272, - [SMALL_STATE(1820)] = 67387, - [SMALL_STATE(1821)] = 67502, - [SMALL_STATE(1822)] = 67617, - [SMALL_STATE(1823)] = 67732, - [SMALL_STATE(1824)] = 67847, - [SMALL_STATE(1825)] = 67962, - [SMALL_STATE(1826)] = 68077, - [SMALL_STATE(1827)] = 68192, - [SMALL_STATE(1828)] = 68307, - [SMALL_STATE(1829)] = 68422, - [SMALL_STATE(1830)] = 68537, - [SMALL_STATE(1831)] = 68652, - [SMALL_STATE(1832)] = 68767, - [SMALL_STATE(1833)] = 68882, - [SMALL_STATE(1834)] = 68997, - [SMALL_STATE(1835)] = 69112, - [SMALL_STATE(1836)] = 69227, - [SMALL_STATE(1837)] = 69342, - [SMALL_STATE(1838)] = 69457, - [SMALL_STATE(1839)] = 69572, - [SMALL_STATE(1840)] = 69687, - [SMALL_STATE(1841)] = 69802, - [SMALL_STATE(1842)] = 69917, - [SMALL_STATE(1843)] = 70032, - [SMALL_STATE(1844)] = 70147, - [SMALL_STATE(1845)] = 70262, - [SMALL_STATE(1846)] = 70377, - [SMALL_STATE(1847)] = 70492, - [SMALL_STATE(1848)] = 70607, - [SMALL_STATE(1849)] = 70722, - [SMALL_STATE(1850)] = 70837, - [SMALL_STATE(1851)] = 70952, - [SMALL_STATE(1852)] = 71067, - [SMALL_STATE(1853)] = 71182, - [SMALL_STATE(1854)] = 71297, - [SMALL_STATE(1855)] = 71412, - [SMALL_STATE(1856)] = 71527, - [SMALL_STATE(1857)] = 71642, - [SMALL_STATE(1858)] = 71757, - [SMALL_STATE(1859)] = 71872, - [SMALL_STATE(1860)] = 71987, - [SMALL_STATE(1861)] = 72102, - [SMALL_STATE(1862)] = 72217, - [SMALL_STATE(1863)] = 72332, - [SMALL_STATE(1864)] = 72447, - [SMALL_STATE(1865)] = 72562, - [SMALL_STATE(1866)] = 72677, - [SMALL_STATE(1867)] = 72792, - [SMALL_STATE(1868)] = 72907, - [SMALL_STATE(1869)] = 73022, - [SMALL_STATE(1870)] = 73137, - [SMALL_STATE(1871)] = 73252, - [SMALL_STATE(1872)] = 73367, - [SMALL_STATE(1873)] = 73482, - [SMALL_STATE(1874)] = 73597, - [SMALL_STATE(1875)] = 73712, - [SMALL_STATE(1876)] = 73827, - [SMALL_STATE(1877)] = 73942, - [SMALL_STATE(1878)] = 74057, - [SMALL_STATE(1879)] = 74172, - [SMALL_STATE(1880)] = 74287, - [SMALL_STATE(1881)] = 74356, - [SMALL_STATE(1882)] = 74471, - [SMALL_STATE(1883)] = 74586, - [SMALL_STATE(1884)] = 74701, - [SMALL_STATE(1885)] = 74816, - [SMALL_STATE(1886)] = 74931, - [SMALL_STATE(1887)] = 75046, - [SMALL_STATE(1888)] = 75161, - [SMALL_STATE(1889)] = 75276, - [SMALL_STATE(1890)] = 75345, - [SMALL_STATE(1891)] = 75451, - [SMALL_STATE(1892)] = 75557, - [SMALL_STATE(1893)] = 75663, - [SMALL_STATE(1894)] = 75769, - [SMALL_STATE(1895)] = 75871, - [SMALL_STATE(1896)] = 75946, - [SMALL_STATE(1897)] = 76038, - [SMALL_STATE(1898)] = 76105, - [SMALL_STATE(1899)] = 76210, - [SMALL_STATE(1900)] = 76315, - [SMALL_STATE(1901)] = 76382, - [SMALL_STATE(1902)] = 76457, - [SMALL_STATE(1903)] = 76532, - [SMALL_STATE(1904)] = 76635, - [SMALL_STATE(1905)] = 76710, - [SMALL_STATE(1906)] = 76787, - [SMALL_STATE(1907)] = 76890, - [SMALL_STATE(1908)] = 76992, - [SMALL_STATE(1909)] = 77094, - [SMALL_STATE(1910)] = 77196, - [SMALL_STATE(1911)] = 77298, - [SMALL_STATE(1912)] = 77400, - [SMALL_STATE(1913)] = 77500, - [SMALL_STATE(1914)] = 77602, - [SMALL_STATE(1915)] = 77704, - [SMALL_STATE(1916)] = 77802, - [SMALL_STATE(1917)] = 77904, - [SMALL_STATE(1918)] = 78006, - [SMALL_STATE(1919)] = 78108, - [SMALL_STATE(1920)] = 78207, - [SMALL_STATE(1921)] = 78306, - [SMALL_STATE(1922)] = 78405, - [SMALL_STATE(1923)] = 78504, - [SMALL_STATE(1924)] = 78603, - [SMALL_STATE(1925)] = 78702, - [SMALL_STATE(1926)] = 78775, - [SMALL_STATE(1927)] = 78841, - [SMALL_STATE(1928)] = 78937, - [SMALL_STATE(1929)] = 79033, - [SMALL_STATE(1930)] = 79101, - [SMALL_STATE(1931)] = 79197, - [SMALL_STATE(1932)] = 79293, - [SMALL_STATE(1933)] = 79359, - [SMALL_STATE(1934)] = 79424, - [SMALL_STATE(1935)] = 79481, - [SMALL_STATE(1936)] = 79538, - [SMALL_STATE(1937)] = 79599, - [SMALL_STATE(1938)] = 79662, - [SMALL_STATE(1939)] = 79719, - [SMALL_STATE(1940)] = 79776, - [SMALL_STATE(1941)] = 79833, - [SMALL_STATE(1942)] = 79894, - [SMALL_STATE(1943)] = 79957, - [SMALL_STATE(1944)] = 80020, - [SMALL_STATE(1945)] = 80083, - [SMALL_STATE(1946)] = 80140, - [SMALL_STATE(1947)] = 80203, - [SMALL_STATE(1948)] = 80294, - [SMALL_STATE(1949)] = 80385, - [SMALL_STATE(1950)] = 80476, - [SMALL_STATE(1951)] = 80567, - [SMALL_STATE(1952)] = 80630, - [SMALL_STATE(1953)] = 80693, - [SMALL_STATE(1954)] = 80784, - [SMALL_STATE(1955)] = 80875, - [SMALL_STATE(1956)] = 80966, - [SMALL_STATE(1957)] = 81057, - [SMALL_STATE(1958)] = 81120, - [SMALL_STATE(1959)] = 81177, - [SMALL_STATE(1960)] = 81265, - [SMALL_STATE(1961)] = 81353, - [SMALL_STATE(1962)] = 81445, - [SMALL_STATE(1963)] = 81533, - [SMALL_STATE(1964)] = 81621, - [SMALL_STATE(1965)] = 81709, - [SMALL_STATE(1966)] = 81797, - [SMALL_STATE(1967)] = 81885, - [SMALL_STATE(1968)] = 81973, - [SMALL_STATE(1969)] = 82061, - [SMALL_STATE(1970)] = 82149, - [SMALL_STATE(1971)] = 82237, - [SMALL_STATE(1972)] = 82325, - [SMALL_STATE(1973)] = 82413, - [SMALL_STATE(1974)] = 82501, - [SMALL_STATE(1975)] = 82589, - [SMALL_STATE(1976)] = 82677, - [SMALL_STATE(1977)] = 82765, - [SMALL_STATE(1978)] = 82857, - [SMALL_STATE(1979)] = 82945, - [SMALL_STATE(1980)] = 83049, - [SMALL_STATE(1981)] = 83137, - [SMALL_STATE(1982)] = 83225, - [SMALL_STATE(1983)] = 83313, - [SMALL_STATE(1984)] = 83401, - [SMALL_STATE(1985)] = 83489, - [SMALL_STATE(1986)] = 83577, - [SMALL_STATE(1987)] = 83665, - [SMALL_STATE(1988)] = 83753, - [SMALL_STATE(1989)] = 83841, - [SMALL_STATE(1990)] = 83929, - [SMALL_STATE(1991)] = 84017, - [SMALL_STATE(1992)] = 84109, - [SMALL_STATE(1993)] = 84197, - [SMALL_STATE(1994)] = 84285, - [SMALL_STATE(1995)] = 84373, - [SMALL_STATE(1996)] = 84465, - [SMALL_STATE(1997)] = 84553, - [SMALL_STATE(1998)] = 84641, - [SMALL_STATE(1999)] = 84729, - [SMALL_STATE(2000)] = 84817, - [SMALL_STATE(2001)] = 84905, - [SMALL_STATE(2002)] = 84993, - [SMALL_STATE(2003)] = 85081, - [SMALL_STATE(2004)] = 85173, - [SMALL_STATE(2005)] = 85261, - [SMALL_STATE(2006)] = 85353, - [SMALL_STATE(2007)] = 85441, - [SMALL_STATE(2008)] = 85529, - [SMALL_STATE(2009)] = 85617, - [SMALL_STATE(2010)] = 85705, - [SMALL_STATE(2011)] = 85793, - [SMALL_STATE(2012)] = 85885, - [SMALL_STATE(2013)] = 85973, - [SMALL_STATE(2014)] = 86061, - [SMALL_STATE(2015)] = 86149, - [SMALL_STATE(2016)] = 86237, - [SMALL_STATE(2017)] = 86329, - [SMALL_STATE(2018)] = 86417, - [SMALL_STATE(2019)] = 86509, - [SMALL_STATE(2020)] = 86601, - [SMALL_STATE(2021)] = 86693, - [SMALL_STATE(2022)] = 86785, - [SMALL_STATE(2023)] = 86877, - [SMALL_STATE(2024)] = 86969, - [SMALL_STATE(2025)] = 87061, - [SMALL_STATE(2026)] = 87153, - [SMALL_STATE(2027)] = 87245, - [SMALL_STATE(2028)] = 87337, - [SMALL_STATE(2029)] = 87425, - [SMALL_STATE(2030)] = 87513, - [SMALL_STATE(2031)] = 87601, - [SMALL_STATE(2032)] = 87689, - [SMALL_STATE(2033)] = 87777, - [SMALL_STATE(2034)] = 87865, - [SMALL_STATE(2035)] = 87953, - [SMALL_STATE(2036)] = 88057, - [SMALL_STATE(2037)] = 88149, - [SMALL_STATE(2038)] = 88237, - [SMALL_STATE(2039)] = 88325, - [SMALL_STATE(2040)] = 88413, - [SMALL_STATE(2041)] = 88517, - [SMALL_STATE(2042)] = 88605, - [SMALL_STATE(2043)] = 88693, - [SMALL_STATE(2044)] = 88781, - [SMALL_STATE(2045)] = 88869, - [SMALL_STATE(2046)] = 88961, - [SMALL_STATE(2047)] = 89049, - [SMALL_STATE(2048)] = 89141, - [SMALL_STATE(2049)] = 89229, - [SMALL_STATE(2050)] = 89333, - [SMALL_STATE(2051)] = 89421, - [SMALL_STATE(2052)] = 89509, - [SMALL_STATE(2053)] = 89597, - [SMALL_STATE(2054)] = 89685, - [SMALL_STATE(2055)] = 89773, - [SMALL_STATE(2056)] = 89877, - [SMALL_STATE(2057)] = 89965, - [SMALL_STATE(2058)] = 90053, - [SMALL_STATE(2059)] = 90141, - [SMALL_STATE(2060)] = 90233, - [SMALL_STATE(2061)] = 90325, - [SMALL_STATE(2062)] = 90413, - [SMALL_STATE(2063)] = 90501, - [SMALL_STATE(2064)] = 90589, - [SMALL_STATE(2065)] = 90677, - [SMALL_STATE(2066)] = 90765, - [SMALL_STATE(2067)] = 90853, - [SMALL_STATE(2068)] = 90954, - [SMALL_STATE(2069)] = 91055, - [SMALL_STATE(2070)] = 91156, - [SMALL_STATE(2071)] = 91257, - [SMALL_STATE(2072)] = 91356, - [SMALL_STATE(2073)] = 91455, - [SMALL_STATE(2074)] = 91554, - [SMALL_STATE(2075)] = 91653, - [SMALL_STATE(2076)] = 91752, - [SMALL_STATE(2077)] = 91851, - [SMALL_STATE(2078)] = 91950, - [SMALL_STATE(2079)] = 92049, - [SMALL_STATE(2080)] = 92148, - [SMALL_STATE(2081)] = 92247, - [SMALL_STATE(2082)] = 92346, - [SMALL_STATE(2083)] = 92442, - [SMALL_STATE(2084)] = 92538, - [SMALL_STATE(2085)] = 92634, - [SMALL_STATE(2086)] = 92730, - [SMALL_STATE(2087)] = 92826, - [SMALL_STATE(2088)] = 92922, - [SMALL_STATE(2089)] = 93018, - [SMALL_STATE(2090)] = 93114, - [SMALL_STATE(2091)] = 93210, - [SMALL_STATE(2092)] = 93298, - [SMALL_STATE(2093)] = 93394, - [SMALL_STATE(2094)] = 93482, - [SMALL_STATE(2095)] = 93552, - [SMALL_STATE(2096)] = 93624, - [SMALL_STATE(2097)] = 93678, - [SMALL_STATE(2098)] = 93732, - [SMALL_STATE(2099)] = 93786, - [SMALL_STATE(2100)] = 93848, - [SMALL_STATE(2101)] = 93902, - [SMALL_STATE(2102)] = 93975, - [SMALL_STATE(2103)] = 94038, - [SMALL_STATE(2104)] = 94097, - [SMALL_STATE(2105)] = 94156, - [SMALL_STATE(2106)] = 94221, - [SMALL_STATE(2107)] = 94290, - [SMALL_STATE(2108)] = 94361, - [SMALL_STATE(2109)] = 94446, - [SMALL_STATE(2110)] = 94501, - [SMALL_STATE(2111)] = 94560, - [SMALL_STATE(2112)] = 94645, - [SMALL_STATE(2113)] = 94712, - [SMALL_STATE(2114)] = 94783, - [SMALL_STATE(2115)] = 94868, - [SMALL_STATE(2116)] = 94939, - [SMALL_STATE(2117)] = 95024, - [SMALL_STATE(2118)] = 95109, - [SMALL_STATE(2119)] = 95168, - [SMALL_STATE(2120)] = 95253, - [SMALL_STATE(2121)] = 95337, - [SMALL_STATE(2122)] = 95419, - [SMALL_STATE(2123)] = 95503, - [SMALL_STATE(2124)] = 95551, - [SMALL_STATE(2125)] = 95601, - [SMALL_STATE(2126)] = 95651, - [SMALL_STATE(2127)] = 95699, - [SMALL_STATE(2128)] = 95783, - [SMALL_STATE(2129)] = 95867, - [SMALL_STATE(2130)] = 95914, - [SMALL_STATE(2131)] = 95961, - [SMALL_STATE(2132)] = 96012, - [SMALL_STATE(2133)] = 96059, - [SMALL_STATE(2134)] = 96106, - [SMALL_STATE(2135)] = 96153, - [SMALL_STATE(2136)] = 96200, - [SMALL_STATE(2137)] = 96247, - [SMALL_STATE(2138)] = 96294, - [SMALL_STATE(2139)] = 96341, - [SMALL_STATE(2140)] = 96388, - [SMALL_STATE(2141)] = 96435, - [SMALL_STATE(2142)] = 96482, - [SMALL_STATE(2143)] = 96529, - [SMALL_STATE(2144)] = 96580, - [SMALL_STATE(2145)] = 96631, - [SMALL_STATE(2146)] = 96678, - [SMALL_STATE(2147)] = 96725, - [SMALL_STATE(2148)] = 96772, - [SMALL_STATE(2149)] = 96819, - [SMALL_STATE(2150)] = 96870, - [SMALL_STATE(2151)] = 96921, - [SMALL_STATE(2152)] = 96968, - [SMALL_STATE(2153)] = 97019, - [SMALL_STATE(2154)] = 97070, - [SMALL_STATE(2155)] = 97117, - [SMALL_STATE(2156)] = 97164, - [SMALL_STATE(2157)] = 97211, - [SMALL_STATE(2158)] = 97278, - [SMALL_STATE(2159)] = 97325, - [SMALL_STATE(2160)] = 97372, - [SMALL_STATE(2161)] = 97419, - [SMALL_STATE(2162)] = 97466, - [SMALL_STATE(2163)] = 97517, - [SMALL_STATE(2164)] = 97564, - [SMALL_STATE(2165)] = 97611, - [SMALL_STATE(2166)] = 97696, - [SMALL_STATE(2167)] = 97743, - [SMALL_STATE(2168)] = 97790, - [SMALL_STATE(2169)] = 97845, - [SMALL_STATE(2170)] = 97892, - [SMALL_STATE(2171)] = 97945, - [SMALL_STATE(2172)] = 97996, - [SMALL_STATE(2173)] = 98043, - [SMALL_STATE(2174)] = 98092, - [SMALL_STATE(2175)] = 98147, - [SMALL_STATE(2176)] = 98202, - [SMALL_STATE(2177)] = 98261, - [SMALL_STATE(2178)] = 98342, - [SMALL_STATE(2179)] = 98393, - [SMALL_STATE(2180)] = 98452, - [SMALL_STATE(2181)] = 98503, - [SMALL_STATE(2182)] = 98562, - [SMALL_STATE(2183)] = 98613, - [SMALL_STATE(2184)] = 98664, - [SMALL_STATE(2185)] = 98711, - [SMALL_STATE(2186)] = 98758, - [SMALL_STATE(2187)] = 98805, - [SMALL_STATE(2188)] = 98852, - [SMALL_STATE(2189)] = 98899, - [SMALL_STATE(2190)] = 98946, - [SMALL_STATE(2191)] = 98993, - [SMALL_STATE(2192)] = 99044, - [SMALL_STATE(2193)] = 99091, - [SMALL_STATE(2194)] = 99142, - [SMALL_STATE(2195)] = 99189, - [SMALL_STATE(2196)] = 99270, - [SMALL_STATE(2197)] = 99317, - [SMALL_STATE(2198)] = 99397, - [SMALL_STATE(2199)] = 99453, - [SMALL_STATE(2200)] = 99519, - [SMALL_STATE(2201)] = 99583, - [SMALL_STATE(2202)] = 99643, - [SMALL_STATE(2203)] = 99693, - [SMALL_STATE(2204)] = 99749, - [SMALL_STATE(2205)] = 99817, - [SMALL_STATE(2206)] = 99883, - [SMALL_STATE(2207)] = 99933, - [SMALL_STATE(2208)] = 99989, - [SMALL_STATE(2209)] = 100069, - [SMALL_STATE(2210)] = 100149, - [SMALL_STATE(2211)] = 100213, - [SMALL_STATE(2212)] = 100271, - [SMALL_STATE(2213)] = 100327, - [SMALL_STATE(2214)] = 100383, - [SMALL_STATE(2215)] = 100445, - [SMALL_STATE(2216)] = 100495, - [SMALL_STATE(2217)] = 100565, - [SMALL_STATE(2218)] = 100621, - [SMALL_STATE(2219)] = 100683, - [SMALL_STATE(2220)] = 100735, - [SMALL_STATE(2221)] = 100815, - [SMALL_STATE(2222)] = 100895, - [SMALL_STATE(2223)] = 100953, - [SMALL_STATE(2224)] = 101003, - [SMALL_STATE(2225)] = 101055, - [SMALL_STATE(2226)] = 101105, - [SMALL_STATE(2227)] = 101161, - [SMALL_STATE(2228)] = 101213, - [SMALL_STATE(2229)] = 101269, - [SMALL_STATE(2230)] = 101319, - [SMALL_STATE(2231)] = 101389, - [SMALL_STATE(2232)] = 101449, - [SMALL_STATE(2233)] = 101517, - [SMALL_STATE(2234)] = 101579, - [SMALL_STATE(2235)] = 101639, - [SMALL_STATE(2236)] = 101707, - [SMALL_STATE(2237)] = 101757, - [SMALL_STATE(2238)] = 101823, - [SMALL_STATE(2239)] = 101887, - [SMALL_STATE(2240)] = 101943, - [SMALL_STATE(2241)] = 102013, - [SMALL_STATE(2242)] = 102069, - [SMALL_STATE(2243)] = 102119, - [SMALL_STATE(2244)] = 102175, - [SMALL_STATE(2245)] = 102231, - [SMALL_STATE(2246)] = 102276, - [SMALL_STATE(2247)] = 102321, - [SMALL_STATE(2248)] = 102380, - [SMALL_STATE(2249)] = 102427, - [SMALL_STATE(2250)] = 102496, - [SMALL_STATE(2251)] = 102561, - [SMALL_STATE(2252)] = 102608, - [SMALL_STATE(2253)] = 102653, - [SMALL_STATE(2254)] = 102704, - [SMALL_STATE(2255)] = 102753, - [SMALL_STATE(2256)] = 102802, - [SMALL_STATE(2257)] = 102853, - [SMALL_STATE(2258)] = 102902, - [SMALL_STATE(2259)] = 102963, - [SMALL_STATE(2260)] = 103018, - [SMALL_STATE(2261)] = 103069, - [SMALL_STATE(2262)] = 103132, - [SMALL_STATE(2263)] = 103179, - [SMALL_STATE(2264)] = 103248, - [SMALL_STATE(2265)] = 103315, - [SMALL_STATE(2266)] = 103364, - [SMALL_STATE(2267)] = 103413, - [SMALL_STATE(2268)] = 103468, - [SMALL_STATE(2269)] = 103527, - [SMALL_STATE(2270)] = 103582, - [SMALL_STATE(2271)] = 103629, - [SMALL_STATE(2272)] = 103674, - [SMALL_STATE(2273)] = 103719, - [SMALL_STATE(2274)] = 103768, - [SMALL_STATE(2275)] = 103823, - [SMALL_STATE(2276)] = 103868, - [SMALL_STATE(2277)] = 103925, - [SMALL_STATE(2278)] = 103992, - [SMALL_STATE(2279)] = 104041, - [SMALL_STATE(2280)] = 104090, - [SMALL_STATE(2281)] = 104169, - [SMALL_STATE(2282)] = 104224, - [SMALL_STATE(2283)] = 104271, - [SMALL_STATE(2284)] = 104316, - [SMALL_STATE(2285)] = 104371, - [SMALL_STATE(2286)] = 104416, - [SMALL_STATE(2287)] = 104463, - [SMALL_STATE(2288)] = 104518, - [SMALL_STATE(2289)] = 104563, - [SMALL_STATE(2290)] = 104642, - [SMALL_STATE(2291)] = 104705, - [SMALL_STATE(2292)] = 104784, - [SMALL_STATE(2293)] = 104833, - [SMALL_STATE(2294)] = 104878, - [SMALL_STATE(2295)] = 104943, - [SMALL_STATE(2296)] = 105004, - [SMALL_STATE(2297)] = 105049, - [SMALL_STATE(2298)] = 105094, - [SMALL_STATE(2299)] = 105145, - [SMALL_STATE(2300)] = 105224, - [SMALL_STATE(2301)] = 105275, - [SMALL_STATE(2302)] = 105354, - [SMALL_STATE(2303)] = 105433, - [SMALL_STATE(2304)] = 105488, - [SMALL_STATE(2305)] = 105533, - [SMALL_STATE(2306)] = 105582, - [SMALL_STATE(2307)] = 105636, - [SMALL_STATE(2308)] = 105684, - [SMALL_STATE(2309)] = 105728, - [SMALL_STATE(2310)] = 105772, - [SMALL_STATE(2311)] = 105816, - [SMALL_STATE(2312)] = 105860, - [SMALL_STATE(2313)] = 105904, - [SMALL_STATE(2314)] = 105948, - [SMALL_STATE(2315)] = 105992, - [SMALL_STATE(2316)] = 106036, - [SMALL_STATE(2317)] = 106080, - [SMALL_STATE(2318)] = 106124, - [SMALL_STATE(2319)] = 106168, - [SMALL_STATE(2320)] = 106212, - [SMALL_STATE(2321)] = 106256, - [SMALL_STATE(2322)] = 106300, - [SMALL_STATE(2323)] = 106344, - [SMALL_STATE(2324)] = 106388, - [SMALL_STATE(2325)] = 106432, - [SMALL_STATE(2326)] = 106476, - [SMALL_STATE(2327)] = 106520, - [SMALL_STATE(2328)] = 106564, - [SMALL_STATE(2329)] = 106608, - [SMALL_STATE(2330)] = 106652, - [SMALL_STATE(2331)] = 106696, - [SMALL_STATE(2332)] = 106740, - [SMALL_STATE(2333)] = 106784, - [SMALL_STATE(2334)] = 106828, - [SMALL_STATE(2335)] = 106872, - [SMALL_STATE(2336)] = 106920, - [SMALL_STATE(2337)] = 106964, - [SMALL_STATE(2338)] = 107016, - [SMALL_STATE(2339)] = 107060, - [SMALL_STATE(2340)] = 107104, - [SMALL_STATE(2341)] = 107148, - [SMALL_STATE(2342)] = 107192, - [SMALL_STATE(2343)] = 107236, - [SMALL_STATE(2344)] = 107280, - [SMALL_STATE(2345)] = 107324, - [SMALL_STATE(2346)] = 107368, - [SMALL_STATE(2347)] = 107412, - [SMALL_STATE(2348)] = 107456, - [SMALL_STATE(2349)] = 107500, - [SMALL_STATE(2350)] = 107544, - [SMALL_STATE(2351)] = 107594, - [SMALL_STATE(2352)] = 107642, - [SMALL_STATE(2353)] = 107688, - [SMALL_STATE(2354)] = 107740, - [SMALL_STATE(2355)] = 107784, - [SMALL_STATE(2356)] = 107828, - [SMALL_STATE(2357)] = 107880, - [SMALL_STATE(2358)] = 107924, - [SMALL_STATE(2359)] = 107968, - [SMALL_STATE(2360)] = 108012, - [SMALL_STATE(2361)] = 108062, - [SMALL_STATE(2362)] = 108106, - [SMALL_STATE(2363)] = 108154, - [SMALL_STATE(2364)] = 108198, - [SMALL_STATE(2365)] = 108244, - [SMALL_STATE(2366)] = 108296, - [SMALL_STATE(2367)] = 108356, - [SMALL_STATE(2368)] = 108400, - [SMALL_STATE(2369)] = 108454, - [SMALL_STATE(2370)] = 108498, - [SMALL_STATE(2371)] = 108556, - [SMALL_STATE(2372)] = 108622, - [SMALL_STATE(2373)] = 108666, - [SMALL_STATE(2374)] = 108730, - [SMALL_STATE(2375)] = 108792, - [SMALL_STATE(2376)] = 108836, - [SMALL_STATE(2377)] = 108880, - [SMALL_STATE(2378)] = 108924, - [SMALL_STATE(2379)] = 108968, - [SMALL_STATE(2380)] = 109012, - [SMALL_STATE(2381)] = 109056, - [SMALL_STATE(2382)] = 109102, - [SMALL_STATE(2383)] = 109150, - [SMALL_STATE(2384)] = 109196, - [SMALL_STATE(2385)] = 109242, - [SMALL_STATE(2386)] = 109294, - [SMALL_STATE(2387)] = 109342, - [SMALL_STATE(2388)] = 109386, - [SMALL_STATE(2389)] = 109430, - [SMALL_STATE(2390)] = 109474, - [SMALL_STATE(2391)] = 109518, - [SMALL_STATE(2392)] = 109562, - [SMALL_STATE(2393)] = 109606, - [SMALL_STATE(2394)] = 109650, - [SMALL_STATE(2395)] = 109694, - [SMALL_STATE(2396)] = 109738, - [SMALL_STATE(2397)] = 109788, - [SMALL_STATE(2398)] = 109832, - [SMALL_STATE(2399)] = 109884, - [SMALL_STATE(2400)] = 109928, - [SMALL_STATE(2401)] = 109972, - [SMALL_STATE(2402)] = 110016, - [SMALL_STATE(2403)] = 110060, - [SMALL_STATE(2404)] = 110108, - [SMALL_STATE(2405)] = 110152, - [SMALL_STATE(2406)] = 110196, - [SMALL_STATE(2407)] = 110240, - [SMALL_STATE(2408)] = 110284, - [SMALL_STATE(2409)] = 110328, - [SMALL_STATE(2410)] = 110376, - [SMALL_STATE(2411)] = 110424, - [SMALL_STATE(2412)] = 110468, - [SMALL_STATE(2413)] = 110512, - [SMALL_STATE(2414)] = 110590, - [SMALL_STATE(2415)] = 110638, - [SMALL_STATE(2416)] = 110682, - [SMALL_STATE(2417)] = 110726, - [SMALL_STATE(2418)] = 110770, - [SMALL_STATE(2419)] = 110814, - [SMALL_STATE(2420)] = 110858, - [SMALL_STATE(2421)] = 110902, - [SMALL_STATE(2422)] = 110946, - [SMALL_STATE(2423)] = 110990, - [SMALL_STATE(2424)] = 111044, - [SMALL_STATE(2425)] = 111088, - [SMALL_STATE(2426)] = 111142, - [SMALL_STATE(2427)] = 111186, - [SMALL_STATE(2428)] = 111238, - [SMALL_STATE(2429)] = 111282, - [SMALL_STATE(2430)] = 111332, - [SMALL_STATE(2431)] = 111380, - [SMALL_STATE(2432)] = 111424, - [SMALL_STATE(2433)] = 111470, - [SMALL_STATE(2434)] = 111522, - [SMALL_STATE(2435)] = 111574, - [SMALL_STATE(2436)] = 111622, - [SMALL_STATE(2437)] = 111670, - [SMALL_STATE(2438)] = 111714, - [SMALL_STATE(2439)] = 111758, - [SMALL_STATE(2440)] = 111806, - [SMALL_STATE(2441)] = 111854, - [SMALL_STATE(2442)] = 111898, - [SMALL_STATE(2443)] = 111942, - [SMALL_STATE(2444)] = 111986, - [SMALL_STATE(2445)] = 112036, - [SMALL_STATE(2446)] = 112084, - [SMALL_STATE(2447)] = 112128, - [SMALL_STATE(2448)] = 112172, - [SMALL_STATE(2449)] = 112220, - [SMALL_STATE(2450)] = 112264, - [SMALL_STATE(2451)] = 112320, - [SMALL_STATE(2452)] = 112364, - [SMALL_STATE(2453)] = 112408, - [SMALL_STATE(2454)] = 112456, - [SMALL_STATE(2455)] = 112502, - [SMALL_STATE(2456)] = 112552, - [SMALL_STATE(2457)] = 112598, - [SMALL_STATE(2458)] = 112648, - [SMALL_STATE(2459)] = 112692, - [SMALL_STATE(2460)] = 112736, - [SMALL_STATE(2461)] = 112780, - [SMALL_STATE(2462)] = 112824, - [SMALL_STATE(2463)] = 112868, - [SMALL_STATE(2464)] = 112912, - [SMALL_STATE(2465)] = 112956, - [SMALL_STATE(2466)] = 113000, - [SMALL_STATE(2467)] = 113044, - [SMALL_STATE(2468)] = 113088, - [SMALL_STATE(2469)] = 113132, - [SMALL_STATE(2470)] = 113178, - [SMALL_STATE(2471)] = 113222, - [SMALL_STATE(2472)] = 113266, - [SMALL_STATE(2473)] = 113310, - [SMALL_STATE(2474)] = 113354, - [SMALL_STATE(2475)] = 113400, - [SMALL_STATE(2476)] = 113444, - [SMALL_STATE(2477)] = 113488, - [SMALL_STATE(2478)] = 113534, - [SMALL_STATE(2479)] = 113578, - [SMALL_STATE(2480)] = 113622, - [SMALL_STATE(2481)] = 113670, - [SMALL_STATE(2482)] = 113714, - [SMALL_STATE(2483)] = 113760, - [SMALL_STATE(2484)] = 113804, - [SMALL_STATE(2485)] = 113848, - [SMALL_STATE(2486)] = 113892, - [SMALL_STATE(2487)] = 113936, - [SMALL_STATE(2488)] = 113980, - [SMALL_STATE(2489)] = 114024, - [SMALL_STATE(2490)] = 114068, - [SMALL_STATE(2491)] = 114136, - [SMALL_STATE(2492)] = 114180, - [SMALL_STATE(2493)] = 114223, - [SMALL_STATE(2494)] = 114274, - [SMALL_STATE(2495)] = 114317, - [SMALL_STATE(2496)] = 114360, - [SMALL_STATE(2497)] = 114405, - [SMALL_STATE(2498)] = 114448, - [SMALL_STATE(2499)] = 114499, - [SMALL_STATE(2500)] = 114544, - [SMALL_STATE(2501)] = 114591, - [SMALL_STATE(2502)] = 114634, - [SMALL_STATE(2503)] = 114687, - [SMALL_STATE(2504)] = 114730, - [SMALL_STATE(2505)] = 114775, - [SMALL_STATE(2506)] = 114818, - [SMALL_STATE(2507)] = 114879, - [SMALL_STATE(2508)] = 114922, - [SMALL_STATE(2509)] = 114965, - [SMALL_STATE(2510)] = 115016, - [SMALL_STATE(2511)] = 115059, - [SMALL_STATE(2512)] = 115106, - [SMALL_STATE(2513)] = 115149, - [SMALL_STATE(2514)] = 115192, - [SMALL_STATE(2515)] = 115271, - [SMALL_STATE(2516)] = 115314, - [SMALL_STATE(2517)] = 115357, - [SMALL_STATE(2518)] = 115402, - [SMALL_STATE(2519)] = 115445, - [SMALL_STATE(2520)] = 115488, - [SMALL_STATE(2521)] = 115531, - [SMALL_STATE(2522)] = 115574, - [SMALL_STATE(2523)] = 115617, - [SMALL_STATE(2524)] = 115660, - [SMALL_STATE(2525)] = 115703, - [SMALL_STATE(2526)] = 115746, - [SMALL_STATE(2527)] = 115789, - [SMALL_STATE(2528)] = 115856, - [SMALL_STATE(2529)] = 115899, - [SMALL_STATE(2530)] = 115946, - [SMALL_STATE(2531)] = 115989, - [SMALL_STATE(2532)] = 116036, - [SMALL_STATE(2533)] = 116081, - [SMALL_STATE(2534)] = 116134, - [SMALL_STATE(2535)] = 116177, - [SMALL_STATE(2536)] = 116224, - [SMALL_STATE(2537)] = 116267, - [SMALL_STATE(2538)] = 116314, - [SMALL_STATE(2539)] = 116359, - [SMALL_STATE(2540)] = 116402, - [SMALL_STATE(2541)] = 116453, - [SMALL_STATE(2542)] = 116498, - [SMALL_STATE(2543)] = 116541, - [SMALL_STATE(2544)] = 116584, - [SMALL_STATE(2545)] = 116629, - [SMALL_STATE(2546)] = 116672, - [SMALL_STATE(2547)] = 116715, - [SMALL_STATE(2548)] = 116758, - [SMALL_STATE(2549)] = 116807, - [SMALL_STATE(2550)] = 116852, - [SMALL_STATE(2551)] = 116895, - [SMALL_STATE(2552)] = 116944, - [SMALL_STATE(2553)] = 116987, - [SMALL_STATE(2554)] = 117030, - [SMALL_STATE(2555)] = 117073, - [SMALL_STATE(2556)] = 117120, - [SMALL_STATE(2557)] = 117163, - [SMALL_STATE(2558)] = 117208, - [SMALL_STATE(2559)] = 117253, - [SMALL_STATE(2560)] = 117296, - [SMALL_STATE(2561)] = 117347, - [SMALL_STATE(2562)] = 117396, - [SMALL_STATE(2563)] = 117439, - [SMALL_STATE(2564)] = 117482, - [SMALL_STATE(2565)] = 117525, - [SMALL_STATE(2566)] = 117572, - [SMALL_STATE(2567)] = 117615, - [SMALL_STATE(2568)] = 117658, - [SMALL_STATE(2569)] = 117703, - [SMALL_STATE(2570)] = 117746, - [SMALL_STATE(2571)] = 117793, - [SMALL_STATE(2572)] = 117840, - [SMALL_STATE(2573)] = 117885, - [SMALL_STATE(2574)] = 117936, - [SMALL_STATE(2575)] = 117979, - [SMALL_STATE(2576)] = 118022, - [SMALL_STATE(2577)] = 118069, - [SMALL_STATE(2578)] = 118114, - [SMALL_STATE(2579)] = 118157, - [SMALL_STATE(2580)] = 118200, - [SMALL_STATE(2581)] = 118243, - [SMALL_STATE(2582)] = 118288, - [SMALL_STATE(2583)] = 118333, - [SMALL_STATE(2584)] = 118384, - [SMALL_STATE(2585)] = 118427, - [SMALL_STATE(2586)] = 118470, - [SMALL_STATE(2587)] = 118513, - [SMALL_STATE(2588)] = 118566, - [SMALL_STATE(2589)] = 118645, - [SMALL_STATE(2590)] = 118702, - [SMALL_STATE(2591)] = 118745, - [SMALL_STATE(2592)] = 118810, - [SMALL_STATE(2593)] = 118855, - [SMALL_STATE(2594)] = 118898, - [SMALL_STATE(2595)] = 118941, - [SMALL_STATE(2596)] = 118990, - [SMALL_STATE(2597)] = 119053, - [SMALL_STATE(2598)] = 119096, - [SMALL_STATE(2599)] = 119139, - [SMALL_STATE(2600)] = 119182, - [SMALL_STATE(2601)] = 119225, - [SMALL_STATE(2602)] = 119270, - [SMALL_STATE(2603)] = 119315, - [SMALL_STATE(2604)] = 119358, - [SMALL_STATE(2605)] = 119401, - [SMALL_STATE(2606)] = 119444, - [SMALL_STATE(2607)] = 119497, - [SMALL_STATE(2608)] = 119540, - [SMALL_STATE(2609)] = 119583, - [SMALL_STATE(2610)] = 119626, - [SMALL_STATE(2611)] = 119669, - [SMALL_STATE(2612)] = 119728, - [SMALL_STATE(2613)] = 119771, - [SMALL_STATE(2614)] = 119814, - [SMALL_STATE(2615)] = 119861, - [SMALL_STATE(2616)] = 119904, - [SMALL_STATE(2617)] = 119947, - [SMALL_STATE(2618)] = 119990, - [SMALL_STATE(2619)] = 120035, - [SMALL_STATE(2620)] = 120080, - [SMALL_STATE(2621)] = 120123, - [SMALL_STATE(2622)] = 120166, - [SMALL_STATE(2623)] = 120209, - [SMALL_STATE(2624)] = 120254, - [SMALL_STATE(2625)] = 120297, - [SMALL_STATE(2626)] = 120340, - [SMALL_STATE(2627)] = 120383, - [SMALL_STATE(2628)] = 120426, - [SMALL_STATE(2629)] = 120469, - [SMALL_STATE(2630)] = 120512, - [SMALL_STATE(2631)] = 120555, - [SMALL_STATE(2632)] = 120598, - [SMALL_STATE(2633)] = 120641, - [SMALL_STATE(2634)] = 120683, - [SMALL_STATE(2635)] = 120727, - [SMALL_STATE(2636)] = 120771, - [SMALL_STATE(2637)] = 120815, - [SMALL_STATE(2638)] = 120859, - [SMALL_STATE(2639)] = 120903, - [SMALL_STATE(2640)] = 120947, - [SMALL_STATE(2641)] = 120991, - [SMALL_STATE(2642)] = 121035, - [SMALL_STATE(2643)] = 121077, - [SMALL_STATE(2644)] = 121119, - [SMALL_STATE(2645)] = 121161, - [SMALL_STATE(2646)] = 121203, - [SMALL_STATE(2647)] = 121245, - [SMALL_STATE(2648)] = 121287, - [SMALL_STATE(2649)] = 121329, - [SMALL_STATE(2650)] = 121371, - [SMALL_STATE(2651)] = 121417, - [SMALL_STATE(2652)] = 121459, - [SMALL_STATE(2653)] = 121501, - [SMALL_STATE(2654)] = 121543, - [SMALL_STATE(2655)] = 121585, - [SMALL_STATE(2656)] = 121627, - [SMALL_STATE(2657)] = 121669, - [SMALL_STATE(2658)] = 121711, - [SMALL_STATE(2659)] = 121753, - [SMALL_STATE(2660)] = 121795, - [SMALL_STATE(2661)] = 121837, - [SMALL_STATE(2662)] = 121885, - [SMALL_STATE(2663)] = 121927, - [SMALL_STATE(2664)] = 121969, - [SMALL_STATE(2665)] = 122011, - [SMALL_STATE(2666)] = 122053, - [SMALL_STATE(2667)] = 122095, - [SMALL_STATE(2668)] = 122137, - [SMALL_STATE(2669)] = 122179, - [SMALL_STATE(2670)] = 122221, - [SMALL_STATE(2671)] = 122263, - [SMALL_STATE(2672)] = 122305, - [SMALL_STATE(2673)] = 122347, - [SMALL_STATE(2674)] = 122389, - [SMALL_STATE(2675)] = 122431, - [SMALL_STATE(2676)] = 122473, - [SMALL_STATE(2677)] = 122515, - [SMALL_STATE(2678)] = 122557, - [SMALL_STATE(2679)] = 122599, - [SMALL_STATE(2680)] = 122641, - [SMALL_STATE(2681)] = 122683, - [SMALL_STATE(2682)] = 122725, - [SMALL_STATE(2683)] = 122767, - [SMALL_STATE(2684)] = 122809, - [SMALL_STATE(2685)] = 122851, - [SMALL_STATE(2686)] = 122897, - [SMALL_STATE(2687)] = 122951, - [SMALL_STATE(2688)] = 123001, - [SMALL_STATE(2689)] = 123049, - [SMALL_STATE(2690)] = 123095, - [SMALL_STATE(2691)] = 123139, - [SMALL_STATE(2692)] = 123189, - [SMALL_STATE(2693)] = 123239, - [SMALL_STATE(2694)] = 123281, - [SMALL_STATE(2695)] = 123322, - [SMALL_STATE(2696)] = 123363, - [SMALL_STATE(2697)] = 123404, - [SMALL_STATE(2698)] = 123445, - [SMALL_STATE(2699)] = 123486, - [SMALL_STATE(2700)] = 123527, - [SMALL_STATE(2701)] = 123568, - [SMALL_STATE(2702)] = 123609, - [SMALL_STATE(2703)] = 123686, - [SMALL_STATE(2704)] = 123727, - [SMALL_STATE(2705)] = 123768, - [SMALL_STATE(2706)] = 123813, - [SMALL_STATE(2707)] = 123854, - [SMALL_STATE(2708)] = 123895, - [SMALL_STATE(2709)] = 123936, - [SMALL_STATE(2710)] = 123977, - [SMALL_STATE(2711)] = 124018, - [SMALL_STATE(2712)] = 124059, - [SMALL_STATE(2713)] = 124100, - [SMALL_STATE(2714)] = 124143, - [SMALL_STATE(2715)] = 124186, - [SMALL_STATE(2716)] = 124227, - [SMALL_STATE(2717)] = 124270, - [SMALL_STATE(2718)] = 124311, - [SMALL_STATE(2719)] = 124354, - [SMALL_STATE(2720)] = 124395, - [SMALL_STATE(2721)] = 124436, - [SMALL_STATE(2722)] = 124477, - [SMALL_STATE(2723)] = 124518, - [SMALL_STATE(2724)] = 124559, - [SMALL_STATE(2725)] = 124600, - [SMALL_STATE(2726)] = 124641, - [SMALL_STATE(2727)] = 124686, - [SMALL_STATE(2728)] = 124727, - [SMALL_STATE(2729)] = 124776, - [SMALL_STATE(2730)] = 124817, - [SMALL_STATE(2731)] = 124858, - [SMALL_STATE(2732)] = 124899, - [SMALL_STATE(2733)] = 124940, - [SMALL_STATE(2734)] = 124981, - [SMALL_STATE(2735)] = 125022, - [SMALL_STATE(2736)] = 125063, - [SMALL_STATE(2737)] = 125142, - [SMALL_STATE(2738)] = 125183, - [SMALL_STATE(2739)] = 125224, - [SMALL_STATE(2740)] = 125265, - [SMALL_STATE(2741)] = 125306, - [SMALL_STATE(2742)] = 125347, - [SMALL_STATE(2743)] = 125388, - [SMALL_STATE(2744)] = 125429, - [SMALL_STATE(2745)] = 125508, - [SMALL_STATE(2746)] = 125551, - [SMALL_STATE(2747)] = 125592, - [SMALL_STATE(2748)] = 125633, - [SMALL_STATE(2749)] = 125674, - [SMALL_STATE(2750)] = 125753, - [SMALL_STATE(2751)] = 125796, - [SMALL_STATE(2752)] = 125845, - [SMALL_STATE(2753)] = 125892, - [SMALL_STATE(2754)] = 125937, - [SMALL_STATE(2755)] = 125980, - [SMALL_STATE(2756)] = 126029, - [SMALL_STATE(2757)] = 126078, - [SMALL_STATE(2758)] = 126119, - [SMALL_STATE(2759)] = 126160, - [SMALL_STATE(2760)] = 126201, - [SMALL_STATE(2761)] = 126242, - [SMALL_STATE(2762)] = 126283, - [SMALL_STATE(2763)] = 126324, - [SMALL_STATE(2764)] = 126403, - [SMALL_STATE(2765)] = 126482, - [SMALL_STATE(2766)] = 126561, - [SMALL_STATE(2767)] = 126646, - [SMALL_STATE(2768)] = 126725, - [SMALL_STATE(2769)] = 126804, - [SMALL_STATE(2770)] = 126883, - [SMALL_STATE(2771)] = 126962, - [SMALL_STATE(2772)] = 127041, - [SMALL_STATE(2773)] = 127120, - [SMALL_STATE(2774)] = 127199, - [SMALL_STATE(2775)] = 127278, - [SMALL_STATE(2776)] = 127357, - [SMALL_STATE(2777)] = 127436, - [SMALL_STATE(2778)] = 127515, - [SMALL_STATE(2779)] = 127594, - [SMALL_STATE(2780)] = 127673, - [SMALL_STATE(2781)] = 127752, - [SMALL_STATE(2782)] = 127831, - [SMALL_STATE(2783)] = 127872, - [SMALL_STATE(2784)] = 127951, - [SMALL_STATE(2785)] = 128030, - [SMALL_STATE(2786)] = 128107, - [SMALL_STATE(2787)] = 128150, - [SMALL_STATE(2788)] = 128222, - [SMALL_STATE(2789)] = 128294, - [SMALL_STATE(2790)] = 128338, - [SMALL_STATE(2791)] = 128410, - [SMALL_STATE(2792)] = 128482, - [SMALL_STATE(2793)] = 128558, - [SMALL_STATE(2794)] = 128630, - [SMALL_STATE(2795)] = 128702, - [SMALL_STATE(2796)] = 128774, - [SMALL_STATE(2797)] = 128845, - [SMALL_STATE(2798)] = 128916, - [SMALL_STATE(2799)] = 128987, - [SMALL_STATE(2800)] = 129058, - [SMALL_STATE(2801)] = 129129, - [SMALL_STATE(2802)] = 129200, - [SMALL_STATE(2803)] = 129273, - [SMALL_STATE(2804)] = 129344, - [SMALL_STATE(2805)] = 129415, - [SMALL_STATE(2806)] = 129488, - [SMALL_STATE(2807)] = 129559, - [SMALL_STATE(2808)] = 129630, - [SMALL_STATE(2809)] = 129701, - [SMALL_STATE(2810)] = 129774, - [SMALL_STATE(2811)] = 129845, - [SMALL_STATE(2812)] = 129916, - [SMALL_STATE(2813)] = 129987, - [SMALL_STATE(2814)] = 130058, - [SMALL_STATE(2815)] = 130129, - [SMALL_STATE(2816)] = 130200, - [SMALL_STATE(2817)] = 130271, - [SMALL_STATE(2818)] = 130342, - [SMALL_STATE(2819)] = 130413, - [SMALL_STATE(2820)] = 130484, - [SMALL_STATE(2821)] = 130555, - [SMALL_STATE(2822)] = 130626, - [SMALL_STATE(2823)] = 130697, - [SMALL_STATE(2824)] = 130768, - [SMALL_STATE(2825)] = 130839, - [SMALL_STATE(2826)] = 130910, - [SMALL_STATE(2827)] = 130981, - [SMALL_STATE(2828)] = 131052, - [SMALL_STATE(2829)] = 131123, - [SMALL_STATE(2830)] = 131194, - [SMALL_STATE(2831)] = 131267, - [SMALL_STATE(2832)] = 131338, - [SMALL_STATE(2833)] = 131411, - [SMALL_STATE(2834)] = 131484, - [SMALL_STATE(2835)] = 131557, - [SMALL_STATE(2836)] = 131628, - [SMALL_STATE(2837)] = 131699, - [SMALL_STATE(2838)] = 131770, - [SMALL_STATE(2839)] = 131841, - [SMALL_STATE(2840)] = 131879, - [SMALL_STATE(2841)] = 131949, - [SMALL_STATE(2842)] = 131987, - [SMALL_STATE(2843)] = 132057, - [SMALL_STATE(2844)] = 132125, - [SMALL_STATE(2845)] = 132195, - [SMALL_STATE(2846)] = 132233, - [SMALL_STATE(2847)] = 132303, - [SMALL_STATE(2848)] = 132341, - [SMALL_STATE(2849)] = 132409, - [SMALL_STATE(2850)] = 132477, - [SMALL_STATE(2851)] = 132515, - [SMALL_STATE(2852)] = 132583, - [SMALL_STATE(2853)] = 132651, - [SMALL_STATE(2854)] = 132719, - [SMALL_STATE(2855)] = 132789, - [SMALL_STATE(2856)] = 132859, - [SMALL_STATE(2857)] = 132929, - [SMALL_STATE(2858)] = 132997, - [SMALL_STATE(2859)] = 133067, - [SMALL_STATE(2860)] = 133137, - [SMALL_STATE(2861)] = 133205, - [SMALL_STATE(2862)] = 133243, - [SMALL_STATE(2863)] = 133311, - [SMALL_STATE(2864)] = 133376, - [SMALL_STATE(2865)] = 133415, - [SMALL_STATE(2866)] = 133452, - [SMALL_STATE(2867)] = 133489, - [SMALL_STATE(2868)] = 133526, - [SMALL_STATE(2869)] = 133563, - [SMALL_STATE(2870)] = 133600, - [SMALL_STATE(2871)] = 133637, - [SMALL_STATE(2872)] = 133674, - [SMALL_STATE(2873)] = 133711, - [SMALL_STATE(2874)] = 133748, - [SMALL_STATE(2875)] = 133785, - [SMALL_STATE(2876)] = 133822, - [SMALL_STATE(2877)] = 133861, - [SMALL_STATE(2878)] = 133898, - [SMALL_STATE(2879)] = 133935, - [SMALL_STATE(2880)] = 133972, - [SMALL_STATE(2881)] = 134009, - [SMALL_STATE(2882)] = 134046, - [SMALL_STATE(2883)] = 134083, - [SMALL_STATE(2884)] = 134120, - [SMALL_STATE(2885)] = 134157, - [SMALL_STATE(2886)] = 134194, - [SMALL_STATE(2887)] = 134231, - [SMALL_STATE(2888)] = 134268, - [SMALL_STATE(2889)] = 134305, - [SMALL_STATE(2890)] = 134342, - [SMALL_STATE(2891)] = 134379, - [SMALL_STATE(2892)] = 134418, - [SMALL_STATE(2893)] = 134455, - [SMALL_STATE(2894)] = 134492, - [SMALL_STATE(2895)] = 134529, - [SMALL_STATE(2896)] = 134566, - [SMALL_STATE(2897)] = 134603, - [SMALL_STATE(2898)] = 134640, - [SMALL_STATE(2899)] = 134677, - [SMALL_STATE(2900)] = 134714, - [SMALL_STATE(2901)] = 134751, - [SMALL_STATE(2902)] = 134788, - [SMALL_STATE(2903)] = 134825, - [SMALL_STATE(2904)] = 134862, - [SMALL_STATE(2905)] = 134899, - [SMALL_STATE(2906)] = 134936, - [SMALL_STATE(2907)] = 134973, - [SMALL_STATE(2908)] = 135010, - [SMALL_STATE(2909)] = 135047, - [SMALL_STATE(2910)] = 135084, - [SMALL_STATE(2911)] = 135121, - [SMALL_STATE(2912)] = 135158, - [SMALL_STATE(2913)] = 135195, - [SMALL_STATE(2914)] = 135232, - [SMALL_STATE(2915)] = 135269, - [SMALL_STATE(2916)] = 135306, - [SMALL_STATE(2917)] = 135343, - [SMALL_STATE(2918)] = 135410, - [SMALL_STATE(2919)] = 135477, - [SMALL_STATE(2920)] = 135514, - [SMALL_STATE(2921)] = 135551, - [SMALL_STATE(2922)] = 135588, - [SMALL_STATE(2923)] = 135657, - [SMALL_STATE(2924)] = 135694, - [SMALL_STATE(2925)] = 135731, - [SMALL_STATE(2926)] = 135798, - [SMALL_STATE(2927)] = 135867, - [SMALL_STATE(2928)] = 135936, - [SMALL_STATE(2929)] = 135973, - [SMALL_STATE(2930)] = 136010, - [SMALL_STATE(2931)] = 136079, - [SMALL_STATE(2932)] = 136148, - [SMALL_STATE(2933)] = 136185, - [SMALL_STATE(2934)] = 136222, - [SMALL_STATE(2935)] = 136261, - [SMALL_STATE(2936)] = 136298, - [SMALL_STATE(2937)] = 136337, - [SMALL_STATE(2938)] = 136406, - [SMALL_STATE(2939)] = 136475, - [SMALL_STATE(2940)] = 136512, - [SMALL_STATE(2941)] = 136579, - [SMALL_STATE(2942)] = 136616, - [SMALL_STATE(2943)] = 136685, - [SMALL_STATE(2944)] = 136722, - [SMALL_STATE(2945)] = 136759, - [SMALL_STATE(2946)] = 136796, - [SMALL_STATE(2947)] = 136833, - [SMALL_STATE(2948)] = 136900, - [SMALL_STATE(2949)] = 136937, - [SMALL_STATE(2950)] = 137002, - [SMALL_STATE(2951)] = 137071, - [SMALL_STATE(2952)] = 137140, - [SMALL_STATE(2953)] = 137209, - [SMALL_STATE(2954)] = 137248, - [SMALL_STATE(2955)] = 137317, - [SMALL_STATE(2956)] = 137386, - [SMALL_STATE(2957)] = 137423, - [SMALL_STATE(2958)] = 137460, - [SMALL_STATE(2959)] = 137499, - [SMALL_STATE(2960)] = 137568, - [SMALL_STATE(2961)] = 137637, - [SMALL_STATE(2962)] = 137706, - [SMALL_STATE(2963)] = 137775, - [SMALL_STATE(2964)] = 137844, - [SMALL_STATE(2965)] = 137913, - [SMALL_STATE(2966)] = 137982, - [SMALL_STATE(2967)] = 138019, - [SMALL_STATE(2968)] = 138056, - [SMALL_STATE(2969)] = 138093, - [SMALL_STATE(2970)] = 138130, - [SMALL_STATE(2971)] = 138167, - [SMALL_STATE(2972)] = 138204, - [SMALL_STATE(2973)] = 138241, - [SMALL_STATE(2974)] = 138278, - [SMALL_STATE(2975)] = 138315, - [SMALL_STATE(2976)] = 138352, - [SMALL_STATE(2977)] = 138389, - [SMALL_STATE(2978)] = 138426, - [SMALL_STATE(2979)] = 138463, - [SMALL_STATE(2980)] = 138528, - [SMALL_STATE(2981)] = 138595, - [SMALL_STATE(2982)] = 138634, - [SMALL_STATE(2983)] = 138671, - [SMALL_STATE(2984)] = 138707, - [SMALL_STATE(2985)] = 138743, - [SMALL_STATE(2986)] = 138779, - [SMALL_STATE(2987)] = 138815, - [SMALL_STATE(2988)] = 138851, - [SMALL_STATE(2989)] = 138887, - [SMALL_STATE(2990)] = 138923, - [SMALL_STATE(2991)] = 138959, - [SMALL_STATE(2992)] = 138997, - [SMALL_STATE(2993)] = 139033, - [SMALL_STATE(2994)] = 139069, - [SMALL_STATE(2995)] = 139105, - [SMALL_STATE(2996)] = 139141, - [SMALL_STATE(2997)] = 139177, - [SMALL_STATE(2998)] = 139213, - [SMALL_STATE(2999)] = 139249, - [SMALL_STATE(3000)] = 139285, - [SMALL_STATE(3001)] = 139321, - [SMALL_STATE(3002)] = 139357, - [SMALL_STATE(3003)] = 139419, - [SMALL_STATE(3004)] = 139455, - [SMALL_STATE(3005)] = 139491, - [SMALL_STATE(3006)] = 139527, - [SMALL_STATE(3007)] = 139563, - [SMALL_STATE(3008)] = 139599, - [SMALL_STATE(3009)] = 139635, - [SMALL_STATE(3010)] = 139671, - [SMALL_STATE(3011)] = 139707, - [SMALL_STATE(3012)] = 139743, - [SMALL_STATE(3013)] = 139779, - [SMALL_STATE(3014)] = 139815, - [SMALL_STATE(3015)] = 139851, - [SMALL_STATE(3016)] = 139887, - [SMALL_STATE(3017)] = 139923, - [SMALL_STATE(3018)] = 139959, - [SMALL_STATE(3019)] = 139995, - [SMALL_STATE(3020)] = 140031, - [SMALL_STATE(3021)] = 140067, - [SMALL_STATE(3022)] = 140103, - [SMALL_STATE(3023)] = 140139, - [SMALL_STATE(3024)] = 140175, - [SMALL_STATE(3025)] = 140211, - [SMALL_STATE(3026)] = 140247, - [SMALL_STATE(3027)] = 140283, - [SMALL_STATE(3028)] = 140331, - [SMALL_STATE(3029)] = 140367, - [SMALL_STATE(3030)] = 140403, - [SMALL_STATE(3031)] = 140439, - [SMALL_STATE(3032)] = 140475, - [SMALL_STATE(3033)] = 140511, - [SMALL_STATE(3034)] = 140547, - [SMALL_STATE(3035)] = 140609, - [SMALL_STATE(3036)] = 140645, - [SMALL_STATE(3037)] = 140681, - [SMALL_STATE(3038)] = 140717, - [SMALL_STATE(3039)] = 140753, - [SMALL_STATE(3040)] = 140789, - [SMALL_STATE(3041)] = 140825, - [SMALL_STATE(3042)] = 140861, - [SMALL_STATE(3043)] = 140897, - [SMALL_STATE(3044)] = 140933, - [SMALL_STATE(3045)] = 140969, - [SMALL_STATE(3046)] = 141005, - [SMALL_STATE(3047)] = 141041, - [SMALL_STATE(3048)] = 141077, - [SMALL_STATE(3049)] = 141113, - [SMALL_STATE(3050)] = 141149, - [SMALL_STATE(3051)] = 141185, - [SMALL_STATE(3052)] = 141221, - [SMALL_STATE(3053)] = 141257, - [SMALL_STATE(3054)] = 141293, - [SMALL_STATE(3055)] = 141329, - [SMALL_STATE(3056)] = 141365, - [SMALL_STATE(3057)] = 141401, - [SMALL_STATE(3058)] = 141437, - [SMALL_STATE(3059)] = 141473, - [SMALL_STATE(3060)] = 141509, - [SMALL_STATE(3061)] = 141545, - [SMALL_STATE(3062)] = 141581, - [SMALL_STATE(3063)] = 141617, - [SMALL_STATE(3064)] = 141653, - [SMALL_STATE(3065)] = 141689, - [SMALL_STATE(3066)] = 141725, - [SMALL_STATE(3067)] = 141761, - [SMALL_STATE(3068)] = 141797, - [SMALL_STATE(3069)] = 141833, - [SMALL_STATE(3070)] = 141869, - [SMALL_STATE(3071)] = 141905, - [SMALL_STATE(3072)] = 141941, - [SMALL_STATE(3073)] = 141977, - [SMALL_STATE(3074)] = 142013, - [SMALL_STATE(3075)] = 142049, - [SMALL_STATE(3076)] = 142085, - [SMALL_STATE(3077)] = 142121, - [SMALL_STATE(3078)] = 142157, - [SMALL_STATE(3079)] = 142193, - [SMALL_STATE(3080)] = 142229, - [SMALL_STATE(3081)] = 142265, - [SMALL_STATE(3082)] = 142301, - [SMALL_STATE(3083)] = 142363, - [SMALL_STATE(3084)] = 142399, - [SMALL_STATE(3085)] = 142435, - [SMALL_STATE(3086)] = 142471, - [SMALL_STATE(3087)] = 142507, - [SMALL_STATE(3088)] = 142543, - [SMALL_STATE(3089)] = 142579, - [SMALL_STATE(3090)] = 142615, - [SMALL_STATE(3091)] = 142651, - [SMALL_STATE(3092)] = 142687, - [SMALL_STATE(3093)] = 142723, - [SMALL_STATE(3094)] = 142759, - [SMALL_STATE(3095)] = 142795, - [SMALL_STATE(3096)] = 142831, - [SMALL_STATE(3097)] = 142867, - [SMALL_STATE(3098)] = 142903, - [SMALL_STATE(3099)] = 142939, - [SMALL_STATE(3100)] = 142975, - [SMALL_STATE(3101)] = 143011, - [SMALL_STATE(3102)] = 143047, - [SMALL_STATE(3103)] = 143083, - [SMALL_STATE(3104)] = 143119, - [SMALL_STATE(3105)] = 143155, - [SMALL_STATE(3106)] = 143203, - [SMALL_STATE(3107)] = 143239, - [SMALL_STATE(3108)] = 143277, - [SMALL_STATE(3109)] = 143313, - [SMALL_STATE(3110)] = 143349, - [SMALL_STATE(3111)] = 143385, - [SMALL_STATE(3112)] = 143421, - [SMALL_STATE(3113)] = 143483, - [SMALL_STATE(3114)] = 143519, - [SMALL_STATE(3115)] = 143585, - [SMALL_STATE(3116)] = 143621, - [SMALL_STATE(3117)] = 143682, - [SMALL_STATE(3118)] = 143717, - [SMALL_STATE(3119)] = 143752, - [SMALL_STATE(3120)] = 143813, - [SMALL_STATE(3121)] = 143874, - [SMALL_STATE(3122)] = 143935, - [SMALL_STATE(3123)] = 143970, - [SMALL_STATE(3124)] = 144005, - [SMALL_STATE(3125)] = 144040, - [SMALL_STATE(3126)] = 144075, - [SMALL_STATE(3127)] = 144110, - [SMALL_STATE(3128)] = 144145, - [SMALL_STATE(3129)] = 144180, - [SMALL_STATE(3130)] = 144241, - [SMALL_STATE(3131)] = 144302, - [SMALL_STATE(3132)] = 144363, - [SMALL_STATE(3133)] = 144424, - [SMALL_STATE(3134)] = 144459, - [SMALL_STATE(3135)] = 144519, - [SMALL_STATE(3136)] = 144579, - [SMALL_STATE(3137)] = 144647, - [SMALL_STATE(3138)] = 144715, - [SMALL_STATE(3139)] = 144749, - [SMALL_STATE(3140)] = 144783, - [SMALL_STATE(3141)] = 144843, - [SMALL_STATE(3142)] = 144877, - [SMALL_STATE(3143)] = 144937, - [SMALL_STATE(3144)] = 144971, - [SMALL_STATE(3145)] = 145036, - [SMALL_STATE(3146)] = 145069, - [SMALL_STATE(3147)] = 145102, - [SMALL_STATE(3148)] = 145147, - [SMALL_STATE(3149)] = 145192, - [SMALL_STATE(3150)] = 145257, - [SMALL_STATE(3151)] = 145290, - [SMALL_STATE(3152)] = 145345, - [SMALL_STATE(3153)] = 145378, - [SMALL_STATE(3154)] = 145431, - [SMALL_STATE(3155)] = 145474, - [SMALL_STATE(3156)] = 145517, - [SMALL_STATE(3157)] = 145558, - [SMALL_STATE(3158)] = 145599, - [SMALL_STATE(3159)] = 145642, - [SMALL_STATE(3160)] = 145685, - [SMALL_STATE(3161)] = 145744, - [SMALL_STATE(3162)] = 145803, - [SMALL_STATE(3163)] = 145845, - [SMALL_STATE(3164)] = 145901, - [SMALL_STATE(3165)] = 145931, - [SMALL_STATE(3166)] = 145961, - [SMALL_STATE(3167)] = 145991, - [SMALL_STATE(3168)] = 146021, - [SMALL_STATE(3169)] = 146053, - [SMALL_STATE(3170)] = 146095, - [SMALL_STATE(3171)] = 146127, - [SMALL_STATE(3172)] = 146159, - [SMALL_STATE(3173)] = 146191, - [SMALL_STATE(3174)] = 146233, - [SMALL_STATE(3175)] = 146265, - [SMALL_STATE(3176)] = 146307, - [SMALL_STATE(3177)] = 146339, - [SMALL_STATE(3178)] = 146371, - [SMALL_STATE(3179)] = 146403, - [SMALL_STATE(3180)] = 146435, - [SMALL_STATE(3181)] = 146467, - [SMALL_STATE(3182)] = 146523, - [SMALL_STATE(3183)] = 146553, - [SMALL_STATE(3184)] = 146583, - [SMALL_STATE(3185)] = 146639, - [SMALL_STATE(3186)] = 146671, - [SMALL_STATE(3187)] = 146703, - [SMALL_STATE(3188)] = 146759, - [SMALL_STATE(3189)] = 146789, - [SMALL_STATE(3190)] = 146840, - [SMALL_STATE(3191)] = 146875, - [SMALL_STATE(3192)] = 146908, - [SMALL_STATE(3193)] = 146939, - [SMALL_STATE(3194)] = 146976, - [SMALL_STATE(3195)] = 147013, - [SMALL_STATE(3196)] = 147064, - [SMALL_STATE(3197)] = 147115, - [SMALL_STATE(3198)] = 147166, - [SMALL_STATE(3199)] = 147217, - [SMALL_STATE(3200)] = 147268, - [SMALL_STATE(3201)] = 147299, - [SMALL_STATE(3202)] = 147352, - [SMALL_STATE(3203)] = 147405, - [SMALL_STATE(3204)] = 147456, - [SMALL_STATE(3205)] = 147493, - [SMALL_STATE(3206)] = 147524, - [SMALL_STATE(3207)] = 147575, - [SMALL_STATE(3208)] = 147612, - [SMALL_STATE(3209)] = 147665, - [SMALL_STATE(3210)] = 147702, - [SMALL_STATE(3211)] = 147739, - [SMALL_STATE(3212)] = 147770, - [SMALL_STATE(3213)] = 147823, - [SMALL_STATE(3214)] = 147876, - [SMALL_STATE(3215)] = 147907, - [SMALL_STATE(3216)] = 147958, - [SMALL_STATE(3217)] = 147995, - [SMALL_STATE(3218)] = 148046, - [SMALL_STATE(3219)] = 148099, - [SMALL_STATE(3220)] = 148152, - [SMALL_STATE(3221)] = 148203, - [SMALL_STATE(3222)] = 148253, - [SMALL_STATE(3223)] = 148283, - [SMALL_STATE(3224)] = 148333, - [SMALL_STATE(3225)] = 148363, - [SMALL_STATE(3226)] = 148393, - [SMALL_STATE(3227)] = 148445, - [SMALL_STATE(3228)] = 148475, - [SMALL_STATE(3229)] = 148525, - [SMALL_STATE(3230)] = 148555, - [SMALL_STATE(3231)] = 148605, - [SMALL_STATE(3232)] = 148643, - [SMALL_STATE(3233)] = 148693, - [SMALL_STATE(3234)] = 148743, - [SMALL_STATE(3235)] = 148793, - [SMALL_STATE(3236)] = 148823, - [SMALL_STATE(3237)] = 148873, - [SMALL_STATE(3238)] = 148923, - [SMALL_STATE(3239)] = 148973, - [SMALL_STATE(3240)] = 149023, - [SMALL_STATE(3241)] = 149053, - [SMALL_STATE(3242)] = 149103, - [SMALL_STATE(3243)] = 149153, - [SMALL_STATE(3244)] = 149205, - [SMALL_STATE(3245)] = 149237, - [SMALL_STATE(3246)] = 149287, - [SMALL_STATE(3247)] = 149325, - [SMALL_STATE(3248)] = 149375, - [SMALL_STATE(3249)] = 149422, - [SMALL_STATE(3250)] = 149447, - [SMALL_STATE(3251)] = 149472, - [SMALL_STATE(3252)] = 149513, - [SMALL_STATE(3253)] = 149560, - [SMALL_STATE(3254)] = 149585, - [SMALL_STATE(3255)] = 149610, - [SMALL_STATE(3256)] = 149635, - [SMALL_STATE(3257)] = 149662, - [SMALL_STATE(3258)] = 149691, - [SMALL_STATE(3259)] = 149738, - [SMALL_STATE(3260)] = 149767, - [SMALL_STATE(3261)] = 149796, - [SMALL_STATE(3262)] = 149835, - [SMALL_STATE(3263)] = 149864, - [SMALL_STATE(3264)] = 149893, - [SMALL_STATE(3265)] = 149922, - [SMALL_STATE(3266)] = 149969, - [SMALL_STATE(3267)] = 150016, - [SMALL_STATE(3268)] = 150061, - [SMALL_STATE(3269)] = 150108, - [SMALL_STATE(3270)] = 150145, - [SMALL_STATE(3271)] = 150170, - [SMALL_STATE(3272)] = 150207, - [SMALL_STATE(3273)] = 150254, - [SMALL_STATE(3274)] = 150289, - [SMALL_STATE(3275)] = 150314, - [SMALL_STATE(3276)] = 150343, - [SMALL_STATE(3277)] = 150390, - [SMALL_STATE(3278)] = 150431, - [SMALL_STATE(3279)] = 150456, - [SMALL_STATE(3280)] = 150485, - [SMALL_STATE(3281)] = 150514, - [SMALL_STATE(3282)] = 150543, - [SMALL_STATE(3283)] = 150572, - [SMALL_STATE(3284)] = 150613, - [SMALL_STATE(3285)] = 150660, - [SMALL_STATE(3286)] = 150697, - [SMALL_STATE(3287)] = 150744, - [SMALL_STATE(3288)] = 150791, - [SMALL_STATE(3289)] = 150838, - [SMALL_STATE(3290)] = 150885, - [SMALL_STATE(3291)] = 150922, - [SMALL_STATE(3292)] = 150969, - [SMALL_STATE(3293)] = 151016, - [SMALL_STATE(3294)] = 151063, - [SMALL_STATE(3295)] = 151110, - [SMALL_STATE(3296)] = 151153, - [SMALL_STATE(3297)] = 151197, - [SMALL_STATE(3298)] = 151239, - [SMALL_STATE(3299)] = 151281, - [SMALL_STATE(3300)] = 151323, - [SMALL_STATE(3301)] = 151365, - [SMALL_STATE(3302)] = 151407, - [SMALL_STATE(3303)] = 151451, - [SMALL_STATE(3304)] = 151493, - [SMALL_STATE(3305)] = 151535, - [SMALL_STATE(3306)] = 151579, - [SMALL_STATE(3307)] = 151623, - [SMALL_STATE(3308)] = 151667, - [SMALL_STATE(3309)] = 151711, - [SMALL_STATE(3310)] = 151755, - [SMALL_STATE(3311)] = 151783, - [SMALL_STATE(3312)] = 151825, - [SMALL_STATE(3313)] = 151867, - [SMALL_STATE(3314)] = 151909, - [SMALL_STATE(3315)] = 151951, - [SMALL_STATE(3316)] = 151993, - [SMALL_STATE(3317)] = 152035, - [SMALL_STATE(3318)] = 152077, - [SMALL_STATE(3319)] = 152121, - [SMALL_STATE(3320)] = 152163, - [SMALL_STATE(3321)] = 152207, - [SMALL_STATE(3322)] = 152255, - [SMALL_STATE(3323)] = 152297, - [SMALL_STATE(3324)] = 152327, - [SMALL_STATE(3325)] = 152359, - [SMALL_STATE(3326)] = 152391, - [SMALL_STATE(3327)] = 152433, - [SMALL_STATE(3328)] = 152475, - [SMALL_STATE(3329)] = 152519, - [SMALL_STATE(3330)] = 152563, - [SMALL_STATE(3331)] = 152607, - [SMALL_STATE(3332)] = 152651, - [SMALL_STATE(3333)] = 152693, - [SMALL_STATE(3334)] = 152737, - [SMALL_STATE(3335)] = 152781, - [SMALL_STATE(3336)] = 152825, - [SMALL_STATE(3337)] = 152867, - [SMALL_STATE(3338)] = 152911, - [SMALL_STATE(3339)] = 152955, - [SMALL_STATE(3340)] = 152983, - [SMALL_STATE(3341)] = 153025, - [SMALL_STATE(3342)] = 153055, - [SMALL_STATE(3343)] = 153099, - [SMALL_STATE(3344)] = 153127, - [SMALL_STATE(3345)] = 153169, - [SMALL_STATE(3346)] = 153213, - [SMALL_STATE(3347)] = 153255, - [SMALL_STATE(3348)] = 153297, - [SMALL_STATE(3349)] = 153339, - [SMALL_STATE(3350)] = 153381, - [SMALL_STATE(3351)] = 153423, - [SMALL_STATE(3352)] = 153465, - [SMALL_STATE(3353)] = 153509, - [SMALL_STATE(3354)] = 153553, - [SMALL_STATE(3355)] = 153597, - [SMALL_STATE(3356)] = 153641, - [SMALL_STATE(3357)] = 153685, - [SMALL_STATE(3358)] = 153729, - [SMALL_STATE(3359)] = 153773, - [SMALL_STATE(3360)] = 153817, - [SMALL_STATE(3361)] = 153861, - [SMALL_STATE(3362)] = 153905, - [SMALL_STATE(3363)] = 153949, - [SMALL_STATE(3364)] = 153993, - [SMALL_STATE(3365)] = 154037, - [SMALL_STATE(3366)] = 154081, - [SMALL_STATE(3367)] = 154125, - [SMALL_STATE(3368)] = 154169, - [SMALL_STATE(3369)] = 154213, - [SMALL_STATE(3370)] = 154257, - [SMALL_STATE(3371)] = 154301, - [SMALL_STATE(3372)] = 154329, - [SMALL_STATE(3373)] = 154373, - [SMALL_STATE(3374)] = 154417, - [SMALL_STATE(3375)] = 154461, - [SMALL_STATE(3376)] = 154505, - [SMALL_STATE(3377)] = 154549, - [SMALL_STATE(3378)] = 154593, - [SMALL_STATE(3379)] = 154637, - [SMALL_STATE(3380)] = 154681, - [SMALL_STATE(3381)] = 154725, - [SMALL_STATE(3382)] = 154769, - [SMALL_STATE(3383)] = 154813, - [SMALL_STATE(3384)] = 154857, - [SMALL_STATE(3385)] = 154887, - [SMALL_STATE(3386)] = 154931, - [SMALL_STATE(3387)] = 154975, - [SMALL_STATE(3388)] = 155019, - [SMALL_STATE(3389)] = 155063, - [SMALL_STATE(3390)] = 155107, - [SMALL_STATE(3391)] = 155151, - [SMALL_STATE(3392)] = 155195, - [SMALL_STATE(3393)] = 155239, - [SMALL_STATE(3394)] = 155283, - [SMALL_STATE(3395)] = 155327, - [SMALL_STATE(3396)] = 155371, - [SMALL_STATE(3397)] = 155415, - [SMALL_STATE(3398)] = 155459, - [SMALL_STATE(3399)] = 155503, - [SMALL_STATE(3400)] = 155547, - [SMALL_STATE(3401)] = 155591, - [SMALL_STATE(3402)] = 155635, - [SMALL_STATE(3403)] = 155679, - [SMALL_STATE(3404)] = 155721, - [SMALL_STATE(3405)] = 155765, - [SMALL_STATE(3406)] = 155809, - [SMALL_STATE(3407)] = 155853, - [SMALL_STATE(3408)] = 155895, - [SMALL_STATE(3409)] = 155936, - [SMALL_STATE(3410)] = 155963, - [SMALL_STATE(3411)] = 155988, - [SMALL_STATE(3412)] = 156029, - [SMALL_STATE(3413)] = 156070, - [SMALL_STATE(3414)] = 156109, - [SMALL_STATE(3415)] = 156150, - [SMALL_STATE(3416)] = 156191, - [SMALL_STATE(3417)] = 156218, - [SMALL_STATE(3418)] = 156245, - [SMALL_STATE(3419)] = 156286, - [SMALL_STATE(3420)] = 156333, - [SMALL_STATE(3421)] = 156372, - [SMALL_STATE(3422)] = 156399, - [SMALL_STATE(3423)] = 156424, - [SMALL_STATE(3424)] = 156465, - [SMALL_STATE(3425)] = 156490, - [SMALL_STATE(3426)] = 156517, - [SMALL_STATE(3427)] = 156558, - [SMALL_STATE(3428)] = 156599, - [SMALL_STATE(3429)] = 156640, - [SMALL_STATE(3430)] = 156681, - [SMALL_STATE(3431)] = 156722, - [SMALL_STATE(3432)] = 156767, - [SMALL_STATE(3433)] = 156808, - [SMALL_STATE(3434)] = 156849, - [SMALL_STATE(3435)] = 156874, - [SMALL_STATE(3436)] = 156901, - [SMALL_STATE(3437)] = 156930, - [SMALL_STATE(3438)] = 156971, - [SMALL_STATE(3439)] = 157004, - [SMALL_STATE(3440)] = 157040, - [SMALL_STATE(3441)] = 157080, - [SMALL_STATE(3442)] = 157118, - [SMALL_STATE(3443)] = 157146, - [SMALL_STATE(3444)] = 157170, - [SMALL_STATE(3445)] = 157206, - [SMALL_STATE(3446)] = 157244, - [SMALL_STATE(3447)] = 157268, - [SMALL_STATE(3448)] = 157304, - [SMALL_STATE(3449)] = 157340, - [SMALL_STATE(3450)] = 157364, - [SMALL_STATE(3451)] = 157402, - [SMALL_STATE(3452)] = 157426, - [SMALL_STATE(3453)] = 157452, - [SMALL_STATE(3454)] = 157480, - [SMALL_STATE(3455)] = 157514, - [SMALL_STATE(3456)] = 157550, - [SMALL_STATE(3457)] = 157584, - [SMALL_STATE(3458)] = 157620, - [SMALL_STATE(3459)] = 157658, - [SMALL_STATE(3460)] = 157684, - [SMALL_STATE(3461)] = 157724, - [SMALL_STATE(3462)] = 157748, - [SMALL_STATE(3463)] = 157772, - [SMALL_STATE(3464)] = 157812, - [SMALL_STATE(3465)] = 157852, - [SMALL_STATE(3466)] = 157876, - [SMALL_STATE(3467)] = 157900, - [SMALL_STATE(3468)] = 157924, - [SMALL_STATE(3469)] = 157948, - [SMALL_STATE(3470)] = 157987, - [SMALL_STATE(3471)] = 158026, - [SMALL_STATE(3472)] = 158053, - [SMALL_STATE(3473)] = 158080, - [SMALL_STATE(3474)] = 158113, - [SMALL_STATE(3475)] = 158146, - [SMALL_STATE(3476)] = 158173, - [SMALL_STATE(3477)] = 158208, - [SMALL_STATE(3478)] = 158231, - [SMALL_STATE(3479)] = 158264, - [SMALL_STATE(3480)] = 158297, - [SMALL_STATE(3481)] = 158330, - [SMALL_STATE(3482)] = 158351, - [SMALL_STATE(3483)] = 158376, - [SMALL_STATE(3484)] = 158413, - [SMALL_STATE(3485)] = 158448, - [SMALL_STATE(3486)] = 158469, - [SMALL_STATE(3487)] = 158492, - [SMALL_STATE(3488)] = 158519, - [SMALL_STATE(3489)] = 158546, - [SMALL_STATE(3490)] = 158569, - [SMALL_STATE(3491)] = 158594, - [SMALL_STATE(3492)] = 158621, - [SMALL_STATE(3493)] = 158642, - [SMALL_STATE(3494)] = 158669, - [SMALL_STATE(3495)] = 158696, - [SMALL_STATE(3496)] = 158723, - [SMALL_STATE(3497)] = 158746, - [SMALL_STATE(3498)] = 158769, - [SMALL_STATE(3499)] = 158802, - [SMALL_STATE(3500)] = 158823, - [SMALL_STATE(3501)] = 158856, - [SMALL_STATE(3502)] = 158879, - [SMALL_STATE(3503)] = 158912, - [SMALL_STATE(3504)] = 158935, - [SMALL_STATE(3505)] = 158962, - [SMALL_STATE(3506)] = 158995, - [SMALL_STATE(3507)] = 159034, - [SMALL_STATE(3508)] = 159060, - [SMALL_STATE(3509)] = 159082, - [SMALL_STATE(3510)] = 159116, - [SMALL_STATE(3511)] = 159154, - [SMALL_STATE(3512)] = 159192, - [SMALL_STATE(3513)] = 159214, - [SMALL_STATE(3514)] = 159248, - [SMALL_STATE(3515)] = 159280, - [SMALL_STATE(3516)] = 159308, - [SMALL_STATE(3517)] = 159348, - [SMALL_STATE(3518)] = 159388, - [SMALL_STATE(3519)] = 159426, - [SMALL_STATE(3520)] = 159464, - [SMALL_STATE(3521)] = 159504, - [SMALL_STATE(3522)] = 159542, - [SMALL_STATE(3523)] = 159564, - [SMALL_STATE(3524)] = 159586, - [SMALL_STATE(3525)] = 159608, - [SMALL_STATE(3526)] = 159638, - [SMALL_STATE(3527)] = 159668, - [SMALL_STATE(3528)] = 159700, - [SMALL_STATE(3529)] = 159738, - [SMALL_STATE(3530)] = 159770, - [SMALL_STATE(3531)] = 159802, - [SMALL_STATE(3532)] = 159838, - [SMALL_STATE(3533)] = 159862, - [SMALL_STATE(3534)] = 159886, - [SMALL_STATE(3535)] = 159920, - [SMALL_STATE(3536)] = 159950, - [SMALL_STATE(3537)] = 159972, - [SMALL_STATE(3538)] = 160000, - [SMALL_STATE(3539)] = 160026, - [SMALL_STATE(3540)] = 160052, - [SMALL_STATE(3541)] = 160078, - [SMALL_STATE(3542)] = 160108, - [SMALL_STATE(3543)] = 160138, - [SMALL_STATE(3544)] = 160166, - [SMALL_STATE(3545)] = 160198, - [SMALL_STATE(3546)] = 160220, - [SMALL_STATE(3547)] = 160260, - [SMALL_STATE(3548)] = 160286, - [SMALL_STATE(3549)] = 160308, - [SMALL_STATE(3550)] = 160340, - [SMALL_STATE(3551)] = 160370, - [SMALL_STATE(3552)] = 160402, - [SMALL_STATE(3553)] = 160434, - [SMALL_STATE(3554)] = 160466, - [SMALL_STATE(3555)] = 160490, - [SMALL_STATE(3556)] = 160522, - [SMALL_STATE(3557)] = 160544, - [SMALL_STATE(3558)] = 160568, - [SMALL_STATE(3559)] = 160598, - [SMALL_STATE(3560)] = 160630, - [SMALL_STATE(3561)] = 160660, - [SMALL_STATE(3562)] = 160692, - [SMALL_STATE(3563)] = 160714, - [SMALL_STATE(3564)] = 160746, - [SMALL_STATE(3565)] = 160778, - [SMALL_STATE(3566)] = 160810, - [SMALL_STATE(3567)] = 160848, - [SMALL_STATE(3568)] = 160888, - [SMALL_STATE(3569)] = 160928, - [SMALL_STATE(3570)] = 160958, - [SMALL_STATE(3571)] = 160992, - [SMALL_STATE(3572)] = 161022, - [SMALL_STATE(3573)] = 161052, - [SMALL_STATE(3574)] = 161081, - [SMALL_STATE(3575)] = 161110, - [SMALL_STATE(3576)] = 161139, - [SMALL_STATE(3577)] = 161168, - [SMALL_STATE(3578)] = 161197, - [SMALL_STATE(3579)] = 161226, - [SMALL_STATE(3580)] = 161255, - [SMALL_STATE(3581)] = 161286, - [SMALL_STATE(3582)] = 161315, - [SMALL_STATE(3583)] = 161344, - [SMALL_STATE(3584)] = 161373, - [SMALL_STATE(3585)] = 161402, - [SMALL_STATE(3586)] = 161431, - [SMALL_STATE(3587)] = 161460, - [SMALL_STATE(3588)] = 161491, - [SMALL_STATE(3589)] = 161520, - [SMALL_STATE(3590)] = 161543, - [SMALL_STATE(3591)] = 161572, - [SMALL_STATE(3592)] = 161601, - [SMALL_STATE(3593)] = 161630, - [SMALL_STATE(3594)] = 161659, - [SMALL_STATE(3595)] = 161688, - [SMALL_STATE(3596)] = 161717, - [SMALL_STATE(3597)] = 161746, - [SMALL_STATE(3598)] = 161775, - [SMALL_STATE(3599)] = 161796, - [SMALL_STATE(3600)] = 161829, - [SMALL_STATE(3601)] = 161858, - [SMALL_STATE(3602)] = 161881, - [SMALL_STATE(3603)] = 161912, - [SMALL_STATE(3604)] = 161943, - [SMALL_STATE(3605)] = 161974, - [SMALL_STATE(3606)] = 162003, - [SMALL_STATE(3607)] = 162024, - [SMALL_STATE(3608)] = 162053, - [SMALL_STATE(3609)] = 162082, - [SMALL_STATE(3610)] = 162113, - [SMALL_STATE(3611)] = 162142, - [SMALL_STATE(3612)] = 162163, - [SMALL_STATE(3613)] = 162192, - [SMALL_STATE(3614)] = 162213, - [SMALL_STATE(3615)] = 162242, - [SMALL_STATE(3616)] = 162271, - [SMALL_STATE(3617)] = 162300, - [SMALL_STATE(3618)] = 162329, - [SMALL_STATE(3619)] = 162358, - [SMALL_STATE(3620)] = 162389, - [SMALL_STATE(3621)] = 162420, - [SMALL_STATE(3622)] = 162441, - [SMALL_STATE(3623)] = 162470, - [SMALL_STATE(3624)] = 162499, - [SMALL_STATE(3625)] = 162528, - [SMALL_STATE(3626)] = 162557, - [SMALL_STATE(3627)] = 162586, - [SMALL_STATE(3628)] = 162607, - [SMALL_STATE(3629)] = 162636, - [SMALL_STATE(3630)] = 162665, - [SMALL_STATE(3631)] = 162706, - [SMALL_STATE(3632)] = 162735, - [SMALL_STATE(3633)] = 162764, - [SMALL_STATE(3634)] = 162797, - [SMALL_STATE(3635)] = 162828, - [SMALL_STATE(3636)] = 162859, - [SMALL_STATE(3637)] = 162890, - [SMALL_STATE(3638)] = 162921, - [SMALL_STATE(3639)] = 162950, - [SMALL_STATE(3640)] = 162991, - [SMALL_STATE(3641)] = 163020, - [SMALL_STATE(3642)] = 163041, - [SMALL_STATE(3643)] = 163070, - [SMALL_STATE(3644)] = 163101, - [SMALL_STATE(3645)] = 163142, - [SMALL_STATE(3646)] = 163171, - [SMALL_STATE(3647)] = 163202, - [SMALL_STATE(3648)] = 163231, - [SMALL_STATE(3649)] = 163262, - [SMALL_STATE(3650)] = 163293, - [SMALL_STATE(3651)] = 163334, - [SMALL_STATE(3652)] = 163375, - [SMALL_STATE(3653)] = 163404, - [SMALL_STATE(3654)] = 163445, - [SMALL_STATE(3655)] = 163474, - [SMALL_STATE(3656)] = 163515, - [SMALL_STATE(3657)] = 163544, - [SMALL_STATE(3658)] = 163573, - [SMALL_STATE(3659)] = 163604, - [SMALL_STATE(3660)] = 163635, - [SMALL_STATE(3661)] = 163664, - [SMALL_STATE(3662)] = 163693, - [SMALL_STATE(3663)] = 163722, - [SMALL_STATE(3664)] = 163753, - [SMALL_STATE(3665)] = 163784, - [SMALL_STATE(3666)] = 163815, - [SMALL_STATE(3667)] = 163846, - [SMALL_STATE(3668)] = 163875, - [SMALL_STATE(3669)] = 163904, - [SMALL_STATE(3670)] = 163933, - [SMALL_STATE(3671)] = 163964, - [SMALL_STATE(3672)] = 163985, - [SMALL_STATE(3673)] = 164014, - [SMALL_STATE(3674)] = 164035, - [SMALL_STATE(3675)] = 164064, - [SMALL_STATE(3676)] = 164093, - [SMALL_STATE(3677)] = 164122, - [SMALL_STATE(3678)] = 164153, - [SMALL_STATE(3679)] = 164194, - [SMALL_STATE(3680)] = 164223, - [SMALL_STATE(3681)] = 164244, - [SMALL_STATE(3682)] = 164273, - [SMALL_STATE(3683)] = 164303, - [SMALL_STATE(3684)] = 164333, - [SMALL_STATE(3685)] = 164363, - [SMALL_STATE(3686)] = 164395, - [SMALL_STATE(3687)] = 164425, - [SMALL_STATE(3688)] = 164453, - [SMALL_STATE(3689)] = 164481, - [SMALL_STATE(3690)] = 164509, - [SMALL_STATE(3691)] = 164543, - [SMALL_STATE(3692)] = 164581, - [SMALL_STATE(3693)] = 164611, - [SMALL_STATE(3694)] = 164641, - [SMALL_STATE(3695)] = 164679, - [SMALL_STATE(3696)] = 164707, - [SMALL_STATE(3697)] = 164745, - [SMALL_STATE(3698)] = 164783, - [SMALL_STATE(3699)] = 164815, - [SMALL_STATE(3700)] = 164845, - [SMALL_STATE(3701)] = 164879, - [SMALL_STATE(3702)] = 164903, - [SMALL_STATE(3703)] = 164941, - [SMALL_STATE(3704)] = 164975, - [SMALL_STATE(3705)] = 164995, - [SMALL_STATE(3706)] = 165025, - [SMALL_STATE(3707)] = 165055, - [SMALL_STATE(3708)] = 165093, - [SMALL_STATE(3709)] = 165123, - [SMALL_STATE(3710)] = 165157, - [SMALL_STATE(3711)] = 165195, - [SMALL_STATE(3712)] = 165213, - [SMALL_STATE(3713)] = 165251, - [SMALL_STATE(3714)] = 165281, - [SMALL_STATE(3715)] = 165311, - [SMALL_STATE(3716)] = 165341, - [SMALL_STATE(3717)] = 165379, - [SMALL_STATE(3718)] = 165417, - [SMALL_STATE(3719)] = 165455, - [SMALL_STATE(3720)] = 165479, - [SMALL_STATE(3721)] = 165511, - [SMALL_STATE(3722)] = 165539, - [SMALL_STATE(3723)] = 165569, - [SMALL_STATE(3724)] = 165601, - [SMALL_STATE(3725)] = 165629, - [SMALL_STATE(3726)] = 165659, - [SMALL_STATE(3727)] = 165689, - [SMALL_STATE(3728)] = 165727, - [SMALL_STATE(3729)] = 165759, - [SMALL_STATE(3730)] = 165789, - [SMALL_STATE(3731)] = 165819, - [SMALL_STATE(3732)] = 165857, - [SMALL_STATE(3733)] = 165887, - [SMALL_STATE(3734)] = 165925, - [SMALL_STATE(3735)] = 165963, - [SMALL_STATE(3736)] = 165993, - [SMALL_STATE(3737)] = 166017, - [SMALL_STATE(3738)] = 166047, - [SMALL_STATE(3739)] = 166077, - [SMALL_STATE(3740)] = 166115, - [SMALL_STATE(3741)] = 166143, - [SMALL_STATE(3742)] = 166175, - [SMALL_STATE(3743)] = 166199, - [SMALL_STATE(3744)] = 166231, - [SMALL_STATE(3745)] = 166259, - [SMALL_STATE(3746)] = 166297, - [SMALL_STATE(3747)] = 166335, - [SMALL_STATE(3748)] = 166367, - [SMALL_STATE(3749)] = 166397, - [SMALL_STATE(3750)] = 166431, - [SMALL_STATE(3751)] = 166461, - [SMALL_STATE(3752)] = 166491, - [SMALL_STATE(3753)] = 166523, - [SMALL_STATE(3754)] = 166557, - [SMALL_STATE(3755)] = 166587, - [SMALL_STATE(3756)] = 166617, - [SMALL_STATE(3757)] = 166655, - [SMALL_STATE(3758)] = 166685, - [SMALL_STATE(3759)] = 166713, - [SMALL_STATE(3760)] = 166751, - [SMALL_STATE(3761)] = 166781, - [SMALL_STATE(3762)] = 166811, - [SMALL_STATE(3763)] = 166841, - [SMALL_STATE(3764)] = 166879, - [SMALL_STATE(3765)] = 166907, - [SMALL_STATE(3766)] = 166937, - [SMALL_STATE(3767)] = 166975, - [SMALL_STATE(3768)] = 167003, - [SMALL_STATE(3769)] = 167041, - [SMALL_STATE(3770)] = 167071, - [SMALL_STATE(3771)] = 167101, - [SMALL_STATE(3772)] = 167139, - [SMALL_STATE(3773)] = 167177, - [SMALL_STATE(3774)] = 167202, - [SMALL_STATE(3775)] = 167225, - [SMALL_STATE(3776)] = 167254, - [SMALL_STATE(3777)] = 167283, - [SMALL_STATE(3778)] = 167302, - [SMALL_STATE(3779)] = 167331, - [SMALL_STATE(3780)] = 167360, - [SMALL_STATE(3781)] = 167383, - [SMALL_STATE(3782)] = 167402, - [SMALL_STATE(3783)] = 167431, - [SMALL_STATE(3784)] = 167460, - [SMALL_STATE(3785)] = 167489, - [SMALL_STATE(3786)] = 167518, - [SMALL_STATE(3787)] = 167547, - [SMALL_STATE(3788)] = 167576, - [SMALL_STATE(3789)] = 167605, - [SMALL_STATE(3790)] = 167626, - [SMALL_STATE(3791)] = 167655, - [SMALL_STATE(3792)] = 167680, - [SMALL_STATE(3793)] = 167699, - [SMALL_STATE(3794)] = 167718, - [SMALL_STATE(3795)] = 167739, - [SMALL_STATE(3796)] = 167768, - [SMALL_STATE(3797)] = 167787, - [SMALL_STATE(3798)] = 167812, - [SMALL_STATE(3799)] = 167833, - [SMALL_STATE(3800)] = 167856, - [SMALL_STATE(3801)] = 167881, - [SMALL_STATE(3802)] = 167904, - [SMALL_STATE(3803)] = 167933, - [SMALL_STATE(3804)] = 167958, - [SMALL_STATE(3805)] = 167979, - [SMALL_STATE(3806)] = 168004, - [SMALL_STATE(3807)] = 168029, - [SMALL_STATE(3808)] = 168058, - [SMALL_STATE(3809)] = 168089, - [SMALL_STATE(3810)] = 168118, - [SMALL_STATE(3811)] = 168149, - [SMALL_STATE(3812)] = 168178, - [SMALL_STATE(3813)] = 168207, - [SMALL_STATE(3814)] = 168236, - [SMALL_STATE(3815)] = 168267, - [SMALL_STATE(3816)] = 168298, - [SMALL_STATE(3817)] = 168329, - [SMALL_STATE(3818)] = 168348, - [SMALL_STATE(3819)] = 168367, - [SMALL_STATE(3820)] = 168386, - [SMALL_STATE(3821)] = 168405, - [SMALL_STATE(3822)] = 168434, - [SMALL_STATE(3823)] = 168457, - [SMALL_STATE(3824)] = 168486, - [SMALL_STATE(3825)] = 168517, - [SMALL_STATE(3826)] = 168548, - [SMALL_STATE(3827)] = 168567, - [SMALL_STATE(3828)] = 168596, - [SMALL_STATE(3829)] = 168625, - [SMALL_STATE(3830)] = 168644, - [SMALL_STATE(3831)] = 168663, - [SMALL_STATE(3832)] = 168682, - [SMALL_STATE(3833)] = 168707, - [SMALL_STATE(3834)] = 168726, - [SMALL_STATE(3835)] = 168749, - [SMALL_STATE(3836)] = 168774, - [SMALL_STATE(3837)] = 168803, - [SMALL_STATE(3838)] = 168828, - [SMALL_STATE(3839)] = 168851, - [SMALL_STATE(3840)] = 168870, - [SMALL_STATE(3841)] = 168895, - [SMALL_STATE(3842)] = 168912, - [SMALL_STATE(3843)] = 168929, - [SMALL_STATE(3844)] = 168946, - [SMALL_STATE(3845)] = 168963, - [SMALL_STATE(3846)] = 168986, - [SMALL_STATE(3847)] = 169011, - [SMALL_STATE(3848)] = 169036, - [SMALL_STATE(3849)] = 169057, - [SMALL_STATE(3850)] = 169080, - [SMALL_STATE(3851)] = 169101, - [SMALL_STATE(3852)] = 169120, - [SMALL_STATE(3853)] = 169137, - [SMALL_STATE(3854)] = 169162, - [SMALL_STATE(3855)] = 169181, - [SMALL_STATE(3856)] = 169198, - [SMALL_STATE(3857)] = 169227, - [SMALL_STATE(3858)] = 169257, - [SMALL_STATE(3859)] = 169285, - [SMALL_STATE(3860)] = 169303, - [SMALL_STATE(3861)] = 169325, - [SMALL_STATE(3862)] = 169353, - [SMALL_STATE(3863)] = 169375, - [SMALL_STATE(3864)] = 169397, - [SMALL_STATE(3865)] = 169425, - [SMALL_STATE(3866)] = 169455, - [SMALL_STATE(3867)] = 169475, - [SMALL_STATE(3868)] = 169491, - [SMALL_STATE(3869)] = 169523, - [SMALL_STATE(3870)] = 169541, - [SMALL_STATE(3871)] = 169563, - [SMALL_STATE(3872)] = 169579, - [SMALL_STATE(3873)] = 169595, - [SMALL_STATE(3874)] = 169627, - [SMALL_STATE(3875)] = 169643, - [SMALL_STATE(3876)] = 169659, - [SMALL_STATE(3877)] = 169689, - [SMALL_STATE(3878)] = 169717, - [SMALL_STATE(3879)] = 169745, - [SMALL_STATE(3880)] = 169763, - [SMALL_STATE(3881)] = 169793, - [SMALL_STATE(3882)] = 169809, - [SMALL_STATE(3883)] = 169825, - [SMALL_STATE(3884)] = 169849, - [SMALL_STATE(3885)] = 169879, - [SMALL_STATE(3886)] = 169907, - [SMALL_STATE(3887)] = 169931, - [SMALL_STATE(3888)] = 169949, - [SMALL_STATE(3889)] = 169977, - [SMALL_STATE(3890)] = 170001, - [SMALL_STATE(3891)] = 170019, - [SMALL_STATE(3892)] = 170047, - [SMALL_STATE(3893)] = 170077, - [SMALL_STATE(3894)] = 170107, - [SMALL_STATE(3895)] = 170137, - [SMALL_STATE(3896)] = 170161, - [SMALL_STATE(3897)] = 170189, - [SMALL_STATE(3898)] = 170219, - [SMALL_STATE(3899)] = 170241, - [SMALL_STATE(3900)] = 170261, - [SMALL_STATE(3901)] = 170293, - [SMALL_STATE(3902)] = 170317, - [SMALL_STATE(3903)] = 170335, - [SMALL_STATE(3904)] = 170359, - [SMALL_STATE(3905)] = 170383, - [SMALL_STATE(3906)] = 170415, - [SMALL_STATE(3907)] = 170431, - [SMALL_STATE(3908)] = 170459, - [SMALL_STATE(3909)] = 170489, - [SMALL_STATE(3910)] = 170513, - [SMALL_STATE(3911)] = 170531, - [SMALL_STATE(3912)] = 170559, - [SMALL_STATE(3913)] = 170581, - [SMALL_STATE(3914)] = 170601, - [SMALL_STATE(3915)] = 170629, - [SMALL_STATE(3916)] = 170659, - [SMALL_STATE(3917)] = 170683, - [SMALL_STATE(3918)] = 170705, - [SMALL_STATE(3919)] = 170723, - [SMALL_STATE(3920)] = 170751, - [SMALL_STATE(3921)] = 170779, - [SMALL_STATE(3922)] = 170803, - [SMALL_STATE(3923)] = 170821, - [SMALL_STATE(3924)] = 170839, - [SMALL_STATE(3925)] = 170863, - [SMALL_STATE(3926)] = 170891, - [SMALL_STATE(3927)] = 170907, - [SMALL_STATE(3928)] = 170925, - [SMALL_STATE(3929)] = 170941, - [SMALL_STATE(3930)] = 170973, - [SMALL_STATE(3931)] = 170997, - [SMALL_STATE(3932)] = 171029, - [SMALL_STATE(3933)] = 171059, - [SMALL_STATE(3934)] = 171089, - [SMALL_STATE(3935)] = 171107, - [SMALL_STATE(3936)] = 171128, - [SMALL_STATE(3937)] = 171157, - [SMALL_STATE(3938)] = 171186, - [SMALL_STATE(3939)] = 171207, - [SMALL_STATE(3940)] = 171234, - [SMALL_STATE(3941)] = 171253, - [SMALL_STATE(3942)] = 171282, - [SMALL_STATE(3943)] = 171311, - [SMALL_STATE(3944)] = 171332, - [SMALL_STATE(3945)] = 171361, - [SMALL_STATE(3946)] = 171384, - [SMALL_STATE(3947)] = 171413, - [SMALL_STATE(3948)] = 171442, - [SMALL_STATE(3949)] = 171463, - [SMALL_STATE(3950)] = 171492, - [SMALL_STATE(3951)] = 171521, - [SMALL_STATE(3952)] = 171548, - [SMALL_STATE(3953)] = 171571, - [SMALL_STATE(3954)] = 171600, - [SMALL_STATE(3955)] = 171629, - [SMALL_STATE(3956)] = 171650, - [SMALL_STATE(3957)] = 171671, - [SMALL_STATE(3958)] = 171690, - [SMALL_STATE(3959)] = 171719, - [SMALL_STATE(3960)] = 171740, - [SMALL_STATE(3961)] = 171769, - [SMALL_STATE(3962)] = 171792, - [SMALL_STATE(3963)] = 171815, - [SMALL_STATE(3964)] = 171844, - [SMALL_STATE(3965)] = 171867, - [SMALL_STATE(3966)] = 171896, - [SMALL_STATE(3967)] = 171925, - [SMALL_STATE(3968)] = 171948, - [SMALL_STATE(3969)] = 171977, - [SMALL_STATE(3970)] = 171998, - [SMALL_STATE(3971)] = 172019, - [SMALL_STATE(3972)] = 172046, - [SMALL_STATE(3973)] = 172071, - [SMALL_STATE(3974)] = 172100, - [SMALL_STATE(3975)] = 172127, - [SMALL_STATE(3976)] = 172156, - [SMALL_STATE(3977)] = 172175, - [SMALL_STATE(3978)] = 172198, - [SMALL_STATE(3979)] = 172219, - [SMALL_STATE(3980)] = 172246, - [SMALL_STATE(3981)] = 172271, - [SMALL_STATE(3982)] = 172298, - [SMALL_STATE(3983)] = 172327, - [SMALL_STATE(3984)] = 172356, - [SMALL_STATE(3985)] = 172385, - [SMALL_STATE(3986)] = 172406, - [SMALL_STATE(3987)] = 172429, - [SMALL_STATE(3988)] = 172458, - [SMALL_STATE(3989)] = 172487, - [SMALL_STATE(3990)] = 172502, - [SMALL_STATE(3991)] = 172517, - [SMALL_STATE(3992)] = 172546, - [SMALL_STATE(3993)] = 172575, - [SMALL_STATE(3994)] = 172598, - [SMALL_STATE(3995)] = 172627, - [SMALL_STATE(3996)] = 172642, - [SMALL_STATE(3997)] = 172665, - [SMALL_STATE(3998)] = 172694, - [SMALL_STATE(3999)] = 172715, - [SMALL_STATE(4000)] = 172734, - [SMALL_STATE(4001)] = 172751, - [SMALL_STATE(4002)] = 172774, - [SMALL_STATE(4003)] = 172797, - [SMALL_STATE(4004)] = 172824, - [SMALL_STATE(4005)] = 172847, - [SMALL_STATE(4006)] = 172876, - [SMALL_STATE(4007)] = 172897, - [SMALL_STATE(4008)] = 172918, - [SMALL_STATE(4009)] = 172947, - [SMALL_STATE(4010)] = 172970, - [SMALL_STATE(4011)] = 172999, - [SMALL_STATE(4012)] = 173028, - [SMALL_STATE(4013)] = 173053, - [SMALL_STATE(4014)] = 173082, - [SMALL_STATE(4015)] = 173101, - [SMALL_STATE(4016)] = 173122, - [SMALL_STATE(4017)] = 173151, - [SMALL_STATE(4018)] = 173172, - [SMALL_STATE(4019)] = 173193, - [SMALL_STATE(4020)] = 173216, - [SMALL_STATE(4021)] = 173241, - [SMALL_STATE(4022)] = 173256, - [SMALL_STATE(4023)] = 173285, - [SMALL_STATE(4024)] = 173314, - [SMALL_STATE(4025)] = 173343, - [SMALL_STATE(4026)] = 173358, - [SMALL_STATE(4027)] = 173387, - [SMALL_STATE(4028)] = 173416, - [SMALL_STATE(4029)] = 173439, - [SMALL_STATE(4030)] = 173468, - [SMALL_STATE(4031)] = 173497, - [SMALL_STATE(4032)] = 173512, - [SMALL_STATE(4033)] = 173541, - [SMALL_STATE(4034)] = 173570, - [SMALL_STATE(4035)] = 173599, - [SMALL_STATE(4036)] = 173618, - [SMALL_STATE(4037)] = 173647, - [SMALL_STATE(4038)] = 173676, - [SMALL_STATE(4039)] = 173705, - [SMALL_STATE(4040)] = 173730, - [SMALL_STATE(4041)] = 173757, - [SMALL_STATE(4042)] = 173780, - [SMALL_STATE(4043)] = 173809, - [SMALL_STATE(4044)] = 173838, - [SMALL_STATE(4045)] = 173867, - [SMALL_STATE(4046)] = 173893, - [SMALL_STATE(4047)] = 173915, - [SMALL_STATE(4048)] = 173929, - [SMALL_STATE(4049)] = 173947, - [SMALL_STATE(4050)] = 173973, - [SMALL_STATE(4051)] = 173999, - [SMALL_STATE(4052)] = 174025, - [SMALL_STATE(4053)] = 174051, - [SMALL_STATE(4054)] = 174075, - [SMALL_STATE(4055)] = 174099, - [SMALL_STATE(4056)] = 174123, - [SMALL_STATE(4057)] = 174145, - [SMALL_STATE(4058)] = 174171, - [SMALL_STATE(4059)] = 174197, - [SMALL_STATE(4060)] = 174223, - [SMALL_STATE(4061)] = 174249, - [SMALL_STATE(4062)] = 174273, - [SMALL_STATE(4063)] = 174297, - [SMALL_STATE(4064)] = 174321, - [SMALL_STATE(4065)] = 174345, - [SMALL_STATE(4066)] = 174369, - [SMALL_STATE(4067)] = 174393, - [SMALL_STATE(4068)] = 174417, - [SMALL_STATE(4069)] = 174441, - [SMALL_STATE(4070)] = 174467, - [SMALL_STATE(4071)] = 174493, - [SMALL_STATE(4072)] = 174519, - [SMALL_STATE(4073)] = 174543, - [SMALL_STATE(4074)] = 174567, - [SMALL_STATE(4075)] = 174591, - [SMALL_STATE(4076)] = 174615, - [SMALL_STATE(4077)] = 174641, - [SMALL_STATE(4078)] = 174667, - [SMALL_STATE(4079)] = 174689, - [SMALL_STATE(4080)] = 174711, - [SMALL_STATE(4081)] = 174737, - [SMALL_STATE(4082)] = 174763, - [SMALL_STATE(4083)] = 174789, - [SMALL_STATE(4084)] = 174815, - [SMALL_STATE(4085)] = 174841, - [SMALL_STATE(4086)] = 174867, - [SMALL_STATE(4087)] = 174893, - [SMALL_STATE(4088)] = 174917, - [SMALL_STATE(4089)] = 174943, - [SMALL_STATE(4090)] = 174969, - [SMALL_STATE(4091)] = 174995, - [SMALL_STATE(4092)] = 175021, - [SMALL_STATE(4093)] = 175047, - [SMALL_STATE(4094)] = 175067, - [SMALL_STATE(4095)] = 175089, - [SMALL_STATE(4096)] = 175115, - [SMALL_STATE(4097)] = 175141, - [SMALL_STATE(4098)] = 175167, - [SMALL_STATE(4099)] = 175193, - [SMALL_STATE(4100)] = 175219, - [SMALL_STATE(4101)] = 175243, - [SMALL_STATE(4102)] = 175267, - [SMALL_STATE(4103)] = 175291, - [SMALL_STATE(4104)] = 175315, - [SMALL_STATE(4105)] = 175337, - [SMALL_STATE(4106)] = 175359, - [SMALL_STATE(4107)] = 175381, - [SMALL_STATE(4108)] = 175399, - [SMALL_STATE(4109)] = 175425, - [SMALL_STATE(4110)] = 175449, - [SMALL_STATE(4111)] = 175473, - [SMALL_STATE(4112)] = 175493, - [SMALL_STATE(4113)] = 175515, - [SMALL_STATE(4114)] = 175541, - [SMALL_STATE(4115)] = 175567, - [SMALL_STATE(4116)] = 175593, - [SMALL_STATE(4117)] = 175617, - [SMALL_STATE(4118)] = 175641, - [SMALL_STATE(4119)] = 175667, - [SMALL_STATE(4120)] = 175693, - [SMALL_STATE(4121)] = 175717, - [SMALL_STATE(4122)] = 175741, - [SMALL_STATE(4123)] = 175765, - [SMALL_STATE(4124)] = 175791, - [SMALL_STATE(4125)] = 175809, - [SMALL_STATE(4126)] = 175835, - [SMALL_STATE(4127)] = 175861, - [SMALL_STATE(4128)] = 175887, - [SMALL_STATE(4129)] = 175911, - [SMALL_STATE(4130)] = 175935, - [SMALL_STATE(4131)] = 175959, - [SMALL_STATE(4132)] = 175983, - [SMALL_STATE(4133)] = 176007, - [SMALL_STATE(4134)] = 176033, - [SMALL_STATE(4135)] = 176059, - [SMALL_STATE(4136)] = 176085, - [SMALL_STATE(4137)] = 176109, - [SMALL_STATE(4138)] = 176133, - [SMALL_STATE(4139)] = 176157, - [SMALL_STATE(4140)] = 176181, - [SMALL_STATE(4141)] = 176197, - [SMALL_STATE(4142)] = 176223, - [SMALL_STATE(4143)] = 176249, - [SMALL_STATE(4144)] = 176275, - [SMALL_STATE(4145)] = 176301, - [SMALL_STATE(4146)] = 176327, - [SMALL_STATE(4147)] = 176351, - [SMALL_STATE(4148)] = 176377, - [SMALL_STATE(4149)] = 176403, - [SMALL_STATE(4150)] = 176429, - [SMALL_STATE(4151)] = 176455, - [SMALL_STATE(4152)] = 176481, - [SMALL_STATE(4153)] = 176507, - [SMALL_STATE(4154)] = 176533, - [SMALL_STATE(4155)] = 176551, - [SMALL_STATE(4156)] = 176577, - [SMALL_STATE(4157)] = 176595, - [SMALL_STATE(4158)] = 176621, - [SMALL_STATE(4159)] = 176643, - [SMALL_STATE(4160)] = 176663, - [SMALL_STATE(4161)] = 176685, - [SMALL_STATE(4162)] = 176711, - [SMALL_STATE(4163)] = 176737, - [SMALL_STATE(4164)] = 176763, - [SMALL_STATE(4165)] = 176789, - [SMALL_STATE(4166)] = 176807, - [SMALL_STATE(4167)] = 176833, - [SMALL_STATE(4168)] = 176859, - [SMALL_STATE(4169)] = 176885, - [SMALL_STATE(4170)] = 176911, - [SMALL_STATE(4171)] = 176935, - [SMALL_STATE(4172)] = 176961, - [SMALL_STATE(4173)] = 176987, - [SMALL_STATE(4174)] = 177013, - [SMALL_STATE(4175)] = 177039, - [SMALL_STATE(4176)] = 177053, - [SMALL_STATE(4177)] = 177071, - [SMALL_STATE(4178)] = 177097, - [SMALL_STATE(4179)] = 177123, - [SMALL_STATE(4180)] = 177149, - [SMALL_STATE(4181)] = 177171, - [SMALL_STATE(4182)] = 177197, - [SMALL_STATE(4183)] = 177223, - [SMALL_STATE(4184)] = 177241, - [SMALL_STATE(4185)] = 177267, - [SMALL_STATE(4186)] = 177293, - [SMALL_STATE(4187)] = 177319, - [SMALL_STATE(4188)] = 177345, - [SMALL_STATE(4189)] = 177371, - [SMALL_STATE(4190)] = 177397, - [SMALL_STATE(4191)] = 177423, - [SMALL_STATE(4192)] = 177449, - [SMALL_STATE(4193)] = 177475, - [SMALL_STATE(4194)] = 177501, - [SMALL_STATE(4195)] = 177527, - [SMALL_STATE(4196)] = 177545, - [SMALL_STATE(4197)] = 177569, - [SMALL_STATE(4198)] = 177593, - [SMALL_STATE(4199)] = 177617, - [SMALL_STATE(4200)] = 177641, - [SMALL_STATE(4201)] = 177665, - [SMALL_STATE(4202)] = 177689, - [SMALL_STATE(4203)] = 177715, - [SMALL_STATE(4204)] = 177739, - [SMALL_STATE(4205)] = 177765, - [SMALL_STATE(4206)] = 177791, - [SMALL_STATE(4207)] = 177815, - [SMALL_STATE(4208)] = 177841, - [SMALL_STATE(4209)] = 177863, - [SMALL_STATE(4210)] = 177881, - [SMALL_STATE(4211)] = 177903, - [SMALL_STATE(4212)] = 177927, - [SMALL_STATE(4213)] = 177951, - [SMALL_STATE(4214)] = 177967, - [SMALL_STATE(4215)] = 177993, - [SMALL_STATE(4216)] = 178015, - [SMALL_STATE(4217)] = 178039, - [SMALL_STATE(4218)] = 178063, - [SMALL_STATE(4219)] = 178076, - [SMALL_STATE(4220)] = 178091, - [SMALL_STATE(4221)] = 178112, - [SMALL_STATE(4222)] = 178129, - [SMALL_STATE(4223)] = 178150, - [SMALL_STATE(4224)] = 178167, - [SMALL_STATE(4225)] = 178184, - [SMALL_STATE(4226)] = 178205, - [SMALL_STATE(4227)] = 178226, - [SMALL_STATE(4228)] = 178241, - [SMALL_STATE(4229)] = 178258, - [SMALL_STATE(4230)] = 178281, - [SMALL_STATE(4231)] = 178302, - [SMALL_STATE(4232)] = 178325, - [SMALL_STATE(4233)] = 178346, - [SMALL_STATE(4234)] = 178367, - [SMALL_STATE(4235)] = 178380, - [SMALL_STATE(4236)] = 178401, - [SMALL_STATE(4237)] = 178422, - [SMALL_STATE(4238)] = 178445, - [SMALL_STATE(4239)] = 178462, - [SMALL_STATE(4240)] = 178479, - [SMALL_STATE(4241)] = 178496, - [SMALL_STATE(4242)] = 178519, - [SMALL_STATE(4243)] = 178540, - [SMALL_STATE(4244)] = 178555, - [SMALL_STATE(4245)] = 178578, - [SMALL_STATE(4246)] = 178599, - [SMALL_STATE(4247)] = 178612, - [SMALL_STATE(4248)] = 178635, - [SMALL_STATE(4249)] = 178658, - [SMALL_STATE(4250)] = 178681, - [SMALL_STATE(4251)] = 178696, - [SMALL_STATE(4252)] = 178711, - [SMALL_STATE(4253)] = 178732, - [SMALL_STATE(4254)] = 178749, - [SMALL_STATE(4255)] = 178772, - [SMALL_STATE(4256)] = 178789, - [SMALL_STATE(4257)] = 178806, - [SMALL_STATE(4258)] = 178823, - [SMALL_STATE(4259)] = 178844, - [SMALL_STATE(4260)] = 178865, - [SMALL_STATE(4261)] = 178888, - [SMALL_STATE(4262)] = 178911, - [SMALL_STATE(4263)] = 178934, - [SMALL_STATE(4264)] = 178951, - [SMALL_STATE(4265)] = 178968, - [SMALL_STATE(4266)] = 178983, - [SMALL_STATE(4267)] = 179006, - [SMALL_STATE(4268)] = 179027, - [SMALL_STATE(4269)] = 179050, - [SMALL_STATE(4270)] = 179065, - [SMALL_STATE(4271)] = 179082, - [SMALL_STATE(4272)] = 179095, - [SMALL_STATE(4273)] = 179112, - [SMALL_STATE(4274)] = 179129, - [SMALL_STATE(4275)] = 179150, - [SMALL_STATE(4276)] = 179165, - [SMALL_STATE(4277)] = 179178, - [SMALL_STATE(4278)] = 179201, - [SMALL_STATE(4279)] = 179218, - [SMALL_STATE(4280)] = 179239, - [SMALL_STATE(4281)] = 179252, - [SMALL_STATE(4282)] = 179271, - [SMALL_STATE(4283)] = 179288, - [SMALL_STATE(4284)] = 179309, - [SMALL_STATE(4285)] = 179330, - [SMALL_STATE(4286)] = 179347, - [SMALL_STATE(4287)] = 179364, - [SMALL_STATE(4288)] = 179385, - [SMALL_STATE(4289)] = 179398, - [SMALL_STATE(4290)] = 179421, - [SMALL_STATE(4291)] = 179442, - [SMALL_STATE(4292)] = 179459, - [SMALL_STATE(4293)] = 179480, - [SMALL_STATE(4294)] = 179501, - [SMALL_STATE(4295)] = 179518, - [SMALL_STATE(4296)] = 179535, - [SMALL_STATE(4297)] = 179558, - [SMALL_STATE(4298)] = 179579, - [SMALL_STATE(4299)] = 179602, - [SMALL_STATE(4300)] = 179623, - [SMALL_STATE(4301)] = 179644, - [SMALL_STATE(4302)] = 179665, - [SMALL_STATE(4303)] = 179682, - [SMALL_STATE(4304)] = 179695, - [SMALL_STATE(4305)] = 179708, - [SMALL_STATE(4306)] = 179731, - [SMALL_STATE(4307)] = 179752, - [SMALL_STATE(4308)] = 179773, - [SMALL_STATE(4309)] = 179794, - [SMALL_STATE(4310)] = 179815, - [SMALL_STATE(4311)] = 179828, - [SMALL_STATE(4312)] = 179849, - [SMALL_STATE(4313)] = 179870, - [SMALL_STATE(4314)] = 179891, - [SMALL_STATE(4315)] = 179904, - [SMALL_STATE(4316)] = 179917, - [SMALL_STATE(4317)] = 179938, - [SMALL_STATE(4318)] = 179955, - [SMALL_STATE(4319)] = 179976, - [SMALL_STATE(4320)] = 179999, - [SMALL_STATE(4321)] = 180020, - [SMALL_STATE(4322)] = 180041, - [SMALL_STATE(4323)] = 180064, - [SMALL_STATE(4324)] = 180083, - [SMALL_STATE(4325)] = 180100, - [SMALL_STATE(4326)] = 180115, - [SMALL_STATE(4327)] = 180132, - [SMALL_STATE(4328)] = 180149, - [SMALL_STATE(4329)] = 180170, - [SMALL_STATE(4330)] = 180193, - [SMALL_STATE(4331)] = 180216, - [SMALL_STATE(4332)] = 180233, - [SMALL_STATE(4333)] = 180250, - [SMALL_STATE(4334)] = 180267, - [SMALL_STATE(4335)] = 180284, - [SMALL_STATE(4336)] = 180305, - [SMALL_STATE(4337)] = 180326, - [SMALL_STATE(4338)] = 180343, - [SMALL_STATE(4339)] = 180364, - [SMALL_STATE(4340)] = 180377, - [SMALL_STATE(4341)] = 180394, - [SMALL_STATE(4342)] = 180415, - [SMALL_STATE(4343)] = 180436, - [SMALL_STATE(4344)] = 180455, - [SMALL_STATE(4345)] = 180472, - [SMALL_STATE(4346)] = 180487, - [SMALL_STATE(4347)] = 180508, - [SMALL_STATE(4348)] = 180529, - [SMALL_STATE(4349)] = 180550, - [SMALL_STATE(4350)] = 180571, - [SMALL_STATE(4351)] = 180592, - [SMALL_STATE(4352)] = 180613, - [SMALL_STATE(4353)] = 180636, - [SMALL_STATE(4354)] = 180653, - [SMALL_STATE(4355)] = 180674, - [SMALL_STATE(4356)] = 180691, - [SMALL_STATE(4357)] = 180709, - [SMALL_STATE(4358)] = 180729, - [SMALL_STATE(4359)] = 180741, - [SMALL_STATE(4360)] = 180753, - [SMALL_STATE(4361)] = 180771, - [SMALL_STATE(4362)] = 180789, - [SMALL_STATE(4363)] = 180805, - [SMALL_STATE(4364)] = 180825, - [SMALL_STATE(4365)] = 180845, - [SMALL_STATE(4366)] = 180857, - [SMALL_STATE(4367)] = 180869, - [SMALL_STATE(4368)] = 180889, - [SMALL_STATE(4369)] = 180909, - [SMALL_STATE(4370)] = 180925, - [SMALL_STATE(4371)] = 180941, - [SMALL_STATE(4372)] = 180957, - [SMALL_STATE(4373)] = 180971, - [SMALL_STATE(4374)] = 180987, - [SMALL_STATE(4375)] = 180999, - [SMALL_STATE(4376)] = 181019, - [SMALL_STATE(4377)] = 181039, - [SMALL_STATE(4378)] = 181059, - [SMALL_STATE(4379)] = 181079, - [SMALL_STATE(4380)] = 181099, - [SMALL_STATE(4381)] = 181111, - [SMALL_STATE(4382)] = 181127, - [SMALL_STATE(4383)] = 181139, - [SMALL_STATE(4384)] = 181159, - [SMALL_STATE(4385)] = 181177, - [SMALL_STATE(4386)] = 181189, - [SMALL_STATE(4387)] = 181209, - [SMALL_STATE(4388)] = 181229, - [SMALL_STATE(4389)] = 181241, - [SMALL_STATE(4390)] = 181253, - [SMALL_STATE(4391)] = 181273, - [SMALL_STATE(4392)] = 181293, - [SMALL_STATE(4393)] = 181305, - [SMALL_STATE(4394)] = 181317, - [SMALL_STATE(4395)] = 181337, - [SMALL_STATE(4396)] = 181357, - [SMALL_STATE(4397)] = 181375, - [SMALL_STATE(4398)] = 181395, - [SMALL_STATE(4399)] = 181411, - [SMALL_STATE(4400)] = 181423, - [SMALL_STATE(4401)] = 181443, - [SMALL_STATE(4402)] = 181459, - [SMALL_STATE(4403)] = 181479, - [SMALL_STATE(4404)] = 181499, - [SMALL_STATE(4405)] = 181515, - [SMALL_STATE(4406)] = 181527, - [SMALL_STATE(4407)] = 181547, - [SMALL_STATE(4408)] = 181567, - [SMALL_STATE(4409)] = 181587, - [SMALL_STATE(4410)] = 181605, - [SMALL_STATE(4411)] = 181617, - [SMALL_STATE(4412)] = 181637, - [SMALL_STATE(4413)] = 181653, - [SMALL_STATE(4414)] = 181673, - [SMALL_STATE(4415)] = 181691, - [SMALL_STATE(4416)] = 181711, - [SMALL_STATE(4417)] = 181725, - [SMALL_STATE(4418)] = 181745, - [SMALL_STATE(4419)] = 181765, - [SMALL_STATE(4420)] = 181781, - [SMALL_STATE(4421)] = 181801, - [SMALL_STATE(4422)] = 181821, - [SMALL_STATE(4423)] = 181833, - [SMALL_STATE(4424)] = 181853, - [SMALL_STATE(4425)] = 181873, - [SMALL_STATE(4426)] = 181885, - [SMALL_STATE(4427)] = 181901, - [SMALL_STATE(4428)] = 181921, - [SMALL_STATE(4429)] = 181933, - [SMALL_STATE(4430)] = 181945, - [SMALL_STATE(4431)] = 181965, - [SMALL_STATE(4432)] = 181977, - [SMALL_STATE(4433)] = 181997, - [SMALL_STATE(4434)] = 182009, - [SMALL_STATE(4435)] = 182029, - [SMALL_STATE(4436)] = 182047, - [SMALL_STATE(4437)] = 182067, - [SMALL_STATE(4438)] = 182087, - [SMALL_STATE(4439)] = 182107, - [SMALL_STATE(4440)] = 182127, - [SMALL_STATE(4441)] = 182139, - [SMALL_STATE(4442)] = 182159, - [SMALL_STATE(4443)] = 182179, - [SMALL_STATE(4444)] = 182191, - [SMALL_STATE(4445)] = 182211, - [SMALL_STATE(4446)] = 182231, - [SMALL_STATE(4447)] = 182251, - [SMALL_STATE(4448)] = 182269, - [SMALL_STATE(4449)] = 182287, - [SMALL_STATE(4450)] = 182299, - [SMALL_STATE(4451)] = 182319, - [SMALL_STATE(4452)] = 182339, - [SMALL_STATE(4453)] = 182351, - [SMALL_STATE(4454)] = 182363, - [SMALL_STATE(4455)] = 182383, - [SMALL_STATE(4456)] = 182403, - [SMALL_STATE(4457)] = 182423, - [SMALL_STATE(4458)] = 182443, - [SMALL_STATE(4459)] = 182463, - [SMALL_STATE(4460)] = 182483, - [SMALL_STATE(4461)] = 182503, - [SMALL_STATE(4462)] = 182523, - [SMALL_STATE(4463)] = 182543, - [SMALL_STATE(4464)] = 182555, - [SMALL_STATE(4465)] = 182575, - [SMALL_STATE(4466)] = 182595, - [SMALL_STATE(4467)] = 182615, - [SMALL_STATE(4468)] = 182627, - [SMALL_STATE(4469)] = 182643, - [SMALL_STATE(4470)] = 182663, - [SMALL_STATE(4471)] = 182683, - [SMALL_STATE(4472)] = 182695, - [SMALL_STATE(4473)] = 182715, - [SMALL_STATE(4474)] = 182727, - [SMALL_STATE(4475)] = 182747, - [SMALL_STATE(4476)] = 182763, - [SMALL_STATE(4477)] = 182779, - [SMALL_STATE(4478)] = 182799, - [SMALL_STATE(4479)] = 182813, - [SMALL_STATE(4480)] = 182833, - [SMALL_STATE(4481)] = 182845, - [SMALL_STATE(4482)] = 182863, - [SMALL_STATE(4483)] = 182875, - [SMALL_STATE(4484)] = 182895, - [SMALL_STATE(4485)] = 182915, - [SMALL_STATE(4486)] = 182931, - [SMALL_STATE(4487)] = 182951, - [SMALL_STATE(4488)] = 182969, - [SMALL_STATE(4489)] = 182989, - [SMALL_STATE(4490)] = 183001, - [SMALL_STATE(4491)] = 183019, - [SMALL_STATE(4492)] = 183035, - [SMALL_STATE(4493)] = 183053, - [SMALL_STATE(4494)] = 183065, - [SMALL_STATE(4495)] = 183085, - [SMALL_STATE(4496)] = 183105, - [SMALL_STATE(4497)] = 183125, - [SMALL_STATE(4498)] = 183145, - [SMALL_STATE(4499)] = 183165, - [SMALL_STATE(4500)] = 183177, - [SMALL_STATE(4501)] = 183191, - [SMALL_STATE(4502)] = 183207, - [SMALL_STATE(4503)] = 183227, - [SMALL_STATE(4504)] = 183245, - [SMALL_STATE(4505)] = 183259, - [SMALL_STATE(4506)] = 183271, - [SMALL_STATE(4507)] = 183291, - [SMALL_STATE(4508)] = 183303, - [SMALL_STATE(4509)] = 183315, - [SMALL_STATE(4510)] = 183327, - [SMALL_STATE(4511)] = 183339, - [SMALL_STATE(4512)] = 183359, - [SMALL_STATE(4513)] = 183379, - [SMALL_STATE(4514)] = 183399, - [SMALL_STATE(4515)] = 183411, - [SMALL_STATE(4516)] = 183431, - [SMALL_STATE(4517)] = 183443, - [SMALL_STATE(4518)] = 183463, - [SMALL_STATE(4519)] = 183483, - [SMALL_STATE(4520)] = 183503, - [SMALL_STATE(4521)] = 183523, - [SMALL_STATE(4522)] = 183543, - [SMALL_STATE(4523)] = 183555, - [SMALL_STATE(4524)] = 183575, - [SMALL_STATE(4525)] = 183587, - [SMALL_STATE(4526)] = 183607, - [SMALL_STATE(4527)] = 183623, - [SMALL_STATE(4528)] = 183641, - [SMALL_STATE(4529)] = 183659, - [SMALL_STATE(4530)] = 183679, - [SMALL_STATE(4531)] = 183691, - [SMALL_STATE(4532)] = 183711, - [SMALL_STATE(4533)] = 183723, - [SMALL_STATE(4534)] = 183735, - [SMALL_STATE(4535)] = 183755, - [SMALL_STATE(4536)] = 183767, - [SMALL_STATE(4537)] = 183779, - [SMALL_STATE(4538)] = 183791, - [SMALL_STATE(4539)] = 183805, - [SMALL_STATE(4540)] = 183823, - [SMALL_STATE(4541)] = 183841, - [SMALL_STATE(4542)] = 183861, - [SMALL_STATE(4543)] = 183881, - [SMALL_STATE(4544)] = 183892, - [SMALL_STATE(4545)] = 183903, - [SMALL_STATE(4546)] = 183914, - [SMALL_STATE(4547)] = 183931, - [SMALL_STATE(4548)] = 183942, - [SMALL_STATE(4549)] = 183959, - [SMALL_STATE(4550)] = 183974, - [SMALL_STATE(4551)] = 183985, - [SMALL_STATE(4552)] = 184002, - [SMALL_STATE(4553)] = 184013, - [SMALL_STATE(4554)] = 184024, - [SMALL_STATE(4555)] = 184041, - [SMALL_STATE(4556)] = 184056, - [SMALL_STATE(4557)] = 184067, - [SMALL_STATE(4558)] = 184078, - [SMALL_STATE(4559)] = 184089, - [SMALL_STATE(4560)] = 184100, - [SMALL_STATE(4561)] = 184111, - [SMALL_STATE(4562)] = 184126, - [SMALL_STATE(4563)] = 184143, - [SMALL_STATE(4564)] = 184154, - [SMALL_STATE(4565)] = 184171, - [SMALL_STATE(4566)] = 184188, - [SMALL_STATE(4567)] = 184199, - [SMALL_STATE(4568)] = 184214, - [SMALL_STATE(4569)] = 184231, - [SMALL_STATE(4570)] = 184248, - [SMALL_STATE(4571)] = 184265, - [SMALL_STATE(4572)] = 184278, - [SMALL_STATE(4573)] = 184295, - [SMALL_STATE(4574)] = 184312, - [SMALL_STATE(4575)] = 184329, - [SMALL_STATE(4576)] = 184346, - [SMALL_STATE(4577)] = 184361, - [SMALL_STATE(4578)] = 184372, - [SMALL_STATE(4579)] = 184383, - [SMALL_STATE(4580)] = 184394, - [SMALL_STATE(4581)] = 184411, - [SMALL_STATE(4582)] = 184428, - [SMALL_STATE(4583)] = 184439, - [SMALL_STATE(4584)] = 184454, - [SMALL_STATE(4585)] = 184471, - [SMALL_STATE(4586)] = 184482, - [SMALL_STATE(4587)] = 184497, - [SMALL_STATE(4588)] = 184508, - [SMALL_STATE(4589)] = 184525, - [SMALL_STATE(4590)] = 184540, - [SMALL_STATE(4591)] = 184551, - [SMALL_STATE(4592)] = 184562, - [SMALL_STATE(4593)] = 184573, - [SMALL_STATE(4594)] = 184584, - [SMALL_STATE(4595)] = 184599, - [SMALL_STATE(4596)] = 184610, - [SMALL_STATE(4597)] = 184621, - [SMALL_STATE(4598)] = 184632, - [SMALL_STATE(4599)] = 184649, - [SMALL_STATE(4600)] = 184660, - [SMALL_STATE(4601)] = 184677, - [SMALL_STATE(4602)] = 184694, - [SMALL_STATE(4603)] = 184709, - [SMALL_STATE(4604)] = 184720, - [SMALL_STATE(4605)] = 184731, - [SMALL_STATE(4606)] = 184742, - [SMALL_STATE(4607)] = 184757, - [SMALL_STATE(4608)] = 184768, - [SMALL_STATE(4609)] = 184779, - [SMALL_STATE(4610)] = 184790, - [SMALL_STATE(4611)] = 184801, - [SMALL_STATE(4612)] = 184812, - [SMALL_STATE(4613)] = 184823, - [SMALL_STATE(4614)] = 184834, - [SMALL_STATE(4615)] = 184845, - [SMALL_STATE(4616)] = 184862, - [SMALL_STATE(4617)] = 184873, - [SMALL_STATE(4618)] = 184884, - [SMALL_STATE(4619)] = 184901, - [SMALL_STATE(4620)] = 184916, - [SMALL_STATE(4621)] = 184931, - [SMALL_STATE(4622)] = 184946, - [SMALL_STATE(4623)] = 184957, - [SMALL_STATE(4624)] = 184968, - [SMALL_STATE(4625)] = 184979, - [SMALL_STATE(4626)] = 184996, - [SMALL_STATE(4627)] = 185013, - [SMALL_STATE(4628)] = 185028, - [SMALL_STATE(4629)] = 185039, - [SMALL_STATE(4630)] = 185054, - [SMALL_STATE(4631)] = 185071, - [SMALL_STATE(4632)] = 185086, - [SMALL_STATE(4633)] = 185097, - [SMALL_STATE(4634)] = 185108, - [SMALL_STATE(4635)] = 185119, - [SMALL_STATE(4636)] = 185134, - [SMALL_STATE(4637)] = 185147, - [SMALL_STATE(4638)] = 185164, - [SMALL_STATE(4639)] = 185175, - [SMALL_STATE(4640)] = 185192, - [SMALL_STATE(4641)] = 185207, - [SMALL_STATE(4642)] = 185222, - [SMALL_STATE(4643)] = 185235, - [SMALL_STATE(4644)] = 185250, - [SMALL_STATE(4645)] = 185265, - [SMALL_STATE(4646)] = 185280, - [SMALL_STATE(4647)] = 185295, - [SMALL_STATE(4648)] = 185306, - [SMALL_STATE(4649)] = 185317, - [SMALL_STATE(4650)] = 185334, - [SMALL_STATE(4651)] = 185345, - [SMALL_STATE(4652)] = 185356, - [SMALL_STATE(4653)] = 185373, - [SMALL_STATE(4654)] = 185384, - [SMALL_STATE(4655)] = 185401, - [SMALL_STATE(4656)] = 185414, - [SMALL_STATE(4657)] = 185425, - [SMALL_STATE(4658)] = 185442, - [SMALL_STATE(4659)] = 185459, - [SMALL_STATE(4660)] = 185470, - [SMALL_STATE(4661)] = 185485, - [SMALL_STATE(4662)] = 185496, - [SMALL_STATE(4663)] = 185511, - [SMALL_STATE(4664)] = 185526, - [SMALL_STATE(4665)] = 185541, - [SMALL_STATE(4666)] = 185558, - [SMALL_STATE(4667)] = 185573, - [SMALL_STATE(4668)] = 185590, - [SMALL_STATE(4669)] = 185601, - [SMALL_STATE(4670)] = 185616, - [SMALL_STATE(4671)] = 185633, - [SMALL_STATE(4672)] = 185650, - [SMALL_STATE(4673)] = 185665, - [SMALL_STATE(4674)] = 185682, - [SMALL_STATE(4675)] = 185699, - [SMALL_STATE(4676)] = 185710, - [SMALL_STATE(4677)] = 185727, - [SMALL_STATE(4678)] = 185738, - [SMALL_STATE(4679)] = 185749, - [SMALL_STATE(4680)] = 185766, - [SMALL_STATE(4681)] = 185777, - [SMALL_STATE(4682)] = 185792, - [SMALL_STATE(4683)] = 185803, - [SMALL_STATE(4684)] = 185814, - [SMALL_STATE(4685)] = 185829, - [SMALL_STATE(4686)] = 185840, - [SMALL_STATE(4687)] = 185851, - [SMALL_STATE(4688)] = 185862, - [SMALL_STATE(4689)] = 185873, - [SMALL_STATE(4690)] = 185884, - [SMALL_STATE(4691)] = 185895, - [SMALL_STATE(4692)] = 185906, - [SMALL_STATE(4693)] = 185917, - [SMALL_STATE(4694)] = 185928, - [SMALL_STATE(4695)] = 185943, - [SMALL_STATE(4696)] = 185960, - [SMALL_STATE(4697)] = 185971, - [SMALL_STATE(4698)] = 185982, - [SMALL_STATE(4699)] = 185993, - [SMALL_STATE(4700)] = 186004, - [SMALL_STATE(4701)] = 186019, - [SMALL_STATE(4702)] = 186036, - [SMALL_STATE(4703)] = 186051, - [SMALL_STATE(4704)] = 186062, - [SMALL_STATE(4705)] = 186079, - [SMALL_STATE(4706)] = 186090, - [SMALL_STATE(4707)] = 186105, - [SMALL_STATE(4708)] = 186122, - [SMALL_STATE(4709)] = 186139, - [SMALL_STATE(4710)] = 186152, - [SMALL_STATE(4711)] = 186169, - [SMALL_STATE(4712)] = 186184, - [SMALL_STATE(4713)] = 186199, - [SMALL_STATE(4714)] = 186214, - [SMALL_STATE(4715)] = 186225, - [SMALL_STATE(4716)] = 186236, - [SMALL_STATE(4717)] = 186250, - [SMALL_STATE(4718)] = 186264, - [SMALL_STATE(4719)] = 186278, - [SMALL_STATE(4720)] = 186292, - [SMALL_STATE(4721)] = 186304, - [SMALL_STATE(4722)] = 186318, - [SMALL_STATE(4723)] = 186332, - [SMALL_STATE(4724)] = 186346, - [SMALL_STATE(4725)] = 186356, - [SMALL_STATE(4726)] = 186370, - [SMALL_STATE(4727)] = 186384, - [SMALL_STATE(4728)] = 186398, - [SMALL_STATE(4729)] = 186412, - [SMALL_STATE(4730)] = 186426, - [SMALL_STATE(4731)] = 186440, - [SMALL_STATE(4732)] = 186454, - [SMALL_STATE(4733)] = 186468, - [SMALL_STATE(4734)] = 186482, - [SMALL_STATE(4735)] = 186496, - [SMALL_STATE(4736)] = 186510, - [SMALL_STATE(4737)] = 186524, - [SMALL_STATE(4738)] = 186538, - [SMALL_STATE(4739)] = 186552, - [SMALL_STATE(4740)] = 186566, - [SMALL_STATE(4741)] = 186580, - [SMALL_STATE(4742)] = 186594, - [SMALL_STATE(4743)] = 186608, - [SMALL_STATE(4744)] = 186622, - [SMALL_STATE(4745)] = 186636, - [SMALL_STATE(4746)] = 186650, - [SMALL_STATE(4747)] = 186664, - [SMALL_STATE(4748)] = 186678, - [SMALL_STATE(4749)] = 186692, - [SMALL_STATE(4750)] = 186706, - [SMALL_STATE(4751)] = 186720, - [SMALL_STATE(4752)] = 186732, - [SMALL_STATE(4753)] = 186746, - [SMALL_STATE(4754)] = 186760, - [SMALL_STATE(4755)] = 186774, - [SMALL_STATE(4756)] = 186788, - [SMALL_STATE(4757)] = 186802, - [SMALL_STATE(4758)] = 186816, - [SMALL_STATE(4759)] = 186830, - [SMALL_STATE(4760)] = 186844, - [SMALL_STATE(4761)] = 186858, - [SMALL_STATE(4762)] = 186872, - [SMALL_STATE(4763)] = 186886, - [SMALL_STATE(4764)] = 186900, - [SMALL_STATE(4765)] = 186914, - [SMALL_STATE(4766)] = 186928, - [SMALL_STATE(4767)] = 186942, - [SMALL_STATE(4768)] = 186956, - [SMALL_STATE(4769)] = 186970, - [SMALL_STATE(4770)] = 186984, - [SMALL_STATE(4771)] = 186998, - [SMALL_STATE(4772)] = 187010, - [SMALL_STATE(4773)] = 187024, - [SMALL_STATE(4774)] = 187038, - [SMALL_STATE(4775)] = 187052, - [SMALL_STATE(4776)] = 187066, - [SMALL_STATE(4777)] = 187080, - [SMALL_STATE(4778)] = 187092, - [SMALL_STATE(4779)] = 187106, - [SMALL_STATE(4780)] = 187120, - [SMALL_STATE(4781)] = 187134, - [SMALL_STATE(4782)] = 187148, - [SMALL_STATE(4783)] = 187162, - [SMALL_STATE(4784)] = 187176, - [SMALL_STATE(4785)] = 187190, - [SMALL_STATE(4786)] = 187204, - [SMALL_STATE(4787)] = 187218, - [SMALL_STATE(4788)] = 187232, - [SMALL_STATE(4789)] = 187246, - [SMALL_STATE(4790)] = 187260, - [SMALL_STATE(4791)] = 187274, - [SMALL_STATE(4792)] = 187286, - [SMALL_STATE(4793)] = 187300, - [SMALL_STATE(4794)] = 187314, - [SMALL_STATE(4795)] = 187328, - [SMALL_STATE(4796)] = 187342, - [SMALL_STATE(4797)] = 187356, - [SMALL_STATE(4798)] = 187370, - [SMALL_STATE(4799)] = 187384, - [SMALL_STATE(4800)] = 187398, - [SMALL_STATE(4801)] = 187412, - [SMALL_STATE(4802)] = 187426, - [SMALL_STATE(4803)] = 187440, - [SMALL_STATE(4804)] = 187454, - [SMALL_STATE(4805)] = 187468, - [SMALL_STATE(4806)] = 187482, - [SMALL_STATE(4807)] = 187496, - [SMALL_STATE(4808)] = 187510, - [SMALL_STATE(4809)] = 187524, - [SMALL_STATE(4810)] = 187538, - [SMALL_STATE(4811)] = 187552, - [SMALL_STATE(4812)] = 187566, - [SMALL_STATE(4813)] = 187580, - [SMALL_STATE(4814)] = 187594, - [SMALL_STATE(4815)] = 187608, - [SMALL_STATE(4816)] = 187622, - [SMALL_STATE(4817)] = 187636, - [SMALL_STATE(4818)] = 187650, - [SMALL_STATE(4819)] = 187664, - [SMALL_STATE(4820)] = 187678, - [SMALL_STATE(4821)] = 187688, - [SMALL_STATE(4822)] = 187700, - [SMALL_STATE(4823)] = 187714, - [SMALL_STATE(4824)] = 187728, - [SMALL_STATE(4825)] = 187742, - [SMALL_STATE(4826)] = 187756, - [SMALL_STATE(4827)] = 187770, - [SMALL_STATE(4828)] = 187784, - [SMALL_STATE(4829)] = 187798, - [SMALL_STATE(4830)] = 187812, - [SMALL_STATE(4831)] = 187826, - [SMALL_STATE(4832)] = 187840, - [SMALL_STATE(4833)] = 187854, - [SMALL_STATE(4834)] = 187868, - [SMALL_STATE(4835)] = 187882, - [SMALL_STATE(4836)] = 187896, - [SMALL_STATE(4837)] = 187910, - [SMALL_STATE(4838)] = 187924, - [SMALL_STATE(4839)] = 187938, - [SMALL_STATE(4840)] = 187952, - [SMALL_STATE(4841)] = 187966, - [SMALL_STATE(4842)] = 187976, - [SMALL_STATE(4843)] = 187990, - [SMALL_STATE(4844)] = 188004, - [SMALL_STATE(4845)] = 188016, - [SMALL_STATE(4846)] = 188030, - [SMALL_STATE(4847)] = 188042, - [SMALL_STATE(4848)] = 188056, - [SMALL_STATE(4849)] = 188070, - [SMALL_STATE(4850)] = 188084, - [SMALL_STATE(4851)] = 188098, - [SMALL_STATE(4852)] = 188110, - [SMALL_STATE(4853)] = 188124, - [SMALL_STATE(4854)] = 188138, - [SMALL_STATE(4855)] = 188152, - [SMALL_STATE(4856)] = 188164, - [SMALL_STATE(4857)] = 188178, - [SMALL_STATE(4858)] = 188192, - [SMALL_STATE(4859)] = 188206, - [SMALL_STATE(4860)] = 188218, - [SMALL_STATE(4861)] = 188232, - [SMALL_STATE(4862)] = 188246, - [SMALL_STATE(4863)] = 188260, - [SMALL_STATE(4864)] = 188272, - [SMALL_STATE(4865)] = 188286, - [SMALL_STATE(4866)] = 188300, - [SMALL_STATE(4867)] = 188314, - [SMALL_STATE(4868)] = 188328, - [SMALL_STATE(4869)] = 188342, - [SMALL_STATE(4870)] = 188356, - [SMALL_STATE(4871)] = 188370, - [SMALL_STATE(4872)] = 188384, - [SMALL_STATE(4873)] = 188398, - [SMALL_STATE(4874)] = 188410, - [SMALL_STATE(4875)] = 188424, - [SMALL_STATE(4876)] = 188438, - [SMALL_STATE(4877)] = 188452, - [SMALL_STATE(4878)] = 188466, - [SMALL_STATE(4879)] = 188480, - [SMALL_STATE(4880)] = 188494, - [SMALL_STATE(4881)] = 188508, - [SMALL_STATE(4882)] = 188522, - [SMALL_STATE(4883)] = 188536, - [SMALL_STATE(4884)] = 188550, - [SMALL_STATE(4885)] = 188564, - [SMALL_STATE(4886)] = 188578, - [SMALL_STATE(4887)] = 188592, - [SMALL_STATE(4888)] = 188606, - [SMALL_STATE(4889)] = 188620, - [SMALL_STATE(4890)] = 188632, - [SMALL_STATE(4891)] = 188642, - [SMALL_STATE(4892)] = 188656, - [SMALL_STATE(4893)] = 188666, - [SMALL_STATE(4894)] = 188680, - [SMALL_STATE(4895)] = 188694, - [SMALL_STATE(4896)] = 188708, - [SMALL_STATE(4897)] = 188722, - [SMALL_STATE(4898)] = 188736, - [SMALL_STATE(4899)] = 188750, - [SMALL_STATE(4900)] = 188764, - [SMALL_STATE(4901)] = 188778, - [SMALL_STATE(4902)] = 188792, - [SMALL_STATE(4903)] = 188806, - [SMALL_STATE(4904)] = 188820, - [SMALL_STATE(4905)] = 188834, - [SMALL_STATE(4906)] = 188848, - [SMALL_STATE(4907)] = 188862, - [SMALL_STATE(4908)] = 188874, - [SMALL_STATE(4909)] = 188888, - [SMALL_STATE(4910)] = 188902, - [SMALL_STATE(4911)] = 188916, - [SMALL_STATE(4912)] = 188930, - [SMALL_STATE(4913)] = 188944, - [SMALL_STATE(4914)] = 188958, - [SMALL_STATE(4915)] = 188972, - [SMALL_STATE(4916)] = 188986, - [SMALL_STATE(4917)] = 189000, - [SMALL_STATE(4918)] = 189014, - [SMALL_STATE(4919)] = 189028, - [SMALL_STATE(4920)] = 189042, - [SMALL_STATE(4921)] = 189056, - [SMALL_STATE(4922)] = 189070, - [SMALL_STATE(4923)] = 189084, - [SMALL_STATE(4924)] = 189098, - [SMALL_STATE(4925)] = 189112, - [SMALL_STATE(4926)] = 189126, - [SMALL_STATE(4927)] = 189140, - [SMALL_STATE(4928)] = 189154, - [SMALL_STATE(4929)] = 189168, - [SMALL_STATE(4930)] = 189182, - [SMALL_STATE(4931)] = 189196, - [SMALL_STATE(4932)] = 189210, - [SMALL_STATE(4933)] = 189224, - [SMALL_STATE(4934)] = 189238, - [SMALL_STATE(4935)] = 189250, - [SMALL_STATE(4936)] = 189264, - [SMALL_STATE(4937)] = 189278, - [SMALL_STATE(4938)] = 189292, - [SMALL_STATE(4939)] = 189306, - [SMALL_STATE(4940)] = 189320, - [SMALL_STATE(4941)] = 189334, - [SMALL_STATE(4942)] = 189346, - [SMALL_STATE(4943)] = 189358, - [SMALL_STATE(4944)] = 189372, - [SMALL_STATE(4945)] = 189384, - [SMALL_STATE(4946)] = 189398, - [SMALL_STATE(4947)] = 189412, - [SMALL_STATE(4948)] = 189426, - [SMALL_STATE(4949)] = 189440, - [SMALL_STATE(4950)] = 189454, - [SMALL_STATE(4951)] = 189468, - [SMALL_STATE(4952)] = 189482, - [SMALL_STATE(4953)] = 189496, - [SMALL_STATE(4954)] = 189510, - [SMALL_STATE(4955)] = 189524, - [SMALL_STATE(4956)] = 189538, - [SMALL_STATE(4957)] = 189552, - [SMALL_STATE(4958)] = 189566, - [SMALL_STATE(4959)] = 189580, - [SMALL_STATE(4960)] = 189594, - [SMALL_STATE(4961)] = 189608, - [SMALL_STATE(4962)] = 189622, - [SMALL_STATE(4963)] = 189636, - [SMALL_STATE(4964)] = 189650, - [SMALL_STATE(4965)] = 189664, - [SMALL_STATE(4966)] = 189678, - [SMALL_STATE(4967)] = 189692, - [SMALL_STATE(4968)] = 189706, - [SMALL_STATE(4969)] = 189720, - [SMALL_STATE(4970)] = 189734, - [SMALL_STATE(4971)] = 189748, - [SMALL_STATE(4972)] = 189762, - [SMALL_STATE(4973)] = 189772, - [SMALL_STATE(4974)] = 189786, - [SMALL_STATE(4975)] = 189800, - [SMALL_STATE(4976)] = 189814, - [SMALL_STATE(4977)] = 189828, - [SMALL_STATE(4978)] = 189842, - [SMALL_STATE(4979)] = 189856, - [SMALL_STATE(4980)] = 189870, - [SMALL_STATE(4981)] = 189884, - [SMALL_STATE(4982)] = 189898, - [SMALL_STATE(4983)] = 189912, - [SMALL_STATE(4984)] = 189926, - [SMALL_STATE(4985)] = 189940, - [SMALL_STATE(4986)] = 189954, - [SMALL_STATE(4987)] = 189968, - [SMALL_STATE(4988)] = 189982, - [SMALL_STATE(4989)] = 189996, - [SMALL_STATE(4990)] = 190010, - [SMALL_STATE(4991)] = 190024, - [SMALL_STATE(4992)] = 190038, - [SMALL_STATE(4993)] = 190052, - [SMALL_STATE(4994)] = 190066, - [SMALL_STATE(4995)] = 190080, - [SMALL_STATE(4996)] = 190094, - [SMALL_STATE(4997)] = 190108, - [SMALL_STATE(4998)] = 190122, - [SMALL_STATE(4999)] = 190136, - [SMALL_STATE(5000)] = 190150, - [SMALL_STATE(5001)] = 190160, - [SMALL_STATE(5002)] = 190174, - [SMALL_STATE(5003)] = 190188, - [SMALL_STATE(5004)] = 190202, - [SMALL_STATE(5005)] = 190216, - [SMALL_STATE(5006)] = 190230, - [SMALL_STATE(5007)] = 190244, - [SMALL_STATE(5008)] = 190258, - [SMALL_STATE(5009)] = 190272, - [SMALL_STATE(5010)] = 190286, - [SMALL_STATE(5011)] = 190300, - [SMALL_STATE(5012)] = 190314, - [SMALL_STATE(5013)] = 190328, - [SMALL_STATE(5014)] = 190342, - [SMALL_STATE(5015)] = 190356, - [SMALL_STATE(5016)] = 190370, - [SMALL_STATE(5017)] = 190384, - [SMALL_STATE(5018)] = 190398, - [SMALL_STATE(5019)] = 190412, - [SMALL_STATE(5020)] = 190426, - [SMALL_STATE(5021)] = 190440, - [SMALL_STATE(5022)] = 190454, - [SMALL_STATE(5023)] = 190468, - [SMALL_STATE(5024)] = 190482, - [SMALL_STATE(5025)] = 190496, - [SMALL_STATE(5026)] = 190510, - [SMALL_STATE(5027)] = 190524, - [SMALL_STATE(5028)] = 190538, - [SMALL_STATE(5029)] = 190552, - [SMALL_STATE(5030)] = 190566, - [SMALL_STATE(5031)] = 190580, - [SMALL_STATE(5032)] = 190594, - [SMALL_STATE(5033)] = 190608, - [SMALL_STATE(5034)] = 190622, - [SMALL_STATE(5035)] = 190636, - [SMALL_STATE(5036)] = 190650, - [SMALL_STATE(5037)] = 190664, - [SMALL_STATE(5038)] = 190678, - [SMALL_STATE(5039)] = 190692, - [SMALL_STATE(5040)] = 190706, - [SMALL_STATE(5041)] = 190720, - [SMALL_STATE(5042)] = 190734, - [SMALL_STATE(5043)] = 190748, - [SMALL_STATE(5044)] = 190762, - [SMALL_STATE(5045)] = 190776, - [SMALL_STATE(5046)] = 190790, - [SMALL_STATE(5047)] = 190804, - [SMALL_STATE(5048)] = 190818, - [SMALL_STATE(5049)] = 190832, - [SMALL_STATE(5050)] = 190846, - [SMALL_STATE(5051)] = 190860, - [SMALL_STATE(5052)] = 190874, - [SMALL_STATE(5053)] = 190888, - [SMALL_STATE(5054)] = 190902, - [SMALL_STATE(5055)] = 190916, - [SMALL_STATE(5056)] = 190930, - [SMALL_STATE(5057)] = 190944, - [SMALL_STATE(5058)] = 190958, - [SMALL_STATE(5059)] = 190972, - [SMALL_STATE(5060)] = 190986, - [SMALL_STATE(5061)] = 191000, - [SMALL_STATE(5062)] = 191014, - [SMALL_STATE(5063)] = 191028, - [SMALL_STATE(5064)] = 191042, - [SMALL_STATE(5065)] = 191056, - [SMALL_STATE(5066)] = 191070, - [SMALL_STATE(5067)] = 191084, - [SMALL_STATE(5068)] = 191098, - [SMALL_STATE(5069)] = 191112, - [SMALL_STATE(5070)] = 191126, - [SMALL_STATE(5071)] = 191140, - [SMALL_STATE(5072)] = 191154, - [SMALL_STATE(5073)] = 191168, - [SMALL_STATE(5074)] = 191182, - [SMALL_STATE(5075)] = 191196, - [SMALL_STATE(5076)] = 191210, - [SMALL_STATE(5077)] = 191224, - [SMALL_STATE(5078)] = 191238, - [SMALL_STATE(5079)] = 191252, - [SMALL_STATE(5080)] = 191266, - [SMALL_STATE(5081)] = 191280, - [SMALL_STATE(5082)] = 191292, - [SMALL_STATE(5083)] = 191306, - [SMALL_STATE(5084)] = 191320, - [SMALL_STATE(5085)] = 191334, - [SMALL_STATE(5086)] = 191348, - [SMALL_STATE(5087)] = 191362, - [SMALL_STATE(5088)] = 191376, - [SMALL_STATE(5089)] = 191390, - [SMALL_STATE(5090)] = 191404, - [SMALL_STATE(5091)] = 191418, - [SMALL_STATE(5092)] = 191432, - [SMALL_STATE(5093)] = 191446, - [SMALL_STATE(5094)] = 191458, - [SMALL_STATE(5095)] = 191472, - [SMALL_STATE(5096)] = 191486, - [SMALL_STATE(5097)] = 191500, - [SMALL_STATE(5098)] = 191514, - [SMALL_STATE(5099)] = 191528, - [SMALL_STATE(5100)] = 191542, - [SMALL_STATE(5101)] = 191556, - [SMALL_STATE(5102)] = 191570, - [SMALL_STATE(5103)] = 191584, - [SMALL_STATE(5104)] = 191598, - [SMALL_STATE(5105)] = 191612, - [SMALL_STATE(5106)] = 191626, - [SMALL_STATE(5107)] = 191640, - [SMALL_STATE(5108)] = 191654, - [SMALL_STATE(5109)] = 191668, - [SMALL_STATE(5110)] = 191682, - [SMALL_STATE(5111)] = 191696, - [SMALL_STATE(5112)] = 191710, - [SMALL_STATE(5113)] = 191724, - [SMALL_STATE(5114)] = 191738, - [SMALL_STATE(5115)] = 191752, - [SMALL_STATE(5116)] = 191766, - [SMALL_STATE(5117)] = 191780, - [SMALL_STATE(5118)] = 191794, - [SMALL_STATE(5119)] = 191808, - [SMALL_STATE(5120)] = 191822, - [SMALL_STATE(5121)] = 191834, - [SMALL_STATE(5122)] = 191844, - [SMALL_STATE(5123)] = 191858, - [SMALL_STATE(5124)] = 191872, - [SMALL_STATE(5125)] = 191886, - [SMALL_STATE(5126)] = 191900, - [SMALL_STATE(5127)] = 191914, - [SMALL_STATE(5128)] = 191928, - [SMALL_STATE(5129)] = 191942, - [SMALL_STATE(5130)] = 191956, - [SMALL_STATE(5131)] = 191970, - [SMALL_STATE(5132)] = 191984, - [SMALL_STATE(5133)] = 191998, - [SMALL_STATE(5134)] = 192012, - [SMALL_STATE(5135)] = 192026, - [SMALL_STATE(5136)] = 192040, - [SMALL_STATE(5137)] = 192054, - [SMALL_STATE(5138)] = 192068, - [SMALL_STATE(5139)] = 192082, - [SMALL_STATE(5140)] = 192096, - [SMALL_STATE(5141)] = 192110, - [SMALL_STATE(5142)] = 192120, - [SMALL_STATE(5143)] = 192134, - [SMALL_STATE(5144)] = 192144, - [SMALL_STATE(5145)] = 192158, - [SMALL_STATE(5146)] = 192172, - [SMALL_STATE(5147)] = 192186, - [SMALL_STATE(5148)] = 192200, - [SMALL_STATE(5149)] = 192210, - [SMALL_STATE(5150)] = 192222, - [SMALL_STATE(5151)] = 192236, - [SMALL_STATE(5152)] = 192250, - [SMALL_STATE(5153)] = 192264, - [SMALL_STATE(5154)] = 192278, - [SMALL_STATE(5155)] = 192288, - [SMALL_STATE(5156)] = 192302, - [SMALL_STATE(5157)] = 192316, - [SMALL_STATE(5158)] = 192330, - [SMALL_STATE(5159)] = 192344, - [SMALL_STATE(5160)] = 192358, - [SMALL_STATE(5161)] = 192372, - [SMALL_STATE(5162)] = 192386, - [SMALL_STATE(5163)] = 192400, - [SMALL_STATE(5164)] = 192414, - [SMALL_STATE(5165)] = 192428, - [SMALL_STATE(5166)] = 192442, - [SMALL_STATE(5167)] = 192456, - [SMALL_STATE(5168)] = 192470, - [SMALL_STATE(5169)] = 192484, - [SMALL_STATE(5170)] = 192498, - [SMALL_STATE(5171)] = 192512, - [SMALL_STATE(5172)] = 192522, - [SMALL_STATE(5173)] = 192536, - [SMALL_STATE(5174)] = 192550, - [SMALL_STATE(5175)] = 192564, - [SMALL_STATE(5176)] = 192576, - [SMALL_STATE(5177)] = 192590, - [SMALL_STATE(5178)] = 192604, - [SMALL_STATE(5179)] = 192616, - [SMALL_STATE(5180)] = 192628, - [SMALL_STATE(5181)] = 192642, - [SMALL_STATE(5182)] = 192656, - [SMALL_STATE(5183)] = 192670, - [SMALL_STATE(5184)] = 192684, - [SMALL_STATE(5185)] = 192698, - [SMALL_STATE(5186)] = 192712, - [SMALL_STATE(5187)] = 192726, - [SMALL_STATE(5188)] = 192740, - [SMALL_STATE(5189)] = 192754, - [SMALL_STATE(5190)] = 192768, - [SMALL_STATE(5191)] = 192782, - [SMALL_STATE(5192)] = 192794, - [SMALL_STATE(5193)] = 192808, - [SMALL_STATE(5194)] = 192822, - [SMALL_STATE(5195)] = 192836, - [SMALL_STATE(5196)] = 192850, - [SMALL_STATE(5197)] = 192864, - [SMALL_STATE(5198)] = 192878, - [SMALL_STATE(5199)] = 192892, - [SMALL_STATE(5200)] = 192906, - [SMALL_STATE(5201)] = 192920, - [SMALL_STATE(5202)] = 192930, - [SMALL_STATE(5203)] = 192944, - [SMALL_STATE(5204)] = 192958, - [SMALL_STATE(5205)] = 192970, - [SMALL_STATE(5206)] = 192984, - [SMALL_STATE(5207)] = 192998, - [SMALL_STATE(5208)] = 193012, - [SMALL_STATE(5209)] = 193026, - [SMALL_STATE(5210)] = 193040, - [SMALL_STATE(5211)] = 193054, - [SMALL_STATE(5212)] = 193068, - [SMALL_STATE(5213)] = 193082, - [SMALL_STATE(5214)] = 193096, - [SMALL_STATE(5215)] = 193110, - [SMALL_STATE(5216)] = 193122, - [SMALL_STATE(5217)] = 193134, - [SMALL_STATE(5218)] = 193148, - [SMALL_STATE(5219)] = 193162, - [SMALL_STATE(5220)] = 193176, - [SMALL_STATE(5221)] = 193190, - [SMALL_STATE(5222)] = 193204, - [SMALL_STATE(5223)] = 193218, - [SMALL_STATE(5224)] = 193232, - [SMALL_STATE(5225)] = 193246, - [SMALL_STATE(5226)] = 193260, - [SMALL_STATE(5227)] = 193274, - [SMALL_STATE(5228)] = 193288, - [SMALL_STATE(5229)] = 193302, - [SMALL_STATE(5230)] = 193313, - [SMALL_STATE(5231)] = 193322, - [SMALL_STATE(5232)] = 193333, - [SMALL_STATE(5233)] = 193344, - [SMALL_STATE(5234)] = 193353, - [SMALL_STATE(5235)] = 193364, - [SMALL_STATE(5236)] = 193375, - [SMALL_STATE(5237)] = 193384, - [SMALL_STATE(5238)] = 193395, - [SMALL_STATE(5239)] = 193406, - [SMALL_STATE(5240)] = 193417, - [SMALL_STATE(5241)] = 193428, - [SMALL_STATE(5242)] = 193439, - [SMALL_STATE(5243)] = 193448, - [SMALL_STATE(5244)] = 193459, - [SMALL_STATE(5245)] = 193470, - [SMALL_STATE(5246)] = 193481, - [SMALL_STATE(5247)] = 193492, - [SMALL_STATE(5248)] = 193503, - [SMALL_STATE(5249)] = 193512, - [SMALL_STATE(5250)] = 193523, - [SMALL_STATE(5251)] = 193532, - [SMALL_STATE(5252)] = 193543, - [SMALL_STATE(5253)] = 193554, - [SMALL_STATE(5254)] = 193563, - [SMALL_STATE(5255)] = 193572, - [SMALL_STATE(5256)] = 193581, - [SMALL_STATE(5257)] = 193592, - [SMALL_STATE(5258)] = 193601, - [SMALL_STATE(5259)] = 193612, - [SMALL_STATE(5260)] = 193621, - [SMALL_STATE(5261)] = 193632, - [SMALL_STATE(5262)] = 193641, - [SMALL_STATE(5263)] = 193652, - [SMALL_STATE(5264)] = 193663, - [SMALL_STATE(5265)] = 193674, - [SMALL_STATE(5266)] = 193683, - [SMALL_STATE(5267)] = 193692, - [SMALL_STATE(5268)] = 193701, - [SMALL_STATE(5269)] = 193712, - [SMALL_STATE(5270)] = 193721, - [SMALL_STATE(5271)] = 193732, - [SMALL_STATE(5272)] = 193741, - [SMALL_STATE(5273)] = 193752, - [SMALL_STATE(5274)] = 193763, - [SMALL_STATE(5275)] = 193772, - [SMALL_STATE(5276)] = 193783, - [SMALL_STATE(5277)] = 193792, - [SMALL_STATE(5278)] = 193803, - [SMALL_STATE(5279)] = 193814, - [SMALL_STATE(5280)] = 193823, - [SMALL_STATE(5281)] = 193834, - [SMALL_STATE(5282)] = 193843, - [SMALL_STATE(5283)] = 193854, - [SMALL_STATE(5284)] = 193865, - [SMALL_STATE(5285)] = 193876, - [SMALL_STATE(5286)] = 193885, - [SMALL_STATE(5287)] = 193896, - [SMALL_STATE(5288)] = 193907, - [SMALL_STATE(5289)] = 193916, - [SMALL_STATE(5290)] = 193927, - [SMALL_STATE(5291)] = 193938, - [SMALL_STATE(5292)] = 193947, - [SMALL_STATE(5293)] = 193958, - [SMALL_STATE(5294)] = 193969, - [SMALL_STATE(5295)] = 193980, - [SMALL_STATE(5296)] = 193989, - [SMALL_STATE(5297)] = 193998, - [SMALL_STATE(5298)] = 194009, - [SMALL_STATE(5299)] = 194020, - [SMALL_STATE(5300)] = 194031, - [SMALL_STATE(5301)] = 194042, - [SMALL_STATE(5302)] = 194053, - [SMALL_STATE(5303)] = 194064, - [SMALL_STATE(5304)] = 194075, - [SMALL_STATE(5305)] = 194086, - [SMALL_STATE(5306)] = 194097, - [SMALL_STATE(5307)] = 194108, - [SMALL_STATE(5308)] = 194119, - [SMALL_STATE(5309)] = 194130, - [SMALL_STATE(5310)] = 194141, - [SMALL_STATE(5311)] = 194152, - [SMALL_STATE(5312)] = 194163, - [SMALL_STATE(5313)] = 194174, - [SMALL_STATE(5314)] = 194183, - [SMALL_STATE(5315)] = 194192, - [SMALL_STATE(5316)] = 194203, - [SMALL_STATE(5317)] = 194212, - [SMALL_STATE(5318)] = 194221, - [SMALL_STATE(5319)] = 194230, - [SMALL_STATE(5320)] = 194239, - [SMALL_STATE(5321)] = 194250, - [SMALL_STATE(5322)] = 194261, - [SMALL_STATE(5323)] = 194272, - [SMALL_STATE(5324)] = 194283, - [SMALL_STATE(5325)] = 194294, - [SMALL_STATE(5326)] = 194305, - [SMALL_STATE(5327)] = 194316, - [SMALL_STATE(5328)] = 194325, - [SMALL_STATE(5329)] = 194336, - [SMALL_STATE(5330)] = 194345, - [SMALL_STATE(5331)] = 194356, - [SMALL_STATE(5332)] = 194365, - [SMALL_STATE(5333)] = 194374, - [SMALL_STATE(5334)] = 194385, - [SMALL_STATE(5335)] = 194396, - [SMALL_STATE(5336)] = 194407, - [SMALL_STATE(5337)] = 194418, - [SMALL_STATE(5338)] = 194429, - [SMALL_STATE(5339)] = 194440, - [SMALL_STATE(5340)] = 194449, - [SMALL_STATE(5341)] = 194458, - [SMALL_STATE(5342)] = 194467, - [SMALL_STATE(5343)] = 194478, - [SMALL_STATE(5344)] = 194489, - [SMALL_STATE(5345)] = 194500, - [SMALL_STATE(5346)] = 194511, - [SMALL_STATE(5347)] = 194520, - [SMALL_STATE(5348)] = 194531, - [SMALL_STATE(5349)] = 194542, - [SMALL_STATE(5350)] = 194551, - [SMALL_STATE(5351)] = 194562, - [SMALL_STATE(5352)] = 194571, - [SMALL_STATE(5353)] = 194582, - [SMALL_STATE(5354)] = 194593, - [SMALL_STATE(5355)] = 194604, - [SMALL_STATE(5356)] = 194615, - [SMALL_STATE(5357)] = 194624, - [SMALL_STATE(5358)] = 194633, - [SMALL_STATE(5359)] = 194642, - [SMALL_STATE(5360)] = 194653, - [SMALL_STATE(5361)] = 194662, - [SMALL_STATE(5362)] = 194673, - [SMALL_STATE(5363)] = 194684, - [SMALL_STATE(5364)] = 194695, - [SMALL_STATE(5365)] = 194706, - [SMALL_STATE(5366)] = 194715, - [SMALL_STATE(5367)] = 194724, - [SMALL_STATE(5368)] = 194735, - [SMALL_STATE(5369)] = 194746, - [SMALL_STATE(5370)] = 194755, - [SMALL_STATE(5371)] = 194764, - [SMALL_STATE(5372)] = 194775, - [SMALL_STATE(5373)] = 194786, - [SMALL_STATE(5374)] = 194797, - [SMALL_STATE(5375)] = 194806, - [SMALL_STATE(5376)] = 194815, - [SMALL_STATE(5377)] = 194826, - [SMALL_STATE(5378)] = 194835, - [SMALL_STATE(5379)] = 194846, - [SMALL_STATE(5380)] = 194855, - [SMALL_STATE(5381)] = 194866, - [SMALL_STATE(5382)] = 194877, - [SMALL_STATE(5383)] = 194886, - [SMALL_STATE(5384)] = 194897, - [SMALL_STATE(5385)] = 194908, - [SMALL_STATE(5386)] = 194917, - [SMALL_STATE(5387)] = 194928, - [SMALL_STATE(5388)] = 194937, - [SMALL_STATE(5389)] = 194946, - [SMALL_STATE(5390)] = 194955, - [SMALL_STATE(5391)] = 194964, - [SMALL_STATE(5392)] = 194975, - [SMALL_STATE(5393)] = 194984, - [SMALL_STATE(5394)] = 194995, - [SMALL_STATE(5395)] = 195006, - [SMALL_STATE(5396)] = 195017, - [SMALL_STATE(5397)] = 195026, - [SMALL_STATE(5398)] = 195035, - [SMALL_STATE(5399)] = 195046, - [SMALL_STATE(5400)] = 195055, - [SMALL_STATE(5401)] = 195064, - [SMALL_STATE(5402)] = 195073, - [SMALL_STATE(5403)] = 195084, - [SMALL_STATE(5404)] = 195093, - [SMALL_STATE(5405)] = 195102, - [SMALL_STATE(5406)] = 195113, - [SMALL_STATE(5407)] = 195122, - [SMALL_STATE(5408)] = 195131, - [SMALL_STATE(5409)] = 195140, - [SMALL_STATE(5410)] = 195149, - [SMALL_STATE(5411)] = 195160, - [SMALL_STATE(5412)] = 195171, - [SMALL_STATE(5413)] = 195180, - [SMALL_STATE(5414)] = 195189, - [SMALL_STATE(5415)] = 195200, - [SMALL_STATE(5416)] = 195209, - [SMALL_STATE(5417)] = 195218, - [SMALL_STATE(5418)] = 195229, - [SMALL_STATE(5419)] = 195238, - [SMALL_STATE(5420)] = 195247, - [SMALL_STATE(5421)] = 195256, - [SMALL_STATE(5422)] = 195267, - [SMALL_STATE(5423)] = 195278, - [SMALL_STATE(5424)] = 195287, - [SMALL_STATE(5425)] = 195298, - [SMALL_STATE(5426)] = 195309, - [SMALL_STATE(5427)] = 195320, - [SMALL_STATE(5428)] = 195331, - [SMALL_STATE(5429)] = 195342, - [SMALL_STATE(5430)] = 195353, - [SMALL_STATE(5431)] = 195364, - [SMALL_STATE(5432)] = 195375, - [SMALL_STATE(5433)] = 195386, - [SMALL_STATE(5434)] = 195397, - [SMALL_STATE(5435)] = 195408, - [SMALL_STATE(5436)] = 195419, - [SMALL_STATE(5437)] = 195430, - [SMALL_STATE(5438)] = 195439, - [SMALL_STATE(5439)] = 195448, - [SMALL_STATE(5440)] = 195457, - [SMALL_STATE(5441)] = 195468, - [SMALL_STATE(5442)] = 195479, - [SMALL_STATE(5443)] = 195490, - [SMALL_STATE(5444)] = 195501, - [SMALL_STATE(5445)] = 195510, - [SMALL_STATE(5446)] = 195519, - [SMALL_STATE(5447)] = 195528, - [SMALL_STATE(5448)] = 195537, - [SMALL_STATE(5449)] = 195546, - [SMALL_STATE(5450)] = 195555, - [SMALL_STATE(5451)] = 195564, - [SMALL_STATE(5452)] = 195573, - [SMALL_STATE(5453)] = 195584, - [SMALL_STATE(5454)] = 195593, - [SMALL_STATE(5455)] = 195604, - [SMALL_STATE(5456)] = 195613, - [SMALL_STATE(5457)] = 195624, - [SMALL_STATE(5458)] = 195633, - [SMALL_STATE(5459)] = 195642, - [SMALL_STATE(5460)] = 195651, - [SMALL_STATE(5461)] = 195662, - [SMALL_STATE(5462)] = 195671, - [SMALL_STATE(5463)] = 195682, - [SMALL_STATE(5464)] = 195693, - [SMALL_STATE(5465)] = 195702, - [SMALL_STATE(5466)] = 195711, - [SMALL_STATE(5467)] = 195722, - [SMALL_STATE(5468)] = 195731, - [SMALL_STATE(5469)] = 195739, - [SMALL_STATE(5470)] = 195747, - [SMALL_STATE(5471)] = 195755, - [SMALL_STATE(5472)] = 195763, - [SMALL_STATE(5473)] = 195771, - [SMALL_STATE(5474)] = 195779, - [SMALL_STATE(5475)] = 195787, - [SMALL_STATE(5476)] = 195795, - [SMALL_STATE(5477)] = 195803, - [SMALL_STATE(5478)] = 195811, - [SMALL_STATE(5479)] = 195819, - [SMALL_STATE(5480)] = 195827, - [SMALL_STATE(5481)] = 195835, - [SMALL_STATE(5482)] = 195843, - [SMALL_STATE(5483)] = 195851, - [SMALL_STATE(5484)] = 195859, - [SMALL_STATE(5485)] = 195867, - [SMALL_STATE(5486)] = 195875, - [SMALL_STATE(5487)] = 195883, - [SMALL_STATE(5488)] = 195891, - [SMALL_STATE(5489)] = 195899, - [SMALL_STATE(5490)] = 195907, - [SMALL_STATE(5491)] = 195915, - [SMALL_STATE(5492)] = 195923, - [SMALL_STATE(5493)] = 195931, - [SMALL_STATE(5494)] = 195939, - [SMALL_STATE(5495)] = 195947, - [SMALL_STATE(5496)] = 195955, - [SMALL_STATE(5497)] = 195963, - [SMALL_STATE(5498)] = 195971, - [SMALL_STATE(5499)] = 195979, - [SMALL_STATE(5500)] = 195987, - [SMALL_STATE(5501)] = 195995, - [SMALL_STATE(5502)] = 196003, - [SMALL_STATE(5503)] = 196011, - [SMALL_STATE(5504)] = 196019, - [SMALL_STATE(5505)] = 196027, - [SMALL_STATE(5506)] = 196035, - [SMALL_STATE(5507)] = 196043, - [SMALL_STATE(5508)] = 196051, - [SMALL_STATE(5509)] = 196059, - [SMALL_STATE(5510)] = 196067, - [SMALL_STATE(5511)] = 196075, - [SMALL_STATE(5512)] = 196083, - [SMALL_STATE(5513)] = 196091, - [SMALL_STATE(5514)] = 196099, - [SMALL_STATE(5515)] = 196107, - [SMALL_STATE(5516)] = 196115, - [SMALL_STATE(5517)] = 196123, - [SMALL_STATE(5518)] = 196131, - [SMALL_STATE(5519)] = 196139, - [SMALL_STATE(5520)] = 196147, - [SMALL_STATE(5521)] = 196155, - [SMALL_STATE(5522)] = 196163, - [SMALL_STATE(5523)] = 196171, - [SMALL_STATE(5524)] = 196179, - [SMALL_STATE(5525)] = 196187, - [SMALL_STATE(5526)] = 196195, - [SMALL_STATE(5527)] = 196203, - [SMALL_STATE(5528)] = 196211, - [SMALL_STATE(5529)] = 196219, - [SMALL_STATE(5530)] = 196227, - [SMALL_STATE(5531)] = 196235, - [SMALL_STATE(5532)] = 196243, - [SMALL_STATE(5533)] = 196251, - [SMALL_STATE(5534)] = 196259, - [SMALL_STATE(5535)] = 196267, - [SMALL_STATE(5536)] = 196275, - [SMALL_STATE(5537)] = 196283, - [SMALL_STATE(5538)] = 196291, - [SMALL_STATE(5539)] = 196299, - [SMALL_STATE(5540)] = 196307, - [SMALL_STATE(5541)] = 196315, - [SMALL_STATE(5542)] = 196323, - [SMALL_STATE(5543)] = 196331, - [SMALL_STATE(5544)] = 196339, - [SMALL_STATE(5545)] = 196347, - [SMALL_STATE(5546)] = 196355, - [SMALL_STATE(5547)] = 196363, - [SMALL_STATE(5548)] = 196371, - [SMALL_STATE(5549)] = 196379, - [SMALL_STATE(5550)] = 196387, - [SMALL_STATE(5551)] = 196395, - [SMALL_STATE(5552)] = 196403, - [SMALL_STATE(5553)] = 196411, - [SMALL_STATE(5554)] = 196419, - [SMALL_STATE(5555)] = 196427, - [SMALL_STATE(5556)] = 196435, - [SMALL_STATE(5557)] = 196443, - [SMALL_STATE(5558)] = 196451, - [SMALL_STATE(5559)] = 196459, - [SMALL_STATE(5560)] = 196467, - [SMALL_STATE(5561)] = 196475, - [SMALL_STATE(5562)] = 196483, - [SMALL_STATE(5563)] = 196491, - [SMALL_STATE(5564)] = 196499, - [SMALL_STATE(5565)] = 196507, - [SMALL_STATE(5566)] = 196515, - [SMALL_STATE(5567)] = 196523, - [SMALL_STATE(5568)] = 196531, - [SMALL_STATE(5569)] = 196539, - [SMALL_STATE(5570)] = 196547, - [SMALL_STATE(5571)] = 196555, - [SMALL_STATE(5572)] = 196563, - [SMALL_STATE(5573)] = 196571, - [SMALL_STATE(5574)] = 196579, - [SMALL_STATE(5575)] = 196587, - [SMALL_STATE(5576)] = 196595, - [SMALL_STATE(5577)] = 196603, - [SMALL_STATE(5578)] = 196611, - [SMALL_STATE(5579)] = 196619, - [SMALL_STATE(5580)] = 196627, - [SMALL_STATE(5581)] = 196635, - [SMALL_STATE(5582)] = 196643, - [SMALL_STATE(5583)] = 196651, - [SMALL_STATE(5584)] = 196659, - [SMALL_STATE(5585)] = 196667, - [SMALL_STATE(5586)] = 196675, - [SMALL_STATE(5587)] = 196683, - [SMALL_STATE(5588)] = 196691, - [SMALL_STATE(5589)] = 196699, - [SMALL_STATE(5590)] = 196707, - [SMALL_STATE(5591)] = 196715, - [SMALL_STATE(5592)] = 196723, - [SMALL_STATE(5593)] = 196731, - [SMALL_STATE(5594)] = 196739, - [SMALL_STATE(5595)] = 196747, - [SMALL_STATE(5596)] = 196755, - [SMALL_STATE(5597)] = 196763, - [SMALL_STATE(5598)] = 196771, - [SMALL_STATE(5599)] = 196779, - [SMALL_STATE(5600)] = 196787, - [SMALL_STATE(5601)] = 196795, - [SMALL_STATE(5602)] = 196803, - [SMALL_STATE(5603)] = 196811, - [SMALL_STATE(5604)] = 196819, - [SMALL_STATE(5605)] = 196827, - [SMALL_STATE(5606)] = 196835, - [SMALL_STATE(5607)] = 196843, - [SMALL_STATE(5608)] = 196851, - [SMALL_STATE(5609)] = 196859, - [SMALL_STATE(5610)] = 196867, - [SMALL_STATE(5611)] = 196875, - [SMALL_STATE(5612)] = 196883, - [SMALL_STATE(5613)] = 196891, - [SMALL_STATE(5614)] = 196899, - [SMALL_STATE(5615)] = 196907, - [SMALL_STATE(5616)] = 196915, - [SMALL_STATE(5617)] = 196923, - [SMALL_STATE(5618)] = 196931, - [SMALL_STATE(5619)] = 196939, - [SMALL_STATE(5620)] = 196947, - [SMALL_STATE(5621)] = 196955, - [SMALL_STATE(5622)] = 196963, - [SMALL_STATE(5623)] = 196971, - [SMALL_STATE(5624)] = 196979, - [SMALL_STATE(5625)] = 196987, - [SMALL_STATE(5626)] = 196995, - [SMALL_STATE(5627)] = 197003, - [SMALL_STATE(5628)] = 197011, - [SMALL_STATE(5629)] = 197019, - [SMALL_STATE(5630)] = 197027, - [SMALL_STATE(5631)] = 197035, - [SMALL_STATE(5632)] = 197043, - [SMALL_STATE(5633)] = 197051, - [SMALL_STATE(5634)] = 197059, - [SMALL_STATE(5635)] = 197067, - [SMALL_STATE(5636)] = 197075, - [SMALL_STATE(5637)] = 197083, - [SMALL_STATE(5638)] = 197091, - [SMALL_STATE(5639)] = 197099, - [SMALL_STATE(5640)] = 197107, - [SMALL_STATE(5641)] = 197115, - [SMALL_STATE(5642)] = 197123, - [SMALL_STATE(5643)] = 197131, - [SMALL_STATE(5644)] = 197139, - [SMALL_STATE(5645)] = 197147, - [SMALL_STATE(5646)] = 197155, - [SMALL_STATE(5647)] = 197163, - [SMALL_STATE(5648)] = 197171, - [SMALL_STATE(5649)] = 197179, - [SMALL_STATE(5650)] = 197187, - [SMALL_STATE(5651)] = 197195, - [SMALL_STATE(5652)] = 197203, - [SMALL_STATE(5653)] = 197211, - [SMALL_STATE(5654)] = 197219, - [SMALL_STATE(5655)] = 197227, - [SMALL_STATE(5656)] = 197235, - [SMALL_STATE(5657)] = 197243, - [SMALL_STATE(5658)] = 197251, - [SMALL_STATE(5659)] = 197259, - [SMALL_STATE(5660)] = 197267, - [SMALL_STATE(5661)] = 197275, - [SMALL_STATE(5662)] = 197283, - [SMALL_STATE(5663)] = 197291, - [SMALL_STATE(5664)] = 197299, - [SMALL_STATE(5665)] = 197307, - [SMALL_STATE(5666)] = 197315, - [SMALL_STATE(5667)] = 197323, - [SMALL_STATE(5668)] = 197331, - [SMALL_STATE(5669)] = 197339, - [SMALL_STATE(5670)] = 197347, - [SMALL_STATE(5671)] = 197355, - [SMALL_STATE(5672)] = 197363, - [SMALL_STATE(5673)] = 197371, - [SMALL_STATE(5674)] = 197379, - [SMALL_STATE(5675)] = 197387, - [SMALL_STATE(5676)] = 197395, - [SMALL_STATE(5677)] = 197403, - [SMALL_STATE(5678)] = 197411, - [SMALL_STATE(5679)] = 197419, - [SMALL_STATE(5680)] = 197427, - [SMALL_STATE(5681)] = 197435, - [SMALL_STATE(5682)] = 197443, - [SMALL_STATE(5683)] = 197451, - [SMALL_STATE(5684)] = 197459, - [SMALL_STATE(5685)] = 197467, - [SMALL_STATE(5686)] = 197475, - [SMALL_STATE(5687)] = 197483, - [SMALL_STATE(5688)] = 197491, - [SMALL_STATE(5689)] = 197499, - [SMALL_STATE(5690)] = 197507, - [SMALL_STATE(5691)] = 197515, - [SMALL_STATE(5692)] = 197523, - [SMALL_STATE(5693)] = 197531, - [SMALL_STATE(5694)] = 197539, - [SMALL_STATE(5695)] = 197547, - [SMALL_STATE(5696)] = 197555, - [SMALL_STATE(5697)] = 197563, - [SMALL_STATE(5698)] = 197571, - [SMALL_STATE(5699)] = 197579, - [SMALL_STATE(5700)] = 197587, - [SMALL_STATE(5701)] = 197595, - [SMALL_STATE(5702)] = 197603, - [SMALL_STATE(5703)] = 197611, - [SMALL_STATE(5704)] = 197619, - [SMALL_STATE(5705)] = 197627, - [SMALL_STATE(5706)] = 197635, - [SMALL_STATE(5707)] = 197643, - [SMALL_STATE(5708)] = 197651, - [SMALL_STATE(5709)] = 197659, - [SMALL_STATE(5710)] = 197667, - [SMALL_STATE(5711)] = 197675, - [SMALL_STATE(5712)] = 197683, - [SMALL_STATE(5713)] = 197691, - [SMALL_STATE(5714)] = 197699, - [SMALL_STATE(5715)] = 197707, - [SMALL_STATE(5716)] = 197715, - [SMALL_STATE(5717)] = 197723, - [SMALL_STATE(5718)] = 197731, - [SMALL_STATE(5719)] = 197739, - [SMALL_STATE(5720)] = 197747, - [SMALL_STATE(5721)] = 197755, - [SMALL_STATE(5722)] = 197763, - [SMALL_STATE(5723)] = 197771, - [SMALL_STATE(5724)] = 197779, - [SMALL_STATE(5725)] = 197787, - [SMALL_STATE(5726)] = 197795, - [SMALL_STATE(5727)] = 197803, - [SMALL_STATE(5728)] = 197811, - [SMALL_STATE(5729)] = 197819, - [SMALL_STATE(5730)] = 197827, - [SMALL_STATE(5731)] = 197835, - [SMALL_STATE(5732)] = 197843, - [SMALL_STATE(5733)] = 197851, - [SMALL_STATE(5734)] = 197859, - [SMALL_STATE(5735)] = 197867, - [SMALL_STATE(5736)] = 197875, - [SMALL_STATE(5737)] = 197883, - [SMALL_STATE(5738)] = 197891, - [SMALL_STATE(5739)] = 197899, - [SMALL_STATE(5740)] = 197907, - [SMALL_STATE(5741)] = 197915, - [SMALL_STATE(5742)] = 197923, - [SMALL_STATE(5743)] = 197931, - [SMALL_STATE(5744)] = 197939, - [SMALL_STATE(5745)] = 197947, - [SMALL_STATE(5746)] = 197955, - [SMALL_STATE(5747)] = 197963, - [SMALL_STATE(5748)] = 197971, - [SMALL_STATE(5749)] = 197979, - [SMALL_STATE(5750)] = 197987, - [SMALL_STATE(5751)] = 197995, - [SMALL_STATE(5752)] = 198003, - [SMALL_STATE(5753)] = 198011, - [SMALL_STATE(5754)] = 198019, - [SMALL_STATE(5755)] = 198027, - [SMALL_STATE(5756)] = 198035, - [SMALL_STATE(5757)] = 198043, - [SMALL_STATE(5758)] = 198051, - [SMALL_STATE(5759)] = 198059, - [SMALL_STATE(5760)] = 198067, - [SMALL_STATE(5761)] = 198075, - [SMALL_STATE(5762)] = 198083, - [SMALL_STATE(5763)] = 198091, - [SMALL_STATE(5764)] = 198099, - [SMALL_STATE(5765)] = 198107, - [SMALL_STATE(5766)] = 198115, - [SMALL_STATE(5767)] = 198123, - [SMALL_STATE(5768)] = 198131, - [SMALL_STATE(5769)] = 198139, - [SMALL_STATE(5770)] = 198147, - [SMALL_STATE(5771)] = 198155, - [SMALL_STATE(5772)] = 198163, - [SMALL_STATE(5773)] = 198171, - [SMALL_STATE(5774)] = 198179, - [SMALL_STATE(5775)] = 198187, - [SMALL_STATE(5776)] = 198195, - [SMALL_STATE(5777)] = 198203, - [SMALL_STATE(5778)] = 198211, - [SMALL_STATE(5779)] = 198219, - [SMALL_STATE(5780)] = 198227, - [SMALL_STATE(5781)] = 198235, - [SMALL_STATE(5782)] = 198243, - [SMALL_STATE(5783)] = 198251, - [SMALL_STATE(5784)] = 198259, - [SMALL_STATE(5785)] = 198267, - [SMALL_STATE(5786)] = 198275, - [SMALL_STATE(5787)] = 198283, - [SMALL_STATE(5788)] = 198291, - [SMALL_STATE(5789)] = 198299, - [SMALL_STATE(5790)] = 198307, - [SMALL_STATE(5791)] = 198315, - [SMALL_STATE(5792)] = 198323, - [SMALL_STATE(5793)] = 198331, - [SMALL_STATE(5794)] = 198339, - [SMALL_STATE(5795)] = 198347, - [SMALL_STATE(5796)] = 198355, - [SMALL_STATE(5797)] = 198363, - [SMALL_STATE(5798)] = 198371, - [SMALL_STATE(5799)] = 198379, - [SMALL_STATE(5800)] = 198387, - [SMALL_STATE(5801)] = 198395, - [SMALL_STATE(5802)] = 198403, - [SMALL_STATE(5803)] = 198411, - [SMALL_STATE(5804)] = 198419, - [SMALL_STATE(5805)] = 198427, - [SMALL_STATE(5806)] = 198435, - [SMALL_STATE(5807)] = 198443, - [SMALL_STATE(5808)] = 198451, - [SMALL_STATE(5809)] = 198459, - [SMALL_STATE(5810)] = 198467, - [SMALL_STATE(5811)] = 198475, - [SMALL_STATE(5812)] = 198483, - [SMALL_STATE(5813)] = 198491, - [SMALL_STATE(5814)] = 198499, - [SMALL_STATE(5815)] = 198507, - [SMALL_STATE(5816)] = 198515, - [SMALL_STATE(5817)] = 198523, - [SMALL_STATE(5818)] = 198531, - [SMALL_STATE(5819)] = 198539, - [SMALL_STATE(5820)] = 198547, - [SMALL_STATE(5821)] = 198555, - [SMALL_STATE(5822)] = 198563, - [SMALL_STATE(5823)] = 198571, - [SMALL_STATE(5824)] = 198579, - [SMALL_STATE(5825)] = 198587, - [SMALL_STATE(5826)] = 198595, + [SMALL_STATE(1163)] = 0, + [SMALL_STATE(1164)] = 121, + [SMALL_STATE(1165)] = 192, + [SMALL_STATE(1166)] = 263, + [SMALL_STATE(1167)] = 334, + [SMALL_STATE(1168)] = 405, + [SMALL_STATE(1169)] = 476, + [SMALL_STATE(1170)] = 547, + [SMALL_STATE(1171)] = 666, + [SMALL_STATE(1172)] = 737, + [SMALL_STATE(1173)] = 808, + [SMALL_STATE(1174)] = 879, + [SMALL_STATE(1175)] = 950, + [SMALL_STATE(1176)] = 1021, + [SMALL_STATE(1177)] = 1092, + [SMALL_STATE(1178)] = 1163, + [SMALL_STATE(1179)] = 1234, + [SMALL_STATE(1180)] = 1305, + [SMALL_STATE(1181)] = 1376, + [SMALL_STATE(1182)] = 1447, + [SMALL_STATE(1183)] = 1518, + [SMALL_STATE(1184)] = 1589, + [SMALL_STATE(1185)] = 1660, + [SMALL_STATE(1186)] = 1731, + [SMALL_STATE(1187)] = 1802, + [SMALL_STATE(1188)] = 1873, + [SMALL_STATE(1189)] = 1944, + [SMALL_STATE(1190)] = 2015, + [SMALL_STATE(1191)] = 2086, + [SMALL_STATE(1192)] = 2157, + [SMALL_STATE(1193)] = 2228, + [SMALL_STATE(1194)] = 2299, + [SMALL_STATE(1195)] = 2370, + [SMALL_STATE(1196)] = 2489, + [SMALL_STATE(1197)] = 2560, + [SMALL_STATE(1198)] = 2631, + [SMALL_STATE(1199)] = 2702, + [SMALL_STATE(1200)] = 2773, + [SMALL_STATE(1201)] = 2844, + [SMALL_STATE(1202)] = 2915, + [SMALL_STATE(1203)] = 2986, + [SMALL_STATE(1204)] = 3057, + [SMALL_STATE(1205)] = 3128, + [SMALL_STATE(1206)] = 3199, + [SMALL_STATE(1207)] = 3270, + [SMALL_STATE(1208)] = 3341, + [SMALL_STATE(1209)] = 3412, + [SMALL_STATE(1210)] = 3483, + [SMALL_STATE(1211)] = 3554, + [SMALL_STATE(1212)] = 3625, + [SMALL_STATE(1213)] = 3696, + [SMALL_STATE(1214)] = 3767, + [SMALL_STATE(1215)] = 3838, + [SMALL_STATE(1216)] = 3909, + [SMALL_STATE(1217)] = 3980, + [SMALL_STATE(1218)] = 4051, + [SMALL_STATE(1219)] = 4122, + [SMALL_STATE(1220)] = 4193, + [SMALL_STATE(1221)] = 4264, + [SMALL_STATE(1222)] = 4383, + [SMALL_STATE(1223)] = 4454, + [SMALL_STATE(1224)] = 4525, + [SMALL_STATE(1225)] = 4596, + [SMALL_STATE(1226)] = 4667, + [SMALL_STATE(1227)] = 4738, + [SMALL_STATE(1228)] = 4809, + [SMALL_STATE(1229)] = 4880, + [SMALL_STATE(1230)] = 4951, + [SMALL_STATE(1231)] = 5022, + [SMALL_STATE(1232)] = 5093, + [SMALL_STATE(1233)] = 5164, + [SMALL_STATE(1234)] = 5235, + [SMALL_STATE(1235)] = 5306, + [SMALL_STATE(1236)] = 5377, + [SMALL_STATE(1237)] = 5448, + [SMALL_STATE(1238)] = 5519, + [SMALL_STATE(1239)] = 5590, + [SMALL_STATE(1240)] = 5661, + [SMALL_STATE(1241)] = 5732, + [SMALL_STATE(1242)] = 5803, + [SMALL_STATE(1243)] = 5874, + [SMALL_STATE(1244)] = 5993, + [SMALL_STATE(1245)] = 6064, + [SMALL_STATE(1246)] = 6135, + [SMALL_STATE(1247)] = 6206, + [SMALL_STATE(1248)] = 6277, + [SMALL_STATE(1249)] = 6348, + [SMALL_STATE(1250)] = 6467, + [SMALL_STATE(1251)] = 6538, + [SMALL_STATE(1252)] = 6659, + [SMALL_STATE(1253)] = 6730, + [SMALL_STATE(1254)] = 6801, + [SMALL_STATE(1255)] = 6872, + [SMALL_STATE(1256)] = 6983, + [SMALL_STATE(1257)] = 7054, + [SMALL_STATE(1258)] = 7125, + [SMALL_STATE(1259)] = 7246, + [SMALL_STATE(1260)] = 7365, + [SMALL_STATE(1261)] = 7436, + [SMALL_STATE(1262)] = 7555, + [SMALL_STATE(1263)] = 7626, + [SMALL_STATE(1264)] = 7697, + [SMALL_STATE(1265)] = 7768, + [SMALL_STATE(1266)] = 7839, + [SMALL_STATE(1267)] = 7960, + [SMALL_STATE(1268)] = 8031, + [SMALL_STATE(1269)] = 8102, + [SMALL_STATE(1270)] = 8221, + [SMALL_STATE(1271)] = 8292, + [SMALL_STATE(1272)] = 8413, + [SMALL_STATE(1273)] = 8532, + [SMALL_STATE(1274)] = 8603, + [SMALL_STATE(1275)] = 8724, + [SMALL_STATE(1276)] = 8843, + [SMALL_STATE(1277)] = 8964, + [SMALL_STATE(1278)] = 9035, + [SMALL_STATE(1279)] = 9106, + [SMALL_STATE(1280)] = 9225, + [SMALL_STATE(1281)] = 9296, + [SMALL_STATE(1282)] = 9367, + [SMALL_STATE(1283)] = 9486, + [SMALL_STATE(1284)] = 9607, + [SMALL_STATE(1285)] = 9678, + [SMALL_STATE(1286)] = 9751, + [SMALL_STATE(1287)] = 9872, + [SMALL_STATE(1288)] = 9991, + [SMALL_STATE(1289)] = 10062, + [SMALL_STATE(1290)] = 10133, + [SMALL_STATE(1291)] = 10252, + [SMALL_STATE(1292)] = 10323, + [SMALL_STATE(1293)] = 10394, + [SMALL_STATE(1294)] = 10465, + [SMALL_STATE(1295)] = 10536, + [SMALL_STATE(1296)] = 10607, + [SMALL_STATE(1297)] = 10726, + [SMALL_STATE(1298)] = 10797, + [SMALL_STATE(1299)] = 10868, + [SMALL_STATE(1300)] = 10987, + [SMALL_STATE(1301)] = 11058, + [SMALL_STATE(1302)] = 11129, + [SMALL_STATE(1303)] = 11200, + [SMALL_STATE(1304)] = 11319, + [SMALL_STATE(1305)] = 11428, + [SMALL_STATE(1306)] = 11547, + [SMALL_STATE(1307)] = 11618, + [SMALL_STATE(1308)] = 11689, + [SMALL_STATE(1309)] = 11760, + [SMALL_STATE(1310)] = 11879, + [SMALL_STATE(1311)] = 11950, + [SMALL_STATE(1312)] = 12069, + [SMALL_STATE(1313)] = 12140, + [SMALL_STATE(1314)] = 12211, + [SMALL_STATE(1315)] = 12282, + [SMALL_STATE(1316)] = 12353, + [SMALL_STATE(1317)] = 12424, + [SMALL_STATE(1318)] = 12495, + [SMALL_STATE(1319)] = 12566, + [SMALL_STATE(1320)] = 12637, + [SMALL_STATE(1321)] = 12708, + [SMALL_STATE(1322)] = 12779, + [SMALL_STATE(1323)] = 12850, + [SMALL_STATE(1324)] = 12921, + [SMALL_STATE(1325)] = 12992, + [SMALL_STATE(1326)] = 13063, + [SMALL_STATE(1327)] = 13134, + [SMALL_STATE(1328)] = 13205, + [SMALL_STATE(1329)] = 13276, + [SMALL_STATE(1330)] = 13347, + [SMALL_STATE(1331)] = 13418, + [SMALL_STATE(1332)] = 13489, + [SMALL_STATE(1333)] = 13560, + [SMALL_STATE(1334)] = 13671, + [SMALL_STATE(1335)] = 13780, + [SMALL_STATE(1336)] = 13851, + [SMALL_STATE(1337)] = 13922, + [SMALL_STATE(1338)] = 13993, + [SMALL_STATE(1339)] = 14064, + [SMALL_STATE(1340)] = 14135, + [SMALL_STATE(1341)] = 14206, + [SMALL_STATE(1342)] = 14325, + [SMALL_STATE(1343)] = 14396, + [SMALL_STATE(1344)] = 14467, + [SMALL_STATE(1345)] = 14538, + [SMALL_STATE(1346)] = 14609, + [SMALL_STATE(1347)] = 14730, + [SMALL_STATE(1348)] = 14801, + [SMALL_STATE(1349)] = 14872, + [SMALL_STATE(1350)] = 14943, + [SMALL_STATE(1351)] = 15062, + [SMALL_STATE(1352)] = 15133, + [SMALL_STATE(1353)] = 15204, + [SMALL_STATE(1354)] = 15275, + [SMALL_STATE(1355)] = 15346, + [SMALL_STATE(1356)] = 15417, + [SMALL_STATE(1357)] = 15488, + [SMALL_STATE(1358)] = 15559, + [SMALL_STATE(1359)] = 15630, + [SMALL_STATE(1360)] = 15701, + [SMALL_STATE(1361)] = 15820, + [SMALL_STATE(1362)] = 15891, + [SMALL_STATE(1363)] = 15964, + [SMALL_STATE(1364)] = 16035, + [SMALL_STATE(1365)] = 16154, + [SMALL_STATE(1366)] = 16225, + [SMALL_STATE(1367)] = 16296, + [SMALL_STATE(1368)] = 16367, + [SMALL_STATE(1369)] = 16438, + [SMALL_STATE(1370)] = 16557, + [SMALL_STATE(1371)] = 16676, + [SMALL_STATE(1372)] = 16747, + [SMALL_STATE(1373)] = 16818, + [SMALL_STATE(1374)] = 16889, + [SMALL_STATE(1375)] = 17008, + [SMALL_STATE(1376)] = 17079, + [SMALL_STATE(1377)] = 17150, + [SMALL_STATE(1378)] = 17221, + [SMALL_STATE(1379)] = 17292, + [SMALL_STATE(1380)] = 17363, + [SMALL_STATE(1381)] = 17434, + [SMALL_STATE(1382)] = 17505, + [SMALL_STATE(1383)] = 17624, + [SMALL_STATE(1384)] = 17695, + [SMALL_STATE(1385)] = 17766, + [SMALL_STATE(1386)] = 17837, + [SMALL_STATE(1387)] = 17908, + [SMALL_STATE(1388)] = 18029, + [SMALL_STATE(1389)] = 18100, + [SMALL_STATE(1390)] = 18171, + [SMALL_STATE(1391)] = 18292, + [SMALL_STATE(1392)] = 18363, + [SMALL_STATE(1393)] = 18434, + [SMALL_STATE(1394)] = 18555, + [SMALL_STATE(1395)] = 18626, + [SMALL_STATE(1396)] = 18747, + [SMALL_STATE(1397)] = 18818, + [SMALL_STATE(1398)] = 18939, + [SMALL_STATE(1399)] = 19010, + [SMALL_STATE(1400)] = 19131, + [SMALL_STATE(1401)] = 19202, + [SMALL_STATE(1402)] = 19323, + [SMALL_STATE(1403)] = 19444, + [SMALL_STATE(1404)] = 19565, + [SMALL_STATE(1405)] = 19686, + [SMALL_STATE(1406)] = 19807, + [SMALL_STATE(1407)] = 19878, + [SMALL_STATE(1408)] = 19949, + [SMALL_STATE(1409)] = 20070, + [SMALL_STATE(1410)] = 20141, + [SMALL_STATE(1411)] = 20262, + [SMALL_STATE(1412)] = 20333, + [SMALL_STATE(1413)] = 20404, + [SMALL_STATE(1414)] = 20475, + [SMALL_STATE(1415)] = 20546, + [SMALL_STATE(1416)] = 20617, + [SMALL_STATE(1417)] = 20688, + [SMALL_STATE(1418)] = 20759, + [SMALL_STATE(1419)] = 20878, + [SMALL_STATE(1420)] = 20997, + [SMALL_STATE(1421)] = 21116, + [SMALL_STATE(1422)] = 21235, + [SMALL_STATE(1423)] = 21306, + [SMALL_STATE(1424)] = 21377, + [SMALL_STATE(1425)] = 21448, + [SMALL_STATE(1426)] = 21519, + [SMALL_STATE(1427)] = 21590, + [SMALL_STATE(1428)] = 21661, + [SMALL_STATE(1429)] = 21781, + [SMALL_STATE(1430)] = 21851, + [SMALL_STATE(1431)] = 21921, + [SMALL_STATE(1432)] = 21991, + [SMALL_STATE(1433)] = 22061, + [SMALL_STATE(1434)] = 22131, + [SMALL_STATE(1435)] = 22201, + [SMALL_STATE(1436)] = 22271, + [SMALL_STATE(1437)] = 22341, + [SMALL_STATE(1438)] = 22411, + [SMALL_STATE(1439)] = 22481, + [SMALL_STATE(1440)] = 22551, + [SMALL_STATE(1441)] = 22621, + [SMALL_STATE(1442)] = 22691, + [SMALL_STATE(1443)] = 22761, + [SMALL_STATE(1444)] = 22831, + [SMALL_STATE(1445)] = 22901, + [SMALL_STATE(1446)] = 22971, + [SMALL_STATE(1447)] = 23041, + [SMALL_STATE(1448)] = 23159, + [SMALL_STATE(1449)] = 23229, + [SMALL_STATE(1450)] = 23299, + [SMALL_STATE(1451)] = 23369, + [SMALL_STATE(1452)] = 23439, + [SMALL_STATE(1453)] = 23557, + [SMALL_STATE(1454)] = 23627, + [SMALL_STATE(1455)] = 23697, + [SMALL_STATE(1456)] = 23767, + [SMALL_STATE(1457)] = 23837, + [SMALL_STATE(1458)] = 23907, + [SMALL_STATE(1459)] = 23977, + [SMALL_STATE(1460)] = 24047, + [SMALL_STATE(1461)] = 24117, + [SMALL_STATE(1462)] = 24187, + [SMALL_STATE(1463)] = 24257, + [SMALL_STATE(1464)] = 24327, + [SMALL_STATE(1465)] = 24445, + [SMALL_STATE(1466)] = 24563, + [SMALL_STATE(1467)] = 24633, + [SMALL_STATE(1468)] = 24703, + [SMALL_STATE(1469)] = 24773, + [SMALL_STATE(1470)] = 24891, + [SMALL_STATE(1471)] = 24961, + [SMALL_STATE(1472)] = 25031, + [SMALL_STATE(1473)] = 25101, + [SMALL_STATE(1474)] = 25171, + [SMALL_STATE(1475)] = 25241, + [SMALL_STATE(1476)] = 25311, + [SMALL_STATE(1477)] = 25381, + [SMALL_STATE(1478)] = 25451, + [SMALL_STATE(1479)] = 25521, + [SMALL_STATE(1480)] = 25591, + [SMALL_STATE(1481)] = 25661, + [SMALL_STATE(1482)] = 25731, + [SMALL_STATE(1483)] = 25801, + [SMALL_STATE(1484)] = 25871, + [SMALL_STATE(1485)] = 25989, + [SMALL_STATE(1486)] = 26059, + [SMALL_STATE(1487)] = 26129, + [SMALL_STATE(1488)] = 26199, + [SMALL_STATE(1489)] = 26269, + [SMALL_STATE(1490)] = 26339, + [SMALL_STATE(1491)] = 26457, + [SMALL_STATE(1492)] = 26527, + [SMALL_STATE(1493)] = 26597, + [SMALL_STATE(1494)] = 26667, + [SMALL_STATE(1495)] = 26737, + [SMALL_STATE(1496)] = 26807, + [SMALL_STATE(1497)] = 26925, + [SMALL_STATE(1498)] = 26995, + [SMALL_STATE(1499)] = 27065, + [SMALL_STATE(1500)] = 27135, + [SMALL_STATE(1501)] = 27205, + [SMALL_STATE(1502)] = 27275, + [SMALL_STATE(1503)] = 27393, + [SMALL_STATE(1504)] = 27463, + [SMALL_STATE(1505)] = 27533, + [SMALL_STATE(1506)] = 27603, + [SMALL_STATE(1507)] = 27673, + [SMALL_STATE(1508)] = 27743, + [SMALL_STATE(1509)] = 27813, + [SMALL_STATE(1510)] = 27883, + [SMALL_STATE(1511)] = 27953, + [SMALL_STATE(1512)] = 28023, + [SMALL_STATE(1513)] = 28093, + [SMALL_STATE(1514)] = 28163, + [SMALL_STATE(1515)] = 28233, + [SMALL_STATE(1516)] = 28303, + [SMALL_STATE(1517)] = 28373, + [SMALL_STATE(1518)] = 28443, + [SMALL_STATE(1519)] = 28513, + [SMALL_STATE(1520)] = 28583, + [SMALL_STATE(1521)] = 28653, + [SMALL_STATE(1522)] = 28723, + [SMALL_STATE(1523)] = 28793, + [SMALL_STATE(1524)] = 28863, + [SMALL_STATE(1525)] = 28933, + [SMALL_STATE(1526)] = 29003, + [SMALL_STATE(1527)] = 29073, + [SMALL_STATE(1528)] = 29143, + [SMALL_STATE(1529)] = 29213, + [SMALL_STATE(1530)] = 29323, + [SMALL_STATE(1531)] = 29393, + [SMALL_STATE(1532)] = 29463, + [SMALL_STATE(1533)] = 29533, + [SMALL_STATE(1534)] = 29603, + [SMALL_STATE(1535)] = 29673, + [SMALL_STATE(1536)] = 29743, + [SMALL_STATE(1537)] = 29813, + [SMALL_STATE(1538)] = 29883, + [SMALL_STATE(1539)] = 29953, + [SMALL_STATE(1540)] = 30023, + [SMALL_STATE(1541)] = 30093, + [SMALL_STATE(1542)] = 30163, + [SMALL_STATE(1543)] = 30281, + [SMALL_STATE(1544)] = 30351, + [SMALL_STATE(1545)] = 30421, + [SMALL_STATE(1546)] = 30491, + [SMALL_STATE(1547)] = 30561, + [SMALL_STATE(1548)] = 30631, + [SMALL_STATE(1549)] = 30701, + [SMALL_STATE(1550)] = 30771, + [SMALL_STATE(1551)] = 30841, + [SMALL_STATE(1552)] = 30911, + [SMALL_STATE(1553)] = 30981, + [SMALL_STATE(1554)] = 31051, + [SMALL_STATE(1555)] = 31121, + [SMALL_STATE(1556)] = 31239, + [SMALL_STATE(1557)] = 31309, + [SMALL_STATE(1558)] = 31379, + [SMALL_STATE(1559)] = 31449, + [SMALL_STATE(1560)] = 31567, + [SMALL_STATE(1561)] = 31637, + [SMALL_STATE(1562)] = 31707, + [SMALL_STATE(1563)] = 31777, + [SMALL_STATE(1564)] = 31847, + [SMALL_STATE(1565)] = 31917, + [SMALL_STATE(1566)] = 31987, + [SMALL_STATE(1567)] = 32057, + [SMALL_STATE(1568)] = 32127, + [SMALL_STATE(1569)] = 32197, + [SMALL_STATE(1570)] = 32267, + [SMALL_STATE(1571)] = 32337, + [SMALL_STATE(1572)] = 32407, + [SMALL_STATE(1573)] = 32477, + [SMALL_STATE(1574)] = 32547, + [SMALL_STATE(1575)] = 32665, + [SMALL_STATE(1576)] = 32735, + [SMALL_STATE(1577)] = 32805, + [SMALL_STATE(1578)] = 32875, + [SMALL_STATE(1579)] = 32945, + [SMALL_STATE(1580)] = 33015, + [SMALL_STATE(1581)] = 33085, + [SMALL_STATE(1582)] = 33155, + [SMALL_STATE(1583)] = 33273, + [SMALL_STATE(1584)] = 33391, + [SMALL_STATE(1585)] = 33461, + [SMALL_STATE(1586)] = 33579, + [SMALL_STATE(1587)] = 33649, + [SMALL_STATE(1588)] = 33767, + [SMALL_STATE(1589)] = 33885, + [SMALL_STATE(1590)] = 33955, + [SMALL_STATE(1591)] = 34025, + [SMALL_STATE(1592)] = 34135, + [SMALL_STATE(1593)] = 34205, + [SMALL_STATE(1594)] = 34323, + [SMALL_STATE(1595)] = 34393, + [SMALL_STATE(1596)] = 34463, + [SMALL_STATE(1597)] = 34581, + [SMALL_STATE(1598)] = 34651, + [SMALL_STATE(1599)] = 34721, + [SMALL_STATE(1600)] = 34839, + [SMALL_STATE(1601)] = 34909, + [SMALL_STATE(1602)] = 34979, + [SMALL_STATE(1603)] = 35049, + [SMALL_STATE(1604)] = 35119, + [SMALL_STATE(1605)] = 35189, + [SMALL_STATE(1606)] = 35259, + [SMALL_STATE(1607)] = 35329, + [SMALL_STATE(1608)] = 35399, + [SMALL_STATE(1609)] = 35469, + [SMALL_STATE(1610)] = 35584, + [SMALL_STATE(1611)] = 35699, + [SMALL_STATE(1612)] = 35816, + [SMALL_STATE(1613)] = 35931, + [SMALL_STATE(1614)] = 36046, + [SMALL_STATE(1615)] = 36161, + [SMALL_STATE(1616)] = 36276, + [SMALL_STATE(1617)] = 36391, + [SMALL_STATE(1618)] = 36506, + [SMALL_STATE(1619)] = 36621, + [SMALL_STATE(1620)] = 36736, + [SMALL_STATE(1621)] = 36851, + [SMALL_STATE(1622)] = 36966, + [SMALL_STATE(1623)] = 37081, + [SMALL_STATE(1624)] = 37196, + [SMALL_STATE(1625)] = 37311, + [SMALL_STATE(1626)] = 37426, + [SMALL_STATE(1627)] = 37541, + [SMALL_STATE(1628)] = 37656, + [SMALL_STATE(1629)] = 37771, + [SMALL_STATE(1630)] = 37886, + [SMALL_STATE(1631)] = 38001, + [SMALL_STATE(1632)] = 38116, + [SMALL_STATE(1633)] = 38231, + [SMALL_STATE(1634)] = 38346, + [SMALL_STATE(1635)] = 38461, + [SMALL_STATE(1636)] = 38576, + [SMALL_STATE(1637)] = 38691, + [SMALL_STATE(1638)] = 38806, + [SMALL_STATE(1639)] = 38921, + [SMALL_STATE(1640)] = 39036, + [SMALL_STATE(1641)] = 39151, + [SMALL_STATE(1642)] = 39266, + [SMALL_STATE(1643)] = 39381, + [SMALL_STATE(1644)] = 39496, + [SMALL_STATE(1645)] = 39611, + [SMALL_STATE(1646)] = 39726, + [SMALL_STATE(1647)] = 39841, + [SMALL_STATE(1648)] = 39956, + [SMALL_STATE(1649)] = 40071, + [SMALL_STATE(1650)] = 40186, + [SMALL_STATE(1651)] = 40301, + [SMALL_STATE(1652)] = 40416, + [SMALL_STATE(1653)] = 40531, + [SMALL_STATE(1654)] = 40646, + [SMALL_STATE(1655)] = 40761, + [SMALL_STATE(1656)] = 40876, + [SMALL_STATE(1657)] = 40991, + [SMALL_STATE(1658)] = 41106, + [SMALL_STATE(1659)] = 41221, + [SMALL_STATE(1660)] = 41336, + [SMALL_STATE(1661)] = 41451, + [SMALL_STATE(1662)] = 41566, + [SMALL_STATE(1663)] = 41681, + [SMALL_STATE(1664)] = 41798, + [SMALL_STATE(1665)] = 41913, + [SMALL_STATE(1666)] = 42028, + [SMALL_STATE(1667)] = 42143, + [SMALL_STATE(1668)] = 42258, + [SMALL_STATE(1669)] = 42373, + [SMALL_STATE(1670)] = 42488, + [SMALL_STATE(1671)] = 42603, + [SMALL_STATE(1672)] = 42718, + [SMALL_STATE(1673)] = 42833, + [SMALL_STATE(1674)] = 42948, + [SMALL_STATE(1675)] = 43063, + [SMALL_STATE(1676)] = 43178, + [SMALL_STATE(1677)] = 43293, + [SMALL_STATE(1678)] = 43408, + [SMALL_STATE(1679)] = 43523, + [SMALL_STATE(1680)] = 43638, + [SMALL_STATE(1681)] = 43753, + [SMALL_STATE(1682)] = 43868, + [SMALL_STATE(1683)] = 43983, + [SMALL_STATE(1684)] = 44098, + [SMALL_STATE(1685)] = 44213, + [SMALL_STATE(1686)] = 44328, + [SMALL_STATE(1687)] = 44443, + [SMALL_STATE(1688)] = 44558, + [SMALL_STATE(1689)] = 44673, + [SMALL_STATE(1690)] = 44788, + [SMALL_STATE(1691)] = 44903, + [SMALL_STATE(1692)] = 45018, + [SMALL_STATE(1693)] = 45133, + [SMALL_STATE(1694)] = 45248, + [SMALL_STATE(1695)] = 45363, + [SMALL_STATE(1696)] = 45478, + [SMALL_STATE(1697)] = 45593, + [SMALL_STATE(1698)] = 45708, + [SMALL_STATE(1699)] = 45823, + [SMALL_STATE(1700)] = 45938, + [SMALL_STATE(1701)] = 46053, + [SMALL_STATE(1702)] = 46168, + [SMALL_STATE(1703)] = 46283, + [SMALL_STATE(1704)] = 46398, + [SMALL_STATE(1705)] = 46513, + [SMALL_STATE(1706)] = 46628, + [SMALL_STATE(1707)] = 46743, + [SMALL_STATE(1708)] = 46858, + [SMALL_STATE(1709)] = 46973, + [SMALL_STATE(1710)] = 47088, + [SMALL_STATE(1711)] = 47203, + [SMALL_STATE(1712)] = 47318, + [SMALL_STATE(1713)] = 47433, + [SMALL_STATE(1714)] = 47548, + [SMALL_STATE(1715)] = 47663, + [SMALL_STATE(1716)] = 47778, + [SMALL_STATE(1717)] = 47893, + [SMALL_STATE(1718)] = 48008, + [SMALL_STATE(1719)] = 48123, + [SMALL_STATE(1720)] = 48238, + [SMALL_STATE(1721)] = 48353, + [SMALL_STATE(1722)] = 48468, + [SMALL_STATE(1723)] = 48583, + [SMALL_STATE(1724)] = 48698, + [SMALL_STATE(1725)] = 48813, + [SMALL_STATE(1726)] = 48928, + [SMALL_STATE(1727)] = 49043, + [SMALL_STATE(1728)] = 49158, + [SMALL_STATE(1729)] = 49273, + [SMALL_STATE(1730)] = 49388, + [SMALL_STATE(1731)] = 49503, + [SMALL_STATE(1732)] = 49618, + [SMALL_STATE(1733)] = 49733, + [SMALL_STATE(1734)] = 49848, + [SMALL_STATE(1735)] = 49963, + [SMALL_STATE(1736)] = 50078, + [SMALL_STATE(1737)] = 50193, + [SMALL_STATE(1738)] = 50308, + [SMALL_STATE(1739)] = 50423, + [SMALL_STATE(1740)] = 50538, + [SMALL_STATE(1741)] = 50653, + [SMALL_STATE(1742)] = 50768, + [SMALL_STATE(1743)] = 50883, + [SMALL_STATE(1744)] = 50998, + [SMALL_STATE(1745)] = 51113, + [SMALL_STATE(1746)] = 51228, + [SMALL_STATE(1747)] = 51343, + [SMALL_STATE(1748)] = 51458, + [SMALL_STATE(1749)] = 51573, + [SMALL_STATE(1750)] = 51688, + [SMALL_STATE(1751)] = 51803, + [SMALL_STATE(1752)] = 51918, + [SMALL_STATE(1753)] = 52033, + [SMALL_STATE(1754)] = 52148, + [SMALL_STATE(1755)] = 52263, + [SMALL_STATE(1756)] = 52378, + [SMALL_STATE(1757)] = 52493, + [SMALL_STATE(1758)] = 52608, + [SMALL_STATE(1759)] = 52723, + [SMALL_STATE(1760)] = 52838, + [SMALL_STATE(1761)] = 52953, + [SMALL_STATE(1762)] = 53068, + [SMALL_STATE(1763)] = 53183, + [SMALL_STATE(1764)] = 53298, + [SMALL_STATE(1765)] = 53413, + [SMALL_STATE(1766)] = 53528, + [SMALL_STATE(1767)] = 53643, + [SMALL_STATE(1768)] = 53758, + [SMALL_STATE(1769)] = 53873, + [SMALL_STATE(1770)] = 53990, + [SMALL_STATE(1771)] = 54105, + [SMALL_STATE(1772)] = 54220, + [SMALL_STATE(1773)] = 54335, + [SMALL_STATE(1774)] = 54450, + [SMALL_STATE(1775)] = 54565, + [SMALL_STATE(1776)] = 54680, + [SMALL_STATE(1777)] = 54795, + [SMALL_STATE(1778)] = 54910, + [SMALL_STATE(1779)] = 55025, + [SMALL_STATE(1780)] = 55140, + [SMALL_STATE(1781)] = 55255, + [SMALL_STATE(1782)] = 55370, + [SMALL_STATE(1783)] = 55485, + [SMALL_STATE(1784)] = 55600, + [SMALL_STATE(1785)] = 55715, + [SMALL_STATE(1786)] = 55830, + [SMALL_STATE(1787)] = 55939, + [SMALL_STATE(1788)] = 56054, + [SMALL_STATE(1789)] = 56169, + [SMALL_STATE(1790)] = 56284, + [SMALL_STATE(1791)] = 56399, + [SMALL_STATE(1792)] = 56514, + [SMALL_STATE(1793)] = 56629, + [SMALL_STATE(1794)] = 56744, + [SMALL_STATE(1795)] = 56859, + [SMALL_STATE(1796)] = 56974, + [SMALL_STATE(1797)] = 57089, + [SMALL_STATE(1798)] = 57204, + [SMALL_STATE(1799)] = 57319, + [SMALL_STATE(1800)] = 57436, + [SMALL_STATE(1801)] = 57551, + [SMALL_STATE(1802)] = 57666, + [SMALL_STATE(1803)] = 57781, + [SMALL_STATE(1804)] = 57896, + [SMALL_STATE(1805)] = 58011, + [SMALL_STATE(1806)] = 58128, + [SMALL_STATE(1807)] = 58243, + [SMALL_STATE(1808)] = 58358, + [SMALL_STATE(1809)] = 58473, + [SMALL_STATE(1810)] = 58588, + [SMALL_STATE(1811)] = 58703, + [SMALL_STATE(1812)] = 58818, + [SMALL_STATE(1813)] = 58935, + [SMALL_STATE(1814)] = 59050, + [SMALL_STATE(1815)] = 59165, + [SMALL_STATE(1816)] = 59280, + [SMALL_STATE(1817)] = 59389, + [SMALL_STATE(1818)] = 59504, + [SMALL_STATE(1819)] = 59619, + [SMALL_STATE(1820)] = 59734, + [SMALL_STATE(1821)] = 59849, + [SMALL_STATE(1822)] = 59964, + [SMALL_STATE(1823)] = 60079, + [SMALL_STATE(1824)] = 60194, + [SMALL_STATE(1825)] = 60309, + [SMALL_STATE(1826)] = 60424, + [SMALL_STATE(1827)] = 60539, + [SMALL_STATE(1828)] = 60654, + [SMALL_STATE(1829)] = 60769, + [SMALL_STATE(1830)] = 60884, + [SMALL_STATE(1831)] = 60999, + [SMALL_STATE(1832)] = 61114, + [SMALL_STATE(1833)] = 61229, + [SMALL_STATE(1834)] = 61344, + [SMALL_STATE(1835)] = 61459, + [SMALL_STATE(1836)] = 61574, + [SMALL_STATE(1837)] = 61689, + [SMALL_STATE(1838)] = 61804, + [SMALL_STATE(1839)] = 61919, + [SMALL_STATE(1840)] = 62034, + [SMALL_STATE(1841)] = 62149, + [SMALL_STATE(1842)] = 62264, + [SMALL_STATE(1843)] = 62379, + [SMALL_STATE(1844)] = 62494, + [SMALL_STATE(1845)] = 62609, + [SMALL_STATE(1846)] = 62724, + [SMALL_STATE(1847)] = 62839, + [SMALL_STATE(1848)] = 62954, + [SMALL_STATE(1849)] = 63069, + [SMALL_STATE(1850)] = 63184, + [SMALL_STATE(1851)] = 63299, + [SMALL_STATE(1852)] = 63414, + [SMALL_STATE(1853)] = 63529, + [SMALL_STATE(1854)] = 63644, + [SMALL_STATE(1855)] = 63759, + [SMALL_STATE(1856)] = 63874, + [SMALL_STATE(1857)] = 63989, + [SMALL_STATE(1858)] = 64104, + [SMALL_STATE(1859)] = 64219, + [SMALL_STATE(1860)] = 64334, + [SMALL_STATE(1861)] = 64449, + [SMALL_STATE(1862)] = 64564, + [SMALL_STATE(1863)] = 64679, + [SMALL_STATE(1864)] = 64794, + [SMALL_STATE(1865)] = 64909, + [SMALL_STATE(1866)] = 65024, + [SMALL_STATE(1867)] = 65139, + [SMALL_STATE(1868)] = 65254, + [SMALL_STATE(1869)] = 65369, + [SMALL_STATE(1870)] = 65484, + [SMALL_STATE(1871)] = 65599, + [SMALL_STATE(1872)] = 65714, + [SMALL_STATE(1873)] = 65829, + [SMALL_STATE(1874)] = 65944, + [SMALL_STATE(1875)] = 66059, + [SMALL_STATE(1876)] = 66174, + [SMALL_STATE(1877)] = 66289, + [SMALL_STATE(1878)] = 66404, + [SMALL_STATE(1879)] = 66519, + [SMALL_STATE(1880)] = 66634, + [SMALL_STATE(1881)] = 66749, + [SMALL_STATE(1882)] = 66864, + [SMALL_STATE(1883)] = 66979, + [SMALL_STATE(1884)] = 67094, + [SMALL_STATE(1885)] = 67209, + [SMALL_STATE(1886)] = 67324, + [SMALL_STATE(1887)] = 67439, + [SMALL_STATE(1888)] = 67554, + [SMALL_STATE(1889)] = 67669, + [SMALL_STATE(1890)] = 67784, + [SMALL_STATE(1891)] = 67899, + [SMALL_STATE(1892)] = 68014, + [SMALL_STATE(1893)] = 68129, + [SMALL_STATE(1894)] = 68244, + [SMALL_STATE(1895)] = 68359, + [SMALL_STATE(1896)] = 68474, + [SMALL_STATE(1897)] = 68589, + [SMALL_STATE(1898)] = 68704, + [SMALL_STATE(1899)] = 68819, + [SMALL_STATE(1900)] = 68934, + [SMALL_STATE(1901)] = 69049, + [SMALL_STATE(1902)] = 69164, + [SMALL_STATE(1903)] = 69279, + [SMALL_STATE(1904)] = 69394, + [SMALL_STATE(1905)] = 69509, + [SMALL_STATE(1906)] = 69624, + [SMALL_STATE(1907)] = 69739, + [SMALL_STATE(1908)] = 69854, + [SMALL_STATE(1909)] = 69969, + [SMALL_STATE(1910)] = 70084, + [SMALL_STATE(1911)] = 70199, + [SMALL_STATE(1912)] = 70314, + [SMALL_STATE(1913)] = 70429, + [SMALL_STATE(1914)] = 70544, + [SMALL_STATE(1915)] = 70659, + [SMALL_STATE(1916)] = 70774, + [SMALL_STATE(1917)] = 70889, + [SMALL_STATE(1918)] = 71004, + [SMALL_STATE(1919)] = 71119, + [SMALL_STATE(1920)] = 71234, + [SMALL_STATE(1921)] = 71349, + [SMALL_STATE(1922)] = 71464, + [SMALL_STATE(1923)] = 71579, + [SMALL_STATE(1924)] = 71694, + [SMALL_STATE(1925)] = 71809, + [SMALL_STATE(1926)] = 71924, + [SMALL_STATE(1927)] = 72039, + [SMALL_STATE(1928)] = 72154, + [SMALL_STATE(1929)] = 72269, + [SMALL_STATE(1930)] = 72384, + [SMALL_STATE(1931)] = 72499, + [SMALL_STATE(1932)] = 72614, + [SMALL_STATE(1933)] = 72729, + [SMALL_STATE(1934)] = 72844, + [SMALL_STATE(1935)] = 72950, + [SMALL_STATE(1936)] = 73056, + [SMALL_STATE(1937)] = 73162, + [SMALL_STATE(1938)] = 73268, + [SMALL_STATE(1939)] = 73370, + [SMALL_STATE(1940)] = 73445, + [SMALL_STATE(1941)] = 73537, + [SMALL_STATE(1942)] = 73604, + [SMALL_STATE(1943)] = 73671, + [SMALL_STATE(1944)] = 73776, + [SMALL_STATE(1945)] = 73881, + [SMALL_STATE(1946)] = 73956, + [SMALL_STATE(1947)] = 74031, + [SMALL_STATE(1948)] = 74106, + [SMALL_STATE(1949)] = 74183, + [SMALL_STATE(1950)] = 74286, + [SMALL_STATE(1951)] = 74389, + [SMALL_STATE(1952)] = 74491, + [SMALL_STATE(1953)] = 74593, + [SMALL_STATE(1954)] = 74695, + [SMALL_STATE(1955)] = 74797, + [SMALL_STATE(1956)] = 74897, + [SMALL_STATE(1957)] = 74995, + [SMALL_STATE(1958)] = 75097, + [SMALL_STATE(1959)] = 75199, + [SMALL_STATE(1960)] = 75301, + [SMALL_STATE(1961)] = 75403, + [SMALL_STATE(1962)] = 75505, + [SMALL_STATE(1963)] = 75607, + [SMALL_STATE(1964)] = 75680, + [SMALL_STATE(1965)] = 75779, + [SMALL_STATE(1966)] = 75878, + [SMALL_STATE(1967)] = 75977, + [SMALL_STATE(1968)] = 76076, + [SMALL_STATE(1969)] = 76175, + [SMALL_STATE(1970)] = 76274, + [SMALL_STATE(1971)] = 76370, + [SMALL_STATE(1972)] = 76466, + [SMALL_STATE(1973)] = 76534, + [SMALL_STATE(1974)] = 76630, + [SMALL_STATE(1975)] = 76726, + [SMALL_STATE(1976)] = 76792, + [SMALL_STATE(1977)] = 76858, + [SMALL_STATE(1978)] = 76921, + [SMALL_STATE(1979)] = 76982, + [SMALL_STATE(1980)] = 77073, + [SMALL_STATE(1981)] = 77136, + [SMALL_STATE(1982)] = 77193, + [SMALL_STATE(1983)] = 77256, + [SMALL_STATE(1984)] = 77319, + [SMALL_STATE(1985)] = 77376, + [SMALL_STATE(1986)] = 77433, + [SMALL_STATE(1987)] = 77524, + [SMALL_STATE(1988)] = 77587, + [SMALL_STATE(1989)] = 77678, + [SMALL_STATE(1990)] = 77735, + [SMALL_STATE(1991)] = 77826, + [SMALL_STATE(1992)] = 77917, + [SMALL_STATE(1993)] = 77980, + [SMALL_STATE(1994)] = 78071, + [SMALL_STATE(1995)] = 78162, + [SMALL_STATE(1996)] = 78223, + [SMALL_STATE(1997)] = 78280, + [SMALL_STATE(1998)] = 78371, + [SMALL_STATE(1999)] = 78436, + [SMALL_STATE(2000)] = 78499, + [SMALL_STATE(2001)] = 78562, + [SMALL_STATE(2002)] = 78619, + [SMALL_STATE(2003)] = 78676, + [SMALL_STATE(2004)] = 78768, + [SMALL_STATE(2005)] = 78856, + [SMALL_STATE(2006)] = 78948, + [SMALL_STATE(2007)] = 79036, + [SMALL_STATE(2008)] = 79124, + [SMALL_STATE(2009)] = 79212, + [SMALL_STATE(2010)] = 79300, + [SMALL_STATE(2011)] = 79388, + [SMALL_STATE(2012)] = 79476, + [SMALL_STATE(2013)] = 79580, + [SMALL_STATE(2014)] = 79668, + [SMALL_STATE(2015)] = 79756, + [SMALL_STATE(2016)] = 79844, + [SMALL_STATE(2017)] = 79932, + [SMALL_STATE(2018)] = 80036, + [SMALL_STATE(2019)] = 80128, + [SMALL_STATE(2020)] = 80216, + [SMALL_STATE(2021)] = 80308, + [SMALL_STATE(2022)] = 80400, + [SMALL_STATE(2023)] = 80492, + [SMALL_STATE(2024)] = 80580, + [SMALL_STATE(2025)] = 80668, + [SMALL_STATE(2026)] = 80756, + [SMALL_STATE(2027)] = 80844, + [SMALL_STATE(2028)] = 80932, + [SMALL_STATE(2029)] = 81020, + [SMALL_STATE(2030)] = 81108, + [SMALL_STATE(2031)] = 81196, + [SMALL_STATE(2032)] = 81284, + [SMALL_STATE(2033)] = 81372, + [SMALL_STATE(2034)] = 81460, + [SMALL_STATE(2035)] = 81548, + [SMALL_STATE(2036)] = 81640, + [SMALL_STATE(2037)] = 81728, + [SMALL_STATE(2038)] = 81816, + [SMALL_STATE(2039)] = 81904, + [SMALL_STATE(2040)] = 81996, + [SMALL_STATE(2041)] = 82100, + [SMALL_STATE(2042)] = 82192, + [SMALL_STATE(2043)] = 82280, + [SMALL_STATE(2044)] = 82372, + [SMALL_STATE(2045)] = 82460, + [SMALL_STATE(2046)] = 82548, + [SMALL_STATE(2047)] = 82636, + [SMALL_STATE(2048)] = 82724, + [SMALL_STATE(2049)] = 82812, + [SMALL_STATE(2050)] = 82900, + [SMALL_STATE(2051)] = 82988, + [SMALL_STATE(2052)] = 83076, + [SMALL_STATE(2053)] = 83164, + [SMALL_STATE(2054)] = 83256, + [SMALL_STATE(2055)] = 83344, + [SMALL_STATE(2056)] = 83432, + [SMALL_STATE(2057)] = 83520, + [SMALL_STATE(2058)] = 83608, + [SMALL_STATE(2059)] = 83696, + [SMALL_STATE(2060)] = 83788, + [SMALL_STATE(2061)] = 83876, + [SMALL_STATE(2062)] = 83964, + [SMALL_STATE(2063)] = 84052, + [SMALL_STATE(2064)] = 84140, + [SMALL_STATE(2065)] = 84228, + [SMALL_STATE(2066)] = 84320, + [SMALL_STATE(2067)] = 84412, + [SMALL_STATE(2068)] = 84500, + [SMALL_STATE(2069)] = 84588, + [SMALL_STATE(2070)] = 84680, + [SMALL_STATE(2071)] = 84768, + [SMALL_STATE(2072)] = 84860, + [SMALL_STATE(2073)] = 84952, + [SMALL_STATE(2074)] = 85044, + [SMALL_STATE(2075)] = 85136, + [SMALL_STATE(2076)] = 85228, + [SMALL_STATE(2077)] = 85320, + [SMALL_STATE(2078)] = 85412, + [SMALL_STATE(2079)] = 85504, + [SMALL_STATE(2080)] = 85608, + [SMALL_STATE(2081)] = 85696, + [SMALL_STATE(2082)] = 85784, + [SMALL_STATE(2083)] = 85872, + [SMALL_STATE(2084)] = 85960, + [SMALL_STATE(2085)] = 86048, + [SMALL_STATE(2086)] = 86136, + [SMALL_STATE(2087)] = 86224, + [SMALL_STATE(2088)] = 86312, + [SMALL_STATE(2089)] = 86400, + [SMALL_STATE(2090)] = 86488, + [SMALL_STATE(2091)] = 86592, + [SMALL_STATE(2092)] = 86680, + [SMALL_STATE(2093)] = 86768, + [SMALL_STATE(2094)] = 86856, + [SMALL_STATE(2095)] = 86944, + [SMALL_STATE(2096)] = 87032, + [SMALL_STATE(2097)] = 87120, + [SMALL_STATE(2098)] = 87208, + [SMALL_STATE(2099)] = 87296, + [SMALL_STATE(2100)] = 87384, + [SMALL_STATE(2101)] = 87472, + [SMALL_STATE(2102)] = 87560, + [SMALL_STATE(2103)] = 87648, + [SMALL_STATE(2104)] = 87736, + [SMALL_STATE(2105)] = 87824, + [SMALL_STATE(2106)] = 87912, + [SMALL_STATE(2107)] = 88000, + [SMALL_STATE(2108)] = 88088, + [SMALL_STATE(2109)] = 88176, + [SMALL_STATE(2110)] = 88264, + [SMALL_STATE(2111)] = 88352, + [SMALL_STATE(2112)] = 88453, + [SMALL_STATE(2113)] = 88554, + [SMALL_STATE(2114)] = 88655, + [SMALL_STATE(2115)] = 88756, + [SMALL_STATE(2116)] = 88855, + [SMALL_STATE(2117)] = 88954, + [SMALL_STATE(2118)] = 89053, + [SMALL_STATE(2119)] = 89152, + [SMALL_STATE(2120)] = 89251, + [SMALL_STATE(2121)] = 89350, + [SMALL_STATE(2122)] = 89449, + [SMALL_STATE(2123)] = 89548, + [SMALL_STATE(2124)] = 89647, + [SMALL_STATE(2125)] = 89746, + [SMALL_STATE(2126)] = 89845, + [SMALL_STATE(2127)] = 89941, + [SMALL_STATE(2128)] = 90037, + [SMALL_STATE(2129)] = 90133, + [SMALL_STATE(2130)] = 90229, + [SMALL_STATE(2131)] = 90317, + [SMALL_STATE(2132)] = 90405, + [SMALL_STATE(2133)] = 90501, + [SMALL_STATE(2134)] = 90597, + [SMALL_STATE(2135)] = 90693, + [SMALL_STATE(2136)] = 90789, + [SMALL_STATE(2137)] = 90885, + [SMALL_STATE(2138)] = 90981, + [SMALL_STATE(2139)] = 91051, + [SMALL_STATE(2140)] = 91105, + [SMALL_STATE(2141)] = 91159, + [SMALL_STATE(2142)] = 91213, + [SMALL_STATE(2143)] = 91275, + [SMALL_STATE(2144)] = 91329, + [SMALL_STATE(2145)] = 91401, + [SMALL_STATE(2146)] = 91460, + [SMALL_STATE(2147)] = 91531, + [SMALL_STATE(2148)] = 91594, + [SMALL_STATE(2149)] = 91665, + [SMALL_STATE(2150)] = 91750, + [SMALL_STATE(2151)] = 91809, + [SMALL_STATE(2152)] = 91868, + [SMALL_STATE(2153)] = 91933, + [SMALL_STATE(2154)] = 92006, + [SMALL_STATE(2155)] = 92065, + [SMALL_STATE(2156)] = 92136, + [SMALL_STATE(2157)] = 92221, + [SMALL_STATE(2158)] = 92290, + [SMALL_STATE(2159)] = 92357, + [SMALL_STATE(2160)] = 92442, + [SMALL_STATE(2161)] = 92527, + [SMALL_STATE(2162)] = 92612, + [SMALL_STATE(2163)] = 92697, + [SMALL_STATE(2164)] = 92752, + [SMALL_STATE(2165)] = 92836, + [SMALL_STATE(2166)] = 92886, + [SMALL_STATE(2167)] = 92934, + [SMALL_STATE(2168)] = 92984, + [SMALL_STATE(2169)] = 93068, + [SMALL_STATE(2170)] = 93152, + [SMALL_STATE(2171)] = 93234, + [SMALL_STATE(2172)] = 93318, + [SMALL_STATE(2173)] = 93366, + [SMALL_STATE(2174)] = 93413, + [SMALL_STATE(2175)] = 93494, + [SMALL_STATE(2176)] = 93541, + [SMALL_STATE(2177)] = 93592, + [SMALL_STATE(2178)] = 93651, + [SMALL_STATE(2179)] = 93710, + [SMALL_STATE(2180)] = 93761, + [SMALL_STATE(2181)] = 93808, + [SMALL_STATE(2182)] = 93855, + [SMALL_STATE(2183)] = 93906, + [SMALL_STATE(2184)] = 93953, + [SMALL_STATE(2185)] = 94038, + [SMALL_STATE(2186)] = 94085, + [SMALL_STATE(2187)] = 94132, + [SMALL_STATE(2188)] = 94179, + [SMALL_STATE(2189)] = 94230, + [SMALL_STATE(2190)] = 94277, + [SMALL_STATE(2191)] = 94328, + [SMALL_STATE(2192)] = 94375, + [SMALL_STATE(2193)] = 94422, + [SMALL_STATE(2194)] = 94469, + [SMALL_STATE(2195)] = 94522, + [SMALL_STATE(2196)] = 94603, + [SMALL_STATE(2197)] = 94662, + [SMALL_STATE(2198)] = 94709, + [SMALL_STATE(2199)] = 94756, + [SMALL_STATE(2200)] = 94803, + [SMALL_STATE(2201)] = 94850, + [SMALL_STATE(2202)] = 94897, + [SMALL_STATE(2203)] = 94964, + [SMALL_STATE(2204)] = 95011, + [SMALL_STATE(2205)] = 95058, + [SMALL_STATE(2206)] = 95109, + [SMALL_STATE(2207)] = 95156, + [SMALL_STATE(2208)] = 95207, + [SMALL_STATE(2209)] = 95254, + [SMALL_STATE(2210)] = 95305, + [SMALL_STATE(2211)] = 95360, + [SMALL_STATE(2212)] = 95407, + [SMALL_STATE(2213)] = 95454, + [SMALL_STATE(2214)] = 95505, + [SMALL_STATE(2215)] = 95554, + [SMALL_STATE(2216)] = 95601, + [SMALL_STATE(2217)] = 95648, + [SMALL_STATE(2218)] = 95695, + [SMALL_STATE(2219)] = 95742, + [SMALL_STATE(2220)] = 95789, + [SMALL_STATE(2221)] = 95836, + [SMALL_STATE(2222)] = 95883, + [SMALL_STATE(2223)] = 95930, + [SMALL_STATE(2224)] = 95977, + [SMALL_STATE(2225)] = 96024, + [SMALL_STATE(2226)] = 96071, + [SMALL_STATE(2227)] = 96122, + [SMALL_STATE(2228)] = 96177, + [SMALL_STATE(2229)] = 96228, + [SMALL_STATE(2230)] = 96279, + [SMALL_STATE(2231)] = 96326, + [SMALL_STATE(2232)] = 96377, + [SMALL_STATE(2233)] = 96428, + [SMALL_STATE(2234)] = 96475, + [SMALL_STATE(2235)] = 96522, + [SMALL_STATE(2236)] = 96577, + [SMALL_STATE(2237)] = 96624, + [SMALL_STATE(2238)] = 96671, + [SMALL_STATE(2239)] = 96718, + [SMALL_STATE(2240)] = 96765, + [SMALL_STATE(2241)] = 96816, + [SMALL_STATE(2242)] = 96866, + [SMALL_STATE(2243)] = 96916, + [SMALL_STATE(2244)] = 96972, + [SMALL_STATE(2245)] = 97034, + [SMALL_STATE(2246)] = 97104, + [SMALL_STATE(2247)] = 97160, + [SMALL_STATE(2248)] = 97220, + [SMALL_STATE(2249)] = 97288, + [SMALL_STATE(2250)] = 97354, + [SMALL_STATE(2251)] = 97418, + [SMALL_STATE(2252)] = 97474, + [SMALL_STATE(2253)] = 97530, + [SMALL_STATE(2254)] = 97600, + [SMALL_STATE(2255)] = 97652, + [SMALL_STATE(2256)] = 97722, + [SMALL_STATE(2257)] = 97772, + [SMALL_STATE(2258)] = 97830, + [SMALL_STATE(2259)] = 97910, + [SMALL_STATE(2260)] = 97990, + [SMALL_STATE(2261)] = 98042, + [SMALL_STATE(2262)] = 98094, + [SMALL_STATE(2263)] = 98144, + [SMALL_STATE(2264)] = 98200, + [SMALL_STATE(2265)] = 98256, + [SMALL_STATE(2266)] = 98312, + [SMALL_STATE(2267)] = 98374, + [SMALL_STATE(2268)] = 98430, + [SMALL_STATE(2269)] = 98490, + [SMALL_STATE(2270)] = 98570, + [SMALL_STATE(2271)] = 98650, + [SMALL_STATE(2272)] = 98718, + [SMALL_STATE(2273)] = 98784, + [SMALL_STATE(2274)] = 98848, + [SMALL_STATE(2275)] = 98910, + [SMALL_STATE(2276)] = 98966, + [SMALL_STATE(2277)] = 99022, + [SMALL_STATE(2278)] = 99102, + [SMALL_STATE(2279)] = 99160, + [SMALL_STATE(2280)] = 99220, + [SMALL_STATE(2281)] = 99288, + [SMALL_STATE(2282)] = 99354, + [SMALL_STATE(2283)] = 99418, + [SMALL_STATE(2284)] = 99468, + [SMALL_STATE(2285)] = 99524, + [SMALL_STATE(2286)] = 99574, + [SMALL_STATE(2287)] = 99630, + [SMALL_STATE(2288)] = 99680, + [SMALL_STATE(2289)] = 99730, + [SMALL_STATE(2290)] = 99793, + [SMALL_STATE(2291)] = 99842, + [SMALL_STATE(2292)] = 99887, + [SMALL_STATE(2293)] = 99932, + [SMALL_STATE(2294)] = 99981, + [SMALL_STATE(2295)] = 100026, + [SMALL_STATE(2296)] = 100105, + [SMALL_STATE(2297)] = 100160, + [SMALL_STATE(2298)] = 100205, + [SMALL_STATE(2299)] = 100272, + [SMALL_STATE(2300)] = 100337, + [SMALL_STATE(2301)] = 100386, + [SMALL_STATE(2302)] = 100433, + [SMALL_STATE(2303)] = 100484, + [SMALL_STATE(2304)] = 100531, + [SMALL_STATE(2305)] = 100576, + [SMALL_STATE(2306)] = 100621, + [SMALL_STATE(2307)] = 100700, + [SMALL_STATE(2308)] = 100747, + [SMALL_STATE(2309)] = 100826, + [SMALL_STATE(2310)] = 100871, + [SMALL_STATE(2311)] = 100918, + [SMALL_STATE(2312)] = 100997, + [SMALL_STATE(2313)] = 101042, + [SMALL_STATE(2314)] = 101093, + [SMALL_STATE(2315)] = 101148, + [SMALL_STATE(2316)] = 101205, + [SMALL_STATE(2317)] = 101250, + [SMALL_STATE(2318)] = 101295, + [SMALL_STATE(2319)] = 101350, + [SMALL_STATE(2320)] = 101411, + [SMALL_STATE(2321)] = 101480, + [SMALL_STATE(2322)] = 101525, + [SMALL_STATE(2323)] = 101580, + [SMALL_STATE(2324)] = 101631, + [SMALL_STATE(2325)] = 101680, + [SMALL_STATE(2326)] = 101727, + [SMALL_STATE(2327)] = 101774, + [SMALL_STATE(2328)] = 101825, + [SMALL_STATE(2329)] = 101876, + [SMALL_STATE(2330)] = 101931, + [SMALL_STATE(2331)] = 101986, + [SMALL_STATE(2332)] = 102045, + [SMALL_STATE(2333)] = 102112, + [SMALL_STATE(2334)] = 102191, + [SMALL_STATE(2335)] = 102256, + [SMALL_STATE(2336)] = 102319, + [SMALL_STATE(2337)] = 102368, + [SMALL_STATE(2338)] = 102417, + [SMALL_STATE(2339)] = 102466, + [SMALL_STATE(2340)] = 102535, + [SMALL_STATE(2341)] = 102584, + [SMALL_STATE(2342)] = 102643, + [SMALL_STATE(2343)] = 102692, + [SMALL_STATE(2344)] = 102771, + [SMALL_STATE(2345)] = 102826, + [SMALL_STATE(2346)] = 102875, + [SMALL_STATE(2347)] = 102920, + [SMALL_STATE(2348)] = 102965, + [SMALL_STATE(2349)] = 103020, + [SMALL_STATE(2350)] = 103081, + [SMALL_STATE(2351)] = 103125, + [SMALL_STATE(2352)] = 103169, + [SMALL_STATE(2353)] = 103221, + [SMALL_STATE(2354)] = 103265, + [SMALL_STATE(2355)] = 103315, + [SMALL_STATE(2356)] = 103359, + [SMALL_STATE(2357)] = 103409, + [SMALL_STATE(2358)] = 103453, + [SMALL_STATE(2359)] = 103501, + [SMALL_STATE(2360)] = 103547, + [SMALL_STATE(2361)] = 103591, + [SMALL_STATE(2362)] = 103635, + [SMALL_STATE(2363)] = 103679, + [SMALL_STATE(2364)] = 103723, + [SMALL_STATE(2365)] = 103767, + [SMALL_STATE(2366)] = 103811, + [SMALL_STATE(2367)] = 103861, + [SMALL_STATE(2368)] = 103905, + [SMALL_STATE(2369)] = 103957, + [SMALL_STATE(2370)] = 104001, + [SMALL_STATE(2371)] = 104049, + [SMALL_STATE(2372)] = 104097, + [SMALL_STATE(2373)] = 104145, + [SMALL_STATE(2374)] = 104197, + [SMALL_STATE(2375)] = 104247, + [SMALL_STATE(2376)] = 104291, + [SMALL_STATE(2377)] = 104343, + [SMALL_STATE(2378)] = 104387, + [SMALL_STATE(2379)] = 104431, + [SMALL_STATE(2380)] = 104475, + [SMALL_STATE(2381)] = 104519, + [SMALL_STATE(2382)] = 104563, + [SMALL_STATE(2383)] = 104607, + [SMALL_STATE(2384)] = 104651, + [SMALL_STATE(2385)] = 104695, + [SMALL_STATE(2386)] = 104739, + [SMALL_STATE(2387)] = 104783, + [SMALL_STATE(2388)] = 104827, + [SMALL_STATE(2389)] = 104871, + [SMALL_STATE(2390)] = 104915, + [SMALL_STATE(2391)] = 104959, + [SMALL_STATE(2392)] = 105003, + [SMALL_STATE(2393)] = 105047, + [SMALL_STATE(2394)] = 105091, + [SMALL_STATE(2395)] = 105135, + [SMALL_STATE(2396)] = 105179, + [SMALL_STATE(2397)] = 105223, + [SMALL_STATE(2398)] = 105267, + [SMALL_STATE(2399)] = 105311, + [SMALL_STATE(2400)] = 105355, + [SMALL_STATE(2401)] = 105399, + [SMALL_STATE(2402)] = 105447, + [SMALL_STATE(2403)] = 105491, + [SMALL_STATE(2404)] = 105539, + [SMALL_STATE(2405)] = 105583, + [SMALL_STATE(2406)] = 105627, + [SMALL_STATE(2407)] = 105671, + [SMALL_STATE(2408)] = 105723, + [SMALL_STATE(2409)] = 105767, + [SMALL_STATE(2410)] = 105811, + [SMALL_STATE(2411)] = 105855, + [SMALL_STATE(2412)] = 105899, + [SMALL_STATE(2413)] = 105949, + [SMALL_STATE(2414)] = 105995, + [SMALL_STATE(2415)] = 106073, + [SMALL_STATE(2416)] = 106117, + [SMALL_STATE(2417)] = 106163, + [SMALL_STATE(2418)] = 106207, + [SMALL_STATE(2419)] = 106253, + [SMALL_STATE(2420)] = 106299, + [SMALL_STATE(2421)] = 106343, + [SMALL_STATE(2422)] = 106387, + [SMALL_STATE(2423)] = 106435, + [SMALL_STATE(2424)] = 106479, + [SMALL_STATE(2425)] = 106523, + [SMALL_STATE(2426)] = 106567, + [SMALL_STATE(2427)] = 106611, + [SMALL_STATE(2428)] = 106657, + [SMALL_STATE(2429)] = 106701, + [SMALL_STATE(2430)] = 106745, + [SMALL_STATE(2431)] = 106791, + [SMALL_STATE(2432)] = 106837, + [SMALL_STATE(2433)] = 106885, + [SMALL_STATE(2434)] = 106931, + [SMALL_STATE(2435)] = 106975, + [SMALL_STATE(2436)] = 107019, + [SMALL_STATE(2437)] = 107063, + [SMALL_STATE(2438)] = 107107, + [SMALL_STATE(2439)] = 107151, + [SMALL_STATE(2440)] = 107195, + [SMALL_STATE(2441)] = 107247, + [SMALL_STATE(2442)] = 107291, + [SMALL_STATE(2443)] = 107335, + [SMALL_STATE(2444)] = 107383, + [SMALL_STATE(2445)] = 107427, + [SMALL_STATE(2446)] = 107471, + [SMALL_STATE(2447)] = 107515, + [SMALL_STATE(2448)] = 107563, + [SMALL_STATE(2449)] = 107607, + [SMALL_STATE(2450)] = 107651, + [SMALL_STATE(2451)] = 107695, + [SMALL_STATE(2452)] = 107739, + [SMALL_STATE(2453)] = 107785, + [SMALL_STATE(2454)] = 107833, + [SMALL_STATE(2455)] = 107877, + [SMALL_STATE(2456)] = 107925, + [SMALL_STATE(2457)] = 107969, + [SMALL_STATE(2458)] = 108013, + [SMALL_STATE(2459)] = 108057, + [SMALL_STATE(2460)] = 108101, + [SMALL_STATE(2461)] = 108145, + [SMALL_STATE(2462)] = 108189, + [SMALL_STATE(2463)] = 108245, + [SMALL_STATE(2464)] = 108289, + [SMALL_STATE(2465)] = 108337, + [SMALL_STATE(2466)] = 108381, + [SMALL_STATE(2467)] = 108425, + [SMALL_STATE(2468)] = 108469, + [SMALL_STATE(2469)] = 108513, + [SMALL_STATE(2470)] = 108567, + [SMALL_STATE(2471)] = 108611, + [SMALL_STATE(2472)] = 108655, + [SMALL_STATE(2473)] = 108709, + [SMALL_STATE(2474)] = 108753, + [SMALL_STATE(2475)] = 108797, + [SMALL_STATE(2476)] = 108845, + [SMALL_STATE(2477)] = 108889, + [SMALL_STATE(2478)] = 108933, + [SMALL_STATE(2479)] = 108979, + [SMALL_STATE(2480)] = 109023, + [SMALL_STATE(2481)] = 109067, + [SMALL_STATE(2482)] = 109111, + [SMALL_STATE(2483)] = 109159, + [SMALL_STATE(2484)] = 109203, + [SMALL_STATE(2485)] = 109247, + [SMALL_STATE(2486)] = 109291, + [SMALL_STATE(2487)] = 109335, + [SMALL_STATE(2488)] = 109379, + [SMALL_STATE(2489)] = 109427, + [SMALL_STATE(2490)] = 109471, + [SMALL_STATE(2491)] = 109515, + [SMALL_STATE(2492)] = 109559, + [SMALL_STATE(2493)] = 109607, + [SMALL_STATE(2494)] = 109651, + [SMALL_STATE(2495)] = 109695, + [SMALL_STATE(2496)] = 109739, + [SMALL_STATE(2497)] = 109783, + [SMALL_STATE(2498)] = 109827, + [SMALL_STATE(2499)] = 109895, + [SMALL_STATE(2500)] = 109939, + [SMALL_STATE(2501)] = 109983, + [SMALL_STATE(2502)] = 110027, + [SMALL_STATE(2503)] = 110079, + [SMALL_STATE(2504)] = 110123, + [SMALL_STATE(2505)] = 110167, + [SMALL_STATE(2506)] = 110211, + [SMALL_STATE(2507)] = 110255, + [SMALL_STATE(2508)] = 110299, + [SMALL_STATE(2509)] = 110343, + [SMALL_STATE(2510)] = 110387, + [SMALL_STATE(2511)] = 110431, + [SMALL_STATE(2512)] = 110483, + [SMALL_STATE(2513)] = 110527, + [SMALL_STATE(2514)] = 110577, + [SMALL_STATE(2515)] = 110621, + [SMALL_STATE(2516)] = 110673, + [SMALL_STATE(2517)] = 110717, + [SMALL_STATE(2518)] = 110767, + [SMALL_STATE(2519)] = 110815, + [SMALL_STATE(2520)] = 110859, + [SMALL_STATE(2521)] = 110903, + [SMALL_STATE(2522)] = 110951, + [SMALL_STATE(2523)] = 110995, + [SMALL_STATE(2524)] = 111039, + [SMALL_STATE(2525)] = 111083, + [SMALL_STATE(2526)] = 111127, + [SMALL_STATE(2527)] = 111171, + [SMALL_STATE(2528)] = 111217, + [SMALL_STATE(2529)] = 111271, + [SMALL_STATE(2530)] = 111331, + [SMALL_STATE(2531)] = 111385, + [SMALL_STATE(2532)] = 111443, + [SMALL_STATE(2533)] = 111509, + [SMALL_STATE(2534)] = 111573, + [SMALL_STATE(2535)] = 111635, + [SMALL_STATE(2536)] = 111679, + [SMALL_STATE(2537)] = 111722, + [SMALL_STATE(2538)] = 111767, + [SMALL_STATE(2539)] = 111834, + [SMALL_STATE(2540)] = 111879, + [SMALL_STATE(2541)] = 111922, + [SMALL_STATE(2542)] = 112001, + [SMALL_STATE(2543)] = 112052, + [SMALL_STATE(2544)] = 112101, + [SMALL_STATE(2545)] = 112148, + [SMALL_STATE(2546)] = 112193, + [SMALL_STATE(2547)] = 112244, + [SMALL_STATE(2548)] = 112295, + [SMALL_STATE(2549)] = 112346, + [SMALL_STATE(2550)] = 112395, + [SMALL_STATE(2551)] = 112442, + [SMALL_STATE(2552)] = 112487, + [SMALL_STATE(2553)] = 112538, + [SMALL_STATE(2554)] = 112589, + [SMALL_STATE(2555)] = 112632, + [SMALL_STATE(2556)] = 112675, + [SMALL_STATE(2557)] = 112728, + [SMALL_STATE(2558)] = 112787, + [SMALL_STATE(2559)] = 112840, + [SMALL_STATE(2560)] = 112897, + [SMALL_STATE(2561)] = 112962, + [SMALL_STATE(2562)] = 113025, + [SMALL_STATE(2563)] = 113086, + [SMALL_STATE(2564)] = 113129, + [SMALL_STATE(2565)] = 113172, + [SMALL_STATE(2566)] = 113219, + [SMALL_STATE(2567)] = 113262, + [SMALL_STATE(2568)] = 113305, + [SMALL_STATE(2569)] = 113348, + [SMALL_STATE(2570)] = 113391, + [SMALL_STATE(2571)] = 113434, + [SMALL_STATE(2572)] = 113479, + [SMALL_STATE(2573)] = 113522, + [SMALL_STATE(2574)] = 113565, + [SMALL_STATE(2575)] = 113608, + [SMALL_STATE(2576)] = 113651, + [SMALL_STATE(2577)] = 113696, + [SMALL_STATE(2578)] = 113739, + [SMALL_STATE(2579)] = 113784, + [SMALL_STATE(2580)] = 113829, + [SMALL_STATE(2581)] = 113874, + [SMALL_STATE(2582)] = 113919, + [SMALL_STATE(2583)] = 113962, + [SMALL_STATE(2584)] = 114007, + [SMALL_STATE(2585)] = 114050, + [SMALL_STATE(2586)] = 114095, + [SMALL_STATE(2587)] = 114138, + [SMALL_STATE(2588)] = 114181, + [SMALL_STATE(2589)] = 114224, + [SMALL_STATE(2590)] = 114267, + [SMALL_STATE(2591)] = 114314, + [SMALL_STATE(2592)] = 114361, + [SMALL_STATE(2593)] = 114404, + [SMALL_STATE(2594)] = 114447, + [SMALL_STATE(2595)] = 114490, + [SMALL_STATE(2596)] = 114533, + [SMALL_STATE(2597)] = 114576, + [SMALL_STATE(2598)] = 114619, + [SMALL_STATE(2599)] = 114666, + [SMALL_STATE(2600)] = 114711, + [SMALL_STATE(2601)] = 114754, + [SMALL_STATE(2602)] = 114797, + [SMALL_STATE(2603)] = 114844, + [SMALL_STATE(2604)] = 114887, + [SMALL_STATE(2605)] = 114932, + [SMALL_STATE(2606)] = 114977, + [SMALL_STATE(2607)] = 115022, + [SMALL_STATE(2608)] = 115069, + [SMALL_STATE(2609)] = 115112, + [SMALL_STATE(2610)] = 115157, + [SMALL_STATE(2611)] = 115200, + [SMALL_STATE(2612)] = 115243, + [SMALL_STATE(2613)] = 115290, + [SMALL_STATE(2614)] = 115333, + [SMALL_STATE(2615)] = 115380, + [SMALL_STATE(2616)] = 115423, + [SMALL_STATE(2617)] = 115466, + [SMALL_STATE(2618)] = 115509, + [SMALL_STATE(2619)] = 115552, + [SMALL_STATE(2620)] = 115595, + [SMALL_STATE(2621)] = 115638, + [SMALL_STATE(2622)] = 115681, + [SMALL_STATE(2623)] = 115724, + [SMALL_STATE(2624)] = 115769, + [SMALL_STATE(2625)] = 115812, + [SMALL_STATE(2626)] = 115855, + [SMALL_STATE(2627)] = 115904, + [SMALL_STATE(2628)] = 115949, + [SMALL_STATE(2629)] = 115992, + [SMALL_STATE(2630)] = 116035, + [SMALL_STATE(2631)] = 116078, + [SMALL_STATE(2632)] = 116121, + [SMALL_STATE(2633)] = 116164, + [SMALL_STATE(2634)] = 116207, + [SMALL_STATE(2635)] = 116252, + [SMALL_STATE(2636)] = 116295, + [SMALL_STATE(2637)] = 116338, + [SMALL_STATE(2638)] = 116381, + [SMALL_STATE(2639)] = 116424, + [SMALL_STATE(2640)] = 116467, + [SMALL_STATE(2641)] = 116510, + [SMALL_STATE(2642)] = 116553, + [SMALL_STATE(2643)] = 116596, + [SMALL_STATE(2644)] = 116639, + [SMALL_STATE(2645)] = 116690, + [SMALL_STATE(2646)] = 116733, + [SMALL_STATE(2647)] = 116776, + [SMALL_STATE(2648)] = 116819, + [SMALL_STATE(2649)] = 116862, + [SMALL_STATE(2650)] = 116905, + [SMALL_STATE(2651)] = 116984, + [SMALL_STATE(2652)] = 117027, + [SMALL_STATE(2653)] = 117070, + [SMALL_STATE(2654)] = 117113, + [SMALL_STATE(2655)] = 117156, + [SMALL_STATE(2656)] = 117199, + [SMALL_STATE(2657)] = 117242, + [SMALL_STATE(2658)] = 117285, + [SMALL_STATE(2659)] = 117328, + [SMALL_STATE(2660)] = 117371, + [SMALL_STATE(2661)] = 117414, + [SMALL_STATE(2662)] = 117463, + [SMALL_STATE(2663)] = 117506, + [SMALL_STATE(2664)] = 117549, + [SMALL_STATE(2665)] = 117596, + [SMALL_STATE(2666)] = 117641, + [SMALL_STATE(2667)] = 117686, + [SMALL_STATE(2668)] = 117739, + [SMALL_STATE(2669)] = 117792, + [SMALL_STATE(2670)] = 117835, + [SMALL_STATE(2671)] = 117878, + [SMALL_STATE(2672)] = 117921, + [SMALL_STATE(2673)] = 117964, + [SMALL_STATE(2674)] = 118007, + [SMALL_STATE(2675)] = 118050, + [SMALL_STATE(2676)] = 118097, + [SMALL_STATE(2677)] = 118140, + [SMALL_STATE(2678)] = 118182, + [SMALL_STATE(2679)] = 118224, + [SMALL_STATE(2680)] = 118266, + [SMALL_STATE(2681)] = 118308, + [SMALL_STATE(2682)] = 118350, + [SMALL_STATE(2683)] = 118392, + [SMALL_STATE(2684)] = 118434, + [SMALL_STATE(2685)] = 118476, + [SMALL_STATE(2686)] = 118518, + [SMALL_STATE(2687)] = 118560, + [SMALL_STATE(2688)] = 118602, + [SMALL_STATE(2689)] = 118644, + [SMALL_STATE(2690)] = 118686, + [SMALL_STATE(2691)] = 118732, + [SMALL_STATE(2692)] = 118774, + [SMALL_STATE(2693)] = 118816, + [SMALL_STATE(2694)] = 118858, + [SMALL_STATE(2695)] = 118900, + [SMALL_STATE(2696)] = 118942, + [SMALL_STATE(2697)] = 118986, + [SMALL_STATE(2698)] = 119030, + [SMALL_STATE(2699)] = 119074, + [SMALL_STATE(2700)] = 119116, + [SMALL_STATE(2701)] = 119158, + [SMALL_STATE(2702)] = 119200, + [SMALL_STATE(2703)] = 119242, + [SMALL_STATE(2704)] = 119288, + [SMALL_STATE(2705)] = 119330, + [SMALL_STATE(2706)] = 119372, + [SMALL_STATE(2707)] = 119426, + [SMALL_STATE(2708)] = 119468, + [SMALL_STATE(2709)] = 119510, + [SMALL_STATE(2710)] = 119552, + [SMALL_STATE(2711)] = 119594, + [SMALL_STATE(2712)] = 119642, + [SMALL_STATE(2713)] = 119692, + [SMALL_STATE(2714)] = 119736, + [SMALL_STATE(2715)] = 119780, + [SMALL_STATE(2716)] = 119828, + [SMALL_STATE(2717)] = 119874, + [SMALL_STATE(2718)] = 119918, + [SMALL_STATE(2719)] = 119962, + [SMALL_STATE(2720)] = 120006, + [SMALL_STATE(2721)] = 120056, + [SMALL_STATE(2722)] = 120106, + [SMALL_STATE(2723)] = 120150, + [SMALL_STATE(2724)] = 120192, + [SMALL_STATE(2725)] = 120234, + [SMALL_STATE(2726)] = 120276, + [SMALL_STATE(2727)] = 120318, + [SMALL_STATE(2728)] = 120360, + [SMALL_STATE(2729)] = 120402, + [SMALL_STATE(2730)] = 120444, + [SMALL_STATE(2731)] = 120486, + [SMALL_STATE(2732)] = 120528, + [SMALL_STATE(2733)] = 120570, + [SMALL_STATE(2734)] = 120612, + [SMALL_STATE(2735)] = 120654, + [SMALL_STATE(2736)] = 120696, + [SMALL_STATE(2737)] = 120738, + [SMALL_STATE(2738)] = 120780, + [SMALL_STATE(2739)] = 120823, + [SMALL_STATE(2740)] = 120902, + [SMALL_STATE(2741)] = 120943, + [SMALL_STATE(2742)] = 120984, + [SMALL_STATE(2743)] = 121027, + [SMALL_STATE(2744)] = 121072, + [SMALL_STATE(2745)] = 121151, + [SMALL_STATE(2746)] = 121200, + [SMALL_STATE(2747)] = 121247, + [SMALL_STATE(2748)] = 121292, + [SMALL_STATE(2749)] = 121335, + [SMALL_STATE(2750)] = 121384, + [SMALL_STATE(2751)] = 121463, + [SMALL_STATE(2752)] = 121512, + [SMALL_STATE(2753)] = 121553, + [SMALL_STATE(2754)] = 121594, + [SMALL_STATE(2755)] = 121635, + [SMALL_STATE(2756)] = 121676, + [SMALL_STATE(2757)] = 121717, + [SMALL_STATE(2758)] = 121760, + [SMALL_STATE(2759)] = 121837, + [SMALL_STATE(2760)] = 121878, + [SMALL_STATE(2761)] = 121919, + [SMALL_STATE(2762)] = 121960, + [SMALL_STATE(2763)] = 122039, + [SMALL_STATE(2764)] = 122080, + [SMALL_STATE(2765)] = 122121, + [SMALL_STATE(2766)] = 122162, + [SMALL_STATE(2767)] = 122203, + [SMALL_STATE(2768)] = 122244, + [SMALL_STATE(2769)] = 122285, + [SMALL_STATE(2770)] = 122326, + [SMALL_STATE(2771)] = 122405, + [SMALL_STATE(2772)] = 122490, + [SMALL_STATE(2773)] = 122531, + [SMALL_STATE(2774)] = 122572, + [SMALL_STATE(2775)] = 122651, + [SMALL_STATE(2776)] = 122730, + [SMALL_STATE(2777)] = 122771, + [SMALL_STATE(2778)] = 122850, + [SMALL_STATE(2779)] = 122929, + [SMALL_STATE(2780)] = 122970, + [SMALL_STATE(2781)] = 123011, + [SMALL_STATE(2782)] = 123090, + [SMALL_STATE(2783)] = 123169, + [SMALL_STATE(2784)] = 123210, + [SMALL_STATE(2785)] = 123251, + [SMALL_STATE(2786)] = 123330, + [SMALL_STATE(2787)] = 123409, + [SMALL_STATE(2788)] = 123488, + [SMALL_STATE(2789)] = 123529, + [SMALL_STATE(2790)] = 123608, + [SMALL_STATE(2791)] = 123687, + [SMALL_STATE(2792)] = 123766, + [SMALL_STATE(2793)] = 123807, + [SMALL_STATE(2794)] = 123848, + [SMALL_STATE(2795)] = 123889, + [SMALL_STATE(2796)] = 123930, + [SMALL_STATE(2797)] = 124009, + [SMALL_STATE(2798)] = 124050, + [SMALL_STATE(2799)] = 124091, + [SMALL_STATE(2800)] = 124170, + [SMALL_STATE(2801)] = 124249, + [SMALL_STATE(2802)] = 124290, + [SMALL_STATE(2803)] = 124331, + [SMALL_STATE(2804)] = 124372, + [SMALL_STATE(2805)] = 124413, + [SMALL_STATE(2806)] = 124454, + [SMALL_STATE(2807)] = 124495, + [SMALL_STATE(2808)] = 124544, + [SMALL_STATE(2809)] = 124585, + [SMALL_STATE(2810)] = 124628, + [SMALL_STATE(2811)] = 124669, + [SMALL_STATE(2812)] = 124712, + [SMALL_STATE(2813)] = 124753, + [SMALL_STATE(2814)] = 124796, + [SMALL_STATE(2815)] = 124875, + [SMALL_STATE(2816)] = 124916, + [SMALL_STATE(2817)] = 124957, + [SMALL_STATE(2818)] = 124998, + [SMALL_STATE(2819)] = 125043, + [SMALL_STATE(2820)] = 125086, + [SMALL_STATE(2821)] = 125127, + [SMALL_STATE(2822)] = 125168, + [SMALL_STATE(2823)] = 125209, + [SMALL_STATE(2824)] = 125288, + [SMALL_STATE(2825)] = 125367, + [SMALL_STATE(2826)] = 125408, + [SMALL_STATE(2827)] = 125485, + [SMALL_STATE(2828)] = 125526, + [SMALL_STATE(2829)] = 125567, + [SMALL_STATE(2830)] = 125608, + [SMALL_STATE(2831)] = 125649, + [SMALL_STATE(2832)] = 125721, + [SMALL_STATE(2833)] = 125765, + [SMALL_STATE(2834)] = 125841, + [SMALL_STATE(2835)] = 125913, + [SMALL_STATE(2836)] = 125985, + [SMALL_STATE(2837)] = 126057, + [SMALL_STATE(2838)] = 126129, + [SMALL_STATE(2839)] = 126201, + [SMALL_STATE(2840)] = 126273, + [SMALL_STATE(2841)] = 126344, + [SMALL_STATE(2842)] = 126415, + [SMALL_STATE(2843)] = 126486, + [SMALL_STATE(2844)] = 126557, + [SMALL_STATE(2845)] = 126630, + [SMALL_STATE(2846)] = 126701, + [SMALL_STATE(2847)] = 126772, + [SMALL_STATE(2848)] = 126843, + [SMALL_STATE(2849)] = 126914, + [SMALL_STATE(2850)] = 126987, + [SMALL_STATE(2851)] = 127058, + [SMALL_STATE(2852)] = 127129, + [SMALL_STATE(2853)] = 127200, + [SMALL_STATE(2854)] = 127271, + [SMALL_STATE(2855)] = 127342, + [SMALL_STATE(2856)] = 127413, + [SMALL_STATE(2857)] = 127484, + [SMALL_STATE(2858)] = 127555, + [SMALL_STATE(2859)] = 127626, + [SMALL_STATE(2860)] = 127697, + [SMALL_STATE(2861)] = 127768, + [SMALL_STATE(2862)] = 127839, + [SMALL_STATE(2863)] = 127910, + [SMALL_STATE(2864)] = 127981, + [SMALL_STATE(2865)] = 128052, + [SMALL_STATE(2866)] = 128123, + [SMALL_STATE(2867)] = 128194, + [SMALL_STATE(2868)] = 128265, + [SMALL_STATE(2869)] = 128336, + [SMALL_STATE(2870)] = 128407, + [SMALL_STATE(2871)] = 128478, + [SMALL_STATE(2872)] = 128549, + [SMALL_STATE(2873)] = 128620, + [SMALL_STATE(2874)] = 128691, + [SMALL_STATE(2875)] = 128762, + [SMALL_STATE(2876)] = 128833, + [SMALL_STATE(2877)] = 128904, + [SMALL_STATE(2878)] = 128977, + [SMALL_STATE(2879)] = 129050, + [SMALL_STATE(2880)] = 129121, + [SMALL_STATE(2881)] = 129194, + [SMALL_STATE(2882)] = 129267, + [SMALL_STATE(2883)] = 129340, + [SMALL_STATE(2884)] = 129410, + [SMALL_STATE(2885)] = 129448, + [SMALL_STATE(2886)] = 129486, + [SMALL_STATE(2887)] = 129556, + [SMALL_STATE(2888)] = 129626, + [SMALL_STATE(2889)] = 129694, + [SMALL_STATE(2890)] = 129762, + [SMALL_STATE(2891)] = 129830, + [SMALL_STATE(2892)] = 129868, + [SMALL_STATE(2893)] = 129906, + [SMALL_STATE(2894)] = 129976, + [SMALL_STATE(2895)] = 130014, + [SMALL_STATE(2896)] = 130082, + [SMALL_STATE(2897)] = 130152, + [SMALL_STATE(2898)] = 130222, + [SMALL_STATE(2899)] = 130290, + [SMALL_STATE(2900)] = 130360, + [SMALL_STATE(2901)] = 130398, + [SMALL_STATE(2902)] = 130466, + [SMALL_STATE(2903)] = 130534, + [SMALL_STATE(2904)] = 130602, + [SMALL_STATE(2905)] = 130672, + [SMALL_STATE(2906)] = 130742, + [SMALL_STATE(2907)] = 130810, + [SMALL_STATE(2908)] = 130847, + [SMALL_STATE(2909)] = 130912, + [SMALL_STATE(2910)] = 130981, + [SMALL_STATE(2911)] = 131050, + [SMALL_STATE(2912)] = 131119, + [SMALL_STATE(2913)] = 131188, + [SMALL_STATE(2914)] = 131257, + [SMALL_STATE(2915)] = 131324, + [SMALL_STATE(2916)] = 131361, + [SMALL_STATE(2917)] = 131398, + [SMALL_STATE(2918)] = 131435, + [SMALL_STATE(2919)] = 131472, + [SMALL_STATE(2920)] = 131539, + [SMALL_STATE(2921)] = 131576, + [SMALL_STATE(2922)] = 131613, + [SMALL_STATE(2923)] = 131650, + [SMALL_STATE(2924)] = 131687, + [SMALL_STATE(2925)] = 131724, + [SMALL_STATE(2926)] = 131761, + [SMALL_STATE(2927)] = 131798, + [SMALL_STATE(2928)] = 131835, + [SMALL_STATE(2929)] = 131872, + [SMALL_STATE(2930)] = 131909, + [SMALL_STATE(2931)] = 131946, + [SMALL_STATE(2932)] = 131983, + [SMALL_STATE(2933)] = 132020, + [SMALL_STATE(2934)] = 132057, + [SMALL_STATE(2935)] = 132094, + [SMALL_STATE(2936)] = 132131, + [SMALL_STATE(2937)] = 132170, + [SMALL_STATE(2938)] = 132207, + [SMALL_STATE(2939)] = 132244, + [SMALL_STATE(2940)] = 132313, + [SMALL_STATE(2941)] = 132350, + [SMALL_STATE(2942)] = 132417, + [SMALL_STATE(2943)] = 132454, + [SMALL_STATE(2944)] = 132491, + [SMALL_STATE(2945)] = 132528, + [SMALL_STATE(2946)] = 132565, + [SMALL_STATE(2947)] = 132602, + [SMALL_STATE(2948)] = 132641, + [SMALL_STATE(2949)] = 132680, + [SMALL_STATE(2950)] = 132717, + [SMALL_STATE(2951)] = 132784, + [SMALL_STATE(2952)] = 132821, + [SMALL_STATE(2953)] = 132860, + [SMALL_STATE(2954)] = 132897, + [SMALL_STATE(2955)] = 132936, + [SMALL_STATE(2956)] = 132973, + [SMALL_STATE(2957)] = 133042, + [SMALL_STATE(2958)] = 133111, + [SMALL_STATE(2959)] = 133148, + [SMALL_STATE(2960)] = 133215, + [SMALL_STATE(2961)] = 133252, + [SMALL_STATE(2962)] = 133289, + [SMALL_STATE(2963)] = 133326, + [SMALL_STATE(2964)] = 133363, + [SMALL_STATE(2965)] = 133432, + [SMALL_STATE(2966)] = 133501, + [SMALL_STATE(2967)] = 133570, + [SMALL_STATE(2968)] = 133607, + [SMALL_STATE(2969)] = 133646, + [SMALL_STATE(2970)] = 133683, + [SMALL_STATE(2971)] = 133748, + [SMALL_STATE(2972)] = 133787, + [SMALL_STATE(2973)] = 133824, + [SMALL_STATE(2974)] = 133861, + [SMALL_STATE(2975)] = 133898, + [SMALL_STATE(2976)] = 133935, + [SMALL_STATE(2977)] = 134004, + [SMALL_STATE(2978)] = 134073, + [SMALL_STATE(2979)] = 134110, + [SMALL_STATE(2980)] = 134147, + [SMALL_STATE(2981)] = 134184, + [SMALL_STATE(2982)] = 134221, + [SMALL_STATE(2983)] = 134258, + [SMALL_STATE(2984)] = 134295, + [SMALL_STATE(2985)] = 134332, + [SMALL_STATE(2986)] = 134397, + [SMALL_STATE(2987)] = 134434, + [SMALL_STATE(2988)] = 134471, + [SMALL_STATE(2989)] = 134538, + [SMALL_STATE(2990)] = 134575, + [SMALL_STATE(2991)] = 134612, + [SMALL_STATE(2992)] = 134649, + [SMALL_STATE(2993)] = 134686, + [SMALL_STATE(2994)] = 134755, + [SMALL_STATE(2995)] = 134792, + [SMALL_STATE(2996)] = 134829, + [SMALL_STATE(2997)] = 134866, + [SMALL_STATE(2998)] = 134903, + [SMALL_STATE(2999)] = 134940, + [SMALL_STATE(3000)] = 135009, + [SMALL_STATE(3001)] = 135046, + [SMALL_STATE(3002)] = 135083, + [SMALL_STATE(3003)] = 135120, + [SMALL_STATE(3004)] = 135157, + [SMALL_STATE(3005)] = 135194, + [SMALL_STATE(3006)] = 135231, + [SMALL_STATE(3007)] = 135268, + [SMALL_STATE(3008)] = 135305, + [SMALL_STATE(3009)] = 135342, + [SMALL_STATE(3010)] = 135379, + [SMALL_STATE(3011)] = 135416, + [SMALL_STATE(3012)] = 135453, + [SMALL_STATE(3013)] = 135492, + [SMALL_STATE(3014)] = 135561, + [SMALL_STATE(3015)] = 135598, + [SMALL_STATE(3016)] = 135635, + [SMALL_STATE(3017)] = 135672, + [SMALL_STATE(3018)] = 135709, + [SMALL_STATE(3019)] = 135778, + [SMALL_STATE(3020)] = 135847, + [SMALL_STATE(3021)] = 135884, + [SMALL_STATE(3022)] = 135921, + [SMALL_STATE(3023)] = 135958, + [SMALL_STATE(3024)] = 135995, + [SMALL_STATE(3025)] = 136064, + [SMALL_STATE(3026)] = 136101, + [SMALL_STATE(3027)] = 136170, + [SMALL_STATE(3028)] = 136206, + [SMALL_STATE(3029)] = 136242, + [SMALL_STATE(3030)] = 136278, + [SMALL_STATE(3031)] = 136314, + [SMALL_STATE(3032)] = 136350, + [SMALL_STATE(3033)] = 136386, + [SMALL_STATE(3034)] = 136422, + [SMALL_STATE(3035)] = 136458, + [SMALL_STATE(3036)] = 136494, + [SMALL_STATE(3037)] = 136530, + [SMALL_STATE(3038)] = 136566, + [SMALL_STATE(3039)] = 136602, + [SMALL_STATE(3040)] = 136638, + [SMALL_STATE(3041)] = 136674, + [SMALL_STATE(3042)] = 136710, + [SMALL_STATE(3043)] = 136746, + [SMALL_STATE(3044)] = 136782, + [SMALL_STATE(3045)] = 136818, + [SMALL_STATE(3046)] = 136854, + [SMALL_STATE(3047)] = 136890, + [SMALL_STATE(3048)] = 136926, + [SMALL_STATE(3049)] = 136962, + [SMALL_STATE(3050)] = 136998, + [SMALL_STATE(3051)] = 137034, + [SMALL_STATE(3052)] = 137070, + [SMALL_STATE(3053)] = 137106, + [SMALL_STATE(3054)] = 137142, + [SMALL_STATE(3055)] = 137178, + [SMALL_STATE(3056)] = 137214, + [SMALL_STATE(3057)] = 137262, + [SMALL_STATE(3058)] = 137298, + [SMALL_STATE(3059)] = 137334, + [SMALL_STATE(3060)] = 137370, + [SMALL_STATE(3061)] = 137406, + [SMALL_STATE(3062)] = 137442, + [SMALL_STATE(3063)] = 137478, + [SMALL_STATE(3064)] = 137514, + [SMALL_STATE(3065)] = 137550, + [SMALL_STATE(3066)] = 137586, + [SMALL_STATE(3067)] = 137622, + [SMALL_STATE(3068)] = 137658, + [SMALL_STATE(3069)] = 137694, + [SMALL_STATE(3070)] = 137730, + [SMALL_STATE(3071)] = 137766, + [SMALL_STATE(3072)] = 137802, + [SMALL_STATE(3073)] = 137838, + [SMALL_STATE(3074)] = 137874, + [SMALL_STATE(3075)] = 137910, + [SMALL_STATE(3076)] = 137946, + [SMALL_STATE(3077)] = 137982, + [SMALL_STATE(3078)] = 138018, + [SMALL_STATE(3079)] = 138054, + [SMALL_STATE(3080)] = 138090, + [SMALL_STATE(3081)] = 138126, + [SMALL_STATE(3082)] = 138162, + [SMALL_STATE(3083)] = 138198, + [SMALL_STATE(3084)] = 138234, + [SMALL_STATE(3085)] = 138270, + [SMALL_STATE(3086)] = 138306, + [SMALL_STATE(3087)] = 138342, + [SMALL_STATE(3088)] = 138378, + [SMALL_STATE(3089)] = 138414, + [SMALL_STATE(3090)] = 138450, + [SMALL_STATE(3091)] = 138486, + [SMALL_STATE(3092)] = 138522, + [SMALL_STATE(3093)] = 138558, + [SMALL_STATE(3094)] = 138594, + [SMALL_STATE(3095)] = 138630, + [SMALL_STATE(3096)] = 138666, + [SMALL_STATE(3097)] = 138702, + [SMALL_STATE(3098)] = 138738, + [SMALL_STATE(3099)] = 138774, + [SMALL_STATE(3100)] = 138836, + [SMALL_STATE(3101)] = 138872, + [SMALL_STATE(3102)] = 138908, + [SMALL_STATE(3103)] = 138970, + [SMALL_STATE(3104)] = 139006, + [SMALL_STATE(3105)] = 139044, + [SMALL_STATE(3106)] = 139080, + [SMALL_STATE(3107)] = 139116, + [SMALL_STATE(3108)] = 139152, + [SMALL_STATE(3109)] = 139188, + [SMALL_STATE(3110)] = 139224, + [SMALL_STATE(3111)] = 139260, + [SMALL_STATE(3112)] = 139326, + [SMALL_STATE(3113)] = 139362, + [SMALL_STATE(3114)] = 139398, + [SMALL_STATE(3115)] = 139434, + [SMALL_STATE(3116)] = 139470, + [SMALL_STATE(3117)] = 139506, + [SMALL_STATE(3118)] = 139542, + [SMALL_STATE(3119)] = 139578, + [SMALL_STATE(3120)] = 139614, + [SMALL_STATE(3121)] = 139650, + [SMALL_STATE(3122)] = 139686, + [SMALL_STATE(3123)] = 139722, + [SMALL_STATE(3124)] = 139758, + [SMALL_STATE(3125)] = 139794, + [SMALL_STATE(3126)] = 139830, + [SMALL_STATE(3127)] = 139866, + [SMALL_STATE(3128)] = 139902, + [SMALL_STATE(3129)] = 139938, + [SMALL_STATE(3130)] = 139974, + [SMALL_STATE(3131)] = 140010, + [SMALL_STATE(3132)] = 140046, + [SMALL_STATE(3133)] = 140082, + [SMALL_STATE(3134)] = 140118, + [SMALL_STATE(3135)] = 140154, + [SMALL_STATE(3136)] = 140190, + [SMALL_STATE(3137)] = 140252, + [SMALL_STATE(3138)] = 140288, + [SMALL_STATE(3139)] = 140324, + [SMALL_STATE(3140)] = 140360, + [SMALL_STATE(3141)] = 140396, + [SMALL_STATE(3142)] = 140432, + [SMALL_STATE(3143)] = 140494, + [SMALL_STATE(3144)] = 140530, + [SMALL_STATE(3145)] = 140566, + [SMALL_STATE(3146)] = 140602, + [SMALL_STATE(3147)] = 140638, + [SMALL_STATE(3148)] = 140674, + [SMALL_STATE(3149)] = 140722, + [SMALL_STATE(3150)] = 140758, + [SMALL_STATE(3151)] = 140794, + [SMALL_STATE(3152)] = 140830, + [SMALL_STATE(3153)] = 140868, + [SMALL_STATE(3154)] = 140904, + [SMALL_STATE(3155)] = 140940, + [SMALL_STATE(3156)] = 140976, + [SMALL_STATE(3157)] = 141012, + [SMALL_STATE(3158)] = 141048, + [SMALL_STATE(3159)] = 141084, + [SMALL_STATE(3160)] = 141120, + [SMALL_STATE(3161)] = 141181, + [SMALL_STATE(3162)] = 141216, + [SMALL_STATE(3163)] = 141251, + [SMALL_STATE(3164)] = 141286, + [SMALL_STATE(3165)] = 141321, + [SMALL_STATE(3166)] = 141356, + [SMALL_STATE(3167)] = 141391, + [SMALL_STATE(3168)] = 141452, + [SMALL_STATE(3169)] = 141487, + [SMALL_STATE(3170)] = 141548, + [SMALL_STATE(3171)] = 141609, + [SMALL_STATE(3172)] = 141670, + [SMALL_STATE(3173)] = 141705, + [SMALL_STATE(3174)] = 141766, + [SMALL_STATE(3175)] = 141827, + [SMALL_STATE(3176)] = 141888, + [SMALL_STATE(3177)] = 141923, + [SMALL_STATE(3178)] = 141958, + [SMALL_STATE(3179)] = 142026, + [SMALL_STATE(3180)] = 142060, + [SMALL_STATE(3181)] = 142128, + [SMALL_STATE(3182)] = 142162, + [SMALL_STATE(3183)] = 142222, + [SMALL_STATE(3184)] = 142256, + [SMALL_STATE(3185)] = 142316, + [SMALL_STATE(3186)] = 142350, + [SMALL_STATE(3187)] = 142410, + [SMALL_STATE(3188)] = 142470, + [SMALL_STATE(3189)] = 142523, + [SMALL_STATE(3190)] = 142568, + [SMALL_STATE(3191)] = 142601, + [SMALL_STATE(3192)] = 142646, + [SMALL_STATE(3193)] = 142701, + [SMALL_STATE(3194)] = 142734, + [SMALL_STATE(3195)] = 142799, + [SMALL_STATE(3196)] = 142864, + [SMALL_STATE(3197)] = 142897, + [SMALL_STATE(3198)] = 142930, + [SMALL_STATE(3199)] = 142973, + [SMALL_STATE(3200)] = 143032, + [SMALL_STATE(3201)] = 143075, + [SMALL_STATE(3202)] = 143116, + [SMALL_STATE(3203)] = 143159, + [SMALL_STATE(3204)] = 143200, + [SMALL_STATE(3205)] = 143243, + [SMALL_STATE(3206)] = 143302, + [SMALL_STATE(3207)] = 143334, + [SMALL_STATE(3208)] = 143390, + [SMALL_STATE(3209)] = 143420, + [SMALL_STATE(3210)] = 143450, + [SMALL_STATE(3211)] = 143506, + [SMALL_STATE(3212)] = 143538, + [SMALL_STATE(3213)] = 143580, + [SMALL_STATE(3214)] = 143612, + [SMALL_STATE(3215)] = 143642, + [SMALL_STATE(3216)] = 143674, + [SMALL_STATE(3217)] = 143716, + [SMALL_STATE(3218)] = 143748, + [SMALL_STATE(3219)] = 143780, + [SMALL_STATE(3220)] = 143812, + [SMALL_STATE(3221)] = 143844, + [SMALL_STATE(3222)] = 143900, + [SMALL_STATE(3223)] = 143932, + [SMALL_STATE(3224)] = 143964, + [SMALL_STATE(3225)] = 143994, + [SMALL_STATE(3226)] = 144050, + [SMALL_STATE(3227)] = 144080, + [SMALL_STATE(3228)] = 144122, + [SMALL_STATE(3229)] = 144164, + [SMALL_STATE(3230)] = 144196, + [SMALL_STATE(3231)] = 144228, + [SMALL_STATE(3232)] = 144258, + [SMALL_STATE(3233)] = 144288, + [SMALL_STATE(3234)] = 144341, + [SMALL_STATE(3235)] = 144378, + [SMALL_STATE(3236)] = 144429, + [SMALL_STATE(3237)] = 144480, + [SMALL_STATE(3238)] = 144511, + [SMALL_STATE(3239)] = 144548, + [SMALL_STATE(3240)] = 144585, + [SMALL_STATE(3241)] = 144616, + [SMALL_STATE(3242)] = 144669, + [SMALL_STATE(3243)] = 144720, + [SMALL_STATE(3244)] = 144771, + [SMALL_STATE(3245)] = 144808, + [SMALL_STATE(3246)] = 144861, + [SMALL_STATE(3247)] = 144914, + [SMALL_STATE(3248)] = 144965, + [SMALL_STATE(3249)] = 145018, + [SMALL_STATE(3250)] = 145049, + [SMALL_STATE(3251)] = 145086, + [SMALL_STATE(3252)] = 145117, + [SMALL_STATE(3253)] = 145170, + [SMALL_STATE(3254)] = 145207, + [SMALL_STATE(3255)] = 145258, + [SMALL_STATE(3256)] = 145309, + [SMALL_STATE(3257)] = 145360, + [SMALL_STATE(3258)] = 145393, + [SMALL_STATE(3259)] = 145446, + [SMALL_STATE(3260)] = 145497, + [SMALL_STATE(3261)] = 145532, + [SMALL_STATE(3262)] = 145583, + [SMALL_STATE(3263)] = 145620, + [SMALL_STATE(3264)] = 145671, + [SMALL_STATE(3265)] = 145702, + [SMALL_STATE(3266)] = 145752, + [SMALL_STATE(3267)] = 145802, + [SMALL_STATE(3268)] = 145832, + [SMALL_STATE(3269)] = 145864, + [SMALL_STATE(3270)] = 145914, + [SMALL_STATE(3271)] = 145964, + [SMALL_STATE(3272)] = 146002, + [SMALL_STATE(3273)] = 146040, + [SMALL_STATE(3274)] = 146070, + [SMALL_STATE(3275)] = 146100, + [SMALL_STATE(3276)] = 146130, + [SMALL_STATE(3277)] = 146160, + [SMALL_STATE(3278)] = 146210, + [SMALL_STATE(3279)] = 146262, + [SMALL_STATE(3280)] = 146312, + [SMALL_STATE(3281)] = 146362, + [SMALL_STATE(3282)] = 146412, + [SMALL_STATE(3283)] = 146462, + [SMALL_STATE(3284)] = 146492, + [SMALL_STATE(3285)] = 146544, + [SMALL_STATE(3286)] = 146574, + [SMALL_STATE(3287)] = 146624, + [SMALL_STATE(3288)] = 146674, + [SMALL_STATE(3289)] = 146724, + [SMALL_STATE(3290)] = 146774, + [SMALL_STATE(3291)] = 146824, + [SMALL_STATE(3292)] = 146874, + [SMALL_STATE(3293)] = 146919, + [SMALL_STATE(3294)] = 146948, + [SMALL_STATE(3295)] = 146973, + [SMALL_STATE(3296)] = 147002, + [SMALL_STATE(3297)] = 147027, + [SMALL_STATE(3298)] = 147056, + [SMALL_STATE(3299)] = 147093, + [SMALL_STATE(3300)] = 147130, + [SMALL_STATE(3301)] = 147159, + [SMALL_STATE(3302)] = 147188, + [SMALL_STATE(3303)] = 147217, + [SMALL_STATE(3304)] = 147254, + [SMALL_STATE(3305)] = 147295, + [SMALL_STATE(3306)] = 147332, + [SMALL_STATE(3307)] = 147371, + [SMALL_STATE(3308)] = 147418, + [SMALL_STATE(3309)] = 147443, + [SMALL_STATE(3310)] = 147486, + [SMALL_STATE(3311)] = 147515, + [SMALL_STATE(3312)] = 147562, + [SMALL_STATE(3313)] = 147587, + [SMALL_STATE(3314)] = 147634, + [SMALL_STATE(3315)] = 147663, + [SMALL_STATE(3316)] = 147704, + [SMALL_STATE(3317)] = 147751, + [SMALL_STATE(3318)] = 147776, + [SMALL_STATE(3319)] = 147823, + [SMALL_STATE(3320)] = 147858, + [SMALL_STATE(3321)] = 147887, + [SMALL_STATE(3322)] = 147912, + [SMALL_STATE(3323)] = 147959, + [SMALL_STATE(3324)] = 148000, + [SMALL_STATE(3325)] = 148047, + [SMALL_STATE(3326)] = 148076, + [SMALL_STATE(3327)] = 148123, + [SMALL_STATE(3328)] = 148150, + [SMALL_STATE(3329)] = 148197, + [SMALL_STATE(3330)] = 148222, + [SMALL_STATE(3331)] = 148269, + [SMALL_STATE(3332)] = 148316, + [SMALL_STATE(3333)] = 148363, + [SMALL_STATE(3334)] = 148410, + [SMALL_STATE(3335)] = 148457, + [SMALL_STATE(3336)] = 148504, + [SMALL_STATE(3337)] = 148551, + [SMALL_STATE(3338)] = 148598, + [SMALL_STATE(3339)] = 148623, + [SMALL_STATE(3340)] = 148652, + [SMALL_STATE(3341)] = 148696, + [SMALL_STATE(3342)] = 148740, + [SMALL_STATE(3343)] = 148784, + [SMALL_STATE(3344)] = 148814, + [SMALL_STATE(3345)] = 148858, + [SMALL_STATE(3346)] = 148900, + [SMALL_STATE(3347)] = 148942, + [SMALL_STATE(3348)] = 148984, + [SMALL_STATE(3349)] = 149026, + [SMALL_STATE(3350)] = 149068, + [SMALL_STATE(3351)] = 149110, + [SMALL_STATE(3352)] = 149152, + [SMALL_STATE(3353)] = 149194, + [SMALL_STATE(3354)] = 149222, + [SMALL_STATE(3355)] = 149266, + [SMALL_STATE(3356)] = 149308, + [SMALL_STATE(3357)] = 149350, + [SMALL_STATE(3358)] = 149394, + [SMALL_STATE(3359)] = 149438, + [SMALL_STATE(3360)] = 149480, + [SMALL_STATE(3361)] = 149524, + [SMALL_STATE(3362)] = 149552, + [SMALL_STATE(3363)] = 149594, + [SMALL_STATE(3364)] = 149622, + [SMALL_STATE(3365)] = 149652, + [SMALL_STATE(3366)] = 149696, + [SMALL_STATE(3367)] = 149738, + [SMALL_STATE(3368)] = 149780, + [SMALL_STATE(3369)] = 149822, + [SMALL_STATE(3370)] = 149864, + [SMALL_STATE(3371)] = 149906, + [SMALL_STATE(3372)] = 149950, + [SMALL_STATE(3373)] = 149994, + [SMALL_STATE(3374)] = 150038, + [SMALL_STATE(3375)] = 150082, + [SMALL_STATE(3376)] = 150124, + [SMALL_STATE(3377)] = 150168, + [SMALL_STATE(3378)] = 150212, + [SMALL_STATE(3379)] = 150256, + [SMALL_STATE(3380)] = 150300, + [SMALL_STATE(3381)] = 150344, + [SMALL_STATE(3382)] = 150388, + [SMALL_STATE(3383)] = 150432, + [SMALL_STATE(3384)] = 150474, + [SMALL_STATE(3385)] = 150518, + [SMALL_STATE(3386)] = 150562, + [SMALL_STATE(3387)] = 150604, + [SMALL_STATE(3388)] = 150648, + [SMALL_STATE(3389)] = 150692, + [SMALL_STATE(3390)] = 150736, + [SMALL_STATE(3391)] = 150778, + [SMALL_STATE(3392)] = 150820, + [SMALL_STATE(3393)] = 150864, + [SMALL_STATE(3394)] = 150908, + [SMALL_STATE(3395)] = 150950, + [SMALL_STATE(3396)] = 150994, + [SMALL_STATE(3397)] = 151038, + [SMALL_STATE(3398)] = 151082, + [SMALL_STATE(3399)] = 151126, + [SMALL_STATE(3400)] = 151168, + [SMALL_STATE(3401)] = 151210, + [SMALL_STATE(3402)] = 151252, + [SMALL_STATE(3403)] = 151294, + [SMALL_STATE(3404)] = 151336, + [SMALL_STATE(3405)] = 151380, + [SMALL_STATE(3406)] = 151424, + [SMALL_STATE(3407)] = 151468, + [SMALL_STATE(3408)] = 151512, + [SMALL_STATE(3409)] = 151556, + [SMALL_STATE(3410)] = 151600, + [SMALL_STATE(3411)] = 151644, + [SMALL_STATE(3412)] = 151688, + [SMALL_STATE(3413)] = 151720, + [SMALL_STATE(3414)] = 151764, + [SMALL_STATE(3415)] = 151808, + [SMALL_STATE(3416)] = 151850, + [SMALL_STATE(3417)] = 151894, + [SMALL_STATE(3418)] = 151938, + [SMALL_STATE(3419)] = 151982, + [SMALL_STATE(3420)] = 152026, + [SMALL_STATE(3421)] = 152070, + [SMALL_STATE(3422)] = 152114, + [SMALL_STATE(3423)] = 152158, + [SMALL_STATE(3424)] = 152202, + [SMALL_STATE(3425)] = 152246, + [SMALL_STATE(3426)] = 152290, + [SMALL_STATE(3427)] = 152334, + [SMALL_STATE(3428)] = 152378, + [SMALL_STATE(3429)] = 152426, + [SMALL_STATE(3430)] = 152454, + [SMALL_STATE(3431)] = 152498, + [SMALL_STATE(3432)] = 152530, + [SMALL_STATE(3433)] = 152574, + [SMALL_STATE(3434)] = 152618, + [SMALL_STATE(3435)] = 152648, + [SMALL_STATE(3436)] = 152692, + [SMALL_STATE(3437)] = 152734, + [SMALL_STATE(3438)] = 152778, + [SMALL_STATE(3439)] = 152822, + [SMALL_STATE(3440)] = 152866, + [SMALL_STATE(3441)] = 152910, + [SMALL_STATE(3442)] = 152954, + [SMALL_STATE(3443)] = 152998, + [SMALL_STATE(3444)] = 153042, + [SMALL_STATE(3445)] = 153086, + [SMALL_STATE(3446)] = 153130, + [SMALL_STATE(3447)] = 153174, + [SMALL_STATE(3448)] = 153218, + [SMALL_STATE(3449)] = 153262, + [SMALL_STATE(3450)] = 153306, + [SMALL_STATE(3451)] = 153350, + [SMALL_STATE(3452)] = 153394, + [SMALL_STATE(3453)] = 153435, + [SMALL_STATE(3454)] = 153476, + [SMALL_STATE(3455)] = 153505, + [SMALL_STATE(3456)] = 153530, + [SMALL_STATE(3457)] = 153555, + [SMALL_STATE(3458)] = 153580, + [SMALL_STATE(3459)] = 153607, + [SMALL_STATE(3460)] = 153654, + [SMALL_STATE(3461)] = 153687, + [SMALL_STATE(3462)] = 153728, + [SMALL_STATE(3463)] = 153769, + [SMALL_STATE(3464)] = 153810, + [SMALL_STATE(3465)] = 153851, + [SMALL_STATE(3466)] = 153878, + [SMALL_STATE(3467)] = 153905, + [SMALL_STATE(3468)] = 153946, + [SMALL_STATE(3469)] = 153987, + [SMALL_STATE(3470)] = 154028, + [SMALL_STATE(3471)] = 154073, + [SMALL_STATE(3472)] = 154114, + [SMALL_STATE(3473)] = 154155, + [SMALL_STATE(3474)] = 154180, + [SMALL_STATE(3475)] = 154207, + [SMALL_STATE(3476)] = 154234, + [SMALL_STATE(3477)] = 154275, + [SMALL_STATE(3478)] = 154316, + [SMALL_STATE(3479)] = 154357, + [SMALL_STATE(3480)] = 154396, + [SMALL_STATE(3481)] = 154437, + [SMALL_STATE(3482)] = 154476, + [SMALL_STATE(3483)] = 154503, + [SMALL_STATE(3484)] = 154541, + [SMALL_STATE(3485)] = 154565, + [SMALL_STATE(3486)] = 154589, + [SMALL_STATE(3487)] = 154615, + [SMALL_STATE(3488)] = 154643, + [SMALL_STATE(3489)] = 154667, + [SMALL_STATE(3490)] = 154691, + [SMALL_STATE(3491)] = 154729, + [SMALL_STATE(3492)] = 154753, + [SMALL_STATE(3493)] = 154789, + [SMALL_STATE(3494)] = 154825, + [SMALL_STATE(3495)] = 154849, + [SMALL_STATE(3496)] = 154885, + [SMALL_STATE(3497)] = 154923, + [SMALL_STATE(3498)] = 154957, + [SMALL_STATE(3499)] = 154997, + [SMALL_STATE(3500)] = 155037, + [SMALL_STATE(3501)] = 155073, + [SMALL_STATE(3502)] = 155111, + [SMALL_STATE(3503)] = 155151, + [SMALL_STATE(3504)] = 155187, + [SMALL_STATE(3505)] = 155223, + [SMALL_STATE(3506)] = 155247, + [SMALL_STATE(3507)] = 155273, + [SMALL_STATE(3508)] = 155297, + [SMALL_STATE(3509)] = 155331, + [SMALL_STATE(3510)] = 155359, + [SMALL_STATE(3511)] = 155399, + [SMALL_STATE(3512)] = 155423, + [SMALL_STATE(3513)] = 155447, + [SMALL_STATE(3514)] = 155474, + [SMALL_STATE(3515)] = 155509, + [SMALL_STATE(3516)] = 155542, + [SMALL_STATE(3517)] = 155575, + [SMALL_STATE(3518)] = 155608, + [SMALL_STATE(3519)] = 155647, + [SMALL_STATE(3520)] = 155680, + [SMALL_STATE(3521)] = 155701, + [SMALL_STATE(3522)] = 155738, + [SMALL_STATE(3523)] = 155777, + [SMALL_STATE(3524)] = 155804, + [SMALL_STATE(3525)] = 155837, + [SMALL_STATE(3526)] = 155864, + [SMALL_STATE(3527)] = 155887, + [SMALL_STATE(3528)] = 155920, + [SMALL_STATE(3529)] = 155943, + [SMALL_STATE(3530)] = 155964, + [SMALL_STATE(3531)] = 155991, + [SMALL_STATE(3532)] = 156014, + [SMALL_STATE(3533)] = 156047, + [SMALL_STATE(3534)] = 156068, + [SMALL_STATE(3535)] = 156103, + [SMALL_STATE(3536)] = 156126, + [SMALL_STATE(3537)] = 156153, + [SMALL_STATE(3538)] = 156176, + [SMALL_STATE(3539)] = 156197, + [SMALL_STATE(3540)] = 156222, + [SMALL_STATE(3541)] = 156261, + [SMALL_STATE(3542)] = 156294, + [SMALL_STATE(3543)] = 156317, + [SMALL_STATE(3544)] = 156344, + [SMALL_STATE(3545)] = 156369, + [SMALL_STATE(3546)] = 156392, + [SMALL_STATE(3547)] = 156419, + [SMALL_STATE(3548)] = 156452, + [SMALL_STATE(3549)] = 156479, + [SMALL_STATE(3550)] = 156506, + [SMALL_STATE(3551)] = 156533, + [SMALL_STATE(3552)] = 156563, + [SMALL_STATE(3553)] = 156589, + [SMALL_STATE(3554)] = 156627, + [SMALL_STATE(3555)] = 156659, + [SMALL_STATE(3556)] = 156689, + [SMALL_STATE(3557)] = 156721, + [SMALL_STATE(3558)] = 156753, + [SMALL_STATE(3559)] = 156775, + [SMALL_STATE(3560)] = 156797, + [SMALL_STATE(3561)] = 156829, + [SMALL_STATE(3562)] = 156861, + [SMALL_STATE(3563)] = 156891, + [SMALL_STATE(3564)] = 156931, + [SMALL_STATE(3565)] = 156963, + [SMALL_STATE(3566)] = 156995, + [SMALL_STATE(3567)] = 157023, + [SMALL_STATE(3568)] = 157055, + [SMALL_STATE(3569)] = 157087, + [SMALL_STATE(3570)] = 157117, + [SMALL_STATE(3571)] = 157157, + [SMALL_STATE(3572)] = 157187, + [SMALL_STATE(3573)] = 157221, + [SMALL_STATE(3574)] = 157243, + [SMALL_STATE(3575)] = 157273, + [SMALL_STATE(3576)] = 157303, + [SMALL_STATE(3577)] = 157325, + [SMALL_STATE(3578)] = 157353, + [SMALL_STATE(3579)] = 157393, + [SMALL_STATE(3580)] = 157419, + [SMALL_STATE(3581)] = 157449, + [SMALL_STATE(3582)] = 157483, + [SMALL_STATE(3583)] = 157505, + [SMALL_STATE(3584)] = 157537, + [SMALL_STATE(3585)] = 157569, + [SMALL_STATE(3586)] = 157601, + [SMALL_STATE(3587)] = 157623, + [SMALL_STATE(3588)] = 157649, + [SMALL_STATE(3589)] = 157681, + [SMALL_STATE(3590)] = 157703, + [SMALL_STATE(3591)] = 157733, + [SMALL_STATE(3592)] = 157769, + [SMALL_STATE(3593)] = 157797, + [SMALL_STATE(3594)] = 157827, + [SMALL_STATE(3595)] = 157857, + [SMALL_STATE(3596)] = 157897, + [SMALL_STATE(3597)] = 157929, + [SMALL_STATE(3598)] = 157955, + [SMALL_STATE(3599)] = 157979, + [SMALL_STATE(3600)] = 158003, + [SMALL_STATE(3601)] = 158041, + [SMALL_STATE(3602)] = 158079, + [SMALL_STATE(3603)] = 158117, + [SMALL_STATE(3604)] = 158157, + [SMALL_STATE(3605)] = 158179, + [SMALL_STATE(3606)] = 158211, + [SMALL_STATE(3607)] = 158249, + [SMALL_STATE(3608)] = 158273, + [SMALL_STATE(3609)] = 158297, + [SMALL_STATE(3610)] = 158331, + [SMALL_STATE(3611)] = 158371, + [SMALL_STATE(3612)] = 158409, + [SMALL_STATE(3613)] = 158447, + [SMALL_STATE(3614)] = 158481, + [SMALL_STATE(3615)] = 158507, + [SMALL_STATE(3616)] = 158529, + [SMALL_STATE(3617)] = 158551, + [SMALL_STATE(3618)] = 158582, + [SMALL_STATE(3619)] = 158613, + [SMALL_STATE(3620)] = 158644, + [SMALL_STATE(3621)] = 158665, + [SMALL_STATE(3622)] = 158686, + [SMALL_STATE(3623)] = 158715, + [SMALL_STATE(3624)] = 158744, + [SMALL_STATE(3625)] = 158773, + [SMALL_STATE(3626)] = 158802, + [SMALL_STATE(3627)] = 158833, + [SMALL_STATE(3628)] = 158864, + [SMALL_STATE(3629)] = 158895, + [SMALL_STATE(3630)] = 158924, + [SMALL_STATE(3631)] = 158953, + [SMALL_STATE(3632)] = 158982, + [SMALL_STATE(3633)] = 159011, + [SMALL_STATE(3634)] = 159040, + [SMALL_STATE(3635)] = 159071, + [SMALL_STATE(3636)] = 159100, + [SMALL_STATE(3637)] = 159129, + [SMALL_STATE(3638)] = 159158, + [SMALL_STATE(3639)] = 159187, + [SMALL_STATE(3640)] = 159208, + [SMALL_STATE(3641)] = 159229, + [SMALL_STATE(3642)] = 159258, + [SMALL_STATE(3643)] = 159279, + [SMALL_STATE(3644)] = 159300, + [SMALL_STATE(3645)] = 159329, + [SMALL_STATE(3646)] = 159358, + [SMALL_STATE(3647)] = 159387, + [SMALL_STATE(3648)] = 159416, + [SMALL_STATE(3649)] = 159445, + [SMALL_STATE(3650)] = 159474, + [SMALL_STATE(3651)] = 159505, + [SMALL_STATE(3652)] = 159536, + [SMALL_STATE(3653)] = 159567, + [SMALL_STATE(3654)] = 159596, + [SMALL_STATE(3655)] = 159625, + [SMALL_STATE(3656)] = 159654, + [SMALL_STATE(3657)] = 159685, + [SMALL_STATE(3658)] = 159714, + [SMALL_STATE(3659)] = 159743, + [SMALL_STATE(3660)] = 159772, + [SMALL_STATE(3661)] = 159801, + [SMALL_STATE(3662)] = 159830, + [SMALL_STATE(3663)] = 159861, + [SMALL_STATE(3664)] = 159890, + [SMALL_STATE(3665)] = 159919, + [SMALL_STATE(3666)] = 159960, + [SMALL_STATE(3667)] = 159991, + [SMALL_STATE(3668)] = 160020, + [SMALL_STATE(3669)] = 160041, + [SMALL_STATE(3670)] = 160072, + [SMALL_STATE(3671)] = 160101, + [SMALL_STATE(3672)] = 160122, + [SMALL_STATE(3673)] = 160153, + [SMALL_STATE(3674)] = 160174, + [SMALL_STATE(3675)] = 160203, + [SMALL_STATE(3676)] = 160232, + [SMALL_STATE(3677)] = 160263, + [SMALL_STATE(3678)] = 160286, + [SMALL_STATE(3679)] = 160315, + [SMALL_STATE(3680)] = 160344, + [SMALL_STATE(3681)] = 160373, + [SMALL_STATE(3682)] = 160402, + [SMALL_STATE(3683)] = 160431, + [SMALL_STATE(3684)] = 160460, + [SMALL_STATE(3685)] = 160501, + [SMALL_STATE(3686)] = 160530, + [SMALL_STATE(3687)] = 160559, + [SMALL_STATE(3688)] = 160588, + [SMALL_STATE(3689)] = 160609, + [SMALL_STATE(3690)] = 160640, + [SMALL_STATE(3691)] = 160673, + [SMALL_STATE(3692)] = 160702, + [SMALL_STATE(3693)] = 160725, + [SMALL_STATE(3694)] = 160766, + [SMALL_STATE(3695)] = 160795, + [SMALL_STATE(3696)] = 160824, + [SMALL_STATE(3697)] = 160853, + [SMALL_STATE(3698)] = 160882, + [SMALL_STATE(3699)] = 160923, + [SMALL_STATE(3700)] = 160964, + [SMALL_STATE(3701)] = 160993, + [SMALL_STATE(3702)] = 161022, + [SMALL_STATE(3703)] = 161063, + [SMALL_STATE(3704)] = 161092, + [SMALL_STATE(3705)] = 161133, + [SMALL_STATE(3706)] = 161164, + [SMALL_STATE(3707)] = 161193, + [SMALL_STATE(3708)] = 161234, + [SMALL_STATE(3709)] = 161265, + [SMALL_STATE(3710)] = 161294, + [SMALL_STATE(3711)] = 161323, + [SMALL_STATE(3712)] = 161352, + [SMALL_STATE(3713)] = 161381, + [SMALL_STATE(3714)] = 161410, + [SMALL_STATE(3715)] = 161439, + [SMALL_STATE(3716)] = 161472, + [SMALL_STATE(3717)] = 161503, + [SMALL_STATE(3718)] = 161534, + [SMALL_STATE(3719)] = 161563, + [SMALL_STATE(3720)] = 161592, + [SMALL_STATE(3721)] = 161623, + [SMALL_STATE(3722)] = 161654, + [SMALL_STATE(3723)] = 161683, + [SMALL_STATE(3724)] = 161714, + [SMALL_STATE(3725)] = 161743, + [SMALL_STATE(3726)] = 161772, + [SMALL_STATE(3727)] = 161796, + [SMALL_STATE(3728)] = 161834, + [SMALL_STATE(3729)] = 161868, + [SMALL_STATE(3730)] = 161896, + [SMALL_STATE(3731)] = 161928, + [SMALL_STATE(3732)] = 161958, + [SMALL_STATE(3733)] = 161992, + [SMALL_STATE(3734)] = 162030, + [SMALL_STATE(3735)] = 162060, + [SMALL_STATE(3736)] = 162090, + [SMALL_STATE(3737)] = 162128, + [SMALL_STATE(3738)] = 162160, + [SMALL_STATE(3739)] = 162198, + [SMALL_STATE(3740)] = 162228, + [SMALL_STATE(3741)] = 162256, + [SMALL_STATE(3742)] = 162286, + [SMALL_STATE(3743)] = 162316, + [SMALL_STATE(3744)] = 162350, + [SMALL_STATE(3745)] = 162380, + [SMALL_STATE(3746)] = 162414, + [SMALL_STATE(3747)] = 162442, + [SMALL_STATE(3748)] = 162466, + [SMALL_STATE(3749)] = 162504, + [SMALL_STATE(3750)] = 162534, + [SMALL_STATE(3751)] = 162564, + [SMALL_STATE(3752)] = 162592, + [SMALL_STATE(3753)] = 162620, + [SMALL_STATE(3754)] = 162638, + [SMALL_STATE(3755)] = 162668, + [SMALL_STATE(3756)] = 162698, + [SMALL_STATE(3757)] = 162728, + [SMALL_STATE(3758)] = 162766, + [SMALL_STATE(3759)] = 162804, + [SMALL_STATE(3760)] = 162834, + [SMALL_STATE(3761)] = 162872, + [SMALL_STATE(3762)] = 162904, + [SMALL_STATE(3763)] = 162934, + [SMALL_STATE(3764)] = 162966, + [SMALL_STATE(3765)] = 162994, + [SMALL_STATE(3766)] = 163032, + [SMALL_STATE(3767)] = 163070, + [SMALL_STATE(3768)] = 163090, + [SMALL_STATE(3769)] = 163124, + [SMALL_STATE(3770)] = 163162, + [SMALL_STATE(3771)] = 163200, + [SMALL_STATE(3772)] = 163228, + [SMALL_STATE(3773)] = 163258, + [SMALL_STATE(3774)] = 163288, + [SMALL_STATE(3775)] = 163318, + [SMALL_STATE(3776)] = 163356, + [SMALL_STATE(3777)] = 163386, + [SMALL_STATE(3778)] = 163414, + [SMALL_STATE(3779)] = 163452, + [SMALL_STATE(3780)] = 163482, + [SMALL_STATE(3781)] = 163520, + [SMALL_STATE(3782)] = 163558, + [SMALL_STATE(3783)] = 163590, + [SMALL_STATE(3784)] = 163622, + [SMALL_STATE(3785)] = 163652, + [SMALL_STATE(3786)] = 163682, + [SMALL_STATE(3787)] = 163720, + [SMALL_STATE(3788)] = 163750, + [SMALL_STATE(3789)] = 163788, + [SMALL_STATE(3790)] = 163826, + [SMALL_STATE(3791)] = 163856, + [SMALL_STATE(3792)] = 163888, + [SMALL_STATE(3793)] = 163922, + [SMALL_STATE(3794)] = 163954, + [SMALL_STATE(3795)] = 163982, + [SMALL_STATE(3796)] = 164014, + [SMALL_STATE(3797)] = 164052, + [SMALL_STATE(3798)] = 164090, + [SMALL_STATE(3799)] = 164118, + [SMALL_STATE(3800)] = 164148, + [SMALL_STATE(3801)] = 164172, + [SMALL_STATE(3802)] = 164200, + [SMALL_STATE(3803)] = 164230, + [SMALL_STATE(3804)] = 164268, + [SMALL_STATE(3805)] = 164298, + [SMALL_STATE(3806)] = 164336, + [SMALL_STATE(3807)] = 164366, + [SMALL_STATE(3808)] = 164396, + [SMALL_STATE(3809)] = 164426, + [SMALL_STATE(3810)] = 164456, + [SMALL_STATE(3811)] = 164486, + [SMALL_STATE(3812)] = 164524, + [SMALL_STATE(3813)] = 164554, + [SMALL_STATE(3814)] = 164578, + [SMALL_STATE(3815)] = 164616, + [SMALL_STATE(3816)] = 164646, + [SMALL_STATE(3817)] = 164676, + [SMALL_STATE(3818)] = 164705, + [SMALL_STATE(3819)] = 164736, + [SMALL_STATE(3820)] = 164767, + [SMALL_STATE(3821)] = 164796, + [SMALL_STATE(3822)] = 164827, + [SMALL_STATE(3823)] = 164858, + [SMALL_STATE(3824)] = 164881, + [SMALL_STATE(3825)] = 164900, + [SMALL_STATE(3826)] = 164929, + [SMALL_STATE(3827)] = 164958, + [SMALL_STATE(3828)] = 164983, + [SMALL_STATE(3829)] = 165002, + [SMALL_STATE(3830)] = 165027, + [SMALL_STATE(3831)] = 165050, + [SMALL_STATE(3832)] = 165069, + [SMALL_STATE(3833)] = 165086, + [SMALL_STATE(3834)] = 165103, + [SMALL_STATE(3835)] = 165128, + [SMALL_STATE(3836)] = 165145, + [SMALL_STATE(3837)] = 165162, + [SMALL_STATE(3838)] = 165179, + [SMALL_STATE(3839)] = 165196, + [SMALL_STATE(3840)] = 165225, + [SMALL_STATE(3841)] = 165254, + [SMALL_STATE(3842)] = 165273, + [SMALL_STATE(3843)] = 165302, + [SMALL_STATE(3844)] = 165333, + [SMALL_STATE(3845)] = 165364, + [SMALL_STATE(3846)] = 165393, + [SMALL_STATE(3847)] = 165424, + [SMALL_STATE(3848)] = 165445, + [SMALL_STATE(3849)] = 165474, + [SMALL_STATE(3850)] = 165503, + [SMALL_STATE(3851)] = 165522, + [SMALL_STATE(3852)] = 165551, + [SMALL_STATE(3853)] = 165570, + [SMALL_STATE(3854)] = 165591, + [SMALL_STATE(3855)] = 165614, + [SMALL_STATE(3856)] = 165635, + [SMALL_STATE(3857)] = 165658, + [SMALL_STATE(3858)] = 165687, + [SMALL_STATE(3859)] = 165712, + [SMALL_STATE(3860)] = 165741, + [SMALL_STATE(3861)] = 165766, + [SMALL_STATE(3862)] = 165791, + [SMALL_STATE(3863)] = 165820, + [SMALL_STATE(3864)] = 165849, + [SMALL_STATE(3865)] = 165868, + [SMALL_STATE(3866)] = 165887, + [SMALL_STATE(3867)] = 165916, + [SMALL_STATE(3868)] = 165945, + [SMALL_STATE(3869)] = 165970, + [SMALL_STATE(3870)] = 165993, + [SMALL_STATE(3871)] = 166022, + [SMALL_STATE(3872)] = 166051, + [SMALL_STATE(3873)] = 166080, + [SMALL_STATE(3874)] = 166099, + [SMALL_STATE(3875)] = 166128, + [SMALL_STATE(3876)] = 166149, + [SMALL_STATE(3877)] = 166172, + [SMALL_STATE(3878)] = 166201, + [SMALL_STATE(3879)] = 166230, + [SMALL_STATE(3880)] = 166253, + [SMALL_STATE(3881)] = 166282, + [SMALL_STATE(3882)] = 166307, + [SMALL_STATE(3883)] = 166332, + [SMALL_STATE(3884)] = 166351, + [SMALL_STATE(3885)] = 166370, + [SMALL_STATE(3886)] = 166395, + [SMALL_STATE(3887)] = 166420, + [SMALL_STATE(3888)] = 166439, + [SMALL_STATE(3889)] = 166458, + [SMALL_STATE(3890)] = 166481, + [SMALL_STATE(3891)] = 166502, + [SMALL_STATE(3892)] = 166521, + [SMALL_STATE(3893)] = 166550, + [SMALL_STATE(3894)] = 166569, + [SMALL_STATE(3895)] = 166588, + [SMALL_STATE(3896)] = 166613, + [SMALL_STATE(3897)] = 166636, + [SMALL_STATE(3898)] = 166657, + [SMALL_STATE(3899)] = 166676, + [SMALL_STATE(3900)] = 166701, + [SMALL_STATE(3901)] = 166726, + [SMALL_STATE(3902)] = 166746, + [SMALL_STATE(3903)] = 166770, + [SMALL_STATE(3904)] = 166798, + [SMALL_STATE(3905)] = 166830, + [SMALL_STATE(3906)] = 166852, + [SMALL_STATE(3907)] = 166876, + [SMALL_STATE(3908)] = 166898, + [SMALL_STATE(3909)] = 166918, + [SMALL_STATE(3910)] = 166942, + [SMALL_STATE(3911)] = 166958, + [SMALL_STATE(3912)] = 166988, + [SMALL_STATE(3913)] = 167018, + [SMALL_STATE(3914)] = 167036, + [SMALL_STATE(3915)] = 167052, + [SMALL_STATE(3916)] = 167074, + [SMALL_STATE(3917)] = 167102, + [SMALL_STATE(3918)] = 167126, + [SMALL_STATE(3919)] = 167144, + [SMALL_STATE(3920)] = 167168, + [SMALL_STATE(3921)] = 167184, + [SMALL_STATE(3922)] = 167214, + [SMALL_STATE(3923)] = 167242, + [SMALL_STATE(3924)] = 167272, + [SMALL_STATE(3925)] = 167288, + [SMALL_STATE(3926)] = 167312, + [SMALL_STATE(3927)] = 167328, + [SMALL_STATE(3928)] = 167360, + [SMALL_STATE(3929)] = 167392, + [SMALL_STATE(3930)] = 167408, + [SMALL_STATE(3931)] = 167424, + [SMALL_STATE(3932)] = 167442, + [SMALL_STATE(3933)] = 167460, + [SMALL_STATE(3934)] = 167476, + [SMALL_STATE(3935)] = 167504, + [SMALL_STATE(3936)] = 167532, + [SMALL_STATE(3937)] = 167560, + [SMALL_STATE(3938)] = 167588, + [SMALL_STATE(3939)] = 167620, + [SMALL_STATE(3940)] = 167648, + [SMALL_STATE(3941)] = 167666, + [SMALL_STATE(3942)] = 167690, + [SMALL_STATE(3943)] = 167708, + [SMALL_STATE(3944)] = 167736, + [SMALL_STATE(3945)] = 167766, + [SMALL_STATE(3946)] = 167796, + [SMALL_STATE(3947)] = 167820, + [SMALL_STATE(3948)] = 167842, + [SMALL_STATE(3949)] = 167870, + [SMALL_STATE(3950)] = 167900, + [SMALL_STATE(3951)] = 167930, + [SMALL_STATE(3952)] = 167960, + [SMALL_STATE(3953)] = 167978, + [SMALL_STATE(3954)] = 168006, + [SMALL_STATE(3955)] = 168034, + [SMALL_STATE(3956)] = 168064, + [SMALL_STATE(3957)] = 168096, + [SMALL_STATE(3958)] = 168124, + [SMALL_STATE(3959)] = 168140, + [SMALL_STATE(3960)] = 168158, + [SMALL_STATE(3961)] = 168186, + [SMALL_STATE(3962)] = 168214, + [SMALL_STATE(3963)] = 168238, + [SMALL_STATE(3964)] = 168260, + [SMALL_STATE(3965)] = 168278, + [SMALL_STATE(3966)] = 168300, + [SMALL_STATE(3967)] = 168330, + [SMALL_STATE(3968)] = 168360, + [SMALL_STATE(3969)] = 168382, + [SMALL_STATE(3970)] = 168414, + [SMALL_STATE(3971)] = 168438, + [SMALL_STATE(3972)] = 168456, + [SMALL_STATE(3973)] = 168472, + [SMALL_STATE(3974)] = 168496, + [SMALL_STATE(3975)] = 168516, + [SMALL_STATE(3976)] = 168534, + [SMALL_STATE(3977)] = 168558, + [SMALL_STATE(3978)] = 168588, + [SMALL_STATE(3979)] = 168606, + [SMALL_STATE(3980)] = 168631, + [SMALL_STATE(3981)] = 168652, + [SMALL_STATE(3982)] = 168681, + [SMALL_STATE(3983)] = 168710, + [SMALL_STATE(3984)] = 168739, + [SMALL_STATE(3985)] = 168768, + [SMALL_STATE(3986)] = 168797, + [SMALL_STATE(3987)] = 168826, + [SMALL_STATE(3988)] = 168855, + [SMALL_STATE(3989)] = 168876, + [SMALL_STATE(3990)] = 168899, + [SMALL_STATE(3991)] = 168924, + [SMALL_STATE(3992)] = 168953, + [SMALL_STATE(3993)] = 168982, + [SMALL_STATE(3994)] = 169003, + [SMALL_STATE(3995)] = 169024, + [SMALL_STATE(3996)] = 169047, + [SMALL_STATE(3997)] = 169066, + [SMALL_STATE(3998)] = 169093, + [SMALL_STATE(3999)] = 169114, + [SMALL_STATE(4000)] = 169143, + [SMALL_STATE(4001)] = 169166, + [SMALL_STATE(4002)] = 169195, + [SMALL_STATE(4003)] = 169220, + [SMALL_STATE(4004)] = 169243, + [SMALL_STATE(4005)] = 169266, + [SMALL_STATE(4006)] = 169295, + [SMALL_STATE(4007)] = 169316, + [SMALL_STATE(4008)] = 169337, + [SMALL_STATE(4009)] = 169360, + [SMALL_STATE(4010)] = 169389, + [SMALL_STATE(4011)] = 169418, + [SMALL_STATE(4012)] = 169445, + [SMALL_STATE(4013)] = 169468, + [SMALL_STATE(4014)] = 169497, + [SMALL_STATE(4015)] = 169526, + [SMALL_STATE(4016)] = 169555, + [SMALL_STATE(4017)] = 169576, + [SMALL_STATE(4018)] = 169605, + [SMALL_STATE(4019)] = 169628, + [SMALL_STATE(4020)] = 169657, + [SMALL_STATE(4021)] = 169680, + [SMALL_STATE(4022)] = 169703, + [SMALL_STATE(4023)] = 169724, + [SMALL_STATE(4024)] = 169751, + [SMALL_STATE(4025)] = 169780, + [SMALL_STATE(4026)] = 169801, + [SMALL_STATE(4027)] = 169830, + [SMALL_STATE(4028)] = 169853, + [SMALL_STATE(4029)] = 169882, + [SMALL_STATE(4030)] = 169903, + [SMALL_STATE(4031)] = 169932, + [SMALL_STATE(4032)] = 169951, + [SMALL_STATE(4033)] = 169970, + [SMALL_STATE(4034)] = 169997, + [SMALL_STATE(4035)] = 170012, + [SMALL_STATE(4036)] = 170041, + [SMALL_STATE(4037)] = 170066, + [SMALL_STATE(4038)] = 170093, + [SMALL_STATE(4039)] = 170122, + [SMALL_STATE(4040)] = 170137, + [SMALL_STATE(4041)] = 170166, + [SMALL_STATE(4042)] = 170195, + [SMALL_STATE(4043)] = 170216, + [SMALL_STATE(4044)] = 170245, + [SMALL_STATE(4045)] = 170274, + [SMALL_STATE(4046)] = 170303, + [SMALL_STATE(4047)] = 170322, + [SMALL_STATE(4048)] = 170343, + [SMALL_STATE(4049)] = 170372, + [SMALL_STATE(4050)] = 170395, + [SMALL_STATE(4051)] = 170424, + [SMALL_STATE(4052)] = 170453, + [SMALL_STATE(4053)] = 170474, + [SMALL_STATE(4054)] = 170493, + [SMALL_STATE(4055)] = 170522, + [SMALL_STATE(4056)] = 170537, + [SMALL_STATE(4057)] = 170564, + [SMALL_STATE(4058)] = 170593, + [SMALL_STATE(4059)] = 170616, + [SMALL_STATE(4060)] = 170637, + [SMALL_STATE(4061)] = 170666, + [SMALL_STATE(4062)] = 170695, + [SMALL_STATE(4063)] = 170724, + [SMALL_STATE(4064)] = 170747, + [SMALL_STATE(4065)] = 170768, + [SMALL_STATE(4066)] = 170787, + [SMALL_STATE(4067)] = 170804, + [SMALL_STATE(4068)] = 170827, + [SMALL_STATE(4069)] = 170850, + [SMALL_STATE(4070)] = 170879, + [SMALL_STATE(4071)] = 170908, + [SMALL_STATE(4072)] = 170937, + [SMALL_STATE(4073)] = 170966, + [SMALL_STATE(4074)] = 170995, + [SMALL_STATE(4075)] = 171024, + [SMALL_STATE(4076)] = 171045, + [SMALL_STATE(4077)] = 171074, + [SMALL_STATE(4078)] = 171103, + [SMALL_STATE(4079)] = 171132, + [SMALL_STATE(4080)] = 171157, + [SMALL_STATE(4081)] = 171172, + [SMALL_STATE(4082)] = 171199, + [SMALL_STATE(4083)] = 171214, + [SMALL_STATE(4084)] = 171243, + [SMALL_STATE(4085)] = 171272, + [SMALL_STATE(4086)] = 171299, + [SMALL_STATE(4087)] = 171322, + [SMALL_STATE(4088)] = 171351, + [SMALL_STATE(4089)] = 171366, + [SMALL_STATE(4090)] = 171392, + [SMALL_STATE(4091)] = 171408, + [SMALL_STATE(4092)] = 171432, + [SMALL_STATE(4093)] = 171458, + [SMALL_STATE(4094)] = 171482, + [SMALL_STATE(4095)] = 171508, + [SMALL_STATE(4096)] = 171528, + [SMALL_STATE(4097)] = 171550, + [SMALL_STATE(4098)] = 171572, + [SMALL_STATE(4099)] = 171592, + [SMALL_STATE(4100)] = 171614, + [SMALL_STATE(4101)] = 171636, + [SMALL_STATE(4102)] = 171662, + [SMALL_STATE(4103)] = 171686, + [SMALL_STATE(4104)] = 171710, + [SMALL_STATE(4105)] = 171736, + [SMALL_STATE(4106)] = 171760, + [SMALL_STATE(4107)] = 171786, + [SMALL_STATE(4108)] = 171812, + [SMALL_STATE(4109)] = 171838, + [SMALL_STATE(4110)] = 171862, + [SMALL_STATE(4111)] = 171886, + [SMALL_STATE(4112)] = 171910, + [SMALL_STATE(4113)] = 171936, + [SMALL_STATE(4114)] = 171962, + [SMALL_STATE(4115)] = 171988, + [SMALL_STATE(4116)] = 172014, + [SMALL_STATE(4117)] = 172040, + [SMALL_STATE(4118)] = 172064, + [SMALL_STATE(4119)] = 172088, + [SMALL_STATE(4120)] = 172112, + [SMALL_STATE(4121)] = 172136, + [SMALL_STATE(4122)] = 172160, + [SMALL_STATE(4123)] = 172184, + [SMALL_STATE(4124)] = 172202, + [SMALL_STATE(4125)] = 172228, + [SMALL_STATE(4126)] = 172250, + [SMALL_STATE(4127)] = 172276, + [SMALL_STATE(4128)] = 172300, + [SMALL_STATE(4129)] = 172324, + [SMALL_STATE(4130)] = 172348, + [SMALL_STATE(4131)] = 172374, + [SMALL_STATE(4132)] = 172400, + [SMALL_STATE(4133)] = 172426, + [SMALL_STATE(4134)] = 172452, + [SMALL_STATE(4135)] = 172476, + [SMALL_STATE(4136)] = 172500, + [SMALL_STATE(4137)] = 172524, + [SMALL_STATE(4138)] = 172548, + [SMALL_STATE(4139)] = 172574, + [SMALL_STATE(4140)] = 172600, + [SMALL_STATE(4141)] = 172624, + [SMALL_STATE(4142)] = 172648, + [SMALL_STATE(4143)] = 172674, + [SMALL_STATE(4144)] = 172700, + [SMALL_STATE(4145)] = 172726, + [SMALL_STATE(4146)] = 172752, + [SMALL_STATE(4147)] = 172778, + [SMALL_STATE(4148)] = 172802, + [SMALL_STATE(4149)] = 172828, + [SMALL_STATE(4150)] = 172854, + [SMALL_STATE(4151)] = 172880, + [SMALL_STATE(4152)] = 172906, + [SMALL_STATE(4153)] = 172926, + [SMALL_STATE(4154)] = 172952, + [SMALL_STATE(4155)] = 172974, + [SMALL_STATE(4156)] = 172992, + [SMALL_STATE(4157)] = 173018, + [SMALL_STATE(4158)] = 173044, + [SMALL_STATE(4159)] = 173070, + [SMALL_STATE(4160)] = 173096, + [SMALL_STATE(4161)] = 173122, + [SMALL_STATE(4162)] = 173144, + [SMALL_STATE(4163)] = 173170, + [SMALL_STATE(4164)] = 173194, + [SMALL_STATE(4165)] = 173220, + [SMALL_STATE(4166)] = 173242, + [SMALL_STATE(4167)] = 173268, + [SMALL_STATE(4168)] = 173294, + [SMALL_STATE(4169)] = 173320, + [SMALL_STATE(4170)] = 173346, + [SMALL_STATE(4171)] = 173370, + [SMALL_STATE(4172)] = 173394, + [SMALL_STATE(4173)] = 173420, + [SMALL_STATE(4174)] = 173446, + [SMALL_STATE(4175)] = 173470, + [SMALL_STATE(4176)] = 173496, + [SMALL_STATE(4177)] = 173522, + [SMALL_STATE(4178)] = 173548, + [SMALL_STATE(4179)] = 173564, + [SMALL_STATE(4180)] = 173590, + [SMALL_STATE(4181)] = 173616, + [SMALL_STATE(4182)] = 173638, + [SMALL_STATE(4183)] = 173664, + [SMALL_STATE(4184)] = 173688, + [SMALL_STATE(4185)] = 173712, + [SMALL_STATE(4186)] = 173738, + [SMALL_STATE(4187)] = 173764, + [SMALL_STATE(4188)] = 173788, + [SMALL_STATE(4189)] = 173806, + [SMALL_STATE(4190)] = 173832, + [SMALL_STATE(4191)] = 173858, + [SMALL_STATE(4192)] = 173884, + [SMALL_STATE(4193)] = 173910, + [SMALL_STATE(4194)] = 173934, + [SMALL_STATE(4195)] = 173958, + [SMALL_STATE(4196)] = 173980, + [SMALL_STATE(4197)] = 173994, + [SMALL_STATE(4198)] = 174018, + [SMALL_STATE(4199)] = 174036, + [SMALL_STATE(4200)] = 174060, + [SMALL_STATE(4201)] = 174086, + [SMALL_STATE(4202)] = 174110, + [SMALL_STATE(4203)] = 174136, + [SMALL_STATE(4204)] = 174162, + [SMALL_STATE(4205)] = 174188, + [SMALL_STATE(4206)] = 174214, + [SMALL_STATE(4207)] = 174240, + [SMALL_STATE(4208)] = 174254, + [SMALL_STATE(4209)] = 174280, + [SMALL_STATE(4210)] = 174298, + [SMALL_STATE(4211)] = 174322, + [SMALL_STATE(4212)] = 174346, + [SMALL_STATE(4213)] = 174370, + [SMALL_STATE(4214)] = 174394, + [SMALL_STATE(4215)] = 174420, + [SMALL_STATE(4216)] = 174446, + [SMALL_STATE(4217)] = 174472, + [SMALL_STATE(4218)] = 174498, + [SMALL_STATE(4219)] = 174520, + [SMALL_STATE(4220)] = 174538, + [SMALL_STATE(4221)] = 174564, + [SMALL_STATE(4222)] = 174588, + [SMALL_STATE(4223)] = 174614, + [SMALL_STATE(4224)] = 174640, + [SMALL_STATE(4225)] = 174664, + [SMALL_STATE(4226)] = 174690, + [SMALL_STATE(4227)] = 174712, + [SMALL_STATE(4228)] = 174738, + [SMALL_STATE(4229)] = 174764, + [SMALL_STATE(4230)] = 174790, + [SMALL_STATE(4231)] = 174816, + [SMALL_STATE(4232)] = 174842, + [SMALL_STATE(4233)] = 174866, + [SMALL_STATE(4234)] = 174890, + [SMALL_STATE(4235)] = 174914, + [SMALL_STATE(4236)] = 174940, + [SMALL_STATE(4237)] = 174966, + [SMALL_STATE(4238)] = 174988, + [SMALL_STATE(4239)] = 175014, + [SMALL_STATE(4240)] = 175040, + [SMALL_STATE(4241)] = 175066, + [SMALL_STATE(4242)] = 175092, + [SMALL_STATE(4243)] = 175118, + [SMALL_STATE(4244)] = 175144, + [SMALL_STATE(4245)] = 175162, + [SMALL_STATE(4246)] = 175184, + [SMALL_STATE(4247)] = 175208, + [SMALL_STATE(4248)] = 175232, + [SMALL_STATE(4249)] = 175250, + [SMALL_STATE(4250)] = 175274, + [SMALL_STATE(4251)] = 175298, + [SMALL_STATE(4252)] = 175322, + [SMALL_STATE(4253)] = 175348, + [SMALL_STATE(4254)] = 175374, + [SMALL_STATE(4255)] = 175400, + [SMALL_STATE(4256)] = 175422, + [SMALL_STATE(4257)] = 175448, + [SMALL_STATE(4258)] = 175466, + [SMALL_STATE(4259)] = 175492, + [SMALL_STATE(4260)] = 175510, + [SMALL_STATE(4261)] = 175536, + [SMALL_STATE(4262)] = 175562, + [SMALL_STATE(4263)] = 175585, + [SMALL_STATE(4264)] = 175602, + [SMALL_STATE(4265)] = 175625, + [SMALL_STATE(4266)] = 175646, + [SMALL_STATE(4267)] = 175663, + [SMALL_STATE(4268)] = 175684, + [SMALL_STATE(4269)] = 175707, + [SMALL_STATE(4270)] = 175730, + [SMALL_STATE(4271)] = 175751, + [SMALL_STATE(4272)] = 175766, + [SMALL_STATE(4273)] = 175787, + [SMALL_STATE(4274)] = 175808, + [SMALL_STATE(4275)] = 175829, + [SMALL_STATE(4276)] = 175850, + [SMALL_STATE(4277)] = 175871, + [SMALL_STATE(4278)] = 175894, + [SMALL_STATE(4279)] = 175917, + [SMALL_STATE(4280)] = 175940, + [SMALL_STATE(4281)] = 175963, + [SMALL_STATE(4282)] = 175980, + [SMALL_STATE(4283)] = 176001, + [SMALL_STATE(4284)] = 176022, + [SMALL_STATE(4285)] = 176037, + [SMALL_STATE(4286)] = 176058, + [SMALL_STATE(4287)] = 176081, + [SMALL_STATE(4288)] = 176102, + [SMALL_STATE(4289)] = 176119, + [SMALL_STATE(4290)] = 176132, + [SMALL_STATE(4291)] = 176147, + [SMALL_STATE(4292)] = 176170, + [SMALL_STATE(4293)] = 176193, + [SMALL_STATE(4294)] = 176214, + [SMALL_STATE(4295)] = 176237, + [SMALL_STATE(4296)] = 176260, + [SMALL_STATE(4297)] = 176273, + [SMALL_STATE(4298)] = 176294, + [SMALL_STATE(4299)] = 176315, + [SMALL_STATE(4300)] = 176332, + [SMALL_STATE(4301)] = 176353, + [SMALL_STATE(4302)] = 176366, + [SMALL_STATE(4303)] = 176387, + [SMALL_STATE(4304)] = 176404, + [SMALL_STATE(4305)] = 176425, + [SMALL_STATE(4306)] = 176448, + [SMALL_STATE(4307)] = 176471, + [SMALL_STATE(4308)] = 176492, + [SMALL_STATE(4309)] = 176513, + [SMALL_STATE(4310)] = 176526, + [SMALL_STATE(4311)] = 176549, + [SMALL_STATE(4312)] = 176568, + [SMALL_STATE(4313)] = 176589, + [SMALL_STATE(4314)] = 176602, + [SMALL_STATE(4315)] = 176619, + [SMALL_STATE(4316)] = 176636, + [SMALL_STATE(4317)] = 176657, + [SMALL_STATE(4318)] = 176674, + [SMALL_STATE(4319)] = 176695, + [SMALL_STATE(4320)] = 176712, + [SMALL_STATE(4321)] = 176733, + [SMALL_STATE(4322)] = 176754, + [SMALL_STATE(4323)] = 176777, + [SMALL_STATE(4324)] = 176794, + [SMALL_STATE(4325)] = 176811, + [SMALL_STATE(4326)] = 176832, + [SMALL_STATE(4327)] = 176853, + [SMALL_STATE(4328)] = 176866, + [SMALL_STATE(4329)] = 176887, + [SMALL_STATE(4330)] = 176904, + [SMALL_STATE(4331)] = 176921, + [SMALL_STATE(4332)] = 176938, + [SMALL_STATE(4333)] = 176953, + [SMALL_STATE(4334)] = 176976, + [SMALL_STATE(4335)] = 176989, + [SMALL_STATE(4336)] = 177010, + [SMALL_STATE(4337)] = 177027, + [SMALL_STATE(4338)] = 177050, + [SMALL_STATE(4339)] = 177063, + [SMALL_STATE(4340)] = 177076, + [SMALL_STATE(4341)] = 177093, + [SMALL_STATE(4342)] = 177114, + [SMALL_STATE(4343)] = 177131, + [SMALL_STATE(4344)] = 177148, + [SMALL_STATE(4345)] = 177165, + [SMALL_STATE(4346)] = 177182, + [SMALL_STATE(4347)] = 177199, + [SMALL_STATE(4348)] = 177220, + [SMALL_STATE(4349)] = 177241, + [SMALL_STATE(4350)] = 177258, + [SMALL_STATE(4351)] = 177279, + [SMALL_STATE(4352)] = 177294, + [SMALL_STATE(4353)] = 177311, + [SMALL_STATE(4354)] = 177332, + [SMALL_STATE(4355)] = 177353, + [SMALL_STATE(4356)] = 177374, + [SMALL_STATE(4357)] = 177391, + [SMALL_STATE(4358)] = 177412, + [SMALL_STATE(4359)] = 177435, + [SMALL_STATE(4360)] = 177452, + [SMALL_STATE(4361)] = 177475, + [SMALL_STATE(4362)] = 177492, + [SMALL_STATE(4363)] = 177515, + [SMALL_STATE(4364)] = 177532, + [SMALL_STATE(4365)] = 177545, + [SMALL_STATE(4366)] = 177562, + [SMALL_STATE(4367)] = 177577, + [SMALL_STATE(4368)] = 177598, + [SMALL_STATE(4369)] = 177615, + [SMALL_STATE(4370)] = 177632, + [SMALL_STATE(4371)] = 177647, + [SMALL_STATE(4372)] = 177664, + [SMALL_STATE(4373)] = 177685, + [SMALL_STATE(4374)] = 177706, + [SMALL_STATE(4375)] = 177727, + [SMALL_STATE(4376)] = 177740, + [SMALL_STATE(4377)] = 177761, + [SMALL_STATE(4378)] = 177776, + [SMALL_STATE(4379)] = 177795, + [SMALL_STATE(4380)] = 177816, + [SMALL_STATE(4381)] = 177837, + [SMALL_STATE(4382)] = 177860, + [SMALL_STATE(4383)] = 177881, + [SMALL_STATE(4384)] = 177902, + [SMALL_STATE(4385)] = 177917, + [SMALL_STATE(4386)] = 177934, + [SMALL_STATE(4387)] = 177955, + [SMALL_STATE(4388)] = 177974, + [SMALL_STATE(4389)] = 177991, + [SMALL_STATE(4390)] = 178006, + [SMALL_STATE(4391)] = 178027, + [SMALL_STATE(4392)] = 178044, + [SMALL_STATE(4393)] = 178065, + [SMALL_STATE(4394)] = 178082, + [SMALL_STATE(4395)] = 178099, + [SMALL_STATE(4396)] = 178120, + [SMALL_STATE(4397)] = 178133, + [SMALL_STATE(4398)] = 178146, + [SMALL_STATE(4399)] = 178167, + [SMALL_STATE(4400)] = 178190, + [SMALL_STATE(4401)] = 178206, + [SMALL_STATE(4402)] = 178226, + [SMALL_STATE(4403)] = 178238, + [SMALL_STATE(4404)] = 178258, + [SMALL_STATE(4405)] = 178278, + [SMALL_STATE(4406)] = 178290, + [SMALL_STATE(4407)] = 178302, + [SMALL_STATE(4408)] = 178314, + [SMALL_STATE(4409)] = 178334, + [SMALL_STATE(4410)] = 178354, + [SMALL_STATE(4411)] = 178366, + [SMALL_STATE(4412)] = 178378, + [SMALL_STATE(4413)] = 178396, + [SMALL_STATE(4414)] = 178416, + [SMALL_STATE(4415)] = 178436, + [SMALL_STATE(4416)] = 178456, + [SMALL_STATE(4417)] = 178468, + [SMALL_STATE(4418)] = 178488, + [SMALL_STATE(4419)] = 178508, + [SMALL_STATE(4420)] = 178524, + [SMALL_STATE(4421)] = 178544, + [SMALL_STATE(4422)] = 178564, + [SMALL_STATE(4423)] = 178584, + [SMALL_STATE(4424)] = 178604, + [SMALL_STATE(4425)] = 178624, + [SMALL_STATE(4426)] = 178640, + [SMALL_STATE(4427)] = 178660, + [SMALL_STATE(4428)] = 178680, + [SMALL_STATE(4429)] = 178700, + [SMALL_STATE(4430)] = 178720, + [SMALL_STATE(4431)] = 178740, + [SMALL_STATE(4432)] = 178760, + [SMALL_STATE(4433)] = 178772, + [SMALL_STATE(4434)] = 178792, + [SMALL_STATE(4435)] = 178812, + [SMALL_STATE(4436)] = 178824, + [SMALL_STATE(4437)] = 178842, + [SMALL_STATE(4438)] = 178854, + [SMALL_STATE(4439)] = 178874, + [SMALL_STATE(4440)] = 178894, + [SMALL_STATE(4441)] = 178914, + [SMALL_STATE(4442)] = 178930, + [SMALL_STATE(4443)] = 178950, + [SMALL_STATE(4444)] = 178970, + [SMALL_STATE(4445)] = 178986, + [SMALL_STATE(4446)] = 179006, + [SMALL_STATE(4447)] = 179022, + [SMALL_STATE(4448)] = 179034, + [SMALL_STATE(4449)] = 179054, + [SMALL_STATE(4450)] = 179066, + [SMALL_STATE(4451)] = 179086, + [SMALL_STATE(4452)] = 179106, + [SMALL_STATE(4453)] = 179126, + [SMALL_STATE(4454)] = 179146, + [SMALL_STATE(4455)] = 179164, + [SMALL_STATE(4456)] = 179176, + [SMALL_STATE(4457)] = 179196, + [SMALL_STATE(4458)] = 179212, + [SMALL_STATE(4459)] = 179232, + [SMALL_STATE(4460)] = 179252, + [SMALL_STATE(4461)] = 179264, + [SMALL_STATE(4462)] = 179284, + [SMALL_STATE(4463)] = 179300, + [SMALL_STATE(4464)] = 179318, + [SMALL_STATE(4465)] = 179330, + [SMALL_STATE(4466)] = 179350, + [SMALL_STATE(4467)] = 179370, + [SMALL_STATE(4468)] = 179388, + [SMALL_STATE(4469)] = 179408, + [SMALL_STATE(4470)] = 179420, + [SMALL_STATE(4471)] = 179440, + [SMALL_STATE(4472)] = 179452, + [SMALL_STATE(4473)] = 179470, + [SMALL_STATE(4474)] = 179482, + [SMALL_STATE(4475)] = 179494, + [SMALL_STATE(4476)] = 179514, + [SMALL_STATE(4477)] = 179526, + [SMALL_STATE(4478)] = 179538, + [SMALL_STATE(4479)] = 179558, + [SMALL_STATE(4480)] = 179570, + [SMALL_STATE(4481)] = 179588, + [SMALL_STATE(4482)] = 179600, + [SMALL_STATE(4483)] = 179620, + [SMALL_STATE(4484)] = 179640, + [SMALL_STATE(4485)] = 179658, + [SMALL_STATE(4486)] = 179678, + [SMALL_STATE(4487)] = 179698, + [SMALL_STATE(4488)] = 179718, + [SMALL_STATE(4489)] = 179738, + [SMALL_STATE(4490)] = 179758, + [SMALL_STATE(4491)] = 179776, + [SMALL_STATE(4492)] = 179796, + [SMALL_STATE(4493)] = 179808, + [SMALL_STATE(4494)] = 179820, + [SMALL_STATE(4495)] = 179840, + [SMALL_STATE(4496)] = 179852, + [SMALL_STATE(4497)] = 179864, + [SMALL_STATE(4498)] = 179880, + [SMALL_STATE(4499)] = 179894, + [SMALL_STATE(4500)] = 179912, + [SMALL_STATE(4501)] = 179932, + [SMALL_STATE(4502)] = 179946, + [SMALL_STATE(4503)] = 179966, + [SMALL_STATE(4504)] = 179982, + [SMALL_STATE(4505)] = 179998, + [SMALL_STATE(4506)] = 180018, + [SMALL_STATE(4507)] = 180034, + [SMALL_STATE(4508)] = 180054, + [SMALL_STATE(4509)] = 180074, + [SMALL_STATE(4510)] = 180086, + [SMALL_STATE(4511)] = 180106, + [SMALL_STATE(4512)] = 180118, + [SMALL_STATE(4513)] = 180138, + [SMALL_STATE(4514)] = 180150, + [SMALL_STATE(4515)] = 180168, + [SMALL_STATE(4516)] = 180188, + [SMALL_STATE(4517)] = 180200, + [SMALL_STATE(4518)] = 180212, + [SMALL_STATE(4519)] = 180224, + [SMALL_STATE(4520)] = 180236, + [SMALL_STATE(4521)] = 180248, + [SMALL_STATE(4522)] = 180260, + [SMALL_STATE(4523)] = 180280, + [SMALL_STATE(4524)] = 180300, + [SMALL_STATE(4525)] = 180320, + [SMALL_STATE(4526)] = 180340, + [SMALL_STATE(4527)] = 180360, + [SMALL_STATE(4528)] = 180380, + [SMALL_STATE(4529)] = 180400, + [SMALL_STATE(4530)] = 180412, + [SMALL_STATE(4531)] = 180424, + [SMALL_STATE(4532)] = 180444, + [SMALL_STATE(4533)] = 180462, + [SMALL_STATE(4534)] = 180474, + [SMALL_STATE(4535)] = 180486, + [SMALL_STATE(4536)] = 180498, + [SMALL_STATE(4537)] = 180516, + [SMALL_STATE(4538)] = 180536, + [SMALL_STATE(4539)] = 180548, + [SMALL_STATE(4540)] = 180568, + [SMALL_STATE(4541)] = 180580, + [SMALL_STATE(4542)] = 180600, + [SMALL_STATE(4543)] = 180620, + [SMALL_STATE(4544)] = 180640, + [SMALL_STATE(4545)] = 180656, + [SMALL_STATE(4546)] = 180674, + [SMALL_STATE(4547)] = 180686, + [SMALL_STATE(4548)] = 180704, + [SMALL_STATE(4549)] = 180716, + [SMALL_STATE(4550)] = 180736, + [SMALL_STATE(4551)] = 180756, + [SMALL_STATE(4552)] = 180776, + [SMALL_STATE(4553)] = 180790, + [SMALL_STATE(4554)] = 180810, + [SMALL_STATE(4555)] = 180824, + [SMALL_STATE(4556)] = 180840, + [SMALL_STATE(4557)] = 180858, + [SMALL_STATE(4558)] = 180874, + [SMALL_STATE(4559)] = 180894, + [SMALL_STATE(4560)] = 180914, + [SMALL_STATE(4561)] = 180928, + [SMALL_STATE(4562)] = 180946, + [SMALL_STATE(4563)] = 180966, + [SMALL_STATE(4564)] = 180978, + [SMALL_STATE(4565)] = 180998, + [SMALL_STATE(4566)] = 181014, + [SMALL_STATE(4567)] = 181026, + [SMALL_STATE(4568)] = 181042, + [SMALL_STATE(4569)] = 181062, + [SMALL_STATE(4570)] = 181082, + [SMALL_STATE(4571)] = 181102, + [SMALL_STATE(4572)] = 181122, + [SMALL_STATE(4573)] = 181142, + [SMALL_STATE(4574)] = 181162, + [SMALL_STATE(4575)] = 181178, + [SMALL_STATE(4576)] = 181192, + [SMALL_STATE(4577)] = 181208, + [SMALL_STATE(4578)] = 181228, + [SMALL_STATE(4579)] = 181246, + [SMALL_STATE(4580)] = 181266, + [SMALL_STATE(4581)] = 181286, + [SMALL_STATE(4582)] = 181306, + [SMALL_STATE(4583)] = 181318, + [SMALL_STATE(4584)] = 181330, + [SMALL_STATE(4585)] = 181348, + [SMALL_STATE(4586)] = 181368, + [SMALL_STATE(4587)] = 181380, + [SMALL_STATE(4588)] = 181400, + [SMALL_STATE(4589)] = 181420, + [SMALL_STATE(4590)] = 181440, + [SMALL_STATE(4591)] = 181460, + [SMALL_STATE(4592)] = 181471, + [SMALL_STATE(4593)] = 181482, + [SMALL_STATE(4594)] = 181499, + [SMALL_STATE(4595)] = 181514, + [SMALL_STATE(4596)] = 181529, + [SMALL_STATE(4597)] = 181540, + [SMALL_STATE(4598)] = 181557, + [SMALL_STATE(4599)] = 181572, + [SMALL_STATE(4600)] = 181587, + [SMALL_STATE(4601)] = 181598, + [SMALL_STATE(4602)] = 181615, + [SMALL_STATE(4603)] = 181628, + [SMALL_STATE(4604)] = 181639, + [SMALL_STATE(4605)] = 181650, + [SMALL_STATE(4606)] = 181665, + [SMALL_STATE(4607)] = 181680, + [SMALL_STATE(4608)] = 181691, + [SMALL_STATE(4609)] = 181706, + [SMALL_STATE(4610)] = 181721, + [SMALL_STATE(4611)] = 181736, + [SMALL_STATE(4612)] = 181751, + [SMALL_STATE(4613)] = 181762, + [SMALL_STATE(4614)] = 181773, + [SMALL_STATE(4615)] = 181788, + [SMALL_STATE(4616)] = 181803, + [SMALL_STATE(4617)] = 181818, + [SMALL_STATE(4618)] = 181831, + [SMALL_STATE(4619)] = 181842, + [SMALL_STATE(4620)] = 181859, + [SMALL_STATE(4621)] = 181872, + [SMALL_STATE(4622)] = 181889, + [SMALL_STATE(4623)] = 181906, + [SMALL_STATE(4624)] = 181917, + [SMALL_STATE(4625)] = 181928, + [SMALL_STATE(4626)] = 181939, + [SMALL_STATE(4627)] = 181954, + [SMALL_STATE(4628)] = 181969, + [SMALL_STATE(4629)] = 181980, + [SMALL_STATE(4630)] = 181991, + [SMALL_STATE(4631)] = 182004, + [SMALL_STATE(4632)] = 182019, + [SMALL_STATE(4633)] = 182036, + [SMALL_STATE(4634)] = 182047, + [SMALL_STATE(4635)] = 182062, + [SMALL_STATE(4636)] = 182079, + [SMALL_STATE(4637)] = 182090, + [SMALL_STATE(4638)] = 182107, + [SMALL_STATE(4639)] = 182118, + [SMALL_STATE(4640)] = 182135, + [SMALL_STATE(4641)] = 182148, + [SMALL_STATE(4642)] = 182159, + [SMALL_STATE(4643)] = 182174, + [SMALL_STATE(4644)] = 182189, + [SMALL_STATE(4645)] = 182200, + [SMALL_STATE(4646)] = 182211, + [SMALL_STATE(4647)] = 182226, + [SMALL_STATE(4648)] = 182237, + [SMALL_STATE(4649)] = 182252, + [SMALL_STATE(4650)] = 182267, + [SMALL_STATE(4651)] = 182278, + [SMALL_STATE(4652)] = 182289, + [SMALL_STATE(4653)] = 182306, + [SMALL_STATE(4654)] = 182321, + [SMALL_STATE(4655)] = 182338, + [SMALL_STATE(4656)] = 182349, + [SMALL_STATE(4657)] = 182360, + [SMALL_STATE(4658)] = 182371, + [SMALL_STATE(4659)] = 182382, + [SMALL_STATE(4660)] = 182397, + [SMALL_STATE(4661)] = 182408, + [SMALL_STATE(4662)] = 182425, + [SMALL_STATE(4663)] = 182436, + [SMALL_STATE(4664)] = 182447, + [SMALL_STATE(4665)] = 182464, + [SMALL_STATE(4666)] = 182479, + [SMALL_STATE(4667)] = 182496, + [SMALL_STATE(4668)] = 182507, + [SMALL_STATE(4669)] = 182518, + [SMALL_STATE(4670)] = 182529, + [SMALL_STATE(4671)] = 182546, + [SMALL_STATE(4672)] = 182557, + [SMALL_STATE(4673)] = 182572, + [SMALL_STATE(4674)] = 182583, + [SMALL_STATE(4675)] = 182600, + [SMALL_STATE(4676)] = 182611, + [SMALL_STATE(4677)] = 182622, + [SMALL_STATE(4678)] = 182639, + [SMALL_STATE(4679)] = 182656, + [SMALL_STATE(4680)] = 182673, + [SMALL_STATE(4681)] = 182684, + [SMALL_STATE(4682)] = 182701, + [SMALL_STATE(4683)] = 182718, + [SMALL_STATE(4684)] = 182729, + [SMALL_STATE(4685)] = 182740, + [SMALL_STATE(4686)] = 182751, + [SMALL_STATE(4687)] = 182768, + [SMALL_STATE(4688)] = 182779, + [SMALL_STATE(4689)] = 182796, + [SMALL_STATE(4690)] = 182807, + [SMALL_STATE(4691)] = 182822, + [SMALL_STATE(4692)] = 182839, + [SMALL_STATE(4693)] = 182850, + [SMALL_STATE(4694)] = 182867, + [SMALL_STATE(4695)] = 182878, + [SMALL_STATE(4696)] = 182893, + [SMALL_STATE(4697)] = 182904, + [SMALL_STATE(4698)] = 182915, + [SMALL_STATE(4699)] = 182932, + [SMALL_STATE(4700)] = 182949, + [SMALL_STATE(4701)] = 182960, + [SMALL_STATE(4702)] = 182971, + [SMALL_STATE(4703)] = 182988, + [SMALL_STATE(4704)] = 183005, + [SMALL_STATE(4705)] = 183016, + [SMALL_STATE(4706)] = 183027, + [SMALL_STATE(4707)] = 183044, + [SMALL_STATE(4708)] = 183061, + [SMALL_STATE(4709)] = 183076, + [SMALL_STATE(4710)] = 183093, + [SMALL_STATE(4711)] = 183110, + [SMALL_STATE(4712)] = 183121, + [SMALL_STATE(4713)] = 183132, + [SMALL_STATE(4714)] = 183147, + [SMALL_STATE(4715)] = 183158, + [SMALL_STATE(4716)] = 183169, + [SMALL_STATE(4717)] = 183180, + [SMALL_STATE(4718)] = 183191, + [SMALL_STATE(4719)] = 183202, + [SMALL_STATE(4720)] = 183213, + [SMALL_STATE(4721)] = 183224, + [SMALL_STATE(4722)] = 183235, + [SMALL_STATE(4723)] = 183252, + [SMALL_STATE(4724)] = 183263, + [SMALL_STATE(4725)] = 183280, + [SMALL_STATE(4726)] = 183295, + [SMALL_STATE(4727)] = 183306, + [SMALL_STATE(4728)] = 183317, + [SMALL_STATE(4729)] = 183334, + [SMALL_STATE(4730)] = 183345, + [SMALL_STATE(4731)] = 183360, + [SMALL_STATE(4732)] = 183371, + [SMALL_STATE(4733)] = 183388, + [SMALL_STATE(4734)] = 183399, + [SMALL_STATE(4735)] = 183416, + [SMALL_STATE(4736)] = 183431, + [SMALL_STATE(4737)] = 183446, + [SMALL_STATE(4738)] = 183457, + [SMALL_STATE(4739)] = 183468, + [SMALL_STATE(4740)] = 183479, + [SMALL_STATE(4741)] = 183490, + [SMALL_STATE(4742)] = 183501, + [SMALL_STATE(4743)] = 183512, + [SMALL_STATE(4744)] = 183527, + [SMALL_STATE(4745)] = 183544, + [SMALL_STATE(4746)] = 183555, + [SMALL_STATE(4747)] = 183566, + [SMALL_STATE(4748)] = 183583, + [SMALL_STATE(4749)] = 183598, + [SMALL_STATE(4750)] = 183615, + [SMALL_STATE(4751)] = 183632, + [SMALL_STATE(4752)] = 183643, + [SMALL_STATE(4753)] = 183660, + [SMALL_STATE(4754)] = 183677, + [SMALL_STATE(4755)] = 183688, + [SMALL_STATE(4756)] = 183699, + [SMALL_STATE(4757)] = 183716, + [SMALL_STATE(4758)] = 183733, + [SMALL_STATE(4759)] = 183748, + [SMALL_STATE(4760)] = 183763, + [SMALL_STATE(4761)] = 183774, + [SMALL_STATE(4762)] = 183789, + [SMALL_STATE(4763)] = 183804, + [SMALL_STATE(4764)] = 183815, + [SMALL_STATE(4765)] = 183829, + [SMALL_STATE(4766)] = 183841, + [SMALL_STATE(4767)] = 183855, + [SMALL_STATE(4768)] = 183869, + [SMALL_STATE(4769)] = 183883, + [SMALL_STATE(4770)] = 183897, + [SMALL_STATE(4771)] = 183911, + [SMALL_STATE(4772)] = 183925, + [SMALL_STATE(4773)] = 183939, + [SMALL_STATE(4774)] = 183953, + [SMALL_STATE(4775)] = 183967, + [SMALL_STATE(4776)] = 183981, + [SMALL_STATE(4777)] = 183995, + [SMALL_STATE(4778)] = 184009, + [SMALL_STATE(4779)] = 184023, + [SMALL_STATE(4780)] = 184037, + [SMALL_STATE(4781)] = 184051, + [SMALL_STATE(4782)] = 184065, + [SMALL_STATE(4783)] = 184079, + [SMALL_STATE(4784)] = 184093, + [SMALL_STATE(4785)] = 184107, + [SMALL_STATE(4786)] = 184121, + [SMALL_STATE(4787)] = 184135, + [SMALL_STATE(4788)] = 184149, + [SMALL_STATE(4789)] = 184163, + [SMALL_STATE(4790)] = 184177, + [SMALL_STATE(4791)] = 184191, + [SMALL_STATE(4792)] = 184205, + [SMALL_STATE(4793)] = 184219, + [SMALL_STATE(4794)] = 184233, + [SMALL_STATE(4795)] = 184247, + [SMALL_STATE(4796)] = 184261, + [SMALL_STATE(4797)] = 184275, + [SMALL_STATE(4798)] = 184289, + [SMALL_STATE(4799)] = 184303, + [SMALL_STATE(4800)] = 184317, + [SMALL_STATE(4801)] = 184331, + [SMALL_STATE(4802)] = 184345, + [SMALL_STATE(4803)] = 184357, + [SMALL_STATE(4804)] = 184371, + [SMALL_STATE(4805)] = 184385, + [SMALL_STATE(4806)] = 184399, + [SMALL_STATE(4807)] = 184413, + [SMALL_STATE(4808)] = 184427, + [SMALL_STATE(4809)] = 184441, + [SMALL_STATE(4810)] = 184455, + [SMALL_STATE(4811)] = 184469, + [SMALL_STATE(4812)] = 184483, + [SMALL_STATE(4813)] = 184497, + [SMALL_STATE(4814)] = 184511, + [SMALL_STATE(4815)] = 184525, + [SMALL_STATE(4816)] = 184539, + [SMALL_STATE(4817)] = 184553, + [SMALL_STATE(4818)] = 184567, + [SMALL_STATE(4819)] = 184581, + [SMALL_STATE(4820)] = 184595, + [SMALL_STATE(4821)] = 184609, + [SMALL_STATE(4822)] = 184623, + [SMALL_STATE(4823)] = 184637, + [SMALL_STATE(4824)] = 184651, + [SMALL_STATE(4825)] = 184665, + [SMALL_STATE(4826)] = 184679, + [SMALL_STATE(4827)] = 184693, + [SMALL_STATE(4828)] = 184707, + [SMALL_STATE(4829)] = 184721, + [SMALL_STATE(4830)] = 184735, + [SMALL_STATE(4831)] = 184747, + [SMALL_STATE(4832)] = 184761, + [SMALL_STATE(4833)] = 184775, + [SMALL_STATE(4834)] = 184785, + [SMALL_STATE(4835)] = 184799, + [SMALL_STATE(4836)] = 184813, + [SMALL_STATE(4837)] = 184827, + [SMALL_STATE(4838)] = 184841, + [SMALL_STATE(4839)] = 184855, + [SMALL_STATE(4840)] = 184869, + [SMALL_STATE(4841)] = 184883, + [SMALL_STATE(4842)] = 184897, + [SMALL_STATE(4843)] = 184911, + [SMALL_STATE(4844)] = 184925, + [SMALL_STATE(4845)] = 184939, + [SMALL_STATE(4846)] = 184951, + [SMALL_STATE(4847)] = 184965, + [SMALL_STATE(4848)] = 184979, + [SMALL_STATE(4849)] = 184993, + [SMALL_STATE(4850)] = 185007, + [SMALL_STATE(4851)] = 185021, + [SMALL_STATE(4852)] = 185035, + [SMALL_STATE(4853)] = 185049, + [SMALL_STATE(4854)] = 185063, + [SMALL_STATE(4855)] = 185077, + [SMALL_STATE(4856)] = 185091, + [SMALL_STATE(4857)] = 185105, + [SMALL_STATE(4858)] = 185119, + [SMALL_STATE(4859)] = 185133, + [SMALL_STATE(4860)] = 185147, + [SMALL_STATE(4861)] = 185161, + [SMALL_STATE(4862)] = 185175, + [SMALL_STATE(4863)] = 185189, + [SMALL_STATE(4864)] = 185203, + [SMALL_STATE(4865)] = 185217, + [SMALL_STATE(4866)] = 185231, + [SMALL_STATE(4867)] = 185245, + [SMALL_STATE(4868)] = 185259, + [SMALL_STATE(4869)] = 185273, + [SMALL_STATE(4870)] = 185287, + [SMALL_STATE(4871)] = 185301, + [SMALL_STATE(4872)] = 185315, + [SMALL_STATE(4873)] = 185329, + [SMALL_STATE(4874)] = 185343, + [SMALL_STATE(4875)] = 185357, + [SMALL_STATE(4876)] = 185371, + [SMALL_STATE(4877)] = 185385, + [SMALL_STATE(4878)] = 185399, + [SMALL_STATE(4879)] = 185413, + [SMALL_STATE(4880)] = 185427, + [SMALL_STATE(4881)] = 185441, + [SMALL_STATE(4882)] = 185455, + [SMALL_STATE(4883)] = 185469, + [SMALL_STATE(4884)] = 185483, + [SMALL_STATE(4885)] = 185497, + [SMALL_STATE(4886)] = 185511, + [SMALL_STATE(4887)] = 185525, + [SMALL_STATE(4888)] = 185539, + [SMALL_STATE(4889)] = 185553, + [SMALL_STATE(4890)] = 185567, + [SMALL_STATE(4891)] = 185579, + [SMALL_STATE(4892)] = 185593, + [SMALL_STATE(4893)] = 185607, + [SMALL_STATE(4894)] = 185621, + [SMALL_STATE(4895)] = 185635, + [SMALL_STATE(4896)] = 185645, + [SMALL_STATE(4897)] = 185659, + [SMALL_STATE(4898)] = 185673, + [SMALL_STATE(4899)] = 185687, + [SMALL_STATE(4900)] = 185701, + [SMALL_STATE(4901)] = 185715, + [SMALL_STATE(4902)] = 185729, + [SMALL_STATE(4903)] = 185743, + [SMALL_STATE(4904)] = 185757, + [SMALL_STATE(4905)] = 185771, + [SMALL_STATE(4906)] = 185785, + [SMALL_STATE(4907)] = 185795, + [SMALL_STATE(4908)] = 185809, + [SMALL_STATE(4909)] = 185823, + [SMALL_STATE(4910)] = 185837, + [SMALL_STATE(4911)] = 185851, + [SMALL_STATE(4912)] = 185865, + [SMALL_STATE(4913)] = 185879, + [SMALL_STATE(4914)] = 185893, + [SMALL_STATE(4915)] = 185907, + [SMALL_STATE(4916)] = 185921, + [SMALL_STATE(4917)] = 185935, + [SMALL_STATE(4918)] = 185949, + [SMALL_STATE(4919)] = 185963, + [SMALL_STATE(4920)] = 185977, + [SMALL_STATE(4921)] = 185991, + [SMALL_STATE(4922)] = 186005, + [SMALL_STATE(4923)] = 186019, + [SMALL_STATE(4924)] = 186033, + [SMALL_STATE(4925)] = 186047, + [SMALL_STATE(4926)] = 186061, + [SMALL_STATE(4927)] = 186075, + [SMALL_STATE(4928)] = 186089, + [SMALL_STATE(4929)] = 186103, + [SMALL_STATE(4930)] = 186117, + [SMALL_STATE(4931)] = 186131, + [SMALL_STATE(4932)] = 186145, + [SMALL_STATE(4933)] = 186159, + [SMALL_STATE(4934)] = 186173, + [SMALL_STATE(4935)] = 186187, + [SMALL_STATE(4936)] = 186201, + [SMALL_STATE(4937)] = 186213, + [SMALL_STATE(4938)] = 186227, + [SMALL_STATE(4939)] = 186241, + [SMALL_STATE(4940)] = 186255, + [SMALL_STATE(4941)] = 186269, + [SMALL_STATE(4942)] = 186283, + [SMALL_STATE(4943)] = 186297, + [SMALL_STATE(4944)] = 186311, + [SMALL_STATE(4945)] = 186325, + [SMALL_STATE(4946)] = 186339, + [SMALL_STATE(4947)] = 186351, + [SMALL_STATE(4948)] = 186365, + [SMALL_STATE(4949)] = 186379, + [SMALL_STATE(4950)] = 186393, + [SMALL_STATE(4951)] = 186407, + [SMALL_STATE(4952)] = 186421, + [SMALL_STATE(4953)] = 186435, + [SMALL_STATE(4954)] = 186449, + [SMALL_STATE(4955)] = 186463, + [SMALL_STATE(4956)] = 186477, + [SMALL_STATE(4957)] = 186491, + [SMALL_STATE(4958)] = 186505, + [SMALL_STATE(4959)] = 186519, + [SMALL_STATE(4960)] = 186533, + [SMALL_STATE(4961)] = 186545, + [SMALL_STATE(4962)] = 186559, + [SMALL_STATE(4963)] = 186573, + [SMALL_STATE(4964)] = 186587, + [SMALL_STATE(4965)] = 186601, + [SMALL_STATE(4966)] = 186615, + [SMALL_STATE(4967)] = 186629, + [SMALL_STATE(4968)] = 186643, + [SMALL_STATE(4969)] = 186657, + [SMALL_STATE(4970)] = 186671, + [SMALL_STATE(4971)] = 186685, + [SMALL_STATE(4972)] = 186699, + [SMALL_STATE(4973)] = 186713, + [SMALL_STATE(4974)] = 186727, + [SMALL_STATE(4975)] = 186741, + [SMALL_STATE(4976)] = 186755, + [SMALL_STATE(4977)] = 186769, + [SMALL_STATE(4978)] = 186783, + [SMALL_STATE(4979)] = 186797, + [SMALL_STATE(4980)] = 186811, + [SMALL_STATE(4981)] = 186825, + [SMALL_STATE(4982)] = 186837, + [SMALL_STATE(4983)] = 186851, + [SMALL_STATE(4984)] = 186865, + [SMALL_STATE(4985)] = 186879, + [SMALL_STATE(4986)] = 186893, + [SMALL_STATE(4987)] = 186907, + [SMALL_STATE(4988)] = 186921, + [SMALL_STATE(4989)] = 186935, + [SMALL_STATE(4990)] = 186949, + [SMALL_STATE(4991)] = 186963, + [SMALL_STATE(4992)] = 186975, + [SMALL_STATE(4993)] = 186989, + [SMALL_STATE(4994)] = 187003, + [SMALL_STATE(4995)] = 187017, + [SMALL_STATE(4996)] = 187031, + [SMALL_STATE(4997)] = 187045, + [SMALL_STATE(4998)] = 187059, + [SMALL_STATE(4999)] = 187073, + [SMALL_STATE(5000)] = 187087, + [SMALL_STATE(5001)] = 187101, + [SMALL_STATE(5002)] = 187115, + [SMALL_STATE(5003)] = 187129, + [SMALL_STATE(5004)] = 187143, + [SMALL_STATE(5005)] = 187157, + [SMALL_STATE(5006)] = 187171, + [SMALL_STATE(5007)] = 187181, + [SMALL_STATE(5008)] = 187195, + [SMALL_STATE(5009)] = 187209, + [SMALL_STATE(5010)] = 187223, + [SMALL_STATE(5011)] = 187237, + [SMALL_STATE(5012)] = 187251, + [SMALL_STATE(5013)] = 187265, + [SMALL_STATE(5014)] = 187279, + [SMALL_STATE(5015)] = 187293, + [SMALL_STATE(5016)] = 187307, + [SMALL_STATE(5017)] = 187321, + [SMALL_STATE(5018)] = 187335, + [SMALL_STATE(5019)] = 187349, + [SMALL_STATE(5020)] = 187363, + [SMALL_STATE(5021)] = 187377, + [SMALL_STATE(5022)] = 187391, + [SMALL_STATE(5023)] = 187405, + [SMALL_STATE(5024)] = 187419, + [SMALL_STATE(5025)] = 187433, + [SMALL_STATE(5026)] = 187447, + [SMALL_STATE(5027)] = 187461, + [SMALL_STATE(5028)] = 187475, + [SMALL_STATE(5029)] = 187489, + [SMALL_STATE(5030)] = 187503, + [SMALL_STATE(5031)] = 187513, + [SMALL_STATE(5032)] = 187527, + [SMALL_STATE(5033)] = 187541, + [SMALL_STATE(5034)] = 187551, + [SMALL_STATE(5035)] = 187565, + [SMALL_STATE(5036)] = 187579, + [SMALL_STATE(5037)] = 187593, + [SMALL_STATE(5038)] = 187607, + [SMALL_STATE(5039)] = 187621, + [SMALL_STATE(5040)] = 187635, + [SMALL_STATE(5041)] = 187647, + [SMALL_STATE(5042)] = 187661, + [SMALL_STATE(5043)] = 187675, + [SMALL_STATE(5044)] = 187689, + [SMALL_STATE(5045)] = 187703, + [SMALL_STATE(5046)] = 187717, + [SMALL_STATE(5047)] = 187731, + [SMALL_STATE(5048)] = 187745, + [SMALL_STATE(5049)] = 187759, + [SMALL_STATE(5050)] = 187773, + [SMALL_STATE(5051)] = 187787, + [SMALL_STATE(5052)] = 187801, + [SMALL_STATE(5053)] = 187811, + [SMALL_STATE(5054)] = 187825, + [SMALL_STATE(5055)] = 187839, + [SMALL_STATE(5056)] = 187853, + [SMALL_STATE(5057)] = 187867, + [SMALL_STATE(5058)] = 187881, + [SMALL_STATE(5059)] = 187891, + [SMALL_STATE(5060)] = 187905, + [SMALL_STATE(5061)] = 187919, + [SMALL_STATE(5062)] = 187933, + [SMALL_STATE(5063)] = 187947, + [SMALL_STATE(5064)] = 187961, + [SMALL_STATE(5065)] = 187975, + [SMALL_STATE(5066)] = 187989, + [SMALL_STATE(5067)] = 188003, + [SMALL_STATE(5068)] = 188017, + [SMALL_STATE(5069)] = 188031, + [SMALL_STATE(5070)] = 188045, + [SMALL_STATE(5071)] = 188059, + [SMALL_STATE(5072)] = 188073, + [SMALL_STATE(5073)] = 188087, + [SMALL_STATE(5074)] = 188101, + [SMALL_STATE(5075)] = 188115, + [SMALL_STATE(5076)] = 188129, + [SMALL_STATE(5077)] = 188143, + [SMALL_STATE(5078)] = 188157, + [SMALL_STATE(5079)] = 188171, + [SMALL_STATE(5080)] = 188185, + [SMALL_STATE(5081)] = 188199, + [SMALL_STATE(5082)] = 188213, + [SMALL_STATE(5083)] = 188227, + [SMALL_STATE(5084)] = 188239, + [SMALL_STATE(5085)] = 188253, + [SMALL_STATE(5086)] = 188267, + [SMALL_STATE(5087)] = 188281, + [SMALL_STATE(5088)] = 188295, + [SMALL_STATE(5089)] = 188309, + [SMALL_STATE(5090)] = 188323, + [SMALL_STATE(5091)] = 188337, + [SMALL_STATE(5092)] = 188351, + [SMALL_STATE(5093)] = 188365, + [SMALL_STATE(5094)] = 188375, + [SMALL_STATE(5095)] = 188389, + [SMALL_STATE(5096)] = 188401, + [SMALL_STATE(5097)] = 188415, + [SMALL_STATE(5098)] = 188429, + [SMALL_STATE(5099)] = 188443, + [SMALL_STATE(5100)] = 188457, + [SMALL_STATE(5101)] = 188471, + [SMALL_STATE(5102)] = 188485, + [SMALL_STATE(5103)] = 188499, + [SMALL_STATE(5104)] = 188513, + [SMALL_STATE(5105)] = 188527, + [SMALL_STATE(5106)] = 188541, + [SMALL_STATE(5107)] = 188555, + [SMALL_STATE(5108)] = 188569, + [SMALL_STATE(5109)] = 188583, + [SMALL_STATE(5110)] = 188597, + [SMALL_STATE(5111)] = 188611, + [SMALL_STATE(5112)] = 188625, + [SMALL_STATE(5113)] = 188639, + [SMALL_STATE(5114)] = 188653, + [SMALL_STATE(5115)] = 188667, + [SMALL_STATE(5116)] = 188681, + [SMALL_STATE(5117)] = 188695, + [SMALL_STATE(5118)] = 188709, + [SMALL_STATE(5119)] = 188723, + [SMALL_STATE(5120)] = 188737, + [SMALL_STATE(5121)] = 188751, + [SMALL_STATE(5122)] = 188765, + [SMALL_STATE(5123)] = 188779, + [SMALL_STATE(5124)] = 188793, + [SMALL_STATE(5125)] = 188807, + [SMALL_STATE(5126)] = 188821, + [SMALL_STATE(5127)] = 188835, + [SMALL_STATE(5128)] = 188849, + [SMALL_STATE(5129)] = 188863, + [SMALL_STATE(5130)] = 188877, + [SMALL_STATE(5131)] = 188891, + [SMALL_STATE(5132)] = 188905, + [SMALL_STATE(5133)] = 188919, + [SMALL_STATE(5134)] = 188933, + [SMALL_STATE(5135)] = 188947, + [SMALL_STATE(5136)] = 188961, + [SMALL_STATE(5137)] = 188973, + [SMALL_STATE(5138)] = 188987, + [SMALL_STATE(5139)] = 189001, + [SMALL_STATE(5140)] = 189015, + [SMALL_STATE(5141)] = 189029, + [SMALL_STATE(5142)] = 189043, + [SMALL_STATE(5143)] = 189057, + [SMALL_STATE(5144)] = 189071, + [SMALL_STATE(5145)] = 189081, + [SMALL_STATE(5146)] = 189095, + [SMALL_STATE(5147)] = 189109, + [SMALL_STATE(5148)] = 189123, + [SMALL_STATE(5149)] = 189137, + [SMALL_STATE(5150)] = 189151, + [SMALL_STATE(5151)] = 189165, + [SMALL_STATE(5152)] = 189179, + [SMALL_STATE(5153)] = 189193, + [SMALL_STATE(5154)] = 189205, + [SMALL_STATE(5155)] = 189219, + [SMALL_STATE(5156)] = 189233, + [SMALL_STATE(5157)] = 189247, + [SMALL_STATE(5158)] = 189261, + [SMALL_STATE(5159)] = 189275, + [SMALL_STATE(5160)] = 189289, + [SMALL_STATE(5161)] = 189303, + [SMALL_STATE(5162)] = 189317, + [SMALL_STATE(5163)] = 189331, + [SMALL_STATE(5164)] = 189345, + [SMALL_STATE(5165)] = 189357, + [SMALL_STATE(5166)] = 189371, + [SMALL_STATE(5167)] = 189385, + [SMALL_STATE(5168)] = 189399, + [SMALL_STATE(5169)] = 189413, + [SMALL_STATE(5170)] = 189427, + [SMALL_STATE(5171)] = 189441, + [SMALL_STATE(5172)] = 189455, + [SMALL_STATE(5173)] = 189469, + [SMALL_STATE(5174)] = 189483, + [SMALL_STATE(5175)] = 189497, + [SMALL_STATE(5176)] = 189511, + [SMALL_STATE(5177)] = 189525, + [SMALL_STATE(5178)] = 189539, + [SMALL_STATE(5179)] = 189553, + [SMALL_STATE(5180)] = 189567, + [SMALL_STATE(5181)] = 189581, + [SMALL_STATE(5182)] = 189595, + [SMALL_STATE(5183)] = 189609, + [SMALL_STATE(5184)] = 189623, + [SMALL_STATE(5185)] = 189635, + [SMALL_STATE(5186)] = 189649, + [SMALL_STATE(5187)] = 189663, + [SMALL_STATE(5188)] = 189675, + [SMALL_STATE(5189)] = 189689, + [SMALL_STATE(5190)] = 189703, + [SMALL_STATE(5191)] = 189717, + [SMALL_STATE(5192)] = 189731, + [SMALL_STATE(5193)] = 189745, + [SMALL_STATE(5194)] = 189759, + [SMALL_STATE(5195)] = 189773, + [SMALL_STATE(5196)] = 189785, + [SMALL_STATE(5197)] = 189799, + [SMALL_STATE(5198)] = 189813, + [SMALL_STATE(5199)] = 189827, + [SMALL_STATE(5200)] = 189841, + [SMALL_STATE(5201)] = 189853, + [SMALL_STATE(5202)] = 189867, + [SMALL_STATE(5203)] = 189879, + [SMALL_STATE(5204)] = 189891, + [SMALL_STATE(5205)] = 189905, + [SMALL_STATE(5206)] = 189919, + [SMALL_STATE(5207)] = 189933, + [SMALL_STATE(5208)] = 189947, + [SMALL_STATE(5209)] = 189961, + [SMALL_STATE(5210)] = 189975, + [SMALL_STATE(5211)] = 189989, + [SMALL_STATE(5212)] = 190003, + [SMALL_STATE(5213)] = 190017, + [SMALL_STATE(5214)] = 190031, + [SMALL_STATE(5215)] = 190045, + [SMALL_STATE(5216)] = 190059, + [SMALL_STATE(5217)] = 190071, + [SMALL_STATE(5218)] = 190085, + [SMALL_STATE(5219)] = 190099, + [SMALL_STATE(5220)] = 190113, + [SMALL_STATE(5221)] = 190127, + [SMALL_STATE(5222)] = 190139, + [SMALL_STATE(5223)] = 190151, + [SMALL_STATE(5224)] = 190165, + [SMALL_STATE(5225)] = 190179, + [SMALL_STATE(5226)] = 190193, + [SMALL_STATE(5227)] = 190207, + [SMALL_STATE(5228)] = 190219, + [SMALL_STATE(5229)] = 190229, + [SMALL_STATE(5230)] = 190243, + [SMALL_STATE(5231)] = 190257, + [SMALL_STATE(5232)] = 190269, + [SMALL_STATE(5233)] = 190283, + [SMALL_STATE(5234)] = 190297, + [SMALL_STATE(5235)] = 190311, + [SMALL_STATE(5236)] = 190325, + [SMALL_STATE(5237)] = 190339, + [SMALL_STATE(5238)] = 190353, + [SMALL_STATE(5239)] = 190367, + [SMALL_STATE(5240)] = 190381, + [SMALL_STATE(5241)] = 190395, + [SMALL_STATE(5242)] = 190405, + [SMALL_STATE(5243)] = 190419, + [SMALL_STATE(5244)] = 190431, + [SMALL_STATE(5245)] = 190443, + [SMALL_STATE(5246)] = 190457, + [SMALL_STATE(5247)] = 190471, + [SMALL_STATE(5248)] = 190485, + [SMALL_STATE(5249)] = 190499, + [SMALL_STATE(5250)] = 190513, + [SMALL_STATE(5251)] = 190527, + [SMALL_STATE(5252)] = 190541, + [SMALL_STATE(5253)] = 190555, + [SMALL_STATE(5254)] = 190569, + [SMALL_STATE(5255)] = 190579, + [SMALL_STATE(5256)] = 190593, + [SMALL_STATE(5257)] = 190607, + [SMALL_STATE(5258)] = 190621, + [SMALL_STATE(5259)] = 190633, + [SMALL_STATE(5260)] = 190647, + [SMALL_STATE(5261)] = 190657, + [SMALL_STATE(5262)] = 190671, + [SMALL_STATE(5263)] = 190685, + [SMALL_STATE(5264)] = 190699, + [SMALL_STATE(5265)] = 190713, + [SMALL_STATE(5266)] = 190727, + [SMALL_STATE(5267)] = 190741, + [SMALL_STATE(5268)] = 190755, + [SMALL_STATE(5269)] = 190769, + [SMALL_STATE(5270)] = 190783, + [SMALL_STATE(5271)] = 190797, + [SMALL_STATE(5272)] = 190811, + [SMALL_STATE(5273)] = 190825, + [SMALL_STATE(5274)] = 190839, + [SMALL_STATE(5275)] = 190853, + [SMALL_STATE(5276)] = 190867, + [SMALL_STATE(5277)] = 190881, + [SMALL_STATE(5278)] = 190890, + [SMALL_STATE(5279)] = 190899, + [SMALL_STATE(5280)] = 190908, + [SMALL_STATE(5281)] = 190917, + [SMALL_STATE(5282)] = 190928, + [SMALL_STATE(5283)] = 190937, + [SMALL_STATE(5284)] = 190946, + [SMALL_STATE(5285)] = 190957, + [SMALL_STATE(5286)] = 190966, + [SMALL_STATE(5287)] = 190977, + [SMALL_STATE(5288)] = 190988, + [SMALL_STATE(5289)] = 190999, + [SMALL_STATE(5290)] = 191010, + [SMALL_STATE(5291)] = 191019, + [SMALL_STATE(5292)] = 191030, + [SMALL_STATE(5293)] = 191041, + [SMALL_STATE(5294)] = 191050, + [SMALL_STATE(5295)] = 191061, + [SMALL_STATE(5296)] = 191072, + [SMALL_STATE(5297)] = 191083, + [SMALL_STATE(5298)] = 191092, + [SMALL_STATE(5299)] = 191101, + [SMALL_STATE(5300)] = 191110, + [SMALL_STATE(5301)] = 191119, + [SMALL_STATE(5302)] = 191128, + [SMALL_STATE(5303)] = 191137, + [SMALL_STATE(5304)] = 191148, + [SMALL_STATE(5305)] = 191157, + [SMALL_STATE(5306)] = 191168, + [SMALL_STATE(5307)] = 191177, + [SMALL_STATE(5308)] = 191186, + [SMALL_STATE(5309)] = 191195, + [SMALL_STATE(5310)] = 191204, + [SMALL_STATE(5311)] = 191215, + [SMALL_STATE(5312)] = 191224, + [SMALL_STATE(5313)] = 191233, + [SMALL_STATE(5314)] = 191242, + [SMALL_STATE(5315)] = 191253, + [SMALL_STATE(5316)] = 191264, + [SMALL_STATE(5317)] = 191275, + [SMALL_STATE(5318)] = 191284, + [SMALL_STATE(5319)] = 191293, + [SMALL_STATE(5320)] = 191304, + [SMALL_STATE(5321)] = 191315, + [SMALL_STATE(5322)] = 191324, + [SMALL_STATE(5323)] = 191335, + [SMALL_STATE(5324)] = 191344, + [SMALL_STATE(5325)] = 191353, + [SMALL_STATE(5326)] = 191362, + [SMALL_STATE(5327)] = 191373, + [SMALL_STATE(5328)] = 191384, + [SMALL_STATE(5329)] = 191393, + [SMALL_STATE(5330)] = 191404, + [SMALL_STATE(5331)] = 191413, + [SMALL_STATE(5332)] = 191424, + [SMALL_STATE(5333)] = 191433, + [SMALL_STATE(5334)] = 191444, + [SMALL_STATE(5335)] = 191455, + [SMALL_STATE(5336)] = 191464, + [SMALL_STATE(5337)] = 191475, + [SMALL_STATE(5338)] = 191486, + [SMALL_STATE(5339)] = 191497, + [SMALL_STATE(5340)] = 191506, + [SMALL_STATE(5341)] = 191517, + [SMALL_STATE(5342)] = 191528, + [SMALL_STATE(5343)] = 191539, + [SMALL_STATE(5344)] = 191548, + [SMALL_STATE(5345)] = 191559, + [SMALL_STATE(5346)] = 191570, + [SMALL_STATE(5347)] = 191581, + [SMALL_STATE(5348)] = 191592, + [SMALL_STATE(5349)] = 191603, + [SMALL_STATE(5350)] = 191614, + [SMALL_STATE(5351)] = 191625, + [SMALL_STATE(5352)] = 191636, + [SMALL_STATE(5353)] = 191647, + [SMALL_STATE(5354)] = 191658, + [SMALL_STATE(5355)] = 191669, + [SMALL_STATE(5356)] = 191680, + [SMALL_STATE(5357)] = 191691, + [SMALL_STATE(5358)] = 191702, + [SMALL_STATE(5359)] = 191711, + [SMALL_STATE(5360)] = 191722, + [SMALL_STATE(5361)] = 191733, + [SMALL_STATE(5362)] = 191744, + [SMALL_STATE(5363)] = 191755, + [SMALL_STATE(5364)] = 191766, + [SMALL_STATE(5365)] = 191777, + [SMALL_STATE(5366)] = 191788, + [SMALL_STATE(5367)] = 191799, + [SMALL_STATE(5368)] = 191808, + [SMALL_STATE(5369)] = 191817, + [SMALL_STATE(5370)] = 191828, + [SMALL_STATE(5371)] = 191839, + [SMALL_STATE(5372)] = 191850, + [SMALL_STATE(5373)] = 191861, + [SMALL_STATE(5374)] = 191872, + [SMALL_STATE(5375)] = 191883, + [SMALL_STATE(5376)] = 191894, + [SMALL_STATE(5377)] = 191903, + [SMALL_STATE(5378)] = 191912, + [SMALL_STATE(5379)] = 191923, + [SMALL_STATE(5380)] = 191934, + [SMALL_STATE(5381)] = 191945, + [SMALL_STATE(5382)] = 191954, + [SMALL_STATE(5383)] = 191963, + [SMALL_STATE(5384)] = 191974, + [SMALL_STATE(5385)] = 191985, + [SMALL_STATE(5386)] = 191994, + [SMALL_STATE(5387)] = 192005, + [SMALL_STATE(5388)] = 192014, + [SMALL_STATE(5389)] = 192025, + [SMALL_STATE(5390)] = 192036, + [SMALL_STATE(5391)] = 192047, + [SMALL_STATE(5392)] = 192058, + [SMALL_STATE(5393)] = 192069, + [SMALL_STATE(5394)] = 192080, + [SMALL_STATE(5395)] = 192091, + [SMALL_STATE(5396)] = 192100, + [SMALL_STATE(5397)] = 192111, + [SMALL_STATE(5398)] = 192120, + [SMALL_STATE(5399)] = 192131, + [SMALL_STATE(5400)] = 192142, + [SMALL_STATE(5401)] = 192153, + [SMALL_STATE(5402)] = 192162, + [SMALL_STATE(5403)] = 192173, + [SMALL_STATE(5404)] = 192184, + [SMALL_STATE(5405)] = 192195, + [SMALL_STATE(5406)] = 192206, + [SMALL_STATE(5407)] = 192217, + [SMALL_STATE(5408)] = 192226, + [SMALL_STATE(5409)] = 192237, + [SMALL_STATE(5410)] = 192248, + [SMALL_STATE(5411)] = 192259, + [SMALL_STATE(5412)] = 192268, + [SMALL_STATE(5413)] = 192279, + [SMALL_STATE(5414)] = 192288, + [SMALL_STATE(5415)] = 192297, + [SMALL_STATE(5416)] = 192308, + [SMALL_STATE(5417)] = 192319, + [SMALL_STATE(5418)] = 192330, + [SMALL_STATE(5419)] = 192341, + [SMALL_STATE(5420)] = 192352, + [SMALL_STATE(5421)] = 192361, + [SMALL_STATE(5422)] = 192370, + [SMALL_STATE(5423)] = 192381, + [SMALL_STATE(5424)] = 192390, + [SMALL_STATE(5425)] = 192399, + [SMALL_STATE(5426)] = 192410, + [SMALL_STATE(5427)] = 192419, + [SMALL_STATE(5428)] = 192430, + [SMALL_STATE(5429)] = 192441, + [SMALL_STATE(5430)] = 192450, + [SMALL_STATE(5431)] = 192461, + [SMALL_STATE(5432)] = 192470, + [SMALL_STATE(5433)] = 192481, + [SMALL_STATE(5434)] = 192490, + [SMALL_STATE(5435)] = 192501, + [SMALL_STATE(5436)] = 192512, + [SMALL_STATE(5437)] = 192523, + [SMALL_STATE(5438)] = 192534, + [SMALL_STATE(5439)] = 192545, + [SMALL_STATE(5440)] = 192556, + [SMALL_STATE(5441)] = 192565, + [SMALL_STATE(5442)] = 192576, + [SMALL_STATE(5443)] = 192585, + [SMALL_STATE(5444)] = 192596, + [SMALL_STATE(5445)] = 192605, + [SMALL_STATE(5446)] = 192614, + [SMALL_STATE(5447)] = 192625, + [SMALL_STATE(5448)] = 192636, + [SMALL_STATE(5449)] = 192647, + [SMALL_STATE(5450)] = 192658, + [SMALL_STATE(5451)] = 192669, + [SMALL_STATE(5452)] = 192678, + [SMALL_STATE(5453)] = 192687, + [SMALL_STATE(5454)] = 192698, + [SMALL_STATE(5455)] = 192709, + [SMALL_STATE(5456)] = 192718, + [SMALL_STATE(5457)] = 192729, + [SMALL_STATE(5458)] = 192738, + [SMALL_STATE(5459)] = 192747, + [SMALL_STATE(5460)] = 192758, + [SMALL_STATE(5461)] = 192767, + [SMALL_STATE(5462)] = 192778, + [SMALL_STATE(5463)] = 192787, + [SMALL_STATE(5464)] = 192796, + [SMALL_STATE(5465)] = 192805, + [SMALL_STATE(5466)] = 192814, + [SMALL_STATE(5467)] = 192825, + [SMALL_STATE(5468)] = 192834, + [SMALL_STATE(5469)] = 192845, + [SMALL_STATE(5470)] = 192856, + [SMALL_STATE(5471)] = 192865, + [SMALL_STATE(5472)] = 192876, + [SMALL_STATE(5473)] = 192887, + [SMALL_STATE(5474)] = 192898, + [SMALL_STATE(5475)] = 192909, + [SMALL_STATE(5476)] = 192918, + [SMALL_STATE(5477)] = 192929, + [SMALL_STATE(5478)] = 192938, + [SMALL_STATE(5479)] = 192947, + [SMALL_STATE(5480)] = 192956, + [SMALL_STATE(5481)] = 192967, + [SMALL_STATE(5482)] = 192976, + [SMALL_STATE(5483)] = 192987, + [SMALL_STATE(5484)] = 192996, + [SMALL_STATE(5485)] = 193007, + [SMALL_STATE(5486)] = 193018, + [SMALL_STATE(5487)] = 193027, + [SMALL_STATE(5488)] = 193036, + [SMALL_STATE(5489)] = 193045, + [SMALL_STATE(5490)] = 193054, + [SMALL_STATE(5491)] = 193065, + [SMALL_STATE(5492)] = 193076, + [SMALL_STATE(5493)] = 193085, + [SMALL_STATE(5494)] = 193094, + [SMALL_STATE(5495)] = 193103, + [SMALL_STATE(5496)] = 193114, + [SMALL_STATE(5497)] = 193125, + [SMALL_STATE(5498)] = 193134, + [SMALL_STATE(5499)] = 193143, + [SMALL_STATE(5500)] = 193154, + [SMALL_STATE(5501)] = 193163, + [SMALL_STATE(5502)] = 193174, + [SMALL_STATE(5503)] = 193183, + [SMALL_STATE(5504)] = 193192, + [SMALL_STATE(5505)] = 193201, + [SMALL_STATE(5506)] = 193212, + [SMALL_STATE(5507)] = 193223, + [SMALL_STATE(5508)] = 193232, + [SMALL_STATE(5509)] = 193241, + [SMALL_STATE(5510)] = 193250, + [SMALL_STATE(5511)] = 193261, + [SMALL_STATE(5512)] = 193270, + [SMALL_STATE(5513)] = 193279, + [SMALL_STATE(5514)] = 193290, + [SMALL_STATE(5515)] = 193299, + [SMALL_STATE(5516)] = 193310, + [SMALL_STATE(5517)] = 193318, + [SMALL_STATE(5518)] = 193326, + [SMALL_STATE(5519)] = 193334, + [SMALL_STATE(5520)] = 193342, + [SMALL_STATE(5521)] = 193350, + [SMALL_STATE(5522)] = 193358, + [SMALL_STATE(5523)] = 193366, + [SMALL_STATE(5524)] = 193374, + [SMALL_STATE(5525)] = 193382, + [SMALL_STATE(5526)] = 193390, + [SMALL_STATE(5527)] = 193398, + [SMALL_STATE(5528)] = 193406, + [SMALL_STATE(5529)] = 193414, + [SMALL_STATE(5530)] = 193422, + [SMALL_STATE(5531)] = 193430, + [SMALL_STATE(5532)] = 193438, + [SMALL_STATE(5533)] = 193446, + [SMALL_STATE(5534)] = 193454, + [SMALL_STATE(5535)] = 193462, + [SMALL_STATE(5536)] = 193470, + [SMALL_STATE(5537)] = 193478, + [SMALL_STATE(5538)] = 193486, + [SMALL_STATE(5539)] = 193494, + [SMALL_STATE(5540)] = 193502, + [SMALL_STATE(5541)] = 193510, + [SMALL_STATE(5542)] = 193518, + [SMALL_STATE(5543)] = 193526, + [SMALL_STATE(5544)] = 193534, + [SMALL_STATE(5545)] = 193542, + [SMALL_STATE(5546)] = 193550, + [SMALL_STATE(5547)] = 193558, + [SMALL_STATE(5548)] = 193566, + [SMALL_STATE(5549)] = 193574, + [SMALL_STATE(5550)] = 193582, + [SMALL_STATE(5551)] = 193590, + [SMALL_STATE(5552)] = 193598, + [SMALL_STATE(5553)] = 193606, + [SMALL_STATE(5554)] = 193614, + [SMALL_STATE(5555)] = 193622, + [SMALL_STATE(5556)] = 193630, + [SMALL_STATE(5557)] = 193638, + [SMALL_STATE(5558)] = 193646, + [SMALL_STATE(5559)] = 193654, + [SMALL_STATE(5560)] = 193662, + [SMALL_STATE(5561)] = 193670, + [SMALL_STATE(5562)] = 193678, + [SMALL_STATE(5563)] = 193686, + [SMALL_STATE(5564)] = 193694, + [SMALL_STATE(5565)] = 193702, + [SMALL_STATE(5566)] = 193710, + [SMALL_STATE(5567)] = 193718, + [SMALL_STATE(5568)] = 193726, + [SMALL_STATE(5569)] = 193734, + [SMALL_STATE(5570)] = 193742, + [SMALL_STATE(5571)] = 193750, + [SMALL_STATE(5572)] = 193758, + [SMALL_STATE(5573)] = 193766, + [SMALL_STATE(5574)] = 193774, + [SMALL_STATE(5575)] = 193782, + [SMALL_STATE(5576)] = 193790, + [SMALL_STATE(5577)] = 193798, + [SMALL_STATE(5578)] = 193806, + [SMALL_STATE(5579)] = 193814, + [SMALL_STATE(5580)] = 193822, + [SMALL_STATE(5581)] = 193830, + [SMALL_STATE(5582)] = 193838, + [SMALL_STATE(5583)] = 193846, + [SMALL_STATE(5584)] = 193854, + [SMALL_STATE(5585)] = 193862, + [SMALL_STATE(5586)] = 193870, + [SMALL_STATE(5587)] = 193878, + [SMALL_STATE(5588)] = 193886, + [SMALL_STATE(5589)] = 193894, + [SMALL_STATE(5590)] = 193902, + [SMALL_STATE(5591)] = 193910, + [SMALL_STATE(5592)] = 193918, + [SMALL_STATE(5593)] = 193926, + [SMALL_STATE(5594)] = 193934, + [SMALL_STATE(5595)] = 193942, + [SMALL_STATE(5596)] = 193950, + [SMALL_STATE(5597)] = 193958, + [SMALL_STATE(5598)] = 193966, + [SMALL_STATE(5599)] = 193974, + [SMALL_STATE(5600)] = 193982, + [SMALL_STATE(5601)] = 193990, + [SMALL_STATE(5602)] = 193998, + [SMALL_STATE(5603)] = 194006, + [SMALL_STATE(5604)] = 194014, + [SMALL_STATE(5605)] = 194022, + [SMALL_STATE(5606)] = 194030, + [SMALL_STATE(5607)] = 194038, + [SMALL_STATE(5608)] = 194046, + [SMALL_STATE(5609)] = 194054, + [SMALL_STATE(5610)] = 194062, + [SMALL_STATE(5611)] = 194070, + [SMALL_STATE(5612)] = 194078, + [SMALL_STATE(5613)] = 194086, + [SMALL_STATE(5614)] = 194094, + [SMALL_STATE(5615)] = 194102, + [SMALL_STATE(5616)] = 194110, + [SMALL_STATE(5617)] = 194118, + [SMALL_STATE(5618)] = 194126, + [SMALL_STATE(5619)] = 194134, + [SMALL_STATE(5620)] = 194142, + [SMALL_STATE(5621)] = 194150, + [SMALL_STATE(5622)] = 194158, + [SMALL_STATE(5623)] = 194166, + [SMALL_STATE(5624)] = 194174, + [SMALL_STATE(5625)] = 194182, + [SMALL_STATE(5626)] = 194190, + [SMALL_STATE(5627)] = 194198, + [SMALL_STATE(5628)] = 194206, + [SMALL_STATE(5629)] = 194214, + [SMALL_STATE(5630)] = 194222, + [SMALL_STATE(5631)] = 194230, + [SMALL_STATE(5632)] = 194238, + [SMALL_STATE(5633)] = 194246, + [SMALL_STATE(5634)] = 194254, + [SMALL_STATE(5635)] = 194262, + [SMALL_STATE(5636)] = 194270, + [SMALL_STATE(5637)] = 194278, + [SMALL_STATE(5638)] = 194286, + [SMALL_STATE(5639)] = 194294, + [SMALL_STATE(5640)] = 194302, + [SMALL_STATE(5641)] = 194310, + [SMALL_STATE(5642)] = 194318, + [SMALL_STATE(5643)] = 194326, + [SMALL_STATE(5644)] = 194334, + [SMALL_STATE(5645)] = 194342, + [SMALL_STATE(5646)] = 194350, + [SMALL_STATE(5647)] = 194358, + [SMALL_STATE(5648)] = 194366, + [SMALL_STATE(5649)] = 194374, + [SMALL_STATE(5650)] = 194382, + [SMALL_STATE(5651)] = 194390, + [SMALL_STATE(5652)] = 194398, + [SMALL_STATE(5653)] = 194406, + [SMALL_STATE(5654)] = 194414, + [SMALL_STATE(5655)] = 194422, + [SMALL_STATE(5656)] = 194430, + [SMALL_STATE(5657)] = 194438, + [SMALL_STATE(5658)] = 194446, + [SMALL_STATE(5659)] = 194454, + [SMALL_STATE(5660)] = 194462, + [SMALL_STATE(5661)] = 194470, + [SMALL_STATE(5662)] = 194478, + [SMALL_STATE(5663)] = 194486, + [SMALL_STATE(5664)] = 194494, + [SMALL_STATE(5665)] = 194502, + [SMALL_STATE(5666)] = 194510, + [SMALL_STATE(5667)] = 194518, + [SMALL_STATE(5668)] = 194526, + [SMALL_STATE(5669)] = 194534, + [SMALL_STATE(5670)] = 194542, + [SMALL_STATE(5671)] = 194550, + [SMALL_STATE(5672)] = 194558, + [SMALL_STATE(5673)] = 194566, + [SMALL_STATE(5674)] = 194574, + [SMALL_STATE(5675)] = 194582, + [SMALL_STATE(5676)] = 194590, + [SMALL_STATE(5677)] = 194598, + [SMALL_STATE(5678)] = 194606, + [SMALL_STATE(5679)] = 194614, + [SMALL_STATE(5680)] = 194622, + [SMALL_STATE(5681)] = 194630, + [SMALL_STATE(5682)] = 194638, + [SMALL_STATE(5683)] = 194646, + [SMALL_STATE(5684)] = 194654, + [SMALL_STATE(5685)] = 194662, + [SMALL_STATE(5686)] = 194670, + [SMALL_STATE(5687)] = 194678, + [SMALL_STATE(5688)] = 194686, + [SMALL_STATE(5689)] = 194694, + [SMALL_STATE(5690)] = 194702, + [SMALL_STATE(5691)] = 194710, + [SMALL_STATE(5692)] = 194718, + [SMALL_STATE(5693)] = 194726, + [SMALL_STATE(5694)] = 194734, + [SMALL_STATE(5695)] = 194742, + [SMALL_STATE(5696)] = 194750, + [SMALL_STATE(5697)] = 194758, + [SMALL_STATE(5698)] = 194766, + [SMALL_STATE(5699)] = 194774, + [SMALL_STATE(5700)] = 194782, + [SMALL_STATE(5701)] = 194790, + [SMALL_STATE(5702)] = 194798, + [SMALL_STATE(5703)] = 194806, + [SMALL_STATE(5704)] = 194814, + [SMALL_STATE(5705)] = 194822, + [SMALL_STATE(5706)] = 194830, + [SMALL_STATE(5707)] = 194838, + [SMALL_STATE(5708)] = 194846, + [SMALL_STATE(5709)] = 194854, + [SMALL_STATE(5710)] = 194862, + [SMALL_STATE(5711)] = 194870, + [SMALL_STATE(5712)] = 194878, + [SMALL_STATE(5713)] = 194886, + [SMALL_STATE(5714)] = 194894, + [SMALL_STATE(5715)] = 194902, + [SMALL_STATE(5716)] = 194910, + [SMALL_STATE(5717)] = 194918, + [SMALL_STATE(5718)] = 194926, + [SMALL_STATE(5719)] = 194934, + [SMALL_STATE(5720)] = 194942, + [SMALL_STATE(5721)] = 194950, + [SMALL_STATE(5722)] = 194958, + [SMALL_STATE(5723)] = 194966, + [SMALL_STATE(5724)] = 194974, + [SMALL_STATE(5725)] = 194982, + [SMALL_STATE(5726)] = 194990, + [SMALL_STATE(5727)] = 194998, + [SMALL_STATE(5728)] = 195006, + [SMALL_STATE(5729)] = 195014, + [SMALL_STATE(5730)] = 195022, + [SMALL_STATE(5731)] = 195030, + [SMALL_STATE(5732)] = 195038, + [SMALL_STATE(5733)] = 195046, + [SMALL_STATE(5734)] = 195054, + [SMALL_STATE(5735)] = 195062, + [SMALL_STATE(5736)] = 195070, + [SMALL_STATE(5737)] = 195078, + [SMALL_STATE(5738)] = 195086, + [SMALL_STATE(5739)] = 195094, + [SMALL_STATE(5740)] = 195102, + [SMALL_STATE(5741)] = 195110, + [SMALL_STATE(5742)] = 195118, + [SMALL_STATE(5743)] = 195126, + [SMALL_STATE(5744)] = 195134, + [SMALL_STATE(5745)] = 195142, + [SMALL_STATE(5746)] = 195150, + [SMALL_STATE(5747)] = 195158, + [SMALL_STATE(5748)] = 195166, + [SMALL_STATE(5749)] = 195174, + [SMALL_STATE(5750)] = 195182, + [SMALL_STATE(5751)] = 195190, + [SMALL_STATE(5752)] = 195198, + [SMALL_STATE(5753)] = 195206, + [SMALL_STATE(5754)] = 195214, + [SMALL_STATE(5755)] = 195222, + [SMALL_STATE(5756)] = 195230, + [SMALL_STATE(5757)] = 195238, + [SMALL_STATE(5758)] = 195246, + [SMALL_STATE(5759)] = 195254, + [SMALL_STATE(5760)] = 195262, + [SMALL_STATE(5761)] = 195270, + [SMALL_STATE(5762)] = 195278, + [SMALL_STATE(5763)] = 195286, + [SMALL_STATE(5764)] = 195294, + [SMALL_STATE(5765)] = 195302, + [SMALL_STATE(5766)] = 195310, + [SMALL_STATE(5767)] = 195318, + [SMALL_STATE(5768)] = 195326, + [SMALL_STATE(5769)] = 195334, + [SMALL_STATE(5770)] = 195342, + [SMALL_STATE(5771)] = 195350, + [SMALL_STATE(5772)] = 195358, + [SMALL_STATE(5773)] = 195366, + [SMALL_STATE(5774)] = 195374, + [SMALL_STATE(5775)] = 195382, + [SMALL_STATE(5776)] = 195390, + [SMALL_STATE(5777)] = 195398, + [SMALL_STATE(5778)] = 195406, + [SMALL_STATE(5779)] = 195414, + [SMALL_STATE(5780)] = 195422, + [SMALL_STATE(5781)] = 195430, + [SMALL_STATE(5782)] = 195438, + [SMALL_STATE(5783)] = 195446, + [SMALL_STATE(5784)] = 195454, + [SMALL_STATE(5785)] = 195462, + [SMALL_STATE(5786)] = 195470, + [SMALL_STATE(5787)] = 195478, + [SMALL_STATE(5788)] = 195486, + [SMALL_STATE(5789)] = 195494, + [SMALL_STATE(5790)] = 195502, + [SMALL_STATE(5791)] = 195510, + [SMALL_STATE(5792)] = 195518, + [SMALL_STATE(5793)] = 195526, + [SMALL_STATE(5794)] = 195534, + [SMALL_STATE(5795)] = 195542, + [SMALL_STATE(5796)] = 195550, + [SMALL_STATE(5797)] = 195558, + [SMALL_STATE(5798)] = 195566, + [SMALL_STATE(5799)] = 195574, + [SMALL_STATE(5800)] = 195582, + [SMALL_STATE(5801)] = 195590, + [SMALL_STATE(5802)] = 195598, + [SMALL_STATE(5803)] = 195606, + [SMALL_STATE(5804)] = 195614, + [SMALL_STATE(5805)] = 195622, + [SMALL_STATE(5806)] = 195630, + [SMALL_STATE(5807)] = 195638, + [SMALL_STATE(5808)] = 195646, + [SMALL_STATE(5809)] = 195654, + [SMALL_STATE(5810)] = 195662, + [SMALL_STATE(5811)] = 195670, + [SMALL_STATE(5812)] = 195678, + [SMALL_STATE(5813)] = 195686, + [SMALL_STATE(5814)] = 195694, + [SMALL_STATE(5815)] = 195702, + [SMALL_STATE(5816)] = 195710, + [SMALL_STATE(5817)] = 195718, + [SMALL_STATE(5818)] = 195726, + [SMALL_STATE(5819)] = 195734, + [SMALL_STATE(5820)] = 195742, + [SMALL_STATE(5821)] = 195750, + [SMALL_STATE(5822)] = 195758, + [SMALL_STATE(5823)] = 195766, + [SMALL_STATE(5824)] = 195774, + [SMALL_STATE(5825)] = 195782, + [SMALL_STATE(5826)] = 195790, + [SMALL_STATE(5827)] = 195798, + [SMALL_STATE(5828)] = 195806, + [SMALL_STATE(5829)] = 195814, + [SMALL_STATE(5830)] = 195822, + [SMALL_STATE(5831)] = 195830, + [SMALL_STATE(5832)] = 195838, + [SMALL_STATE(5833)] = 195846, + [SMALL_STATE(5834)] = 195854, + [SMALL_STATE(5835)] = 195862, + [SMALL_STATE(5836)] = 195870, + [SMALL_STATE(5837)] = 195878, + [SMALL_STATE(5838)] = 195886, + [SMALL_STATE(5839)] = 195894, + [SMALL_STATE(5840)] = 195902, + [SMALL_STATE(5841)] = 195910, + [SMALL_STATE(5842)] = 195918, + [SMALL_STATE(5843)] = 195926, + [SMALL_STATE(5844)] = 195934, + [SMALL_STATE(5845)] = 195942, + [SMALL_STATE(5846)] = 195950, + [SMALL_STATE(5847)] = 195958, + [SMALL_STATE(5848)] = 195966, + [SMALL_STATE(5849)] = 195974, + [SMALL_STATE(5850)] = 195982, + [SMALL_STATE(5851)] = 195990, + [SMALL_STATE(5852)] = 195998, + [SMALL_STATE(5853)] = 196006, + [SMALL_STATE(5854)] = 196014, + [SMALL_STATE(5855)] = 196022, + [SMALL_STATE(5856)] = 196030, + [SMALL_STATE(5857)] = 196038, + [SMALL_STATE(5858)] = 196046, + [SMALL_STATE(5859)] = 196054, + [SMALL_STATE(5860)] = 196062, + [SMALL_STATE(5861)] = 196070, + [SMALL_STATE(5862)] = 196078, + [SMALL_STATE(5863)] = 196086, + [SMALL_STATE(5864)] = 196094, + [SMALL_STATE(5865)] = 196102, + [SMALL_STATE(5866)] = 196110, + [SMALL_STATE(5867)] = 196118, + [SMALL_STATE(5868)] = 196126, + [SMALL_STATE(5869)] = 196134, + [SMALL_STATE(5870)] = 196142, + [SMALL_STATE(5871)] = 196150, + [SMALL_STATE(5872)] = 196158, + [SMALL_STATE(5873)] = 196166, + [SMALL_STATE(5874)] = 196174, + [SMALL_STATE(5875)] = 196182, + [SMALL_STATE(5876)] = 196190, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -289317,5060 +294247,5116 @@ 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(1926), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4598), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(791), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2047), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(438), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1075), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(979), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5423), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5457), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5370), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(958), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5669), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5622), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5801), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5608), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(769), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1967), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3306), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2744), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(977), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2189), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2190), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5671), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5092), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5783), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2049), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3335), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5684), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3735), - [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(942), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5743), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5473), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5536), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5726), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5646), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1979), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(861), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2022), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(862), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1967), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1670), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3306), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 19), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 19), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 51), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 51), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 61), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 61), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 97), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 97), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 155), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 155), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 201), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 201), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 166), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 166), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 4, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 4, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 5, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 5, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 165), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 165), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 18), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 18), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 2, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 2, 0, 0), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 50), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 50), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 18), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 18), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 3, 0, 0), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 3, 0, 0), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 60), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 60), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 80), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 80), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 81), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 81), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 82), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 82), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 83), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 83), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 87), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 87), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 0), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 0), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 89), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 89), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 96), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 96), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 60), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 60), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 18), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 18), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 122), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 122), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 123), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 123), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 124), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 124), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 125), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 125), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 126), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 126), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 0), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 0), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 87), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 87), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 132), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 132), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 133), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 133), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 131), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 131), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 134), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 134), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 135), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 135), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 136), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 136), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 137), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 137), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 153), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 153), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 154), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 154), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 18), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 18), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 156), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 156), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 157), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 157), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 158), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 158), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 161), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 161), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 87), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 87), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 162), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 162), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 0), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 0), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 131), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 131), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 163), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 163), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 164), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 164), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 165), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 165), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 60), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 60), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 167), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 167), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 168), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 168), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 169), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 169), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 170), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 170), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 171), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 171), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 172), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 172), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 187), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 187), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 188), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 188), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 189), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 189), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 190), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 190), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 191), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 191), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 193), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 193), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 87), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 87), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 194), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 194), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 131), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 131), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 195), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 195), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 0), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 0), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 164), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 164), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 196), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 196), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 165), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 165), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 197), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 197), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 198), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 198), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 199), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 199), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 200), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 200), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 60), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 60), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 202), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 202), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 203), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 203), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 204), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 204), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 219), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 219), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 220), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 220), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 221), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 221), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 222), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 222), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 223), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 223), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 224), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 224), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 226), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 226), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 227), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 227), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 131), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 131), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 228), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 228), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 164), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 164), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 229), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 229), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 87), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 87), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 165), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 165), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 230), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 230), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 0), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 0), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 198), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 198), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 231), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 231), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 232), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 232), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 233), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 233), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 234), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 234), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 235), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 235), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 236), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 236), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 245), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 245), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 246), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 246), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 247), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 247), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 248), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 248), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 250), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 250), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 251), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 251), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 164), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 164), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 252), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 252), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 253), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 253), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 12, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 12, 0, 0), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 254), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 254), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 198), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 198), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 255), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 255), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 131), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 131), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 256), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 256), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 257), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 257), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 258), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 258), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 259), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 259), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 260), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 260), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 261), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 261), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 266), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 266), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 268), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 268), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 269), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 269), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 270), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 270), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 198), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 198), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 271), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 271), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 272), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 272), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 273), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 273), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 274), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 274), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 275), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 275), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 11, 0, 278), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 11, 0, 278), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 12, 0, 279), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 12, 0, 279), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 2, 0, 0), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 2, 0, 0), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 2, 0, 0), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 2, 0, 0), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 2, 0, 0), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 2, 0, 0), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 56), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 56), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 0), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 0), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 3, 0, 0), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 3, 0, 0), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 3, 0, 0), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 3, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 58), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 58), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 0), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 0), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 3, 0, 0), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 3, 0, 0), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 2, 0, 0), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 2, 0, 0), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 4, 0, 0), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 4, 0, 0), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 56), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 56), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 0), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 0), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 0), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 0), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 87), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 87), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 0), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 0), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 88), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 88), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 4, 0, 0), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 4, 0, 0), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 0), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 0), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 58), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 58), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 5, 0, 0), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 5, 0, 0), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 3, 0, 0), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 3, 0, 0), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 2, 0, 0), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 2, 0, 0), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 87), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 87), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 0), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 0), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 130), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 130), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 5, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 5, 0, 0), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 5, 0, 0), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 5, 0, 0), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 88), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 88), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 131), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 131), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 6, 0, 0), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 6, 0, 0), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 3, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 3, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 0), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 0), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 160), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 160), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 6, 0, 0), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 6, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 6, 0, 0), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 6, 0, 0), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 130), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 130), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 6, 0, 131), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 6, 0, 131), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 7, 0, 0), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 7, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 192), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 192), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 160), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 160), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 7, 0, 0), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 7, 0, 0), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 8, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 8, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 225), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 225), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 0), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 0), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 0), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 0), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 192), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 192), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 0), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 0), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 249), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 249), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 8, 0, 0), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 8, 0, 0), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 267), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 267), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 0), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 0), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 277), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 277), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pass_statement, 1, 0, 0), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 3, 0, 0), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 3, 0, 0), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 6, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 6, 0, 0), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 2, 0, 0), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 2, 0, 0), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 5, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 5, 0, 0), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 4, 0, 0), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 4, 0, 0), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctype_declaration, 1, 0, 0), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctype_declaration, 1, 0, 0), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 3, 0, 0), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 3, 0, 0), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 48), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 48), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 77), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 77), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 107), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 107), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 67), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 67), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 68), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), - [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1855), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 103), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 103), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 140), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 140), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 173), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 173), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 139), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 139), - [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1241), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1562), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), - [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1857), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1711), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 160), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 160), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 1, 0, 0), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 88), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 88), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 160), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 160), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 58), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 58), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 88), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 88), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 143), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 143), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 144), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 144), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 148), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 148), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 150), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 150), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 42), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 42), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 177), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 177), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 179), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 179), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 184), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 184), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 111), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 111), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 71), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 71), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 68), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 68), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 213), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 213), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 217), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 217), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 74), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 74), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 242), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 242), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 76), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 76), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 48), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 48), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 15), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 16), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 115), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 115), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 116), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 116), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 77), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 77), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 46), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 46), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 47), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 47), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 3, 0, 0), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 2, 0, 0), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 77), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 77), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 48), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 48), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), - [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 44), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 44), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, 0, 78), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, 0, 78), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_def_statement, 5, 0, 18), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_def_statement, 5, 0, 18), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 49), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 49), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), - [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 4, 0, 49), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 4, 0, 49), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 66), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 66), - [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 69), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 69), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 70), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 70), - [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 72), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 72), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 73), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 73), - [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 75), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 75), - [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), - [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 79), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 79), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 106), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 106), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 108), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 108), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 109), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 109), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 110), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 110), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 112), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 112), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 113), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 113), - [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 114), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 114), - [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 117), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 117), - [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 58), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 58), - [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 48), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 48), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 176), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 176), - [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 119), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 119), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 178), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 178), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 180), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 180), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 181), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 181), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 182), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 182), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 183), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 183), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 185), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 185), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 186), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 186), - [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 141), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 141), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 142), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 142), - [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 145), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 145), - [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 146), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 146), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 147), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 147), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 149), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 149), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 77), - [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 77), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 151), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 151), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 152), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 152), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 13), - [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 13), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 211), - [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 211), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 212), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 212), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 214), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 214), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 215), - [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 215), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 216), - [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 216), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 218), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 218), - [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 241), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 241), - [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 243), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 243), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 244), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 244), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 265), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 265), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_directive, 3, 0, 0), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_directive, 3, 0, 0), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 2, 0, 0), - [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 2, 0, 0), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storageclass, 1, 0, 0), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), - [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), - [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 10), - [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 2, 0, 0), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_value, 2, 0, 0), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 5, 0, 0), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 3, 0, 0), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 94), - [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 94), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 59), - [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 59), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 29), - [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 29), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 94), - [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 94), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 59), - [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 59), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), - [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3396), - [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5608), - [4163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), - [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2165), - [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), - [4172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [4175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), - [4178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), - [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), - [4184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), - [4187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5523), - [4190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4447), - [4193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5524), - [4196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5818), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), - [4201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), - [4239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), - [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), - [4245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2846), - [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [4251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), - [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), - [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3416), - [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3339), - [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), - [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), - [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5661), - [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4448), - [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5662), - [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3735), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 12), - [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 12), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), - [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), - [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2015), - [4355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(5787), - [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1950), - [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2015), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), - [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 27), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 27), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), - [4411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), - [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 3, 0, 0), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 0), - [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 0), - [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3713), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 38), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 38), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 38), - [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 38), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), - [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 38), - [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 38), - [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3683), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 39), - [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 39), - [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3722), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 11), - [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 11), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 22), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 22), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 0), - [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 0), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), - [4645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1482), - [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 28), - [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 28), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 27), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 27), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 54), - [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 54), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [4664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1983), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1954), - [4672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1983), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2013), - [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1956), - [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2013), - [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1993), - [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1955), - [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1993), - [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 39), - [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 39), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 0), - [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 0), - [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [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(1975), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4593), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4140), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(450), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1776), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1143), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(995), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5498), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5507), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5655), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1271), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5814), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5691), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5791), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5765), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1782), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2006), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(807), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1661), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3365), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2185), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2230), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2230), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1939), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5722), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4781), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5648), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1714), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2012), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3360), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2311), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5570), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3739), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 0), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1896), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(454), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(988), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1897), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5717), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5832), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5646), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5719), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(5833), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2295), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(885), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2018), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(886), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2006), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1661), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3365), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 155), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 155), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 201), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 201), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 4, 0, 0), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 4, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_definition, 5, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_definition, 5, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 166), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 166), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 19), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 19), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 51), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 51), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 61), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 61), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 97), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 97), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 120), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 120), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 229), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 229), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 277), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 277), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 2, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3, 0, 18), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3, 0, 18), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 2, 0, 0), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 2, 0, 0), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 3, 0, 0), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 50), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 50), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 18), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 18), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 3, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 3, 0, 0), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 60), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 60), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 80), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 80), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 81), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 81), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 82), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 82), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 83), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 83), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 87), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 87), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 0), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 0), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 4, 0, 89), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 4, 0, 89), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 96), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 96), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 60), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 60), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 18), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 18), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 121), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 121), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 122), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 122), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 123), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 123), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 124), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 124), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 125), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 125), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 126), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 126), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 0), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 87), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 87), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 132), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 132), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 133), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 133), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 5, 0, 131), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 5, 0, 131), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 134), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 134), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 135), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 135), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 136), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 136), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 137), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 137), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 153), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 153), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 154), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 154), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 18), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 18), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 156), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 156), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 157), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 157), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 158), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 158), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 161), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 161), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 87), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 87), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 162), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 162), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 0), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 131), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 131), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 163), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 163), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 164), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 164), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 6, 0, 165), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 6, 0, 165), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 60), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 60), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 167), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 167), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 168), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 168), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 169), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 169), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 170), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 170), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 171), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 171), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 172), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 172), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 187), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 187), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 188), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 188), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 189), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 189), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 190), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 190), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 191), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 191), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 193), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 193), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 87), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 87), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 194), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 194), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 131), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 131), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 195), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 195), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 0), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 164), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 164), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 196), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 196), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 165), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 165), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 197), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 197), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 7, 0, 198), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 7, 0, 198), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 199), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 199), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 200), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 200), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 60), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 60), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 202), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 202), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 203), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 203), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 8, 0, 204), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 8, 0, 204), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 219), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 219), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 220), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 220), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 221), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 221), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 222), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 222), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 223), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 223), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 224), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 224), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 226), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 226), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 227), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 227), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 131), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 131), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 228), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 228), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 164), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 164), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pass_statement, 1, 0, 0), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 87), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 87), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 165), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 165), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 230), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 230), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 0), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 198), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 198), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 8, 0, 231), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 8, 0, 231), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 232), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 232), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 233), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 233), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 234), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 234), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 235), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 235), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 9, 0, 236), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 9, 0, 236), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 245), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 245), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 246), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 246), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 247), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 247), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 248), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 248), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 250), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 250), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 251), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 251), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 164), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 164), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 252), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 252), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 253), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 253), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 165), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 165), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 12, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 12, 0, 0), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 198), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 198), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 255), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 255), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 131), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 131), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 256), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 256), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 257), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 257), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 258), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 258), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 259), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 259), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 260), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 260), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 10, 0, 261), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 10, 0, 261), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 266), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 266), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 268), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 268), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 269), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 269), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 270), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 270), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 198), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 198), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 10, 0, 271), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 10, 0, 271), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 272), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 272), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 273), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 273), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 274), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 274), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 11, 0, 275), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 11, 0, 275), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 11, 0, 278), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 11, 0, 278), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 12, 0, 279), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 12, 0, 279), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 2, 0, 0), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 2, 0, 0), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 2, 0, 0), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 2, 0, 0), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 2, 0, 0), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 2, 0, 0), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 56), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 56), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 1, 0, 0), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 1, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 3, 0, 0), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 3, 0, 0), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 3, 0, 0), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 3, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 58), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 58), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 3, 0, 0), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 3, 0, 0), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 3, 0, 0), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 3, 0, 0), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 2, 0, 0), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 2, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 4, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 4, 0, 0), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 56), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 56), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 1, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 1, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 4, 0, 87), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 4, 0, 87), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 0), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 0), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 4, 0, 88), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 4, 0, 88), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 4, 0, 0), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 4, 0, 0), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 0), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 0), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 3, 0, 58), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 3, 0, 58), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 5, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 5, 0, 0), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_suite, 3, 0, 0), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_suite, 3, 0, 0), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 2, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 2, 0, 0), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 87), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 87), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 0), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 5, 0, 130), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 5, 0, 130), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 5, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 5, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 5, 0, 0), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 5, 0, 0), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 88), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 88), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 4, 0, 0), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 4, 0, 0), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 5, 0, 131), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 5, 0, 131), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 6, 0, 0), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 6, 0, 0), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_suite, 3, 0, 0), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_suite, 3, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 0), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 6, 0, 160), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 6, 0, 160), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fused, 6, 0, 0), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fused, 6, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 6, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 6, 0, 0), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 0), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 5, 0, 130), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 5, 0, 130), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 6, 0, 131), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct, 6, 0, 131), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 7, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 7, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 0), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 7, 0, 192), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 7, 0, 192), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 0), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 0), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 6, 0, 160), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 6, 0, 160), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_def, 7, 0, 0), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_def, 7, 0, 0), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_block, 8, 0, 0), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_block, 8, 0, 0), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 225), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 225), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 8, 0, 0), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 8, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 0), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 7, 0, 192), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 7, 0, 192), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 9, 0, 249), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 9, 0, 249), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_definition, 8, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_definition, 8, 0, 0), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 267), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 267), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 10, 0, 0), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 10, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum, 11, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum, 11, 0, 0), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cvar_decl, 9, 0, 254), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cvar_decl, 9, 0, 254), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctype_declaration, 1, 0, 0), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_type_declaration, 1, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctypedef_statement, 4, 0, 0), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 2, 0, 0), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 2, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 5, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 5, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 4, 0, 0), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 4, 0, 0), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cppclass_suite, 3, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cppclass_suite, 3, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 6, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 6, 0, 0), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cppclass, 3, 0, 0), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cppclass, 3, 0, 0), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 77), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 77), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 48), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 48), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 67), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 67), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 68), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 68), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1490), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1828), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 42), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 42), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 5, 0, 67), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 5, 0, 67), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 5, 0, 68), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 5, 0, 68), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 4, 0, 42), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 4, 0, 42), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 107), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 107), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1559), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1900), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 6, 0, 107), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 6, 0, 107), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 103), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 103), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 139), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 139), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 140), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 140), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 173), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 173), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), + [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1902), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_IF_statement_repeat1, 2, 0, 105), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_IF_statement_repeat1, 2, 0, 105), + [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_IF_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1904), + [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1702), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [3158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_IF_statement_repeat1, 2, 0, 105), SHIFT_REPEAT(1774), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 0), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 88), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 88), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 88), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 88), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 160), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 160), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 58), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 58), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 160), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 160), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ELIF_clause, 4, 0, 42), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ELIF_clause, 4, 0, 42), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 148), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 148), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 111), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 111), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 47), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 47), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 46), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 46), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_IF_statement_repeat1, 1, 0, 65), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_IF_statement_repeat1, 1, 0, 65), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 76), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 76), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 177), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 177), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 115), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 115), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 116), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 116), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ELIF_clause, 5, 0, 68), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ELIF_clause, 5, 0, 68), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 48), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 48), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 179), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 179), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 1, 0, 0), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 77), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 77), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 65), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 68), + [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 68), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 150), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 150), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 213), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 213), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 217), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 217), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 184), + [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 184), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 74), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 74), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 143), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 143), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 144), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 144), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 42), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 42), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 242), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 242), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 71), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 71), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 77), + [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 77), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 48), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 48), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 3, 0, 0), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 15), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 16), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 2, 0, 0), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 69), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 69), + [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 180), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 180), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 241), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 241), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 70), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 70), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 181), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 181), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 214), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 214), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 73), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 73), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 72), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 72), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 75), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 75), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ELSE_clause, 3, 0, 48), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ELSE_clause, 3, 0, 48), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 182), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 182), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 142), + [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 142), + [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 218), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 218), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 183), + [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 183), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 7, 0, 141), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 7, 0, 141), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 5), + [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 6, 0, 0), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 13), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 77), + [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 77), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 4, 0, 0), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 79), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 79), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 112), + [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 112), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 113), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 113), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_statement, 2, 0, 0), + [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_statement, 2, 0, 0), + [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, 0, 78), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, 0, 78), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_DEF_statement, 5, 0, 18), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_DEF_statement, 5, 0, 18), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 6, 0, 104), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 6, 0, 104), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 185), + [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 185), + [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 5, 0, 66), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 5, 0, 66), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 186), + [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 186), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IF_statement, 6, 0, 106), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IF_statement, 6, 0, 106), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 151), + [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 151), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), + [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 1), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cdef_definition_block, 5, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 49), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 49), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 114), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 114), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 265), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 265), + [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 104), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 104), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 106), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 106), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 108), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 108), + [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 109), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 109), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 110), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 110), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 211), + [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 211), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 212), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 212), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 215), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 215), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 117), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 117), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 176), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 176), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 152), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 152), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 145), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 145), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 216), + [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 216), + [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 44), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 44), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 146), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 146), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 58), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 58), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 178), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 178), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 66), + [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 66), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 118), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 118), + [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 119), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 119), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 244), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 244), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 243), + [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 243), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 4, 0, 49), + [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 4, 0, 49), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ELSE_clause, 4, 0, 77), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ELSE_clause, 4, 0, 77), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 48), + [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 48), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_directive, 3, 0, 0), + [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_run_directive, 3, 0, 0), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 149), + [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 149), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 141), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 141), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 147), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 147), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storageclass, 1, 0, 0), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), + [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 10), + [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 2, 0, 0), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_value, 2, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [4018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 3, 0, 0), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 5, 0, 0), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [4064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [4067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 94), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 94), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 94), + [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 94), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 59), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 59), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 29), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 29), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 59), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 59), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3602), + [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3442), + [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5646), + [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), + [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), + [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), + [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3319), + [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), + [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3396), + [4284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2295), + [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5571), + [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(4578), + [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5572), + [4296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5868), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), + [4301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3773), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), + [4339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5563), + [4342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), + [4345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), + [4348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), + [4351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1942), + [4354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3253), + [4357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3466), + [4360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3429), + [4363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), + [4366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [4369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5697), + [4372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4561), + [4375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5699), + [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5842), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cdef_definition_block_repeat1, 2, 0, 0), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 12), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2031), + [4452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(5673), + [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1990), + [4458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2031), + [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3739), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 27), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 27), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), + [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 30), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), + [4575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), REDUCE(sym_function_pointer_type, 3, 0, 0), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 3, 0, 0), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), + [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2025), + [4688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1997), + [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2025), + [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2047), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1986), + [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2047), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3749), + [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_none, 1, 0, 0), + [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_none, 1, 0, 0), + [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 27), + [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 27), + [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3816), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 38), + [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 38), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 38), + [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 38), + [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 39), + [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 39), [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis, 1, 0, 0), [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ellipsis, 1, 0, 0), - [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_none, 1, 0, 0), - [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_none, 1, 0, 0), - [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 39), - [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 39), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2031), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1947), - [4783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2031), - [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), - [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2053), - [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1953), - [4795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2053), - [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3699), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3760), - [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1970), - [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1949), - [4812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1970), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1627), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1634), - [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3751), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1720), - [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2039), - [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1948), - [4857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2039), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 3, 0, 0), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [4894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1619), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), - [4909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1602), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1648), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1641), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3233), - [5039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), - [5042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [5045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), - [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), - [5051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3416), - [5054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3339), - [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), - [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), - [5063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5662), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), - [5074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [5295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storageclass, 1, 0, 0), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [5365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), - [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3396), - [5379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), - [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), - [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [5388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), - [5391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), - [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 2, 0, 0), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [5445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 3, 0, 0), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [5453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [5483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 3, 0, 0), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [5497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [5502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1610), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [5515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), REDUCE(sym_c_type, 3, 0, 21), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [5536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), REDUCE(sym_c_type, 2, 0, 21), - [5539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 21), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), REDUCE(sym_c_type, 2, 0, 0), - [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), - [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [5569] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(5817), - [5573] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3181), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [5579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 1, 0, 0), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 1, 0, 0), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 21), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(5817), - [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3181), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [5615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), - [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [5621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [5624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), - [5627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3416), - [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3339), - [5633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3374), - [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(5817), - [5647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3181), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [5666] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(5817), - [5670] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3181), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [5676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(5817), - [5679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3181), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [5690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1923), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [5701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), - [5703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5469), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [5712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(5817), - [5715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3181), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), REDUCE(sym_c_type, 4, 0, 21), - [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 21), - [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), - [5787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), REDUCE(sym_c_type, 4, 0, 0), - [5790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), - [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), - [5825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5627), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), - [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), - [5843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), REDUCE(sym_c_type, 3, 0, 0), - [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), - [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 1, 0, 0), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 1, 0, 0), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), REDUCE(sym_c_type, 5, 0, 21), - [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 21), - [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1919), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [5884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5612), - [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 2, 0, 20), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 2, 0, 20), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [5893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(5817), - [5896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3181), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [5901] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(5817), - [5905] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3181), - [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 2, 0, 0), - [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 2, 0, 0), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(5817), - [5928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3181), - [5931] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(5817), - [5935] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3181), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(5817), - [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3181), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [5951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(5817), - [5954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3181), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), - [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), - [5979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), - [5982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), - [5985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), - [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3163), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 2, 0, 0), - [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 2, 0, 0), - [5999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), - [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 4, 0, 0), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 4, 0, 0), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), - [6009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), - [6012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 5, 0, 0), - [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 5, 0, 0), - [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), - [6019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), - [6022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), - [6025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), - [6028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 3, 0, 0), - [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 3, 0, 0), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 6, 0, 0), - [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 6, 0, 0), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), - [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), - [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), - [6063] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), SHIFT(3181), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5716), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6074] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3181), - [6078] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), SHIFT(3181), - [6082] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3181), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 2, 0, 0), - [6092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parameters, 2, 0, 0), - [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 2, 0, 0), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 2, 0, 0), - [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 3, 0, 0), - [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 3, 0, 0), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3163), - [6115] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3181), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), - [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), - [6127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), - [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5719), - [6133] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3181), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 10), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 21), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 21), - [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), REDUCE(sym_c_type, 6, 0, 0), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 6, 0, 0), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), - [6203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5564), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [6208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1526), - [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), - [6213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), REDUCE(sym_c_type, 5, 0, 0), - [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [6218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 129), - [6235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 129), SHIFT(3181), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 129), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), - [6242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), SHIFT(3181), - [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), - [6247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), SHIFT(3181), - [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), - [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), - [6258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), SHIFT(3181), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), - [6265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), SHIFT(3181), - [6268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), SHIFT(3181), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), - [6273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), SHIFT(3181), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), - [6278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), SHIFT(3181), - [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 159), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), - [6291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 159), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 0), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 0), - [6299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3869), - [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3869), - [6305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3184), - [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), - [6310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), SHIFT(3181), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), - [6315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), SHIFT(3181), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), - [6320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), SHIFT(3181), - [6323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 129), SHIFT(3181), - [6326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), SHIFT(3181), - [6329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), SHIFT(3181), - [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), - [6334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), SHIFT(3181), - [6337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 4, 0, 0), - [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 4, 0, 0), - [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 159), SHIFT(3181), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), - [6366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), SHIFT(3181), - [6369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 159), SHIFT(3181), - [6372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), SHIFT(3181), - [6375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), SHIFT(3181), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 0), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3181), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [6405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3750), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [6428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(948), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 0), - [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [6457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5569), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [6498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 0), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [6508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 0), - [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [6523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3986), - [6526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3986), - [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [6533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3184), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [6544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 0), - [6602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 21), - [6604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 10), - [6606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 10), - [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), - [6610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [6630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 21), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 6, 0, 0), - [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1731), - [6649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1883), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), - [6662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), - [6664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1443), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [6685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1431), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [6722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), - [6724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [6756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1464), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [6815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1790), - [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [6882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3961), - [6885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(3961), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 52), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [6902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1853), - [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [6931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [6937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [6955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [6987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1861), - [6990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [7072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [7162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [7196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), - [7199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5798), - [7202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1914), - [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 10), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 93), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [7242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5683), - [7245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1908), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [7346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1663), - [7349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5819), - [7352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1917), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [7395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5744), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 63), - [7490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 63), - [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 64), - [7494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 64), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 103), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [7508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 4, 0, 0), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 24), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 41), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 98), - [7534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 98), - [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 99), - [7538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 99), - [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 100), - [7542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 100), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 127), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 1, 0, 0), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 173), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1922), - [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 5, 0, 0), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 139), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 140), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [7633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3119), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 43), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [7650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1166), - [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [7665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1174), - [7668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 4, 0, 0), - [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 2, 0, 0), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 25), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 4, 0, 0), - [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 5, 0, 87), - [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), - [7701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), - [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 3, 0, 0), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 4, 0, 84), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 4, 0, 0), - [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1455), - [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 32), - [7741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 32), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 138), - [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 138), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [7765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1869), - [7768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 92), - [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 24), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [7776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), - [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 32), - [7781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 32), - [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 10), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 22), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [7827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3121), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 0), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [7886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 54), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [7914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3116), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1669), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 205), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 207), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [8004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [8007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [8009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4458), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [8030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 207), - [8036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [8038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(4475), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 174), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), - [8069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3132), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [8148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), + [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1670), + [4746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2009), + [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1979), + [4758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2009), + [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), + [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, 0, 0), + [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, 0, 0), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 11), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 11), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 39), + [4787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 39), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 28), + [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 28), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 54), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 54), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 0), + [4803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 0), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 0), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 0), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 39), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [4831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 39), + [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 39), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 22), + [4839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 22), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 38), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 38), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2110), + [4856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1988), + [4859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2110), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [4890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2091), + [4893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1993), + [4896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2091), + [4899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3750), + [4902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3744), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2099), + [4910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1994), + [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2099), + [4916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3807), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [4927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1742), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3799), + [4951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2082), + [4954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(1991), + [4957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 31), SHIFT_REPEAT(2082), + [4960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1793), + [4963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1749), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 3, 0, 0), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1719), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [5001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1734), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1763), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1756), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), + [5146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [5161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), + [5164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), + [5167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), + [5170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(1942), + [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3253), + [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3466), + [5179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3429), + [5182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), + [5185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [5188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(5699), + [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cppclass_suite_repeat1, 2, 0, 0), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [5343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storageclass, 1, 0, 0), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [5461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extern_suite_repeat1, 2, 0, 0), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3602), + [5480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3442), + [5483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), + [5486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), + [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3319), + [5492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [5495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), + [5498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), SHIFT_REPEAT(3396), + [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_suite_repeat1, 2, 0, 0), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 3, 0, 0), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 2, 0, 0), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [5591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 3, 0, 0), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [5601] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(5615), + [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [5610] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3210), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [5626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 10), REDUCE(sym_c_type, 2, 0, 21), + [5629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [5642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), REDUCE(sym_c_type, 2, 0, 0), + [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), + [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 1, 0, 0), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 21), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), REDUCE(sym_c_type, 3, 0, 21), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 21), + [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 10), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 1, 0, 0), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 1, 0, 0), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1725), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(5615), + [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3210), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [5727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), + [5730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), + [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5628), + [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [5743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(5615), + [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 10), SHIFT(3210), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [5761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3591), + [5764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), + [5767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), + [5770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3253), + [5773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3466), + [5776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3429), + [5779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), SHIFT_REPEAT(3354), + [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(5615), + [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3210), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(5615), + [5811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3210), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [5816] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(5615), + [5820] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), REDUCE(sym_maybe_typed_name, 2, 0, 21), SHIFT(3210), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [5898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), + [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), + [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), REDUCE(sym_c_type, 4, 0, 21), + [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), REDUCE(sym_c_type, 4, 0, 0), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), + [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 1, 0, 0), + [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 1, 0, 0), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [5922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1967), + [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5520), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), + [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 10), REDUCE(sym_c_type, 5, 0, 21), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 10), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [5948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), + [5951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 2, 0, 0), REDUCE(sym_c_type, 3, 0, 0), + [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 3, 0, 0), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 21), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 21), + [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5771), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__longness, 2, 0, 20), + [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__longness, 2, 0, 20), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [6009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(5615), + [6012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3210), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6025] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(5615), + [6029] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), REDUCE(sym_maybe_typed_name, 3, 0, 21), SHIFT(3210), + [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 2, 0, 0), + [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 2, 0, 0), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [6041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(5615), + [6044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3210), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [6049] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(5615), + [6053] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), REDUCE(sym_maybe_typed_name, 2, 0, 10), SHIFT(3210), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(5615), + [6064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3210), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(5615), + [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3210), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 4, 0, 0), + [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 4, 0, 0), + [6083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 6, 0, 0), + [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 6, 0, 0), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 2, 0, 0), + [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 2, 0, 0), + [6093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 3, 0, 0), + [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 3, 0, 0), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_index, 5, 0, 0), + [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_index, 5, 0, 0), + [6103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), + [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), + [6110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3640), + [6113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3640), + [6116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3207), + [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), + [6122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), + [6125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), + [6128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), + [6131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [6138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), + [6148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), + [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), + [6157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3767), + [6165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3767), + [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), + [6171] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 10), SHIFT(3210), + [6175] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 6, 0, 21), SHIFT(3210), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [6181] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 4, 0, 21), SHIFT(3210), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5755), + [6192] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 3, 0, 10), SHIFT(3210), + [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [6202] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 21), SHIFT(3210), + [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 2, 0, 0), + [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 2, 0, 0), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_int_type, 3, 0, 0), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_int_type, 3, 0, 0), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 2, 0, 0), + [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parameters, 2, 0, 0), + [6230] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), REDUCE(sym_maybe_typed_name, 5, 0, 10), SHIFT(3210), + [6234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3207), + [6237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5581), + [6240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5681), + [6243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5692), + [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 21), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), REDUCE(sym_c_type, 6, 0, 0), + [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 6, 0, 0), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fused_repeat1, 2, 0, 0), + [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_type, 5, 0, 0), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [6283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1778), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_type, 4, 0, 0), REDUCE(sym_c_type, 5, 0, 0), + [6291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 3, 0, 0), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 10), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 21), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [6324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1782), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), + [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 128), SHIFT(3210), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 129), + [6346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 129), SHIFT(3210), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 159), + [6351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 6, 0, 159), SHIFT(3210), + [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), + [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 23), SHIFT(3210), + [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), + [6361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 55), SHIFT(3210), + [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), + [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), + [6368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 57), SHIFT(3210), + [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), + [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), + [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), + [6377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 3, 0, 18), SHIFT(3210), + [6380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 0), + [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 0), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), + [6386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 85), SHIFT(3210), + [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), + [6391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 128), SHIFT(3210), + [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), + [6396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 86), SHIFT(3210), + [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 129), + [6401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 5, 0, 129), SHIFT(3210), + [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 159), + [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 7, 0, 159), SHIFT(3210), + [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), + [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 4), SHIFT(3210), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), + [6434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 4, 0, 0), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 4, 0, 0), + [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), + [6440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 55), SHIFT(3210), + [6443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 85), SHIFT(3210), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 23), SHIFT(3210), + [6451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 57), SHIFT(3210), + [6454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 4, 0, 86), SHIFT(3210), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), + [6463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 2, 0, 18), SHIFT(3210), + [6466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), + [6469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), + [6472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3225), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), + [6479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_maybe_typed_name, 1, 0, 4), SHIFT(3210), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [6486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(987), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [6507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3210), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [6512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_c_name, 1, 0, 0), SHIFT(3734), + [6515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 2, 0, 0), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 0), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [6589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 1, 0, 0), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [6623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 0), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [6636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4004), + [6639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4004), + [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5554), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3225), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [6696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 21), + [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 0), + [6700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 3, 0, 10), + [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 4, 0, 10), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [6712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 6, 0, 0), + [6714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_type, 5, 0, 21), + [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [6718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [6722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [6740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [6748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1808), + [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [6753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1928), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [6792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1625), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [6811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), + [6815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_function_pointer_name, 4, 0, 60), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [6841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1634), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [6878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1653), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [6903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1803), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [6940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [7012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [7032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1614), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [7039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [7041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4018), + [7044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4018), + [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [7059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 52), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [7107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [7143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1908), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [7190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [7208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), + [7211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5848), + [7214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), + [7217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [7223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [7226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5869), + [7229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), + [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 93), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [7340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), + [7343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(5850), + [7346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), + [7349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat2, 2, 0, 0), SHIFT_REPEAT(5625), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 2, 0, 10), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1290), + [7599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [7613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [7617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [7619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 5, 0, 0), + [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 5, 0, 87), + [7625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 4, 0, 0), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 103), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), + [7663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), + [7666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 4, 0, 0), + [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 24), + [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 32), + [7700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 32), + [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 4, 0, 84), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1644), + [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 43), + [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 98), + [7721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 98), + [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 32), + [7725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 32), + [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 24), + [7729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), + [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 99), + [7734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 99), + [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_memory_view_index, 4, 0, 0), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 100), + [7748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 100), + [7750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 63), + [7752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 63), + [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 64), + [7758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 64), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 139), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 140), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parameters, 3, 0, 0), + [7776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 4, 0, 0), + [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 173), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [7788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1360), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 127), + [7801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [7817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), + [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), + [7829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3167), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 17), + [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 41), + [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 1, 0, 0), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 25), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [7864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 138), + [7866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 138), + [7868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 24), SHIFT(1916), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 92), + [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gil_spec, 2, 0, 0), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [7901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 205), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 207), + [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 0), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [7941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [7943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(4419), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [7958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 54), + [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 10), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [8010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), + [8013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(826), + [8016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [8018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4445), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 14), + [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 174), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 205), + [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 207), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 22), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [8133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3169), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [8152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 174), - [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 205), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), - [8192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(1710), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 2, 0, 0), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [8235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1921), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 1, 0, 0), - [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 4, 0, 0), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [8272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2848), - [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [8277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [8289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 18), - [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), - [8320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(4867), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [8327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), SHIFT_REPEAT(2857), - [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), - [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [8336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 1, 0, 0), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [8346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 1, 0, 0), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [8384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5799), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [8407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [8483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), SHIFT_REPEAT(5540), - [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [8542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), - [8545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), SHIFT_REPEAT(1726), - [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 3, 0, 0), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [8644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1216), - [8647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [8671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 3, 0, 0), - [8673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), - [8675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [8717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(938), - [8720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 53), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [8750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2842), - [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [8759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 3, 0, 0), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [8772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), - [8775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [8815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(5180), - [8818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2843), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [8852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [8908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), SHIFT_REPEAT(3307), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), SHIFT_REPEAT(5440), - [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [8934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3308), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [8951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5554), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [8981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), SHIFT_REPEAT(1081), - [8984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [9010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [9119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(990), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [9126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), - [9128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [9153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [9158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), SHIFT_REPEAT(5427), - [9161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [9201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4020), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [9234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(972), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [9241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 3, 0, 87), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [9315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [9380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 34), - [9382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1203), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(973), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [9418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1864), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [9431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 1, 0, 0), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [9441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5296), - [9444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 4, 0, 0), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [9496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1920), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [9505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 52), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [9523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 206), SHIFT_REPEAT(3114), - [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 206), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [9568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 209), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [9580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 4, 0, 10), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [9588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [9594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [9600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [9606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), - [9608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 65), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [9618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_default, 2, 0, 0), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [9632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [9678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [9694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 101), - [9696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 208), - [9698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 91), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [9710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 262), - [9712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 263), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [9728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 210), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [9732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 264), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 4, 0, 0), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [9744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [9746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 175), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [9760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 5, 0, 10), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 38), - [9768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 102), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 26), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [9784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 2, 0, 0), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 276), - [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 237), - [9792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 238), - [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 35), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [9808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 36), - [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 37), - [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 38), - [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [9838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 27), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [9864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_argument_type, 5, 0, 0), - [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 239), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [9884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 240), - [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [9894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [9896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 174), - [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [10058] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [10144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 5, 0, 0), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [10292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [10468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 174), + [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 0), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [8238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [8243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [8253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3174), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [8274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 15), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 14), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 16), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), + [8310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 40), SHIFT_REPEAT(1700), + [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargument, 1, 0, 0), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [8331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1826), + [8334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 18), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), + [8356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(4815), + [8359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1966), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 1, 0, 0), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [8388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2898), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 4, 0, 0), + [8401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), SHIFT_REPEAT(2888), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 105), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_value, 1, 0, 0), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_name, 2, 0, 0), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [8472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [8480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5536), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [8491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [8527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [8549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), SHIFT_REPEAT(1163), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 95), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [8626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), + [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 62), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [8668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), SHIFT_REPEAT(5624), + [8671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 2, 0, 90), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [8711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2902), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [8718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 52), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [8728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 206), SHIFT_REPEAT(3111), + [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 206), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [8797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [8832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(2901), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [8951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(990), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [8958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [8971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [9041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 53), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [9049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 33), SHIFT_REPEAT(5232), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 1, 0, 0), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [9126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 4, 0, 0), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [9148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [9150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2896), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [9167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1049), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [9176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1965), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [9201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), + [9203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedargslist_repeat1, 2, 0, 0), SHIFT_REPEAT(3199), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [9232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [9244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(999), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [9257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), SHIFT_REPEAT(5471), + [9260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_params_repeat1, 2, 0, 0), + [9262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4002), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [9273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), SHIFT_REPEAT(1707), + [9276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 45), + [9278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 34), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [9306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [9308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1542), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [9337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [9384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_params, 3, 0, 0), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 3, 0, 0), + [9402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1617), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [9423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_decl_repeat2, 3, 0, 87), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [9427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat1, 2, 0, 0), SHIFT_REPEAT(3378), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [9438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [9441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [9449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), SHIFT_REPEAT(5513), + [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_index_repeat2, 2, 0, 0), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [9456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_qualifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5656), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [9481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3379), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [9512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cvar_def_repeat1, 3, 0, 0), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [9536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5500), + [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_definition_repeat1, 2, 0, 0), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [9567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [9570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [9580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [9609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [9634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2886), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [9647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [9652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 175), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [9658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 91), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [9662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [9672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 4, 0, 10), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [9682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_function_argument_type, 5, 0, 0), + [9684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 262), + [9686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 263), + [9688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 264), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [9696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 38), + [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [9702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_default, 2, 0, 0), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 101), + [9716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 65), + [9718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 276), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [9724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 102), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [9728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 35), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 4, 0, 0), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [9818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [9836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 4, 0, 0), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [9860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 26), + [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 38), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [9872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 2, 0, 0), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [9878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [9880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 27), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 5, 0, 10), + [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [9912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 174), + [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [9932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 237), + [9934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 238), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [9952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 36), + [9954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 239), + [9956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [9958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 240), + [9960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_param, 2, 0, 0), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [9976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 37), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [9988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 208), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [9992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 209), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [10010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [10012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 210), + [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [10174] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [10452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedargslist, 5, 0, 0), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [10514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), }; enum ts_external_scanner_symbol_identifiers { @@ -294454,12 +299440,12 @@ static const bool ts_external_scanner_states[22][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACK] = true, }, [9] = { - [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_except] = true, }, [10] = { + [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_except] = true, diff --git a/test/corpus/cython.txt b/test/corpus/cython.txt index f725a9e..e9ebf2b 100644 --- a/test/corpus/cython.txt +++ b/test/corpus/cython.txt @@ -1121,3 +1121,34 @@ for i from 0 <= i < 10 by 2: (identifier) (argument_list (identifier))))))) +===================================== +IF statement +===================================== +IF True: + pass +ELIF False: + pass +ELSE: + pass +--- +(module + (IF_statement + (true) + (block + (pass_statement)) + (ELIF_clause + (false) + (block + (pass_statement))) + (ELSE_clause + (block + (pass_statement))))) +===================================== +DEF statement +===================================== +DEF x = 1 +--- +(module + (DEF_statement + (identifier) + (integer)))